import { Component } from "https://deno.land/x/docxml@5.15.3/src/classes/Component.ts";
Constructors
Type Parameters
Properties
The children given to this component instance.
The props given to this component instance.
Methods
An event hook with which this component can ensure that the correct relationship type is recorded to the relationship XML.
For example;
- Create a relationship to a Hyperlink external target
- Create a relationship from the Image component to its image file binary.
You'll want to use RelationshipsXml to create a relationship and store its identifier somewhere, before using it in Component.toNode.
this.#relationshipId = relationships.add(RelationshipType.hyperlink, this.props.url);
Create a DOM node for this XML component, one that can be stringified to schema-valid OOXML.
By default, an XML component would serialize to its children and string contents -- like a fragment. Most components have an override to use specific OOXML elememnts, such as <w:p>.
Static Properties
Informs the JSX pragma which child components are allowed in this component. The JSX pragma can use this to attempt repairs at invalidly nested children.
Informs the JSX pragma on wether or not this component can contain text (string) children. The JSX pragma can use this to attempt repairs at invalidly nested children.