document-schema 7.13.0 → 7.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/codec.d.cts +1 -1
  2. package/dist/codec.d.ts +1 -1
  3. package/dist/{construct-GVdTKrE7.d.cts → construct-C9cYkjnd.d.cts} +3 -3
  4. package/dist/{construct-GVdTKrE7.d.ts → construct-C9cYkjnd.d.ts} +3 -3
  5. package/dist/construct.d.cts +1 -1
  6. package/dist/construct.d.ts +1 -1
  7. package/dist/{content-CvvaHPSp.d.cts → content-BNUhgRbB.d.cts} +30 -27
  8. package/dist/{content-DbjeTN2j.d.ts → content-CYPkduUB.d.ts} +30 -27
  9. package/dist/content-json-schema-defs.cjs +2 -1
  10. package/dist/content-json-schema-defs.js +2 -1
  11. package/dist/content.cjs +3 -2
  12. package/dist/content.d.cts +1 -1
  13. package/dist/content.d.ts +1 -1
  14. package/dist/content.js +3 -2
  15. package/dist/decompose.d.cts +2 -2
  16. package/dist/decompose.d.ts +2 -2
  17. package/dist/definitions.d.cts +4 -4
  18. package/dist/definitions.d.ts +4 -4
  19. package/dist/factor-styles.d.cts +1 -1
  20. package/dist/factor-styles.d.ts +1 -1
  21. package/dist/flatten.d.cts +1 -1
  22. package/dist/flatten.d.ts +1 -1
  23. package/dist/index.d.cts +4 -4
  24. package/dist/index.d.ts +4 -4
  25. package/dist/{package-node-D7WUiIDz.d.cts → package-node-C1HxQdNK.d.cts} +11 -11
  26. package/dist/{package-node--fbVCVcl.d.ts → package-node-DdotoNEU.d.ts} +11 -11
  27. package/dist/package-node.d.cts +1 -1
  28. package/dist/package-node.d.ts +1 -1
  29. package/dist/package.d.cts +6 -6
  30. package/dist/package.d.ts +6 -6
  31. package/dist/schema-io.cjs +2 -2
  32. package/dist/schema-io.d.cts +1 -1
  33. package/dist/schema-io.d.ts +1 -1
  34. package/dist/schema-io.js +2 -2
  35. package/dist/{style-BGMcYrD2.d.cts → style-D06NwxAJ.d.cts} +1 -1
  36. package/dist/{style-BGMcYrD2.d.ts → style-D06NwxAJ.d.ts} +1 -1
  37. package/dist/style.d.cts +1 -1
  38. package/dist/style.d.ts +1 -1
  39. package/dist/table-grid.d.cts +4 -2
  40. package/dist/table-grid.d.ts +4 -2
  41. package/dist/text-layout.d.cts +1 -1
  42. package/dist/text-layout.d.ts +1 -1
  43. package/package.json +1 -1
  44. package/schemas/content-document.schema.json +19 -16
  45. package/schemas/document-tree.schema.json +6 -3
package/dist/codec.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { C as ContentDocument } from "./content-CvvaHPSp.cjs";
1
+ import { C as ContentDocument } from "./content-BNUhgRbB.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-DbjeTN2j.js";
1
+ import { C as ContentDocument } from "./content-CYPkduUB.js";
2
2
  //#region src/codec.d.ts
