document-schema 7.14.0 → 7.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/README.md +3 -3
  2. package/dist/codec.d.cts +1 -1
  3. package/dist/codec.d.ts +1 -1
  4. package/dist/{content-BNUhgRbB.d.cts → content-BbCg7beq.d.cts} +37 -26
  5. package/dist/{content-CYPkduUB.d.ts → content-C2zbG4qE.d.ts} +37 -26
  6. package/dist/content-json-schema-defs.cjs +15 -6
  7. package/dist/content-json-schema-defs.js +15 -6
  8. package/dist/content.cjs +10 -2
  9. package/dist/content.d.cts +2 -2
  10. package/dist/content.d.ts +2 -2
  11. package/dist/content.js +10 -3
  12. package/dist/decompose.d.cts +2 -2
  13. package/dist/decompose.d.ts +2 -2
  14. package/dist/definitions.d.cts +4 -4
  15. package/dist/definitions.d.ts +4 -4
  16. package/dist/factor-styles.d.cts +1 -1
  17. package/dist/factor-styles.d.ts +1 -1
  18. package/dist/flatten.d.cts +1 -1
  19. package/dist/flatten.d.ts +1 -1
  20. package/dist/index.cjs +1 -0
  21. package/dist/index.d.cts +4 -4
  22. package/dist/index.d.ts +4 -4
  23. package/dist/index.js +2 -2
  24. package/dist/{package-node-C1HxQdNK.d.cts → package-node-DKNbxXJ8.d.cts} +4 -4
  25. package/dist/{package-node-DdotoNEU.d.ts → package-node-DxDnxUif.d.ts} +4 -4
  26. package/dist/package-node.d.cts +1 -1
  27. package/dist/package-node.d.ts +1 -1
  28. package/dist/package.d.cts +6 -6
  29. package/dist/package.d.ts +6 -6
  30. package/dist/schema-io.cjs +2 -2
  31. package/dist/schema-io.d.cts +1 -1
  32. package/dist/schema-io.d.ts +1 -1
  33. package/dist/schema-io.js +2 -2
  34. package/dist/{style-D06NwxAJ.d.cts → style-BGMcYrD2.d.cts} +1 -1
  35. package/dist/{style-D06NwxAJ.d.ts → style-BGMcYrD2.d.ts} +1 -1
  36. package/dist/style.d.cts +1 -1
  37. package/dist/style.d.ts +1 -1
  38. package/dist/table-grid.cjs +4 -4
  39. package/dist/table-grid.d.cts +5 -5
  40. package/dist/table-grid.d.ts +5 -5
  41. package/dist/table-grid.js +4 -4
  42. package/dist/text-layout.d.cts +1 -1
  43. package/dist/text-layout.d.ts +1 -1
  44. package/package.json +2 -2
  45. package/schemas/content-document.schema.json +35 -20
  46. package/schemas/document-tree.schema.json +22 -7
package/README.md CHANGED
@@ -61,7 +61,7 @@ Two format-agnostic helpers live here because they operate on the content model
61
61
  ```ts
62
62
  import { ContentDocumentSchema, DocumentTreeSchema } from "document-schema.js";
63
63
 
64
- // The codec-exchange form: what every format's reader produces and every writer consumes -- always flat,
64
+ // The codec-exchange form: what every format's reader produces and every writer consumes — always flat,
65
65
  // always fully materialised (no styles table, no refs), never versioned (that lives on the serialised artefact).
66
66
  const content = ContentDocumentSchema.parse(
67
67
  someWordprocessingOrPresentationValue,
@@ -133,7 +133,7 @@ import {
133
133
  } from "document-schema.js";
134
134
 
135
135
  // The one call a construction site makes: decompose the flat content into the tree, splice the envelope
136
- // onto the root, and mint a styles table over the result. `pages` is optional -- pass it once a layout
136
+ // onto the root, and mint a styles table over the result. `pages` is optional — pass it once a layout
137
137
  // pass has produced each rendered page's own size.
138
138
  const pkg = assembleTree(content, pages);
139
139
 
@@ -397,7 +397,7 @@ import { ColorSchema } from "document-schema.js/color";
397
397
  ```ts
398
398
  import type { ContentCodec } from "document-schema.js";
399
399
 
