@office-open/docx 0.10.4 → 0.10.6

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.
@@ -1,4 +1,4 @@
1
- import { I as DefaultStylesFactory, Mn as Media, P as extractStyleId, j as Styles, nt as Numbering, wt as FontWrapper } from "./parts-DgrmHznM.mjs";
1
+ import { I as DefaultStylesFactory, Mn as Media, P as extractStyleId, j as Styles, nt as Numbering, wt as FontWrapper } from "./parts-Dmk8Xw0k.mjs";
2
2
  import { Relationships } from "@office-open/core";
3
3
  import { js2xml, xml2js } from "@office-open/xml";
4
4
  import { ChartCollection } from "@office-open/core/chart";
@@ -460,4 +460,4 @@ var DocxReadContext = class {
460
460
  //#endregion
461
461
  export { AltChunkCollection as i, DocxWriteContext as n, SubDocCollection as r, DocxReadContext as t };
462
462
 
463
- //# sourceMappingURL=context-CI0zR7rE.mjs.map
463
+ //# sourceMappingURL=context-BHlB9aBx.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"context-CI0zR7rE.mjs","names":[],"sources":["../src/parts/alt-chunk/alt-chunk-collection.ts","../src/parts/sub-doc/sub-doc-collection.ts","../src/parts/styles/external-styles-factory.ts","../src/shared/embeddings/embeddings.ts","../src/context.ts"],"sourcesContent":["/**\n * AltChunk collection module for managing alternative format content parts.\n *\n * @module\n */\n\n/**\n * Stores alternative format chunk data for later serialization by the compiler.\n */\nexport interface AltChunkData {\n /** Unique key for this alt chunk (e.g., relId) */\n key: string;\n /** Raw content data */\n data: Uint8Array;\n /** Part sub-path within word/ (e.g., \"afchunks/afchunk1.html\") */\n path: string;\n /** File extension (e.g., \"html\", \"rtf\", \"txt\") */\n extension: string;\n /** MIME content type (e.g., \"text/html\", \"application/rtf\") */\n contentType: string;\n}\n\n/**\n * Manages alternative format chunk parts in a document.\n *\n * Stores external content (HTML, RTF, plain text) that will be\n * serialized into separate parts in the DOCX package.\n */\nexport class AltChunkCollection {\n private map: Map<string, AltChunkData>;\n\n public constructor() {\n this.map = new Map<string, AltChunkData>();\n }\n\n public addAltChunk(key: string, data: AltChunkData): void {\n this.map.set(key, data);\n }\n\n public get array(): AltChunkData[] {\n return [...this.map.values()];\n }\n}\n","/**\n * Sub-document collection module for managing sub-document parts.\n *\n * @module\n */\n\n/**\n * Stores sub-document data for later serialization by the compiler.\n */\nexport interface SubDocData {\n /** Raw document data (.docx bytes) */\n data: Uint8Array;\n /** Part sub-path within word/ (e.g., \"subdocs/subdoc1.docx\") */\n path: string;\n}\n\n/**\n * Manages sub-document parts in a document.\n */\nexport class SubDocCollection {\n private map: Map<string, SubDocData>;\n\n public constructor() {\n this.map = new Map<string, SubDocData>();\n }\n\n public addSubDoc(key: string, data: SubDocData): void {\n this.map.set(key, data);\n }\n\n public get array(): SubDocData[] {\n return [...this.map.values()];\n }\n}\n","/**\n * External styles factory module for WordprocessingML documents.\n *\n * Parses styles from external XML and returns raw XML strings.\n * No XmlComponent dependency.\n *\n * Reference: http://officeopenxml.com/WPstyles.php\n *\n * @module\n */\nimport { js2xml, xml2js } from \"@office-open/xml\";\nimport type { Element as XMLElement } from \"@office-open/xml\";\n\nimport type { StylesOptions } from \"./styles\";\n\n/**\n * Factory for creating styles from external XML sources.\n *\n * Parses styles from XML (typically from a styles.xml file)\n * and returns raw XML strings for each style element.\n */\nexport class ExternalStylesFactory {\n /**\n * Creates new Styles based on the given XML data.\n *\n * Parses the styles XML and converts each child to a raw XML string.\n */\n public newInstance(xmlData: string): StylesOptions {\n const xmlObj = xml2js(xmlData, { compact: false }) as XMLElement;\n\n let stylesXmlElement: XMLElement | undefined;\n for (const xmlElm of xmlObj.elements || []) {\n if (xmlElm.name === \"w:styles\") {\n stylesXmlElement = xmlElm;\n }\n }\n\n if (stylesXmlElement === undefined) {\n return { importedStyles: [], initialAttributes: {} };\n }\n\n const stylesElements = stylesXmlElement.elements || [];\n\n return {\n importedStyles: stylesElements.map((childElm) => ({\n _raw: js2xml({ elements: [childElm] }),\n })),\n initialAttributes: (stylesXmlElement.attributes as Record<string, string>) ?? {},\n };\n }\n}\n","/**\n * Embeddings module for WordprocessingML documents.\n *\n * Manages OLE object embeddings (word/embeddings/oleObjectN.bin) referenced by\n * w:object elements. Mirrors the Media collection pattern but targets binary\n * OLE container parts instead of images.\n *\n * @module\n */\n\n/** OLE embedding data stored under word/embeddings/. */\nexport interface EmbeddingData {\n /** File name within word/embeddings/ (e.g. \"oleObject1.bin\"). */\n fileName: string;\n /** Raw OLE container bytes. */\n data: Uint8Array;\n /** OLE program id (e.g. \"Excel.Sheet.12\") — informational only. */\n progId?: string;\n}\n\n/**\n * Collects OLE embeddings allocated during document generation. Each embedding\n * is stored under a sequential `oleObjectN.bin` name in word/embeddings/,\n * mirroring MS Office's numbering so output is deterministic and diffable.\n */\nexport class EmbeddingCollection {\n private map = new Map<string, EmbeddingData>();\n private counter = 0;\n\n /** Allocate the next sequential embedding file name (oleObject1.bin, …). */\n public nextEmbeddingName(): string {\n return `oleObject${++this.counter}.bin`;\n }\n\n /** Register an embedding under a unique key. */\n public addEmbedding(key: string, data: EmbeddingData): void {\n this.map.set(key, data);\n }\n\n /** All registered embeddings in insertion order. */\n public get array(): EmbeddingData[] {\n return [...this.map.values()];\n }\n}\n","/**\n * DOCX compilation context.\n *\n * DocxWriteContext holds all mutable state needed during document compilation.\n * generateDocument() creates a DocxWriteContext internally.\n *\n * @module\n */\n\nimport { Relationships } from \"@office-open/core\";\nimport { ChartCollection } from \"@office-open/core/chart\";\nimport type { ReadContext, WriteContext } from \"@office-open/core/descriptor\";\nimport { SmartArtCollection } from \"@office-open/core/smartart\";\nimport type { Element } from \"@office-open/xml\";\nimport { AltChunkCollection } from \"@parts/alt-chunk/alt-chunk-collection\";\nimport type { DocumentOptions } from \"@parts/core-properties\";\nimport type { SectionPropertiesOptions } from \"@parts/document/body/section-properties/section-properties\";\nimport type { EndnoteSeparator } from \"@parts/endnotes/descriptor\";\nimport { FontWrapper } from \"@parts/fonts/font-wrapper\";\nimport type { FootnoteSeparator } from \"@parts/footnotes/descriptor\";\nimport type { GlossaryDocumentOptions } from \"@parts/glossary-document\";\nimport type { HeaderFooterEntry } from \"@parts/header-footer\";\nimport { Numbering } from \"@parts/numbering\";\nimport type { ParagraphOptions } from \"@parts/paragraph/paragraph\";\nimport type { CommentOptions } from \"@parts/paragraph/run/comment-run\";\nimport type { SettingsOptions } from \"@parts/settings/settings\";\nimport { Styles, extractStyleId } from \"@parts/styles\";\nimport { ExternalStylesFactory } from \"@parts/styles/external-styles-factory\";\nimport { DefaultStylesFactory } from \"@parts/styles/factory\";\nimport { SubDocCollection } from \"@parts/sub-doc/sub-doc-collection\";\nimport type { WebSettingsOptions } from \"@parts/web-settings\";\nimport { EmbeddingCollection } from \"@shared/embeddings/embeddings\";\nimport { Media } from \"@shared/media\";\nimport type { MediaData } from \"@shared/media/data\";\nimport type { SectionOptions } from \"@shared/section\";\nimport type { SectionChild } from \"@shared/section\";\n\nimport type { DocxDocument } from \"./parse\";\n\n/** User styles override factory defaults with the same styleId; keep the rest. */\nfunction mergeById<T extends { id: string }>(\n factoryStyles: T[] | undefined,\n userStyles: T[] | undefined,\n): T[] {\n const factory = factoryStyles ?? [];\n if (!userStyles || userStyles.length === 0) return factory;\n const userIds = new Set(userStyles.map((s) => s.id));\n return [...factory.filter((s) => !userIds.has(s.id)), ...userStyles];\n}\n\n/**\n * Highest comment id in an explicit comments list, or -1 when there are none.\n * Seeds the comment id allocator so auto-allocated ids never collide with ids\n * the caller already assigned (e.g. round-tripped from an existing document).\n */\nfunction maxCommentId(comments: readonly CommentOptions[] | undefined): number {\n let max = -1;\n if (comments) {\n for (const c of comments) {\n if (c.id > max) max = c.id;\n }\n }\n return max;\n}\n\n/** Narrows an object to a `{ id: number }` marker without an `as` cast. */\nfunction isNumericIdMarker(value: unknown): value is { id: number } {\n return (\n typeof value === \"object\" && value !== null && \"id\" in value && typeof value.id === \"number\"\n );\n}\n\n/**\n * Highest w:id among explicit bookmark + move-range start markers (`range`) and\n * explicit movedFrom/movedTo runs (`moveRun`) anywhere in the body tree\n * (paragraphs, tables, textboxes, SDTs, headers/footers nested in sections).\n * Seeds the markup id allocators so `{ bookmark }` / `{ moveFrom }` / `{ moveTo }`\n * sugars never collide with ids the caller already assigned. Comment ids live in\n * their own namespace (comments.nextId) and are intentionally excluded.\n */\nfunction collectMaxMarkupIds(value: unknown, acc: { range: number; moveRun: number }): void {\n if (value === null || value === undefined || typeof value !== \"object\") return;\n if (value instanceof Uint8Array || value instanceof Date) return;\n if (Array.isArray(value)) {\n for (const item of value) collectMaxMarkupIds(item, acc);\n return;\n }\n const obj = value as Record<string, unknown>;\n const rangeMarker = obj.bookmarkStart ?? obj.moveFromRangeStart ?? obj.moveToRangeStart;\n if (isNumericIdMarker(rangeMarker) && rangeMarker.id > acc.range) acc.range = rangeMarker.id;\n const moveRun = obj.movedFrom ?? obj.movedTo;\n if (isNumericIdMarker(moveRun) && moveRun.id > acc.moveRun) acc.moveRun = moveRun.id;\n for (const key of Object.keys(obj)) collectMaxMarkupIds(obj[key], acc);\n}\n\n/**\n * Whether any `{ comment }` sugar child appears anywhere in the body tree\n * (paragraphs, tables, textboxes, SDTs, headers/footers nested in sections).\n * The document→comments relationship must exist whenever comments.xml will be\n * generated; since sugar entries are registered during stringify — after the\n * constructor wires relationships — this pre-scan predicts them so the part and\n * its relationship stay in sync (OPC consistency). Every `{ comment }` always\n * stringifies, so the prediction matches the entries actually registered.\n */\nfunction bodyContainsCommentSugar(value: unknown): boolean {\n if (value === null || value === undefined) return false;\n if (typeof value !== \"object\") return false;\n if (value instanceof Uint8Array || value instanceof Date) return false;\n if (Array.isArray(value)) {\n for (const item of value) {\n if (bodyContainsCommentSugar(item)) return true;\n }\n return false;\n }\n const obj = value as Record<string, unknown>;\n if (typeof obj.comment === \"object\" && obj.comment !== null) return true;\n for (const key of Object.keys(obj)) {\n if (bodyContainsCommentSugar(obj[key])) return true;\n }\n return false;\n}\n\n/** Interface for document view wrappers — provides relationships access. */\nexport interface ViewWrapper {\n relationships: Relationships;\n}\n\n// ── BodyContext ──\n\n/**\n * Context for body-level stringification.\n *\n * Pure JSON pipeline context — extends WriteContext for descriptor compatibility.\n * No dependency on XmlComponent Context (compile/ uses zero toXml calls).\n */\nexport interface BodyContext extends WriteContext {\n /** The root write context with all mutable document state. */\n fileData: DocxWriteContext;\n /** Alias for fileData — some descriptor internals access context.file. */\n file: DocxWriteContext;\n /** Current view wrapper for relationship access. */\n viewWrapper: { relationships: Relationships };\n /** Stringify a body-level child element — injected to break circular imports. */\n stringifyChild: (child: SectionChild, ctx: BodyContext) => string;\n}\n\n// ── DocxWriteContext ──\n\nexport class DocxWriteContext implements WriteContext {\n private _currentRelationshipId = 1;\n\n // --- Accessed by XmlComponent via context.file.* during toXml() ---\n declare public document: { relationships: Relationships };\n declare public numbering: Numbering;\n declare public media: Media<MediaData>;\n declare public charts: ChartCollection;\n declare public smartArts: SmartArtCollection;\n declare public embeddings: EmbeddingCollection;\n declare public altChunks: AltChunkCollection;\n declare public subDocs: SubDocCollection;\n declare public comments: {\n relationships: Relationships;\n /** Comment entries registered by `{ comment }` sugar children during stringify. */\n entries: CommentOptions[];\n /** Next auto-allocated comment id (seeded above any explicit comment id). */\n nextId: number;\n };\n declare public markupIds: {\n /** Next id for bookmark + move-range markers (CT_MarkupRange) — shared, like Word. */\n rangeNext: number;\n /** Next id for movedFrom/movedTo runs (CT_TrackChange). */\n moveRunNext: number;\n };\n declare public footNotes: {\n relationships: Relationships;\n notes: Map<number, (ParagraphOptions | string)[]>;\n separator?: FootnoteSeparator;\n continuationSeparator?: FootnoteSeparator;\n };\n declare public endnotes: {\n relationships: Relationships;\n notes: Map<number, (ParagraphOptions | string)[]>;\n separator?: EndnoteSeparator;\n continuationSeparator?: EndnoteSeparator;\n };\n\n // --- Additional state used by the compiler ---\n declare public fileRelationships: Relationships;\n declare public _settingsOptions: SettingsOptions;\n declare public styles: Styles;\n declare public fontTable: FontWrapper;\n declare public glossaryOptions: GlossaryDocumentOptions | undefined;\n declare public webSettings: WebSettingsOptions | undefined;\n\n // --- Section properties (one per section, raw options for descriptor pipeline) ---\n private _sectionProperties: SectionPropertiesOptions[] = [];\n public get sectionProperties(): readonly SectionPropertiesOptions[] {\n return this._sectionProperties;\n }\n\n // --- WriteContext interface (core descriptor pipeline) ---\n\n public addRelationship(_type: string, _target: string, _mode?: string): string {\n const id = this._currentRelationshipId++;\n return `rId${id}`;\n }\n\n public addMedia(data: Uint8Array, type: string): string {\n const entry = this.media.addMedia(\n data,\n type,\n (fileName) =>\n ({\n data,\n fileName,\n type,\n transformation: { pixels: { x: 0, y: 0 }, emus: { x: 0, y: 0 } },\n }) as MediaData,\n );\n return `{${entry.fileName}}`;\n }\n\n // --- Internal tracking ---\n private _headers: HeaderFooterEntry[] = [];\n private _footers: HeaderFooterEntry[] = [];\n\n // --- Original input preserved for descriptor usage ---\n declare public _options: DocumentOptions;\n\n constructor(options: DocumentOptions) {\n this._options = options;\n\n this.numbering = new Numbering(options.numbering ? options.numbering : { config: [] });\n\n this.comments = {\n relationships: new Relationships(),\n entries: [],\n nextId: maxCommentId(options.comments?.children) + 1,\n };\n const markupSeed = { range: -1, moveRun: -1 };\n collectMaxMarkupIds(options.sections, markupSeed);\n this.markupIds = {\n rangeNext: markupSeed.range + 1,\n moveRunNext: markupSeed.moveRun + 1,\n };\n this.fileRelationships = new Relationships();\n this.footNotes = { relationships: new Relationships(), notes: new Map() };\n this.endnotes = { relationships: new Relationships(), notes: new Map() };\n this.document = { relationships: new Relationships() };\n this._settingsOptions = {\n compatibility: options.compatibility,\n compatibilityModeVersion: options.compatabilityModeVersion,\n defaultTabStop: options.defaultTabStop,\n evenAndOddHeaders: options.evenAndOddHeaderAndFooters ? true : false,\n characterSpacingControl: options.characterSpacingControl,\n hyphenation: {\n autoHyphenation: options.hyphenation?.autoHyphenation,\n consecutiveHyphenLimit: options.hyphenation?.consecutiveHyphenLimit,\n doNotHyphenateCaps: options.hyphenation?.doNotHyphenateCaps,\n hyphenationZone: options.hyphenation?.hyphenationZone,\n },\n trackRevisions: options.features?.trackRevisions,\n updateFields: options.features?.updateFields,\n documentProtection: options.features?.documentProtection,\n view: options.view,\n zoom: options.zoom,\n writeProtection: options.writeProtection,\n displayBackgroundShape:\n options.displayBackgroundShape ?? (options.background?.image ? true : undefined),\n embedTrueTypeFonts: options.embedTrueTypeFonts,\n embedSystemFonts: options.embedSystemFonts,\n saveSubsetFonts: options.saveSubsetFonts,\n docVars: options.docVars,\n colorSchemeMapping: options.colorSchemeMapping,\n mailMerge: options.mailMerge,\n ...options.settings,\n };\n\n this.media = new Media<MediaData>();\n this.charts = new ChartCollection();\n this.smartArts = new SmartArtCollection();\n this.embeddings = new EmbeddingCollection();\n this.altChunks = new AltChunkCollection();\n this.subDocs = new SubDocCollection();\n\n if (options.externalStyles !== undefined) {\n const externalStyles = new ExternalStylesFactory().newInstance(options.externalStyles);\n const defaultStyles = new DefaultStylesFactory().newInstance(options.styles?.default ?? {});\n // External (user-provided full styles.xml) wins; factory builtins fill\n // any gaps. Drop factory builtins whose styleId the external XML already\n // defines (no duplicate styleId). docDefaults/latentStyles come from the\n // external XML — the factory's are not mixed in.\n const externalIds = new Set<string>();\n for (const s of externalStyles.importedStyles ?? []) {\n const id = extractStyleId(s._raw);\n if (id) externalIds.add(id);\n }\n const notInExternal = <T extends { id: string }>(arr: T[] | undefined) =>\n (arr ?? []).filter((s) => !externalIds.has(s.id));\n this.styles = new Styles({\n importedStyles: externalStyles.importedStyles,\n initialAttributes: externalStyles.initialAttributes ?? defaultStyles.initialAttributes,\n paragraphStyles: notInExternal(defaultStyles.paragraphStyles),\n characterStyles: notInExternal(defaultStyles.characterStyles),\n tableStyles: notInExternal(defaultStyles.tableStyles),\n numberingStyles: notInExternal(defaultStyles.numberingStyles),\n });\n } else if (options.styles) {\n const s = options.styles;\n if (s.roundTripped) {\n // Round-trip origin (parseStyleDefinitions): parsed structured\n // builtin/custom styles win. The factory only supplies docDefaults +\n // latentStyles verbatim defaults; parsed docDefaultsXml/latentStylesXml\n // override when present. No factory builtin rebuild — parsed builtins\n // already carry the source document's customizations.\n const f = new DefaultStylesFactory().newInstance({});\n const docDefaults = s.docDefaultsXml ?? f.importedStyles?.[0]?._raw ?? \"\";\n const latentStyles = s.latentStylesXml ?? f.importedStyles?.[1]?._raw ?? \"\";\n this.styles = new Styles({\n importedStyles: [{ _raw: docDefaults }, { _raw: latentStyles }],\n initialAttributes: s.initialAttributes ?? f.initialAttributes,\n paragraphStyles: s.paragraphStyles,\n characterStyles: s.characterStyles,\n tableStyles: s.tableStyles,\n numberingStyles: s.numberingStyles,\n });\n } else {\n // Fresh generation: factory default builtins (structured) + user\n // overrides. User paragraphStyles/characterStyles/tableStyles/\n // numberingStyles override factory builtins with the same styleId.\n const f = new DefaultStylesFactory().newInstance(s.default);\n this.styles = new Styles({\n importedStyles: f.importedStyles,\n initialAttributes: s.initialAttributes ?? f.initialAttributes,\n paragraphStyles: mergeById(f.paragraphStyles, s.paragraphStyles),\n characterStyles: mergeById(f.characterStyles, s.characterStyles),\n tableStyles: mergeById(f.tableStyles, s.tableStyles),\n numberingStyles: mergeById(f.numberingStyles, s.numberingStyles),\n });\n }\n } else {\n const stylesFactory = new DefaultStylesFactory();\n this.styles = new Styles(stylesFactory.newInstance());\n }\n\n // Register numbering references from custom paragraph/character styles.\n // Style definitions may contain numbering properties whose concrete instances\n // are never created through the body paragraph processing path.\n if (options.styles?.paragraphStyles) {\n for (const style of options.styles.paragraphStyles) {\n const num = style.paragraph?.numbering;\n if (num) {\n this.numbering.createConcreteNumberingInstance(num.reference, num.instance ?? 0);\n }\n }\n }\n\n this.addDefaultRelationships();\n\n for (const section of options.sections) {\n this.addSection(section);\n }\n\n if (options.footnotes) {\n for (const key in options.footnotes) {\n // Skip the round-tripped separator markers (they carry no .children).\n if (key === \"separator\" || key === \"continuationSeparator\") continue;\n this.footNotes.notes.set(parseFloat(key), options.footnotes[key].children);\n }\n this.footNotes.separator = options.footnotes.separator;\n this.footNotes.continuationSeparator = options.footnotes.continuationSeparator;\n }\n\n if (options.endnotes) {\n for (const key in options.endnotes) {\n if (key === \"separator\" || key === \"continuationSeparator\") continue;\n this.endnotes.notes.set(parseFloat(key), options.endnotes[key].children);\n }\n this.endnotes.separator = options.endnotes.separator;\n this.endnotes.continuationSeparator = options.endnotes.continuationSeparator;\n }\n\n this.fontTable = new FontWrapper(options.fonts ?? []);\n this.glossaryOptions = options.glossary;\n this.webSettings = options.webSettings ?? undefined;\n\n if (options.glossary) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/glossaryDocument\",\n \"glossary/document.xml\",\n );\n }\n\n if (this.webSettings) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings\",\n \"webSettings.xml\",\n );\n }\n }\n\n get headers(): HeaderFooterEntry[] {\n return this._headers;\n }\n\n get footers(): HeaderFooterEntry[] {\n return this._footers;\n }\n\n // --- Private helpers ---\n\n private addSection({ headers = {}, footers = {}, properties }: SectionOptions): void {\n const sectPrOptions: SectionPropertiesOptions = {\n ...properties,\n footerWrapperGroup: {\n default: footers.default ? this.createFooter(footers.default) : undefined,\n even: footers.even ? this.createFooter(footers.even) : undefined,\n first: footers.first ? this.createFooter(footers.first) : undefined,\n },\n headerWrapperGroup: {\n default: headers.default ? this.createHeader(headers.default) : undefined,\n even: headers.even ? this.createHeader(headers.even) : undefined,\n first: headers.first ? this.createHeader(headers.first) : undefined,\n },\n };\n this._sectionProperties.push(sectPrOptions);\n }\n\n private createHeader(header: SectionChild[]): HeaderFooterEntry {\n const referenceId = this._currentRelationshipId++;\n const entry: HeaderFooterEntry = {\n children: header,\n relationships: new Relationships(),\n referenceId,\n };\n this.addHeaderToDocument(entry);\n return entry;\n }\n\n private createFooter(footer: SectionChild[]): HeaderFooterEntry {\n const referenceId = this._currentRelationshipId++;\n const entry: HeaderFooterEntry = {\n children: footer,\n relationships: new Relationships(),\n referenceId,\n };\n this.addFooterToDocument(entry);\n return entry;\n }\n\n private addHeaderToDocument(header: HeaderFooterEntry): void {\n this._headers.push(header);\n this.document.relationships.addRelationship(\n header.referenceId,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/header\",\n `header${this._headers.length}.xml`,\n );\n }\n\n private addFooterToDocument(footer: HeaderFooterEntry): void {\n this._footers.push(footer);\n this.document.relationships.addRelationship(\n footer.referenceId,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer\",\n `footer${this._footers.length}.xml`,\n );\n }\n\n private addDefaultRelationships(): void {\n this.fileRelationships.addRelationship(\n 1,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"word/document.xml\",\n );\n this.fileRelationships.addRelationship(\n 2,\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"docProps/core.xml\",\n );\n this.fileRelationships.addRelationship(\n 3,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"docProps/app.xml\",\n );\n this.fileRelationships.addRelationship(\n 4,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"docProps/custom.xml\",\n );\n\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles\",\n \"styles.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering\",\n \"numbering.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes\",\n \"footnotes.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes\",\n \"endnotes.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings\",\n \"settings.xml\",\n );\n // Comments is an optional part — only wire the document→comments relationship\n // when the document actually carries comments. Emitting it unconditionally\n // produces an orphan comments.xml that Word rejects as an OPC violation\n // (empty part with no [Content_Types] Override when content types are\n // passed through from the source on round-trip).\n if (\n this._options.comments?.children?.length ||\n bodyContainsCommentSugar(this._options.sections)\n ) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments\",\n \"comments.xml\",\n );\n }\n if (this._options.bibliography) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/bibliography\",\n \"bibliography.xml\",\n );\n }\n\n // Theme — always present: fresh-compile generates a default theme, round-trip\n // passes the source theme through rawParts. Word needs the document→theme\n // relationship to resolve theme colors/fonts.\n const themePart = this._options.rawParts?.find((p) => p.path.startsWith(\"word/theme/\"));\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme\",\n themePart ? themePart.path.replace(/^word\\//, \"\") : \"theme/theme1.xml\",\n );\n\n // customXml storage — raw-passthrough parts. Declare the document→customXml\n // relationship for each item (itemProps are linked via the item's own .rels,\n // not directly by the document) so Word can bind cover-page metadata, etc.\n for (const part of this._options.rawParts ?? []) {\n if (\n part.path.startsWith(\"customXml/\") &&\n part.path.endsWith(\".xml\") &&\n !part.path.includes(\"/_rels/\") &&\n !part.path.includes(\"itemProps\")\n ) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml\",\n `../${part.path}`,\n );\n }\n }\n }\n}\n\n// ── DocxReadContext ──\n\n/**\n * DOCX-specific read context.\n *\n * Holds references to the parsed DocxDocument and cached style/numbering data\n * used throughout the DOCX parsing pipeline. Implements ReadContext for\n * descriptor pipeline compatibility.\n */\nexport class DocxReadContext implements ReadContext {\n /**\n * Path of the part currently being parsed. Each part carries its own .rels\n * with independent rId numbering, so drawings inside a part must resolve\n * image relationships against that part's rels. Defaults to the document body.\n */\n public currentPart = \"word/document.xml\";\n\n constructor(\n public docx: DocxDocument,\n public styleCache: Map<string, Element>,\n public numberingCache: Map<string, Element>,\n ) {}\n\n resolveRelationship(rId: string): string | undefined {\n const partMedia = this.docx.partRefs.partMedia.get(this.currentPart);\n if (partMedia) {\n const media = partMedia.get(rId);\n if (media) return media;\n }\n return (\n this.docx.partRefs.headers.get(rId) ??\n this.docx.partRefs.footers.get(rId) ??\n this.docx.partRefs.media.get(rId) ??\n this.docx.partRefs.charts.get(rId) ??\n this.docx.partRefs.diagramData.get(rId) ??\n this.docx.partRefs.afChunks.get(rId) ??\n this.docx.partRefs.subDocs.get(rId) ??\n this.docx.partRefs.hyperlinks.get(rId)\n );\n }\n\n /**\n * Run `fn` with `currentPart` temporarily set to `partPath`, restoring the\n * previous value afterwards. Use when parsing a sub-document part (header,\n * footer, footnotes, …) so its drawings resolve images from its own rels.\n */\n withPart<T>(partPath: string, fn: () => T): T {\n const prev = this.currentPart;\n this.currentPart = partPath;\n try {\n return fn();\n } finally {\n this.currentPart = prev;\n }\n }\n\n getPart(path: string): Element | undefined {\n return this.docx.doc.get(path);\n }\n\n getRaw(path: string): Uint8Array | undefined {\n return this.docx.doc.getRaw(path);\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"context-BHlB9aBx.mjs","names":[],"sources":["../src/parts/alt-chunk/alt-chunk-collection.ts","../src/parts/sub-doc/sub-doc-collection.ts","../src/parts/styles/external-styles-factory.ts","../src/shared/embeddings/embeddings.ts","../src/context.ts"],"sourcesContent":["/**\n * AltChunk collection module for managing alternative format content parts.\n *\n * @module\n */\n\n/**\n * Stores alternative format chunk data for later serialization by the compiler.\n */\nexport interface AltChunkData {\n /** Unique key for this alt chunk (e.g., relId) */\n key: string;\n /** Raw content data */\n data: Uint8Array;\n /** Part sub-path within word/ (e.g., \"afchunks/afchunk1.html\") */\n path: string;\n /** File extension (e.g., \"html\", \"rtf\", \"txt\") */\n extension: string;\n /** MIME content type (e.g., \"text/html\", \"application/rtf\") */\n contentType: string;\n}\n\n/**\n * Manages alternative format chunk parts in a document.\n *\n * Stores external content (HTML, RTF, plain text) that will be\n * serialized into separate parts in the DOCX package.\n */\nexport class AltChunkCollection {\n private map: Map<string, AltChunkData>;\n\n public constructor() {\n this.map = new Map<string, AltChunkData>();\n }\n\n public addAltChunk(key: string, data: AltChunkData): void {\n this.map.set(key, data);\n }\n\n public get array(): AltChunkData[] {\n return [...this.map.values()];\n }\n}\n","/**\n * Sub-document collection module for managing sub-document parts.\n *\n * @module\n */\n\n/**\n * Stores sub-document data for later serialization by the compiler.\n */\nexport interface SubDocData {\n /** Raw document data (.docx bytes) */\n data: Uint8Array;\n /** Part sub-path within word/ (e.g., \"subdocs/subdoc1.docx\") */\n path: string;\n}\n\n/**\n * Manages sub-document parts in a document.\n */\nexport class SubDocCollection {\n private map: Map<string, SubDocData>;\n\n public constructor() {\n this.map = new Map<string, SubDocData>();\n }\n\n public addSubDoc(key: string, data: SubDocData): void {\n this.map.set(key, data);\n }\n\n public get array(): SubDocData[] {\n return [...this.map.values()];\n }\n}\n","/**\n * External styles factory module for WordprocessingML documents.\n *\n * Parses styles from external XML and returns raw XML strings.\n * No XmlComponent dependency.\n *\n * Reference: http://officeopenxml.com/WPstyles.php\n *\n * @module\n */\nimport { js2xml, xml2js } from \"@office-open/xml\";\nimport type { Element as XMLElement } from \"@office-open/xml\";\n\nimport type { StylesOptions } from \"./styles\";\n\n/**\n * Factory for creating styles from external XML sources.\n *\n * Parses styles from XML (typically from a styles.xml file)\n * and returns raw XML strings for each style element.\n */\nexport class ExternalStylesFactory {\n /**\n * Creates new Styles based on the given XML data.\n *\n * Parses the styles XML and converts each child to a raw XML string.\n */\n public newInstance(xmlData: string): StylesOptions {\n const xmlObj = xml2js(xmlData, { compact: false }) as XMLElement;\n\n let stylesXmlElement: XMLElement | undefined;\n for (const xmlElm of xmlObj.elements || []) {\n if (xmlElm.name === \"w:styles\") {\n stylesXmlElement = xmlElm;\n }\n }\n\n if (stylesXmlElement === undefined) {\n return { importedStyles: [], initialAttributes: {} };\n }\n\n const stylesElements = stylesXmlElement.elements || [];\n\n return {\n importedStyles: stylesElements.map((childElm) => ({\n _raw: js2xml({ elements: [childElm] }),\n })),\n initialAttributes: (stylesXmlElement.attributes as Record<string, string>) ?? {},\n };\n }\n}\n","/**\n * Embeddings module for WordprocessingML documents.\n *\n * Manages OLE object embeddings (word/embeddings/oleObjectN.bin) referenced by\n * w:object elements. Mirrors the Media collection pattern but targets binary\n * OLE container parts instead of images.\n *\n * @module\n */\n\n/** OLE embedding data stored under word/embeddings/. */\nexport interface EmbeddingData {\n /** File name within word/embeddings/ (e.g. \"oleObject1.bin\"). */\n fileName: string;\n /** Raw OLE container bytes. */\n data: Uint8Array;\n /** OLE program id (e.g. \"Excel.Sheet.12\") — informational only. */\n progId?: string;\n}\n\n/**\n * Collects OLE embeddings allocated during document generation. Each embedding\n * is stored under a sequential `oleObjectN.bin` name in word/embeddings/,\n * mirroring MS Office's numbering so output is deterministic and diffable.\n */\nexport class EmbeddingCollection {\n private map = new Map<string, EmbeddingData>();\n private counter = 0;\n\n /** Allocate the next sequential embedding file name (oleObject1.bin, …). */\n public nextEmbeddingName(): string {\n return `oleObject${++this.counter}.bin`;\n }\n\n /** Register an embedding under a unique key. */\n public addEmbedding(key: string, data: EmbeddingData): void {\n this.map.set(key, data);\n }\n\n /** All registered embeddings in insertion order. */\n public get array(): EmbeddingData[] {\n return [...this.map.values()];\n }\n}\n","/**\n * DOCX compilation context.\n *\n * DocxWriteContext holds all mutable state needed during document compilation.\n * generateDocument() creates a DocxWriteContext internally.\n *\n * @module\n */\n\nimport { Relationships } from \"@office-open/core\";\nimport { ChartCollection } from \"@office-open/core/chart\";\nimport type { ReadContext, WriteContext } from \"@office-open/core/descriptor\";\nimport { SmartArtCollection } from \"@office-open/core/smartart\";\nimport type { Element } from \"@office-open/xml\";\nimport { AltChunkCollection } from \"@parts/alt-chunk/alt-chunk-collection\";\nimport type { DocumentOptions } from \"@parts/core-properties\";\nimport type { SectionPropertiesOptions } from \"@parts/document/body/section-properties/section-properties\";\nimport type { EndnoteSeparator } from \"@parts/endnotes/descriptor\";\nimport { FontWrapper } from \"@parts/fonts/font-wrapper\";\nimport type { FootnoteSeparator } from \"@parts/footnotes/descriptor\";\nimport type { GlossaryDocumentOptions } from \"@parts/glossary-document\";\nimport type { HeaderFooterEntry } from \"@parts/header-footer\";\nimport { Numbering } from \"@parts/numbering\";\nimport type { ParagraphOptions } from \"@parts/paragraph/paragraph\";\nimport type { CommentOptions } from \"@parts/paragraph/run/comment-run\";\nimport type { SettingsOptions } from \"@parts/settings/settings\";\nimport { Styles, extractStyleId } from \"@parts/styles\";\nimport { ExternalStylesFactory } from \"@parts/styles/external-styles-factory\";\nimport { DefaultStylesFactory } from \"@parts/styles/factory\";\nimport { SubDocCollection } from \"@parts/sub-doc/sub-doc-collection\";\nimport type { WebSettingsOptions } from \"@parts/web-settings\";\nimport { EmbeddingCollection } from \"@shared/embeddings/embeddings\";\nimport { Media } from \"@shared/media\";\nimport type { MediaData } from \"@shared/media/data\";\nimport type { SectionOptions } from \"@shared/section\";\nimport type { SectionChild } from \"@shared/section\";\n\nimport type { DocxDocument } from \"./parse\";\n\n/** User styles override factory defaults with the same styleId; keep the rest. */\nfunction mergeById<T extends { id: string }>(\n factoryStyles: T[] | undefined,\n userStyles: T[] | undefined,\n): T[] {\n const factory = factoryStyles ?? [];\n if (!userStyles || userStyles.length === 0) return factory;\n const userIds = new Set(userStyles.map((s) => s.id));\n return [...factory.filter((s) => !userIds.has(s.id)), ...userStyles];\n}\n\n/**\n * Highest comment id in an explicit comments list, or -1 when there are none.\n * Seeds the comment id allocator so auto-allocated ids never collide with ids\n * the caller already assigned (e.g. round-tripped from an existing document).\n */\nfunction maxCommentId(comments: readonly CommentOptions[] | undefined): number {\n let max = -1;\n if (comments) {\n for (const c of comments) {\n if (c.id > max) max = c.id;\n }\n }\n return max;\n}\n\n/** Narrows an object to a `{ id: number }` marker without an `as` cast. */\nfunction isNumericIdMarker(value: unknown): value is { id: number } {\n return (\n typeof value === \"object\" && value !== null && \"id\" in value && typeof value.id === \"number\"\n );\n}\n\n/**\n * Highest w:id among explicit bookmark + move-range start markers (`range`) and\n * explicit movedFrom/movedTo runs (`moveRun`) anywhere in the body tree\n * (paragraphs, tables, textboxes, SDTs, headers/footers nested in sections).\n * Seeds the markup id allocators so `{ bookmark }` / `{ moveFrom }` / `{ moveTo }`\n * sugars never collide with ids the caller already assigned. Comment ids live in\n * their own namespace (comments.nextId) and are intentionally excluded.\n */\nfunction collectMaxMarkupIds(value: unknown, acc: { range: number; moveRun: number }): void {\n if (value === null || value === undefined || typeof value !== \"object\") return;\n if (value instanceof Uint8Array || value instanceof Date) return;\n if (Array.isArray(value)) {\n for (const item of value) collectMaxMarkupIds(item, acc);\n return;\n }\n const obj = value as Record<string, unknown>;\n const rangeMarker = obj.bookmarkStart ?? obj.moveFromRangeStart ?? obj.moveToRangeStart;\n if (isNumericIdMarker(rangeMarker) && rangeMarker.id > acc.range) acc.range = rangeMarker.id;\n const moveRun = obj.movedFrom ?? obj.movedTo;\n if (isNumericIdMarker(moveRun) && moveRun.id > acc.moveRun) acc.moveRun = moveRun.id;\n for (const key of Object.keys(obj)) collectMaxMarkupIds(obj[key], acc);\n}\n\n/**\n * Whether any `{ comment }` sugar child appears anywhere in the body tree\n * (paragraphs, tables, textboxes, SDTs, headers/footers nested in sections).\n * The document→comments relationship must exist whenever comments.xml will be\n * generated; since sugar entries are registered during stringify — after the\n * constructor wires relationships — this pre-scan predicts them so the part and\n * its relationship stay in sync (OPC consistency). Every `{ comment }` always\n * stringifies, so the prediction matches the entries actually registered.\n */\nfunction bodyContainsCommentSugar(value: unknown): boolean {\n if (value === null || value === undefined) return false;\n if (typeof value !== \"object\") return false;\n if (value instanceof Uint8Array || value instanceof Date) return false;\n if (Array.isArray(value)) {\n for (const item of value) {\n if (bodyContainsCommentSugar(item)) return true;\n }\n return false;\n }\n const obj = value as Record<string, unknown>;\n if (typeof obj.comment === \"object\" && obj.comment !== null) return true;\n for (const key of Object.keys(obj)) {\n if (bodyContainsCommentSugar(obj[key])) return true;\n }\n return false;\n}\n\n/** Interface for document view wrappers — provides relationships access. */\nexport interface ViewWrapper {\n relationships: Relationships;\n}\n\n// ── BodyContext ──\n\n/**\n * Context for body-level stringification.\n *\n * Pure JSON pipeline context — extends WriteContext for descriptor compatibility.\n * No dependency on XmlComponent Context (compile/ uses zero toXml calls).\n */\nexport interface BodyContext extends WriteContext {\n /** The root write context with all mutable document state. */\n fileData: DocxWriteContext;\n /** Alias for fileData — some descriptor internals access context.file. */\n file: DocxWriteContext;\n /** Current view wrapper for relationship access. */\n viewWrapper: { relationships: Relationships };\n /** Stringify a body-level child element — injected to break circular imports. */\n stringifyChild: (child: SectionChild, ctx: BodyContext) => string;\n}\n\n// ── DocxWriteContext ──\n\nexport class DocxWriteContext implements WriteContext {\n private _currentRelationshipId = 1;\n\n // --- Accessed by XmlComponent via context.file.* during toXml() ---\n declare public document: { relationships: Relationships };\n declare public numbering: Numbering;\n declare public media: Media<MediaData>;\n declare public charts: ChartCollection;\n declare public smartArts: SmartArtCollection;\n declare public embeddings: EmbeddingCollection;\n declare public altChunks: AltChunkCollection;\n declare public subDocs: SubDocCollection;\n declare public comments: {\n relationships: Relationships;\n /** Comment entries registered by `{ comment }` sugar children during stringify. */\n entries: CommentOptions[];\n /** Next auto-allocated comment id (seeded above any explicit comment id). */\n nextId: number;\n };\n declare public markupIds: {\n /** Next id for bookmark + move-range markers (CT_MarkupRange) — shared, like Word. */\n rangeNext: number;\n /** Next id for movedFrom/movedTo runs (CT_TrackChange). */\n moveRunNext: number;\n };\n declare public footNotes: {\n relationships: Relationships;\n notes: Map<number, (ParagraphOptions | string)[]>;\n separator?: FootnoteSeparator;\n continuationSeparator?: FootnoteSeparator;\n };\n declare public endnotes: {\n relationships: Relationships;\n notes: Map<number, (ParagraphOptions | string)[]>;\n separator?: EndnoteSeparator;\n continuationSeparator?: EndnoteSeparator;\n };\n\n // --- Additional state used by the compiler ---\n declare public fileRelationships: Relationships;\n declare public _settingsOptions: SettingsOptions;\n declare public styles: Styles;\n declare public fontTable: FontWrapper;\n declare public glossaryOptions: GlossaryDocumentOptions | undefined;\n declare public webSettings: WebSettingsOptions | undefined;\n\n // --- Section properties (one per section, raw options for descriptor pipeline) ---\n private _sectionProperties: SectionPropertiesOptions[] = [];\n public get sectionProperties(): readonly SectionPropertiesOptions[] {\n return this._sectionProperties;\n }\n\n // --- WriteContext interface (core descriptor pipeline) ---\n\n public addRelationship(_type: string, _target: string, _mode?: string): string {\n const id = this._currentRelationshipId++;\n return `rId${id}`;\n }\n\n public addMedia(data: Uint8Array, type: string): string {\n const entry = this.media.addMedia(\n data,\n type,\n (fileName) =>\n ({\n data,\n fileName,\n type,\n transformation: { pixels: { x: 0, y: 0 }, emus: { x: 0, y: 0 } },\n }) as MediaData,\n );\n return `{${entry.fileName}}`;\n }\n\n // --- Internal tracking ---\n private _headers: HeaderFooterEntry[] = [];\n private _footers: HeaderFooterEntry[] = [];\n\n // --- Original input preserved for descriptor usage ---\n declare public _options: DocumentOptions;\n\n constructor(options: DocumentOptions) {\n this._options = options;\n\n this.numbering = new Numbering(options.numbering ? options.numbering : { config: [] });\n\n this.comments = {\n relationships: new Relationships(),\n entries: [],\n nextId: maxCommentId(options.comments?.children) + 1,\n };\n const markupSeed = { range: -1, moveRun: -1 };\n collectMaxMarkupIds(options.sections, markupSeed);\n this.markupIds = {\n rangeNext: markupSeed.range + 1,\n moveRunNext: markupSeed.moveRun + 1,\n };\n this.fileRelationships = new Relationships();\n this.footNotes = { relationships: new Relationships(), notes: new Map() };\n this.endnotes = { relationships: new Relationships(), notes: new Map() };\n this.document = { relationships: new Relationships() };\n this._settingsOptions = {\n compatibility: options.compatibility,\n compatibilityModeVersion: options.compatabilityModeVersion,\n defaultTabStop: options.defaultTabStop,\n evenAndOddHeaders: options.evenAndOddHeaderAndFooters ? true : false,\n characterSpacingControl: options.characterSpacingControl,\n hyphenation: {\n autoHyphenation: options.hyphenation?.autoHyphenation,\n consecutiveHyphenLimit: options.hyphenation?.consecutiveHyphenLimit,\n doNotHyphenateCaps: options.hyphenation?.doNotHyphenateCaps,\n hyphenationZone: options.hyphenation?.hyphenationZone,\n },\n trackRevisions: options.features?.trackRevisions,\n updateFields: options.features?.updateFields,\n documentProtection: options.features?.documentProtection,\n view: options.view,\n zoom: options.zoom,\n writeProtection: options.writeProtection,\n displayBackgroundShape:\n options.displayBackgroundShape ?? (options.background?.image ? true : undefined),\n embedTrueTypeFonts: options.embedTrueTypeFonts,\n embedSystemFonts: options.embedSystemFonts,\n saveSubsetFonts: options.saveSubsetFonts,\n docVars: options.docVars,\n colorSchemeMapping: options.colorSchemeMapping,\n mailMerge: options.mailMerge,\n ...options.settings,\n };\n\n this.media = new Media<MediaData>();\n this.charts = new ChartCollection();\n this.smartArts = new SmartArtCollection();\n this.embeddings = new EmbeddingCollection();\n this.altChunks = new AltChunkCollection();\n this.subDocs = new SubDocCollection();\n\n if (options.externalStyles !== undefined) {\n const externalStyles = new ExternalStylesFactory().newInstance(options.externalStyles);\n const defaultStyles = new DefaultStylesFactory().newInstance(options.styles?.default ?? {});\n // External (user-provided full styles.xml) wins; factory builtins fill\n // any gaps. Drop factory builtins whose styleId the external XML already\n // defines (no duplicate styleId). docDefaults/latentStyles come from the\n // external XML — the factory's are not mixed in.\n const externalIds = new Set<string>();\n for (const s of externalStyles.importedStyles ?? []) {\n const id = extractStyleId(s._raw);\n if (id) externalIds.add(id);\n }\n const notInExternal = <T extends { id: string }>(arr: T[] | undefined) =>\n (arr ?? []).filter((s) => !externalIds.has(s.id));\n this.styles = new Styles({\n importedStyles: externalStyles.importedStyles,\n initialAttributes: externalStyles.initialAttributes ?? defaultStyles.initialAttributes,\n paragraphStyles: notInExternal(defaultStyles.paragraphStyles),\n characterStyles: notInExternal(defaultStyles.characterStyles),\n tableStyles: notInExternal(defaultStyles.tableStyles),\n numberingStyles: notInExternal(defaultStyles.numberingStyles),\n });\n } else if (options.styles) {\n const s = options.styles;\n if (s.roundTripped) {\n // Round-trip origin (parseStyleDefinitions): parsed structured\n // builtin/custom styles win. The factory only supplies docDefaults +\n // latentStyles verbatim defaults; parsed docDefaultsXml/latentStylesXml\n // override when present. No factory builtin rebuild — parsed builtins\n // already carry the source document's customizations.\n const f = new DefaultStylesFactory().newInstance({});\n const docDefaults = s.docDefaultsXml ?? f.importedStyles?.[0]?._raw ?? \"\";\n const latentStyles = s.latentStylesXml ?? f.importedStyles?.[1]?._raw ?? \"\";\n this.styles = new Styles({\n importedStyles: [{ _raw: docDefaults }, { _raw: latentStyles }],\n initialAttributes: s.initialAttributes ?? f.initialAttributes,\n paragraphStyles: s.paragraphStyles,\n characterStyles: s.characterStyles,\n tableStyles: s.tableStyles,\n numberingStyles: s.numberingStyles,\n });\n } else {\n // Fresh generation: factory default builtins (structured) + user\n // overrides. User paragraphStyles/characterStyles/tableStyles/\n // numberingStyles override factory builtins with the same styleId.\n const f = new DefaultStylesFactory().newInstance(s.default);\n this.styles = new Styles({\n importedStyles: f.importedStyles,\n initialAttributes: s.initialAttributes ?? f.initialAttributes,\n paragraphStyles: mergeById(f.paragraphStyles, s.paragraphStyles),\n characterStyles: mergeById(f.characterStyles, s.characterStyles),\n tableStyles: mergeById(f.tableStyles, s.tableStyles),\n numberingStyles: mergeById(f.numberingStyles, s.numberingStyles),\n });\n }\n } else {\n const stylesFactory = new DefaultStylesFactory();\n this.styles = new Styles(stylesFactory.newInstance());\n }\n\n // Register numbering references from custom paragraph/character styles.\n // Style definitions may contain numbering properties whose concrete instances\n // are never created through the body paragraph processing path.\n if (options.styles?.paragraphStyles) {\n for (const style of options.styles.paragraphStyles) {\n const num = style.paragraph?.numbering;\n if (num) {\n this.numbering.createConcreteNumberingInstance(num.reference, num.instance ?? 0);\n }\n }\n }\n\n this.addDefaultRelationships();\n\n for (const section of options.sections) {\n this.addSection(section);\n }\n\n if (options.footnotes) {\n for (const key in options.footnotes) {\n // Skip the round-tripped separator markers (they carry no .children).\n if (key === \"separator\" || key === \"continuationSeparator\") continue;\n this.footNotes.notes.set(parseFloat(key), options.footnotes[key].children);\n }\n this.footNotes.separator = options.footnotes.separator;\n this.footNotes.continuationSeparator = options.footnotes.continuationSeparator;\n }\n\n if (options.endnotes) {\n for (const key in options.endnotes) {\n if (key === \"separator\" || key === \"continuationSeparator\") continue;\n this.endnotes.notes.set(parseFloat(key), options.endnotes[key].children);\n }\n this.endnotes.separator = options.endnotes.separator;\n this.endnotes.continuationSeparator = options.endnotes.continuationSeparator;\n }\n\n this.fontTable = new FontWrapper(options.fonts ?? []);\n this.glossaryOptions = options.glossary;\n this.webSettings = options.webSettings ?? undefined;\n\n if (options.glossary) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/glossaryDocument\",\n \"glossary/document.xml\",\n );\n }\n\n if (this.webSettings) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings\",\n \"webSettings.xml\",\n );\n }\n }\n\n get headers(): HeaderFooterEntry[] {\n return this._headers;\n }\n\n get footers(): HeaderFooterEntry[] {\n return this._footers;\n }\n\n // --- Private helpers ---\n\n private addSection({ headers = {}, footers = {}, properties }: SectionOptions): void {\n const sectPrOptions: SectionPropertiesOptions = {\n ...properties,\n footerWrapperGroup: {\n default: footers.default ? this.createFooter(footers.default) : undefined,\n even: footers.even ? this.createFooter(footers.even) : undefined,\n first: footers.first ? this.createFooter(footers.first) : undefined,\n },\n headerWrapperGroup: {\n default: headers.default ? this.createHeader(headers.default) : undefined,\n even: headers.even ? this.createHeader(headers.even) : undefined,\n first: headers.first ? this.createHeader(headers.first) : undefined,\n },\n };\n this._sectionProperties.push(sectPrOptions);\n }\n\n private createHeader(header: SectionChild[]): HeaderFooterEntry {\n const referenceId = this._currentRelationshipId++;\n const entry: HeaderFooterEntry = {\n children: header,\n relationships: new Relationships(),\n referenceId,\n };\n this.addHeaderToDocument(entry);\n return entry;\n }\n\n private createFooter(footer: SectionChild[]): HeaderFooterEntry {\n const referenceId = this._currentRelationshipId++;\n const entry: HeaderFooterEntry = {\n children: footer,\n relationships: new Relationships(),\n referenceId,\n };\n this.addFooterToDocument(entry);\n return entry;\n }\n\n private addHeaderToDocument(header: HeaderFooterEntry): void {\n this._headers.push(header);\n this.document.relationships.addRelationship(\n header.referenceId,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/header\",\n `header${this._headers.length}.xml`,\n );\n }\n\n private addFooterToDocument(footer: HeaderFooterEntry): void {\n this._footers.push(footer);\n this.document.relationships.addRelationship(\n footer.referenceId,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer\",\n `footer${this._footers.length}.xml`,\n );\n }\n\n private addDefaultRelationships(): void {\n this.fileRelationships.addRelationship(\n 1,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n \"word/document.xml\",\n );\n this.fileRelationships.addRelationship(\n 2,\n \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n \"docProps/core.xml\",\n );\n this.fileRelationships.addRelationship(\n 3,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties\",\n \"docProps/app.xml\",\n );\n this.fileRelationships.addRelationship(\n 4,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties\",\n \"docProps/custom.xml\",\n );\n\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles\",\n \"styles.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering\",\n \"numbering.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes\",\n \"footnotes.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes\",\n \"endnotes.xml\",\n );\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings\",\n \"settings.xml\",\n );\n // Comments is an optional part — only wire the document→comments relationship\n // when the document actually carries comments. Emitting it unconditionally\n // produces an orphan comments.xml that Word rejects as an OPC violation\n // (empty part with no [Content_Types] Override when content types are\n // passed through from the source on round-trip).\n if (\n this._options.comments?.children?.length ||\n bodyContainsCommentSugar(this._options.sections)\n ) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments\",\n \"comments.xml\",\n );\n }\n if (this._options.bibliography) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/bibliography\",\n \"bibliography.xml\",\n );\n }\n\n // Theme — always present: fresh-compile generates a default theme, round-trip\n // passes the source theme through rawParts. Word needs the document→theme\n // relationship to resolve theme colors/fonts.\n const themePart = this._options.rawParts?.find((p) => p.path.startsWith(\"word/theme/\"));\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme\",\n themePart ? themePart.path.replace(/^word\\//, \"\") : \"theme/theme1.xml\",\n );\n\n // customXml storage — raw-passthrough parts. Declare the document→customXml\n // relationship for each item (itemProps are linked via the item's own .rels,\n // not directly by the document) so Word can bind cover-page metadata, etc.\n for (const part of this._options.rawParts ?? []) {\n if (\n part.path.startsWith(\"customXml/\") &&\n part.path.endsWith(\".xml\") &&\n !part.path.includes(\"/_rels/\") &&\n !part.path.includes(\"itemProps\")\n ) {\n this.document.relationships.addRelationship(\n this._currentRelationshipId++,\n \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml\",\n `../${part.path}`,\n );\n }\n }\n }\n}\n\n// ── DocxReadContext ──\n\n/**\n * DOCX-specific read context.\n *\n * Holds references to the parsed DocxDocument and cached style/numbering data\n * used throughout the DOCX parsing pipeline. Implements ReadContext for\n * descriptor pipeline compatibility.\n */\nexport class DocxReadContext implements ReadContext {\n /**\n * Path of the part currently being parsed. Each part carries its own .rels\n * with independent rId numbering, so drawings inside a part must resolve\n * image relationships against that part's rels. Defaults to the document body.\n */\n public currentPart = \"word/document.xml\";\n\n constructor(\n public docx: DocxDocument,\n public styleCache: Map<string, Element>,\n public numberingCache: Map<string, Element>,\n ) {}\n\n resolveRelationship(rId: string): string | undefined {\n const partMedia = this.docx.partRefs.partMedia.get(this.currentPart);\n if (partMedia) {\n const media = partMedia.get(rId);\n if (media) return media;\n }\n return (\n this.docx.partRefs.headers.get(rId) ??\n this.docx.partRefs.footers.get(rId) ??\n this.docx.partRefs.media.get(rId) ??\n this.docx.partRefs.charts.get(rId) ??\n this.docx.partRefs.diagramData.get(rId) ??\n this.docx.partRefs.afChunks.get(rId) ??\n this.docx.partRefs.subDocs.get(rId) ??\n this.docx.partRefs.hyperlinks.get(rId)\n );\n }\n\n /**\n * Run `fn` with `currentPart` temporarily set to `partPath`, restoring the\n * previous value afterwards. Use when parsing a sub-document part (header,\n * footer, footnotes, …) so its drawings resolve images from its own rels.\n */\n withPart<T>(partPath: string, fn: () => T): T {\n const prev = this.currentPart;\n this.currentPart = partPath;\n try {\n return fn();\n } finally {\n this.currentPart = prev;\n }\n }\n\n getPart(path: string): Element | undefined {\n return this.docx.doc.get(path);\n }\n\n getRaw(path: string): Uint8Array | undefined {\n return this.docx.doc.getRaw(path);\n }\n}\n"],"mappings":";;;;;;;;;;;;AA4BA,IAAa,qBAAb,MAAgC;CAC9B;CAEA,cAAqB;EACnB,KAAK,sBAAM,IAAI,IAA0B;CAC3C;CAEA,YAAmB,KAAa,MAA0B;EACxD,KAAK,IAAI,IAAI,KAAK,IAAI;CACxB;CAEA,IAAW,QAAwB;EACjC,OAAO,CAAC,GAAG,KAAK,IAAI,OAAO,CAAC;CAC9B;AACF;;;;;;ACvBA,IAAa,mBAAb,MAA8B;CAC5B;CAEA,cAAqB;EACnB,KAAK,sBAAM,IAAI,IAAwB;CACzC;CAEA,UAAiB,KAAa,MAAwB;EACpD,KAAK,IAAI,IAAI,KAAK,IAAI;CACxB;CAEA,IAAW,QAAsB;EAC/B,OAAO,CAAC,GAAG,KAAK,IAAI,OAAO,CAAC;CAC9B;AACF;;;;;;;;;;;;;;;;;;;ACZA,IAAa,wBAAb,MAAmC;;;;;;CAMjC,YAAmB,SAAgC;EACjD,MAAM,SAAS,OAAO,SAAS,EAAE,SAAS,MAAM,CAAC;EAEjD,IAAI;EACJ,KAAK,MAAM,UAAU,OAAO,YAAY,CAAC,GACvC,IAAI,OAAO,SAAS,YAClB,mBAAmB;EAIvB,IAAI,qBAAqB,KAAA,GACvB,OAAO;GAAE,gBAAgB,CAAC;GAAG,mBAAmB,CAAC;EAAE;EAKrD,OAAO;GACL,iBAHqB,iBAAiB,YAAY,CAAC,GAGpB,KAAK,cAAc,EAChD,MAAM,OAAO,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EACvC,EAAE;GACF,mBAAoB,iBAAiB,cAAyC,CAAC;EACjF;CACF;AACF;;;;;;;;ACzBA,IAAa,sBAAb,MAAiC;CAC/B,sBAAc,IAAI,IAA2B;CAC7C,UAAkB;;CAGlB,oBAAmC;EACjC,OAAO,YAAY,EAAE,KAAK,QAAQ;CACpC;;CAGA,aAAoB,KAAa,MAA2B;EAC1D,KAAK,IAAI,IAAI,KAAK,IAAI;CACxB;;CAGA,IAAW,QAAyB;EAClC,OAAO,CAAC,GAAG,KAAK,IAAI,OAAO,CAAC;CAC9B;AACF;;;;;;;;;;;;ACHA,SAAS,UACP,eACA,YACK;CACL,MAAM,UAAU,iBAAiB,CAAC;CAClC,IAAI,CAAC,cAAc,WAAW,WAAW,GAAG,OAAO;CACnD,MAAM,UAAU,IAAI,IAAI,WAAW,KAAK,MAAM,EAAE,EAAE,CAAC;CACnD,OAAO,CAAC,GAAG,QAAQ,QAAQ,MAAM,CAAC,QAAQ,IAAI,EAAE,EAAE,CAAC,GAAG,GAAG,UAAU;AACrE;;;;;;AAOA,SAAS,aAAa,UAAyD;CAC7E,IAAI,MAAM;CACV,IAAI;OACG,MAAM,KAAK,UACd,IAAI,EAAE,KAAK,KAAK,MAAM,EAAE;CAAA;CAG5B,OAAO;AACT;;AAGA,SAAS,kBAAkB,OAAyC;CAClE,OACE,OAAO,UAAU,YAAY,UAAU,QAAQ,QAAQ,SAAS,OAAO,MAAM,OAAO;AAExF;;;;;;;;;AAUA,SAAS,oBAAoB,OAAgB,KAA+C;CAC1F,IAAI,UAAU,QAAQ,UAAU,KAAA,KAAa,OAAO,UAAU,UAAU;CACxE,IAAI,iBAAiB,cAAc,iBAAiB,MAAM;CAC1D,IAAI,MAAM,QAAQ,KAAK,GAAG;EACxB,KAAK,MAAM,QAAQ,OAAO,oBAAoB,MAAM,GAAG;EACvD;CACF;CACA,MAAM,MAAM;CACZ,MAAM,cAAc,IAAI,iBAAiB,IAAI,sBAAsB,IAAI;CACvE,IAAI,kBAAkB,WAAW,KAAK,YAAY,KAAK,IAAI,OAAO,IAAI,QAAQ,YAAY;CAC1F,MAAM,UAAU,IAAI,aAAa,IAAI;CACrC,IAAI,kBAAkB,OAAO,KAAK,QAAQ,KAAK,IAAI,SAAS,IAAI,UAAU,QAAQ;CAClF,KAAK,MAAM,OAAO,OAAO,KAAK,GAAG,GAAG,oBAAoB,IAAI,MAAM,GAAG;AACvE;;;;;;;;;;AAWA,SAAS,yBAAyB,OAAyB;CACzD,IAAI,UAAU,QAAQ,UAAU,KAAA,GAAW,OAAO;CAClD,IAAI,OAAO,UAAU,UAAU,OAAO;CACtC,IAAI,iBAAiB,cAAc,iBAAiB,MAAM,OAAO;CACjE,IAAI,MAAM,QAAQ,KAAK,GAAG;EACxB,KAAK,MAAM,QAAQ,OACjB,IAAI,yBAAyB,IAAI,GAAG,OAAO;EAE7C,OAAO;CACT;CACA,MAAM,MAAM;CACZ,IAAI,OAAO,IAAI,YAAY,YAAY,IAAI,YAAY,MAAM,OAAO;CACpE,KAAK,MAAM,OAAO,OAAO,KAAK,GAAG,GAC/B,IAAI,yBAAyB,IAAI,IAAI,GAAG,OAAO;CAEjD,OAAO;AACT;AA4BA,IAAa,mBAAb,MAAsD;CACpD,yBAAiC;CA8CjC,qBAAyD,CAAC;CAC1D,IAAW,oBAAyD;EAClE,OAAO,KAAK;CACd;CAIA,gBAAuB,OAAe,SAAiB,OAAwB;EAE7E,OAAO,MAAM,KADG;CAElB;CAEA,SAAgB,MAAkB,MAAsB;EAYtD,OAAO,IAXO,KAAK,MAAM,SACvB,MACA,OACC,cACE;GACC;GACA;GACA;GACA,gBAAgB;IAAE,QAAQ;KAAE,GAAG;KAAG,GAAG;IAAE;IAAG,MAAM;KAAE,GAAG;KAAG,GAAG;IAAE;GAAE;EACjE,EAEW,EAAE,SAAS;CAC5B;CAGA,WAAwC,CAAC;CACzC,WAAwC,CAAC;CAKzC,YAAY,SAA0B;EACpC,KAAK,WAAW;EAEhB,KAAK,YAAY,IAAI,UAAU,QAAQ,YAAY,QAAQ,YAAY,EAAE,QAAQ,CAAC,EAAE,CAAC;EAErF,KAAK,WAAW;GACd,eAAe,IAAI,cAAc;GACjC,SAAS,CAAC;GACV,QAAQ,aAAa,QAAQ,UAAU,QAAQ,IAAI;EACrD;EACA,MAAM,aAAa;GAAE,OAAO;GAAI,SAAS;EAAG;EAC5C,oBAAoB,QAAQ,UAAU,UAAU;EAChD,KAAK,YAAY;GACf,WAAW,WAAW,QAAQ;GAC9B,aAAa,WAAW,UAAU;EACpC;EACA,KAAK,oBAAoB,IAAI,cAAc;EAC3C,KAAK,YAAY;GAAE,eAAe,IAAI,cAAc;GAAG,uBAAO,IAAI,IAAI;EAAE;EACxE,KAAK,WAAW;GAAE,eAAe,IAAI,cAAc;GAAG,uBAAO,IAAI,IAAI;EAAE;EACvE,KAAK,WAAW,EAAE,eAAe,IAAI,cAAc,EAAE;EACrD,KAAK,mBAAmB;GACtB,eAAe,QAAQ;GACvB,0BAA0B,QAAQ;GAClC,gBAAgB,QAAQ;GACxB,mBAAmB,QAAQ,6BAA6B,OAAO;GAC/D,yBAAyB,QAAQ;GACjC,aAAa;IACX,iBAAiB,QAAQ,aAAa;IACtC,wBAAwB,QAAQ,aAAa;IAC7C,oBAAoB,QAAQ,aAAa;IACzC,iBAAiB,QAAQ,aAAa;GACxC;GACA,gBAAgB,QAAQ,UAAU;GAClC,cAAc,QAAQ,UAAU;GAChC,oBAAoB,QAAQ,UAAU;GACtC,MAAM,QAAQ;GACd,MAAM,QAAQ;GACd,iBAAiB,QAAQ;GACzB,wBACE,QAAQ,2BAA2B,QAAQ,YAAY,QAAQ,OAAO,KAAA;GACxE,oBAAoB,QAAQ;GAC5B,kBAAkB,QAAQ;GAC1B,iBAAiB,QAAQ;GACzB,SAAS,QAAQ;GACjB,oBAAoB,QAAQ;GAC5B,WAAW,QAAQ;GACnB,GAAG,QAAQ;EACb;EAEA,KAAK,QAAQ,IAAI,MAAiB;EAClC,KAAK,SAAS,IAAI,gBAAgB;EAClC,KAAK,YAAY,IAAI,mBAAmB;EACxC,KAAK,aAAa,IAAI,oBAAoB;EAC1C,KAAK,YAAY,IAAI,mBAAmB;EACxC,KAAK,UAAU,IAAI,iBAAiB;EAEpC,IAAI,QAAQ,mBAAmB,KAAA,GAAW;GACxC,MAAM,iBAAiB,IAAI,sBAAsB,EAAE,YAAY,QAAQ,cAAc;GACrF,MAAM,gBAAgB,IAAI,qBAAqB,EAAE,YAAY,QAAQ,QAAQ,WAAW,CAAC,CAAC;GAK1F,MAAM,8BAAc,IAAI,IAAY;GACpC,KAAK,MAAM,KAAK,eAAe,kBAAkB,CAAC,GAAG;IACnD,MAAM,KAAK,eAAe,EAAE,IAAI;IAChC,IAAI,IAAI,YAAY,IAAI,EAAE;GAC5B;GACA,MAAM,iBAA2C,SAC9C,OAAO,CAAC,GAAG,QAAQ,MAAM,CAAC,YAAY,IAAI,EAAE,EAAE,CAAC;GAClD,KAAK,SAAS,IAAI,OAAO;IACvB,gBAAgB,eAAe;IAC/B,mBAAmB,eAAe,qBAAqB,cAAc;IACrE,iBAAiB,cAAc,cAAc,eAAe;IAC5D,iBAAiB,cAAc,cAAc,eAAe;IAC5D,aAAa,cAAc,cAAc,WAAW;IACpD,iBAAiB,cAAc,cAAc,eAAe;GAC9D,CAAC;EACH,OAAO,IAAI,QAAQ,QAAQ;GACzB,MAAM,IAAI,QAAQ;GAClB,IAAI,EAAE,cAAc;IAMlB,MAAM,IAAI,IAAI,qBAAqB,EAAE,YAAY,CAAC,CAAC;IACnD,MAAM,cAAc,EAAE,kBAAkB,EAAE,iBAAiB,IAAI,QAAQ;IACvE,MAAM,eAAe,EAAE,mBAAmB,EAAE,iBAAiB,IAAI,QAAQ;IACzE,KAAK,SAAS,IAAI,OAAO;KACvB,gBAAgB,CAAC,EAAE,MAAM,YAAY,GAAG,EAAE,MAAM,aAAa,CAAC;KAC9D,mBAAmB,EAAE,qBAAqB,EAAE;KAC5C,iBAAiB,EAAE;KACnB,iBAAiB,EAAE;KACnB,aAAa,EAAE;KACf,iBAAiB,EAAE;IACrB,CAAC;GACH,OAAO;IAIL,MAAM,IAAI,IAAI,qBAAqB,EAAE,YAAY,EAAE,OAAO;IAC1D,KAAK,SAAS,IAAI,OAAO;KACvB,gBAAgB,EAAE;KAClB,mBAAmB,EAAE,qBAAqB,EAAE;KAC5C,iBAAiB,UAAU,EAAE,iBAAiB,EAAE,eAAe;KAC/D,iBAAiB,UAAU,EAAE,iBAAiB,EAAE,eAAe;KAC/D,aAAa,UAAU,EAAE,aAAa,EAAE,WAAW;KACnD,iBAAiB,UAAU,EAAE,iBAAiB,EAAE,eAAe;IACjE,CAAC;GACH;EACF,OAAO;GACL,MAAM,gBAAgB,IAAI,qBAAqB;GAC/C,KAAK,SAAS,IAAI,OAAO,cAAc,YAAY,CAAC;EACtD;EAKA,IAAI,QAAQ,QAAQ,iBAClB,KAAK,MAAM,SAAS,QAAQ,OAAO,iBAAiB;GAClD,MAAM,MAAM,MAAM,WAAW;GAC7B,IAAI,KACF,KAAK,UAAU,gCAAgC,IAAI,WAAW,IAAI,YAAY,CAAC;EAEnF;EAGF,KAAK,wBAAwB;EAE7B,KAAK,MAAM,WAAW,QAAQ,UAC5B,KAAK,WAAW,OAAO;EAGzB,IAAI,QAAQ,WAAW;GACrB,KAAK,MAAM,OAAO,QAAQ,WAAW;IAEnC,IAAI,QAAQ,eAAe,QAAQ,yBAAyB;IAC5D,KAAK,UAAU,MAAM,IAAI,WAAW,GAAG,GAAG,QAAQ,UAAU,KAAK,QAAQ;GAC3E;GACA,KAAK,UAAU,YAAY,QAAQ,UAAU;GAC7C,KAAK,UAAU,wBAAwB,QAAQ,UAAU;EAC3D;EAEA,IAAI,QAAQ,UAAU;GACpB,KAAK,MAAM,OAAO,QAAQ,UAAU;IAClC,IAAI,QAAQ,eAAe,QAAQ,yBAAyB;IAC5D,KAAK,SAAS,MAAM,IAAI,WAAW,GAAG,GAAG,QAAQ,SAAS,KAAK,QAAQ;GACzE;GACA,KAAK,SAAS,YAAY,QAAQ,SAAS;GAC3C,KAAK,SAAS,wBAAwB,QAAQ,SAAS;EACzD;EAEA,KAAK,YAAY,IAAI,YAAY,QAAQ,SAAS,CAAC,CAAC;EACpD,KAAK,kBAAkB,QAAQ;EAC/B,KAAK,cAAc,QAAQ,eAAe,KAAA;EAE1C,IAAI,QAAQ,UACV,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,wFACA,uBACF;EAGF,IAAI,KAAK,aACP,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,mFACA,iBACF;CAEJ;CAEA,IAAI,UAA+B;EACjC,OAAO,KAAK;CACd;CAEA,IAAI,UAA+B;EACjC,OAAO,KAAK;CACd;CAIA,WAAmB,EAAE,UAAU,CAAC,GAAG,UAAU,CAAC,GAAG,cAAoC;EACnF,MAAM,gBAA0C;GAC9C,GAAG;GACH,oBAAoB;IAClB,SAAS,QAAQ,UAAU,KAAK,aAAa,QAAQ,OAAO,IAAI,KAAA;IAChE,MAAM,QAAQ,OAAO,KAAK,aAAa,QAAQ,IAAI,IAAI,KAAA;IACvD,OAAO,QAAQ,QAAQ,KAAK,aAAa,QAAQ,KAAK,IAAI,KAAA;GAC5D;GACA,oBAAoB;IAClB,SAAS,QAAQ,UAAU,KAAK,aAAa,QAAQ,OAAO,IAAI,KAAA;IAChE,MAAM,QAAQ,OAAO,KAAK,aAAa,QAAQ,IAAI,IAAI,KAAA;IACvD,OAAO,QAAQ,QAAQ,KAAK,aAAa,QAAQ,KAAK,IAAI,KAAA;GAC5D;EACF;EACA,KAAK,mBAAmB,KAAK,aAAa;CAC5C;CAEA,aAAqB,QAA2C;EAC9D,MAAM,cAAc,KAAK;EACzB,MAAM,QAA2B;GAC/B,UAAU;GACV,eAAe,IAAI,cAAc;GACjC;EACF;EACA,KAAK,oBAAoB,KAAK;EAC9B,OAAO;CACT;CAEA,aAAqB,QAA2C;EAC9D,MAAM,cAAc,KAAK;EACzB,MAAM,QAA2B;GAC/B,UAAU;GACV,eAAe,IAAI,cAAc;GACjC;EACF;EACA,KAAK,oBAAoB,KAAK;EAC9B,OAAO;CACT;CAEA,oBAA4B,QAAiC;EAC3D,KAAK,SAAS,KAAK,MAAM;EACzB,KAAK,SAAS,cAAc,gBAC1B,OAAO,aACP,8EACA,SAAS,KAAK,SAAS,OAAO,KAChC;CACF;CAEA,oBAA4B,QAAiC;EAC3D,KAAK,SAAS,KAAK,MAAM;EACzB,KAAK,SAAS,cAAc,gBAC1B,OAAO,aACP,8EACA,SAAS,KAAK,SAAS,OAAO,KAChC;CACF;CAEA,0BAAwC;EACtC,KAAK,kBAAkB,gBACrB,GACA,sFACA,mBACF;EACA,KAAK,kBAAkB,gBACrB,GACA,yFACA,mBACF;EACA,KAAK,kBAAkB,gBACrB,GACA,2FACA,kBACF;EACA,KAAK,kBAAkB,gBACrB,GACA,yFACA,qBACF;EAEA,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,8EACA,YACF;EACA,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,iFACA,eACF;EACA,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,iFACA,eACF;EACA,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,gFACA,cACF;EACA,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,gFACA,cACF;EAMA,IACE,KAAK,SAAS,UAAU,UAAU,UAClC,yBAAyB,KAAK,SAAS,QAAQ,GAE/C,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,gFACA,cACF;EAEF,IAAI,KAAK,SAAS,cAChB,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,oFACA,kBACF;EAMF,MAAM,YAAY,KAAK,SAAS,UAAU,MAAM,MAAM,EAAE,KAAK,WAAW,aAAa,CAAC;EACtF,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,6EACA,YAAY,UAAU,KAAK,QAAQ,WAAW,EAAE,IAAI,kBACtD;EAKA,KAAK,MAAM,QAAQ,KAAK,SAAS,YAAY,CAAC,GAC5C,IACE,KAAK,KAAK,WAAW,YAAY,KACjC,KAAK,KAAK,SAAS,MAAM,KACzB,CAAC,KAAK,KAAK,SAAS,SAAS,KAC7B,CAAC,KAAK,KAAK,SAAS,WAAW,GAE/B,KAAK,SAAS,cAAc,gBAC1B,KAAK,0BACL,iFACA,MAAM,KAAK,MACb;CAGN;AACF;;;;;;;;AAWA,IAAa,kBAAb,MAAoD;CASzC;CACA;CACA;;;;;;CALT,cAAqB;CAErB,YACE,MACA,YACA,gBACA;EAHO,KAAA,OAAA;EACA,KAAA,aAAA;EACA,KAAA,iBAAA;CACN;CAEH,oBAAoB,KAAiC;EACnD,MAAM,YAAY,KAAK,KAAK,SAAS,UAAU,IAAI,KAAK,WAAW;EACnE,IAAI,WAAW;GACb,MAAM,QAAQ,UAAU,IAAI,GAAG;GAC/B,IAAI,OAAO,OAAO;EACpB;EACA,OACE,KAAK,KAAK,SAAS,QAAQ,IAAI,GAAG,KAClC,KAAK,KAAK,SAAS,QAAQ,IAAI,GAAG,KAClC,KAAK,KAAK,SAAS,MAAM,IAAI,GAAG,KAChC,KAAK,KAAK,SAAS,OAAO,IAAI,GAAG,KACjC,KAAK,KAAK,SAAS,YAAY,IAAI,GAAG,KACtC,KAAK,KAAK,SAAS,SAAS,IAAI,GAAG,KACnC,KAAK,KAAK,SAAS,QAAQ,IAAI,GAAG,KAClC,KAAK,KAAK,SAAS,WAAW,IAAI,GAAG;CAEzC;;;;;;CAOA,SAAY,UAAkB,IAAgB;EAC5C,MAAM,OAAO,KAAK;EAClB,KAAK,cAAc;EACnB,IAAI;GACF,OAAO,GAAG;EACZ,UAAU;GACR,KAAK,cAAc;EACrB;CACF;CAEA,QAAQ,MAAmC;EACzC,OAAO,KAAK,KAAK,IAAI,IAAI,IAAI;CAC/B;CAEA,OAAO,MAAsC;EAC3C,OAAO,KAAK,KAAK,IAAI,OAAO,IAAI;CAClC;AACF"}
@@ -396,6 +396,7 @@ interface TableOfContentsOptions {
396
396
  preserveTabInEntries?: boolean;
397
397
  preserveNewLineInEntries?: boolean;
398
398
  hideTabAndPageNumbersInWebView?: boolean;
399
+ entries?: SectionChild[];
399
400
  }
400
401
  //#endregion
401
402
  //#region src/parts/table-of-contents/sdt-properties.d.ts
@@ -487,7 +488,7 @@ declare function parseTocFieldInstruction(instruction: string, opts: Record<stri
487
488
  declare function parseTocFieldFromElements(els: Element[]): TableOfContentsOptions;
488
489
  //#endregion
489
490
  //#region src/parts/table-of-contents/descriptor.d.ts
490
- declare function stringifyTableOfContents(alias?: string, options?: TableOfContentsOptions): string;
491
+ declare function stringifyTableOfContents(alias?: string, options?: TableOfContentsOptions, entriesXml?: string): string;
491
492
  //#endregion
492
493
  //#region src/shared/track-revision/track-revision-components/cell-merge.d.ts
493
494
  declare const VerticalMergeRevisionType: {
@@ -797,14 +798,14 @@ interface MoveRangeStartOptions {
797
798
  colFirst?: number;
798
799
  colLast?: number;
799
800
  }
800
- interface BookmarkChildOptions {
801
+ interface BookmarkOptions {
801
802
  name: string;
802
803
  wrap?: (string | RunOptions)[];
803
804
  displacedByCustomXml?: DisplacedByCustomXml;
804
805
  colFirst?: number;
805
806
  colLast?: number;
806
807
  }
807
- interface MoveRangeChildOptions {
808
+ interface MoveRangeOptions {
808
809
  author: string;
809
810
  date: string;
810
811
  wrap?: (string | RunOptions)[];
@@ -2107,20 +2108,6 @@ declare const ProofErrorType: {
2107
2108
  type ProofErrorTypeValue = (typeof ProofErrorType)[keyof typeof ProofErrorType];
2108
2109
  //#endregion
2109
2110
  //#region src/parts/paragraph/paragraph.d.ts
2110
- interface ChartChild {
2111
- chart: ChartOptions;
2112
- }
2113
- interface SmartArtChild {
2114
- smartArt: SmartArtOptions;
2115
- }
2116
- interface ImageChild {
2117
- image: ImageOptions;
2118
- }
2119
- interface MathChild {
2120
- math: {
2121
- children?: MathInput[];
2122
- };
2123
- }
2124
2111
  interface SdtRunOptions {
2125
2112
  properties: SdtPropertiesOptions;
2126
2113
  children?: (ParagraphChild | string)[];
@@ -2130,7 +2117,17 @@ interface FootnoteEndnoteReferenceOptions {
2130
2117
  id: number;
2131
2118
  customMarkFollows?: boolean;
2132
2119
  }
2133
- type ParagraphChild = ChartChild | SmartArtChild | ImageChild | MathChild | {
2120
+ type ParagraphChild = {
2121
+ chart: ChartOptions;
2122
+ } | {
2123
+ smartArt: SmartArtOptions;
2124
+ } | {
2125
+ image: ImageOptions;
2126
+ } | {
2127
+ math: {
2128
+ children?: MathInput[];
2129
+ };
2130
+ } | {
2134
2131
  symbolRun: SymbolRunOptions;
2135
2132
  } | {
2136
2133
  footnoteReference: number | FootnoteEndnoteReferenceOptions;
@@ -2172,7 +2169,7 @@ type ParagraphChild = ChartChild | SmartArtChild | ImageChild | MathChild | {
2172
2169
  } | {
2173
2170
  bookmarkEnd: MarkupRangeOptions;
2174
2171
  } | {
2175
- bookmark: BookmarkChildOptions;
2172
+ bookmark: BookmarkOptions;
2176
2173
  } | {
2177
2174
  wpsShape: WpsShapeRunOptions;
2178
2175
  } | {
@@ -2212,9 +2209,9 @@ type ParagraphChild = ChartChild | SmartArtChild | ImageChild | MathChild | {
2212
2209
  children: (RunOptions | string)[];
2213
2210
  };
2214
2211
  } | {
2215
- moveFrom: MoveRangeChildOptions;
2212
+ moveFrom: MoveRangeOptions;
2216
2213
  } | {
2217
- moveTo: MoveRangeChildOptions;
2214
+ moveTo: MoveRangeOptions;
2218
2215
  } | {
2219
2216
  customXmlInsRangeStart: {
2220
2217
  id: number;
@@ -3976,5 +3973,5 @@ interface DocumentOptions extends CorePropertiesOptions {
3976
3973
  }
3977
3974
  declare const corePropertiesDesc: CustomDescriptor<CorePropertiesOptions>;
3978
3975
  //#endregion
3979
- export { CaptionOptions as $, Separator as $a, setTableParseChild as $i, SdtRunOptions as $n, RunStylePropertiesOptions as $o, PresetTextShapeOptions as $r, parseSectionPropertiesEl as $t, SubDocData as A, BookmarkStartOptions as Aa, Distance as Ai, CustomXmlCellOptions as An, CellMergeAttributes as Ao, ChartOptions as Ar, DocPartGallery as At, DefaultStylesOptions as B, breakXml as Ba, AlignmentFrameOptions as Bi, TableRowPropertiesOptionsBase as Bn, SdtDateMappingType as Bo, MediaDataTransformation as Br, endnotesDesc as Bt, TargetScreenSize as C, MathInput as Ca, VerticalPositionOptions as Ci, DocGridAttributesProperties as Cn, TableWidthProperties as Co, WpgGroupRunOptions as Cr, Numbering as Ct, framesetXml as D, MathScriptType as Da, TextWrapping as Di, ColumnAttributes as Dn, VerticalAlignSection as Do, DocumentBackgroundOptions as Dr, LevelSuffix as Dt, frameXml as E, MathRunPropertiesOptions as Ea, createWrapTight as Ei, ColumnsAttributes as En, TableVerticalAlign as Eo, BackgroundRawMediaOptions as Er, LevelFormat as Et, extractStyleId as F, BreakClear as Fa, ParagraphPropertiesOptions as Fi, SdtCellOptions as Fn, parseTocFieldInstruction as Fo, createTransformation as Fr, FootnoteSeparator as Ft, TableStyleOptions as G, DayShort as Ga, XYFrameOptions as Gi, HyperlinkType as Gn, SdtPropertiesOptions as Go, WpsMediaData as Gr, sectionMarginDefaults as Gt, NumberingStyleOptions as H, CarriageReturn as Ha, FrameAnchorType as Hi, NumberedItemReferenceFormat as Hn, SdtDropDownListOptions as Ho, SmartArtMediaData as Hr, SectionPropertiesChangeOptions as Ht, parseStyleDefinitions as I, BreakOptions as Ia, ParagraphPropertiesOptionsBase as Ii, TableCellOptions as In, SdtCheckboxOptions as Io, ChartMediaData as Ir, FootnotesData as It, stringifyConditionalTableStyle as J, LastRenderedPageBreak as Ja, SpaceType as Ji, FootnoteEndnoteReferenceOptions as Jn, TableOfContentsOptions as Jo, WpsShapeCoreOptions as Jr, DocumentAttributeNamespaces as Jt, TableStyleOverrideType as K, EndnoteReference as Ka, HorizontalPositionAlign as Ki, InternalHyperlinkOptions as Kn, SdtTextOptions as Ko, ShapeStyleOptions as Kr, sectionPageSizeDefaults as Kt, CharacterStyleOptions as L, PageNumber as La, ParagraphStylePropertiesOptions as Li, CnfStyleOptions as Ln, SdtCheckboxSymbol as Lo, ExtendedMediaData as Lr, footnotesDesc as Lt, StylesOptions as M, MarkupRangeOptions as Ma, SymbolRunOptions as Mi, CustomXmlPropertiesOptions as Mn, stringifyTableOfContents as Mo, createImageData as Mr, DocPartType as Mt, buildNumberingCache as N, MoveRangeChildOptions as Na, LevelParagraphStylePropertiesOptions as Ni, CustomXmlRowOptions as Nn, parseToc as No, Media as Nr, GlossaryDocumentOptions as Nt, webSettingsDesc as O, MathStyleType as Oa, TextWrappingSide as Oi, CustomXmlAttributeOptions as On, VerticalAlignTable as Oo, SmartArtNode as Or, LevelsOptions as Ot, buildStyleCache as P, MoveRangeStartOptions as Pa, ParagraphPropertiesChangeOptions as Pi, CustomXmlRunOptions as Pn, parseTocFieldFromElements as Po, MediaTransformation as Pr, glossaryDesc as Pt, AutoCaptionOptions as Q, PageNumberElement as Qa, parseTableRowPropertiesEl as Qi, ParagraphOptions as Qn, RunPropertiesOptions as Qo, NormalAutofitOptions as Qr, SubDocOptions as Qt, ConditionalTableStyleOptions as R, ParagraphRunOptions as Ra, TextAlignmentType as Ri, TableRowPropertiesChangeOptions as Rn, SdtComboBoxOptions as Ro, GroupChildMediaData as Rr, EndnoteSeparator as Rt, OptimizeForBrowserOptions as S, MathDelimiterProperties as Sa, Margins as Si, PageSizeAttributes as Sn, AlignmentType as So, SimpleFieldOptions as Sr, AbstractNumberingOptions as St, WebSettingsOptions as T, MathNaryProperties as Ta, createWrapThrough as Ti, createDocumentGrid as Tn, SectionVerticalAlign as To, BackgroundImageOptions as Tr, parseNumberingDefinitions as Tt, ParagraphStyleOptions as U, ContinuationSeparator as Ua, FrameOptions$1 as Ui, NumberedItemReferenceOptions as Un, SdtListItem as Uo, WpgCommonMediaData as Ur, SectionPropertiesOptions as Ut, DocumentDefaultsOptions as V, AnnotationReference as Va, DropCapType as Vi, DirOptions as Vn, SdtDateOptions as Vo, NonVisualPropertiesOptions as Vr, HeaderFooterGroup as Vt, StyleOptions as W, DayLong as Wa, FrameWrap as Wi, ExternalHyperlinkOptions as Wn, SdtLock as Wo, WpgMediaData as Wr, SectionPropertiesOptionsBase as Wt, stringifyParagraphStyle as X, MonthShort as Xa, parseTableCellPropertiesEl as Xi, MathChild as Xn, ParagraphRunPropertiesOptions as Xo, BodyPropertiesOptions as Xr, SectionOptions as Xt, stringifyNumberingStyle as Y, MonthLong as Ya, VerticalPositionAlign as Yi, ImageChild as Yn, HighlightColor as Yo, WpsShapeOptions as Yr, SectionChild as Yt, stringifyTableStyle as Z, NoBreakHyphen as Za, parseTablePropertiesEl as Zi, ParagraphChild as Zn, RunPropertiesChangeOptions as Zo, FlatTextOptions as Zr, VmlShapeStyle as Zt, parseArchive as _, RelativeVerticalPosition as _a, createVerticalPosition as _i, PageBordersOptions as _n, BreakType as _o, PositionalTabOptions as _r, withAltChunkOverrides as _s, SettingsOptions as _t, CustomPropertyOptions as a, TableCellBordersOptions as aa, createBodyProperties as ai, createHeaderFooterReference as an, ObjectElementOptions as ao, DropDownListOptions as ar, ShadingType as as, MailMergeDataType as at, DivBorderOptions as b, TABLE_BORDERS_NONE as ba, HorizontalPositionOptions as bi, createPageNumberType as bn, CnfConditionalOptions as bo, CommentOptions as br, SourceTypeOptions as bs, CompatibilityOptions as bt, AppPropertiesOptions as c, TablePropertyExChangeOptions as ca, ChildOffset as ci, LineNumberAttributes as cn, ObjectLinkOptions as co, FormFieldTextOptions as cr, AltChunkOptions as cs, MailMergeOptions as ct, EmbeddedFontOptionsWithKey as d, TablePropertiesOptions$1 as da, WpgGroupOptions as di, PageTextDirectionType as dn, TabStopDefinition as do, createFormFieldData as dr, CharacterSet as ds, OdsoFieldMapDataOptions as dt, tableDesc as ea, TextBodyWrappingType as ei, sectionPropertiesDesc as en, SoftHyphen as eo, SmartArtChild as er, TextEffect as es, CaptionsOptions as et, BodyContext as f, TablePropertiesOptionsBase$1 as fa, DrawingDescriptorOptions as fi, PageMarginAttributes as fn, TabStopPosition as fo, parseFormFieldData as fr, ContentTypeDefault as fs, OdsoFieldType as ft, DocxPartRefs as g, RelativeHorizontalPosition as ga, resetDrawingIdGen as gi, PageBorderZOrder as gn, SpacingProperties as go, PositionalTabLeader as gr, contentTypesDesc as gs, RsidsOptions as gt, DocxDocument as h, OverlapType as ha, drawingDesc as hi, PageBorderOffsetFrom as hn, LineRuleType as ho, PositionalTabAlignment as hr, buildContentTypesFromRegistry as hs, RevisionViewOptions as ht, CustomPropertiesInput as i, TableRowOptions as ia, VerticalAnchor as ii, HeaderFooterType as in, ObjectControlOptions as io, CheckBoxOptions as ir, ShadingAttributesProperties as is, HyphenationOptions as it, Styles as j, DisplacedByCustomXml as ja, DrawingOptions as ji, CustomXmlDataBindingOptions as jn, VerticalMergeRevisionType as jo, ImageOptions as jr, DocPartOptions as jt, SubDocCollection as k, BookmarkChildOptions as ka, TextWrappingType as ki, CustomXmlBlockOptions as kn, createVerticalAlign as ko, SmartArtOptions as kr, DocPartBehavior as kt, appPropertiesDesc as l, TablePropertyExOptions as la, GroupChild as li, LineNumberRestartFormat as ln, objectDesc as lo, FormFieldTextType as lr, AltChunkCollection as ls, MailMergeSourceType as lt, DocxWriteContext as m, TableLayoutType as ma, GroupShapeLocksOptions as mi, PageBorderDisplay as mn, HeadingLevel as mo, RubyOptions as mr, ContentTypesInput as ms, ReadModeInkLockDownOptions as mt, FeaturesOptions as n, HeightRule as na, TextVertOverflowType as ni, HeaderFooterReferenceOptions as nn, YearLong as no, ProofErrorTypeValue as nr, FontAttributesProperties as ns, EndnotePropertiesOptions as nt, customPropertiesDesc as o, TextDirection as oa, parseBodyProperties as oi, SectionType as on, ObjectEmbedOptions as oo, FormFieldCommonOptions as or, BorderOptions as os, MailMergeDest as ot, DocxReadContext as p, TableLookOptions as pa, GraphicFrameLocksOptions as pi, createPageMargin as pn, TabStopType as po, RubyAlign as pr, ContentTypeOverride as ps, OdsoOptions as pt, stringifyCharacterStyle as q, FootnoteReferenceElement as qa, NumberFormat as qi, ChartChild as qn, StyleLevel as qo, StyleMatrixReferenceOptions as qr, DocumentAttributeNamespace as qt, corePropertiesDesc as r, SdtRowOptions as ra, TextVerticalType as ri, HeaderFooterReferenceType as rn, YearShort as ro, SmartTagRunOptions as rr, EmphasisMarkType as rs, FootnotePropertiesOptions as rt, AppPropertiesInput as s, VerticalMergeType as sa, ChildExtent as si, createSectionType as sn, ObjectIconImageOptions as so, FormFieldOptions as sr, BorderStyle as ss, MailMergeDocType as st, DocumentOptions as t, TableOptions as ta, TextHorzOverflowType as ti, stringifySectionPropertiesXml as tn, Tab as to, ProofErrorType as tr, UnderlineType as ts, DocumentProtectionOptions as tt, settingsDesc as u, TablePropertiesChangeOptions$1 as ua, WpgGroupCoreOptions as ui, createLineNumberType as un, LeaderType as uo, TextInputOptions as ur, AltChunkData as us, MathPropertiesOptions as ut, parseDocument as v, TableAnchorType as va, createHorizontalPosition as vi, PageNumberSeparator as vn, BreakTypeValue as vo, PositionalTabRelativeTo as vr, withMediaDefaults as vs, WriteProtectionOptions as vt, WebSettingsInput as w, MathNaryLimitLocation as wa, VerticalPositionRelativeFrom as wi, DocumentGridType as wn, WidthType as wo, WpsShapeRunOptions as wr, NumberingOptions as wt, DivOptions as x, TableBordersOptions as xa, HorizontalPositionRelativeFrom as xi, PageOrientation as xn, BordersOptions as xo, CommentsOptions as xr, bibliographyDesc as xs, ConcreteNumberingOptions as xt, parseDocx as y, TableFloatOptions as ya, Floating as yi, PageNumberTypeAttributes as yn, IndentAttributesProperties as yo, CommentChildOptions as yr, BibliographyOptions as ys, CompatSettingOptions as yt, DefaultStylesFactory as z, RunOptions as za, TextboxTightWrapType as zi, TableRowPropertiesOptions as zn, SdtDataBindingOptions as zo, MediaData as zr, EndnotesData as zt };
3980
- //# sourceMappingURL=core-properties-Dp-aEoX3.d.mts.map
3976
+ export { CaptionOptions as $, YearShort as $a, SdtRowOptions as $i, SmartTagRunOptions as $n, EmphasisMarkType as $o, TextVerticalType as $r, parseSectionPropertiesEl as $t, SubDocData as A, MoveRangeStartOptions as Aa, ParagraphPropertiesChangeOptions as Ai, CustomXmlCellOptions as An, parseTocFieldFromElements as Ao, MediaTransformation as Ar, DocPartGallery as At, DefaultStylesOptions as B, DayLong as Ba, FrameWrap as Bi, TableRowPropertiesOptionsBase as Bn, SdtLock as Bo, WpgMediaData as Br, endnotesDesc as Bt, TargetScreenSize as C, MathScriptType as Ca, TextWrapping as Ci, DocGridAttributesProperties as Cn, VerticalAlignSection as Co, DocumentBackgroundOptions as Cr, Numbering as Ct, framesetXml as D, DisplacedByCustomXml as Da, DrawingOptions as Di, ColumnAttributes as Dn, VerticalMergeRevisionType as Do, ImageOptions as Dr, LevelSuffix as Dt, frameXml as E, BookmarkStartOptions as Ea, Distance as Ei, ColumnsAttributes as En, CellMergeAttributes as Eo, ChartOptions as Er, LevelFormat as Et, extractStyleId as F, RunOptions as Fa, TextboxTightWrapType as Fi, SdtCellOptions as Fn, SdtDataBindingOptions as Fo, MediaData as Fr, FootnoteSeparator as Ft, TableStyleOptions as G, MonthLong as Ga, VerticalPositionAlign as Gi, HyperlinkType as Gn, HighlightColor as Go, WpsShapeOptions as Gr, sectionMarginDefaults as Gt, NumberingStyleOptions as H, EndnoteReference as Ha, HorizontalPositionAlign as Hi, NumberedItemReferenceFormat as Hn, SdtTextOptions as Ho, ShapeStyleOptions as Hr, SectionPropertiesChangeOptions as Ht, parseStyleDefinitions as I, breakXml as Ia, AlignmentFrameOptions as Ii, TableCellOptions as In, SdtDateMappingType as Io, MediaDataTransformation as Ir, FootnotesData as It, stringifyConditionalTableStyle as J, PageNumberElement as Ja, parseTableRowPropertiesEl as Ji, ParagraphChild as Jn, RunPropertiesOptions as Jo, NormalAutofitOptions as Jr, DocumentAttributeNamespaces as Jt, TableStyleOverrideType as K, MonthShort as Ka, parseTableCellPropertiesEl as Ki, InternalHyperlinkOptions as Kn, ParagraphRunPropertiesOptions as Ko, BodyPropertiesOptions as Kr, sectionPageSizeDefaults as Kt, CharacterStyleOptions as L, AnnotationReference as La, DropCapType as Li, CnfStyleOptions as Ln, SdtDateOptions as Lo, NonVisualPropertiesOptions as Lr, footnotesDesc as Lt, StylesOptions as M, BreakOptions as Ma, ParagraphPropertiesOptionsBase as Mi, CustomXmlPropertiesOptions as Mn, SdtCheckboxOptions as Mo, ChartMediaData as Mr, DocPartType as Mt, buildNumberingCache as N, PageNumber as Na, ParagraphStylePropertiesOptions as Ni, CustomXmlRowOptions as Nn, SdtCheckboxSymbol as No, ExtendedMediaData as Nr, GlossaryDocumentOptions as Nt, webSettingsDesc as O, MarkupRangeOptions as Oa, SymbolRunOptions as Oi, CustomXmlAttributeOptions as On, stringifyTableOfContents as Oo, createImageData as Or, LevelsOptions as Ot, buildStyleCache as P, ParagraphRunOptions as Pa, TextAlignmentType as Pi, CustomXmlRunOptions as Pn, SdtComboBoxOptions as Po, GroupChildMediaData as Pr, glossaryDesc as Pt, AutoCaptionOptions as Q, YearLong as Qa, HeightRule as Qi, ProofErrorTypeValue as Qn, FontAttributesProperties as Qo, TextVertOverflowType as Qr, SubDocOptions as Qt, ConditionalTableStyleOptions as R, CarriageReturn as Ra, FrameAnchorType as Ri, TableRowPropertiesChangeOptions as Rn, SdtDropDownListOptions as Ro, SmartArtMediaData as Rr, EndnoteSeparator as Rt, OptimizeForBrowserOptions as S, MathRunPropertiesOptions as Sa, createWrapTight as Si, PageSizeAttributes as Sn, TableVerticalAlign as So, BackgroundRawMediaOptions as Sr, AbstractNumberingOptions as St, WebSettingsOptions as T, BookmarkOptions as Ta, TextWrappingType as Ti, createDocumentGrid as Tn, createVerticalAlign as To, SmartArtOptions as Tr, parseNumberingDefinitions as Tt, ParagraphStyleOptions as U, FootnoteReferenceElement as Ua, NumberFormat as Ui, NumberedItemReferenceOptions as Un, StyleLevel as Uo, StyleMatrixReferenceOptions as Ur, SectionPropertiesOptions as Ut, DocumentDefaultsOptions as V, DayShort as Va, XYFrameOptions as Vi, DirOptions as Vn, SdtPropertiesOptions as Vo, WpsMediaData as Vr, HeaderFooterGroup as Vt, StyleOptions as W, LastRenderedPageBreak as Wa, SpaceType as Wi, ExternalHyperlinkOptions as Wn, TableOfContentsOptions as Wo, WpsShapeCoreOptions as Wr, SectionPropertiesOptionsBase as Wt, stringifyParagraphStyle as X, SoftHyphen as Xa, tableDesc as Xi, SdtRunOptions as Xn, TextEffect as Xo, TextBodyWrappingType as Xr, SectionOptions as Xt, stringifyNumberingStyle as Y, Separator as Ya, setTableParseChild as Yi, ParagraphOptions as Yn, RunStylePropertiesOptions as Yo, PresetTextShapeOptions as Yr, SectionChild as Yt, stringifyTableStyle as Z, Tab as Za, TableOptions as Zi, ProofErrorType as Zn, UnderlineType as Zo, TextHorzOverflowType as Zr, VmlShapeStyle as Zt, parseArchive as _, TableBordersOptions as _a, HorizontalPositionRelativeFrom as _i, PageBordersOptions as _n, BordersOptions as _o, CommentsOptions as _r, bibliographyDesc as _s, SettingsOptions as _t, CustomPropertyOptions as a, TablePropertyExOptions as aa, GroupChild as ai, createHeaderFooterReference as an, objectDesc as ao, FormFieldTextType as ar, AltChunkCollection as as, MailMergeDataType as at, DivBorderOptions as b, MathNaryLimitLocation as ba, VerticalPositionRelativeFrom as bi, createPageNumberType as bn, WidthType as bo, WpsShapeRunOptions as br, CompatibilityOptions as bt, AppPropertiesOptions as c, TablePropertiesOptionsBase$1 as ca, DrawingDescriptorOptions as ci, LineNumberAttributes as cn, TabStopPosition as co, parseFormFieldData as cr, ContentTypeDefault as cs, MailMergeOptions as ct, EmbeddedFontOptionsWithKey as d, OverlapType as da, drawingDesc as di, PageTextDirectionType as dn, LineRuleType as do, PositionalTabAlignment as dr, buildContentTypesFromRegistry as ds, OdsoFieldMapDataOptions as dt, TableRowOptions as ea, VerticalAnchor as ei, sectionPropertiesDesc as en, ObjectControlOptions as eo, CheckBoxOptions as er, ShadingAttributesProperties as es, CaptionsOptions as et, BodyContext as f, RelativeHorizontalPosition as fa, resetDrawingIdGen as fi, PageMarginAttributes as fn, SpacingProperties as fo, PositionalTabLeader as fr, contentTypesDesc as fs, OdsoFieldType as ft, DocxPartRefs as g, TABLE_BORDERS_NONE as ga, HorizontalPositionOptions as gi, PageBorderZOrder as gn, CnfConditionalOptions as go, CommentOptions as gr, SourceTypeOptions as gs, RsidsOptions as gt, DocxDocument as h, TableFloatOptions as ha, Floating as hi, PageBorderOffsetFrom as hn, IndentAttributesProperties as ho, CommentChildOptions as hr, BibliographyOptions as hs, RevisionViewOptions as ht, CustomPropertiesInput as i, TablePropertyExChangeOptions as ia, ChildOffset as ii, HeaderFooterType as in, ObjectLinkOptions as io, FormFieldTextOptions as ir, AltChunkOptions as is, HyphenationOptions as it, Styles as j, BreakClear as ja, ParagraphPropertiesOptions as ji, CustomXmlDataBindingOptions as jn, parseTocFieldInstruction as jo, createTransformation as jr, DocPartOptions as jt, SubDocCollection as k, MoveRangeOptions as ka, LevelParagraphStylePropertiesOptions as ki, CustomXmlBlockOptions as kn, parseToc as ko, Media as kr, DocPartBehavior as kt, appPropertiesDesc as l, TableLookOptions as la, GraphicFrameLocksOptions as li, LineNumberRestartFormat as ln, TabStopType as lo, RubyAlign as lr, ContentTypeOverride as ls, MailMergeSourceType as lt, DocxWriteContext as m, TableAnchorType as ma, createHorizontalPosition as mi, PageBorderDisplay as mn, BreakTypeValue as mo, PositionalTabRelativeTo as mr, withMediaDefaults as ms, ReadModeInkLockDownOptions as mt, FeaturesOptions as n, TextDirection as na, parseBodyProperties as ni, HeaderFooterReferenceOptions as nn, ObjectEmbedOptions as no, FormFieldCommonOptions as nr, BorderOptions as ns, EndnotePropertiesOptions as nt, customPropertiesDesc as o, TablePropertiesChangeOptions$1 as oa, WpgGroupCoreOptions as oi, SectionType as on, LeaderType as oo, TextInputOptions as or, AltChunkData as os, MailMergeDest as ot, DocxReadContext as p, RelativeVerticalPosition as pa, createVerticalPosition as pi, createPageMargin as pn, BreakType as po, PositionalTabOptions as pr, withAltChunkOverrides as ps, OdsoOptions as pt, stringifyCharacterStyle as q, NoBreakHyphen as qa, parseTablePropertiesEl as qi, FootnoteEndnoteReferenceOptions as qn, RunPropertiesChangeOptions as qo, FlatTextOptions as qr, DocumentAttributeNamespace as qt, corePropertiesDesc as r, VerticalMergeType as ra, ChildExtent as ri, HeaderFooterReferenceType as rn, ObjectIconImageOptions as ro, FormFieldOptions as rr, BorderStyle as rs, FootnotePropertiesOptions as rt, AppPropertiesInput as s, TablePropertiesOptions$1 as sa, WpgGroupOptions as si, createSectionType as sn, TabStopDefinition as so, createFormFieldData as sr, CharacterSet as ss, MailMergeDocType as st, DocumentOptions as t, TableCellBordersOptions as ta, createBodyProperties as ti, stringifySectionPropertiesXml as tn, ObjectElementOptions as to, DropDownListOptions as tr, ShadingType as ts, DocumentProtectionOptions as tt, settingsDesc as u, TableLayoutType as ua, GroupShapeLocksOptions as ui, createLineNumberType as un, HeadingLevel as uo, RubyOptions as ur, ContentTypesInput as us, MathPropertiesOptions as ut, parseDocument as v, MathDelimiterProperties as va, Margins as vi, PageNumberSeparator as vn, AlignmentType as vo, SimpleFieldOptions as vr, WriteProtectionOptions as vt, WebSettingsInput as w, MathStyleType as wa, TextWrappingSide as wi, DocumentGridType as wn, VerticalAlignTable as wo, SmartArtNode as wr, NumberingOptions as wt, DivOptions as x, MathNaryProperties as xa, createWrapThrough as xi, PageOrientation as xn, SectionVerticalAlign as xo, BackgroundImageOptions as xr, ConcreteNumberingOptions as xt, parseDocx as y, MathInput as ya, VerticalPositionOptions as yi, PageNumberTypeAttributes as yn, TableWidthProperties as yo, WpgGroupRunOptions as yr, CompatSettingOptions as yt, DefaultStylesFactory as z, ContinuationSeparator as za, FrameOptions$1 as zi, TableRowPropertiesOptions as zn, SdtListItem as zo, WpgCommonMediaData as zr, EndnotesData as zt };
3977
+ //# sourceMappingURL=core-properties-DqLT7Rkp.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"core-properties-DqLT7Rkp.d.mts","names":[],"sources":["../src/parts/bibliography.ts","../src/parts/contenttypes.ts","../src/parts/fonts/font.ts","../src/parts/alt-chunk/alt-chunk-collection.ts","../src/parts/alt-chunk/alt-chunk.ts","../src/shared/border.ts","../src/shared/shading.ts","../src/shared/track-revision/track-revision.ts","../src/parts/paragraph/run/east-asian-layout.ts","../src/parts/paragraph/run/emphasis-mark.ts","../src/parts/paragraph/run/formatting.ts","../src/parts/paragraph/run/language.ts","../src/parts/paragraph/run/run-fonts.ts","../src/parts/paragraph/run/underline.ts","../src/parts/paragraph/run/properties.ts","../src/parts/table-of-contents/table-of-contents-properties.ts","../src/parts/table-of-contents/sdt-properties.ts","../src/parts/table-of-contents/toc-parse.ts","../src/parts/table-of-contents/descriptor.ts","../src/shared/track-revision/track-revision-components/cell-merge.ts","../src/shared/vertical-align.ts","../src/parts/table/table-width.ts","../src/parts/table/table-properties/table-cell-margin.ts","../src/parts/paragraph/formatting/alignment.ts","../src/parts/paragraph/formatting/border.ts","../src/parts/paragraph/formatting/cnf-style.ts","../src/parts/paragraph/formatting/indent.ts","../src/parts/paragraph/formatting/break.ts","../src/parts/paragraph/formatting/spacing.ts","../src/parts/paragraph/formatting/style.ts","../src/parts/paragraph/formatting/tab-stop.ts","../src/parts/object/object-element.ts","../src/parts/paragraph/run/empty-children.ts","../src/parts/paragraph/run/run.ts","../src/parts/paragraph/links/bookmark.ts","../src/parts/paragraph/math.ts","../src/parts/table/grid.ts","../src/parts/table/table-cell-spacing.ts","../src/parts/table/table-properties/table-borders.ts","../src/parts/table/table-properties/table-float-properties.ts","../src/parts/table/table-properties/table-layout.ts","../src/parts/table/table-properties/table-look.ts","../src/parts/table/table-properties/table-properties.ts","../src/parts/table/table-properties/table-property-exceptions.ts","../src/parts/table/table-cell/table-cell-components.ts","../src/parts/table/table-row/table-row.ts","../src/parts/table/table-row/table-row-height.ts","../src/parts/table/table.ts","../src/parts/table/stringify.ts","../src/parts/table/descriptor.ts","../src/shared/constants.ts","../src/parts/paragraph/frame/frame-properties.ts","../src/parts/paragraph/properties.ts","../src/parts/paragraph/run/symbol-run.ts","../src/parts/drawing/doc-properties/doc-properties.ts","../src/parts/drawing/drawing.ts","../src/parts/drawing/text-wrap/text-wrapping.ts","../src/parts/drawing/text-wrap/wrap-tight.ts","../src/parts/drawing/text-wrap/wrap-through.ts","../src/parts/drawing/floating/floating-position.ts","../src/parts/drawing/floating/horizontal-position.ts","../src/parts/drawing/floating/vertical-position.ts","../src/parts/drawing/descriptor.ts","../src/parts/drawing/inline/graphic/graphic-data/wpg/wpg-group.ts","../src/parts/drawing/inline/graphic/graphic-data/wps/body-properties.ts","../src/parts/drawing/inline/graphic/graphic-data/wps/non-visual-shape-properties.ts","../src/parts/drawing/inline/graphic/graphic-data/wps/wps-shape.ts","../src/shared/media/data.ts","../src/shared/media/media.ts","../src/parts/paragraph/run/image-run.ts","../src/parts/paragraph/run/chart-run.ts","../src/parts/paragraph/run/smartart-run.ts","../src/parts/document/document-background/document-background.ts","../src/parts/paragraph/run/wps-shape-run.ts","../src/parts/paragraph/run/wpg-group-run.ts","../src/parts/paragraph/run/simple-field.ts","../src/parts/paragraph/run/comment-run.ts","../src/parts/paragraph/run/positional-tab.ts","../src/parts/paragraph/run/ruby.ts","../src/parts/paragraph/run/form-field.ts","../src/parts/paragraph/run/smart-tag-run.ts","../src/parts/paragraph/run/proof-error.ts","../src/parts/paragraph/paragraph.ts","../src/parts/paragraph/links/hyperlink.ts","../src/parts/paragraph/links/numbered-item-ref.ts","../src/parts/paragraph/links/bidi.ts","../src/parts/table/table-row/table-row-properties.ts","../src/parts/table/table-cell/table-cell-properties.ts","../src/parts/table/table-cell/table-cell.ts","../src/parts/custom-xml/custom-xml.ts","../src/parts/document/body/section-properties/properties/column.ts","../src/parts/document/body/section-properties/properties/columns.ts","../src/parts/document/body/section-properties/properties/doc-grid.ts","../src/parts/document/body/section-properties/properties/page-size.ts","../src/parts/document/body/section-properties/properties/page-number.ts","../src/parts/document/body/section-properties/properties/page-borders.ts","../src/parts/document/body/section-properties/properties/page-margin.ts","../src/parts/document/body/section-properties/properties/page-text-direction.ts","../src/parts/document/body/section-properties/properties/line-number.ts","../src/parts/document/body/section-properties/properties/section-type.ts","../src/parts/document/body/section-properties/properties/header-footer-reference.ts","../src/parts/document/body/section-properties/descriptor.ts","../src/parts/sub-doc/sub-doc.ts","../src/parts/textbox/types.ts","../src/parts/textbox/shape/shape.ts","../src/shared/section.ts","../src/parts/document/document-attributes.ts","../src/parts/header-footer.ts","../src/parts/document/body/section-properties/properties/footnote-endnote-properties.ts","../src/parts/document/body/section-properties/section-properties.ts","../src/parts/endnotes/descriptor.ts","../src/parts/footnotes/descriptor.ts","../src/parts/glossary-document.ts","../src/parts/numbering/level.ts","../src/parts/numbering/numbering.ts","../src/parts/numbering/abstract-numbering.ts","../src/parts/numbering/num.ts","../src/parts/settings/compatibility.ts","../src/parts/settings/settings.ts","../src/parts/styles/factory.ts","../src/parts/styles/styles.ts","../src/parts/sub-doc/sub-doc-collection.ts","../src/parts/frameset.ts","../src/parts/web-settings.ts","../src/shared/embeddings/embeddings.ts","../src/parse.ts","../src/context.ts","../src/parts/fonts/font-wrapper.ts","../src/parts/fonts/font-table.ts","../src/parts/settings/descriptor.ts","../src/parts/core-properties.ts"],"mappings":"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"}
@@ -1,5 +1,5 @@
1
- import { A as settingsDesc, C as footnotesDesc, S as endnotesDesc, _ as glossaryDesc, a as appPropertiesDesc, d as withAltChunkOverrides, f as withMediaDefaults, i as webSettingsDesc, l as buildContentTypesFromRegistry, o as customPropertiesDesc, p as commentsDesc, s as corePropertiesDesc, tt as DocumentAttributeNamespaces, u as contentTypesDesc, v as bibliographyDesc, vt as stringifyBodyChild, y as fontTableDesc, yt as stringifyDocumentXml } from "./parts-DgrmHznM.mjs";
2
- import { n as DocxWriteContext } from "./context-CI0zR7rE.mjs";
1
+ import { A as settingsDesc, C as footnotesDesc, S as endnotesDesc, _ as glossaryDesc, a as appPropertiesDesc, d as withAltChunkOverrides, f as withMediaDefaults, i as webSettingsDesc, l as buildContentTypesFromRegistry, o as customPropertiesDesc, p as commentsDesc, s as corePropertiesDesc, tt as DocumentAttributeNamespaces, u as contentTypesDesc, v as bibliographyDesc, vt as stringifyBodyChild, y as fontTableDesc, yt as stringifyDocumentXml } from "./parts-Dmk8Xw0k.mjs";
2
+ import { n as DocxWriteContext } from "./context-BHlB9aBx.mjs";
3
3
  import { OoxmlMimeType, addSmartArtRelationships, createPacker, createThemeXml, findAndReplaceImagePlaceholders, formatId, hasPlaceholders, levelForMediaName, optionalRelsPart, replaceAllPlaceholders, replaceNumberingPlaceholders } from "@office-open/core";
4
4
  import { escapeXml } from "@office-open/xml";
5
5
  import { DEFAULT_DRAWING_XML, getColorXml, getLayoutXml, getStyleXml } from "@office-open/core/smartart";
@@ -527,4 +527,4 @@ function generateDocumentStream(options, packerOptions) {
527
527
  //#endregion
528
528
  export { compileDocument as i, generateDocumentStream as n, generateDocumentSync as r, generateDocument as t };
529
529
 
530
- //# sourceMappingURL=generate-B-n09INq.mjs.map
530
+ //# sourceMappingURL=generate-Cldf1pVt.mjs.map