js.documents 7.13.0 → 7.15.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.
Files changed (41) hide show
  1. package/dist/codecs/registry.cjs +1 -1
  2. package/dist/codecs/registry.js +1 -1
  3. package/dist/convert/composition.cjs +1 -1
  4. package/dist/convert/composition.js +1 -1
  5. package/dist/edit/doc/editor.cjs +159 -0
  6. package/dist/edit/doc/editor.d.cts +59 -0
  7. package/dist/edit/doc/editor.d.ts +59 -0
  8. package/dist/edit/doc/editor.js +155 -0
  9. package/dist/edit/doc/paragraph.cjs +130 -0
  10. package/dist/edit/doc/paragraph.d.cts +2 -0
  11. package/dist/edit/doc/paragraph.d.ts +2 -0
  12. package/dist/edit/doc/paragraph.js +128 -0
  13. package/dist/edit/doc/run.cjs +98 -0
  14. package/dist/edit/doc/run.d.cts +2 -0
  15. package/dist/edit/doc/run.d.ts +2 -0
  16. package/dist/edit/doc/run.js +96 -0
  17. package/dist/edit/doc/table.cjs +110 -0
  18. package/dist/edit/doc/table.d.cts +41 -0
  19. package/dist/edit/doc/table.d.ts +41 -0
  20. package/dist/edit/doc/table.js +106 -0
  21. package/dist/edit/ppt/editor.cjs +51 -0
  22. package/dist/edit/ppt/editor.d.cts +22 -0
  23. package/dist/edit/ppt/editor.d.ts +22 -0
  24. package/dist/edit/ppt/editor.js +48 -0
  25. package/dist/edit/ppt/slide.cjs +104 -0
  26. package/dist/edit/ppt/slide.d.cts +39 -0
  27. package/dist/edit/ppt/slide.d.ts +39 -0
  28. package/dist/edit/ppt/slide.js +101 -0
  29. package/dist/edit/xls/editor.cjs +2 -1
  30. package/dist/edit/xls/editor.d.cts +2 -1
  31. package/dist/edit/xls/editor.d.ts +2 -1
  32. package/dist/edit/xls/editor.js +2 -1
  33. package/dist/index.cjs +22 -2
  34. package/dist/index.d.cts +15 -9
  35. package/dist/index.d.ts +14 -8
  36. package/dist/index.js +9 -3
  37. package/dist/paragraph-Byw2Y7xu.d.ts +43 -0
  38. package/dist/paragraph-DM9n9I4T.d.cts +43 -0
  39. package/dist/run-iYz2M-a_.d.cts +39 -0
  40. package/dist/run-iYz2M-a_.d.ts +39 -0
  41. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ import { t as ClockPort } from "../../clock-C7SUuYN0.js";
2
+ import { MetadataOverrides } from "../../metadata/core-patch.js";
3
+ import { PptSlide } from "./slide.js";
4
+ import { ContentDocument, LayoutMetadata, PageSize } from "document-schema.js";
5
+ //#region src/edit/ppt/editor.d.ts
6
+ interface CreatePptOptions {
7
+ readonly clock?: ClockPort;
8
+ }
9
+ declare class PptEditor {
10
+ private readonly document;
11
+ constructor(document: ContentDocument);
12
+ get metadata(): LayoutMetadata;
13
+ set metadata(value: MetadataOverrides);
14
+ slides(): PptSlide[];
15
+ addSlide(size?: PageSize): PptSlide;
16
+ removeSlideAt(index: number): void;
17
+ toBytes(): Uint8Array<ArrayBuffer>;
18
+ }
19
+ declare function openPpt(bytes: Uint8Array<ArrayBuffer>): PptEditor;
20
+ declare function createPpt(options?: CreatePptOptions): PptEditor;
21
+ //#endregion
22
+ export { CreatePptOptions, PptEditor, createPpt, openPpt };
@@ -0,0 +1,48 @@
1
+ import { mergeMetadata } from "../../metadata/core-patch.js";
2
+ import { resolveMetadataTimestamps } from "../../model/metadata.js";
3
+ import { systemClock } from "../../ports/clock.js";
4
+ import { readPptContent } from "../../ppt/read.js";
5
+ import { writePptContent } from "../../ppt/write.js";
6
+ import { PptSlide, buildSlide } from "./slide.js";
7
+ import { SLIDE_SIZE_WIDESCREEN } from "document-schema.js";
8
+ //#region src/edit/ppt/editor.ts
9
+ var PptEditor = class {
10
+ document;
11
+ constructor(document) {
12
+ if (document.kind !== "presentation") throw new Error(`PptEditor requires a presentation ContentDocument, got "${document.kind}"`);
13
+ this.document = document;
14
+ }
15
+ get metadata() {
16
+ return this.document.metadata;
17
+ }
18
+ set metadata(value) {
19
+ this.document.metadata = mergeMetadata(this.document.metadata, value);
20
+ }
21
+ slides() {
22
+ return this.document.slides.map((slide) => new PptSlide(this.document.slides, slide));
23
+ }
24
+ addSlide(size = SLIDE_SIZE_WIDESCREEN) {
25
+ const node = buildSlide(size);
26
+ this.document.slides.push(node);
27
+ return new PptSlide(this.document.slides, node);
28
+ }
29
+ removeSlideAt(index) {
30
+ this.document.slides.splice(index, 1);
31
+ }
32
+ toBytes() {
33
+ return writePptContent(this.document);
34
+ }
35
+ };
36
+ function openPpt(bytes) {
37
+ return new PptEditor(readPptContent(bytes));
38
+ }
39
+ function createPpt(options = {}) {
40
+ const clock = options.clock ?? systemClock;
41
+ return new PptEditor({
42
+ kind: "presentation",
43
+ metadata: resolveMetadataTimestamps({}, clock),
44
+ slides: []
45
+ });
46
+ }
47
+ //#endregion
48
+ export { PptEditor, createPpt, openPpt };
@@ -0,0 +1,104 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_edit_doc_paragraph = require("../doc/paragraph.cjs");
3
+ //#region src/edit/ppt/slide.ts
4
+ var PptShape = class {
5
+ container;
6
+ node;
7
+ removed = false;
8
+ constructor(container, node) {
9
+ this.container = container;
10
+ this.node = node;
11
+ }
12
+ live() {
13
+ if (this.removed) throw new Error("this PptShape has been removed from its slide and can no longer be used");
14
+ return this.node;
15
+ }
16
+ get frame() {
17
+ return this.live().frame;
18
+ }
19
+ set frame(value) {
20
+ this.live().frame = value;
21
+ }
22
+ get rotationDeg() {
23
+ return this.live().rotationDeg;
24
+ }
25
+ paragraphs() {
26
+ return this.live().blocks.filter((block) => block.kind === "paragraph").map((block) => new require_edit_doc_paragraph.DocParagraph(this.live().blocks, block));
27
+ }
28
+ appendParagraph(init) {
29
+ const node = this.live();
30
+ const paragraph = require_edit_doc_paragraph.buildParagraph(init);
31
+ node.blocks.push(paragraph);
32
+ return new require_edit_doc_paragraph.DocParagraph(node.blocks, paragraph);
33
+ }
34
+ get text() {
35
+ return this.paragraphs().map((p) => p.text).join("\n");
36
+ }
37
+ set text(value) {
38
+ this.live().blocks = [require_edit_doc_paragraph.buildParagraph({ text: value })];
39
+ }
40
+ remove() {
41
+ const node = this.live();
42
+ const index = this.container.indexOf(node);
43
+ if (index !== -1) this.container.splice(index, 1);
44
+ this.removed = true;
45
+ }
46
+ };
47
+ var PptSlide = class {
48
+ container;
49
+ node;
50
+ removed = false;
51
+ constructor(container, node) {
52
+ this.container = container;
53
+ this.node = node;
54
+ }
55
+ live() {
56
+ if (this.removed) throw new Error("this PptSlide has been removed from its presentation and can no longer be used");
57
+ return this.node;
58
+ }
59
+ get size() {
60
+ return this.live().size;
61
+ }
62
+ set size(value) {
63
+ this.live().size = value;
64
+ }
65
+ get notes() {
66
+ return this.live().notes;
67
+ }
68
+ set notes(value) {
69
+ this.live().notes = value;
70
+ }
71
+ shapes() {
72
+ return this.live().shapes.map((shape) => new PptShape(this.live().shapes, shape));
73
+ }
74
+ addTextBox(init) {
75
+ const node = this.live();
76
+ const shape = {
77
+ frame: init.frame,
78
+ insetLeftPt: 0,
79
+ insetTopPt: 0,
80
+ insetRightPt: 0,
81
+ insetBottomPt: 0,
82
+ blocks: [require_edit_doc_paragraph.buildParagraph({ text: init.text ?? "" })]
83
+ };
84
+ node.shapes.push(shape);
85
+ return new PptShape(node.shapes, shape);
86
+ }
87
+ remove() {
88
+ const node = this.live();
89
+ const index = this.container.indexOf(node);
90
+ if (index !== -1) this.container.splice(index, 1);
91
+ this.removed = true;
92
+ }
93
+ };
94
+ function buildSlide(size) {
95
+ return {
96
+ size,
97
+ shapes: [],
98
+ notes: ""
99
+ };
100
+ }
101
+ //#endregion
102
+ exports.PptShape = PptShape;
103
+ exports.PptSlide = PptSlide;
104
+ exports.buildSlide = buildSlide;
@@ -0,0 +1,39 @@
1
+ import { r as buildParagraph, t as DocParagraph } from "../../paragraph-DM9n9I4T.cjs";
2
+ import { Box, ContentShape, ContentSlide } from "document-schema.js";
3
+ //#region src/edit/ppt/slide.d.ts
4
+ interface TextBoxInit {
5
+ readonly frame: Box;
6
+ readonly text?: string;
7
+ }
8
+ declare class PptShape {
9
+ private readonly container;
10
+ private readonly node;
11
+ private removed;
12
+ constructor(container: ContentShape[], node: ContentShape);
13
+ private live;
14
+ get frame(): Box;
15
+ set frame(value: Box);
16
+ get rotationDeg(): number | undefined;
17
+ paragraphs(): DocParagraph[];
18
+ appendParagraph(init?: Parameters<typeof buildParagraph>[0]): DocParagraph;
19
+ get text(): string;
20
+ set text(value: string);
21
+ remove(): void;
22
+ }
23
+ declare class PptSlide {
24
+ private readonly container;
25
+ private readonly node;
26
+ private removed;
27
+ constructor(container: ContentSlide[], node: ContentSlide);
28
+ private live;
29
+ get size(): ContentSlide["size"];
30
+ set size(value: ContentSlide["size"]);
31
+ get notes(): string;
32
+ set notes(value: string);
33
+ shapes(): PptShape[];
34
+ addTextBox(init: TextBoxInit): PptShape;
35
+ remove(): void;
36
+ }
37
+ declare function buildSlide(size: ContentSlide["size"]): ContentSlide;
38
+ //#endregion
39
+ export { PptShape, PptSlide, TextBoxInit, buildSlide };
@@ -0,0 +1,39 @@
1
+ import { r as buildParagraph, t as DocParagraph } from "../../paragraph-Byw2Y7xu.js";
2
+ import { Box, ContentShape, ContentSlide } from "document-schema.js";
3
+ //#region src/edit/ppt/slide.d.ts
4
+ interface TextBoxInit {
5
+ readonly frame: Box;
6
+ readonly text?: string;
7
+ }
8
+ declare class PptShape {
9
+ private readonly container;
10
+ private readonly node;
11
+ private removed;
12
+ constructor(container: ContentShape[], node: ContentShape);
13
+ private live;
14
+ get frame(): Box;
15
+ set frame(value: Box);
16
+ get rotationDeg(): number | undefined;
17
+ paragraphs(): DocParagraph[];
18
+ appendParagraph(init?: Parameters<typeof buildParagraph>[0]): DocParagraph;
19
+ get text(): string;
20
+ set text(value: string);
21
+ remove(): void;
22
+ }
23
+ declare class PptSlide {
24
+ private readonly container;
25
+ private readonly node;
26
+ private removed;
27
+ constructor(container: ContentSlide[], node: ContentSlide);
28
+ private live;
29
+ get size(): ContentSlide["size"];
30
+ set size(value: ContentSlide["size"]);
31
+ get notes(): string;
32
+ set notes(value: string);
33
+ shapes(): PptShape[];
34
+ addTextBox(init: TextBoxInit): PptShape;
35
+ remove(): void;
36
+ }
37
+ declare function buildSlide(size: ContentSlide["size"]): ContentSlide;
38
+ //#endregion
39
+ export { PptShape, PptSlide, TextBoxInit, buildSlide };
@@ -0,0 +1,101 @@
1
+ import { DocParagraph, buildParagraph } from "../doc/paragraph.js";
2
+ //#region src/edit/ppt/slide.ts
3
+ var PptShape = class {
4
+ container;
5
+ node;
6
+ removed = false;
7
+ constructor(container, node) {
8
+ this.container = container;
9
+ this.node = node;
10
+ }
11
+ live() {
12
+ if (this.removed) throw new Error("this PptShape has been removed from its slide and can no longer be used");
13
+ return this.node;
14
+ }
15
+ get frame() {
16
+ return this.live().frame;
17
+ }
18
+ set frame(value) {
19
+ this.live().frame = value;
20
+ }
21
+ get rotationDeg() {
22
+ return this.live().rotationDeg;
23
+ }
24
+ paragraphs() {
25
+ return this.live().blocks.filter((block) => block.kind === "paragraph").map((block) => new DocParagraph(this.live().blocks, block));
26
+ }
27
+ appendParagraph(init) {
28
+ const node = this.live();
29
+ const paragraph = buildParagraph(init);
30
+ node.blocks.push(paragraph);
31
+ return new DocParagraph(node.blocks, paragraph);
32
+ }
33
+ get text() {
34
+ return this.paragraphs().map((p) => p.text).join("\n");
35
+ }
36
+ set text(value) {
37
+ this.live().blocks = [buildParagraph({ text: value })];
38
+ }
39
+ remove() {
40
+ const node = this.live();
41
+ const index = this.container.indexOf(node);
42
+ if (index !== -1) this.container.splice(index, 1);
43
+ this.removed = true;
44
+ }
45
+ };
46
+ var PptSlide = class {
47
+ container;
48
+ node;
49
+ removed = false;
50
+ constructor(container, node) {
51
+ this.container = container;
52
+ this.node = node;
53
+ }
54
+ live() {
55
+ if (this.removed) throw new Error("this PptSlide has been removed from its presentation and can no longer be used");
56
+ return this.node;
57
+ }
58
+ get size() {
59
+ return this.live().size;
60
+ }
61
+ set size(value) {
62
+ this.live().size = value;
63
+ }
64
+ get notes() {
65
+ return this.live().notes;
66
+ }
67
+ set notes(value) {
68
+ this.live().notes = value;
69
+ }
70
+ shapes() {
71
+ return this.live().shapes.map((shape) => new PptShape(this.live().shapes, shape));
72
+ }
73
+ addTextBox(init) {
74
+ const node = this.live();
75
+ const shape = {
76
+ frame: init.frame,
77
+ insetLeftPt: 0,
78
+ insetTopPt: 0,
79
+ insetRightPt: 0,
80
+ insetBottomPt: 0,
81
+ blocks: [buildParagraph({ text: init.text ?? "" })]
82
+ };
83
+ node.shapes.push(shape);
84
+ return new PptShape(node.shapes, shape);
85
+ }
86
+ remove() {
87
+ const node = this.live();
88
+ const index = this.container.indexOf(node);
89
+ if (index !== -1) this.container.splice(index, 1);
90
+ this.removed = true;
91
+ }
92
+ };
93
+ function buildSlide(size) {
94
+ return {
95
+ size,
96
+ shapes: [],
97
+ notes: ""
98
+ };
99
+ }
100
+ //#endregion
101
+ export { PptShape, PptSlide, buildSlide };
@@ -1,4 +1,5 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_metadata_core_patch = require("../../metadata/core-patch.cjs");
2
3
  const require_model_metadata = require("../../model/metadata.cjs");