400
- declare const docxCodec: ContentCodec; // read(bytes) -> ContentDocument; write(content) -> bytes -- write is optional
400
+ declare const docxCodec: ContentCodec; // read(bytes) -> ContentDocument; write(content) -> bytes — write is optional
401
401
  ```
402
402
 
403
403
  `ContentCodec.write` is optional (`odf` has a reader but no builder — recovering MathML from glyphs is OCR-adjacent), and the interface is generic over its own `TOptions`. There is no `LayoutCodec` any more: it modelled the one format that produces layout cheaply on read — PDF — and the whole `LayoutDocument` family it described moved to pdf-codec in 4.0.0 (see [pdf-codec#65](https://github.com/ExaDev/pdf-codec/issues/65)).
package/dist/codec.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { C as ContentDocument } from "./content-BNUhgRbB.cjs";
1
+ import { C as ContentDocument } from "./content-BbCg7beq.cjs";
2
2
  //#region src/codec.d.ts
3
3
  interface ContentCodec<TOptions = unknown> {
4
4
  read(bytes: Uint8Array, options?: TOptions): ContentDocument;
package/dist/codec.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { C as ContentDocument } from "./content-CYPkduUB.js";
1
+ import { C as ContentDocument } from "./content-C2zbG4qE.js";
2
2
  //#region src/codec.d.ts
3
3
  interface ContentCodec<TOptions = unknown> {
4
4
  read(bytes: Uint8Array, options?: TOptions): ContentDocument;
@@ -3,7 +3,7 @@ import { p as MathExpression } from "./math-BScHxedi.cjs";
3
3
  import { n as Color } from "./color-AELCDH_b.cjs";
4
4
  import { r as LayoutFrame, t as Box } from "./geometry-CvcjSwnA.cjs";
5
5
  import { r as SourceResidue } from "./source-Bas5ol6f.cjs";
6
- import { o as TextDirection } from "./style-D06NwxAJ.cjs";
6
+ import { o as TextDirection } from "./style-BGMcYrD2.cjs";
7
7
  import { z } from "zod";
8
8
  //#region src/content.d.ts
9
9
  type FusedNode<T> = T & {
@@ -784,8 +784,8 @@ declare const ContentParagraphSchema: z.ZodObject<{
784
784
  headingLevel: z.ZodOptional<z.ZodNumber>;
785
785
  alignment: z.ZodOptional<z.ZodEnum<{
786
786
  left: "left";
787
- center: "center";
788
787
  right: "right";
788
+ center: "center";
789
789
  justify: "justify";
790
790
  }>>;
791
791
  list: z.ZodOptional<z.ZodObject<{
@@ -921,10 +921,10 @@ declare const ContentFloatOriginSchema: z.ZodEnum<{
921
921
  type ContentFloatOrigin = z.infer<typeof ContentFloatOriginSchema>;
922
922
  declare const ContentFloatAlignSchema: z.ZodEnum<{
923
923
  left: "left";
924
- center: "center";
925
924
  right: "right";
926
925
  top: "top";
927
926
  bottom: "bottom";
927
+ center: "center";
928
928
  inside: "inside";
929
929
  outside: "outside";
930
930
  }>;
@@ -964,10 +964,10 @@ declare const ContentFloatAxisSchema: z.ZodUnion<readonly [z.ZodObject<{
964
964
  }>;
965
965
  align: z.ZodEnum<{
966
966
  left: "left";
967
- center: "center";
968
967
  right: "right";
969
968
  top: "top";
970
969
  bottom: "bottom";
970
+ center: "center";
971
971
  inside: "inside";
972
972
  outside: "outside";
973
973
  }>;
@@ -1009,10 +1009,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
1009
1009
  }>;
1010
1010
  align: z.ZodEnum<{
1011
1011
  left: "left";
1012
- center: "center";
1013
1012
  right: "right";
1014
1013
  top: "top";
1015
1014
  bottom: "bottom";
1015
+ center: "center";
1016
1016
  inside: "inside";
1017
1017
  outside: "outside";
1018
1018
  }>;
@@ -1052,10 +1052,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
1052
1052
  }>;
1053
1053
  align: z.ZodEnum<{
1054
1054
  left: "left";
1055
- center: "center";
1056
1055
  right: "right";
1057
1056
  top: "top";
1058
1057
  bottom: "bottom";
1058
+ center: "center";
1059
1059
  inside: "inside";
1060
1060
  outside: "outside";
1061
1061
  }>;
@@ -1159,10 +1159,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1159
1159
  }>;
1160
1160
  align: z.ZodEnum<{
1161
1161
  left: "left";
1162
- center: "center";
1163
1162
  right: "right";
1164
1163
  top: "top";
1165
1164
  bottom: "bottom";
1165
+ center: "center";
1166
1166
  inside: "inside";
1167
1167
  outside: "outside";
1168
1168
  }>;
@@ -1202,10 +1202,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1202
1202
  }>;
1203
1203
  align: z.ZodEnum<{
1204
1204
  left: "left";
1205
- center: "center";
1206
1205
  right: "right";
1207
1206
  top: "top";
1208
1207
  bottom: "bottom";
1208
+ center: "center";
1209
1209
  inside: "inside";
1210
1210
  outside: "outside";
1211
1211
  }>;
@@ -1518,10 +1518,14 @@ interface ContentTableRow {
1518
1518
  direction?: TextDirection;
1519
1519
  isHeader?: boolean;
1520
1520
  }
1521
+ interface ContentTableColumn {
1522
+ widthPt: number;
1523
+ isHeader?: boolean;
1524
+ }
1521
1525
  interface ContentTable {
1522
1526
  kind: "table";
1523
1527
  rows: ContentTableRow[];
1524
- columnWidthsPt: number[];
1528
+ columns: ContentTableColumn[];
1525
1529
  sourcePath?: string;
1526
1530
  source?: SourceResidue;
1527
1531
  frames?: LayoutFrame[];
@@ -2293,8 +2297,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2293
2297
  }, z.core.$strip>>;
2294
2298
  alignment: z.ZodOptional<z.ZodEnum<{
2295
2299
  left: "left";
2296
- center: "center";
2297
2300
  right: "right";
2301
+ center: "center";
2298
2302
  justify: "justify";
2299
2303
  }>>;
2300
2304
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -2436,10 +2440,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2436
2440
  }>;
2437
2441
  align: z.ZodEnum<{
2438
2442
  left: "left";
2439
- center: "center";
2440
2443
  right: "right";
2441
2444
  top: "top";
2442
2445
  bottom: "bottom";
2446
+ center: "center";
2443
2447
  inside: "inside";
2444
2448
  outside: "outside";
2445
2449
  }>;
@@ -2479,10 +2483,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2479
2483
  }>;
2480
2484
  align: z.ZodEnum<{
2481
2485
  left: "left";
2482
- center: "center";
2483
2486
  right: "right";
2484
2487
  top: "top";
2485
2488
  bottom: "bottom";
2489
+ center: "center";
2486
2490
  inside: "inside";
2487
2491
  outside: "outside";
2488
2492
  }>;
@@ -4606,9 +4610,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
4606
4610
  }, z.core.$strip>>;
4607
4611
  }, z.core.$strip>>;
4608
4612
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4609
- center: "center";
4610
4613
  top: "top";
4611
4614
  bottom: "bottom";
4615
+ center: "center";
4612
4616
  }>>;
4613
4617
  formula: z.ZodOptional<z.ZodString>;
4614
4618
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4833,9 +4837,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
4833
4837
  }, z.core.$strip>>;
4834
4838
  }, z.core.$strip>>;
4835
4839
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4836
- center: "center";
4837
4840
  top: "top";
4838
4841
  bottom: "bottom";
4842
+ center: "center";
4839
4843
  }>>;
4840
4844
  formula: z.ZodOptional<z.ZodString>;
4841
4845
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4874,6 +4878,10 @@ declare const ContentTableRowSchema: z.ZodObject<{
4874
4878
  }>>;
4875
4879
  isHeader: z.ZodOptional<z.ZodBoolean>;
4876
4880
  }, z.core.$strip>;
4881
+ declare const ContentTableColumnSchema: z.ZodObject<{
4882
+ widthPt: z.ZodNumber;
4883
+ isHeader: z.ZodOptional<z.ZodBoolean>;
4884
+ }, z.core.$strip>;
4877
4885
  declare const ContentTableSchema: z.ZodObject<{
4878
4886
  origin: z.ZodOptional<z.ZodEnum<{
4879
4887
  chart: "chart";
@@ -5096,9 +5104,9 @@ declare const ContentTableSchema: z.ZodObject<{
5096
5104
  }, z.core.$strip>>;
5097
5105
  }, z.core.$strip>>;
5098
5106
  verticalAlign: z.ZodOptional<z.ZodEnum<{
5099
- center: "center";
5100
5107
  top: "top";
5101
5108
  bottom: "bottom";
5109
+ center: "center";
5102
5110
  }>>;
5103
5111
  formula: z.ZodOptional<z.ZodString>;
5104
5112
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5137,7 +5145,10 @@ declare const ContentTableSchema: z.ZodObject<{
5137
5145
  }>>;
5138
5146
  isHeader: z.ZodOptional<z.ZodBoolean>;
5139
5147
  }, z.core.$strip>>;
5140
- columnWidthsPt: z.ZodArray<z.ZodNumber>;
5148
+ columns: z.ZodArray<z.ZodObject<{
5149
+ widthPt: z.ZodNumber;
5150
+ isHeader: z.ZodOptional<z.ZodBoolean>;
5151
+ }, z.core.$strip>>;
5141
5152
  sourcePath: z.ZodOptional<z.ZodString>;
5142
5153
  source: z.ZodOptional<z.ZodObject<{
5143
5154
  format: z.ZodEnum<{
@@ -5829,8 +5840,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
5829
5840
  }, z.core.$strip>>;
5830
5841
  alignment: z.ZodOptional<z.ZodEnum<{
5831
5842
  left: "left";
5832
- center: "center";
5833
5843
  right: "right";
5844
+ center: "center";
5834
5845
  justify: "justify";
5835
5846
  }>>;
5836
5847
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -6734,10 +6745,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6734
6745
  }>;
6735
6746
  align: z.ZodEnum<{
6736
6747
  left: "left";
6737
- center: "center";
6738
6748
  right: "right";
6739
6749
  top: "top";
6740
6750
  bottom: "bottom";
6751
+ center: "center";
6741
6752
  inside: "inside";
6742
6753
  outside: "outside";
6743
6754
  }>;
@@ -6777,10 +6788,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6777
6788
  }>;
6778
6789
  align: z.ZodEnum<{
6779
6790
  left: "left";
6780
- center: "center";
6781
6791
  right: "right";
6782
6792
  top: "top";
6783
6793
  bottom: "bottom";
6794
+ center: "center";
6784
6795
  inside: "inside";
6785
6796
  outside: "outside";
6786
6797
  }>;
@@ -7171,8 +7182,8 @@ declare const ContentSheetSchema: z.ZodObject<{
7171
7182
  }, z.core.$strip>>;
7172
7183
  alignment: z.ZodOptional<z.ZodEnum<{
7173
7184
  left: "left";
7174
- center: "center";
7175
7185
  right: "right";
7186
+ center: "center";
7176
7187
  justify: "justify";
7177
7188
  }>>;
7178
7189
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -7314,10 +7325,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7314
7325
  }>;
7315
7326
  align: z.ZodEnum<{
7316
7327
  left: "left";
7317
- center: "center";
7318
7328
  right: "right";
7319
7329
  top: "top";
7320
7330
  bottom: "bottom";
7331
+ center: "center";
7321
7332
  inside: "inside";
7322
7333
  outside: "outside";
7323
7334
  }>;
@@ -7357,10 +7368,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7357
7368
  }>;
7358
7369
  align: z.ZodEnum<{
7359
7370
  left: "left";
7360
- center: "center";
7361
7371
  right: "right";
7362
7372
  top: "top";
7363
7373
  bottom: "bottom";
7374
+ center: "center";
7364
7375
  inside: "inside";
7365
7376
  outside: "outside";
7366
7377
  }>;
@@ -10299,8 +10310,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10299
10310
  }, z.core.$strip>>;
10300
10311
  alignment: z.ZodOptional<z.ZodEnum<{
10301
10312
  left: "left";
10302
- center: "center";
10303
10313
  right: "right";
10314
+ center: "center";
10304
10315
  justify: "justify";
10305
10316
  }>>;
10306
10317
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -10442,10 +10453,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10442
10453
  }>;
10443
10454
  align: z.ZodEnum<{
10444
10455
  left: "left";
10445
- center: "center";
10446
10456
  right: "right";
10447
10457
  top: "top";
10448
10458
  bottom: "bottom";
10459
+ center: "center";
10449
10460
  inside: "inside";
10450
10461
  outside: "outside";
10451
10462
  }>;
@@ -10485,10 +10496,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10485
10496
  }>;
10486
10497
  align: z.ZodEnum<{
10487
10498
  left: "left";
10488
- center: "center";
10489
10499
  right: "right";
10490
10500
  top: "top";
10491
10501
  bottom: "bottom";
10502
+ center: "center";
10492
10503
  inside: "inside";
10493
10504
  outside: "outside";
10494
10505
  }>;
@@ -12153,4 +12164,4 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
12153
12164
  }, z.core.$strip>], "kind">;
12154
12165
  type ContentDocument = z.infer<typeof ContentDocumentSchema>;
12155
12166
  //#endregion
12156
- export { ContentHatchStyleSchema as $, ContentSheetRepeatRange as $t, ContentEmbeddedObjectKind as A, RunConstructExtent as An, ContentSheetCellComment as At, ContentFloatPosition as B, isContentConstructEnd as Bn, ContentSheetConditionalFormatValueSchema as Bt, ContentDocument as C, ContentVectorSchema as Cn, ContentRunSchema as Ct, ContentEmbeddedObject as D, IMAGE_FORMATS as Dn, ContentShapeSchema as Dt, ContentDrawPageSchema as E, FusedNode as En, ContentShape as Et, ContentFloatAlignSchema as F, clampHeadingLevel as Fn, ContentSheetConditionalFormat as Ft, ContentFormulaSchema as G, ContentSheetImage as Gt, ContentFont as H, isRunConstructExtent as Hn, ContentSheetDataValidationSchema as Ht, ContentFloatAxis as I, contentDocumentSharedFields as In, ContentSheetConditionalFormatSchema as It, ContentGradientStyle as J, ContentSheetPrintRangeSchema as Jt, ContentGradientFill as K, ContentSheetImageSchema as Kt, ContentFloatAxisSchema as L, findConstructMarkerImbalance as Ln, ContentSheetConditionalFormatStyle as Lt, ContentFillPattern as M, RunConstructFault as Mn, ContentSheetCellSchema as Mt, ContentFillPatternSchema as N, SheetRuleOperator as Nn, ContentSheetColumn as Nt, ContentEmbeddedObjectBlock as O, ImageFormat as On, ContentSheet as Ot, ContentFloatAlign as P, SheetRuleOperatorSchema as Pn, ContentSheetColumnSchema as Pt, ContentHatchStyle as Q, ContentSheetRangeSchema as Qt, ContentFloatOrigin as R, findRunConstructFault as Rn, ContentSheetConditionalFormatStyleSchema as Rt, ContentDefinedNameSchema as S, ContentVector as Sn, ContentRun as St, ContentDrawPage as T, DecimalStringSchema as Tn, ContentSectionSchema as Tt, ContentFontSchema as U, resolveCellFillColor as Un, ContentSheetDataValidationType as Ut, ContentFloatPositionSchema as V, isContentConstructStart as Vn, ContentSheetDataValidation as Vt, ContentFormula as W, unrecognizedFillKind as Wn, ContentSheetDataValidationTypeSchema as Wt, ContentHatchFill as X, ContentSheetPrintSettingsSchema as Xt, ContentGradientStyleSchema as Y, ContentSheetPrintSettings as Yt, ContentHatchFillSchema as Z, ContentSheetRange as Zt, ContentConstructEnd as _, ContentTableRow as _n, ContentParagraphSchema as _t, ContentBlock as a, ContentSlideSchema as an, ContentInterpretationSchema as at, ContentConstructStartSchema as b, ContentTranscript as bn, ContentPathSegment as bt, ContentBorderSchema as c, ContentStrokeDashSchema as cn, ContentOrigin as ct, ContentCellFill as d, ContentStrokeStyleSchema as dn, ContentPageBreakSchema as dt, ContentSheetRepeatRangeSchema as en, ContentImageBlock as et, ContentCellFillSchema as f, ContentSubpath as fn, ContentPageFurniture as ft, ContentCellValueSchema as g, ContentTableCellSchema as gn, ContentParagraphBordersSchema as gt, ContentCellValue as h, ContentTableCell as hn, ContentParagraphBorders as ht, ContentBitmapFillSchema as i, ContentSlide as in, ContentInterpretation as it, ContentEmbeddedObjectSchema as j, RunConstructExtentSchema as jn, ContentSheetCellCommentSchema as jt, ContentEmbeddedObjectBlockSchema as k, RUN_FONT_PROPERTY_SHAPE as kn, ContentSheetCell as kt, ContentCellBorders as l, ContentStrokeSchema as ln, ContentOriginSchema as lt, ContentCellPatternTypeSchema as m, ContentTable as mn, ContentParagraph as mt, ConstructMarkerImbalance as n, ContentSheetRowSchema as nn, ContentImageOriginal as nt, ContentBlockSchema as o, ContentStroke as on, ContentListMembership as ot, ContentCellPatternType as p, ContentSubpathSchema as pn, ContentPageFurnitureSchema as pt, ContentGradientFillSchema as q, ContentSheetPrintRange as qt, ContentBitmapFill as r, ContentSheetSchema as rn, ContentImageOriginalSchema as rt, ContentBorder as s, ContentStrokeDash as sn, ContentListMembershipSchema as st, CONTENT_ANNOTATION_FIELDS as t, ContentSheetRow as tn, ContentImageBlockSchema as tt, ContentCellBordersSchema as u, ContentStrokeStyle as un, ContentPageBreak as ut, ContentConstructEndSchema as v, ContentTableRowSchema as vn, ContentPathPoint as vt, ContentDocumentSchema as w, DecimalString as wn, ContentSection as wt, ContentDefinedName as x, ContentTranscriptSchema as xn, ContentPathSegmentSchema as xt, ContentConstructStart as y, ContentTableSchema as yn, ContentPathPointSchema as yt, ContentFloatOriginSchema as z, isContentBlock as zn, ContentSheetConditionalFormatValue as zt };
12167
+ export { ContentHatchStyleSchema as $, ContentSheetRepeatRange as $t, ContentEmbeddedObjectKind as A, ImageFormat as An, ContentSheetCellComment as At, ContentFloatPosition as B, findRunConstructFault as Bn, ContentSheetConditionalFormatValueSchema as Bt, ContentDocument as C, ContentTranscriptSchema as Cn, ContentRunSchema as Ct, ContentEmbeddedObject as D, DecimalStringSchema as Dn, ContentShapeSchema as Dt, ContentDrawPageSchema as E, DecimalString as En, ContentShape as Et, ContentFloatAlignSchema as F, SheetRuleOperator as Fn, ContentSheetConditionalFormat as Ft, ContentFormulaSchema as G, resolveCellFillColor as Gn, ContentSheetImage as Gt, ContentFont as H, isContentConstructEnd as Hn, ContentSheetDataValidationSchema as Ht, ContentFloatAxis as I, SheetRuleOperatorSchema as In, ContentSheetConditionalFormatSchema as It, ContentGradientStyle as J, ContentSheetPrintRangeSchema as Jt, ContentGradientFill as K, unrecognizedFillKind as Kn, ContentSheetImageSchema as Kt, ContentFloatAxisSchema as L, clampHeadingLevel as Ln, ContentSheetConditionalFormatStyle as Lt, ContentFillPattern as M, RunConstructExtent as Mn, ContentSheetCellSchema as Mt, ContentFillPatternSchema as N, RunConstructExtentSchema as Nn, ContentSheetColumn as Nt, ContentEmbeddedObjectBlock as O, FusedNode as On, ContentSheet as Ot, ContentFloatAlign as P, RunConstructFault as Pn, ContentSheetColumnSchema as Pt, ContentHatchStyle as Q, ContentSheetRangeSchema as Qt, ContentFloatOrigin as R, contentDocumentSharedFields as Rn, ContentSheetConditionalFormatStyleSchema as Rt, ContentDefinedNameSchema as S, ContentTranscript as Sn, ContentRun as St, ContentDrawPage as T, ContentVectorSchema as Tn, ContentSectionSchema as Tt, ContentFontSchema as U, isContentConstructStart as Un, ContentSheetDataValidationType as Ut, ContentFloatPositionSchema as V, isContentBlock as Vn, ContentSheetDataValidation as Vt, ContentFormula as W, isRunConstructExtent as Wn, ContentSheetDataValidationTypeSchema as Wt, ContentHatchFill as X, ContentSheetPrintSettingsSchema as Xt, ContentGradientStyleSchema as Y, ContentSheetPrintSettings as Yt, ContentHatchFillSchema as Z, ContentSheetRange as Zt, ContentConstructEnd as _, ContentTableColumn as _n, ContentParagraphSchema as _t, ContentBlock as a, ContentSlideSchema as an, ContentInterpretationSchema as at, ContentConstructStartSchema as b, ContentTableRowSchema as bn, ContentPathSegment as bt, ContentBorderSchema as c, ContentStrokeDashSchema as cn, ContentOrigin as ct, ContentCellFill as d, ContentStrokeStyleSchema as dn, ContentPageBreakSchema as dt, ContentSheetRepeatRangeSchema as en, ContentImageBlock as et, ContentCellFillSchema as f, ContentSubpath as fn, ContentPageFurniture as ft, ContentCellValueSchema as g, ContentTableCellSchema as gn, ContentParagraphBordersSchema as gt, ContentCellValue as h, ContentTableCell as hn, ContentParagraphBorders as ht, ContentBitmapFillSchema as i, ContentSlide as in, ContentInterpretation as it, ContentEmbeddedObjectSchema as j, RUN_FONT_PROPERTY_SHAPE as jn, ContentSheetCellCommentSchema as jt, ContentEmbeddedObjectBlockSchema as k, IMAGE_FORMATS as kn, ContentSheetCell as kt, ContentCellBorders as l, ContentStrokeSchema as ln, ContentOriginSchema as lt, ContentCellPatternTypeSchema as m, ContentTable as mn, ContentParagraph as mt, ConstructMarkerImbalance as n, ContentSheetRowSchema as nn, ContentImageOriginal as nt, ContentBlockSchema as o, ContentStroke as on, ContentListMembership as ot, ContentCellPatternType as p, ContentSubpathSchema as pn, ContentPageFurnitureSchema as pt, ContentGradientFillSchema as q, ContentSheetPrintRange as qt, ContentBitmapFill as r, ContentSheetSchema as rn, ContentImageOriginalSchema as rt, ContentBorder as s, ContentStrokeDash as sn, ContentListMembershipSchema as st, CONTENT_ANNOTATION_FIELDS as t, ContentSheetRow as tn, ContentImageBlockSchema as tt, ContentCellBordersSchema as u, ContentStrokeStyle as un, ContentPageBreak as ut, ContentConstructEndSchema as v, ContentTableColumnSchema as vn, ContentPathPoint as vt, ContentDocumentSchema as w, ContentVector as wn, ContentSection as wt, ContentDefinedName as x, ContentTableSchema as xn, ContentPathSegmentSchema as xt, ContentConstructStart as y, ContentTableRow as yn, ContentPathPointSchema as yt, ContentFloatOriginSchema as z, findConstructMarkerImbalance as zn, ContentSheetConditionalFormatValue as zt };
@@ -3,7 +3,7 @@ import { p as MathExpression } from "./math-BScHxedi.js";
3
3
  import { n as Color } from "./color-AELCDH_b.js";
4
4
  import { r as LayoutFrame, t as Box } from "./geometry-CvcjSwnA.js";
5
5
  import { r as SourceResidue } from "./source-Bas5ol6f.js";
6
- import { o as TextDirection } from "./style-D06NwxAJ.js";
6
+ import { o as TextDirection } from "./style-BGMcYrD2.js";
7
7
  import { z } from "zod";
8
8
  //#region src/content.d.ts
9
9
  type FusedNode<T> = T & {
@@ -784,8 +784,8 @@ declare const ContentParagraphSchema: z.ZodObject<{
784
784
  headingLevel: z.ZodOptional<z.ZodNumber>;
785
785
  alignment: z.ZodOptional<z.ZodEnum<{
786
786
  left: "left";
787
- center: "center";
788
787
  right: "right";
788
+ center: "center";
789
789
  justify: "justify";
790
790
  }>>;
791
791
  list: z.ZodOptional<z.ZodObject<{
@@ -921,10 +921,10 @@ declare const ContentFloatOriginSchema: z.ZodEnum<{
921
921
  type ContentFloatOrigin = z.infer<typeof ContentFloatOriginSchema>;
922
922
  declare const ContentFloatAlignSchema: z.ZodEnum<{
923
923
  left: "left";
924
- center: "center";
925
924
  right: "right";
926
925
  top: "top";
927
926
  bottom: "bottom";
927
+ center: "center";
928
928
  inside: "inside";
929
929
  outside: "outside";
930
930
  }>;
@@ -964,10 +964,10 @@ declare const ContentFloatAxisSchema: z.ZodUnion<readonly [z.ZodObject<{
964
964
  }>;
965
965
  align: z.ZodEnum<{
966
966
  left: "left";
967
- center: "center";
968
967
  right: "right";
969
968
  top: "top";
970
969
  bottom: "bottom";
970
+ center: "center";
971
971
  inside: "inside";
972
972
  outside: "outside";
973
973
  }>;
@@ -1009,10 +1009,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
1009
1009
  }>;
1010
1010
  align: z.ZodEnum<{
1011
1011
  left: "left";
1012
- center: "center";
1013
1012
  right: "right";
1014
1013
  top: "top";
1015
1014
  bottom: "bottom";
1015
+ center: "center";
1016
1016
  inside: "inside";
1017
1017
  outside: "outside";
1018
1018
  }>;
@@ -1052,10 +1052,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
1052
1052
  }>;
1053
1053
  align: z.ZodEnum<{
1054
1054
  left: "left";
1055
- center: "center";
1056
1055
  right: "right";
1057
1056
  top: "top";
1058
1057
  bottom: "bottom";
1058
+ center: "center";
1059
1059
  inside: "inside";
1060
1060
  outside: "outside";
1061
1061
  }>;
@@ -1159,10 +1159,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1159
1159
  }>;
1160
1160
  align: z.ZodEnum<{
1161
1161
  left: "left";
1162
- center: "center";
1163
1162
  right: "right";
1164
1163
  top: "top";
1165
1164
  bottom: "bottom";
1165
+ center: "center";
1166
1166
  inside: "inside";
1167
1167
  outside: "outside";
1168
1168
  }>;
@@ -1202,10 +1202,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
1202
1202
  }>;
1203
1203
  align: z.ZodEnum<{
1204
1204
  left: "left";
1205
- center: "center";
1206
1205
  right: "right";
1207
1206
  top: "top";
1208
1207
  bottom: "bottom";
1208
+ center: "center";
1209
1209
  inside: "inside";
1210
1210
  outside: "outside";
1211
1211
  }>;
@@ -1518,10 +1518,14 @@ interface ContentTableRow {
1518
1518
  direction?: TextDirection;
1519
1519
  isHeader?: boolean;
1520
1520
  }
1521
+ interface ContentTableColumn {
1522
+ widthPt: number;
1523
+ isHeader?: boolean;
1524
+ }
1521
1525
  interface ContentTable {
1522
1526
  kind: "table";
1523
1527
  rows: ContentTableRow[];
1524
- columnWidthsPt: number[];
1528
+ columns: ContentTableColumn[];
1525
1529
  sourcePath?: string;
1526
1530
  source?: SourceResidue;
1527
1531
  frames?: LayoutFrame[];
@@ -2293,8 +2297,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2293
2297
  }, z.core.$strip>>;
2294
2298
  alignment: z.ZodOptional<z.ZodEnum<{
2295
2299
  left: "left";
2296
- center: "center";
2297
2300
  right: "right";
2301
+ center: "center";
2298
2302
  justify: "justify";
2299
2303
  }>>;
2300
2304
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -2436,10 +2440,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2436
2440
  }>;
2437
2441
  align: z.ZodEnum<{
2438
2442
  left: "left";
2439
- center: "center";
2440
2443
  right: "right";
2441
2444
  top: "top";
2442
2445
  bottom: "bottom";
2446
+ center: "center";
2443
2447
  inside: "inside";
2444
2448
  outside: "outside";
2445
2449
  }>;
@@ -2479,10 +2483,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2479
2483
  }>;
2480
2484
  align: z.ZodEnum<{
2481
2485
  left: "left";
2482
- center: "center";
2483
2486
  right: "right";
2484
2487
  top: "top";
2485
2488
  bottom: "bottom";
2489
+ center: "center";
2486
2490
  inside: "inside";
2487
2491
  outside: "outside";
2488
2492
  }>;
@@ -4606,9 +4610,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
4606
4610
  }, z.core.$strip>>;
4607
4611
  }, z.core.$strip>>;
4608
4612
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4609
- center: "center";
4610
4613
  top: "top";
4611
4614
  bottom: "bottom";
4615
+ center: "center";
4612
4616
  }>>;
4613
4617
  formula: z.ZodOptional<z.ZodString>;
4614
4618
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4833,9 +4837,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
4833
4837
  }, z.core.$strip>>;
4834
4838
  }, z.core.$strip>>;
4835
4839
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4836
- center: "center";
4837
4840
  top: "top";
4838
4841
  bottom: "bottom";
4842
+ center: "center";
4839
4843
  }>>;
4840
4844
  formula: z.ZodOptional<z.ZodString>;
4841
4845
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4874,6 +4878,10 @@ declare const ContentTableRowSchema: z.ZodObject<{
4874
4878
  }>>;
4875
4879
  isHeader: z.ZodOptional<z.ZodBoolean>;
4876
4880
  }, z.core.$strip>;
4881
+ declare const ContentTableColumnSchema: z.ZodObject<{
4882
+ widthPt: z.ZodNumber;
4883
+ isHeader: z.ZodOptional<z.ZodBoolean>;
4884
+ }, z.core.$strip>;
4877
4885
  declare const ContentTableSchema: z.ZodObject<{
4878
4886
  origin: z.ZodOptional<z.ZodEnum<{
4879
4887
  chart: "chart";
@@ -5096,9 +5104,9 @@ declare const ContentTableSchema: z.ZodObject<{
5096
5104
  }, z.core.$strip>>;
5097
5105
  }, z.core.$strip>>;
5098
5106
  verticalAlign: z.ZodOptional<z.ZodEnum<{
5099
- center: "center";
5100
5107
  top: "top";
5101
5108
  bottom: "bottom";
5109
+ center: "center";
5102
5110
  }>>;
5103
5111
  formula: z.ZodOptional<z.ZodString>;
5104
5112
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5137,7 +5145,10 @@ declare const ContentTableSchema: z.ZodObject<{
5137
5145
  }>>;
5138
5146
  isHeader: z.ZodOptional<z.ZodBoolean>;
5139
5147
  }, z.core.$strip>>;
5140
- columnWidthsPt: z.ZodArray<z.ZodNumber>;
5148
+ columns: z.ZodArray<z.ZodObject<{
5149
+ widthPt: z.ZodNumber;
5150
+ isHeader: z.ZodOptional<z.ZodBoolean>;
5151
+ }, z.core.$strip>>;
5141
5152
  sourcePath: z.ZodOptional<z.ZodString>;
5142
5153
  source: z.ZodOptional<z.ZodObject<{
5143
5154
  format: z.ZodEnum<{
@@ -5829,8 +5840,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
5829
5840
  }, z.core.$strip>>;
5830
5841
  alignment: z.ZodOptional<z.ZodEnum<{
5831
5842
  left: "left";
5832
- center: "center";
5833
5843
  right: "right";
5844
+ center: "center";
5834
5845
  justify: "justify";
5835
5846
  }>>;
5836
5847
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -6734,10 +6745,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6734
6745
  }>;
6735
6746
  align: z.ZodEnum<{
6736
6747
  left: "left";
6737
- center: "center";
6738
6748
  right: "right";
6739
6749
  top: "top";
6740
6750
  bottom: "bottom";
6751
+ center: "center";
6741
6752
  inside: "inside";
6742
6753
  outside: "outside";
6743
6754
  }>;
@@ -6777,10 +6788,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6777
6788
  }>;
6778
6789
  align: z.ZodEnum<{
6779
6790
  left: "left";
6780
- center: "center";
6781
6791
  right: "right";
6782
6792
  top: "top";
6783
6793
  bottom: "bottom";
6794
+ center: "center";
6784
6795
  inside: "inside";
6785
6796
  outside: "outside";
6786
6797
  }>;
@@ -7171,8 +7182,8 @@ declare const ContentSheetSchema: z.ZodObject<{
7171
7182
  }, z.core.$strip>>;
7172
7183
  alignment: z.ZodOptional<z.ZodEnum<{
7173
7184
  left: "left";
7174
- center: "center";
7175
7185
  right: "right";
7186
+ center: "center";
7176
7187
  justify: "justify";
7177
7188
  }>>;
7178
7189
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -7314,10 +7325,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7314
7325
  }>;
7315
7326
  align: z.ZodEnum<{
7316
7327
  left: "left";
7317
- center: "center";
7318
7328
  right: "right";
7319
7329
  top: "top";
7320
7330
  bottom: "bottom";
7331
+ center: "center";
7321
7332
  inside: "inside";
7322
7333
  outside: "outside";
7323
7334
  }>;
@@ -7357,10 +7368,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7357
7368
  }>;
7358
7369
  align: z.ZodEnum<{
7359
7370
  left: "left";
7360
- center: "center";
7361
7371
  right: "right";
7362
7372
  top: "top";
7363
7373
  bottom: "bottom";
7374
+ center: "center";
7364
7375
  inside: "inside";
7365
7376
  outside: "outside";
7366
7377
  }>;
@@ -10299,8 +10310,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10299
10310
  }, z.core.$strip>>;
10300
10311
  alignment: z.ZodOptional<z.ZodEnum<{
10301
10312
  left: "left";
10302
- center: "center";
10303
10313
  right: "right";
10314
+ center: "center";
10304
10315
  justify: "justify";
10305
10316
  }>>;
10306
10317
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -10442,10 +10453,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10442
10453
  }>;
10443
10454
  align: z.ZodEnum<{
10444
10455
  left: "left";
10445
- center: "center";
10446
10456
  right: "right";
10447
10457
  top: "top";
10448
10458
  bottom: "bottom";
10459
+ center: "center";
10449
10460
  inside: "inside";
10450
10461
  outside: "outside";
10451
10462
  }>;
@@ -10485,10 +10496,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10485
10496
  }>;
10486
10497
  align: z.ZodEnum<{
10487
10498
  left: "left";
10488
- center: "center";
10489
10499
  right: "right";
10490
10500
  top: "top";
10491
10501
  bottom: "bottom";
10502
+ center: "center";
10492
10503
  inside: "inside";
10493
10504
  outside: "outside";
10494
10505
  }>;
@@ -12153,4 +12164,4 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
12153
12164
  }, z.core.$strip>], "kind">;
12154
12165
  type ContentDocument = z.infer<typeof ContentDocumentSchema>;
12155
12166
  //#endregion
12156
- export { ContentHatchStyleSchema as $, ContentSheetRepeatRange as $t, ContentEmbeddedObjectKind as A, RunConstructExtent as An, ContentSheetCellComment as At, ContentFloatPosition as B, isContentConstructEnd as Bn, ContentSheetConditionalFormatValueSchema as Bt, ContentDocument as C, ContentVectorSchema as Cn, ContentRunSchema as Ct, ContentEmbeddedObject as D, IMAGE_FORMATS as Dn, ContentShapeSchema as Dt, ContentDrawPageSchema as E, FusedNode as En, ContentShape as Et, ContentFloatAlignSchema as F, clampHeadingLevel as Fn, ContentSheetConditionalFormat as Ft, ContentFormulaSchema as G, ContentSheetImage as Gt, ContentFont as H, isRunConstructExtent as Hn, ContentSheetDataValidationSchema as Ht, ContentFloatAxis as I, contentDocumentSharedFields as In, ContentSheetConditionalFormatSchema as It, ContentGradientStyle as J, ContentSheetPrintRangeSchema as Jt, ContentGradientFill as K, ContentSheetImageSchema as Kt, ContentFloatAxisSchema as L, findConstructMarkerImbalance as Ln, ContentSheetConditionalFormatStyle as Lt, ContentFillPattern as M, RunConstructFault as Mn, ContentSheetCellSchema as Mt, ContentFillPatternSchema as N, SheetRuleOperator as Nn, ContentSheetColumn as Nt, ContentEmbeddedObjectBlock as O, ImageFormat as On, ContentSheet as Ot, ContentFloatAlign as P, SheetRuleOperatorSchema as Pn, ContentSheetColumnSchema as Pt, ContentHatchStyle as Q, ContentSheetRangeSchema as Qt, ContentFloatOrigin as R, findRunConstructFault as Rn, ContentSheetConditionalFormatStyleSchema as Rt, ContentDefinedNameSchema as S, ContentVector as Sn, ContentRun as St, ContentDrawPage as T, DecimalStringSchema as Tn, ContentSectionSchema as Tt, ContentFontSchema as U, resolveCellFillColor as Un, ContentSheetDataValidationType as Ut, ContentFloatPositionSchema as V, isContentConstructStart as Vn, ContentSheetDataValidation as Vt, ContentFormula as W, unrecognizedFillKind as Wn, ContentSheetDataValidationTypeSchema as Wt, ContentHatchFill as X, ContentSheetPrintSettingsSchema as Xt, ContentGradientStyleSchema as Y, ContentSheetPrintSettings as Yt, ContentHatchFillSchema as Z, ContentSheetRange as Zt, ContentConstructEnd as _, ContentTableRow as _n, ContentParagraphSchema as _t, ContentBlock as a, ContentSlideSchema as an, ContentInterpretationSchema as at, ContentConstructStartSchema as b, ContentTranscript as bn, ContentPathSegment as bt, ContentBorderSchema as c, ContentStrokeDashSchema as cn, ContentOrigin as ct, ContentCellFill as d, ContentStrokeStyleSchema as dn, ContentPageBreakSchema as dt, ContentSheetRepeatRangeSchema as en, ContentImageBlock as et, ContentCellFillSchema as f, ContentSubpath as fn, ContentPageFurniture as ft, ContentCellValueSchema as g, ContentTableCellSchema as gn, ContentParagraphBordersSchema as gt, ContentCellValue as h, ContentTableCell as hn, ContentParagraphBorders as ht, ContentBitmapFillSchema as i, ContentSlide as in, ContentInterpretation as it, ContentEmbeddedObjectSchema as j, RunConstructExtentSchema as jn, ContentSheetCellCommentSchema as jt, ContentEmbeddedObjectBlockSchema as k, RUN_FONT_PROPERTY_SHAPE as kn, ContentSheetCell as kt, ContentCellBorders as l, ContentStrokeSchema as ln, ContentOriginSchema as lt, ContentCellPatternTypeSchema as m, ContentTable as mn, ContentParagraph as mt, ConstructMarkerImbalance as n, ContentSheetRowSchema as nn, ContentImageOriginal as nt, ContentBlockSchema as o, ContentStroke as on, ContentListMembership as ot, ContentCellPatternType as p, ContentSubpathSchema as pn, ContentPageFurnitureSchema as pt, ContentGradientFillSchema as q, ContentSheetPrintRange as qt, ContentBitmapFill as r, ContentSheetSchema as rn, ContentImageOriginalSchema as rt, ContentBorder as s, ContentStrokeDash as sn, ContentListMembershipSchema as st, CONTENT_ANNOTATION_FIELDS as t, ContentSheetRow as tn, ContentImageBlockSchema as tt, ContentCellBordersSchema as u, ContentStrokeStyle as un, ContentPageBreak as ut, ContentConstructEndSchema as v, ContentTableRowSchema as vn, ContentPathPoint as vt, ContentDocumentSchema as w, DecimalString as wn, ContentSection as wt, ContentDefinedName as x, ContentTranscriptSchema as xn, ContentPathSegmentSchema as xt, ContentConstructStart as y, ContentTableSchema as yn, ContentPathPointSchema as yt, ContentFloatOriginSchema as z, isContentBlock as zn, ContentSheetConditionalFormatValue as zt };
12167
+ export { ContentHatchStyleSchema as $, ContentSheetRepeatRange as $t, ContentEmbeddedObjectKind as A, ImageFormat as An, ContentSheetCellComment as At, ContentFloatPosition as B, findRunConstructFault as Bn, ContentSheetConditionalFormatValueSchema as Bt, ContentDocument as C, ContentTranscriptSchema as Cn, ContentRunSchema as Ct, ContentEmbeddedObject as D, DecimalStringSchema as Dn, ContentShapeSchema as Dt, ContentDrawPageSchema as E, DecimalString as En, ContentShape as Et, ContentFloatAlignSchema as F, SheetRuleOperator as Fn, ContentSheetConditionalFormat as Ft, ContentFormulaSchema as G, resolveCellFillColor as Gn, ContentSheetImage as Gt, ContentFont as H, isContentConstructEnd as Hn, ContentSheetDataValidationSchema as Ht, ContentFloatAxis as I, SheetRuleOperatorSchema as In, ContentSheetConditionalFormatSchema as It, ContentGradientStyle as J, ContentSheetPrintRangeSchema as Jt, ContentGradientFill as K, unrecognizedFillKind as Kn, ContentSheetImageSchema as Kt, ContentFloatAxisSchema as L, clampHeadingLevel as Ln, ContentSheetConditionalFormatStyle as Lt, ContentFillPattern as M, RunConstructExtent as Mn, ContentSheetCellSchema as Mt, ContentFillPatternSchema as N, RunConstructExtentSchema as Nn, ContentSheetColumn as Nt, ContentEmbeddedObjectBlock as O, FusedNode as On, ContentSheet as Ot, ContentFloatAlign as P, RunConstructFault as Pn, ContentSheetColumnSchema as Pt, ContentHatchStyle as Q, ContentSheetRangeSchema as Qt, ContentFloatOrigin as R, contentDocumentSharedFields as Rn, ContentSheetConditionalFormatStyleSchema as Rt, ContentDefinedNameSchema as S, ContentTranscript as Sn, ContentRun as St, ContentDrawPage as T, ContentVectorSchema as Tn, ContentSectionSchema as Tt, ContentFontSchema as U, isContentConstructStart as Un, ContentSheetDataValidationType as Ut, ContentFloatPositionSchema as V, isContentBlock as Vn, ContentSheetDataValidation as Vt, ContentFormula as W, isRunConstructExtent as Wn, ContentSheetDataValidationTypeSchema as Wt, ContentHatchFill as X, ContentSheetPrintSettingsSchema as Xt, ContentGradientStyleSchema as Y, ContentSheetPrintSettings as Yt, ContentHatchFillSchema as Z, ContentSheetRange as Zt, ContentConstructEnd as _, ContentTableColumn as _n, ContentParagraphSchema as _t, ContentBlock as a, ContentSlideSchema as an, ContentInterpretationSchema as at, ContentConstructStartSchema as b, ContentTableRowSchema as bn, ContentPathSegment as bt, ContentBorderSchema as c, ContentStrokeDashSchema as cn, ContentOrigin as ct, ContentCellFill as d, ContentStrokeStyleSchema as dn, ContentPageBreakSchema as dt, ContentSheetRepeatRangeSchema as en, ContentImageBlock as et, ContentCellFillSchema as f, ContentSubpath as fn, ContentPageFurniture as ft, ContentCellValueSchema as g, ContentTableCellSchema as gn, ContentParagraphBordersSchema as gt, ContentCellValue as h, ContentTableCell as hn, ContentParagraphBorders as ht, ContentBitmapFillSchema as i, ContentSlide as in, ContentInterpretation as it, ContentEmbeddedObjectSchema as j, RUN_FONT_PROPERTY_SHAPE as jn, ContentSheetCellCommentSchema as jt, ContentEmbeddedObjectBlockSchema as k, IMAGE_FORMATS as kn, ContentSheetCell as kt, ContentCellBorders as l, ContentStrokeSchema as ln, ContentOriginSchema as lt, ContentCellPatternTypeSchema as m, ContentTable as mn, ContentParagraph as mt, ConstructMarkerImbalance as n, ContentSheetRowSchema as nn, ContentImageOriginal as nt, ContentBlockSchema as o, ContentStroke as on, ContentListMembership as ot, ContentCellPatternType as p, ContentSubpathSchema as pn, ContentPageFurnitureSchema as pt, ContentGradientFillSchema as q, ContentSheetPrintRange as qt, ContentBitmapFill as r, ContentSheetSchema as rn, ContentImageOriginalSchema as rt, ContentBorder as s, ContentStrokeDash as sn, ContentListMembershipSchema as st, CONTENT_ANNOTATION_FIELDS as t, ContentSheetRow as tn, ContentImageBlockSchema as tt, ContentCellBordersSchema as u, ContentStrokeStyle as un, ContentPageBreak as ut, ContentConstructEndSchema as v, ContentTableColumnSchema as vn, ContentPathPoint as vt, ContentDocumentSchema as w, ContentVector as wn, ContentSection as wt, ContentDefinedName as x, ContentTableSchema as xn, ContentPathSegmentSchema as xt, ContentConstructStart as y, ContentTableRow as yn, ContentPathPointSchema as yt, ContentFloatOriginSchema as z, findConstructMarkerImbalance as zn, ContentSheetConditionalFormatValue as zt };