docx 7.4.1 → 7.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/build/export/packer/image-replacer.d.ts +2 -2
- package/build/export/packer/numbering-replacer.d.ts +1 -1
- package/build/export/packer/packer.d.ts +4 -0
- package/build/file/core-properties/properties.d.ts +3 -3
- package/build/file/custom-properties/custom-properties.d.ts +1 -1
- package/build/file/document/body/section-properties/properties/columns.d.ts +1 -1
- package/build/file/drawing/text-wrap/wrap-square.d.ts +1 -1
- package/build/file/file.d.ts +3 -3
- package/build/file/footnotes/footnote/footnote.d.ts +1 -1
- package/build/file/footnotes/footnotes.d.ts +1 -1
- package/build/file/header.d.ts +1 -1
- package/build/file/numbering/abstract-numbering.d.ts +1 -1
- package/build/file/numbering/level.d.ts +2 -2
- package/build/file/numbering/numbering.d.ts +4 -4
- package/build/file/paragraph/formatting/tab-stop.d.ts +7 -2
- package/build/file/paragraph/links/bookmark.d.ts +2 -2
- package/build/file/paragraph/links/hyperlink.d.ts +5 -5
- package/build/file/paragraph/math/brackets/math-angled-brackets.d.ts +1 -1
- package/build/file/paragraph/math/brackets/math-curly-brackets.d.ts +1 -1
- package/build/file/paragraph/math/brackets/math-round-brackets.d.ts +1 -1
- package/build/file/paragraph/math/brackets/math-square-brackets.d.ts +1 -1
- package/build/file/paragraph/math/fraction/math-denominator.d.ts +1 -1
- package/build/file/paragraph/math/fraction/math-fraction.d.ts +2 -2
- package/build/file/paragraph/math/fraction/math-numerator.d.ts +1 -1
- package/build/file/paragraph/math/function/math-function-name.d.ts +1 -1
- package/build/file/paragraph/math/function/math-function.d.ts +2 -2
- package/build/file/paragraph/math/math-component.d.ts +2 -2
- package/build/file/paragraph/math/math.d.ts +1 -1
- package/build/file/paragraph/math/n-ary/index.d.ts +1 -0
- package/build/file/paragraph/math/n-ary/math-base.d.ts +1 -1
- package/build/file/paragraph/math/n-ary/math-integral.d.ts +10 -0
- package/build/file/paragraph/math/n-ary/math-sub-script.d.ts +1 -1
- package/build/file/paragraph/math/n-ary/math-sum.d.ts +3 -3
- package/build/file/paragraph/math/n-ary/math-super-script.d.ts +1 -1
- package/build/file/paragraph/math/radical/math-degree.d.ts +1 -1
- package/build/file/paragraph/math/radical/math-radical.d.ts +2 -2
- package/build/file/paragraph/math/script/pre-sub-super-script/math-pre-sub-super-script-function.d.ts +3 -3
- package/build/file/paragraph/math/script/sub-script/math-sub-script-function.d.ts +2 -2
- package/build/file/paragraph/math/script/sub-super-script/math-sub-super-script-function.d.ts +3 -3
- package/build/file/paragraph/math/script/super-script/math-super-script-function.d.ts +2 -2
- package/build/file/paragraph/paragraph.d.ts +1 -1
- package/build/file/paragraph/properties.d.ts +2 -6
- package/build/file/paragraph/run/comment-run.d.ts +1 -1
- package/build/file/paragraph/run/run.d.ts +1 -1
- package/build/file/styles/sample/default-style.d.ts +1 -102
- package/build/file/styles/styles.d.ts +3 -3
- package/build/file/table/grid.d.ts +1 -1
- package/build/file/table/table-cell/table-cell.d.ts +1 -1
- package/build/file/table/table-row/table-row.d.ts +2 -2
- package/build/file/table/table.d.ts +2 -2
- package/build/file/table-of-contents/table-of-contents-properties.d.ts +1 -1
- package/build/file/xml-components/default-attributes.d.ts +3 -3
- package/build/file/xml-components/imported-xml-component.d.ts +2 -2
- package/build/index.js +1 -1
- package/build/index.js.LICENSE.txt +0 -12
- package/build/util/values.d.ts +17 -17
- package/package.json +15 -8
- package/src/export/packer/image-replacer.ts +2 -2
- package/src/export/packer/next-compiler.spec.ts +2 -2
- package/src/export/packer/next-compiler.ts +8 -8
- package/src/export/packer/numbering-replacer.ts +1 -1
- package/src/export/packer/packer.spec.ts +65 -7
- package/src/export/packer/packer.ts +24 -0
- package/src/file/app-properties/app-properties.ts +1 -1
- package/src/file/border/border.ts +1 -1
- package/src/file/content-types/content-types.ts +1 -1
- package/src/file/content-types/default/default.ts +1 -1
- package/src/file/content-types/override/override.ts +1 -1
- package/src/file/core-properties/properties.ts +5 -5
- package/src/file/custom-properties/custom-properties.ts +4 -2
- package/src/file/custom-properties/custom-property.ts +2 -2
- package/src/file/document/body/body.ts +3 -1
- package/src/file/document/body/section-properties/properties/column.ts +1 -1
- package/src/file/document/body/section-properties/properties/columns.spec.ts +7 -0
- package/src/file/document/body/section-properties/properties/columns.ts +2 -2
- package/src/file/document/body/section-properties/properties/doc-grid.ts +1 -1
- package/src/file/document/body/section-properties/properties/header-footer-reference.ts +1 -1
- package/src/file/document/body/section-properties/properties/line-number.ts +1 -1
- package/src/file/document/body/section-properties/properties/page-borders.ts +1 -1
- package/src/file/document/body/section-properties/properties/page-margin.ts +1 -1
- package/src/file/document/body/section-properties/properties/page-number.ts +1 -1
- package/src/file/document/body/section-properties/properties/page-size.ts +1 -1
- package/src/file/document/body/section-properties/properties/page-text-direction.ts +1 -1
- package/src/file/document/body/section-properties/properties/section-type.ts +1 -1
- package/src/file/document/body/section-properties/section-properties.ts +1 -1
- package/src/file/document/document-background/document-background.ts +1 -1
- package/src/file/document/document.ts +1 -1
- package/src/file/document-wrapper.spec.ts +0 -2
- package/src/file/document-wrapper.ts +1 -1
- package/src/file/drawing/anchor/anchor.spec.ts +2 -3
- package/src/file/drawing/anchor/anchor.ts +1 -1
- package/src/file/drawing/doc-properties/doc-properties.ts +1 -1
- package/src/file/drawing/drawing.spec.ts +2 -3
- package/src/file/drawing/drawing.ts +1 -1
- package/src/file/drawing/effect-extent/effect-extent.ts +1 -1
- package/src/file/drawing/extent/extent.ts +1 -1
- package/src/file/drawing/floating/align.ts +1 -1
- package/src/file/drawing/floating/horizontal-position.ts +1 -1
- package/src/file/drawing/floating/position-offset.ts +1 -1
- package/src/file/drawing/floating/simple-pos.ts +1 -1
- package/src/file/drawing/floating/vertical-position.ts +1 -1
- package/src/file/drawing/graphic-frame/graphic-frame-locks/graphic-frame-locks.ts +1 -1
- package/src/file/drawing/graphic-frame/graphic-frame-properties.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/graphic-data.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/blip/blip-fill.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/blip/blip.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/blip/source-rectangle.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/blip/stretch.ts +2 -2
- package/src/file/drawing/inline/graphic/graphic-data/pic/non-visual-pic-properties/child-non-visual-pic-properties/child-non-visual-pic-properties.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/non-visual-pic-properties/child-non-visual-pic-properties/pic-locks/pic-locks.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/non-visual-pic-properties/non-visual-pic-properties.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/non-visual-pic-properties/non-visual-properties/non-visual-properties.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/pic.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/form/extents/extents.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/form/form.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/form/offset/off.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/no-fill.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/outline.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/preset-geometry/adjustment-values/adjustment-values.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/preset-geometry/preset-geometry.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/shape-properties.ts +1 -1
- package/src/file/drawing/inline/graphic/graphic.ts +1 -1
- package/src/file/drawing/inline/inline.ts +1 -1
- package/src/file/drawing/text-wrap/wrap-none.ts +1 -1
- package/src/file/drawing/text-wrap/wrap-square.ts +3 -2
- package/src/file/drawing/text-wrap/wrap-tight.ts +1 -1
- package/src/file/drawing/text-wrap/wrap-top-and-bottom.ts +1 -1
- package/src/file/file.spec.ts +55 -2
- package/src/file/file.ts +18 -13
- package/src/file/footer/footer.ts +1 -1
- package/src/file/footer-wrapper.spec.ts +1 -1
- package/src/file/footer-wrapper.ts +1 -1
- package/src/file/footnotes/footnote/footnote.ts +2 -2
- package/src/file/footnotes/footnote/run/continuation-seperator-run.ts +1 -1
- package/src/file/footnotes/footnote/run/continuation-seperator.ts +1 -1
- package/src/file/footnotes/footnote/run/footnote-ref-run.ts +1 -1
- package/src/file/footnotes/footnote/run/footnote-ref.ts +1 -1
- package/src/file/footnotes/footnote/run/reference-run.ts +2 -2
- package/src/file/footnotes/footnote/run/seperator-run.ts +1 -1
- package/src/file/footnotes/footnote/run/seperator.ts +1 -1
- package/src/file/footnotes/footnotes.ts +2 -2
- package/src/file/footnotes-wrapper.spec.ts +0 -2
- package/src/file/footnotes-wrapper.ts +1 -1
- package/src/file/header/header.ts +1 -1
- package/src/file/header-wrapper.spec.ts +1 -1
- package/src/file/header-wrapper.ts +1 -1
- package/src/file/header.ts +11 -3
- package/src/file/media/media.spec.ts +4 -2
- package/src/file/media/media.ts +3 -1
- package/src/file/numbering/abstract-numbering.ts +1 -1
- package/src/file/numbering/level.spec.ts +40 -3
- package/src/file/numbering/level.ts +27 -8
- package/src/file/numbering/multi-level-type.ts +1 -1
- package/src/file/numbering/num.ts +4 -4
- package/src/file/numbering/numbering.spec.ts +2 -1
- package/src/file/numbering/numbering.ts +18 -18
- package/src/file/paragraph/formatting/alignment.ts +1 -1
- package/src/file/paragraph/formatting/border.ts +2 -2
- package/src/file/paragraph/formatting/break.ts +4 -4
- package/src/file/paragraph/formatting/indent.ts +1 -1
- package/src/file/paragraph/formatting/spacing.ts +1 -1
- package/src/file/paragraph/formatting/style.ts +1 -1
- package/src/file/paragraph/formatting/tab-stop.spec.ts +2 -2
- package/src/file/paragraph/formatting/tab-stop.ts +14 -5
- package/src/file/paragraph/formatting/unordered-list.ts +3 -3
- package/src/file/paragraph/frame/frame-properties.ts +1 -1
- package/src/file/paragraph/links/bookmark.ts +4 -4
- package/src/file/paragraph/links/hyperlink.ts +6 -4
- package/src/file/paragraph/links/outline-level.ts +1 -1
- package/src/file/paragraph/links/pageref-field-instruction.ts +1 -1
- package/src/file/paragraph/links/pageref.ts +1 -1
- package/src/file/paragraph/math/brackets/math-angled-brackets.ts +1 -1
- package/src/file/paragraph/math/brackets/math-beginning-character.ts +1 -1
- package/src/file/paragraph/math/brackets/math-bracket-properties.ts +1 -1
- package/src/file/paragraph/math/brackets/math-curly-brackets.ts +1 -1
- package/src/file/paragraph/math/brackets/math-ending-char.ts +1 -1
- package/src/file/paragraph/math/brackets/math-round-brackets.ts +1 -1
- package/src/file/paragraph/math/brackets/math-square-brackets.ts +1 -1
- package/src/file/paragraph/math/fraction/math-denominator.ts +1 -1
- package/src/file/paragraph/math/fraction/math-fraction.ts +3 -3
- package/src/file/paragraph/math/fraction/math-numerator.ts +1 -1
- package/src/file/paragraph/math/function/math-function-name.ts +1 -1
- package/src/file/paragraph/math/function/math-function-properties.ts +1 -1
- package/src/file/paragraph/math/function/math-function.ts +3 -3
- package/src/file/paragraph/math/math-component.ts +2 -1
- package/src/file/paragraph/math/math-run.ts +1 -1
- package/src/file/paragraph/math/math-text.ts +1 -1
- package/src/file/paragraph/math/math.ts +2 -2
- package/src/file/paragraph/math/n-ary/index.ts +1 -0
- package/src/file/paragraph/math/n-ary/math-accent-character.ts +1 -1
- package/src/file/paragraph/math/n-ary/math-base.ts +1 -1
- package/src/file/paragraph/math/n-ary/math-integral.spec.ts +116 -0
- package/src/file/paragraph/math/n-ary/math-integral.ts +31 -0
- package/src/file/paragraph/math/n-ary/math-limit-location.ts +1 -1
- package/src/file/paragraph/math/n-ary/math-n-ary-properties.ts +4 -2
- package/src/file/paragraph/math/n-ary/math-sub-script-hide.ts +1 -1
- package/src/file/paragraph/math/n-ary/math-sub-script.ts +1 -1
- package/src/file/paragraph/math/n-ary/math-sum.ts +4 -4
- package/src/file/paragraph/math/n-ary/math-super-script-hide.ts +1 -1
- package/src/file/paragraph/math/n-ary/math-super-script.ts +1 -1
- package/src/file/paragraph/math/radical/math-degree-hide.ts +1 -1
- package/src/file/paragraph/math/radical/math-degree.ts +1 -1
- package/src/file/paragraph/math/radical/math-radical-properties.ts +1 -1
- package/src/file/paragraph/math/radical/math-radical.ts +3 -3
- package/src/file/paragraph/math/script/pre-sub-super-script/math-pre-sub-super-script-function-properties.ts +1 -1
- package/src/file/paragraph/math/script/pre-sub-super-script/math-pre-sub-super-script-function.ts +4 -4
- package/src/file/paragraph/math/script/sub-script/math-sub-script-function-properties.ts +1 -1
- package/src/file/paragraph/math/script/sub-script/math-sub-script-function.ts +3 -3
- package/src/file/paragraph/math/script/sub-super-script/math-sub-super-script-function-properties.ts +1 -1
- package/src/file/paragraph/math/script/sub-super-script/math-sub-super-script-function.ts +4 -4
- package/src/file/paragraph/math/script/super-script/math-super-script-function-properties.ts +1 -1
- package/src/file/paragraph/math/script/super-script/math-super-script-function.ts +3 -3
- package/src/file/paragraph/paragraph.spec.ts +2 -6
- package/src/file/paragraph/paragraph.ts +2 -2
- package/src/file/paragraph/properties.spec.ts +1 -3
- package/src/file/paragraph/properties.ts +18 -18
- package/src/file/paragraph/run/break.ts +1 -1
- package/src/file/paragraph/run/comment-run.ts +6 -6
- package/src/file/paragraph/run/emphasis-mark.ts +2 -2
- package/src/file/paragraph/run/field.ts +3 -3
- package/src/file/paragraph/run/formatting.ts +4 -4
- package/src/file/paragraph/run/image-run.spec.ts +9 -9
- package/src/file/paragraph/run/image-run.ts +2 -1
- package/src/file/paragraph/run/page-number.ts +3 -3
- package/src/file/paragraph/run/properties.ts +2 -2
- package/src/file/paragraph/run/run-components/symbol.ts +1 -1
- package/src/file/paragraph/run/run-components/text.ts +1 -1
- package/src/file/paragraph/run/run-fonts.ts +5 -5
- package/src/file/paragraph/run/run.spec.ts +1 -3
- package/src/file/paragraph/run/run.ts +2 -2
- package/src/file/paragraph/run/script.ts +3 -3
- package/src/file/paragraph/run/sequential-identifier-instruction.ts +1 -1
- package/src/file/paragraph/run/sequential-identifier.ts +1 -1
- package/src/file/paragraph/run/simple-field.ts +2 -2
- package/src/file/paragraph/run/symbol-run.spec.ts +1 -3
- package/src/file/paragraph/run/symbol-run.ts +1 -1
- package/src/file/paragraph/run/tab.ts +1 -1
- package/src/file/paragraph/run/text-run.ts +1 -1
- package/src/file/paragraph/run/underline.ts +1 -1
- package/src/file/relationships/relationship/relationship.ts +1 -1
- package/src/file/relationships/relationships.ts +1 -1
- package/src/file/settings/compatibility-setting/compatibility-setting.ts +1 -1
- package/src/file/settings/compatibility.ts +1 -1
- package/src/file/settings/settings.ts +1 -1
- package/src/file/shading/shading.ts +1 -1
- package/src/file/styles/defaults/document-defaults.spec.ts +2 -2
- package/src/file/styles/defaults/document-defaults.ts +1 -1
- package/src/file/styles/defaults/paragraph-properties.ts +1 -1
- package/src/file/styles/defaults/run-properties.ts +1 -1
- package/src/file/styles/external-styles-factory.spec.ts +3 -3
- package/src/file/styles/external-styles-factory.ts +1 -0
- package/src/file/styles/latent-styles/exceptions.ts +1 -1
- package/src/file/styles/latent-styles/latent-styles.ts +1 -1
- package/src/file/styles/sample/default-style.ts +6 -6
- package/src/file/styles/style/character-style.ts +1 -1
- package/src/file/styles/style/components.ts +2 -2
- package/src/file/styles/style/default-styles.spec.ts +1 -2
- package/src/file/styles/style/default-styles.ts +14 -14
- package/src/file/styles/style/paragraph-style.ts +1 -1
- package/src/file/styles/style/style.ts +1 -1
- package/src/file/styles/styles.ts +4 -4
- package/src/file/table/grid.spec.ts +1 -2
- package/src/file/table/grid.ts +2 -2
- package/src/file/table/table-cell/table-cell-components.ts +4 -4
- package/src/file/table/table-cell/table-cell-properties.ts +1 -1
- package/src/file/table/table-cell/table-cell.ts +2 -2
- package/src/file/table/table-properties/table-borders.ts +1 -1
- package/src/file/table/table-properties/table-cell-margin.ts +4 -1
- package/src/file/table/table-properties/table-float-properties.ts +1 -1
- package/src/file/table/table-properties/table-layout.ts +1 -1
- package/src/file/table/table-properties/table-overlap.ts +1 -1
- package/src/file/table/table-properties/table-properties.ts +1 -1
- package/src/file/table/table-row/table-row-height.ts +1 -1
- package/src/file/table/table-row/table-row-properties.ts +1 -1
- package/src/file/table/table-row/table-row.ts +3 -3
- package/src/file/table/table-width.ts +1 -1
- package/src/file/table/table.ts +4 -3
- package/src/file/table-of-contents/alias.ts +1 -1
- package/src/file/table-of-contents/field-instruction.ts +1 -1
- package/src/file/table-of-contents/sdt-content.ts +1 -1
- package/src/file/table-of-contents/sdt-properties.ts +1 -1
- package/src/file/table-of-contents/table-of-contents-properties.ts +2 -2
- package/src/file/table-of-contents/table-of-contents.spec.ts +1 -3
- package/src/file/table-of-contents/table-of-contents.ts +1 -1
- package/src/file/track-revision/track-revision-components/deleted-page-number.ts +3 -3
- package/src/file/track-revision/track-revision-components/deleted-text-run.ts +2 -2
- package/src/file/track-revision/track-revision-components/deleted-text.ts +1 -1
- package/src/file/track-revision/track-revision-components/inserted-text-run.ts +1 -1
- package/src/file/vertical-align/vertical-align.ts +1 -1
- package/src/file/xml-components/base.ts +1 -1
- package/src/file/xml-components/default-attributes.ts +5 -4
- package/src/file/xml-components/imported-xml-component.spec.ts +3 -2
- package/src/file/xml-components/imported-xml-component.ts +13 -8
- package/src/file/xml-components/initializable-xml-component.ts +1 -1
- package/src/file/xml-components/simple-elements.ts +5 -5
- package/src/file/xml-components/xml-component.ts +4 -2
- package/src/import-dotx/import-dotx.ts +2 -0
- package/src/index.spec.ts +0 -1
- package/src/tests/utility.ts +1 -1
- package/src/util/convenience-functions.spec.ts +0 -2
- package/src/util/convenience-functions.ts +4 -12
- package/src/util/values.ts +29 -41
|
@@ -10,8 +10,8 @@ import { ILevelsOptions, LevelFormat } from "./level";
|
|
|
10
10
|
import { ConcreteNumbering } from "./num";
|
|
11
11
|
|
|
12
12
|
export interface INumberingOptions {
|
|
13
|
-
readonly config: {
|
|
14
|
-
readonly levels: ILevelsOptions[];
|
|
13
|
+
readonly config: readonly {
|
|
14
|
+
readonly levels: readonly ILevelsOptions[];
|
|
15
15
|
readonly reference: string;
|
|
16
16
|
}[];
|
|
17
17
|
}
|
|
@@ -31,7 +31,7 @@ export class Numbering extends XmlComponent {
|
|
|
31
31
|
private readonly concreteNumberingMap = new Map<string, ConcreteNumbering>();
|
|
32
32
|
private readonly referenceConfigMap = new Map<string, object>();
|
|
33
33
|
|
|
34
|
-
constructor(options: INumberingOptions) {
|
|
34
|
+
public constructor(options: INumberingOptions) {
|
|
35
35
|
super("w:numbering");
|
|
36
36
|
this.root.push(
|
|
37
37
|
new DocumentAttributes({
|
|
@@ -203,33 +203,33 @@ export class Numbering extends XmlComponent {
|
|
|
203
203
|
return;
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
+
const referenceConfigLevels = this.referenceConfigMap.get(reference);
|
|
207
|
+
const firstLevelStartNumber = referenceConfigLevels && referenceConfigLevels[0].start;
|
|
208
|
+
|
|
206
209
|
const concreteNumberingSettings = {
|
|
207
210
|
numId: uniqueNumericId(),
|
|
208
211
|
abstractNumId: abstractNumbering.id,
|
|
209
212
|
reference,
|
|
210
213
|
instance,
|
|
211
|
-
overrideLevel:
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
214
|
+
overrideLevel:
|
|
215
|
+
firstLevelStartNumber && Number.isInteger(firstLevelStartNumber)
|
|
216
|
+
? {
|
|
217
|
+
num: 0,
|
|
218
|
+
start: firstLevelStartNumber,
|
|
219
|
+
}
|
|
220
|
+
: {
|
|
221
|
+
num: 0,
|
|
222
|
+
start: 1,
|
|
223
|
+
},
|
|
215
224
|
};
|
|
216
225
|
|
|
217
|
-
const referenceConfigLevels = this.referenceConfigMap.get(reference);
|
|
218
|
-
const firstLevelStartNumber = referenceConfigLevels && referenceConfigLevels[0].start;
|
|
219
|
-
if (firstLevelStartNumber && Number.isInteger(firstLevelStartNumber)) {
|
|
220
|
-
concreteNumberingSettings.overrideLevel = {
|
|
221
|
-
num: 0,
|
|
222
|
-
start: firstLevelStartNumber,
|
|
223
|
-
};
|
|
224
|
-
}
|
|
225
|
-
|
|
226
226
|
this.concreteNumberingMap.set(fullReference, new ConcreteNumbering(concreteNumberingSettings));
|
|
227
227
|
}
|
|
228
228
|
|
|
229
|
-
public get ConcreteNumbering(): ConcreteNumbering[] {
|
|
229
|
+
public get ConcreteNumbering(): readonly ConcreteNumbering[] {
|
|
230
230
|
return Array.from(this.concreteNumberingMap.values());
|
|
231
231
|
}
|
|
232
|
-
public get ReferenceConfig(): object[] {
|
|
232
|
+
public get ReferenceConfig(): readonly object[] {
|
|
233
233
|
return Array.from(this.referenceConfigMap.values());
|
|
234
234
|
}
|
|
235
235
|
}
|
|
@@ -18,7 +18,7 @@ export class AlignmentAttributes extends XmlAttributeComponent<{ readonly val: A
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
export class Alignment extends XmlComponent {
|
|
21
|
-
constructor(type: AlignmentType) {
|
|
21
|
+
public constructor(type: AlignmentType) {
|
|
22
22
|
super("w:jc");
|
|
23
23
|
this.root.push(new AlignmentAttributes({ val: type }));
|
|
24
24
|
}
|
|
@@ -10,7 +10,7 @@ export interface IBordersOptions {
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
export class Border extends IgnoreIfEmptyXmlComponent {
|
|
13
|
-
constructor(options: IBordersOptions) {
|
|
13
|
+
public constructor(options: IBordersOptions) {
|
|
14
14
|
super("w:pBdr");
|
|
15
15
|
|
|
16
16
|
if (options.top) {
|
|
@@ -32,7 +32,7 @@ export class Border extends IgnoreIfEmptyXmlComponent {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
export class ThematicBreak extends XmlComponent {
|
|
35
|
-
constructor() {
|
|
35
|
+
public constructor() {
|
|
36
36
|
super("w:pBdr");
|
|
37
37
|
const bottom = new BorderElement("w:bottom", {
|
|
38
38
|
color: "auto",
|
|
@@ -9,7 +9,7 @@ enum BreakType {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
class Break extends XmlComponent {
|
|
12
|
-
constructor(type: BreakType) {
|
|
12
|
+
public constructor(type: BreakType) {
|
|
13
13
|
super("w:br");
|
|
14
14
|
this.root.push(
|
|
15
15
|
new Attributes({
|
|
@@ -20,14 +20,14 @@ class Break extends XmlComponent {
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
export class PageBreak extends Run {
|
|
23
|
-
constructor() {
|
|
23
|
+
public constructor() {
|
|
24
24
|
super({});
|
|
25
25
|
this.root.push(new Break(BreakType.PAGE));
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
export class ColumnBreak extends Run {
|
|
30
|
-
constructor() {
|
|
30
|
+
public constructor() {
|
|
31
31
|
super({});
|
|
32
32
|
this.root.push(new Break(BreakType.COLUMN));
|
|
33
33
|
}
|
|
@@ -37,7 +37,7 @@ export class ColumnBreak extends Run {
|
|
|
37
37
|
* Add page break before the paragraph if there is no one added before.
|
|
38
38
|
*/
|
|
39
39
|
export class PageBreakBefore extends XmlComponent {
|
|
40
|
-
constructor() {
|
|
40
|
+
public constructor() {
|
|
41
41
|
super("w:pageBreakBefore");
|
|
42
42
|
}
|
|
43
43
|
}
|
|
@@ -41,7 +41,7 @@ class IndentAttributes extends XmlAttributeComponent<IIndentAttributesProperties
|
|
|
41
41
|
// ...
|
|
42
42
|
// <xsd:element name="ind" type="CT_Ind" minOccurs="0"/>
|
|
43
43
|
export class Indent extends XmlComponent {
|
|
44
|
-
constructor({ start, end, left, right, hanging, firstLine }: IIndentAttributesProperties) {
|
|
44
|
+
public constructor({ start, end, left, right, hanging, firstLine }: IIndentAttributesProperties) {
|
|
45
45
|
super("w:ind");
|
|
46
46
|
this.root.push(
|
|
47
47
|
new IndentAttributes({
|
|
@@ -25,7 +25,7 @@ class SpacingAttributes extends XmlAttributeComponent<ISpacingProperties> {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
export class Spacing extends XmlComponent {
|
|
28
|
-
constructor(options: ISpacingProperties) {
|
|
28
|
+
public constructor(options: ISpacingProperties) {
|
|
29
29
|
super("w:spacing");
|
|
30
30
|
this.root.push(new SpacingAttributes(options));
|
|
31
31
|
}
|
|
@@ -8,7 +8,7 @@ describe("LeftTabStop", () => {
|
|
|
8
8
|
let tabStop: TabStop;
|
|
9
9
|
|
|
10
10
|
beforeEach(() => {
|
|
11
|
-
tabStop = new TabStop(TabStopType.LEFT, 100);
|
|
11
|
+
tabStop = new TabStop([{ type: TabStopType.LEFT, position: 100 }]);
|
|
12
12
|
});
|
|
13
13
|
|
|
14
14
|
describe("#constructor()", () => {
|
|
@@ -32,7 +32,7 @@ describe("RightTabStop", () => {
|
|
|
32
32
|
let tabStop: TabStop;
|
|
33
33
|
|
|
34
34
|
beforeEach(() => {
|
|
35
|
-
tabStop = new TabStop(TabStopType.RIGHT, 100, LeaderType.DOT);
|
|
35
|
+
tabStop = new TabStop([{ type: TabStopType.RIGHT, position: 100, leader: LeaderType.DOT }]);
|
|
36
36
|
});
|
|
37
37
|
|
|
38
38
|
describe("#constructor()", () => {
|
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
// http://officeopenxml.com/WPtab.php
|
|
2
2
|
import { XmlAttributeComponent, XmlComponent } from "@file/xml-components";
|
|
3
3
|
|
|
4
|
+
export interface TabStopDefinition {
|
|
5
|
+
readonly type: TabStopType;
|
|
6
|
+
readonly position: number | TabStopPosition;
|
|
7
|
+
readonly leader?: LeaderType;
|
|
8
|
+
}
|
|
9
|
+
|
|
4
10
|
export class TabStop extends XmlComponent {
|
|
5
|
-
constructor(
|
|
11
|
+
public constructor(tabDefinitions: readonly TabStopDefinition[]) {
|
|
6
12
|
super("w:tabs");
|
|
7
|
-
|
|
13
|
+
|
|
14
|
+
for (const tabDefinition of tabDefinitions) {
|
|
15
|
+
this.root.push(new TabStopItem(tabDefinition));
|
|
16
|
+
}
|
|
8
17
|
}
|
|
9
18
|
}
|
|
10
19
|
|
|
@@ -41,13 +50,13 @@ export class TabAttributes extends XmlAttributeComponent<{
|
|
|
41
50
|
}
|
|
42
51
|
|
|
43
52
|
export class TabStopItem extends XmlComponent {
|
|
44
|
-
constructor(
|
|
53
|
+
public constructor({ type, position, leader }: TabStopDefinition) {
|
|
45
54
|
super("w:tab");
|
|
46
55
|
this.root.push(
|
|
47
56
|
new TabAttributes({
|
|
48
|
-
val:
|
|
57
|
+
val: type,
|
|
49
58
|
pos: position,
|
|
50
|
-
leader,
|
|
59
|
+
leader: leader,
|
|
51
60
|
}),
|
|
52
61
|
);
|
|
53
62
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Attributes, XmlComponent } from "@file/xml-components";
|
|
2
2
|
|
|
3
3
|
export class NumberProperties extends XmlComponent {
|
|
4
|
-
constructor(numberId: number | string, indentLevel: number) {
|
|
4
|
+
public constructor(numberId: number | string, indentLevel: number) {
|
|
5
5
|
super("w:numPr");
|
|
6
6
|
this.root.push(new IndentLevel(indentLevel));
|
|
7
7
|
this.root.push(new NumberId(numberId));
|
|
@@ -9,7 +9,7 @@ export class NumberProperties extends XmlComponent {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
class IndentLevel extends XmlComponent {
|
|
12
|
-
constructor(level: number) {
|
|
12
|
+
public constructor(level: number) {
|
|
13
13
|
super("w:ilvl");
|
|
14
14
|
|
|
15
15
|
if (level > 9) {
|
|
@@ -27,7 +27,7 @@ class IndentLevel extends XmlComponent {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
class NumberId extends XmlComponent {
|
|
30
|
-
constructor(id: number | string) {
|
|
30
|
+
public constructor(id: number | string) {
|
|
31
31
|
super("w:numId");
|
|
32
32
|
this.root.push(
|
|
33
33
|
new Attributes({
|
|
@@ -97,7 +97,7 @@ export class FramePropertiesAttributes extends XmlAttributeComponent<{
|
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
export class FrameProperties extends XmlComponent {
|
|
100
|
-
constructor(options: IFrameOptions) {
|
|
100
|
+
public constructor(options: IFrameOptions) {
|
|
101
101
|
super("w:framePr");
|
|
102
102
|
this.root.push(
|
|
103
103
|
new FramePropertiesAttributes({
|
|
@@ -7,10 +7,10 @@ import { BookmarkEndAttributes, BookmarkStartAttributes } from "./bookmark-attri
|
|
|
7
7
|
|
|
8
8
|
export class Bookmark {
|
|
9
9
|
public readonly start: BookmarkStart;
|
|
10
|
-
public readonly children: ParagraphChild[];
|
|
10
|
+
public readonly children: readonly ParagraphChild[];
|
|
11
11
|
public readonly end: BookmarkEnd;
|
|
12
12
|
|
|
13
|
-
constructor(options: { readonly id: string; readonly children: ParagraphChild[] }) {
|
|
13
|
+
public constructor(options: { readonly id: string; readonly children: readonly ParagraphChild[] }) {
|
|
14
14
|
const linkId = uniqueNumericId();
|
|
15
15
|
|
|
16
16
|
this.start = new BookmarkStart(options.id, linkId);
|
|
@@ -52,7 +52,7 @@ export class Bookmark {
|
|
|
52
52
|
// </xsd:complexType>
|
|
53
53
|
|
|
54
54
|
export class BookmarkStart extends XmlComponent {
|
|
55
|
-
constructor(id: string, linkId: number) {
|
|
55
|
+
public constructor(id: string, linkId: number) {
|
|
56
56
|
super("w:bookmarkStart");
|
|
57
57
|
|
|
58
58
|
const attributes = new BookmarkStartAttributes({
|
|
@@ -64,7 +64,7 @@ export class BookmarkStart extends XmlComponent {
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
export class BookmarkEnd extends XmlComponent {
|
|
67
|
-
constructor(linkId: number) {
|
|
67
|
+
public constructor(linkId: number) {
|
|
68
68
|
super("w:bookmarkEnd");
|
|
69
69
|
|
|
70
70
|
const attributes = new BookmarkEndAttributes({
|
|
@@ -13,7 +13,7 @@ export enum HyperlinkType {
|
|
|
13
13
|
export class ConcreteHyperlink extends XmlComponent {
|
|
14
14
|
public readonly linkId: string;
|
|
15
15
|
|
|
16
|
-
constructor(children: ParagraphChild[], relationshipId: string, anchor?: string) {
|
|
16
|
+
public constructor(children: readonly ParagraphChild[], relationshipId: string, anchor?: string) {
|
|
17
17
|
super("w:hyperlink");
|
|
18
18
|
|
|
19
19
|
this.linkId = relationshipId;
|
|
@@ -33,11 +33,13 @@ export class ConcreteHyperlink extends XmlComponent {
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
export class InternalHyperlink extends ConcreteHyperlink {
|
|
36
|
-
constructor(options: { readonly children: ParagraphChild[]; readonly anchor: string }) {
|
|
36
|
+
public constructor(options: { readonly children: readonly ParagraphChild[]; readonly anchor: string }) {
|
|
37
37
|
super(options.children, uniqueId(), options.anchor);
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
export class ExternalHyperlink {
|
|
42
|
-
constructor(public readonly options: { readonly children: ParagraphChild[]; readonly link: string }) {
|
|
41
|
+
export class ExternalHyperlink extends XmlComponent {
|
|
42
|
+
public constructor(public readonly options: { readonly children: readonly ParagraphChild[]; readonly link: string }) {
|
|
43
|
+
super("w:externalHyperlink");
|
|
44
|
+
}
|
|
43
45
|
}
|
|
@@ -5,7 +5,7 @@ import { TextAttributes } from "../run/text-attributes";
|
|
|
5
5
|
import { IPageReferenceOptions } from "./pageref-properties";
|
|
6
6
|
|
|
7
7
|
export class PageReferenceFieldInstruction extends XmlComponent {
|
|
8
|
-
constructor(bookmarkId: string, options: IPageReferenceOptions = {}) {
|
|
8
|
+
public constructor(bookmarkId: string, options: IPageReferenceOptions = {}) {
|
|
9
9
|
super("w:instrText");
|
|
10
10
|
this.root.push(new TextAttributes({ space: SpaceType.PRESERVE }));
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@ import { PageReferenceFieldInstruction } from "./pageref-field-instruction";
|
|
|
5
5
|
import type { IPageReferenceOptions } from "./pageref-properties";
|
|
6
6
|
|
|
7
7
|
export class PageReference extends Run {
|
|
8
|
-
constructor(bookmarkId: string, options: IPageReferenceOptions = {}) {
|
|
8
|
+
public constructor(bookmarkId: string, options: IPageReferenceOptions = {}) {
|
|
9
9
|
super({
|
|
10
10
|
children: [new Begin(true), new PageReferenceFieldInstruction(bookmarkId, options), new End()],
|
|
11
11
|
});
|
|
@@ -6,7 +6,7 @@ import { MathBase } from "../n-ary";
|
|
|
6
6
|
import { MathBracketProperties } from "./math-bracket-properties";
|
|
7
7
|
|
|
8
8
|
export class MathAngledBrackets extends XmlComponent {
|
|
9
|
-
constructor(options: { readonly children: MathComponent[] }) {
|
|
9
|
+
public constructor(options: { readonly children: readonly MathComponent[] }) {
|
|
10
10
|
super("m:d");
|
|
11
11
|
|
|
12
12
|
this.root.push(
|
|
@@ -6,7 +6,7 @@ class MathBeginningCharacterAttributes extends XmlAttributeComponent<{ readonly
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export class MathBeginningCharacter extends XmlComponent {
|
|
9
|
-
constructor(character: string) {
|
|
9
|
+
public constructor(character: string) {
|
|
10
10
|
super("m:begChr");
|
|
11
11
|
|
|
12
12
|
this.root.push(new MathBeginningCharacterAttributes({ character }));
|
|
@@ -5,7 +5,7 @@ import { MathBeginningCharacter } from "./math-beginning-character";
|
|
|
5
5
|
import { MathEndingCharacter } from "./math-ending-char";
|
|
6
6
|
|
|
7
7
|
export class MathBracketProperties extends XmlComponent {
|
|
8
|
-
constructor(options?: { readonly beginningCharacter: string; readonly endingCharacter: string }) {
|
|
8
|
+
public constructor(options?: { readonly beginningCharacter: string; readonly endingCharacter: string }) {
|
|
9
9
|
super("m:dPr");
|
|
10
10
|
|
|
11
11
|
if (!!options) {
|
|
@@ -6,7 +6,7 @@ import { MathBase } from "../n-ary";
|
|
|
6
6
|
import { MathBracketProperties } from "./math-bracket-properties";
|
|
7
7
|
|
|
8
8
|
export class MathCurlyBrackets extends XmlComponent {
|
|
9
|
-
constructor(options: { readonly children: MathComponent[] }) {
|
|
9
|
+
public constructor(options: { readonly children: readonly MathComponent[] }) {
|
|
10
10
|
super("m:d");
|
|
11
11
|
|
|
12
12
|
this.root.push(
|
|
@@ -6,7 +6,7 @@ class MathEndingCharacterAttributes extends XmlAttributeComponent<{ readonly cha
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export class MathEndingCharacter extends XmlComponent {
|
|
9
|
-
constructor(character: string) {
|
|
9
|
+
public constructor(character: string) {
|
|
10
10
|
super("m:endChr");
|
|
11
11
|
|
|
12
12
|
this.root.push(new MathEndingCharacterAttributes({ character }));
|
|
@@ -6,7 +6,7 @@ import { MathBase } from "../n-ary";
|
|
|
6
6
|
import { MathBracketProperties } from "./math-bracket-properties";
|
|
7
7
|
|
|
8
8
|
export class MathRoundBrackets extends XmlComponent {
|
|
9
|
-
constructor(options: { readonly children: MathComponent[] }) {
|
|
9
|
+
public constructor(options: { readonly children: readonly MathComponent[] }) {
|
|
10
10
|
super("m:d");
|
|
11
11
|
|
|
12
12
|
this.root.push(new MathBracketProperties());
|
|
@@ -6,7 +6,7 @@ import { MathBase } from "../n-ary";
|
|
|
6
6
|
import { MathBracketProperties } from "./math-bracket-properties";
|
|
7
7
|
|
|
8
8
|
export class MathSquareBrackets extends XmlComponent {
|
|
9
|
-
constructor(options: { readonly children: MathComponent[] }) {
|
|
9
|
+
public constructor(options: { readonly children: readonly MathComponent[] }) {
|
|
10
10
|
super("m:d");
|
|
11
11
|
|
|
12
12
|
this.root.push(
|
|
@@ -3,7 +3,7 @@ import { XmlComponent } from "@file/xml-components";
|
|
|
3
3
|
import { MathComponent } from "../math-component";
|
|
4
4
|
|
|
5
5
|
export class MathDenominator extends XmlComponent {
|
|
6
|
-
constructor(children: MathComponent[]) {
|
|
6
|
+
public constructor(children: readonly MathComponent[]) {
|
|
7
7
|
super("m:den");
|
|
8
8
|
|
|
9
9
|
for (const child of children) {
|
|
@@ -5,12 +5,12 @@ import { MathDenominator } from "./math-denominator";
|
|
|
5
5
|
import { MathNumerator } from "./math-numerator";
|
|
6
6
|
|
|
7
7
|
export interface IMathFractionOptions {
|
|
8
|
-
readonly numerator: MathComponent[];
|
|
9
|
-
readonly denominator: MathComponent[];
|
|
8
|
+
readonly numerator: readonly MathComponent[];
|
|
9
|
+
readonly denominator: readonly MathComponent[];
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
export class MathFraction extends XmlComponent {
|
|
13
|
-
constructor(options: IMathFractionOptions) {
|
|
13
|
+
public constructor(options: IMathFractionOptions) {
|
|
14
14
|
super("m:f");
|
|
15
15
|
|
|
16
16
|
this.root.push(new MathNumerator(options.numerator));
|
|
@@ -3,7 +3,7 @@ import { XmlComponent } from "@file/xml-components";
|
|
|
3
3
|
import { MathComponent } from "../math-component";
|
|
4
4
|
|
|
5
5
|
export class MathNumerator extends XmlComponent {
|
|
6
|
-
constructor(children: MathComponent[]) {
|
|
6
|
+
public constructor(children: readonly MathComponent[]) {
|
|
7
7
|
super("m:num");
|
|
8
8
|
|
|
9
9
|
for (const child of children) {
|
|
@@ -3,7 +3,7 @@ import { XmlComponent } from "@file/xml-components";
|
|
|
3
3
|
import { MathComponent } from "../math-component";
|
|
4
4
|
|
|
5
5
|
export class MathFunctionName extends XmlComponent {
|
|
6
|
-
constructor(children: MathComponent[]) {
|
|
6
|
+
public constructor(children: readonly MathComponent[]) {
|
|
7
7
|
super("m:fName");
|
|
8
8
|
|
|
9
9
|
for (const child of children) {
|
|
@@ -7,12 +7,12 @@ import { MathFunctionName } from "./math-function-name";
|
|
|
7
7
|
import { MathFunctionProperties } from "./math-function-properties";
|
|
8
8
|
|
|
9
9
|
export interface IMathFunctionOptions {
|
|
10
|
-
readonly children: MathComponent[];
|
|
11
|
-
readonly name: MathComponent[];
|
|
10
|
+
readonly children: readonly MathComponent[];
|
|
11
|
+
readonly name: readonly MathComponent[];
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
export class MathFunction extends XmlComponent {
|
|
15
|
-
constructor(options: IMathFunctionOptions) {
|
|
15
|
+
public constructor(options: IMathFunctionOptions) {
|
|
16
16
|
super("m:func");
|
|
17
17
|
|
|
18
18
|
this.root.push(new MathFunctionProperties());
|
|
@@ -2,7 +2,7 @@ import { MathAngledBrackets, MathCurlyBrackets, MathRoundBrackets, MathSquareBra
|
|
|
2
2
|
import { MathFraction } from "./fraction";
|
|
3
3
|
import { MathFunction } from "./function";
|
|
4
4
|
import { MathRun } from "./math-run";
|
|
5
|
-
import { MathSum } from "./n-ary";
|
|
5
|
+
import { MathSum, MathIntegral } from "./n-ary";
|
|
6
6
|
import { MathRadical } from "./radical";
|
|
7
7
|
import { MathSubScript, MathSubSuperScript, MathSuperScript } from "./script";
|
|
8
8
|
|
|
@@ -10,6 +10,7 @@ export type MathComponent =
|
|
|
10
10
|
| MathRun
|
|
11
11
|
| MathFraction
|
|
12
12
|
| MathSum
|
|
13
|
+
| MathIntegral
|
|
13
14
|
| MathSuperScript
|
|
14
15
|
| MathSubScript
|
|
15
16
|
| MathSubSuperScript
|
|
@@ -4,11 +4,11 @@ import { XmlComponent } from "@file/xml-components";
|
|
|
4
4
|
import { MathComponent } from "./math-component";
|
|
5
5
|
|
|
6
6
|
export interface IMathOptions {
|
|
7
|
-
readonly children: MathComponent[];
|
|
7
|
+
readonly children: readonly MathComponent[];
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
export class Math extends XmlComponent {
|
|
11
|
-
constructor(options: IMathOptions) {
|
|
11
|
+
public constructor(options: IMathOptions) {
|
|
12
12
|
super("m:oMath");
|
|
13
13
|
|
|
14
14
|
for (const child of options.children) {
|
|
@@ -6,7 +6,7 @@ class MathAccentCharacterAttributes extends XmlAttributeComponent<{ readonly acc
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export class MathAccentCharacter extends XmlComponent {
|
|
9
|
-
constructor(accent: string) {
|
|
9
|
+
public constructor(accent: string) {
|
|
10
10
|
super("m:chr");
|
|
11
11
|
|
|
12
12
|
this.root.push(new MathAccentCharacterAttributes({ accent }));
|
|
@@ -4,7 +4,7 @@ import { XmlComponent } from "@file/xml-components";
|
|
|
4
4
|
import { MathComponent } from "../math-component";
|
|
5
5
|
|
|
6
6
|
export class MathBase extends XmlComponent {
|
|
7
|
-
constructor(children: MathComponent[]) {
|
|
7
|
+
public constructor(children: readonly MathComponent[]) {
|
|
8
8
|
super("m:e");
|
|
9
9
|
|
|
10
10
|
for (const child of children) {
|