3
4
  const require_ports_clock = require("../../ports/clock.cjs");
4
5
  const require_edit_xls_sheet = require("./sheet.cjs");
@@ -28,7 +29,7 @@ var XlsEditor = class {
28
29
  return this.document.metadata;
29
30
  }
30
31
  set metadata(value) {
31
- this.document.metadata = value;
32
+ this.document.metadata = require_metadata_core_patch.mergeMetadata(this.document.metadata, value);
32
33
  }
33
34
  sheets() {
34
35
  return this.document.sheets.map((sheet) => new require_edit_xls_sheet.XlsSheet(this.document.sheets, sheet));
@@ -1,4 +1,5 @@
1
1
  import { t as ClockPort } from "../../clock-C7SUuYN0.cjs";
2
+ import { MetadataOverrides } from "../../metadata/core-patch.cjs";
2
3
  import { XlsSheet } from "./sheet.cjs";
3
4
  import { ContentDocument, LayoutMetadata } from "document-schema.js";
4
5
  //#region src/edit/xls/editor.d.ts
@@ -9,7 +10,7 @@ declare class XlsEditor {
9
10
  private readonly document;
10
11
  constructor(document: ContentDocument);
11
12
  get metadata(): LayoutMetadata;
12
- set metadata(value: LayoutMetadata);
13
+ set metadata(value: MetadataOverrides);
13
14
  sheets(): XlsSheet[];
14
15
  sheet(name: string): XlsSheet | undefined;
15
16
  addSheet(name: string): XlsSheet;
@@ -1,4 +1,5 @@
1
1
  import { t as ClockPort } from "../../clock-C7SUuYN0.js";
2
+ import { MetadataOverrides } from "../../metadata/core-patch.js";
2
3
  import { XlsSheet } from "./sheet.js";
3
4
  import { ContentDocument, LayoutMetadata } from "document-schema.js";
4
5
  //#region src/edit/xls/editor.d.ts
@@ -9,7 +10,7 @@ declare class XlsEditor {
9
10
  private readonly document;
10
11
  constructor(document: ContentDocument);
11
12
  get metadata(): LayoutMetadata;
12
- set metadata(value: LayoutMetadata);
13
+ set metadata(value: MetadataOverrides);
13
14
  sheets(): XlsSheet[];
14
15
  sheet(name: string): XlsSheet | undefined;
15
16
  addSheet(name: string): XlsSheet;
@@ -1,3 +1,4 @@
1
+ import { mergeMetadata } from "../../metadata/core-patch.js";
1
2
  import { resolveMetadataTimestamps } from "../../model/metadata.js";
2
3
  import { systemClock } from "../../ports/clock.js";
3
4
  import { XlsSheet } from "./sheet.js";
@@ -27,7 +28,7 @@ var XlsEditor = class {
27
28
  return this.document.metadata;
28
29
  }
29
30
  set metadata(value) {
30
- this.document.metadata = value;
31
+ this.document.metadata = mergeMetadata(this.document.metadata, value);
31
32
  }
32
33
  sheets() {
33
34
  return this.document.sheets.map((sheet) => new XlsSheet(this.document.sheets, sheet));
package/dist/index.cjs CHANGED
@@ -47,9 +47,17 @@ const require_edit_markdown_paragraph = require("./edit/markdown/paragraph.cjs")
47
47
  const require_edit_markdown_list = require("./edit/markdown/list.cjs");
48
48
  const require_edit_markdown_table = require("./edit/markdown/table.cjs");
49
49
  const require_edit_markdown_editor = require("./edit/markdown/editor.cjs");
50
+ const require_edit_doc_run = require("./edit/doc/run.cjs");
51
+ const require_edit_doc_paragraph = require("./edit/doc/paragraph.cjs");
52
+ const require_edit_doc_table = require("./edit/doc/table.cjs");
53
+ const require_edit_doc_editor = require("./edit/doc/editor.cjs");
50
54
  const require_edit_xls_cell = require("./edit/xls/cell.cjs");
51
55
  const require_edit_xls_sheet = require("./edit/xls/sheet.cjs");
52
56
  const require_edit_xls_editor = require("./edit/xls/editor.cjs");
57
+ const require_ppt_read = require("./ppt/read.cjs");
58
+ const require_ppt_write = require("./ppt/write.cjs");
59
+ const require_edit_ppt_slide = require("./edit/ppt/slide.cjs");
60
+ const require_edit_ppt_editor = require("./edit/ppt/editor.cjs");
53
61
  const require_edit_pdf_item = require("./edit/pdf/item.cjs");
54
62
  const require_edit_pdf_page = require("./edit/pdf/page.cjs");
55
63
  const require_edit_pdf_editor = require("./edit/pdf/editor.cjs");
@@ -60,7 +68,6 @@ const require_fonts_registry = require("./fonts/registry.cjs");
60
68
  const require_omml_read = require("./omml/read.cjs");
61
69
  const require_latex_diagnostics = require("./latex/diagnostics.cjs");
62
70
  const require_latex_lint = require("./latex/lint.cjs");
63
- const require_ppt_read = require("./ppt/read.cjs");
64
71
  const require_ooxml_docx_read = require("./ooxml/docx/read.cjs");
65
72
  const require_ooxml_docx_extras = require("./ooxml/docx/extras.cjs");
66
73
  const require_ooxml_pptx_read = require("./ooxml/pptx/read.cjs");
@@ -79,7 +86,6 @@ const require_svg_text = require("./svg/text.cjs");
79
86
  const require_svg_read = require("./svg/read.cjs");
80
87
  const require_svg_write = require("./svg/write.cjs");
81
88
  const require_svg_diagnostics = require("./svg/diagnostics.cjs");
82
- const require_ppt_write = require("./ppt/write.cjs");
83
89
  const require_markdown_render = require("./markdown/render.cjs");
84
90
  const require_layout_engine = require("./layout/engine.cjs");
85
91
  const require_layout_slides = require("./layout/slides.cjs");
@@ -362,6 +368,13 @@ Object.defineProperty(exports, "DefinedNameSchema", {
362
368
  }
363
369
  });
364
370
  exports.DocBytesSchema = require_model_bytes.DocBytesSchema;
371
+ exports.DocEditor = require_edit_doc_editor.DocEditor;
372
+ exports.DocParagraph = require_edit_doc_paragraph.DocParagraph;
373
+ exports.DocRun = require_edit_doc_run.DocRun;
374
+ exports.DocSection = require_edit_doc_editor.DocSection;
375
+ exports.DocTable = require_edit_doc_table.DocTable;
376
+ exports.DocTableCell = require_edit_doc_table.DocTableCell;
377
+ exports.DocTableRow = require_edit_doc_table.DocTableRow;
365
378
  exports.DocumentFormatSchema = require_convert_port.DocumentFormatSchema;
366
379
  Object.defineProperty(exports, "DocumentTreeSchema", {
367
380
  enumerable: true,
@@ -535,6 +548,9 @@ exports.PdfPathItem = require_edit_pdf_item.PdfPathItem;
535
548
  exports.PdfRectItem = require_edit_pdf_item.PdfRectItem;
536
549
  exports.PdfTextItem = require_edit_pdf_item.PdfTextItem;
537
550
  exports.PptBytesSchema = require_model_bytes.PptBytesSchema;
551
+ exports.PptEditor = require_edit_ppt_editor.PptEditor;
552
+ exports.PptShape = require_edit_ppt_slide.PptShape;
553
+ exports.PptSlide = require_edit_ppt_slide.PptSlide;
538
554
  exports.PptxBytesSchema = require_model_bytes.PptxBytesSchema;
539
555
  exports.PptxEditor = require_edit_pptx_editor.PptxEditor;
540
556
  exports.PptxShape = require_edit_pptx_shape.PptxShape;
@@ -732,6 +748,7 @@ exports.convertDrawingToLayout = require_layout_drawing.convertDrawingToLayout;
732
748
  exports.convertPresentationToLayout = require_layout_slides.convertPresentationToLayout;
733
749
  exports.convertSpreadsheetToLayout = require_layout_sheets.convertSpreadsheetToLayout;
734
750
  exports.convertWordprocessingToLayout = require_layout_engine.convertWordprocessingToLayout;
751
+ exports.createDoc = require_edit_doc_editor.createDoc;
735
752
  exports.createDocumentFontRegistry = require_fonts_registry.createDocumentFontRegistry;
736
753
  exports.createDocx = require_edit_docx_editor.createDocx;
737
754
  Object.defineProperty(exports, "createFontMeasurer", {
@@ -753,6 +770,7 @@ exports.createOdp = require_edit_odp_editor.createOdp;
753
770
  exports.createOds = require_edit_ods_editor.createOds;
754
771
  exports.createOdt = require_edit_odt_editor.createOdt;
755
772
  exports.createPdf = require_edit_pdf_editor.createPdf;
773
+ exports.createPpt = require_edit_ppt_editor.createPpt;
756
774
  exports.createPptx = require_edit_pptx_editor.createPptx;
757
775
  Object.defineProperty(exports, "createStandardFontMeasurer", {
758
776
  enumerable: true,
@@ -949,6 +967,7 @@ exports.odtToDocx = require_convert_convert.odtToDocx;
949
967
  exports.odtToMarkdown = require_convert_convert.odtToMarkdown;
950
968
  exports.odtToOdp = require_convert_convert.odtToOdp;
951
969
  exports.odtToPdf = require_convert_convert.odtToPdf;
970
+ exports.openDoc = require_edit_doc_editor.openDoc;
952
971
  exports.openDocx = require_edit_docx_editor.openDocx;
953
972
  exports.openMarkdown = require_edit_markdown_editor.openMarkdown;
954
973
  exports.openOdg = require_edit_odg_editor.openOdg;
@@ -956,6 +975,7 @@ exports.openOdp = require_edit_odp_editor.openOdp;
956
975
  exports.openOds = require_edit_ods_editor.openOds;
957
976
  exports.openOdt = require_edit_odt_editor.openOdt;
958
977
  exports.openPdf = require_edit_pdf_editor.openPdf;
978
+ exports.openPpt = require_edit_ppt_editor.openPpt;
959
979
  exports.openPptx = require_edit_pptx_editor.openPptx;
960
980
  exports.openXls = require_edit_xls_editor.openXls;
961
981
  exports.operatorProperties = require_mathml_operators.operatorProperties;
package/dist/index.d.cts CHANGED
@@ -18,6 +18,11 @@ import { ReadCsvContentOptions, readCsvContent } from "./csv/read.cjs";
18
18
  import { CsvParseError } from "./csv/records.cjs";
19
19
  import { CsvInvalidUtf8Error, decodeCsvText, encodeCsvText } from "./csv/text.cjs";
20
20
  import { BuildCsvTextOptions, CsvSheetNotFoundError, CsvSheetNotSpecifiedError, CsvUnsupportedDocumentKindError, buildCsvText } from "./csv/write.cjs";
21
+ import { MetadataOverrides } from "./metadata/core-patch.cjs";
22
+ import { n as RunInit, t as DocRun } from "./run-iYz2M-a_.cjs";
23
+ import { n as ParagraphInit, t as DocParagraph } from "./paragraph-DM9n9I4T.cjs";
24
+ import { DocTable, DocTableCell, DocTableRow, TableInit } from "./edit/doc/table.cjs";
25
+ import { CreateDocOptions, DocEditor, DocSection, SectionInit, createDoc, openDoc } from "./edit/doc/editor.cjs";
21
26
  import { BuildDocxPackageOptions, buildDocxPackage } from "./edit/docx/content.cjs";
22
27
  import { c as firstChildByLocalName, d as textContent, i as MathMlText, l as isMathMlElement, n as MathMlElement, o as elementChildren, r as MathMlNode, s as elementLocalName, t as MathMlAttribute, u as localName } from "./nodes-jrlUmrNs.cjs";
23
28
  import { n as buildOfficeMath, r as buildOfficeMathParagraph, t as OmmlWriteResult } from "./write-DWupt1QI.cjs";
@@ -26,14 +31,14 @@ import { DocxParagraph } from "./edit/docx/paragraph.cjs";
26
31
  import { DocxTable, DocxTableCell, DocxTableRow, DocxVerticalMerge } from "./edit/docx/table.cjs";
27
32
  import { CreateDocxOptions, DocxBody, DocxEditor, createDocx, openDocx } from "./edit/docx/editor.cjs";
28
33
  import { CreateEmptyDocxPackageOptions } from "./edit/docx/scaffold.cjs";
29
- import { n as RunInit, t as MarkdownRun } from "./run-DpQRXEGp.cjs";
30
- import { MarkdownParagraph, ParagraphInit } from "./edit/markdown/paragraph.cjs";
34
+ import { n as RunInit$1, t as MarkdownRun } from "./run-DpQRXEGp.cjs";
35
+ import { MarkdownParagraph, ParagraphInit as ParagraphInit$1 } from "./edit/markdown/paragraph.cjs";
31
36
  import { MarkdownList, MarkdownListInit } from "./edit/markdown/list.cjs";
32
- import { MarkdownTable, MarkdownTableCell, MarkdownTableRow, TableInit } from "./edit/markdown/table.cjs";
37
+ import { MarkdownTable, MarkdownTableCell, MarkdownTableRow, TableInit as TableInit$1 } from "./edit/markdown/table.cjs";
33
38
  import { CreateMarkdownEditorOptions, MarkdownBody, MarkdownEditor, createMarkdownEditor, openMarkdown } from "./edit/markdown/editor.cjs";
34
39
  import { BuildOdgPackageOptions, buildOdgPackage } from "./edit/odg/content.cjs";
35
- import { n as RunInit$1, t as OdtRun } from "./run-mzBHuFWz.cjs";
36
- import { n as ParagraphInit$1, t as OdtParagraph } from "./paragraph-CRaLSzWz.cjs";
40
+ import { n as RunInit$2, t as OdtRun } from "./run-mzBHuFWz.cjs";
41
+ import { n as ParagraphInit$2, t as OdtParagraph } from "./paragraph-CRaLSzWz.cjs";
37
42
  import { n as OdtListItem, t as OdtList } from "./list-C_UPIZWM.cjs";
38
43
  import { t as OdpShape } from "./shape-Kmmxib5z.cjs";
39
44
  import { a as OdgLineVector, c as OdgVectorKind, l as PathVectorInit, n as LineVectorInit, o as OdgPathVector, r as OdgBoxVector, s as OdgVector, t as BoxVectorInit } from "./vector-DDP7hgvm.cjs";
@@ -41,7 +46,7 @@ import { OdgPage, PageImageInit, TextBoxInit } from "./edit/odg/page.cjs";
41
46
  import { CreateOdgOptions, OdgEditor, createOdg, openOdg } from "./edit/odg/editor.cjs";
42
47
  import { CreateEmptyOdgPackageOptions } from "./edit/odg/scaffold.cjs";
43
48
  import { BuildOdpPackageOptions, buildOdpPackage } from "./edit/odp/content.cjs";
44
- import { a as TableInit$1, i as OdtTableRow, n as OdtTable, r as OdtTableCell } from "./table-COmzfIOe.cjs";
49
+ import { a as TableInit$2, i as OdtTableRow, n as OdtTable, r as OdtTableCell } from "./table-COmzfIOe.cjs";
45
50
  import { OdpSlide, SlideImageInit, SlideTableInit, TextBoxInit as TextBoxInit$1 } from "./edit/odp/slide.cjs";
46
51
  import { CreateOdpOptions, OdpEditor, createOdp, openOdp } from "./edit/odp/editor.cjs";
47
52
  import { CreateEmptyOdpPackageOptions } from "./edit/odp/scaffold.cjs";
@@ -56,6 +61,8 @@ import { CreateEmptyOdtPackageOptions } from "./edit/odt/scaffold.cjs";
56
61
  import { a as PdfInternalLinkItem, c as PdfLineItem, d as PdfPathInit, f as PdfPathItem, g as PdfTextItem, h as PdfTextInit, i as PdfImageItem, l as PdfLinkInit, m as PdfRectItem, n as PdfEllipseItem, o as PdfItem, p as PdfRectInit, r as PdfImageInit, s as PdfLineInit, t as PdfEllipseInit, u as PdfLinkItem } from "./item-SUC4uKDO.cjs";
57
62
  import { PageInit, PdfPage } from "./edit/pdf/page.cjs";
58
63
  import { CreatePdfOptions, PdfEditor, createPdf, openPdf } from "./edit/pdf/editor.cjs";
64
+ import { PptShape, PptSlide } from "./edit/ppt/slide.cjs";
65
+ import { CreatePptOptions, PptEditor, createPpt, openPpt } from "./edit/ppt/editor.cjs";
59
66
  import { BuildPptxPackageOptions, buildPptxPackage, embeddedPresentationSerialiser } from "./edit/pptx/content.cjs";
60
67
  import { n as DrawingRunInit, r as PptxShape, t as DrawingParagraphInit } from "./shape-C2ef6uwC.cjs";
61
68
  import { i as PptxTableRow, n as PptxTableCell, r as PptxTableInit, t as PptxTable } from "./table-CtbzOK8s.cjs";
@@ -128,16 +135,15 @@ import { OdbReportContentOptions, OdbReportNotSpecifiedError, readOdbReportConte
128
135
  import { renderOdbReportContent } from "./odb/report/render.cjs";
129
136
  import { OdbReportDataSourceError, odbReportCommandSql, resolveOdbReportRows } from "./odb/report/source.cjs";
130
137
  import { UnsupportedPackageFormatError, decodeDocumentPackage, decodeOdbPackage, encodeDocumentPackage } from "./package-codec.cjs";
131
- import { MetadataOverrides } from "./metadata/core-patch.cjs";
132
138
  import { PatchDocxMetadataOptions, SetDocumentMetadataOptions, patchDocxMetadata, setDocumentMetadata } from "./metadata/write.cjs";
133
139
  import { throwIfAborted } from "./ports/abort.cjs";
134
140
  import { Alignment, Box, COLOR_BLACK, CellPosition, CellRange, Color as LayoutColor, ContentBlock, ContentBlockSchema, ContentCellFill, ContentCellValue, ContentCellValueSchema, ContentDocument, ContentDocumentJson, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentImageBlock, ContentImageBlockSchema, ContentListMembership, ContentPageBreak, ContentPageBreakSchema, ContentParagraph, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetImage, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DocumentJsonResult, DocumentSchemaKind, DocumentTree, DocumentTreeJson, DocumentTreeSchema, FontFace, LayoutFont, LayoutMetadata, Margins, MathAssembledGlyphs, MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSize, PositionedFormula, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, UnrecognizedDocumentSchemaError, cellReference, columnIndexToLetters, columnLettersToIndex, contentDocumentWithSchema, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, isContentBlock, parseCellReference, parseRangeReference, rangeReference, rgbHexToColor, schemaUriFor } from "document-schema.js";
135
141
  import { FontFaceParseError, FontRegistry, FontRegistryOptions, FontSubstitution, LAYOUT_FORMAT_VERSION, LayoutDocument, LayoutDocumentSchema, LayoutEllipse, LayoutImage, LayoutImageAsset, LayoutItem, LayoutLine, LayoutLink, LayoutPage, LayoutPath, LayoutPathSegment, LayoutRect, LayoutSubpath, LayoutText, LoadedMathFont, MathFont, MathFontDescriptorMetrics, NOOP_DIAGNOSTIC_SINK, PdfDiagnostic, PdfDiagnosticSeverity, PdfDiagnosticSink, PdfEncryptedError, PdfParseError, ProvidedFont, ReadPdfOptions, ResolvedFace, WinAnsiSubstitution, WritePdfOptions, createFontMeasurer, createFontRegistry, createStandardFontMeasurer, loadMathFont, pdfCodec, readFontFace as describeFontFace, readPdf, writePdf } from "pdf-codec";
136
142
  import { Attribute, AttributeSchema, BinaryPart, BinaryPartSchema, Comment, CommentSchema, CompactAttrPairs, CompactPackage, CompactPackageSchema, CompactPart, CompactPartSchema, CompactXmlNode, CompactXmlNodeSchema, DefinedName, DefinedNameSchema, Footnote, FootnoteSchema, HeaderFooterPart, HeaderFooterPartSchema, NumberingDefinition, NumberingDefinitionSchema, NumberingDefinitions, NumberingLevel, NumberingLevelSchema, Package, PackageSchema, Part, PartSchema, Relationship, SectionHeaderFooterReferences, SectionHeaderFooterReferencesSchema, XmlCdata, XmlCdataSchema, XmlComment, XmlCommentSchema, XmlDeclaration, XmlDeclarationSchema, XmlElement, XmlElementSchema, XmlNode, XmlNodeSchema, XmlPart, XmlPartSchema, XmlPi, XmlPiSchema, XmlText, XmlTextSchema, attr, base64ToBytes, buildXlsxPackageFromContent as buildXlsxPackage, buildXml, bytesToBase64, childrenWithTag, compactCodec, compactPackageCodec, decodeCompactPackage, decodeEntities, decodePackage, elementsWithTag, encodeCompactPackage, encodePackage, fromCompact, isCompactXmlNode, isXmlNode, packageCodec, parsePackage, parseXml, readXlsxContent, resolveRelationships, rootElement, serializePackage, textContent as textContent$1, toCompact, unzipPackage, walk, xmlCodec, zipPackage } from "ooxml.js";
137
143
  import { OdbComponentInfo, OdbConnectionInfo, OdbForm, OdbFormControl, OdbFormDefinition, OdbInventory, OdbQueryInfo, OdbReport, OdbReportBand, OdbReportElement, OdbReportFunction, OdbReportGroup, readOdbForm, readOdbInventory, readOdbReport, resolveOdbComponent } from "odf.js";
144
+ import { readDocContent, writeDocContent } from "doc-codec";
138
145
  import { RtfBytesSchema, readRtfContent, writeRtfContent } from "rtf-codec";
139
146
  import { EpubBytesSchema, readEpubContent, writeEpubContent } from "epub-codec";
140
147
  import { readWpdContent } from "wpd-codec";
141
- import { readDocContent, writeDocContent } from "doc-codec";
142
148
  import { XlsContentDocument, readXlsContent, writeXlsContent } from "xls-codec";
143
- export { type Alignment, type Attribute, AttributeSchema, type BinaryPart, BinaryPartSchema, type Box, type BuildCsvTextOptions, type BuildDocxPackageOptions, type BuildOdgPackageOptions, type BuildOdpPackageOptions, type BuildOdsPackageOptions, type BuildOdtPackageOptions, type BuildPptxPackageOptions, type BuildSvgTextOptions, COLOR_BLACK, type CellPosition, type CellRange, type CellTypeDeclineReason, type CellTypeInference, type CellTypeInferenceResult, type CellTypeInferenceSink, type CellTypeRule, type ClockPort, type Comment, CommentSchema, type CompactAttrPairs, type CompactPackage, CompactPackageSchema, type CompactPart, CompactPartSchema, type CompactXmlNode, CompactXmlNodeSchema, type CompositionHop, type ContentBlock, ContentBlockSchema, type ContentCellFill, type ContentCellValue, ContentCellValueSchema, type ContentDocument, type ContentDocumentJson, ContentDocumentSchema, type ContentDrawPage, ContentDrawPageSchema, type ContentEmbeddedObject, type ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, type ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, type ContentImageBlock, ContentImageBlockSchema, type ContentListMembership, type ContentPageBreak, ContentPageBreakSchema, type ContentParagraph, ContentParagraphSchema, type ContentPathPoint, ContentPathPointSchema, type ContentPathSegment, ContentPathSegmentSchema, type ContentRun, ContentRunSchema, type ContentSection, ContentSectionSchema, type ContentShape, ContentShapeSchema, type ContentSheet, type ContentSheetCell, ContentSheetCellSchema, type ContentSheetColumn, ContentSheetColumnSchema, type ContentSheetImage, type ContentSheetPrintRange, ContentSheetPrintRangeSchema, type ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, type ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, type ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, type ContentSlide, ContentSlideSchema, type ContentStroke, ContentStrokeSchema, type ContentSubpath, ContentSubpathSchema, type ContentTable, type ContentTableCell, ContentTableCellSchema, type ContentTableRow, ContentTableRowSchema, ContentTableSchema, type ContentVector, ContentVectorSchema, type ConversionOptions, type ConversionPlan, type ConversionRequest, type ConversionResult, type CreateDocxOptions, type CreateEmptyDocxPackageOptions, type CreateEmptyOdgPackageOptions, type CreateEmptyOdpPackageOptions, type CreateEmptyOdsPackageOptions, type CreateEmptyOdtPackageOptions, type CreateEmptyPptxPackageOptions, type CreateMarkdownEditorOptions, type CreateOdgOptions, type CreateOdpOptions, type CreateOdsOptions, type CreateOdtOptions, type CreatePdfOptions, type CreatePptxOptions, type CreateXlsOptions, CsvBytesSchema, CsvInvalidUtf8Error, CsvParseError, type CsvReadOptions, CsvSheetNotFoundError, CsvSheetNotSpecifiedError, CsvUnsupportedDocumentKindError, type CsvWriteOptions, DEFAULT_LAYOUT_FONT, DOCUMENT_FORMATS, type DefinedName, DefinedNameSchema, type Diagnostic, DocBytesSchema, type DocumentBridgeOptions, type DocumentConverter, type DocumentFontRegistryOptions, type DocumentFormat, DocumentFormatSchema, type DocumentFormulaEntry, type DocumentJsonResult, type DocumentPayload, type DocumentSchemaKind, type DocumentToPdfOptions, type DocumentTree, type DocumentTreeJson, DocumentTreeSchema, type DocxBody, DocxBytesSchema, DocxEditor, type DocxExtras, DocxParagraph, DocxRun, DocxTable, DocxTableCell, DocxTableRow, type DocxVerticalMerge, type DrawingLayoutOptions, type DrawingLayoutResult, type DrawingParagraphInit, type DrawingRunInit, type EngineLayoutOptions, EpubBytesSchema, SUPPORTED_BACKUP_FORMAT_VERSION as FIREBIRD_SUPPORTED_BACKUP_FORMAT_VERSION, FirebirdBackupFormatError, FirebirdBackupParseError, type FirebirdBackupSummary, FirebirdCompositeRecordUnsupportedError, FirebirdDataParseError, FirebirdSchemaParseError, FirebirdUnsupportedFieldTypeError, FontDeobfuscationError, type FontFace, FontFaceParseError, type FontRegistry, type FontRegistryOptions, type FontSourcePackage, type FontSubstitution, type Footnote, FootnoteSchema, type GridLattice, type HeaderFooterPart, HeaderFooterPartSchema, type HsqldbBinaryScript, HsqldbBinaryScriptParseError, type HsqldbColumn, type HsqldbDecodeOptions, HsqldbRowFormatError, HsqldbScriptParseError, HsqldbSqlEvaluationError, HsqldbSqlParseError, HsqldbSqlUnsupportedError, type HsqldbTable, LATEX_DIAGNOSTIC_CODES, LAYOUT_FORMAT_VERSION, type LatexDiagnostic, type LatexDiagnosticCode, type LatexDiagnosticSink, type LatexFormulaOptions, type LatexFormulaResult, type LatexLoweringResult, type LayoutColor, type LayoutDocument, LayoutDocumentSchema, type LayoutEllipse, type LayoutFont, type LayoutFormulaOptions, type LayoutImage, type LayoutImageAsset, type LayoutItem, type LayoutLine, type LayoutLink, type LayoutMetadata, type LayoutPage, type LayoutPath, type LayoutPathSegment, type LayoutRect, type LayoutSubpath, type LayoutText, type LoadedMathFont, type LowerLatexOptions, MATH_LINT_CODES, type Margins, type MarkdownBody, MarkdownBytesSchema, MarkdownEditor, MarkdownList, type MarkdownListInit, type MarkdownMathLoweringOptions, MarkdownParagraph, type ParagraphInit as MarkdownParagraphInit, type MarkdownRenderDiagnostic, type MarkdownRenderDiagnosticCode, MarkdownRenderDiagnosticCodes, type MarkdownRenderDiagnosticSeverity, type MarkdownRenderDiagnosticSink, MarkdownRun, type RunInit as MarkdownRunInit, MarkdownTable, MarkdownTableCell, type TableInit as MarkdownTableInit, MarkdownTableRow, type MathAssembledGlyphs, type MathBox, type MathColor, type MathDiagnostic, type MathDiagnosticKind, type MathFont, type MathFontDescriptorMetrics, type MathFontMetrics, type MathGlyphMetrics, type MathGlyphPlacement, type MathGlyphRun, type MathLayoutItem, type MathLayoutResult, type MathLintCode, type MathLintDiagnostic, type MathMlAttribute, type MathMlElement, type MathMlNode, type MathMlText, type MathRule, type MathStretchAxis, type MathStretchGlyph, type MathStretchResult, type MathStroke, type MathVariant, type MetadataOverrides, NOOP_DIAGNOSTIC_SINK, type NumberingDefinition, NumberingDefinitionSchema, type NumberingDefinitions, type NumberingLevel, NumberingLevelSchema, type OdbComponentInfo, type OdbConnectionInfo, type OdbConversionOptions, type OdbForm, type OdbFormControl, type OdbFormDefinition, type OdbInventory, OdbNoEmbeddedDataSourceError, type OdbQueryInfo, type OdbReport, type OdbReportBand, type OdbReportContentOptions, OdbReportDataSourceError, type OdbReportElement, type OdbReportFunction, type OdbReportGroup, OdbReportNotSpecifiedError, type OdbReportToDocxOptions, type OdbReportToOdtOptions, OdbTableNotFoundError, OdbTableNotSpecifiedError, type OdbToCsvOptions, type OdbUnsupportedFormat, OdbUnsupportedFormatError, OdfEmbeddedFontError, OdgBoxVector, type BoxVectorInit as OdgBoxVectorInit, OdgBytesSchema, OdgEditor, OdgLineVector, type LineVectorInit as OdgLineVectorInit, OdgPage, type PageImageInit as OdgPageImageInit, OdgPathVector, type PathVectorInit as OdgPathVectorInit, type TextBoxInit as OdgTextBoxInit, type OdgVector, type OdgVectorKind, type OdmToPdfOptions, OdmUnresolvedSectionError, OdpBytesSchema, OdpEditor, OdpShape, OdpSlide, type SlideImageInit as OdpSlideImageInit, type SlideTableInit as OdpSlideTableInit, type TextBoxInit$1 as OdpTextBoxInit, OdsBytesSchema, OdsCell, OdsEditor, OdsSheet, type OdtBody, OdtBytesSchema, OdtEditor, OdtList, OdtListItem, OdtParagraph, type ParagraphInit$1 as OdtParagraphInit, OdtRun, type RunInit$1 as OdtRunInit, OdtTable, OdtTableCell, type TableInit$1 as OdtTableInit, OdtTableRow, type OmmlDiagnostic, type OmmlDiagnosticKind, type OmmlReadResult, type OmmlWriteResult, OoxmlEmbeddedFontError, type OperatorProperties, PAGE_SIZE_A4, PAGE_SIZE_LETTER, type Package, PackageSchema, type PageInit, type PageSize, type Part, PartSchema, type PatchDocxMetadataOptions, PdfBytesSchema, type PdfDiagnostic, type PdfDiagnosticSeverity, type PdfDiagnosticSink, PdfEditor, type PdfEllipseInit, PdfEllipseItem, PdfEncryptedError, type PdfImageInit, PdfImageItem, PdfInternalLinkItem, type PdfItem, type PdfLineInit, PdfLineItem, type PdfLinkInit, PdfLinkItem, PdfPage, PdfParseError, type PdfPathInit, PdfPathItem, type PdfRectInit, PdfRectItem, type PdfTextInit, PdfTextItem, type PdfToDocumentOptions, type PositionedFormula, PptBytesSchema, PptxBytesSchema, PptxEditor, PptxShape, PptxSlide, PptxTable, PptxTableCell, type PptxTableInit, PptxTableRow, type PresentationLayoutResult, type ProvidedFont, type ReadCsvContentOptions, type ReadDocumentMetadataOptions, type ReadDocxContentOptions, type ReadFirebirdBackupResult, type ReadNativeDocumentTreeOptions, type ReadPdfOptions, type ReadSvgContentOptions, type ReconstructOptions, type Relationship, type RenderMarkdownOptions, type ResolvedFace, type RptAggregateFunction, type RptBandDefinition, type RptBandInstance, type RptBandKind, type RptFormula, RptFormulaEvaluationError, RptFormulaParseError, RptFormulaUnsupportedError, type RptGroupDefinition, type RptNamedFunctionDefinition, type RptReference, type RptReportDefinition, type RptReportRun, RptReportStructureError, type RptScope, RtfBytesSchema, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, SVG_DIAGNOSTIC_CODES, type SectionHeaderFooterReferences, SectionHeaderFooterReferencesSchema, type SetDocumentMetadataOptions, type SheetsLayoutOptions, type SlideImageInit$1 as SlideImageInit, type SlideTableInit$1 as SlideTableInit, type SlidesLayoutOptions, type SpreadsheetLayoutResult, type SqlAggregateArgument, type SqlAggregateFunction, type SqlColumnRef, type SqlComparisonOperator, type SqlFromClause, type SqlFromSource, type SqlJoinClause, type SqlLiteral, type SqlNameRef, type SqlOperand, type SqlOrderByTerm, type SqlPredicate, type SqlPunctuation, type SqlResultSet, type SqlSelectItem, type SqlSelectStatement, type SqlSortDirection, type SqlToken, SvgBytesSchema, type SvgDiagnostic, type SvgDiagnosticCode, type SvgDiagnosticSink, SvgInvalidUtf8Error, SvgMissingRootElementError, SvgMultiPageNotSpecifiedError, SvgPageNotFoundError, type SvgReadOptions, SvgUnsupportedDocumentKindError, type SvgWriteOptions, type TextBoxInit$2 as TextBoxInit, type UnifiedConversionOptions, UnrecognizedDocumentSchemaError, UnsupportedFontSourceFormatError, UnsupportedPackageFormatError, type WinAnsiSubstitution, type WordprocessingLayoutResult, type WritePdfOptions, XlsBytesSchema, XlsCell, type XlsContentDocument, XlsEditor, XlsSheet, XlsxBytesSchema, type XmlCdata, XmlCdataSchema, type XmlComment, XmlCommentSchema, type XmlDeclaration, XmlDeclarationSchema, type XmlElement, XmlElementSchema, type XmlNode, XmlNodeSchema, type XmlPart, XmlPartSchema, type XmlPi, XmlPiSchema, type XmlText, XmlTextSchema, applyMathVariant, attr, base64ToBytes, buildCsvText, buildDocumentBytes, buildDocxPackage, buildDrawingBlock, buildFormulaBlock, buildMarkdownText, buildOdgPackage, buildOdpPackage, buildOdsPackage, buildOdtPackage, buildOfficeMath, buildOfficeMathParagraph, buildPptxPackage, buildSvgText, buildXlsxPackage, buildXml, bytesToBase64, cellReference, childrenWithTag, collectDocumentFormulas, collectOfficeMathElements, columnIndexToLetters, columnLettersToIndex, compactCodec, compactPackageCodec, contentDocumentWithSchema, convertDocument, convertDrawingToLayout, convertPresentationToLayout, convertSpreadsheetToLayout, convertWordprocessingToLayout, createDocumentFontRegistry, createDocx, createFontMeasurer, createFontRegistry, createLocalDocumentConverter, createMarkdownEditor, createOdg, createOdp, createOds, createOdt, createPdf, createPptx, createStandardFontMeasurer, createXls, csvMarkdownCodec, csvPdfCodec, csvToMarkdown, csvToOds, csvToPdf, csvToXlsx, decodeCompactPackage, decodeCsvText, decodeDocumentPackage, decodeEntities, decodeHsqldbCachedTables, decodeMarkdownText, decodeOdbPackage, decodePackage, decodeSvgText, deobfuscateEmbeddedFont, deriveFontKey, describeFontFace, detectGridLattice, docPdfCodec, docToPdf, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, docxPdfCodec, docxToMarkdown, docxToOdt, docxToPdf, docxToPptx, drawingOfBlock, elementChildren, elementLocalName, elementsWithTag, embeddedPresentationSerialiser, encodeCompactPackage, encodeCsvText, encodeDocumentPackage, encodeMarkdownText, encodePackage, encodeSvgText, epubPdfCodec, epubToPdf, evaluateRptBandOutsideData, evaluateSelect, extractOdfEmbeddedFonts, extractOoxmlEmbeddedFonts, extractSourceFonts, extractSourceFontsForFormat, firstChildByLocalName, fixedClock, flipY, formulaDocument, formulaOfBlock, formulaPlaceholderText, fromCompact, displayTextFor as hsqldbCellDisplayText, inferCellValue, inflateHsqldbCompressedScript, isCompactXmlNode, isContentBlock, isMathMlElement, isMathVariant, isXmlNode, latexToFormula, layoutDocumentFromPackage, layoutFormula, lintMathCoherence, loadMathFont, localName, looksLikeSfnt, lowerLatex, lowerMarkdownMath, mapMathVariant, markdownDocxCodec, markdownOdtCodec, markdownPdfCodec, markdownToCsv, markdownToDocx, markdownToOdt, markdownToPdf, markdownToXlsx, textContent as mathMlTextContent, odbReportCommandSql, odbReportGroupChain, odbReportToDocx, odbReportToOdt, odbReportToPdf, odbTablesToSpreadsheetDocument, odbToCsv, odbToXlsx, odfToPdf, odgPdfCodec, odgSvgCodec, odgToPdf, odgToSvg, odmToPdf, odpPdfCodec, odpPptxCodec, odpToOdt, odpToPdf, odpToPptx, odsCsvCodec, odsPdfCodec, odsToCsv, odsToPdf, odsToXlsx, odsXlsxCodec, odtDocxCodec, odtPdfCodec, odtToDocx, odtToMarkdown, odtToOdp, odtToPdf, openDocx, openMarkdown, openOdg, openOdp, openOds, openOdt, openPdf, openPptx, openXls, operatorProperties, packageCodec, parseCellReference, parseHsqldbBinaryScript, parseHsqldbScript, parsePackage, parseRangeReference, parseRptFormula, parseSelect, parseXml, patchDocxMetadata, pdfCodec, pdfToCsv, pdfToDoc, pdfToDocx, pdfToEpub, pdfToMarkdown, pdfToOdg, pdfToOdp, pdfToOds, pdfToOdt, pdfToPpt, pdfToPptx, pdfToRtf, pdfToSvg, pdfToXls, pdfToXlsx, pptPdfCodec, pptToPdf, pptxPdfCodec, pptxToDocx, pptxToOdp, pptxToPdf, rangeReference, readCsvContent, readDocContent, readDocumentMetadata, readDocxContent, readDocxExtras, readEpubContent, readFirebirdBackup, readMarkdownContent, readNativeDocumentTree, readOdbForm, readOdbForms, readOdbInventory, readOdbReport, readOdbReportContent, readOdbReports, readOdbTables, readOdfEmbeddedFormula, readOdfFormulaContent, readOdgContent, readOdpContent, readOdsContent, readOdtContent, readOfficeMath, readPdf, readPptContent, readPptxContent, readRtfContent, readSvgContent, readWpdContent, readXlsContent, readXlsxContent, reconstructDrawing, reconstructPresentation, reconstructSpreadsheet, reconstructWordprocessing, renderContentDocumentToMarkdown, renderOdbReportContent, resolveCompositionPlan, resolveMetadataTimestamps, resolveOdbComponent, resolveOdbReportRows, resolveRelationships, rgbHexToColor, rootElement, rptBandDefinition, rptDefinitionFromReport, rtfPdfCodec, rtfToPdf, runRptReport, schemaUriFor, serializePackage, setDocumentMetadata, svgPdfCodec, svgToOdg, svgToPdf, systemClock, textContent$1 as textContent, throwIfAborted, toCompact, tokenizeSql, unzipPackage, walk, writeDocContent, writeEpubContent, writePdf, writePptContent, writeRtfContent, writeXlsContent, displayTextOfValue as xlsDisplayTextOfValue, xlsPdfCodec, xlsToPdf, xlsxCsvCodec, xlsxMarkdownCodec, xlsxPdfCodec, xlsxToCsv, xlsxToMarkdown, xlsxToOds, xlsxToPdf, xmlCodec, zipPackage };
149
+ export { type Alignment, type Attribute, AttributeSchema, type BinaryPart, BinaryPartSchema, type Box, type BuildCsvTextOptions, type BuildDocxPackageOptions, type BuildOdgPackageOptions, type BuildOdpPackageOptions, type BuildOdsPackageOptions, type BuildOdtPackageOptions, type BuildPptxPackageOptions, type BuildSvgTextOptions, COLOR_BLACK, type CellPosition, type CellRange, type CellTypeDeclineReason, type CellTypeInference, type CellTypeInferenceResult, type CellTypeInferenceSink, type CellTypeRule, type ClockPort, type Comment, CommentSchema, type CompactAttrPairs, type CompactPackage, CompactPackageSchema, type CompactPart, CompactPartSchema, type CompactXmlNode, CompactXmlNodeSchema, type CompositionHop, type ContentBlock, ContentBlockSchema, type ContentCellFill, type ContentCellValue, ContentCellValueSchema, type ContentDocument, type ContentDocumentJson, ContentDocumentSchema, type ContentDrawPage, ContentDrawPageSchema, type ContentEmbeddedObject, type ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, type ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, type ContentImageBlock, ContentImageBlockSchema, type ContentListMembership, type ContentPageBreak, ContentPageBreakSchema, type ContentParagraph, ContentParagraphSchema, type ContentPathPoint, ContentPathPointSchema, type ContentPathSegment, ContentPathSegmentSchema, type ContentRun, ContentRunSchema, type ContentSection, ContentSectionSchema, type ContentShape, ContentShapeSchema, type ContentSheet, type ContentSheetCell, ContentSheetCellSchema, type ContentSheetColumn, ContentSheetColumnSchema, type ContentSheetImage, type ContentSheetPrintRange, ContentSheetPrintRangeSchema, type ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, type ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, type ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, type ContentSlide, ContentSlideSchema, type ContentStroke, ContentStrokeSchema, type ContentSubpath, ContentSubpathSchema, type ContentTable, type ContentTableCell, ContentTableCellSchema, type ContentTableRow, ContentTableRowSchema, ContentTableSchema, type ContentVector, ContentVectorSchema, type ConversionOptions, type ConversionPlan, type ConversionRequest, type ConversionResult, type CreateDocOptions, type CreateDocxOptions, type CreateEmptyDocxPackageOptions, type CreateEmptyOdgPackageOptions, type CreateEmptyOdpPackageOptions, type CreateEmptyOdsPackageOptions, type CreateEmptyOdtPackageOptions, type CreateEmptyPptxPackageOptions, type CreateMarkdownEditorOptions, type CreateOdgOptions, type CreateOdpOptions, type CreateOdsOptions, type CreateOdtOptions, type CreatePdfOptions, type CreatePptOptions, type CreatePptxOptions, type CreateXlsOptions, CsvBytesSchema, CsvInvalidUtf8Error, CsvParseError, type CsvReadOptions, CsvSheetNotFoundError, CsvSheetNotSpecifiedError, CsvUnsupportedDocumentKindError, type CsvWriteOptions, DEFAULT_LAYOUT_FONT, DOCUMENT_FORMATS, type DefinedName, DefinedNameSchema, type Diagnostic, DocBytesSchema, DocEditor, DocParagraph, type ParagraphInit as DocParagraphInit, DocRun, type RunInit as DocRunInit, DocSection, type SectionInit as DocSectionInit, DocTable, DocTableCell, type TableInit as DocTableInit, DocTableRow, type DocumentBridgeOptions, type DocumentConverter, type DocumentFontRegistryOptions, type DocumentFormat, DocumentFormatSchema, type DocumentFormulaEntry, type DocumentJsonResult, type DocumentPayload, type DocumentSchemaKind, type DocumentToPdfOptions, type DocumentTree, type DocumentTreeJson, DocumentTreeSchema, type DocxBody, DocxBytesSchema, DocxEditor, type DocxExtras, DocxParagraph, DocxRun, DocxTable, DocxTableCell, DocxTableRow, type DocxVerticalMerge, type DrawingLayoutOptions, type DrawingLayoutResult, type DrawingParagraphInit, type DrawingRunInit, type EngineLayoutOptions, EpubBytesSchema, SUPPORTED_BACKUP_FORMAT_VERSION as FIREBIRD_SUPPORTED_BACKUP_FORMAT_VERSION, FirebirdBackupFormatError, FirebirdBackupParseError, type FirebirdBackupSummary, FirebirdCompositeRecordUnsupportedError, FirebirdDataParseError, FirebirdSchemaParseError, FirebirdUnsupportedFieldTypeError, FontDeobfuscationError, type FontFace, FontFaceParseError, type FontRegistry, type FontRegistryOptions, type FontSourcePackage, type FontSubstitution, type Footnote, FootnoteSchema, type GridLattice, type HeaderFooterPart, HeaderFooterPartSchema, type HsqldbBinaryScript, HsqldbBinaryScriptParseError, type HsqldbColumn, type HsqldbDecodeOptions, HsqldbRowFormatError, HsqldbScriptParseError, HsqldbSqlEvaluationError, HsqldbSqlParseError, HsqldbSqlUnsupportedError, type HsqldbTable, LATEX_DIAGNOSTIC_CODES, LAYOUT_FORMAT_VERSION, type LatexDiagnostic, type LatexDiagnosticCode, type LatexDiagnosticSink, type LatexFormulaOptions, type LatexFormulaResult, type LatexLoweringResult, type LayoutColor, type LayoutDocument, LayoutDocumentSchema, type LayoutEllipse, type LayoutFont, type LayoutFormulaOptions, type LayoutImage, type LayoutImageAsset, type LayoutItem, type LayoutLine, type LayoutLink, type LayoutMetadata, type LayoutPage, type LayoutPath, type LayoutPathSegment, type LayoutRect, type LayoutSubpath, type LayoutText, type LoadedMathFont, type LowerLatexOptions, MATH_LINT_CODES, type Margins, type MarkdownBody, MarkdownBytesSchema, MarkdownEditor, MarkdownList, type MarkdownListInit, type MarkdownMathLoweringOptions, MarkdownParagraph, type ParagraphInit$1 as MarkdownParagraphInit, type MarkdownRenderDiagnostic, type MarkdownRenderDiagnosticCode, MarkdownRenderDiagnosticCodes, type MarkdownRenderDiagnosticSeverity, type MarkdownRenderDiagnosticSink, MarkdownRun, type RunInit$1 as MarkdownRunInit, MarkdownTable, MarkdownTableCell, type TableInit$1 as MarkdownTableInit, MarkdownTableRow, type MathAssembledGlyphs, type MathBox, type MathColor, type MathDiagnostic, type MathDiagnosticKind, type MathFont, type MathFontDescriptorMetrics, type MathFontMetrics, type MathGlyphMetrics, type MathGlyphPlacement, type MathGlyphRun, type MathLayoutItem, type MathLayoutResult, type MathLintCode, type MathLintDiagnostic, type MathMlAttribute, type MathMlElement, type MathMlNode, type MathMlText, type MathRule, type MathStretchAxis, type MathStretchGlyph, type MathStretchResult, type MathStroke, type MathVariant, type MetadataOverrides, NOOP_DIAGNOSTIC_SINK, type NumberingDefinition, NumberingDefinitionSchema, type NumberingDefinitions, type NumberingLevel, NumberingLevelSchema, type OdbComponentInfo, type OdbConnectionInfo, type OdbConversionOptions, type OdbForm, type OdbFormControl, type OdbFormDefinition, type OdbInventory, OdbNoEmbeddedDataSourceError, type OdbQueryInfo, type OdbReport, type OdbReportBand, type OdbReportContentOptions, OdbReportDataSourceError, type OdbReportElement, type OdbReportFunction, type OdbReportGroup, OdbReportNotSpecifiedError, type OdbReportToDocxOptions, type OdbReportToOdtOptions, OdbTableNotFoundError, OdbTableNotSpecifiedError, type OdbToCsvOptions, type OdbUnsupportedFormat, OdbUnsupportedFormatError, OdfEmbeddedFontError, OdgBoxVector, type BoxVectorInit as OdgBoxVectorInit, OdgBytesSchema, OdgEditor, OdgLineVector, type LineVectorInit as OdgLineVectorInit, OdgPage, type PageImageInit as OdgPageImageInit, OdgPathVector, type PathVectorInit as OdgPathVectorInit, type TextBoxInit as OdgTextBoxInit, type OdgVector, type OdgVectorKind, type OdmToPdfOptions, OdmUnresolvedSectionError, OdpBytesSchema, OdpEditor, OdpShape, OdpSlide, type SlideImageInit as OdpSlideImageInit, type SlideTableInit as OdpSlideTableInit, type TextBoxInit$1 as OdpTextBoxInit, OdsBytesSchema, OdsCell, OdsEditor, OdsSheet, type OdtBody, OdtBytesSchema, OdtEditor, OdtList, OdtListItem, OdtParagraph, type ParagraphInit$2 as OdtParagraphInit, OdtRun, type RunInit$2 as OdtRunInit, OdtTable, OdtTableCell, type TableInit$2 as OdtTableInit, OdtTableRow, type OmmlDiagnostic, type OmmlDiagnosticKind, type OmmlReadResult, type OmmlWriteResult, OoxmlEmbeddedFontError, type OperatorProperties, PAGE_SIZE_A4, PAGE_SIZE_LETTER, type Package, PackageSchema, type PageInit, type PageSize, type Part, PartSchema, type PatchDocxMetadataOptions, PdfBytesSchema, type PdfDiagnostic, type PdfDiagnosticSeverity, type PdfDiagnosticSink, PdfEditor, type PdfEllipseInit, PdfEllipseItem, PdfEncryptedError, type PdfImageInit, PdfImageItem, PdfInternalLinkItem, type PdfItem, type PdfLineInit, PdfLineItem, type PdfLinkInit, PdfLinkItem, PdfPage, PdfParseError, type PdfPathInit, PdfPathItem, type PdfRectInit, PdfRectItem, type PdfTextInit, PdfTextItem, type PdfToDocumentOptions, type PositionedFormula, PptBytesSchema, PptEditor, PptShape, PptSlide, PptxBytesSchema, PptxEditor, PptxShape, PptxSlide, PptxTable, PptxTableCell, type PptxTableInit, PptxTableRow, type PresentationLayoutResult, type ProvidedFont, type ReadCsvContentOptions, type ReadDocumentMetadataOptions, type ReadDocxContentOptions, type ReadFirebirdBackupResult, type ReadNativeDocumentTreeOptions, type ReadPdfOptions, type ReadSvgContentOptions, type ReconstructOptions, type Relationship, type RenderMarkdownOptions, type ResolvedFace, type RptAggregateFunction, type RptBandDefinition, type RptBandInstance, type RptBandKind, type RptFormula, RptFormulaEvaluationError, RptFormulaParseError, RptFormulaUnsupportedError, type RptGroupDefinition, type RptNamedFunctionDefinition, type RptReference, type RptReportDefinition, type RptReportRun, RptReportStructureError, type RptScope, RtfBytesSchema, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, SVG_DIAGNOSTIC_CODES, type SectionHeaderFooterReferences, SectionHeaderFooterReferencesSchema, type SetDocumentMetadataOptions, type SheetsLayoutOptions, type SlideImageInit$1 as SlideImageInit, type SlideTableInit$1 as SlideTableInit, type SlidesLayoutOptions, type SpreadsheetLayoutResult, type SqlAggregateArgument, type SqlAggregateFunction, type SqlColumnRef, type SqlComparisonOperator, type SqlFromClause, type SqlFromSource, type SqlJoinClause, type SqlLiteral, type SqlNameRef, type SqlOperand, type SqlOrderByTerm, type SqlPredicate, type SqlPunctuation, type SqlResultSet, type SqlSelectItem, type SqlSelectStatement, type SqlSortDirection, type SqlToken, SvgBytesSchema, type SvgDiagnostic, type SvgDiagnosticCode, type SvgDiagnosticSink, SvgInvalidUtf8Error, SvgMissingRootElementError, SvgMultiPageNotSpecifiedError, SvgPageNotFoundError, type SvgReadOptions, SvgUnsupportedDocumentKindError, type SvgWriteOptions, type TextBoxInit$2 as TextBoxInit, type UnifiedConversionOptions, UnrecognizedDocumentSchemaError, UnsupportedFontSourceFormatError, UnsupportedPackageFormatError, type WinAnsiSubstitution, type WordprocessingLayoutResult, type WritePdfOptions, XlsBytesSchema, XlsCell, type XlsContentDocument, XlsEditor, XlsSheet, XlsxBytesSchema, type XmlCdata, XmlCdataSchema, type XmlComment, XmlCommentSchema, type XmlDeclaration, XmlDeclarationSchema, type XmlElement, XmlElementSchema, type XmlNode, XmlNodeSchema, type XmlPart, XmlPartSchema, type XmlPi, XmlPiSchema, type XmlText, XmlTextSchema, applyMathVariant, attr, base64ToBytes, buildCsvText, buildDocumentBytes, buildDocxPackage, buildDrawingBlock, buildFormulaBlock, buildMarkdownText, buildOdgPackage, buildOdpPackage, buildOdsPackage, buildOdtPackage, buildOfficeMath, buildOfficeMathParagraph, buildPptxPackage, buildSvgText, buildXlsxPackage, buildXml, bytesToBase64, cellReference, childrenWithTag, collectDocumentFormulas, collectOfficeMathElements, columnIndexToLetters, columnLettersToIndex, compactCodec, compactPackageCodec, contentDocumentWithSchema, convertDocument, convertDrawingToLayout, convertPresentationToLayout, convertSpreadsheetToLayout, convertWordprocessingToLayout, createDoc, createDocumentFontRegistry, createDocx, createFontMeasurer, createFontRegistry, createLocalDocumentConverter, createMarkdownEditor, createOdg, createOdp, createOds, createOdt, createPdf, createPpt, createPptx, createStandardFontMeasurer, createXls, csvMarkdownCodec, csvPdfCodec, csvToMarkdown, csvToOds, csvToPdf, csvToXlsx, decodeCompactPackage, decodeCsvText, decodeDocumentPackage, decodeEntities, decodeHsqldbCachedTables, decodeMarkdownText, decodeOdbPackage, decodePackage, decodeSvgText, deobfuscateEmbeddedFont, deriveFontKey, describeFontFace, detectGridLattice, docPdfCodec, docToPdf, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, docxPdfCodec, docxToMarkdown, docxToOdt, docxToPdf, docxToPptx, drawingOfBlock, elementChildren, elementLocalName, elementsWithTag, embeddedPresentationSerialiser, encodeCompactPackage, encodeCsvText, encodeDocumentPackage, encodeMarkdownText, encodePackage, encodeSvgText, epubPdfCodec, epubToPdf, evaluateRptBandOutsideData, evaluateSelect, extractOdfEmbeddedFonts, extractOoxmlEmbeddedFonts, extractSourceFonts, extractSourceFontsForFormat, firstChildByLocalName, fixedClock, flipY, formulaDocument, formulaOfBlock, formulaPlaceholderText, fromCompact, displayTextFor as hsqldbCellDisplayText, inferCellValue, inflateHsqldbCompressedScript, isCompactXmlNode, isContentBlock, isMathMlElement, isMathVariant, isXmlNode, latexToFormula, layoutDocumentFromPackage, layoutFormula, lintMathCoherence, loadMathFont, localName, looksLikeSfnt, lowerLatex, lowerMarkdownMath, mapMathVariant, markdownDocxCodec, markdownOdtCodec, markdownPdfCodec, markdownToCsv, markdownToDocx, markdownToOdt, markdownToPdf, markdownToXlsx, textContent as mathMlTextContent, odbReportCommandSql, odbReportGroupChain, odbReportToDocx, odbReportToOdt, odbReportToPdf, odbTablesToSpreadsheetDocument, odbToCsv, odbToXlsx, odfToPdf, odgPdfCodec, odgSvgCodec, odgToPdf, odgToSvg, odmToPdf, odpPdfCodec, odpPptxCodec, odpToOdt, odpToPdf, odpToPptx, odsCsvCodec, odsPdfCodec, odsToCsv, odsToPdf, odsToXlsx, odsXlsxCodec, odtDocxCodec, odtPdfCodec, odtToDocx, odtToMarkdown, odtToOdp, odtToPdf, openDoc, openDocx, openMarkdown, openOdg, openOdp, openOds, openOdt, openPdf, openPpt, openPptx, openXls, operatorProperties, packageCodec, parseCellReference, parseHsqldbBinaryScript, parseHsqldbScript, parsePackage, parseRangeReference, parseRptFormula, parseSelect, parseXml, patchDocxMetadata, pdfCodec, pdfToCsv, pdfToDoc, pdfToDocx, pdfToEpub, pdfToMarkdown, pdfToOdg, pdfToOdp, pdfToOds, pdfToOdt, pdfToPpt, pdfToPptx, pdfToRtf, pdfToSvg, pdfToXls, pdfToXlsx, pptPdfCodec, pptToPdf, pptxPdfCodec, pptxToDocx, pptxToOdp, pptxToPdf, rangeReference, readCsvContent, readDocContent, readDocumentMetadata, readDocxContent, readDocxExtras, readEpubContent, readFirebirdBackup, readMarkdownContent, readNativeDocumentTree, readOdbForm, readOdbForms, readOdbInventory, readOdbReport, readOdbReportContent, readOdbReports, readOdbTables, readOdfEmbeddedFormula, readOdfFormulaContent, readOdgContent, readOdpContent, readOdsContent, readOdtContent, readOfficeMath, readPdf, readPptContent, readPptxContent, readRtfContent, readSvgContent, readWpdContent, readXlsContent, readXlsxContent, reconstructDrawing, reconstructPresentation, reconstructSpreadsheet, reconstructWordprocessing, renderContentDocumentToMarkdown, renderOdbReportContent, resolveCompositionPlan, resolveMetadataTimestamps, resolveOdbComponent, resolveOdbReportRows, resolveRelationships, rgbHexToColor, rootElement, rptBandDefinition, rptDefinitionFromReport, rtfPdfCodec, rtfToPdf, runRptReport, schemaUriFor, serializePackage, setDocumentMetadata, svgPdfCodec, svgToOdg, svgToPdf, systemClock, textContent$1 as textContent, throwIfAborted, toCompact, tokenizeSql, unzipPackage, walk, writeDocContent, writeEpubContent, writePdf, writePptContent, writeRtfContent, writeXlsContent, displayTextOfValue as xlsDisplayTextOfValue, xlsPdfCodec, xlsToPdf, xlsxCsvCodec, xlsxMarkdownCodec, xlsxPdfCodec, xlsxToCsv, xlsxToMarkdown, xlsxToOds, xlsxToPdf, xmlCodec, zipPackage };