js.documents 7.12.3 → 7.14.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 (51) hide show
  1. package/dist/cell-BK7EyvRu.d.cts +34 -0
  2. package/dist/cell-BK7EyvRu.d.ts +34 -0
  3. package/dist/codecs/registry.cjs +1 -1
  4. package/dist/codecs/registry.js +1 -1
  5. package/dist/convert/composition.cjs +1 -1
  6. package/dist/convert/composition.js +1 -1
  7. package/dist/edit/doc/editor.cjs +132 -0
  8. package/dist/edit/doc/editor.d.cts +50 -0
  9. package/dist/edit/doc/editor.d.ts +50 -0
  10. package/dist/edit/doc/editor.js +128 -0
  11. package/dist/edit/doc/paragraph.cjs +130 -0
  12. package/dist/edit/doc/paragraph.d.cts +2 -0
  13. package/dist/edit/doc/paragraph.d.ts +2 -0
  14. package/dist/edit/doc/paragraph.js +128 -0
  15. package/dist/edit/doc/run.cjs +98 -0
  16. package/dist/edit/doc/run.d.cts +2 -0
  17. package/dist/edit/doc/run.d.ts +2 -0
  18. package/dist/edit/doc/run.js +96 -0
  19. package/dist/edit/doc/table.cjs +110 -0
  20. package/dist/edit/doc/table.d.cts +41 -0
  21. package/dist/edit/doc/table.d.ts +41 -0
  22. package/dist/edit/doc/table.js +106 -0
  23. package/dist/edit/ppt/editor.cjs +50 -0
  24. package/dist/edit/ppt/editor.d.cts +21 -0
  25. package/dist/edit/ppt/editor.d.ts +21 -0
  26. package/dist/edit/ppt/editor.js +47 -0
  27. package/dist/edit/ppt/slide.cjs +104 -0
  28. package/dist/edit/ppt/slide.d.cts +39 -0
  29. package/dist/edit/ppt/slide.d.ts +39 -0
  30. package/dist/edit/ppt/slide.js +101 -0
  31. package/dist/edit/xls/cell.cjs +113 -0
  32. package/dist/edit/xls/cell.d.cts +2 -0
  33. package/dist/edit/xls/cell.d.ts +2 -0
  34. package/dist/edit/xls/cell.js +111 -0
  35. package/dist/edit/xls/editor.cjs +81 -0
  36. package/dist/edit/xls/editor.d.cts +22 -0
  37. package/dist/edit/xls/editor.d.ts +22 -0
  38. package/dist/edit/xls/editor.js +78 -0
  39. package/dist/edit/xls/sheet.cjs +88 -0
  40. package/dist/edit/xls/sheet.d.cts +27 -0
  41. package/dist/edit/xls/sheet.d.ts +27 -0
  42. package/dist/edit/xls/sheet.js +87 -0
  43. package/dist/index.cjs +31 -2
  44. package/dist/index.d.cts +17 -8
  45. package/dist/index.d.ts +16 -7
  46. package/dist/index.js +12 -3
  47. package/dist/paragraph-Byw2Y7xu.d.ts +43 -0
  48. package/dist/paragraph-DM9n9I4T.d.cts +43 -0
  49. package/dist/run-iYz2M-a_.d.cts +39 -0
  50. package/dist/run-iYz2M-a_.d.ts +39 -0
  51. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ import { t as ClockPort } from "../../clock-C7SUuYN0.js";
