document-content-model 7.6.0 → 7.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/README.md +1 -1
  2. package/dist/codec.d.cts +1 -1
  3. package/dist/codec.d.ts +1 -1
  4. package/dist/{construct-GVdTKrE7.d.cts → construct-C9cYkjnd.d.cts} +3 -3
  5. package/dist/{construct-GVdTKrE7.d.ts → construct-C9cYkjnd.d.ts} +3 -3
  6. package/dist/construct.d.cts +1 -1
  7. package/dist/construct.d.ts +1 -1
  8. package/dist/{content-BCOxY0Eb.d.ts → content-BIM8bWWt.d.ts} +205 -59
  9. package/dist/{content-BzkhrS6P.d.cts → content-DpsxyPMw.d.cts} +205 -59
  10. package/dist/content-json-schema-defs.cjs +32 -0
  11. package/dist/content-json-schema-defs.js +32 -0
  12. package/dist/content.cjs +37 -11
  13. package/dist/content.d.cts +2 -2
  14. package/dist/content.d.ts +2 -2
  15. package/dist/content.js +33 -12
  16. package/dist/decompose.d.cts +2 -2
  17. package/dist/decompose.d.ts +2 -2
  18. package/dist/definitions.cjs +1 -10
  19. package/dist/definitions.d.cts +4 -4
  20. package/dist/definitions.d.ts +4 -4
  21. package/dist/definitions.js +2 -11
  22. package/dist/factor-styles.cjs +1 -0
  23. package/dist/factor-styles.d.cts +1 -1
  24. package/dist/factor-styles.d.ts +1 -1
  25. package/dist/factor-styles.js +1 -0
  26. package/dist/flatten.cjs +1 -0
  27. package/dist/flatten.d.cts +1 -1
  28. package/dist/flatten.d.ts +1 -1
  29. package/dist/flatten.js +1 -0
  30. package/dist/index.cjs +5 -0
  31. package/dist/index.d.cts +5 -5
  32. package/dist/index.d.ts +5 -5
  33. package/dist/index.js +2 -2
  34. package/dist/{package-node-C4mh1hLY.d.ts → package-node-B8LBrCCD.d.ts} +48 -35
  35. package/dist/{package-node-RQMDBzwd.d.cts → package-node-CENJl5PH.d.cts} +48 -35
  36. package/dist/package-node.d.cts +1 -1
  37. package/dist/package-node.d.ts +1 -1
  38. package/dist/package.cjs +1 -0
  39. package/dist/package.d.cts +11 -6
  40. package/dist/package.d.ts +11 -6
  41. package/dist/package.js +2 -1
  42. package/dist/schema-io.cjs +2 -2
  43. package/dist/schema-io.d.cts +1 -1
  44. package/dist/schema-io.d.ts +1 -1
  45. package/dist/schema-io.js +2 -2
  46. package/dist/{style-D06NwxAJ.d.cts → style-BGMcYrD2.d.cts} +1 -1
  47. package/dist/{style-D06NwxAJ.d.ts → style-BGMcYrD2.d.ts} +1 -1
  48. package/dist/style.d.cts +1 -1
  49. package/dist/style.d.ts +1 -1
  50. package/dist/text-layout.d.cts +1 -1
  51. package/dist/text-layout.d.ts +1 -1
  52. package/package.json +1 -1
  53. package/schemas/content-document.schema.json +171 -13
  54. package/schemas/document-tree.schema.json +87 -3