3
3
  interface ContentCodec<TOptions = unknown> {
4
4
  read(bytes: Uint8Array, options?: TOptions): ContentDocument;
@@ -1,12 +1,12 @@
1
1
  import { z } from "zod";
2
2
  //#region src/construct.d.ts
3
3
  declare const ContentControlTypeSchema: z.ZodEnum<{
4
- date: "date";
5
4
  richText: "richText";
6
5
  plainText: "plainText";
7
6
  checkbox: "checkbox";
8
7
  dropDown: "dropDown";
9
8
  comboBox: "comboBox";
9
+ date: "date";
10
10
  picture: "picture";
11
11
  repeatingSection: "repeatingSection";
12
12
  button: "button";
@@ -23,12 +23,12 @@ type ContentControlLock = z.infer<typeof ContentControlLockSchema>;
23
23
  declare const ContentControlDescriptorSchema: z.ZodObject<{
24
24
  kind: z.ZodLiteral<"contentControl">;
25
25
  controlType: z.ZodEnum<{
26
- date: "date";
27
26
  richText: "richText";
28
27
  plainText: "plainText";
29
28
  checkbox: "checkbox";
30
29
  dropDown: "dropDown";
31
30
  comboBox: "comboBox";
31
+ date: "date";
32
32
  picture: "picture";
33
33
  repeatingSection: "repeatingSection";
34
34
  button: "button";
@@ -252,12 +252,12 @@ type DivisionDescriptor = z.infer<typeof DivisionDescriptorSchema>;
252
252
  declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
253
253
  kind: z.ZodLiteral<"contentControl">;
254
254
  controlType: z.ZodEnum<{
255
- date: "date";
256
255
  richText: "richText";
257
256
  plainText: "plainText";
258
257
  checkbox: "checkbox";
259
258
  dropDown: "dropDown";
260
259
  comboBox: "comboBox";
260
+ date: "date";
261
261
  picture: "picture";
262
262
  repeatingSection: "repeatingSection";
263
263
  button: "button";
@@ -1,12 +1,12 @@
1
1
  import { z } from "zod";
2
2
  //#region src/construct.d.ts
3
3
  declare const ContentControlTypeSchema: z.ZodEnum<{
4
- date: "date";
5
4
  richText: "richText";
6
5
  plainText: "plainText";
7
6
  checkbox: "checkbox";
8
7
  dropDown: "dropDown";
9
8
  comboBox: "comboBox";
9
+ date: "date";
10
10
  picture: "picture";
11
11
  repeatingSection: "repeatingSection";
12
12
  button: "button";
@@ -23,12 +23,12 @@ type ContentControlLock = z.infer<typeof ContentControlLockSchema>;
23
23
  declare const ContentControlDescriptorSchema: z.ZodObject<{
24
24
  kind: z.ZodLiteral<"contentControl">;
25
25
  controlType: z.ZodEnum<{
26
- date: "date";
27
26
  richText: "richText";
28
27
  plainText: "plainText";
29
28
  checkbox: "checkbox";
30
29
  dropDown: "dropDown";
31
30
  comboBox: "comboBox";
31
+ date: "date";
32
32
  picture: "picture";
33
33
  repeatingSection: "repeatingSection";
34
34
  button: "button";
@@ -252,12 +252,12 @@ type DivisionDescriptor = z.infer<typeof DivisionDescriptorSchema>;
252
252
  declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
253
253
  kind: z.ZodLiteral<"contentControl">;
254
254
  controlType: z.ZodEnum<{
255
- date: "date";
256
255
  richText: "richText";
257
256
  plainText: "plainText";
258
257
  checkbox: "checkbox";
259
258
  dropDown: "dropDown";
260
259
  comboBox: "comboBox";
260
+ date: "date";
261
261
  picture: "picture";
262
262
  repeatingSection: "repeatingSection";
263
263
  button: "button";
@@ -1,2 +1,2 @@
1
- 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";
1
+ 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";
2
2
  export { AnchorDescriptor, AnchorDescriptorSchema, AnchorType, AnchorTypeSchema, ConstructDescriptor, ConstructDescriptorSchema, ContentControlDescriptor, ContentControlDescriptorSchema, ContentControlLock, ContentControlLockSchema, ContentControlType, ContentControlTypeSchema, DivisionDescriptor, DivisionDescriptorSchema, DivisionSource, DivisionSourceSchema, FieldDescriptor, FieldDescriptorSchema, LinkDescriptor, LinkDescriptorSchema, LinkTarget, LinkTargetSchema, ProvenanceChange, ProvenanceChangeSchema, ProvenanceDescriptor, ProvenanceDescriptorSchema };
@@ -1,2 +1,2 @@
1
- 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";
1
+ 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";
2
2
  export { AnchorDescriptor, AnchorDescriptorSchema, AnchorType, AnchorTypeSchema, ConstructDescriptor, ConstructDescriptorSchema, ContentControlDescriptor, ContentControlDescriptorSchema, ContentControlLock, ContentControlLockSchema, ContentControlType, ContentControlTypeSchema, DivisionDescriptor, DivisionDescriptorSchema, DivisionSource, DivisionSourceSchema, FieldDescriptor, FieldDescriptorSchema, LinkDescriptor, LinkDescriptorSchema, LinkTarget, LinkTargetSchema, ProvenanceChange, ProvenanceChangeSchema, ProvenanceDescriptor, ProvenanceDescriptorSchema };
@@ -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-BGMcYrD2.cjs";
6
+ import { o as TextDirection } from "./style-D06NwxAJ.cjs";
7
7
  import { z } from "zod";
8
8
  //#region src/content.d.ts
9
9
  type FusedNode<T> = T & {
@@ -205,12 +205,12 @@ declare const RunConstructExtentSchema: z.ZodObject<{
205
205
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
206
206
  kind: z.ZodLiteral<"contentControl">;
207
207
  controlType: z.ZodEnum<{
208
- date: "date";
209
208
  richText: "richText";
210
209
  plainText: "plainText";
211
210
  checkbox: "checkbox";
212
211
  dropDown: "dropDown";
213
212
  comboBox: "comboBox";
213
+ date: "date";
214
214
  picture: "picture";
215
215
  repeatingSection: "repeatingSection";
216
216
  button: "button";
@@ -588,12 +588,12 @@ declare const ContentParagraphSchema: z.ZodObject<{
588
588
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
589
589
  kind: z.ZodLiteral<"contentControl">;
590
590
  controlType: z.ZodEnum<{
591
- date: "date";
592
591
  richText: "richText";
593
592
  plainText: "plainText";
594
593
  checkbox: "checkbox";
595
594
  dropDown: "dropDown";
596
595
  comboBox: "comboBox";
596
+ date: "date";
597
597
  picture: "picture";
598
598
  repeatingSection: "repeatingSection";
599
599
  button: "button";
@@ -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
- right: "right";
788
787
  center: "center";
788
+ right: "right";
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";
924
925
  right: "right";
925
926
  top: "top";
926
927
  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";
967
968
  right: "right";
968
969
  top: "top";
969
970
  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";
1012
1013
  right: "right";
1013
1014
  top: "top";
1014
1015
  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";
1055
1056
  right: "right";
1056
1057
  top: "top";
1057
1058
  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";
1162
1163
  right: "right";
1163
1164
  top: "top";
1164
1165
  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";
1205
1206
  right: "right";
1206
1207
  top: "top";
1207
1208
  bottom: "bottom";
1208
- center: "center";
1209
1209
  inside: "inside";
1210
1210
  outside: "outside";
1211
1211
  }>;
@@ -1305,12 +1305,12 @@ declare const ContentConstructStartSchema: z.ZodObject<{
1305
1305
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
1306
1306
  kind: z.ZodLiteral<"contentControl">;
1307
1307
  controlType: z.ZodEnum<{
1308
- date: "date";
1309
1308
  richText: "richText";
1310
1309
  plainText: "plainText";
1311
1310
  checkbox: "checkbox";
1312
1311
  dropDown: "dropDown";
1313
1312
  comboBox: "comboBox";
1313
+ date: "date";
1314
1314
  picture: "picture";
1315
1315
  repeatingSection: "repeatingSection";
1316
1316
  button: "button";
@@ -1516,6 +1516,7 @@ interface ContentTableRow {
1516
1516
  cells: ContentTableCell[];
1517
1517
  heightPt?: number;
1518
1518
  direction?: TextDirection;
1519
+ isHeader?: boolean;
1519
1520
  }
1520
1521
  interface ContentTable {
1521
1522
  kind: "table";
@@ -1588,12 +1589,12 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
1588
1589
  }, z.core.$strip>>;
1589
1590
  }, z.core.$strip>>;
1590
1591
  objectKind: z.ZodEnum<{
1591
- chart: "chart";
1592
1592
  formula: "formula";
1593
1593
  wordprocessing: "wordprocessing";
1594
1594
  presentation: "presentation";
1595
1595
  spreadsheet: "spreadsheet";
1596
1596
  drawing: "drawing";
1597
+ chart: "chart";
1597
1598
  }>;
1598
1599
  document: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
1599
1600
  sections: z.ZodArray<z.ZodObject<{
@@ -2292,8 +2293,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2292
2293
  }, z.core.$strip>>;
2293
2294
  alignment: z.ZodOptional<z.ZodEnum<{
2294
2295
  left: "left";
2295
- right: "right";
2296
2296
  center: "center";
2297
+ right: "right";
2297
2298
  justify: "justify";
2298
2299
  }>>;
2299
2300
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -2435,10 +2436,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2435
2436
  }>;
2436
2437
  align: z.ZodEnum<{
2437
2438
  left: "left";
2439
+ center: "center";
2438
2440
  right: "right";
2439
2441
  top: "top";
2440
2442
  bottom: "bottom";
2441
- center: "center";
2442
2443
  inside: "inside";
2443
2444
  outside: "outside";
2444
2445
  }>;
@@ -2478,10 +2479,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
2478
2479
  }>;
2479
2480
  align: z.ZodEnum<{
2480
2481
  left: "left";
2482
+ center: "center";
2481
2483
  right: "right";
2482
2484
  top: "top";
2483
2485
  bottom: "bottom";
2484
- center: "center";
2485
2486
  inside: "inside";
2486
2487
  outside: "outside";
2487
2488
  }>;
@@ -4605,9 +4606,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
4605
4606
  }, z.core.$strip>>;
4606
4607
  }, z.core.$strip>>;
4607
4608
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4609
+ center: "center";
4608
4610
  top: "top";
4609
4611
  bottom: "bottom";
4610
- center: "center";
4611
4612
  }>>;
4612
4613
  formula: z.ZodOptional<z.ZodString>;
4613
4614
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4832,9 +4833,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
4832
4833
  }, z.core.$strip>>;
4833
4834
  }, z.core.$strip>>;
4834
4835
  verticalAlign: z.ZodOptional<z.ZodEnum<{
4836
+ center: "center";
4835
4837
  top: "top";
4836
4838
  bottom: "bottom";
4837
- center: "center";
4838
4839
  }>>;
4839
4840
  formula: z.ZodOptional<z.ZodString>;
4840
4841
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -4871,6 +4872,7 @@ declare const ContentTableRowSchema: z.ZodObject<{
4871
4872
  ltr: "ltr";
4872
4873
  rtl: "rtl";
4873
4874
  }>>;
4875
+ isHeader: z.ZodOptional<z.ZodBoolean>;
4874
4876
  }, z.core.$strip>;
4875
4877
  declare const ContentTableSchema: z.ZodObject<{
4876
4878
  origin: z.ZodOptional<z.ZodEnum<{
@@ -5094,9 +5096,9 @@ declare const ContentTableSchema: z.ZodObject<{
5094
5096
  }, z.core.$strip>>;
5095
5097
  }, z.core.$strip>>;
5096
5098
  verticalAlign: z.ZodOptional<z.ZodEnum<{
5099
+ center: "center";
5097
5100
  top: "top";
5098
5101
  bottom: "bottom";
5099
- center: "center";
5100
5102
  }>>;
5101
5103
  formula: z.ZodOptional<z.ZodString>;
5102
5104
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5133,6 +5135,7 @@ declare const ContentTableSchema: z.ZodObject<{
5133
5135
  ltr: "ltr";
5134
5136
  rtl: "rtl";
5135
5137
  }>>;
5138
+ isHeader: z.ZodOptional<z.ZodBoolean>;
5136
5139
  }, z.core.$strip>>;
5137
5140
  columnWidthsPt: z.ZodArray<z.ZodNumber>;
5138
5141
  sourcePath: z.ZodOptional<z.ZodString>;
@@ -5826,8 +5829,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
5826
5829
  }, z.core.$strip>>;
5827
5830
  alignment: z.ZodOptional<z.ZodEnum<{
5828
5831
  left: "left";
5829
- right: "right";
5830
5832
  center: "center";
5833
+ right: "right";
5831
5834
  justify: "justify";
5832
5835
  }>>;
5833
5836
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -6731,10 +6734,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6731
6734
  }>;
6732
6735
  align: z.ZodEnum<{
6733
6736
  left: "left";
6737
+ center: "center";
6734
6738
  right: "right";
6735
6739
  top: "top";
6736
6740
  bottom: "bottom";
6737
- center: "center";
6738
6741
  inside: "inside";
6739
6742
  outside: "outside";
6740
6743
  }>;
@@ -6774,10 +6777,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
6774
6777
  }>;
6775
6778
  align: z.ZodEnum<{
6776
6779
  left: "left";
6780
+ center: "center";
6777
6781
  right: "right";
6778
6782
  top: "top";
6779
6783
  bottom: "bottom";
6780
- center: "center";
6781
6784
  inside: "inside";
6782
6785
  outside: "outside";
6783
6786
  }>;
@@ -7168,8 +7171,8 @@ declare const ContentSheetSchema: z.ZodObject<{
7168
7171
  }, z.core.$strip>>;
7169
7172
  alignment: z.ZodOptional<z.ZodEnum<{
7170
7173
  left: "left";
7171
- right: "right";
7172
7174
  center: "center";
7175
+ right: "right";
7173
7176
  justify: "justify";
7174
7177
  }>>;
7175
7178
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -7311,10 +7314,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7311
7314
  }>;
7312
7315
  align: z.ZodEnum<{
7313
7316
  left: "left";
7317
+ center: "center";
7314
7318
  right: "right";
7315
7319
  top: "top";
7316
7320
  bottom: "bottom";
7317
- center: "center";
7318
7321
  inside: "inside";
7319
7322
  outside: "outside";
7320
7323
  }>;
@@ -7354,10 +7357,10 @@ declare const ContentSheetSchema: z.ZodObject<{
7354
7357
  }>;
7355
7358
  align: z.ZodEnum<{
7356
7359
  left: "left";
7360
+ center: "center";
7357
7361
  right: "right";
7358
7362
  top: "top";
7359
7363
  bottom: "bottom";
7360
- center: "center";
7361
7364
  inside: "inside";
7362
7365
  outside: "outside";
7363
7366
  }>;
@@ -10296,8 +10299,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10296
10299
  }, z.core.$strip>>;
10297
10300
  alignment: z.ZodOptional<z.ZodEnum<{
10298
10301
  left: "left";
10299
- right: "right";
10300
10302
  center: "center";
10303
+ right: "right";
10301
10304
  justify: "justify";
10302
10305
  }>>;
10303
10306
  verticalAlignment: z.ZodOptional<z.ZodEnum<{
@@ -10439,10 +10442,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10439
10442
  }>;
10440
10443
  align: z.ZodEnum<{
10441
10444
  left: "left";
10445
+ center: "center";
10442
10446
  right: "right";
10443
10447
  top: "top";
10444
10448
  bottom: "bottom";
10445
- center: "center";
10446
10449
  inside: "inside";
10447
10450
  outside: "outside";
10448
10451
  }>;
@@ -10482,10 +10485,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
10482
10485
  }>;
10483
10486
  align: z.ZodEnum<{
10484
10487
  left: "left";
10488
+ center: "center";
10485
10489
  right: "right";
10486
10490
  top: "top";
10487
10491
  bottom: "bottom";
10488
- center: "center";
10489
10492
  inside: "inside";
10490
10493
  outside: "outside";
10491
10494
  }>;