2
+ import { XlsSheet } from "./sheet.js";
3
+ import { ContentDocument, LayoutMetadata } from "document-schema.js";
4
+ //#region src/edit/xls/editor.d.ts
5
+ interface CreateXlsOptions {
6
+ readonly clock?: ClockPort;
7
+ }
8
+ declare class XlsEditor {
9
+ private readonly document;
10
+ constructor(document: ContentDocument);
11
+ get metadata(): LayoutMetadata;
12
+ set metadata(value: LayoutMetadata);
13
+ sheets(): XlsSheet[];
14
+ sheet(name: string): XlsSheet | undefined;
15
+ addSheet(name: string): XlsSheet;
16
+ removeSheetAt(index: number): void;
17
+ toBytes(): Uint8Array<ArrayBuffer>;
18
+ }
19
+ declare function openXls(bytes: Uint8Array<ArrayBuffer>, password?: string): XlsEditor;
20
+ declare function createXls(options?: CreateXlsOptions): XlsEditor;
21
+ //#endregion
22
+ export { CreateXlsOptions, XlsEditor, createXls, openXls };
@@ -0,0 +1,78 @@
1
+ import { resolveMetadataTimestamps } from "../../model/metadata.js";
2
+ import { systemClock } from "../../ports/clock.js";
3
+ import { XlsSheet } from "./sheet.js";
4
+ import { PAGE_SIZE_LETTER } from "document-schema.js";
5
+ import { readXlsContent, writeXlsContent } from "xls-codec";
6
+ //#region src/edit/xls/editor.ts
7
+ const DEFAULT_PRINT_SETTINGS = {
8
+ pageSize: PAGE_SIZE_LETTER,
9
+ margins: {
10
+ topPt: 72,
11
+ rightPt: 72,
12
+ bottomPt: 72,
13
+ leftPt: 72
14
+ },
15
+ gridlines: true,
16
+ headers: true,
17
+ pageOrder: "downThenOver"
18
+ };
19
+ var XlsEditor = class {
20
+ document;
21
+ constructor(document) {
22
+ if (document.kind !== "spreadsheet") throw new Error(`XlsEditor requires a spreadsheet ContentDocument, got "${document.kind}"`);
23
+ if (document.sheets.length === 0) throw new Error("an xls workbook must carry at least one sheet");
24
+ this.document = document;
25
+ }
26
+ get metadata() {
27
+ return this.document.metadata;
28
+ }
29
+ set metadata(value) {
30
+ this.document.metadata = value;
31
+ }
32
+ sheets() {
33
+ return this.document.sheets.map((sheet) => new XlsSheet(this.document.sheets, sheet));
34
+ }
35
+ sheet(name) {
36
+ const found = this.document.sheets.find((sheet) => sheet.name === name);
37
+ return found === void 0 ? void 0 : new XlsSheet(this.document.sheets, found);
38
+ }
39
+ addSheet(name) {
40
+ const node = {
41
+ name,
42
+ cells: [],
43
+ columns: [],
44
+ rows: [],
45
+ images: [],
46
+ printSettings: structuredClone(DEFAULT_PRINT_SETTINGS)
47
+ };
48
+ this.document.sheets.push(node);
49
+ return new XlsSheet(this.document.sheets, node);
50
+ }
51
+ removeSheetAt(index) {
52
+ if (this.document.sheets.length === 1) throw new Error("an xls workbook must carry at least one sheet; the last one cannot be removed");
53
+ this.document.sheets.splice(index, 1);
54
+ }
55
+ toBytes() {
56
+ return writeXlsContent(this.document);
57
+ }
58
+ };
59
+ function openXls(bytes, password) {
60
+ return new XlsEditor(readXlsContent(bytes, password));
61
+ }
62
+ function createXls(options = {}) {
63
+ const clock = options.clock ?? systemClock;
64
+ return new XlsEditor({
65
+ kind: "spreadsheet",
66
+ metadata: resolveMetadataTimestamps({}, clock),
67
+ sheets: [{
68
+ name: "Sheet1",
69
+ cells: [],
70
+ columns: [],
71
+ rows: [],
72
+ images: [],
73
+ printSettings: structuredClone(DEFAULT_PRINT_SETTINGS)
74
+ }]
75
+ });
76
+ }
77
+ //#endregion
78
+ export { XlsEditor, createXls, openXls };
@@ -0,0 +1,88 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_edit_xls_cell = require("./cell.cjs");
3
+ //#region src/edit/xls/sheet.ts
4
+ const BIFF8_MAX_ROWS = 65536;
5
+ const BIFF8_MAX_COLUMNS = 256;
6
+ var XlsSheet = class {
7
+ container;
8
+ node;
9
+ removed = false;
10
+ constructor(container, node) {
11
+ this.container = container;
12
+ this.node = node;
13
+ }
14
+ live() {
15
+ if (this.removed) throw new Error("this XlsSheet has been removed from its workbook and can no longer be used");
16
+ return this.node;
17
+ }
18
+ get name() {
19
+ return this.live().name;
20
+ }
21
+ set name(value) {
22
+ this.live().name = value;
23
+ }
24
+ get printSettings() {
25
+ return this.live().printSettings;
26
+ }
27
+ set printSettings(value) {
28
+ this.live().printSettings = value;
29
+ }
30
+ cells() {
31
+ return this.live().cells.map((cell) => new require_edit_xls_cell.XlsCell(this.live().cells, cell));
32
+ }
33
+ columns() {
34
+ return this.live().columns;
35
+ }
36
+ rows() {
37
+ return this.live().rows;
38
+ }
39
+ cell(row, column) {
40
+ if (row < 0 || row >= BIFF8_MAX_ROWS) throw new Error(`row ${row} is outside BIFF8's 0..65535 row range`);
41
+ if (column < 0 || column >= BIFF8_MAX_COLUMNS) throw new Error(`column ${column} is outside BIFF8's 0..255 column range`);
42
+ const cells = this.live().cells;
43
+ const existing = cells.find((cell) => cell.row === row && cell.column === column);
44
+ if (existing !== void 0) return new require_edit_xls_cell.XlsCell(cells, existing);
45
+ const node = {
46
+ row,
47
+ column,
48
+ value: { kind: "empty" },
49
+ displayText: ""
50
+ };
51
+ cells.push(node);
52
+ return new require_edit_xls_cell.XlsCell(cells, node);
53
+ }
54
+ setColumnWidth(index, widthPt) {
55
+ this.columnEntry(index).widthPt = widthPt;
56
+ }
57
+ setColumnHidden(index, hidden) {
58
+ this.columnEntry(index).hidden = hidden;
59
+ }
60
+ setRowHeight(index, heightPt) {
61
+ this.rowEntry(index).heightPt = heightPt;
62
+ }
63
+ setRowHidden(index, hidden) {
64
+ this.rowEntry(index).hidden = hidden;
65
+ }
66
+ columnEntry(index) {
67
+ const entry = this.live().columns.find((column) => column.index === index);
68
+ if (entry !== void 0) return entry;
69
+ const fresh = { index };
70
+ this.live().columns.push(fresh);
71
+ return fresh;
72
+ }
73
+ rowEntry(index) {
74
+ const entry = this.live().rows.find((row) => row.index === index);
75
+ if (entry !== void 0) return entry;
76
+ const fresh = { index };
77
+ this.live().rows.push(fresh);
78
+ return fresh;
79
+ }
80
+ remove() {
81
+ if (this.container.length === 1) throw new Error("an xls workbook must carry at least one sheet; the last one cannot be removed");
82
+ const index = this.container.indexOf(this.node);
83
+ if (index !== -1) this.container.splice(index, 1);
84
+ this.removed = true;
85
+ }
86
+ };
87
+ //#endregion
88
+ exports.XlsSheet = XlsSheet;
@@ -0,0 +1,27 @@
1
+ import { t as XlsCell } from "../../cell-BK7EyvRu.cjs";
2
+ import { ContentSheet, ContentSheetPrintSettings } from "document-schema.js";
3
+ //#region src/edit/xls/sheet.d.ts
4
+ declare class XlsSheet {
5
+ private readonly container;
6
+ private readonly node;
7
+ private removed;
8
+ constructor(container: ContentSheet[], node: ContentSheet);
9
+ private live;
10
+ get name(): string;
11
+ set name(value: string);
12
+ get printSettings(): ContentSheetPrintSettings;
13
+ set printSettings(value: ContentSheetPrintSettings);
14
+ cells(): XlsCell[];
15
+ columns(): ContentSheet["columns"];
16
+ rows(): ContentSheet["rows"];
17
+ cell(row: number, column: number): XlsCell;
18
+ setColumnWidth(index: number, widthPt: number): void;
19
+ setColumnHidden(index: number, hidden: boolean): void;
20
+ setRowHeight(index: number, heightPt: number): void;
21
+ setRowHidden(index: number, hidden: boolean): void;
22
+ private columnEntry;
23
+ private rowEntry;
24
+ remove(): void;
25
+ }
26
+ //#endregion
27
+ export { XlsSheet };
@@ -0,0 +1,27 @@
1
+ import { t as XlsCell } from "../../cell-BK7EyvRu.js";
2
+ import { ContentSheet, ContentSheetPrintSettings } from "document-schema.js";
3
+ //#region src/edit/xls/sheet.d.ts
4
+ declare class XlsSheet {
5
+ private readonly container;
6
+ private readonly node;
7
+ private removed;
8
+ constructor(container: ContentSheet[], node: ContentSheet);
9
+ private live;
10
+ get name(): string;
11
+ set name(value: string);
12
+ get printSettings(): ContentSheetPrintSettings;
13
+ set printSettings(value: ContentSheetPrintSettings);
14
+ cells(): XlsCell[];
15
+ columns(): ContentSheet["columns"];
16
+ rows(): ContentSheet["rows"];
17
+ cell(row: number, column: number): XlsCell;
18
+ setColumnWidth(index: number, widthPt: number): void;
19
+ setColumnHidden(index: number, hidden: boolean): void;
20
+ setRowHeight(index: number, heightPt: number): void;
21
+ setRowHidden(index: number, hidden: boolean): void;
22
+ private columnEntry;
23
+ private rowEntry;
24
+ remove(): void;
25
+ }
26
+ //#endregion
27
+ export { XlsSheet };
@@ -0,0 +1,87 @@
1
+ import { XlsCell } from "./cell.js";
2
+ //#region src/edit/xls/sheet.ts
3
+ const BIFF8_MAX_ROWS = 65536;
4
+ const BIFF8_MAX_COLUMNS = 256;
5
+ var XlsSheet = class {
6
+ container;
7
+ node;
8
+ removed = false;
9
+ constructor(container, node) {
10
+ this.container = container;
11
+ this.node = node;
12
+ }
13
+ live() {
14
+ if (this.removed) throw new Error("this XlsSheet has been removed from its workbook and can no longer be used");
15
+ return this.node;
16
+ }
17
+ get name() {
18
+ return this.live().name;
19
+ }
20
+ set name(value) {
21
+ this.live().name = value;
22
+ }
23
+ get printSettings() {
24
+ return this.live().printSettings;
25
+ }
26
+ set printSettings(value) {
27
+ this.live().printSettings = value;
28
+ }
29
+ cells() {
30
+ return this.live().cells.map((cell) => new XlsCell(this.live().cells, cell));
31
+ }
32
+ columns() {
33
+ return this.live().columns;
34
+ }
35
+ rows() {
36
+ return this.live().rows;
37
+ }
38
+ cell(row, column) {
39
+ if (row < 0 || row >= BIFF8_MAX_ROWS) throw new Error(`row ${row} is outside BIFF8's 0..65535 row range`);
40
+ if (column < 0 || column >= BIFF8_MAX_COLUMNS) throw new Error(`column ${column} is outside BIFF8's 0..255 column range`);
41
+ const cells = this.live().cells;
42
+ const existing = cells.find((cell) => cell.row === row && cell.column === column);
43
+ if (existing !== void 0) return new XlsCell(cells, existing);
44
+ const node = {
45
+ row,
46
+ column,
47
+ value: { kind: "empty" },
48
+ displayText: ""
49
+ };
50
+ cells.push(node);
51
+ return new XlsCell(cells, node);
52
+ }
53
+ setColumnWidth(index, widthPt) {
54
+ this.columnEntry(index).widthPt = widthPt;
55
+ }
56
+ setColumnHidden(index, hidden) {
57
+ this.columnEntry(index).hidden = hidden;
58
+ }
59
+ setRowHeight(index, heightPt) {
60
+ this.rowEntry(index).heightPt = heightPt;
61
+ }
62
+ setRowHidden(index, hidden) {
63
+ this.rowEntry(index).hidden = hidden;
64
+ }
65
+ columnEntry(index) {
66
+ const entry = this.live().columns.find((column) => column.index === index);
67
+ if (entry !== void 0) return entry;
68
+ const fresh = { index };
69
+ this.live().columns.push(fresh);
70
+ return fresh;
71
+ }
72
+ rowEntry(index) {
73
+ const entry = this.live().rows.find((row) => row.index === index);
74
+ if (entry !== void 0) return entry;
75
+ const fresh = { index };
76
+ this.live().rows.push(fresh);
77
+ return fresh;
78
+ }
79
+ remove() {
80
+ if (this.container.length === 1) throw new Error("an xls workbook must carry at least one sheet; the last one cannot be removed");
81
+ const index = this.container.indexOf(this.node);
82
+ if (index !== -1) this.container.splice(index, 1);
83
+ this.removed = true;
84
+ }
85
+ };
86
+ //#endregion
87
+ export { XlsSheet };
package/dist/index.cjs CHANGED
@@ -47,6 +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");
54
+ const require_edit_xls_cell = require("./edit/xls/cell.cjs");
55
+ const require_edit_xls_sheet = require("./edit/xls/sheet.cjs");
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");
50
61
  const require_edit_pdf_item = require("./edit/pdf/item.cjs");