package/dist/flatten.js CHANGED
@@ -47,6 +47,7 @@ function flattenTree(pkg) {
47
47
  case "spreadsheet": return {
48
48
  kind: "spreadsheet",
49
49
  ...envelope,
50
+ ...pkg.names !== void 0 ? { names: pkg.names } : {},
50
51
  sheets: pkg.children.map((group) => {
51
52
  if (group.style !== void 0) throw new Error("flattenTree: a sheet group carries a style ref but a sheet holds no block flow to resolve it onto");
52
53
  const images = [];
package/dist/index.cjs CHANGED
@@ -45,6 +45,7 @@ exports.ContentConstructStartSchema = require_content.ContentConstructStartSchem
45
45
  exports.ContentControlDescriptorSchema = require_construct.ContentControlDescriptorSchema;
46
46
  exports.ContentControlLockSchema = require_construct.ContentControlLockSchema;
47
47
  exports.ContentControlTypeSchema = require_construct.ContentControlTypeSchema;
48
+ exports.ContentDefinedNameSchema = require_content.ContentDefinedNameSchema;
48
49
  exports.ContentDocumentSchema = require_content.ContentDocumentSchema;
49
50
  exports.ContentDrawPageSchema = require_content.ContentDrawPageSchema;
50
51
  exports.ContentEmbeddedObjectBlockSchema = require_content.ContentEmbeddedObjectBlockSchema;
@@ -54,12 +55,14 @@ exports.ContentFloatAlignSchema = require_content.ContentFloatAlignSchema;
54
55
  exports.ContentFloatAxisSchema = require_content.ContentFloatAxisSchema;
55
56
  exports.ContentFloatOriginSchema = require_content.ContentFloatOriginSchema;
56
57
  exports.ContentFloatPositionSchema = require_content.ContentFloatPositionSchema;
58
+ exports.ContentFontSchema = require_content.ContentFontSchema;
57
59
  exports.ContentFormulaSchema = require_content.ContentFormulaSchema;
58
60
  exports.ContentGradientFillSchema = require_content.ContentGradientFillSchema;
59
61
  exports.ContentGradientStyleSchema = require_content.ContentGradientStyleSchema;
60
62
  exports.ContentHatchFillSchema = require_content.ContentHatchFillSchema;
61
63
  exports.ContentHatchStyleSchema = require_content.ContentHatchStyleSchema;
62
64
  exports.ContentImageBlockSchema = require_content.ContentImageBlockSchema;
65
+ exports.ContentImageOriginalSchema = require_content.ContentImageOriginalSchema;
63
66
  exports.ContentListMembershipSchema = require_content.ContentListMembershipSchema;
64
67
  exports.ContentPageBreakSchema = require_content.ContentPageBreakSchema;
65
68
  exports.ContentPageFurnitureSchema = require_content.ContentPageFurnitureSchema;
@@ -112,6 +115,7 @@ exports.FieldDescriptorSchema = require_construct.FieldDescriptorSchema;
112
115
  exports.FormulaBindingsSchema = require_math.FormulaBindingsSchema;
113
116
  exports.HeadingGroupSchema = require_package_node.HeadingGroupSchema;
114
117
  exports.HeadingParagraphSchema = require_package_node.HeadingParagraphSchema;
118
+ exports.IMAGE_FORMATS = require_content.IMAGE_FORMATS;
115
119
  exports.IntervalSchema = require_math.IntervalSchema;
116
120
  exports.LayoutFontSchema = require_style.LayoutFontSchema;
117
121
  exports.LayoutFrameSchema = require_geometry.LayoutFrameSchema;
@@ -152,6 +156,7 @@ exports.PageSizeSchema = require_geometry.PageSizeSchema;
152
156
  exports.ProvenanceChangeSchema = require_construct.ProvenanceChangeSchema;
153
157
  exports.ProvenanceDescriptorSchema = require_construct.ProvenanceDescriptorSchema;
154
158
  exports.QuantitySchema = require_math.QuantitySchema;
159
+ exports.RUN_FONT_PROPERTY_SHAPE = require_content.RUN_FONT_PROPERTY_SHAPE;
155
160
  exports.RunConstructExtentSchema = require_content.RunConstructExtentSchema;
156
161
  exports.SCHEMA_FILE_NAMES = require_schema_io.SCHEMA_FILE_NAMES;
157
162
  exports.SI_BASE_DIMENSIONS = require_math.SI_BASE_DIMENSIONS;
package/dist/index.d.cts CHANGED
@@ -5,12 +5,12 @@ import { A as MathSumSchema, B as MathUnparsedSchema, C as MathProd, D as MathQt
5
5
  import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-AELCDH_b.cjs";
6
6
  import { a as Margins, c as PAGE_SIZE_LETTER, d as Point, f as SLIDE_SIZE_STANDARD, i as LayoutFrameSchema, l as PageSize, n as BoxSchema, o as MarginsSchema, p as SLIDE_SIZE_WIDESCREEN, r as LayoutFrame, s as PAGE_SIZE_A4, t as Box, u as PageSizeSchema } from "./geometry-CvcjSwnA.cjs";
7
7
  import { i as SourceResidueSchema, n as SourceFormatSchema, r as SourceResidue, t as SourceFormat } from "./source-Bas5ol6f.cjs";
8
- import { a as LayoutFontSchema, i as LayoutFont, n as AlignmentSchema, o as TextDirection, r as DEFAULT_LAYOUT_FONT, s as TextDirectionSchema, t as Alignment } from "./style-D06NwxAJ.cjs";
9
- import { $ as ContentPageBreak, $t as ContentStrokeStyle, A as ContentFillPatternSchema, At as ContentSheetDataValidation, B as ContentFormulaSchema, Bt as ContentSheetRange, C as ContentDrawPageSchema, Cn as isContentBlock, Ct as ContentSheetColumnSchema, D as ContentEmbeddedObjectKind, Dn as resolveCellFillColor, Dt as ContentSheetConditionalFormatStyleSchema, E as ContentEmbeddedObjectBlockSchema, En as isRunConstructExtent, Et as ContentSheetConditionalFormatStyle, F as ContentFloatOrigin, Ft as ContentSheetImageSchema, G as ContentHatchFill, Gt as ContentSheetRowSchema, H as ContentGradientFillSchema, Ht as ContentSheetRepeatRange, I as ContentFloatOriginSchema, It as ContentSheetPrintRange, J as ContentHatchStyleSchema, Jt as ContentSlideSchema, K as ContentHatchFillSchema, Kt as ContentSheetSchema, L as ContentFloatPosition, Lt as ContentSheetPrintRangeSchema, M as ContentFloatAlignSchema, Mt as ContentSheetDataValidationType, N as ContentFloatAxis, Nt as ContentSheetDataValidationTypeSchema, O as ContentEmbeddedObjectSchema, On as unrecognizedFillKind, Ot as ContentSheetConditionalFormatValue, P as ContentFloatAxisSchema, Pt as ContentSheetImage, Q as ContentListMembershipSchema, Qt as ContentStrokeSchema, R as ContentFloatPositionSchema, Rt as ContentSheetPrintSettings, S as ContentDrawPage, Sn as findRunConstructFault, St as ContentSheetColumn, T as ContentEmbeddedObjectBlock, Tn as isContentConstructStart, Tt as ContentSheetConditionalFormatSchema, U as ContentGradientStyle, Ut as ContentSheetRepeatRangeSchema, V as ContentGradientFill, Vt as ContentSheetRangeSchema, W as ContentGradientStyleSchema, Wt as ContentSheetRow, X as ContentImageBlockSchema, Xt as ContentStrokeDash, Y as ContentImageBlock, Yt as ContentStroke, Z as ContentListMembership, Zt as ContentStrokeDashSchema, _ as ContentConstructEndSchema, _n as SheetRuleOperator, _t as ContentSheet, a as ContentBlockSchema, an as ContentTableCellSchema, at as ContentParagraphBordersSchema, b as ContentDocument, bn as contentDocumentSharedFields, bt as ContentSheetCellCommentSchema, c as ContentCellBorders, cn as ContentTableSchema, ct as ContentPathPointSchema, d as ContentCellFillSchema, dn as DecimalString, dt as ContentRun, en as ContentStrokeStyleSchema, et as ContentPageBreakSchema, f as ContentCellPatternType, fn as DecimalStringSchema, ft as ContentRunSchema, g as ContentConstructEnd, gn as RunConstructFault, gt as ContentShapeSchema, h as ContentCellValueSchema, hn as RunConstructExtentSchema, ht as ContentShape, i as ContentBlock, in as ContentTableCell, it as ContentParagraphBorders, j as ContentFloatAlign, jt as ContentSheetDataValidationSchema, k as ContentFillPattern, kt as ContentSheetConditionalFormatValueSchema, l as ContentCellBordersSchema, ln as ContentVector, lt as ContentPathSegment, m as ContentCellValue, mn as RunConstructExtent, mt as ContentSectionSchema, n as ContentBitmapFill, nn as ContentSubpathSchema, nt as ContentPageFurnitureSchema, o as ContentBorder, on as ContentTableRow, ot as ContentParagraphSchema, p as ContentCellPatternTypeSchema, pn as FusedNode, pt as ContentSection, q as ContentHatchStyle, qt as ContentSlide, r as ContentBitmapFillSchema, rn as ContentTable, rt as ContentParagraph, s as ContentBorderSchema, sn as ContentTableRowSchema, st as ContentPathPoint, t as ConstructMarkerImbalance, tn as ContentSubpath, tt as ContentPageFurniture, u as ContentCellFill, un as ContentVectorSchema, ut as ContentPathSegmentSchema, v as ContentConstructStart, vn as SheetRuleOperatorSchema, vt as ContentSheetCell, w as ContentEmbeddedObject, wn as isContentConstructEnd, wt as ContentSheetConditionalFormat, x as ContentDocumentSchema, xn as findConstructMarkerImbalance, xt as ContentSheetCellSchema, y as ContentConstructStartSchema, yn as clampHeadingLevel, yt as ContentSheetCellComment, z as ContentFormula, zt as ContentSheetPrintSettingsSchema } from "./content-BzkhrS6P.cjs";
8
+ import { a as LayoutFontSchema, i as LayoutFont, n as AlignmentSchema, o as TextDirection, r as DEFAULT_LAYOUT_FONT, s as TextDirectionSchema, t as Alignment } from "./style-BGMcYrD2.cjs";
9
+ import { $ as ContentImageBlock, $t as ContentSlide, A as ContentEmbeddedObjectSchema, An as findConstructMarkerImbalance, At as ContentSheetConditionalFormat, B as ContentFloatPositionSchema, Bt as ContentSheetImage, C as ContentDocumentSchema, Cn as RunConstructExtent, Ct as ContentSheet, D as ContentEmbeddedObjectBlock, Dn as SheetRuleOperatorSchema, Dt as ContentSheetCellSchema, E as ContentEmbeddedObject, En as SheetRuleOperator, Et as ContentSheetCellCommentSchema, F as ContentFloatAxis, Fn as isRunConstructExtent, Ft as ContentSheetConditionalFormatValueSchema, G as ContentGradientFill, Gt as ContentSheetPrintSettingsSchema, H as ContentFontSchema, Ht as ContentSheetPrintRange, I as ContentFloatAxisSchema, In as resolveCellFillColor, It as ContentSheetDataValidation, J as ContentGradientStyleSchema, Jt as ContentSheetRepeatRange, K as ContentGradientFillSchema, Kt as ContentSheetRange, L as ContentFloatOrigin, Ln as unrecognizedFillKind, Lt as ContentSheetDataValidationSchema, M as ContentFillPatternSchema, Mn as isContentBlock, Mt as ContentSheetConditionalFormatStyle, N as ContentFloatAlign, Nn as isContentConstructEnd, Nt as ContentSheetConditionalFormatStyleSchema, O as ContentEmbeddedObjectBlockSchema, On as clampHeadingLevel, Ot as ContentSheetColumn, P as ContentFloatAlignSchema, Pn as isContentConstructStart, Pt as ContentSheetConditionalFormatValue, Q as ContentHatchStyleSchema, Qt as ContentSheetSchema, R as ContentFloatOriginSchema, Rt as ContentSheetDataValidationType, S as ContentDocument, Sn as RUN_FONT_PROPERTY_SHAPE, St as ContentShapeSchema, T as ContentDrawPageSchema, Tn as RunConstructFault, Tt as ContentSheetCellComment, U as ContentFormula, Ut as ContentSheetPrintRangeSchema, V as ContentFont, Vt as ContentSheetImageSchema, W as ContentFormulaSchema, Wt as ContentSheetPrintSettings, X as ContentHatchFillSchema, Xt as ContentSheetRow, Y as ContentHatchFill, Yt as ContentSheetRepeatRangeSchema, Z as ContentHatchStyle, Zt as ContentSheetRowSchema, _ as ContentConstructEndSchema, _n as DecimalString, _t as ContentRun, a as ContentBlockSchema, an as ContentStrokeStyle, at as ContentPageBreak, b as ContentDefinedName, bn as IMAGE_FORMATS, bt as ContentSectionSchema, c as ContentCellBorders, cn as ContentSubpathSchema, ct as ContentPageFurnitureSchema, d as ContentCellFillSchema, dn as ContentTableCellSchema, dt as ContentParagraphBordersSchema, en as ContentSlideSchema, et as ContentImageBlockSchema, f as ContentCellPatternType, fn as ContentTableRow, ft as ContentParagraphSchema, g as ContentConstructEnd, gn as ContentVectorSchema, gt as ContentPathSegmentSchema, h as ContentCellValueSchema, hn as ContentVector, ht as ContentPathSegment, i as ContentBlock, in as ContentStrokeSchema, it as ContentListMembershipSchema, j as ContentFillPattern, jn as findRunConstructFault, jt as ContentSheetConditionalFormatSchema, k as ContentEmbeddedObjectKind, kn as contentDocumentSharedFields, kt as ContentSheetColumnSchema, l as ContentCellBordersSchema, ln as ContentTable, lt as ContentParagraph, m as ContentCellValue, mn as ContentTableSchema, mt as ContentPathPointSchema, n as ContentBitmapFill, nn as ContentStrokeDash, nt as ContentImageOriginalSchema, o as ContentBorder, on as ContentStrokeStyleSchema, ot as ContentPageBreakSchema, p as ContentCellPatternTypeSchema, pn as ContentTableRowSchema, pt as ContentPathPoint, q as ContentGradientStyle, qt as ContentSheetRangeSchema, r as ContentBitmapFillSchema, rn as ContentStrokeDashSchema, rt as ContentListMembership, s as ContentBorderSchema, sn as ContentSubpath, st as ContentPageFurniture, t as ConstructMarkerImbalance, tn as ContentStroke, tt as ContentImageOriginal, u as ContentCellFill, un as ContentTableCell, ut as ContentParagraphBorders, v as ContentConstructStart, vn as DecimalStringSchema, vt as ContentRunSchema, w as ContentDrawPage, wn as RunConstructExtentSchema, wt as ContentSheetCell, x as ContentDefinedNameSchema, xn as ImageFormat, xt as ContentShape, y as ContentConstructStartSchema, yn as FusedNode, yt as ContentSection, z as ContentFloatPosition, zt as ContentSheetDataValidationTypeSchema } from "./content-DpsxyPMw.cjs";
10
10
  import { ContentCodec } from "./codec.cjs";
11
- import { C as ProvenanceChange, E as ProvenanceDescriptorSchema, S as LinkTargetSchema, T as ProvenanceDescriptor, _ as FieldDescriptor, a as ConstructDescriptor, b as LinkDescriptorSchema, c as ContentControlDescriptorSchema, d as ContentControlType, f as ContentControlTypeSchema, g as DivisionSourceSchema, h as DivisionSource, i as AnchorTypeSchema, l as ContentControlLock, m as DivisionDescriptorSchema, n as AnchorDescriptorSchema, o as ConstructDescriptorSchema, p as DivisionDescriptor, r as AnchorType, s as ContentControlDescriptor, t as AnchorDescriptor, u as ContentControlLockSchema, v as FieldDescriptorSchema, w as ProvenanceChangeSchema, x as LinkTarget, y as LinkDescriptor } from "./construct-GVdTKrE7.cjs";
11
+ import { C as ProvenanceChange, E as ProvenanceDescriptorSchema, S as LinkTargetSchema, T as ProvenanceDescriptor, _ as FieldDescriptor, a as ConstructDescriptor, b as LinkDescriptorSchema, c as ContentControlDescriptorSchema, d as ContentControlType, f as ContentControlTypeSchema, g as DivisionSourceSchema, h as DivisionSource, i as AnchorTypeSchema, l as ContentControlLock, m as DivisionDescriptorSchema, n as AnchorDescriptorSchema, o as ConstructDescriptorSchema, p as DivisionDescriptor, r as AnchorType, s as ContentControlDescriptor, t as AnchorDescriptor, u as ContentControlLockSchema, v as FieldDescriptorSchema, w as ProvenanceChangeSchema, x as LinkTarget, y as LinkDescriptor } from "./construct-C9cYkjnd.cjs";
12
12
  import { CONTENT_DEFS, CONTENT_DOCUMENT_URI, EMBEDDED_OBJECT_KINDS, MAX_SAFE_INTEGER } from "./content-json-schema-defs.cjs";
13
- import { $ as isSheetGroupNode, A as SheetDescriptor, B as TreeGroup, C as ShapeConstructGroupNode, D as ShapeGroupNode, E as ShapeDescriptorSchema, F as SlideDescriptorSchema, G as TreeNodeSchema, H as TreeLeaf, I as SlideGroupNode, J as isListGroupNode, K as isDrawPageGroupNode, L as SlideGroupSchema, M as SheetGroupNode, N as SheetGroupSchema, O as ShapeGroupSchema, P as SlideDescriptor, Q as isShapeGroupNode, R as TreeBlockLeaf, S as ShapeChild, T as ShapeDescriptor, U as TreeLeafSchema, V as TreeGroupSchema, W as TreeNode, X as isSectionGroupNode, Y as isSectionConstructGroupNode, Z as isShapeConstructGroupNode, _ as SectionConstructGroupSchema, a as DrawPageGroupSchema, b as SectionGroupNode, c as HeadingParagraph, d as ListGroupNode, et as isSlideGroupNode, f as ListGroupSchema, g as SectionConstructGroupNode, h as SectionChild, i as DrawPageGroupNode, it as isTreeNode, j as SheetDescriptorSchema, k as SheetChild, l as HeadingParagraphSchema, m as ListParagraphSchema, n as DrawPageDescriptor, nt as isTreeGroup, o as HeadingGroupNode, p as ListParagraph, q as isHeadingGroupNode, r as DrawPageDescriptorSchema, rt as isTreeLeaf, s as HeadingGroupSchema, t as DrawPageChild, tt as isTreeBlockLeaf, u as ListChild, v as SectionDescriptor, w as ShapeConstructGroupSchema, x as SectionGroupSchema, y as SectionDescriptorSchema, z as TreeBlockLeafSchema } from "./package-node-RQMDBzwd.cjs";
13
+ import { $ as isSheetGroupNode, A as SheetDescriptor, B as TreeGroup, C as ShapeConstructGroupNode, D as ShapeGroupNode, E as ShapeDescriptorSchema, F as SlideDescriptorSchema, G as TreeNodeSchema, H as TreeLeaf, I as SlideGroupNode, J as isListGroupNode, K as isDrawPageGroupNode, L as SlideGroupSchema, M as SheetGroupNode, N as SheetGroupSchema, O as ShapeGroupSchema, P as SlideDescriptor, Q as isShapeGroupNode, R as TreeBlockLeaf, S as ShapeChild, T as ShapeDescriptor, U as TreeLeafSchema, V as TreeGroupSchema, W as TreeNode, X as isSectionGroupNode, Y as isSectionConstructGroupNode, Z as isShapeConstructGroupNode, _ as SectionConstructGroupSchema, a as DrawPageGroupSchema, b as SectionGroupNode, c as HeadingParagraph, d as ListGroupNode, et as isSlideGroupNode, f as ListGroupSchema, g as SectionConstructGroupNode, h as SectionChild, i as DrawPageGroupNode, it as isTreeNode, j as SheetDescriptorSchema, k as SheetChild, l as HeadingParagraphSchema, m as ListParagraphSchema, n as DrawPageDescriptor, nt as isTreeGroup, o as HeadingGroupNode, p as ListParagraph, q as isHeadingGroupNode, r as DrawPageDescriptorSchema, rt as isTreeLeaf, s as HeadingGroupSchema, t as DrawPageChild, tt as isTreeBlockLeaf, u as ListChild, v as SectionDescriptor, w as ShapeConstructGroupSchema, x as SectionGroupSchema, y as SectionDescriptorSchema, z as TreeBlockLeafSchema } from "./package-node-CENJl5PH.cjs";
14
14
  import { ConstructMarkerImbalanceError, TreeChildren, decompose } from "./decompose.cjs";
15
15
  import { DefinitionEntry, DefinitionEntrySchema, DefinitionsTable, DefinitionsTableSchema, StyleEntry, StyleEntrySchema, StyleParagraphProperties, StyleParagraphPropertiesSchema, StyleRunProperties, StyleRunPropertiesSchema, StylesTable, StylesTableSchema, applyParagraphStyleProperties, applyRunStyleProperties, overlayStyleEntries, resolveStyleChain } from "./definitions.cjs";
16
16
  import { DocumentTree, DocumentTreeSchema } from "./package.cjs";
@@ -21,4 +21,4 @@ import { LayoutMetadata, LayoutMetadataSchema } from "./metadata.cjs";
21
21
  import { ContentDocumentJson, DocumentJsonResult, DocumentPackageRenamedError, DocumentSchemaKind, DocumentTreeJson, LayoutSchemaDemotedError, SCHEMA_FILE_NAMES, SchemaVersionMismatchError, UnrecognizedDocumentSchemaError, contentDocumentWithSchema, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, schemaUriFor } from "./schema-io.cjs";
22
22
  import { StyledFragment, StyledRun, TextMeasurer, UnderlineMetrics, WrapOptions, WrappedLine } from "./text-layout.cjs";
23
23
  import { MathAssembledGlyphs, MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, PositionedFormula } from "./math-layout.cjs";
24
- export { Alignment, AlignmentSchema, AnchorDescriptor, AnchorDescriptorSchema, AnchorType, AnchorTypeSchema, BORDER_WIDTH_PT, BorderWeight, Box, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CellPosition, CellRange, Color, ColorSchema, ConstructDescriptor, ConstructDescriptorSchema, ConstructMarkerImbalance, ConstructMarkerImbalanceError, ContentBitmapFill, ContentBitmapFillSchema, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellFill, ContentCellFillSchema, ContentCellPatternType, ContentCellPatternTypeSchema, ContentCellValue, ContentCellValueSchema, ContentCodec, ContentConstructEnd, ContentConstructEndSchema, ContentConstructStart, ContentConstructStartSchema, ContentControlDescriptor, ContentControlDescriptorSchema, ContentControlLock, ContentControlLockSchema, ContentControlType, ContentControlTypeSchema, ContentDocument, ContentDocumentJson, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFillPattern, ContentFillPatternSchema, ContentFloatAlign, ContentFloatAlignSchema, ContentFloatAxis, ContentFloatAxisSchema, ContentFloatOrigin, ContentFloatOriginSchema, ContentFloatPosition, ContentFloatPositionSchema, ContentFormula, ContentFormulaSchema, ContentGradientFill, ContentGradientFillSchema, ContentGradientStyle, ContentGradientStyleSchema, ContentHatchFill, ContentHatchFillSchema, ContentHatchStyle, ContentHatchStyleSchema, ContentImageBlock, ContentImageBlockSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentPageFurniture, ContentPageFurnitureSchema, ContentParagraph, ContentParagraphBorders, ContentParagraphBordersSchema, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellComment, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetConditionalFormat, ContentSheetConditionalFormatSchema, ContentSheetConditionalFormatStyle, ContentSheetConditionalFormatStyleSchema, ContentSheetConditionalFormatValue, ContentSheetConditionalFormatValueSchema, ContentSheetDataValidation, ContentSheetDataValidationSchema, ContentSheetDataValidationType, ContentSheetDataValidationTypeSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRange, ContentSheetRangeSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeDash, ContentStrokeDashSchema, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DecimalString, DecimalStringSchema, DefinitionEntry, DefinitionEntrySchema, DefinitionsTable, DefinitionsTableSchema, DimensionVector, DimensionVectorSchema, DivisionDescriptor, DivisionDescriptorSchema, DivisionSource, DivisionSourceSchema, DocumentJsonResult, DocumentPackageRenamedError, DocumentSchemaKind, DocumentTree, DocumentTreeJson, DocumentTreeSchema, DrawPageChild, DrawPageDescriptor, DrawPageDescriptorSchema, DrawPageGroupNode, DrawPageGroupSchema, EMBEDDED_OBJECT_KINDS, EvaluationValue, EvaluationValueSchema, ExactRational, ExactRationalSchema, FieldDescriptor, FieldDescriptorSchema, FontFace, FontRegistryOptions, FontSubstitution, FormulaBindings, FormulaBindingsSchema, FusedNode, HeadingGroupNode, HeadingGroupSchema, HeadingParagraph, HeadingParagraphSchema, Interval, IntervalSchema, LayoutFont, LayoutFontSchema, LayoutFrame, LayoutFrameSchema, LayoutMetadata, LayoutMetadataSchema, LayoutSchemaDemotedError, LinkDescriptor, LinkDescriptorSchema, LinkTarget, LinkTargetSchema, ListChild, ListGroupNode, ListGroupSchema, ListParagraph, ListParagraphSchema, MAX_SAFE_INTEGER, Margins, MarginsSchema, MathApp, MathAppSchema, MathAssembledGlyphs, MathBox, MathColor, MathExpression, MathExpressionSchema, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathMatrix, MathMatrixSchema, MathMlAttribute, MathMlAttributeSchema, MathMlCdata, MathMlCdataSchema, MathMlComment, MathMlCommentSchema, MathMlDeclaration, MathMlDeclarationSchema, MathMlElement, MathMlElementSchema, MathMlNode, MathMlNodeSchema, MathMlPi, MathMlPiSchema, MathMlText, MathMlTextSchema, MathNormalisationContext, MathNormalisationContextSchema, MathNum, MathNumSchema, MathPresentation, MathPresentationSchema, MathProd, MathProdSchema, MathProvenance, MathProvenanceSchema, MathQty, MathQtySchema, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, MathSum, MathSumSchema, MathSym, MathSymSchema, MathSymbolEntry, MathSymbolEntrySchema, MathUncertainty, MathUncertaintySchema, MathUnit, MathUnitSchema, MathUnparsed, MathUnparsedSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSize, PageSizeSchema, Point, PositionedFormula, ProvenanceChange, ProvenanceChangeSchema, ProvenanceDescriptor, ProvenanceDescriptorSchema, ProvidedFont, Quantity, QuantitySchema, RunConstructExtent, RunConstructExtentSchema, RunConstructFault, SCHEMA_FILE_NAMES, SI_BASE_DIMENSIONS, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, SchemaVersionMismatchError, SectionChild, SectionConstructGroupNode, SectionConstructGroupSchema, SectionDescriptor, SectionDescriptorSchema, SectionGroupNode, SectionGroupSchema, ShapeChild, ShapeConstructGroupNode, ShapeConstructGroupSchema, ShapeDescriptor, ShapeDescriptorSchema, ShapeGroupNode, ShapeGroupSchema, SheetChild, SheetDescriptor, SheetDescriptorSchema, SheetGroupNode, SheetGroupSchema, SheetRuleOperator, SheetRuleOperatorSchema, SiBaseDimension, SlideDescriptor, SlideDescriptorSchema, SlideGroupNode, SlideGroupSchema, SourceFormat, SourceFormatSchema, SourceResidue, SourceResidueSchema, StyleEntry, StyleEntrySchema, StyleParagraphProperties, StyleParagraphPropertiesSchema, StyleRunProperties, StyleRunPropertiesSchema, StyledFragment, StyledRun, StylesTable, StylesTableSchema, SymbolTable, SymbolTableSchema, TextDirection, TextDirectionSchema, TextMeasurer, TreeBlockLeaf, TreeBlockLeafSchema, type TreeChildren, TreeGroup, TreeGroupSchema, TreeLeaf, TreeLeafSchema, TreeNode, TreeNodeSchema, UnderlineMetrics, UnrecognizedDocumentSchemaError, WrapOptions, WrappedLine, applyParagraphStyleProperties, applyRunStyleProperties, assembleTree, borderWeightForWidthPt, cellReference, clampHeadingLevel, colorToRgbHex, columnIndexToLetters, columnLettersToIndex, contentDocumentSharedFields, contentDocumentWithSchema, dashedBorderWeightForWidthPt, decompose, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, factorStyles, findConstructMarkerImbalance, findRunConstructFault, flattenTree, isContentBlock, isContentConstructEnd, isContentConstructStart, isDrawPageGroupNode, isHeadingGroupNode, isListGroupNode, isMathExpression, isMathMlNode, isRunConstructExtent, isSectionConstructGroupNode, isSectionGroupNode, isShapeConstructGroupNode, isShapeGroupNode, isSheetGroupNode, isSlideGroupNode, isTreeBlockLeaf, isTreeGroup, isTreeLeaf, isTreeNode, overlayStyleEntries, parseCellReference, parseRangeReference, rangeReference, resolveCellFillColor, resolveStyleChain, rgbHexToColor, schemaUriFor, unrecognizedFillKind };
24
+ export { Alignment, AlignmentSchema, AnchorDescriptor, AnchorDescriptorSchema, AnchorType, AnchorTypeSchema, BORDER_WIDTH_PT, BorderWeight, Box, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CellPosition, CellRange, Color, ColorSchema, ConstructDescriptor, ConstructDescriptorSchema, ConstructMarkerImbalance, ConstructMarkerImbalanceError, ContentBitmapFill, ContentBitmapFillSchema, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellFill, ContentCellFillSchema, ContentCellPatternType, ContentCellPatternTypeSchema, ContentCellValue, ContentCellValueSchema, ContentCodec, ContentConstructEnd, ContentConstructEndSchema, ContentConstructStart, ContentConstructStartSchema, ContentControlDescriptor, ContentControlDescriptorSchema, ContentControlLock, ContentControlLockSchema, ContentControlType, ContentControlTypeSchema, ContentDefinedName, ContentDefinedNameSchema, ContentDocument, ContentDocumentJson, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFillPattern, ContentFillPatternSchema, ContentFloatAlign, ContentFloatAlignSchema, ContentFloatAxis, ContentFloatAxisSchema, ContentFloatOrigin, ContentFloatOriginSchema, ContentFloatPosition, ContentFloatPositionSchema, ContentFont, ContentFontSchema, ContentFormula, ContentFormulaSchema, ContentGradientFill, ContentGradientFillSchema, ContentGradientStyle, ContentGradientStyleSchema, ContentHatchFill, ContentHatchFillSchema, ContentHatchStyle, ContentHatchStyleSchema, ContentImageBlock, ContentImageBlockSchema, ContentImageOriginal, ContentImageOriginalSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentPageFurniture, ContentPageFurnitureSchema, ContentParagraph, ContentParagraphBorders, ContentParagraphBordersSchema, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellComment, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetConditionalFormat, ContentSheetConditionalFormatSchema, ContentSheetConditionalFormatStyle, ContentSheetConditionalFormatStyleSchema, ContentSheetConditionalFormatValue, ContentSheetConditionalFormatValueSchema, ContentSheetDataValidation, ContentSheetDataValidationSchema, ContentSheetDataValidationType, ContentSheetDataValidationTypeSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRange, ContentSheetRangeSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeDash, ContentStrokeDashSchema, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DecimalString, DecimalStringSchema, DefinitionEntry, DefinitionEntrySchema, DefinitionsTable, DefinitionsTableSchema, DimensionVector, DimensionVectorSchema, DivisionDescriptor, DivisionDescriptorSchema, DivisionSource, DivisionSourceSchema, DocumentJsonResult, DocumentPackageRenamedError, DocumentSchemaKind, DocumentTree, DocumentTreeJson, DocumentTreeSchema, DrawPageChild, DrawPageDescriptor, DrawPageDescriptorSchema, DrawPageGroupNode, DrawPageGroupSchema, EMBEDDED_OBJECT_KINDS, EvaluationValue, EvaluationValueSchema, ExactRational, ExactRationalSchema, FieldDescriptor, FieldDescriptorSchema, FontFace, FontRegistryOptions, FontSubstitution, FormulaBindings, FormulaBindingsSchema, FusedNode, HeadingGroupNode, HeadingGroupSchema, HeadingParagraph, HeadingParagraphSchema, IMAGE_FORMATS, ImageFormat, Interval, IntervalSchema, LayoutFont, LayoutFontSchema, LayoutFrame, LayoutFrameSchema, LayoutMetadata, LayoutMetadataSchema, LayoutSchemaDemotedError, LinkDescriptor, LinkDescriptorSchema, LinkTarget, LinkTargetSchema, ListChild, ListGroupNode, ListGroupSchema, ListParagraph, ListParagraphSchema, MAX_SAFE_INTEGER, Margins, MarginsSchema, MathApp, MathAppSchema, MathAssembledGlyphs, MathBox, MathColor, MathExpression, MathExpressionSchema, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathMatrix, MathMatrixSchema, MathMlAttribute, MathMlAttributeSchema, MathMlCdata, MathMlCdataSchema, MathMlComment, MathMlCommentSchema, MathMlDeclaration, MathMlDeclarationSchema, MathMlElement, MathMlElementSchema, MathMlNode, MathMlNodeSchema, MathMlPi, MathMlPiSchema, MathMlText, MathMlTextSchema, MathNormalisationContext, MathNormalisationContextSchema, MathNum, MathNumSchema, MathPresentation, MathPresentationSchema, MathProd, MathProdSchema, MathProvenance, MathProvenanceSchema, MathQty, MathQtySchema, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, MathSum, MathSumSchema, MathSym, MathSymSchema, MathSymbolEntry, MathSymbolEntrySchema, MathUncertainty, MathUncertaintySchema, MathUnit, MathUnitSchema, MathUnparsed, MathUnparsedSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSize, PageSizeSchema, Point, PositionedFormula, ProvenanceChange, ProvenanceChangeSchema, ProvenanceDescriptor, ProvenanceDescriptorSchema, ProvidedFont, Quantity, QuantitySchema, RUN_FONT_PROPERTY_SHAPE, RunConstructExtent, RunConstructExtentSchema, RunConstructFault, SCHEMA_FILE_NAMES, SI_BASE_DIMENSIONS, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, SchemaVersionMismatchError, SectionChild, SectionConstructGroupNode, SectionConstructGroupSchema, SectionDescriptor, SectionDescriptorSchema, SectionGroupNode, SectionGroupSchema, ShapeChild, ShapeConstructGroupNode, ShapeConstructGroupSchema, ShapeDescriptor, ShapeDescriptorSchema, ShapeGroupNode, ShapeGroupSchema, SheetChild, SheetDescriptor, SheetDescriptorSchema, SheetGroupNode, SheetGroupSchema, SheetRuleOperator, SheetRuleOperatorSchema, SiBaseDimension, SlideDescriptor, SlideDescriptorSchema, SlideGroupNode, SlideGroupSchema, SourceFormat, SourceFormatSchema, SourceResidue, SourceResidueSchema, StyleEntry, StyleEntrySchema, StyleParagraphProperties, StyleParagraphPropertiesSchema, StyleRunProperties, StyleRunPropertiesSchema, StyledFragment, StyledRun, StylesTable, StylesTableSchema, SymbolTable, SymbolTableSchema, TextDirection, TextDirectionSchema, TextMeasurer, TreeBlockLeaf, TreeBlockLeafSchema, type TreeChildren, TreeGroup, TreeGroupSchema, TreeLeaf, TreeLeafSchema, TreeNode, TreeNodeSchema, UnderlineMetrics, UnrecognizedDocumentSchemaError, WrapOptions, WrappedLine, applyParagraphStyleProperties, applyRunStyleProperties, assembleTree, borderWeightForWidthPt, cellReference, clampHeadingLevel, colorToRgbHex, columnIndexToLetters, columnLettersToIndex, contentDocumentSharedFields, contentDocumentWithSchema, dashedBorderWeightForWidthPt, decompose, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, factorStyles, findConstructMarkerImbalance, findRunConstructFault, flattenTree, isContentBlock, isContentConstructEnd, isContentConstructStart, isDrawPageGroupNode, isHeadingGroupNode, isListGroupNode, isMathExpression, isMathMlNode, isRunConstructExtent, isSectionConstructGroupNode, isSectionGroupNode, isShapeConstructGroupNode, isShapeGroupNode, isSheetGroupNode, isSlideGroupNode, isTreeBlockLeaf, isTreeGroup, isTreeLeaf, isTreeNode, overlayStyleEntries, parseCellReference, parseRangeReference, rangeReference, resolveCellFillColor, resolveStyleChain, rgbHexToColor, schemaUriFor, unrecognizedFillKind };
package/dist/index.d.ts CHANGED
@@ -5,12 +5,12 @@ import { A as MathSumSchema, B as MathUnparsedSchema, C as MathProd, D as MathQt
5
5
  import { a as rgbHexToColor, i as colorToRgbHex, n as Color, r as ColorSchema, t as COLOR_BLACK } from "./color-AELCDH_b.js";
6
6
  import { a as Margins, c as PAGE_SIZE_LETTER, d as Point, f as SLIDE_SIZE_STANDARD, i as LayoutFrameSchema, l as PageSize, n as BoxSchema, o as MarginsSchema, p as SLIDE_SIZE_WIDESCREEN, r as LayoutFrame, s as PAGE_SIZE_A4, t as Box, u as PageSizeSchema } from "./geometry-CvcjSwnA.js";
7
7
  import { i as SourceResidueSchema, n as SourceFormatSchema, r as SourceResidue, t as SourceFormat } from "./source-Bas5ol6f.js";
8
- import { a as LayoutFontSchema, i as LayoutFont, n as AlignmentSchema, o as TextDirection, r as DEFAULT_LAYOUT_FONT, s as TextDirectionSchema, t as Alignment } from "./style-D06NwxAJ.js";
9
- import { $ as ContentPageBreak, $t as ContentStrokeStyle, A as ContentFillPatternSchema, At as ContentSheetDataValidation, B as ContentFormulaSchema, Bt as ContentSheetRange, C as ContentDrawPageSchema, Cn as isContentBlock, Ct as ContentSheetColumnSchema, D as ContentEmbeddedObjectKind, Dn as resolveCellFillColor, Dt as ContentSheetConditionalFormatStyleSchema, E as ContentEmbeddedObjectBlockSchema, En as isRunConstructExtent, Et as ContentSheetConditionalFormatStyle, F as ContentFloatOrigin, Ft as ContentSheetImageSchema, G as ContentHatchFill, Gt as ContentSheetRowSchema, H as ContentGradientFillSchema, Ht as ContentSheetRepeatRange, I as ContentFloatOriginSchema, It as ContentSheetPrintRange, J as ContentHatchStyleSchema, Jt as ContentSlideSchema, K as ContentHatchFillSchema, Kt as ContentSheetSchema, L as ContentFloatPosition, Lt as ContentSheetPrintRangeSchema, M as ContentFloatAlignSchema, Mt as ContentSheetDataValidationType, N as ContentFloatAxis, Nt as ContentSheetDataValidationTypeSchema, O as ContentEmbeddedObjectSchema, On as unrecognizedFillKind, Ot as ContentSheetConditionalFormatValue, P as ContentFloatAxisSchema, Pt as ContentSheetImage, Q as ContentListMembershipSchema, Qt as ContentStrokeSchema, R as ContentFloatPositionSchema, Rt as ContentSheetPrintSettings, S as ContentDrawPage, Sn as findRunConstructFault, St as ContentSheetColumn, T as ContentEmbeddedObjectBlock, Tn as isContentConstructStart, Tt as ContentSheetConditionalFormatSchema, U as ContentGradientStyle, Ut as ContentSheetRepeatRangeSchema, V as ContentGradientFill, Vt as ContentSheetRangeSchema, W as ContentGradientStyleSchema, Wt as ContentSheetRow, X as ContentImageBlockSchema, Xt as ContentStrokeDash, Y as ContentImageBlock, Yt as ContentStroke, Z as ContentListMembership, Zt as ContentStrokeDashSchema, _ as ContentConstructEndSchema, _n as SheetRuleOperator, _t as ContentSheet, a as ContentBlockSchema, an as ContentTableCellSchema, at as ContentParagraphBordersSchema, b as ContentDocument, bn as contentDocumentSharedFields, bt as ContentSheetCellCommentSchema, c as ContentCellBorders, cn as ContentTableSchema, ct as ContentPathPointSchema, d as ContentCellFillSchema, dn as DecimalString, dt as ContentRun, en as ContentStrokeStyleSchema, et as ContentPageBreakSchema, f as ContentCellPatternType, fn as DecimalStringSchema, ft as ContentRunSchema, g as ContentConstructEnd, gn as RunConstructFault, gt as ContentShapeSchema, h as ContentCellValueSchema, hn as RunConstructExtentSchema, ht as ContentShape, i as ContentBlock, in as ContentTableCell, it as ContentParagraphBorders, j as ContentFloatAlign, jt as ContentSheetDataValidationSchema, k as ContentFillPattern, kt as ContentSheetConditionalFormatValueSchema, l as ContentCellBordersSchema, ln as ContentVector, lt as ContentPathSegment, m as ContentCellValue, mn as RunConstructExtent, mt as ContentSectionSchema, n as ContentBitmapFill, nn as ContentSubpathSchema, nt as ContentPageFurnitureSchema, o as ContentBorder, on as ContentTableRow, ot as ContentParagraphSchema, p as ContentCellPatternTypeSchema, pn as FusedNode, pt as ContentSection, q as ContentHatchStyle, qt as ContentSlide, r as ContentBitmapFillSchema, rn as ContentTable, rt as ContentParagraph, s as ContentBorderSchema, sn as ContentTableRowSchema, st as ContentPathPoint, t as ConstructMarkerImbalance, tn as ContentSubpath, tt as ContentPageFurniture, u as ContentCellFill, un as ContentVectorSchema, ut as ContentPathSegmentSchema, v as ContentConstructStart, vn as SheetRuleOperatorSchema, vt as ContentSheetCell, w as ContentEmbeddedObject, wn as isContentConstructEnd, wt as ContentSheetConditionalFormat, x as ContentDocumentSchema, xn as findConstructMarkerImbalance, xt as ContentSheetCellSchema, y as ContentConstructStartSchema, yn as clampHeadingLevel, yt as ContentSheetCellComment, z as ContentFormula, zt as ContentSheetPrintSettingsSchema } from "./content-BCOxY0Eb.js";
8
+ import { a as LayoutFontSchema, i as LayoutFont, n as AlignmentSchema, o as TextDirection, r as DEFAULT_LAYOUT_FONT, s as TextDirectionSchema, t as Alignment } from "./style-BGMcYrD2.js";
9
+ import { $ as ContentImageBlock, $t as ContentSlide, A as ContentEmbeddedObjectSchema, An as findConstructMarkerImbalance, At as ContentSheetConditionalFormat, B as ContentFloatPositionSchema, Bt as ContentSheetImage, C as ContentDocumentSchema, Cn as RunConstructExtent, Ct as ContentSheet, D as ContentEmbeddedObjectBlock, Dn as SheetRuleOperatorSchema, Dt as ContentSheetCellSchema, E as ContentEmbeddedObject, En as SheetRuleOperator, Et as ContentSheetCellCommentSchema, F as ContentFloatAxis, Fn as isRunConstructExtent, Ft as ContentSheetConditionalFormatValueSchema, G as ContentGradientFill, Gt as ContentSheetPrintSettingsSchema, H as ContentFontSchema, Ht as ContentSheetPrintRange, I as ContentFloatAxisSchema, In as resolveCellFillColor, It as ContentSheetDataValidation, J as ContentGradientStyleSchema, Jt as ContentSheetRepeatRange, K as ContentGradientFillSchema, Kt as ContentSheetRange, L as ContentFloatOrigin, Ln as unrecognizedFillKind, Lt as ContentSheetDataValidationSchema, M as ContentFillPatternSchema, Mn as isContentBlock, Mt as ContentSheetConditionalFormatStyle, N as ContentFloatAlign, Nn as isContentConstructEnd, Nt as ContentSheetConditionalFormatStyleSchema, O as ContentEmbeddedObjectBlockSchema, On as clampHeadingLevel, Ot as ContentSheetColumn, P as ContentFloatAlignSchema, Pn as isContentConstructStart, Pt as ContentSheetConditionalFormatValue, Q as ContentHatchStyleSchema, Qt as ContentSheetSchema, R as ContentFloatOriginSchema, Rt as ContentSheetDataValidationType, S as ContentDocument, Sn as RUN_FONT_PROPERTY_SHAPE, St as ContentShapeSchema, T as ContentDrawPageSchema, Tn as RunConstructFault, Tt as ContentSheetCellComment, U as ContentFormula, Ut as ContentSheetPrintRangeSchema, V as ContentFont, Vt as ContentSheetImageSchema, W as ContentFormulaSchema, Wt as ContentSheetPrintSettings, X as ContentHatchFillSchema, Xt as ContentSheetRow, Y as ContentHatchFill, Yt as ContentSheetRepeatRangeSchema, Z as ContentHatchStyle, Zt as ContentSheetRowSchema, _ as ContentConstructEndSchema, _n as DecimalString, _t as ContentRun, a as ContentBlockSchema, an as ContentStrokeStyle, at as ContentPageBreak, b as ContentDefinedName, bn as IMAGE_FORMATS, bt as ContentSectionSchema, c as ContentCellBorders, cn as ContentSubpathSchema, ct as ContentPageFurnitureSchema, d as ContentCellFillSchema, dn as ContentTableCellSchema, dt as ContentParagraphBordersSchema, en as ContentSlideSchema, et as ContentImageBlockSchema, f as ContentCellPatternType, fn as ContentTableRow, ft as ContentParagraphSchema, g as ContentConstructEnd, gn as ContentVectorSchema, gt as ContentPathSegmentSchema, h as ContentCellValueSchema, hn as ContentVector, ht as ContentPathSegment, i as ContentBlock, in as ContentStrokeSchema, it as ContentListMembershipSchema, j as ContentFillPattern, jn as findRunConstructFault, jt as ContentSheetConditionalFormatSchema, k as ContentEmbeddedObjectKind, kn as contentDocumentSharedFields, kt as ContentSheetColumnSchema, l as ContentCellBordersSchema, ln as ContentTable, lt as ContentParagraph, m as ContentCellValue, mn as ContentTableSchema, mt as ContentPathPointSchema, n as ContentBitmapFill, nn as ContentStrokeDash, nt as ContentImageOriginalSchema, o as ContentBorder, on as ContentStrokeStyleSchema, ot as ContentPageBreakSchema, p as ContentCellPatternTypeSchema, pn as ContentTableRowSchema, pt as ContentPathPoint, q as ContentGradientStyle, qt as ContentSheetRangeSchema, r as ContentBitmapFillSchema, rn as ContentStrokeDashSchema, rt as ContentListMembership, s as ContentBorderSchema, sn as ContentSubpath, st as ContentPageFurniture, t as ConstructMarkerImbalance, tn as ContentStroke, tt as ContentImageOriginal, u as ContentCellFill, un as ContentTableCell, ut as ContentParagraphBorders, v as ContentConstructStart, vn as DecimalStringSchema, vt as ContentRunSchema, w as ContentDrawPage, wn as RunConstructExtentSchema, wt as ContentSheetCell, x as ContentDefinedNameSchema, xn as ImageFormat, xt as ContentShape, y as ContentConstructStartSchema, yn as FusedNode, yt as ContentSection, z as ContentFloatPosition, zt as ContentSheetDataValidationTypeSchema } from "./content-BIM8bWWt.js";
10
10
  import { ContentCodec } from "./codec.js";
11
- import { C as ProvenanceChange, E as ProvenanceDescriptorSchema, S as LinkTargetSchema, T as ProvenanceDescriptor, _ as FieldDescriptor, a as ConstructDescriptor, b as LinkDescriptorSchema, c as ContentControlDescriptorSchema, d as ContentControlType, f as ContentControlTypeSchema, g as DivisionSourceSchema, h as DivisionSource, i as AnchorTypeSchema, l as ContentControlLock, m as DivisionDescriptorSchema, n as AnchorDescriptorSchema, o as ConstructDescriptorSchema, p as DivisionDescriptor, r as AnchorType, s as ContentControlDescriptor, t as AnchorDescriptor, u as ContentControlLockSchema, v as FieldDescriptorSchema, w as ProvenanceChangeSchema, x as LinkTarget, y as LinkDescriptor } from "./construct-GVdTKrE7.js";
11
+ import { C as ProvenanceChange, E as ProvenanceDescriptorSchema, S as LinkTargetSchema, T as ProvenanceDescriptor, _ as FieldDescriptor, a as ConstructDescriptor, b as LinkDescriptorSchema, c as ContentControlDescriptorSchema, d as ContentControlType, f as ContentControlTypeSchema, g as DivisionSourceSchema, h as DivisionSource, i as AnchorTypeSchema, l as ContentControlLock, m as DivisionDescriptorSchema, n as AnchorDescriptorSchema, o as ConstructDescriptorSchema, p as DivisionDescriptor, r as AnchorType, s as ContentControlDescriptor, t as AnchorDescriptor, u as ContentControlLockSchema, v as FieldDescriptorSchema, w as ProvenanceChangeSchema, x as LinkTarget, y as LinkDescriptor } from "./construct-C9cYkjnd.js";
12
12
  import { CONTENT_DEFS, CONTENT_DOCUMENT_URI, EMBEDDED_OBJECT_KINDS, MAX_SAFE_INTEGER } from "./content-json-schema-defs.js";
13
- import { $ as isSheetGroupNode, A as SheetDescriptor, B as TreeGroup, C as ShapeConstructGroupNode, D as ShapeGroupNode, E as ShapeDescriptorSchema, F as SlideDescriptorSchema, G as TreeNodeSchema, H as TreeLeaf, I as SlideGroupNode, J as isListGroupNode, K as isDrawPageGroupNode, L as SlideGroupSchema, M as SheetGroupNode, N as SheetGroupSchema, O as ShapeGroupSchema, P as SlideDescriptor, Q as isShapeGroupNode, R as TreeBlockLeaf, S as ShapeChild, T as ShapeDescriptor, U as TreeLeafSchema, V as TreeGroupSchema, W as TreeNode, X as isSectionGroupNode, Y as isSectionConstructGroupNode, Z as isShapeConstructGroupNode, _ as SectionConstructGroupSchema, a as DrawPageGroupSchema, b as SectionGroupNode, c as HeadingParagraph, d as ListGroupNode, et as isSlideGroupNode, f as ListGroupSchema, g as SectionConstructGroupNode, h as SectionChild, i as DrawPageGroupNode, it as isTreeNode, j as SheetDescriptorSchema, k as SheetChild, l as HeadingParagraphSchema, m as ListParagraphSchema, n as DrawPageDescriptor, nt as isTreeGroup, o as HeadingGroupNode, p as ListParagraph, q as isHeadingGroupNode, r as DrawPageDescriptorSchema, rt as isTreeLeaf, s as HeadingGroupSchema, t as DrawPageChild, tt as isTreeBlockLeaf, u as ListChild, v as SectionDescriptor, w as ShapeConstructGroupSchema, x as SectionGroupSchema, y as SectionDescriptorSchema, z as TreeBlockLeafSchema } from "./package-node-C4mh1hLY.js";
13
+ import { $ as isSheetGroupNode, A as SheetDescriptor, B as TreeGroup, C as ShapeConstructGroupNode, D as ShapeGroupNode, E as ShapeDescriptorSchema, F as SlideDescriptorSchema, G as TreeNodeSchema, H as TreeLeaf, I as SlideGroupNode, J as isListGroupNode, K as isDrawPageGroupNode, L as SlideGroupSchema, M as SheetGroupNode, N as SheetGroupSchema, O as ShapeGroupSchema, P as SlideDescriptor, Q as isShapeGroupNode, R as TreeBlockLeaf, S as ShapeChild, T as ShapeDescriptor, U as TreeLeafSchema, V as TreeGroupSchema, W as TreeNode, X as isSectionGroupNode, Y as isSectionConstructGroupNode, Z as isShapeConstructGroupNode, _ as SectionConstructGroupSchema, a as DrawPageGroupSchema, b as SectionGroupNode, c as HeadingParagraph, d as ListGroupNode, et as isSlideGroupNode, f as ListGroupSchema, g as SectionConstructGroupNode, h as SectionChild, i as DrawPageGroupNode, it as isTreeNode, j as SheetDescriptorSchema, k as SheetChild, l as HeadingParagraphSchema, m as ListParagraphSchema, n as DrawPageDescriptor, nt as isTreeGroup, o as HeadingGroupNode, p as ListParagraph, q as isHeadingGroupNode, r as DrawPageDescriptorSchema, rt as isTreeLeaf, s as HeadingGroupSchema, t as DrawPageChild, tt as isTreeBlockLeaf, u as ListChild, v as SectionDescriptor, w as ShapeConstructGroupSchema, x as SectionGroupSchema, y as SectionDescriptorSchema, z as TreeBlockLeafSchema } from "./package-node-B8LBrCCD.js";
14
14
  import { ConstructMarkerImbalanceError, TreeChildren, decompose } from "./decompose.js";
15
15
  import { DefinitionEntry, DefinitionEntrySchema, DefinitionsTable, DefinitionsTableSchema, StyleEntry, StyleEntrySchema, StyleParagraphProperties, StyleParagraphPropertiesSchema, StyleRunProperties, StyleRunPropertiesSchema, StylesTable, StylesTableSchema, applyParagraphStyleProperties, applyRunStyleProperties, overlayStyleEntries, resolveStyleChain } from "./definitions.js";
16
16
  import { DocumentTree, DocumentTreeSchema } from "./package.js";
@@ -21,4 +21,4 @@ import { LayoutMetadata, LayoutMetadataSchema } from "./metadata.js";
21
21
  import { ContentDocumentJson, DocumentJsonResult, DocumentPackageRenamedError, DocumentSchemaKind, DocumentTreeJson, LayoutSchemaDemotedError, SCHEMA_FILE_NAMES, SchemaVersionMismatchError, UnrecognizedDocumentSchemaError, contentDocumentWithSchema, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, schemaUriFor } from "./schema-io.js";
22
22
  import { StyledFragment, StyledRun, TextMeasurer, UnderlineMetrics, WrapOptions, WrappedLine } from "./text-layout.js";
23
23
  import { MathAssembledGlyphs, MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, PositionedFormula } from "./math-layout.js";
24
- export { Alignment, AlignmentSchema, AnchorDescriptor, AnchorDescriptorSchema, AnchorType, AnchorTypeSchema, BORDER_WIDTH_PT, BorderWeight, Box, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CellPosition, CellRange, Color, ColorSchema, ConstructDescriptor, ConstructDescriptorSchema, ConstructMarkerImbalance, ConstructMarkerImbalanceError, ContentBitmapFill, ContentBitmapFillSchema, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellFill, ContentCellFillSchema, ContentCellPatternType, ContentCellPatternTypeSchema, ContentCellValue, ContentCellValueSchema, ContentCodec, ContentConstructEnd, ContentConstructEndSchema, ContentConstructStart, ContentConstructStartSchema, ContentControlDescriptor, ContentControlDescriptorSchema, ContentControlLock, ContentControlLockSchema, ContentControlType, ContentControlTypeSchema, ContentDocument, ContentDocumentJson, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFillPattern, ContentFillPatternSchema, ContentFloatAlign, ContentFloatAlignSchema, ContentFloatAxis, ContentFloatAxisSchema, ContentFloatOrigin, ContentFloatOriginSchema, ContentFloatPosition, ContentFloatPositionSchema, ContentFormula, ContentFormulaSchema, ContentGradientFill, ContentGradientFillSchema, ContentGradientStyle, ContentGradientStyleSchema, ContentHatchFill, ContentHatchFillSchema, ContentHatchStyle, ContentHatchStyleSchema, ContentImageBlock, ContentImageBlockSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentPageFurniture, ContentPageFurnitureSchema, ContentParagraph, ContentParagraphBorders, ContentParagraphBordersSchema, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellComment, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetConditionalFormat, ContentSheetConditionalFormatSchema, ContentSheetConditionalFormatStyle, ContentSheetConditionalFormatStyleSchema, ContentSheetConditionalFormatValue, ContentSheetConditionalFormatValueSchema, ContentSheetDataValidation, ContentSheetDataValidationSchema, ContentSheetDataValidationType, ContentSheetDataValidationTypeSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRange, ContentSheetRangeSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeDash, ContentStrokeDashSchema, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DecimalString, DecimalStringSchema, DefinitionEntry, DefinitionEntrySchema, DefinitionsTable, DefinitionsTableSchema, DimensionVector, DimensionVectorSchema, DivisionDescriptor, DivisionDescriptorSchema, DivisionSource, DivisionSourceSchema, DocumentJsonResult, DocumentPackageRenamedError, DocumentSchemaKind, DocumentTree, DocumentTreeJson, DocumentTreeSchema, DrawPageChild, DrawPageDescriptor, DrawPageDescriptorSchema, DrawPageGroupNode, DrawPageGroupSchema, EMBEDDED_OBJECT_KINDS, EvaluationValue, EvaluationValueSchema, ExactRational, ExactRationalSchema, FieldDescriptor, FieldDescriptorSchema, FontFace, FontRegistryOptions, FontSubstitution, FormulaBindings, FormulaBindingsSchema, FusedNode, HeadingGroupNode, HeadingGroupSchema, HeadingParagraph, HeadingParagraphSchema, Interval, IntervalSchema, LayoutFont, LayoutFontSchema, LayoutFrame, LayoutFrameSchema, LayoutMetadata, LayoutMetadataSchema, LayoutSchemaDemotedError, LinkDescriptor, LinkDescriptorSchema, LinkTarget, LinkTargetSchema, ListChild, ListGroupNode, ListGroupSchema, ListParagraph, ListParagraphSchema, MAX_SAFE_INTEGER, Margins, MarginsSchema, MathApp, MathAppSchema, MathAssembledGlyphs, MathBox, MathColor, MathExpression, MathExpressionSchema, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathMatrix, MathMatrixSchema, MathMlAttribute, MathMlAttributeSchema, MathMlCdata, MathMlCdataSchema, MathMlComment, MathMlCommentSchema, MathMlDeclaration, MathMlDeclarationSchema, MathMlElement, MathMlElementSchema, MathMlNode, MathMlNodeSchema, MathMlPi, MathMlPiSchema, MathMlText, MathMlTextSchema, MathNormalisationContext, MathNormalisationContextSchema, MathNum, MathNumSchema, MathPresentation, MathPresentationSchema, MathProd, MathProdSchema, MathProvenance, MathProvenanceSchema, MathQty, MathQtySchema, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, MathSum, MathSumSchema, MathSym, MathSymSchema, MathSymbolEntry, MathSymbolEntrySchema, MathUncertainty, MathUncertaintySchema, MathUnit, MathUnitSchema, MathUnparsed, MathUnparsedSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSize, PageSizeSchema, Point, PositionedFormula, ProvenanceChange, ProvenanceChangeSchema, ProvenanceDescriptor, ProvenanceDescriptorSchema, ProvidedFont, Quantity, QuantitySchema, RunConstructExtent, RunConstructExtentSchema, RunConstructFault, SCHEMA_FILE_NAMES, SI_BASE_DIMENSIONS, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, SchemaVersionMismatchError, SectionChild, SectionConstructGroupNode, SectionConstructGroupSchema, SectionDescriptor, SectionDescriptorSchema, SectionGroupNode, SectionGroupSchema, ShapeChild, ShapeConstructGroupNode, ShapeConstructGroupSchema, ShapeDescriptor, ShapeDescriptorSchema, ShapeGroupNode, ShapeGroupSchema, SheetChild, SheetDescriptor, SheetDescriptorSchema, SheetGroupNode, SheetGroupSchema, SheetRuleOperator, SheetRuleOperatorSchema, SiBaseDimension, SlideDescriptor, SlideDescriptorSchema, SlideGroupNode, SlideGroupSchema, SourceFormat, SourceFormatSchema, SourceResidue, SourceResidueSchema, StyleEntry, StyleEntrySchema, StyleParagraphProperties, StyleParagraphPropertiesSchema, StyleRunProperties, StyleRunPropertiesSchema, StyledFragment, StyledRun, StylesTable, StylesTableSchema, SymbolTable, SymbolTableSchema, TextDirection, TextDirectionSchema, TextMeasurer, TreeBlockLeaf, TreeBlockLeafSchema, type TreeChildren, TreeGroup, TreeGroupSchema, TreeLeaf, TreeLeafSchema, TreeNode, TreeNodeSchema, UnderlineMetrics, UnrecognizedDocumentSchemaError, WrapOptions, WrappedLine, applyParagraphStyleProperties, applyRunStyleProperties, assembleTree, borderWeightForWidthPt, cellReference, clampHeadingLevel, colorToRgbHex, columnIndexToLetters, columnLettersToIndex, contentDocumentSharedFields, contentDocumentWithSchema, dashedBorderWeightForWidthPt, decompose, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, factorStyles, findConstructMarkerImbalance, findRunConstructFault, flattenTree, isContentBlock, isContentConstructEnd, isContentConstructStart, isDrawPageGroupNode, isHeadingGroupNode, isListGroupNode, isMathExpression, isMathMlNode, isRunConstructExtent, isSectionConstructGroupNode, isSectionGroupNode, isShapeConstructGroupNode, isShapeGroupNode, isSheetGroupNode, isSlideGroupNode, isTreeBlockLeaf, isTreeGroup, isTreeLeaf, isTreeNode, overlayStyleEntries, parseCellReference, parseRangeReference, rangeReference, resolveCellFillColor, resolveStyleChain, rgbHexToColor, schemaUriFor, unrecognizedFillKind };
24
+ export { Alignment, AlignmentSchema, AnchorDescriptor, AnchorDescriptorSchema, AnchorType, AnchorTypeSchema, BORDER_WIDTH_PT, BorderWeight, Box, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, CellPosition, CellRange, Color, ColorSchema, ConstructDescriptor, ConstructDescriptorSchema, ConstructMarkerImbalance, ConstructMarkerImbalanceError, ContentBitmapFill, ContentBitmapFillSchema, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellFill, ContentCellFillSchema, ContentCellPatternType, ContentCellPatternTypeSchema, ContentCellValue, ContentCellValueSchema, ContentCodec, ContentConstructEnd, ContentConstructEndSchema, ContentConstructStart, ContentConstructStartSchema, ContentControlDescriptor, ContentControlDescriptorSchema, ContentControlLock, ContentControlLockSchema, ContentControlType, ContentControlTypeSchema, ContentDefinedName, ContentDefinedNameSchema, ContentDocument, ContentDocumentJson, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFillPattern, ContentFillPatternSchema, ContentFloatAlign, ContentFloatAlignSchema, ContentFloatAxis, ContentFloatAxisSchema, ContentFloatOrigin, ContentFloatOriginSchema, ContentFloatPosition, ContentFloatPositionSchema, ContentFont, ContentFontSchema, ContentFormula, ContentFormulaSchema, ContentGradientFill, ContentGradientFillSchema, ContentGradientStyle, ContentGradientStyleSchema, ContentHatchFill, ContentHatchFillSchema, ContentHatchStyle, ContentHatchStyleSchema, ContentImageBlock, ContentImageBlockSchema, ContentImageOriginal, ContentImageOriginalSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentPageFurniture, ContentPageFurnitureSchema, ContentParagraph, ContentParagraphBorders, ContentParagraphBordersSchema, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellComment, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetConditionalFormat, ContentSheetConditionalFormatSchema, ContentSheetConditionalFormatStyle, ContentSheetConditionalFormatStyleSchema, ContentSheetConditionalFormatValue, ContentSheetConditionalFormatValueSchema, ContentSheetDataValidation, ContentSheetDataValidationSchema, ContentSheetDataValidationType, ContentSheetDataValidationTypeSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRange, ContentSheetRangeSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeDash, ContentStrokeDashSchema, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DecimalString, DecimalStringSchema, DefinitionEntry, DefinitionEntrySchema, DefinitionsTable, DefinitionsTableSchema, DimensionVector, DimensionVectorSchema, DivisionDescriptor, DivisionDescriptorSchema, DivisionSource, DivisionSourceSchema, DocumentJsonResult, DocumentPackageRenamedError, DocumentSchemaKind, DocumentTree, DocumentTreeJson, DocumentTreeSchema, DrawPageChild, DrawPageDescriptor, DrawPageDescriptorSchema, DrawPageGroupNode, DrawPageGroupSchema, EMBEDDED_OBJECT_KINDS, EvaluationValue, EvaluationValueSchema, ExactRational, ExactRationalSchema, FieldDescriptor, FieldDescriptorSchema, FontFace, FontRegistryOptions, FontSubstitution, FormulaBindings, FormulaBindingsSchema, FusedNode, HeadingGroupNode, HeadingGroupSchema, HeadingParagraph, HeadingParagraphSchema, IMAGE_FORMATS, ImageFormat, Interval, IntervalSchema, LayoutFont, LayoutFontSchema, LayoutFrame, LayoutFrameSchema, LayoutMetadata, LayoutMetadataSchema, LayoutSchemaDemotedError, LinkDescriptor, LinkDescriptorSchema, LinkTarget, LinkTargetSchema, ListChild, ListGroupNode, ListGroupSchema, ListParagraph, ListParagraphSchema, MAX_SAFE_INTEGER, Margins, MarginsSchema, MathApp, MathAppSchema, MathAssembledGlyphs, MathBox, MathColor, MathExpression, MathExpressionSchema, MathFontMetrics, MathGlyphMetrics, MathGlyphPlacement, MathGlyphRun, MathLayoutItem, MathMatrix, MathMatrixSchema, MathMlAttribute, MathMlAttributeSchema, MathMlCdata, MathMlCdataSchema, MathMlComment, MathMlCommentSchema, MathMlDeclaration, MathMlDeclarationSchema, MathMlElement, MathMlElementSchema, MathMlNode, MathMlNodeSchema, MathMlPi, MathMlPiSchema, MathMlText, MathMlTextSchema, MathNormalisationContext, MathNormalisationContextSchema, MathNum, MathNumSchema, MathPresentation, MathPresentationSchema, MathProd, MathProdSchema, MathProvenance, MathProvenanceSchema, MathQty, MathQtySchema, MathRule, MathStretchAxis, MathStretchGlyph, MathStretchResult, MathStroke, MathSum, MathSumSchema, MathSym, MathSymSchema, MathSymbolEntry, MathSymbolEntrySchema, MathUncertainty, MathUncertaintySchema, MathUnit, MathUnitSchema, MathUnparsed, MathUnparsedSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSize, PageSizeSchema, Point, PositionedFormula, ProvenanceChange, ProvenanceChangeSchema, ProvenanceDescriptor, ProvenanceDescriptorSchema, ProvidedFont, Quantity, QuantitySchema, RUN_FONT_PROPERTY_SHAPE, RunConstructExtent, RunConstructExtentSchema, RunConstructFault, SCHEMA_FILE_NAMES, SI_BASE_DIMENSIONS, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, SchemaVersionMismatchError, SectionChild, SectionConstructGroupNode, SectionConstructGroupSchema, SectionDescriptor, SectionDescriptorSchema, SectionGroupNode, SectionGroupSchema, ShapeChild, ShapeConstructGroupNode, ShapeConstructGroupSchema, ShapeDescriptor, ShapeDescriptorSchema, ShapeGroupNode, ShapeGroupSchema, SheetChild, SheetDescriptor, SheetDescriptorSchema, SheetGroupNode, SheetGroupSchema, SheetRuleOperator, SheetRuleOperatorSchema, SiBaseDimension, SlideDescriptor, SlideDescriptorSchema, SlideGroupNode, SlideGroupSchema, SourceFormat, SourceFormatSchema, SourceResidue, SourceResidueSchema, StyleEntry, StyleEntrySchema, StyleParagraphProperties, StyleParagraphPropertiesSchema, StyleRunProperties, StyleRunPropertiesSchema, StyledFragment, StyledRun, StylesTable, StylesTableSchema, SymbolTable, SymbolTableSchema, TextDirection, TextDirectionSchema, TextMeasurer, TreeBlockLeaf, TreeBlockLeafSchema, type TreeChildren, TreeGroup, TreeGroupSchema, TreeLeaf, TreeLeafSchema, TreeNode, TreeNodeSchema, UnderlineMetrics, UnrecognizedDocumentSchemaError, WrapOptions, WrappedLine, applyParagraphStyleProperties, applyRunStyleProperties, assembleTree, borderWeightForWidthPt, cellReference, clampHeadingLevel, colorToRgbHex, columnIndexToLetters, columnLettersToIndex, contentDocumentSharedFields, contentDocumentWithSchema, dashedBorderWeightForWidthPt, decompose, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, factorStyles, findConstructMarkerImbalance, findRunConstructFault, flattenTree, isContentBlock, isContentConstructEnd, isContentConstructStart, isDrawPageGroupNode, isHeadingGroupNode, isListGroupNode, isMathExpression, isMathMlNode, isRunConstructExtent, isSectionConstructGroupNode, isSectionGroupNode, isShapeConstructGroupNode, isShapeGroupNode, isSheetGroupNode, isSlideGroupNode, isTreeBlockLeaf, isTreeGroup, isTreeLeaf, isTreeNode, overlayStyleEntries, parseCellReference, parseRangeReference, rangeReference, resolveCellFillColor, resolveStyleChain, rgbHexToColor, schemaUriFor, unrecognizedFillKind };
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ import { MathMlAttributeSchema, MathMlCdataSchema, MathMlCommentSchema, MathMlDe
9
9
  import { BoxSchema, LayoutFrameSchema, MarginsSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSizeSchema, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN } from "./geometry.js";
10
10
  import { AlignmentSchema, DEFAULT_LAYOUT_FONT, LayoutFontSchema, TextDirectionSchema } from "./style.js";
11
11
  import { LayoutMetadataSchema } from "./metadata.js";
12
- import { ContentBitmapFillSchema, ContentBlockSchema, ContentBorderSchema, ContentCellBordersSchema, ContentCellFillSchema, ContentCellPatternTypeSchema, ContentCellValueSchema, ContentConstructEndSchema, ContentConstructStartSchema, ContentDocumentSchema, ContentDrawPageSchema, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectSchema, ContentFillPatternSchema, ContentFloatAlignSchema, ContentFloatAxisSchema, ContentFloatOriginSchema, ContentFloatPositionSchema, ContentFormulaSchema, ContentGradientFillSchema, ContentGradientStyleSchema, ContentHatchFillSchema, ContentHatchStyleSchema, ContentImageBlockSchema, ContentListMembershipSchema, ContentPageBreakSchema, ContentPageFurnitureSchema, ContentParagraphBordersSchema, ContentParagraphSchema, ContentPathPointSchema, ContentPathSegmentSchema, ContentRunSchema, ContentSectionSchema, ContentShapeSchema, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumnSchema, ContentSheetConditionalFormatSchema, ContentSheetConditionalFormatStyleSchema, ContentSheetConditionalFormatValueSchema, ContentSheetDataValidationSchema, ContentSheetDataValidationTypeSchema, ContentSheetImageSchema, ContentSheetPrintRangeSchema, ContentSheetPrintSettingsSchema, ContentSheetRangeSchema, ContentSheetRepeatRangeSchema, ContentSheetRowSchema, ContentSheetSchema, ContentSlideSchema, ContentStrokeDashSchema, ContentStrokeSchema, ContentStrokeStyleSchema, ContentSubpathSchema, ContentTableCellSchema, ContentTableRowSchema, ContentTableSchema, ContentVectorSchema, DecimalStringSchema, RunConstructExtentSchema, SheetRuleOperatorSchema, clampHeadingLevel, contentDocumentSharedFields, findConstructMarkerImbalance, findRunConstructFault, isContentBlock, isContentConstructEnd, isContentConstructStart, isRunConstructExtent, resolveCellFillColor, unrecognizedFillKind } from "./content.js";
12
+ import { ContentBitmapFillSchema, ContentBlockSchema, ContentBorderSchema, ContentCellBordersSchema, ContentCellFillSchema, ContentCellPatternTypeSchema, ContentCellValueSchema, ContentConstructEndSchema, ContentConstructStartSchema, ContentDefinedNameSchema, ContentDocumentSchema, ContentDrawPageSchema, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectSchema, ContentFillPatternSchema, ContentFloatAlignSchema, ContentFloatAxisSchema, ContentFloatOriginSchema, ContentFloatPositionSchema, ContentFontSchema, ContentFormulaSchema, ContentGradientFillSchema, ContentGradientStyleSchema, ContentHatchFillSchema, ContentHatchStyleSchema, ContentImageBlockSchema, ContentImageOriginalSchema, ContentListMembershipSchema, ContentPageBreakSchema, ContentPageFurnitureSchema, ContentParagraphBordersSchema, ContentParagraphSchema, ContentPathPointSchema, ContentPathSegmentSchema, ContentRunSchema, ContentSectionSchema, ContentShapeSchema, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumnSchema, ContentSheetConditionalFormatSchema, ContentSheetConditionalFormatStyleSchema, ContentSheetConditionalFormatValueSchema, ContentSheetDataValidationSchema, ContentSheetDataValidationTypeSchema, ContentSheetImageSchema, ContentSheetPrintRangeSchema, ContentSheetPrintSettingsSchema, ContentSheetRangeSchema, ContentSheetRepeatRangeSchema, ContentSheetRowSchema, ContentSheetSchema, ContentSlideSchema, ContentStrokeDashSchema, ContentStrokeSchema, ContentStrokeStyleSchema, ContentSubpathSchema, ContentTableCellSchema, ContentTableRowSchema, ContentTableSchema, ContentVectorSchema, DecimalStringSchema, IMAGE_FORMATS, RUN_FONT_PROPERTY_SHAPE, RunConstructExtentSchema, SheetRuleOperatorSchema, clampHeadingLevel, contentDocumentSharedFields, findConstructMarkerImbalance, findRunConstructFault, isContentBlock, isContentConstructEnd, isContentConstructStart, isRunConstructExtent, resolveCellFillColor, unrecognizedFillKind } from "./content.js";
13
13
  import { DefinitionEntrySchema, DefinitionsTableSchema, StyleEntrySchema, StyleParagraphPropertiesSchema, StyleRunPropertiesSchema, StylesTableSchema, applyParagraphStyleProperties, applyRunStyleProperties, overlayStyleEntries, resolveStyleChain } from "./definitions.js";
14
14
  import { DrawPageDescriptorSchema, DrawPageGroupSchema, HeadingGroupSchema, HeadingParagraphSchema, ListGroupSchema, ListParagraphSchema, SectionConstructGroupSchema, SectionDescriptorSchema, SectionGroupSchema, ShapeConstructGroupSchema, ShapeDescriptorSchema, ShapeGroupSchema, SheetDescriptorSchema, SheetGroupSchema, SlideDescriptorSchema, SlideGroupSchema, TreeBlockLeafSchema, TreeGroupSchema, TreeLeafSchema, TreeNodeSchema, isDrawPageGroupNode, isHeadingGroupNode, isListGroupNode, isSectionConstructGroupNode, isSectionGroupNode, isShapeConstructGroupNode, isShapeGroupNode, isSheetGroupNode, isSlideGroupNode, isTreeBlockLeaf, isTreeGroup, isTreeLeaf, isTreeNode } from "./package-node.js";
15
15
  import { DocumentTreeSchema } from "./package.js";
@@ -21,4 +21,4 @@ import { assembleTree, factorStyles } from "./factor-styles.js";
21
21
  import "./font-port.js";
22
22
  import "./text-layout.js";
23
23
  import "./math-layout.js";
24
- export { AlignmentSchema, AnchorDescriptorSchema, AnchorTypeSchema, BORDER_WIDTH_PT, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, ColorSchema, ConstructDescriptorSchema, ConstructMarkerImbalanceError, ContentBitmapFillSchema, ContentBlockSchema, ContentBorderSchema, ContentCellBordersSchema, ContentCellFillSchema, ContentCellPatternTypeSchema, ContentCellValueSchema, ContentConstructEndSchema, ContentConstructStartSchema, ContentControlDescriptorSchema, ContentControlLockSchema, ContentControlTypeSchema, ContentDocumentSchema, ContentDrawPageSchema, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectSchema, ContentFillPatternSchema, ContentFloatAlignSchema, ContentFloatAxisSchema, ContentFloatOriginSchema, ContentFloatPositionSchema, ContentFormulaSchema, ContentGradientFillSchema, ContentGradientStyleSchema, ContentHatchFillSchema, ContentHatchStyleSchema, ContentImageBlockSchema, ContentListMembershipSchema, ContentPageBreakSchema, ContentPageFurnitureSchema, ContentParagraphBordersSchema, ContentParagraphSchema, ContentPathPointSchema, ContentPathSegmentSchema, ContentRunSchema, ContentSectionSchema, ContentShapeSchema, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumnSchema, ContentSheetConditionalFormatSchema, ContentSheetConditionalFormatStyleSchema, ContentSheetConditionalFormatValueSchema, ContentSheetDataValidationSchema, ContentSheetDataValidationTypeSchema, ContentSheetImageSchema, ContentSheetPrintRangeSchema, ContentSheetPrintSettingsSchema, ContentSheetRangeSchema, ContentSheetRepeatRangeSchema, ContentSheetRowSchema, ContentSheetSchema, ContentSlideSchema, ContentStrokeDashSchema, ContentStrokeSchema, ContentStrokeStyleSchema, ContentSubpathSchema, ContentTableCellSchema, ContentTableRowSchema, ContentTableSchema, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DecimalStringSchema, DefinitionEntrySchema, DefinitionsTableSchema, DimensionVectorSchema, DivisionDescriptorSchema, DivisionSourceSchema, DocumentPackageRenamedError, DocumentTreeSchema, DrawPageDescriptorSchema, DrawPageGroupSchema, EMBEDDED_OBJECT_KINDS, EvaluationValueSchema, ExactRationalSchema, FieldDescriptorSchema, FormulaBindingsSchema, HeadingGroupSchema, HeadingParagraphSchema, IntervalSchema, LayoutFontSchema, LayoutFrameSchema, LayoutMetadataSchema, LayoutSchemaDemotedError, LinkDescriptorSchema, LinkTargetSchema, ListGroupSchema, ListParagraphSchema, MAX_SAFE_INTEGER, MarginsSchema, MathAppSchema, MathExpressionSchema, MathMatrixSchema, MathMlAttributeSchema, MathMlCdataSchema, MathMlCommentSchema, MathMlDeclarationSchema, MathMlElementSchema, MathMlNodeSchema, MathMlPiSchema, MathMlTextSchema, MathNormalisationContextSchema, MathNumSchema, MathPresentationSchema, MathProdSchema, MathProvenanceSchema, MathQtySchema, MathSumSchema, MathSymSchema, MathSymbolEntrySchema, MathUncertaintySchema, MathUnitSchema, MathUnparsedSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSizeSchema, ProvenanceChangeSchema, ProvenanceDescriptorSchema, QuantitySchema, RunConstructExtentSchema, SCHEMA_FILE_NAMES, SI_BASE_DIMENSIONS, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, SchemaVersionMismatchError, SectionConstructGroupSchema, SectionDescriptorSchema, SectionGroupSchema, ShapeConstructGroupSchema, ShapeDescriptorSchema, ShapeGroupSchema, SheetDescriptorSchema, SheetGroupSchema, SheetRuleOperatorSchema, SlideDescriptorSchema, SlideGroupSchema, SourceFormatSchema, SourceResidueSchema, StyleEntrySchema, StyleParagraphPropertiesSchema, StyleRunPropertiesSchema, StylesTableSchema, SymbolTableSchema, TextDirectionSchema, TreeBlockLeafSchema, TreeGroupSchema, TreeLeafSchema, TreeNodeSchema, UnrecognizedDocumentSchemaError, applyParagraphStyleProperties, applyRunStyleProperties, assembleTree, borderWeightForWidthPt, cellReference, clampHeadingLevel, colorToRgbHex, columnIndexToLetters, columnLettersToIndex, contentDocumentSharedFields, contentDocumentWithSchema, dashedBorderWeightForWidthPt, decompose, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, factorStyles, findConstructMarkerImbalance, findRunConstructFault, flattenTree, isContentBlock, isContentConstructEnd, isContentConstructStart, isDrawPageGroupNode, isHeadingGroupNode, isListGroupNode, isMathExpression, isMathMlNode, isRunConstructExtent, isSectionConstructGroupNode, isSectionGroupNode, isShapeConstructGroupNode, isShapeGroupNode, isSheetGroupNode, isSlideGroupNode, isTreeBlockLeaf, isTreeGroup, isTreeLeaf, isTreeNode, overlayStyleEntries, parseCellReference, parseRangeReference, rangeReference, resolveCellFillColor, resolveStyleChain, rgbHexToColor, schemaUriFor, unrecognizedFillKind };
24
+ export { AlignmentSchema, AnchorDescriptorSchema, AnchorTypeSchema, BORDER_WIDTH_PT, BoxSchema, COLOR_BLACK, CONTENT_DEFS, CONTENT_DOCUMENT_URI, ColorSchema, ConstructDescriptorSchema, ConstructMarkerImbalanceError, ContentBitmapFillSchema, ContentBlockSchema, ContentBorderSchema, ContentCellBordersSchema, ContentCellFillSchema, ContentCellPatternTypeSchema, ContentCellValueSchema, ContentConstructEndSchema, ContentConstructStartSchema, ContentControlDescriptorSchema, ContentControlLockSchema, ContentControlTypeSchema, ContentDefinedNameSchema, ContentDocumentSchema, ContentDrawPageSchema, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectSchema, ContentFillPatternSchema, ContentFloatAlignSchema, ContentFloatAxisSchema, ContentFloatOriginSchema, ContentFloatPositionSchema, ContentFontSchema, ContentFormulaSchema, ContentGradientFillSchema, ContentGradientStyleSchema, ContentHatchFillSchema, ContentHatchStyleSchema, ContentImageBlockSchema, ContentImageOriginalSchema, ContentListMembershipSchema, ContentPageBreakSchema, ContentPageFurnitureSchema, ContentParagraphBordersSchema, ContentParagraphSchema, ContentPathPointSchema, ContentPathSegmentSchema, ContentRunSchema, ContentSectionSchema, ContentShapeSchema, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumnSchema, ContentSheetConditionalFormatSchema, ContentSheetConditionalFormatStyleSchema, ContentSheetConditionalFormatValueSchema, ContentSheetDataValidationSchema, ContentSheetDataValidationTypeSchema, ContentSheetImageSchema, ContentSheetPrintRangeSchema, ContentSheetPrintSettingsSchema, ContentSheetRangeSchema, ContentSheetRepeatRangeSchema, ContentSheetRowSchema, ContentSheetSchema, ContentSlideSchema, ContentStrokeDashSchema, ContentStrokeSchema, ContentStrokeStyleSchema, ContentSubpathSchema, ContentTableCellSchema, ContentTableRowSchema, ContentTableSchema, ContentVectorSchema, DEFAULT_LAYOUT_FONT, DecimalStringSchema, DefinitionEntrySchema, DefinitionsTableSchema, DimensionVectorSchema, DivisionDescriptorSchema, DivisionSourceSchema, DocumentPackageRenamedError, DocumentTreeSchema, DrawPageDescriptorSchema, DrawPageGroupSchema, EMBEDDED_OBJECT_KINDS, EvaluationValueSchema, ExactRationalSchema, FieldDescriptorSchema, FormulaBindingsSchema, HeadingGroupSchema, HeadingParagraphSchema, IMAGE_FORMATS, IntervalSchema, LayoutFontSchema, LayoutFrameSchema, LayoutMetadataSchema, LayoutSchemaDemotedError, LinkDescriptorSchema, LinkTargetSchema, ListGroupSchema, ListParagraphSchema, MAX_SAFE_INTEGER, MarginsSchema, MathAppSchema, MathExpressionSchema, MathMatrixSchema, MathMlAttributeSchema, MathMlCdataSchema, MathMlCommentSchema, MathMlDeclarationSchema, MathMlElementSchema, MathMlNodeSchema, MathMlPiSchema, MathMlTextSchema, MathNormalisationContextSchema, MathNumSchema, MathPresentationSchema, MathProdSchema, MathProvenanceSchema, MathQtySchema, MathSumSchema, MathSymSchema, MathSymbolEntrySchema, MathUncertaintySchema, MathUnitSchema, MathUnparsedSchema, PAGE_SIZE_A4, PAGE_SIZE_LETTER, PageSizeSchema, ProvenanceChangeSchema, ProvenanceDescriptorSchema, QuantitySchema, RUN_FONT_PROPERTY_SHAPE, RunConstructExtentSchema, SCHEMA_FILE_NAMES, SI_BASE_DIMENSIONS, SLIDE_SIZE_STANDARD, SLIDE_SIZE_WIDESCREEN, SchemaVersionMismatchError, SectionConstructGroupSchema, SectionDescriptorSchema, SectionGroupSchema, ShapeConstructGroupSchema, ShapeDescriptorSchema, ShapeGroupSchema, SheetDescriptorSchema, SheetGroupSchema, SheetRuleOperatorSchema, SlideDescriptorSchema, SlideGroupSchema, SourceFormatSchema, SourceResidueSchema, StyleEntrySchema, StyleParagraphPropertiesSchema, StyleRunPropertiesSchema, StylesTableSchema, SymbolTableSchema, TextDirectionSchema, TreeBlockLeafSchema, TreeGroupSchema, TreeLeafSchema, TreeNodeSchema, UnrecognizedDocumentSchemaError, applyParagraphStyleProperties, applyRunStyleProperties, assembleTree, borderWeightForWidthPt, cellReference, clampHeadingLevel, colorToRgbHex, columnIndexToLetters, columnLettersToIndex, contentDocumentSharedFields, contentDocumentWithSchema, dashedBorderWeightForWidthPt, decompose, documentFromJson, documentSchemaKindOf, documentTreeWithSchema, factorStyles, findConstructMarkerImbalance, findRunConstructFault, flattenTree, isContentBlock, isContentConstructEnd, isContentConstructStart, isDrawPageGroupNode, isHeadingGroupNode, isListGroupNode, isMathExpression, isMathMlNode, isRunConstructExtent, isSectionConstructGroupNode, isSectionGroupNode, isShapeConstructGroupNode, isShapeGroupNode, isSheetGroupNode, isSlideGroupNode, isTreeBlockLeaf, isTreeGroup, isTreeLeaf, isTreeNode, overlayStyleEntries, parseCellReference, parseRangeReference, rangeReference, resolveCellFillColor, resolveStyleChain, rgbHexToColor, schemaUriFor, unrecognizedFillKind };
@@ -1,5 +1,5 @@
1
- import { Pt as ContentSheetImage, g as ContentConstructEnd, i as ContentBlock, ln as ContentVector, v as ContentConstructStart, w as ContentEmbeddedObject, z as ContentFormula } from "./content-BCOxY0Eb.js";
2
- import { a as ConstructDescriptor } from "./construct-GVdTKrE7.js";
1
+ import { Bt as ContentSheetImage, E as ContentEmbeddedObject, U as ContentFormula, g as ContentConstructEnd, hn as ContentVector, i as ContentBlock, v as ContentConstructStart } from "./content-BIM8bWWt.js";
2
+ import { a as ConstructDescriptor } from "./construct-C9cYkjnd.js";
3
3
  import { z } from "zod";
4
4
  //#region src/package-node.d.ts
5
5
  declare const SectionDescriptorSchema: z.ZodObject<{
@@ -184,8 +184,7 @@ declare const SheetDescriptorSchema: z.ZodObject<{
184
184
  formula: z.ZodOptional<z.ZodString>;
185
185
  displayText: z.ZodString;
186
186
  numberFormatCode: z.ZodOptional<z.ZodString>;
187
- runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
188
- text: z.ZodString;
187
+ font: z.ZodOptional<z.ZodObject<{
189
188
  bold: z.ZodOptional<z.ZodBoolean>;
190
189
  italic: z.ZodOptional<z.ZodBoolean>;
191
190
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -197,6 +196,8 @@ declare const SheetDescriptorSchema: z.ZodObject<{
197
196
  g: z.ZodNumber;
198
197
  b: z.ZodNumber;
199
198
  }, z.core.$strip>>;
199
+ }, z.core.$strip>>;
200
+ runs: z.ZodOptional<z.ZodArray<z.ZodObject<{
200
201
  hyperlink: z.ZodOptional<z.ZodString>;
201
202
  verticalAlign: z.ZodOptional<z.ZodEnum<{
202
203
  superscript: "superscript";
@@ -234,6 +235,18 @@ declare const SheetDescriptorSchema: z.ZodObject<{
234
235
  widthPt: z.ZodNumber;
235
236
  heightPt: z.ZodNumber;
236
237
  }, z.core.$strip>>>;
238
+ bold: z.ZodOptional<z.ZodBoolean>;
239
+ italic: z.ZodOptional<z.ZodBoolean>;
240
+ underline: z.ZodOptional<z.ZodBoolean>;
241
+ strike: z.ZodOptional<z.ZodBoolean>;
242
+ fontFamily: z.ZodOptional<z.ZodString>;
243
+ sizePt: z.ZodOptional<z.ZodNumber>;
244
+ color: z.ZodOptional<z.ZodObject<{
245
+ r: z.ZodNumber;
246
+ g: z.ZodNumber;
247
+ b: z.ZodNumber;
248
+ }, z.core.$strip>>;
249
+ text: z.ZodString;
237
250
  }, z.core.$strip>>>;
238
251
  colSpan: z.ZodOptional<z.ZodNumber>;
239
252
  rowSpan: z.ZodOptional<z.ZodNumber>;
@@ -399,8 +412,8 @@ declare const SheetDescriptorSchema: z.ZodObject<{
399
412
  }, z.core.$strip>>;
400
413
  alignment: z.ZodOptional<z.ZodEnum<{
401
414
  left: "left";
402
- center: "center";
403
415
  right: "right";
416
+ center: "center";
404
417
  justify: "justify";
405
418
  }>>;
406
419
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -464,10 +477,10 @@ declare const SheetDescriptorSchema: z.ZodObject<{
464
477
  endColumn: z.ZodNumber;
465
478
  }, z.core.$strip>>;
466
479
  type: z.ZodEnum<{
467
- decimal: "decimal";
468
- list: "list";
469
480
  date: "date";
470
481
  custom: "custom";
482
+ decimal: "decimal";
483
+ list: "list";
471
484
  time: "time";
472
485
  whole: "whole";
473
486
  textLength: "textLength";
@@ -1166,18 +1179,6 @@ type ShapeDescriptor = z.infer<typeof ShapeDescriptorSchema>;
1166
1179
  declare const HeadingParagraphSchema: z.ZodObject<{
1167
1180
  kind: z.ZodLiteral<"paragraph">;
1168
1181
  runs: z.ZodArray<z.ZodObject<{
1169
- text: z.ZodString;
1170
- bold: z.ZodOptional<z.ZodBoolean>;
1171
- italic: z.ZodOptional<z.ZodBoolean>;
1172
- underline: z.ZodOptional<z.ZodBoolean>;
1173
- strike: z.ZodOptional<z.ZodBoolean>;
1174
- fontFamily: z.ZodOptional<z.ZodString>;
1175
- sizePt: z.ZodOptional<z.ZodNumber>;
1176
- color: z.ZodOptional<z.ZodObject<{
1177
- r: z.ZodNumber;
1178
- g: z.ZodNumber;
1179
- b: z.ZodNumber;
1180
- }, z.core.$strip>>;
1181
1182
  hyperlink: z.ZodOptional<z.ZodString>;
1182
1183
  verticalAlign: z.ZodOptional<z.ZodEnum<{
1183
1184
  superscript: "superscript";
@@ -1215,17 +1216,29 @@ declare const HeadingParagraphSchema: z.ZodObject<{
1215
1216
  widthPt: z.ZodNumber;
1216
1217
  heightPt: z.ZodNumber;
1217
1218
  }, z.core.$strip>>>;
1219
+ bold: z.ZodOptional<z.ZodBoolean>;
1220
+ italic: z.ZodOptional<z.ZodBoolean>;
1221
+ underline: z.ZodOptional<z.ZodBoolean>;
1222
+ strike: z.ZodOptional<z.ZodBoolean>;
1223
+ fontFamily: z.ZodOptional<z.ZodString>;
1224
+ sizePt: z.ZodOptional<z.ZodNumber>;
1225
+ color: z.ZodOptional<z.ZodObject<{
1226
+ r: z.ZodNumber;
1227
+ g: z.ZodNumber;
1228
+ b: z.ZodNumber;
1229
+ }, z.core.$strip>>;
1230
+ text: z.ZodString;
1218
1231
  }, z.core.$strip>>;
1219
1232
  constructs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1220
1233
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
1221
1234
  kind: z.ZodLiteral<"contentControl">;
1222
1235
  controlType: z.ZodEnum<{
1223
- date: "date";
1224
1236
  richText: "richText";
1225
1237
  plainText: "plainText";
1226
1238
  checkbox: "checkbox";
1227
1239
  dropDown: "dropDown";
1228
1240
  comboBox: "comboBox";
1241
+ date: "date";
1229
1242
  picture: "picture";
1230
1243
  repeatingSection: "repeatingSection";
1231
1244
  button: "button";
@@ -1415,8 +1428,8 @@ declare const HeadingParagraphSchema: z.ZodObject<{
1415
1428
  preformatted: z.ZodOptional<z.ZodBoolean>;
1416
1429
  alignment: z.ZodOptional<z.ZodEnum<{
1417
1430
  left: "left";
1418
- center: "center";
1419
1431
  right: "right";
1432
+ center: "center";
1420
1433
  justify: "justify";
1421
1434
  }>>;
1422
1435
  list: z.ZodOptional<z.ZodObject<{
@@ -1537,18 +1550,6 @@ type HeadingParagraph = z.infer<typeof HeadingParagraphSchema>;
1537
1550
  declare const ListParagraphSchema: z.ZodObject<{
1538
1551
  kind: z.ZodLiteral<"paragraph">;
1539
1552
  runs: z.ZodArray<z.ZodObject<{
1540
- text: z.ZodString;
1541
- bold: z.ZodOptional<z.ZodBoolean>;
1542
- italic: z.ZodOptional<z.ZodBoolean>;
1543
- underline: z.ZodOptional<z.ZodBoolean>;
1544
- strike: z.ZodOptional<z.ZodBoolean>;
1545
- fontFamily: z.ZodOptional<z.ZodString>;
1546
- sizePt: z.ZodOptional<z.ZodNumber>;
1547
- color: z.ZodOptional<z.ZodObject<{
1548
- r: z.ZodNumber;
1549
- g: z.ZodNumber;
1550
- b: z.ZodNumber;
1551
- }, z.core.$strip>>;
1552
1553
  hyperlink: z.ZodOptional<z.ZodString>;
1553
1554
  verticalAlign: z.ZodOptional<z.ZodEnum<{
1554
1555
  superscript: "superscript";
@@ -1586,17 +1587,29 @@ declare const ListParagraphSchema: z.ZodObject<{
1586
1587
  widthPt: z.ZodNumber;
1587
1588
  heightPt: z.ZodNumber;
1588
1589
  }, z.core.$strip>>>;
1590
+ bold: z.ZodOptional<z.ZodBoolean>;
1591
+ italic: z.ZodOptional<z.ZodBoolean>;
1592
+ underline: z.ZodOptional<z.ZodBoolean>;
1593
+ strike: z.ZodOptional<z.ZodBoolean>;
1594
+ fontFamily: z.ZodOptional<z.ZodString>;
1595
+ sizePt: z.ZodOptional<z.ZodNumber>;
1596
+ color: z.ZodOptional<z.ZodObject<{
1597
+ r: z.ZodNumber;
1598
+ g: z.ZodNumber;
1599
+ b: z.ZodNumber;
1600
+ }, z.core.$strip>>;
1601
+ text: z.ZodString;
1589
1602
  }, z.core.$strip>>;
1590
1603
  constructs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1591
1604
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
1592
1605
  kind: z.ZodLiteral<"contentControl">;
1593
1606
  controlType: z.ZodEnum<{
1594
- date: "date";
1595
1607
  richText: "richText";
1596
1608
  plainText: "plainText";
1597
1609
  checkbox: "checkbox";
1598
1610
  dropDown: "dropDown";
1599
1611
  comboBox: "comboBox";
1612
+ date: "date";
1600
1613
  picture: "picture";
1601
1614
  repeatingSection: "repeatingSection";
1602
1615
  button: "button";
@@ -1787,8 +1800,8 @@ declare const ListParagraphSchema: z.ZodObject<{
1787
1800
  headingLevel: z.ZodOptional<z.ZodNumber>;
1788
1801
  alignment: z.ZodOptional<z.ZodEnum<{
1789
1802
  left: "left";
1790
- center: "center";
1791
1803
  right: "right";
1804
+ center: "center";
1792
1805
  justify: "justify";
1793
1806
  }>>;
1794
1807
  spacingBeforePt: z.ZodOptional<z.ZodNumber>;