51
62
  const require_edit_pdf_page = require("./edit/pdf/page.cjs");
52
63
  const require_edit_pdf_editor = require("./edit/pdf/editor.cjs");
@@ -57,7 +68,6 @@ const require_fonts_registry = require("./fonts/registry.cjs");
57
68
  const require_omml_read = require("./omml/read.cjs");
58
69
  const require_latex_diagnostics = require("./latex/diagnostics.cjs");
59
70
  const require_latex_lint = require("./latex/lint.cjs");
60
- const require_ppt_read = require("./ppt/read.cjs");
61
71
  const require_ooxml_docx_read = require("./ooxml/docx/read.cjs");
62
72
  const require_ooxml_docx_extras = require("./ooxml/docx/extras.cjs");
63
73
  const require_ooxml_pptx_read = require("./ooxml/pptx/read.cjs");
@@ -76,7 +86,6 @@ const require_svg_text = require("./svg/text.cjs");
76
86
  const require_svg_read = require("./svg/read.cjs");
77
87
  const require_svg_write = require("./svg/write.cjs");
78
88
  const require_svg_diagnostics = require("./svg/diagnostics.cjs");
79
- const require_ppt_write = require("./ppt/write.cjs");
80
89
  const require_markdown_render = require("./markdown/render.cjs");
81
90
  const require_layout_engine = require("./layout/engine.cjs");
82
91
  const require_layout_slides = require("./layout/slides.cjs");
@@ -359,6 +368,13 @@ Object.defineProperty(exports, "DefinedNameSchema", {
359
368
  }
360
369
  });
361
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;
362
378
  exports.DocumentFormatSchema = require_convert_port.DocumentFormatSchema;
363
379
  Object.defineProperty(exports, "DocumentTreeSchema", {
364
380
  enumerable: true,
@@ -532,6 +548,9 @@ exports.PdfPathItem = require_edit_pdf_item.PdfPathItem;
532
548
  exports.PdfRectItem = require_edit_pdf_item.PdfRectItem;
533
549
  exports.PdfTextItem = require_edit_pdf_item.PdfTextItem;
534
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;
535
554
  exports.PptxBytesSchema = require_model_bytes.PptxBytesSchema;
536
555
  exports.PptxEditor = require_edit_pptx_editor.PptxEditor;
537
556
  exports.PptxShape = require_edit_pptx_shape.PptxShape;
@@ -583,6 +602,9 @@ Object.defineProperty(exports, "UnrecognizedDocumentSchemaError", {
583
602
  exports.UnsupportedFontSourceFormatError = require_convert_document_fonts.UnsupportedFontSourceFormatError;
584
603
  exports.UnsupportedPackageFormatError = require_package_codec.UnsupportedPackageFormatError;
585
604
  exports.XlsBytesSchema = require_model_bytes.XlsBytesSchema;
605
+ exports.XlsCell = require_edit_xls_cell.XlsCell;
606
+ exports.XlsEditor = require_edit_xls_editor.XlsEditor;
607
+ exports.XlsSheet = require_edit_xls_sheet.XlsSheet;
586
608
  exports.XlsxBytesSchema = require_model_bytes.XlsxBytesSchema;
587
609
  Object.defineProperty(exports, "XmlCdataSchema", {
588
610
  enumerable: true,
@@ -726,6 +748,7 @@ exports.convertDrawingToLayout = require_layout_drawing.convertDrawingToLayout;
726
748
  exports.convertPresentationToLayout = require_layout_slides.convertPresentationToLayout;
727
749
  exports.convertSpreadsheetToLayout = require_layout_sheets.convertSpreadsheetToLayout;
728
750
  exports.convertWordprocessingToLayout = require_layout_engine.convertWordprocessingToLayout;
751
+ exports.createDoc = require_edit_doc_editor.createDoc;
729
752
  exports.createDocumentFontRegistry = require_fonts_registry.createDocumentFontRegistry;
730
753
  exports.createDocx = require_edit_docx_editor.createDocx;
731
754
  Object.defineProperty(exports, "createFontMeasurer", {
@@ -747,6 +770,7 @@ exports.createOdp = require_edit_odp_editor.createOdp;
747
770
  exports.createOds = require_edit_ods_editor.createOds;
748
771
  exports.createOdt = require_edit_odt_editor.createOdt;
749
772
  exports.createPdf = require_edit_pdf_editor.createPdf;
773
+ exports.createPpt = require_edit_ppt_editor.createPpt;
750
774
  exports.createPptx = require_edit_pptx_editor.createPptx;
751
775
  Object.defineProperty(exports, "createStandardFontMeasurer", {
752
776
  enumerable: true,
@@ -754,6 +778,7 @@ Object.defineProperty(exports, "createStandardFontMeasurer", {
754
778
  return pdf_codec.createStandardFontMeasurer;
755
779
  }
756
780
  });
781
+ exports.createXls = require_edit_xls_editor.createXls;
757
782
  exports.csvMarkdownCodec = require_convert_codec.csvMarkdownCodec;
758
783
  exports.csvPdfCodec = require_convert_codec.csvPdfCodec;
759
784
  exports.csvToMarkdown = require_convert_convert.csvToMarkdown;
@@ -942,6 +967,7 @@ exports.odtToDocx = require_convert_convert.odtToDocx;
942
967
  exports.odtToMarkdown = require_convert_convert.odtToMarkdown;
943
968
  exports.odtToOdp = require_convert_convert.odtToOdp;
944
969
  exports.odtToPdf = require_convert_convert.odtToPdf;
970
+ exports.openDoc = require_edit_doc_editor.openDoc;
945
971
  exports.openDocx = require_edit_docx_editor.openDocx;
946
972
  exports.openMarkdown = require_edit_markdown_editor.openMarkdown;
947
973
  exports.openOdg = require_edit_odg_editor.openOdg;
@@ -949,7 +975,9 @@ exports.openOdp = require_edit_odp_editor.openOdp;
949
975
  exports.openOds = require_edit_ods_editor.openOds;
950
976
  exports.openOdt = require_edit_odt_editor.openOdt;
951
977
  exports.openPdf = require_edit_pdf_editor.openPdf;
978
+ exports.openPpt = require_edit_ppt_editor.openPpt;
952
979
  exports.openPptx = require_edit_pptx_editor.openPptx;
980
+ exports.openXls = require_edit_xls_editor.openXls;
953
981
  exports.operatorProperties = require_mathml_operators.operatorProperties;
954
982
  Object.defineProperty(exports, "packageCodec", {
955
983
  enumerable: true,
@@ -1212,6 +1240,7 @@ Object.defineProperty(exports, "writeXlsContent", {
1212
1240
  return xls_codec.writeXlsContent;
1213
1241
  }
1214
1242
  });
1243
+ exports.xlsDisplayTextOfValue = require_edit_xls_cell.displayTextOfValue;
1215
1244
  exports.xlsPdfCodec = require_convert_codec.xlsPdfCodec;
1216
1245
  exports.xlsToPdf = require_convert_convert.xlsToPdf;
1217
1246
  exports.xlsxCsvCodec = require_convert_codec.xlsxCsvCodec;
package/dist/index.d.cts CHANGED
@@ -18,6 +18,10 @@ 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 { n as RunInit, t as DocRun } from "./run-iYz2M-a_.cjs";
22
+ import { n as ParagraphInit, t as DocParagraph } from "./paragraph-DM9n9I4T.cjs";
23
+ import { DocTable, DocTableCell, DocTableRow, TableInit } from "./edit/doc/table.cjs";
24
+ import { CreateDocOptions, DocEditor, DocSection, SectionInit, createDoc, openDoc } from "./edit/doc/editor.cjs";
21
25
  import { BuildDocxPackageOptions, buildDocxPackage } from "./edit/docx/content.cjs";
22
26
  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
27
  import { n as buildOfficeMath, r as buildOfficeMathParagraph, t as OmmlWriteResult } from "./write-DWupt1QI.cjs";
@@ -26,14 +30,14 @@ import { DocxParagraph } from "./edit/docx/paragraph.cjs";
26
30
  import { DocxTable, DocxTableCell, DocxTableRow, DocxVerticalMerge } from "./edit/docx/table.cjs";
27
31
  import { CreateDocxOptions, DocxBody, DocxEditor, createDocx, openDocx } from "./edit/docx/editor.cjs";
28
32
  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";
33
+ import { n as RunInit$1, t as MarkdownRun } from "./run-DpQRXEGp.cjs";
34
+ import { MarkdownParagraph, ParagraphInit as ParagraphInit$1 } from "./edit/markdown/paragraph.cjs";
31
35
  import { MarkdownList, MarkdownListInit } from "./edit/markdown/list.cjs";
32
- import { MarkdownTable, MarkdownTableCell, MarkdownTableRow, TableInit } from "./edit/markdown/table.cjs";
36
+ import { MarkdownTable, MarkdownTableCell, MarkdownTableRow, TableInit as TableInit$1 } from "./edit/markdown/table.cjs";
33
37
  import { CreateMarkdownEditorOptions, MarkdownBody, MarkdownEditor, createMarkdownEditor, openMarkdown } from "./edit/markdown/editor.cjs";
34
38
  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";
39
+ import { n as RunInit$2, t as OdtRun } from "./run-mzBHuFWz.cjs";
40
+ import { n as ParagraphInit$2, t as OdtParagraph } from "./paragraph-CRaLSzWz.cjs";
37
41
  import { n as OdtListItem, t as OdtList } from "./list-C_UPIZWM.cjs";
38
42
  import { t as OdpShape } from "./shape-Kmmxib5z.cjs";
39
43
  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 +45,7 @@ import { OdgPage, PageImageInit, TextBoxInit } from "./edit/odg/page.cjs";
41
45
  import { CreateOdgOptions, OdgEditor, createOdg, openOdg } from "./edit/odg/editor.cjs";
42
46
  import { CreateEmptyOdgPackageOptions } from "./edit/odg/scaffold.cjs";
43
47
  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";
48
+ import { a as TableInit$2, i as OdtTableRow, n as OdtTable, r as OdtTableCell } from "./table-COmzfIOe.cjs";
45
49
  import { OdpSlide, SlideImageInit, SlideTableInit, TextBoxInit as TextBoxInit$1 } from "./edit/odp/slide.cjs";
46
50
  import { CreateOdpOptions, OdpEditor, createOdp, openOdp } from "./edit/odp/editor.cjs";
47
51
  import { CreateEmptyOdpPackageOptions } from "./edit/odp/scaffold.cjs";
@@ -56,12 +60,17 @@ import { CreateEmptyOdtPackageOptions } from "./edit/odt/scaffold.cjs";
56
60
  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
61
  import { PageInit, PdfPage } from "./edit/pdf/page.cjs";
58
62
  import { CreatePdfOptions, PdfEditor, createPdf, openPdf } from "./edit/pdf/editor.cjs";
63
+ import { PptShape, PptSlide } from "./edit/ppt/slide.cjs";
64
+ import { CreatePptOptions, PptEditor, createPpt, openPpt } from "./edit/ppt/editor.cjs";
59
65
  import { BuildPptxPackageOptions, buildPptxPackage, embeddedPresentationSerialiser } from "./edit/pptx/content.cjs";
60
66
  import { n as DrawingRunInit, r as PptxShape, t as DrawingParagraphInit } from "./shape-C2ef6uwC.cjs";
61
67
  import { i as PptxTableRow, n as PptxTableCell, r as PptxTableInit, t as PptxTable } from "./table-CtbzOK8s.cjs";
62
68
  import { PptxSlide, SlideImageInit as SlideImageInit$1, SlideTableInit as SlideTableInit$1, TextBoxInit as TextBoxInit$2 } from "./edit/pptx/slide.cjs";
63
69
  import { CreatePptxOptions, PptxEditor, createPptx, openPptx } from "./edit/pptx/editor.cjs";
64
70
  import { CreateEmptyPptxPackageOptions } from "./edit/pptx/scaffold.cjs";
71
+ import { n as displayTextOfValue, t as XlsCell } from "./cell-BK7EyvRu.cjs";
72
+ import { XlsSheet } from "./edit/xls/sheet.cjs";
73
+ import { CreateXlsOptions, XlsEditor, createXls, openXls } from "./edit/xls/editor.cjs";
65
74
  import { a as parseHsqldbScript, i as displayTextFor, n as HsqldbScriptParseError, r as HsqldbTable, t as HsqldbColumn } from "./script-DsGGIzGU.cjs";
66
75
  import { FirebirdBackupFormatError, FirebirdBackupSummary, ReadFirebirdBackupResult, SUPPORTED_BACKUP_FORMAT_VERSION, readFirebirdBackup } from "./firebird/backup.cjs";
67
76
  import { D as FirebirdUnsupportedFieldTypeError } from "./blr-types-CMN0QKUE.cjs";
@@ -132,9 +141,9 @@ import { Alignment, Box, COLOR_BLACK, CellPosition, CellRange, Color as LayoutCo
132
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";
133
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";
134
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";
135
145
  import { RtfBytesSchema, readRtfContent, writeRtfContent } from "rtf-codec";
136
146
  import { EpubBytesSchema, readEpubContent, writeEpubContent } from "epub-codec";
137
147
  import { readWpdContent } from "wpd-codec";
138
- import { readDocContent, writeDocContent } from "doc-codec";
139
148
  import { XlsContentDocument, readXlsContent, writeXlsContent } from "xls-codec";
140
- 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, 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, type XlsContentDocument, 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, 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, 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, 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 };