document-content-model 7.9.0 → 7.9.1
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.
- package/dist/codec.d.cts +1 -1
- package/dist/codec.d.ts +1 -1
- package/dist/{construct-C4XiF8OW.d.cts → construct-C9cYkjnd.d.cts} +6 -6
- package/dist/{construct-C4XiF8OW.d.ts → construct-C9cYkjnd.d.ts} +6 -6
- package/dist/construct.d.cts +1 -1
- package/dist/construct.d.ts +1 -1
- package/dist/{content-C1hJ6olW.d.ts → content-B6SPQuuq.d.ts} +45 -39
- package/dist/{content-DN5CqH6Y.d.cts → content-VhC4WCbj.d.cts} +45 -39
- package/dist/content.d.cts +1 -1
- package/dist/content.d.ts +1 -1
- package/dist/decompose.d.cts +2 -2
- package/dist/decompose.d.ts +2 -2
- package/dist/definitions.d.cts +4 -4
- package/dist/definitions.d.ts +4 -4
- package/dist/factor-styles.d.cts +1 -1
- package/dist/factor-styles.d.ts +1 -1
- package/dist/flatten.d.cts +1 -1
- package/dist/flatten.d.ts +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/{package-node-DktLHAKG.d.cts → package-node-ChC2_Itm.d.cts} +13 -13
- package/dist/{package-node-B9aFWtrZ.d.ts → package-node-mRax-XfS.d.ts} +13 -13
- package/dist/package-node.d.cts +1 -1
- package/dist/package-node.d.ts +1 -1
- package/dist/package.d.cts +6 -6
- package/dist/package.d.ts +6 -6
- package/dist/schema-io.cjs +2 -2
- package/dist/schema-io.d.cts +1 -1
- package/dist/schema-io.d.ts +1 -1
- package/dist/schema-io.js +2 -2
- package/dist/{style-D06NwxAJ.d.cts → style-BGMcYrD2.d.cts} +1 -1
- package/dist/{style-D06NwxAJ.d.ts → style-BGMcYrD2.d.ts} +1 -1
- package/dist/style.d.cts +1 -1
- package/dist/style.d.ts +1 -1
- package/dist/text-layout.d.cts +1 -1
- package/dist/text-layout.d.ts +1 -1
- package/package.json +1 -1
- package/schemas/content-document.schema.json +13 -13
- package/schemas/document-tree.schema.json +3 -3
package/dist/codec.d.cts
CHANGED
package/dist/codec.d.ts
CHANGED
|
@@ -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";
|
|
@@ -94,19 +94,19 @@ declare const FieldDescriptorSchema: z.ZodObject<{
|
|
|
94
94
|
}, z.core.$strict>;
|
|
95
95
|
type FieldDescriptor = z.infer<typeof FieldDescriptorSchema>;
|
|
96
96
|
declare const AnchorTypeSchema: z.ZodEnum<{
|
|
97
|
-
comment: "comment";
|
|
98
97
|
bookmark: "bookmark";
|
|
99
98
|
footnote: "footnote";
|
|
100
99
|
endnote: "endnote";
|
|
100
|
+
comment: "comment";
|
|
101
101
|
}>;
|
|
102
102
|
type AnchorType = z.infer<typeof AnchorTypeSchema>;
|
|
103
103
|
declare const AnchorDescriptorSchema: z.ZodObject<{
|
|
104
104
|
kind: z.ZodLiteral<"anchor">;
|
|
105
105
|
anchorType: z.ZodEnum<{
|
|
106
|
-
comment: "comment";
|
|
107
106
|
bookmark: "bookmark";
|
|
108
107
|
footnote: "footnote";
|
|
109
108
|
endnote: "endnote";
|
|
109
|
+
comment: "comment";
|
|
110
110
|
}>;
|
|
111
111
|
name: z.ZodString;
|
|
112
112
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -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";
|
|
@@ -321,10 +321,10 @@ declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
321
321
|
}, z.core.$strict>, z.ZodObject<{
|
|
322
322
|
kind: z.ZodLiteral<"anchor">;
|
|
323
323
|
anchorType: z.ZodEnum<{
|
|
324
|
-
comment: "comment";
|
|
325
324
|
bookmark: "bookmark";
|
|
326
325
|
footnote: "footnote";
|
|
327
326
|
endnote: "endnote";
|
|
327
|
+
comment: "comment";
|
|
328
328
|
}>;
|
|
329
329
|
name: z.ZodString;
|
|
330
330
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -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";
|
|
@@ -94,19 +94,19 @@ declare const FieldDescriptorSchema: z.ZodObject<{
|
|
|
94
94
|
}, z.core.$strict>;
|
|
95
95
|
type FieldDescriptor = z.infer<typeof FieldDescriptorSchema>;
|
|
96
96
|
declare const AnchorTypeSchema: z.ZodEnum<{
|
|
97
|
-
comment: "comment";
|
|
98
97
|
bookmark: "bookmark";
|
|
99
98
|
footnote: "footnote";
|
|
100
99
|
endnote: "endnote";
|
|
100
|
+
comment: "comment";
|
|
101
101
|
}>;
|
|
102
102
|
type AnchorType = z.infer<typeof AnchorTypeSchema>;
|
|
103
103
|
declare const AnchorDescriptorSchema: z.ZodObject<{
|
|
104
104
|
kind: z.ZodLiteral<"anchor">;
|
|
105
105
|
anchorType: z.ZodEnum<{
|
|
106
|
-
comment: "comment";
|
|
107
106
|
bookmark: "bookmark";
|
|
108
107
|
footnote: "footnote";
|
|
109
108
|
endnote: "endnote";
|
|
109
|
+
comment: "comment";
|
|
110
110
|
}>;
|
|
111
111
|
name: z.ZodString;
|
|
112
112
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -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";
|
|
@@ -321,10 +321,10 @@ declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
321
321
|
}, z.core.$strict>, z.ZodObject<{
|
|
322
322
|
kind: z.ZodLiteral<"anchor">;
|
|
323
323
|
anchorType: z.ZodEnum<{
|
|
324
|
-
comment: "comment";
|
|
325
324
|
bookmark: "bookmark";
|
|
326
325
|
footnote: "footnote";
|
|
327
326
|
endnote: "endnote";
|
|
327
|
+
comment: "comment";
|
|
328
328
|
}>;
|
|
329
329
|
name: z.ZodString;
|
|
330
330
|
definition: z.ZodOptional<z.ZodString>;
|
package/dist/construct.d.cts
CHANGED
|
@@ -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-
|
|
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 };
|
package/dist/construct.d.ts
CHANGED
|
@@ -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-
|
|
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.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-
|
|
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 & {
|
|
@@ -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";
|
|
@@ -274,10 +274,10 @@ declare const RunConstructExtentSchema: z.ZodObject<{
|
|
|
274
274
|
}, z.core.$strict>, z.ZodObject<{
|
|
275
275
|
kind: z.ZodLiteral<"anchor">;
|
|
276
276
|
anchorType: z.ZodEnum<{
|
|
277
|
-
comment: "comment";
|
|
278
277
|
bookmark: "bookmark";
|
|
279
278
|
footnote: "footnote";
|
|
280
279
|
endnote: "endnote";
|
|
280
|
+
comment: "comment";
|
|
281
281
|
}>;
|
|
282
282
|
name: z.ZodString;
|
|
283
283
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -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";
|
|
@@ -657,10 +657,10 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
657
657
|
}, z.core.$strict>, z.ZodObject<{
|
|
658
658
|
kind: z.ZodLiteral<"anchor">;
|
|
659
659
|
anchorType: z.ZodEnum<{
|
|
660
|
-
comment: "comment";
|
|
661
660
|
bookmark: "bookmark";
|
|
662
661
|
footnote: "footnote";
|
|
663
662
|
endnote: "endnote";
|
|
663
|
+
comment: "comment";
|
|
664
664
|
}>;
|
|
665
665
|
name: z.ZodString;
|
|
666
666
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -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
|
}>;
|
|
@@ -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";
|
|
@@ -1374,10 +1374,10 @@ declare const ContentConstructStartSchema: z.ZodObject<{
|
|
|
1374
1374
|
}, z.core.$strict>, z.ZodObject<{
|
|
1375
1375
|
kind: z.ZodLiteral<"anchor">;
|
|
1376
1376
|
anchorType: z.ZodEnum<{
|
|
1377
|
-
comment: "comment";
|
|
1378
1377
|
bookmark: "bookmark";
|
|
1379
1378
|
footnote: "footnote";
|
|
1380
1379
|
endnote: "endnote";
|
|
1380
|
+
comment: "comment";
|
|
1381
1381
|
}>;
|
|
1382
1382
|
name: z.ZodString;
|
|
1383
1383
|
definition: z.ZodOptional<z.ZodString>;
|
|
@@ -1509,6 +1509,8 @@ interface ContentTableCell {
|
|
|
1509
1509
|
sourcePath?: string;
|
|
1510
1510
|
source?: SourceResidue;
|
|
1511
1511
|
frames?: LayoutFrame[];
|
|
1512
|
+
origin?: ContentOrigin;
|
|
1513
|
+
interpretation?: ContentInterpretation;
|
|
1512
1514
|
}
|
|
1513
1515
|
interface ContentTableRow {
|
|
1514
1516
|
cells: ContentTableCell[];
|
|
@@ -1522,6 +1524,8 @@ interface ContentTable {
|
|
|
1522
1524
|
sourcePath?: string;
|
|
1523
1525
|
source?: SourceResidue;
|
|
1524
1526
|
frames?: LayoutFrame[];
|
|
1527
|
+
origin?: ContentOrigin;
|
|
1528
|
+
interpretation?: ContentInterpretation;
|
|
1525
1529
|
}
|
|
1526
1530
|
type ContentEmbeddedObjectKind = "formula" | "wordprocessing" | "presentation" | "spreadsheet" | "drawing" | "chart";
|
|
1527
1531
|
interface ContentEmbeddedObject {
|
|
@@ -1533,6 +1537,8 @@ interface ContentEmbeddedObject {
|
|
|
1533
1537
|
offsetXPt?: number;
|
|
1534
1538
|
offsetYPt?: number;
|
|
1535
1539
|
source?: SourceResidue;
|
|
1540
|
+
origin?: ContentOrigin;
|
|
1541
|
+
interpretation?: ContentInterpretation;
|
|
1536
1542
|
}
|
|
1537
1543
|
interface ContentEmbeddedObjectBlock extends ContentEmbeddedObject {
|
|
1538
1544
|
kind: "embeddedObject";
|
|
@@ -2280,8 +2286,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2280
2286
|
}, z.core.$strip>>;
|
|
2281
2287
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
2282
2288
|
left: "left";
|
|
2283
|
-
center: "center";
|
|
2284
2289
|
right: "right";
|
|
2290
|
+
center: "center";
|
|
2285
2291
|
justify: "justify";
|
|
2286
2292
|
}>>;
|
|
2287
2293
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2423,10 +2429,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2423
2429
|
}>;
|
|
2424
2430
|
align: z.ZodEnum<{
|
|
2425
2431
|
left: "left";
|
|
2426
|
-
center: "center";
|
|
2427
2432
|
right: "right";
|
|
2428
2433
|
top: "top";
|
|
2429
2434
|
bottom: "bottom";
|
|
2435
|
+
center: "center";
|
|
2430
2436
|
inside: "inside";
|
|
2431
2437
|
outside: "outside";
|
|
2432
2438
|
}>;
|
|
@@ -2466,10 +2472,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2466
2472
|
}>;
|
|
2467
2473
|
align: z.ZodEnum<{
|
|
2468
2474
|
left: "left";
|
|
2469
|
-
center: "center";
|
|
2470
2475
|
right: "right";
|
|
2471
2476
|
top: "top";
|
|
2472
2477
|
bottom: "bottom";
|
|
2478
|
+
center: "center";
|
|
2473
2479
|
inside: "inside";
|
|
2474
2480
|
outside: "outside";
|
|
2475
2481
|
}>;
|
|
@@ -2558,10 +2564,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2558
2564
|
endColumn: z.ZodNumber;
|
|
2559
2565
|
}, z.core.$strip>>;
|
|
2560
2566
|
type: z.ZodEnum<{
|
|
2561
|
-
decimal: "decimal";
|
|
2562
|
-
list: "list";
|
|
2563
2567
|
date: "date";
|
|
2564
2568
|
custom: "custom";
|
|
2569
|
+
decimal: "decimal";
|
|
2570
|
+
list: "list";
|
|
2565
2571
|
time: "time";
|
|
2566
2572
|
whole: "whole";
|
|
2567
2573
|
textLength: "textLength";
|
|
@@ -4592,9 +4598,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
4592
4598
|
}, z.core.$strip>>;
|
|
4593
4599
|
}, z.core.$strip>>;
|
|
4594
4600
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4595
|
-
center: "center";
|
|
4596
4601
|
top: "top";
|
|
4597
4602
|
bottom: "bottom";
|
|
4603
|
+
center: "center";
|
|
4598
4604
|
}>>;
|
|
4599
4605
|
formula: z.ZodOptional<z.ZodString>;
|
|
4600
4606
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4819,9 +4825,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4819
4825
|
}, z.core.$strip>>;
|
|
4820
4826
|
}, z.core.$strip>>;
|
|
4821
4827
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4822
|
-
center: "center";
|
|
4823
4828
|
top: "top";
|
|
4824
4829
|
bottom: "bottom";
|
|
4830
|
+
center: "center";
|
|
4825
4831
|
}>>;
|
|
4826
4832
|
formula: z.ZodOptional<z.ZodString>;
|
|
4827
4833
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -5081,9 +5087,9 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
5081
5087
|
}, z.core.$strip>>;
|
|
5082
5088
|
}, z.core.$strip>>;
|
|
5083
5089
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
5084
|
-
center: "center";
|
|
5085
5090
|
top: "top";
|
|
5086
5091
|
bottom: "bottom";
|
|
5092
|
+
center: "center";
|
|
5087
5093
|
}>>;
|
|
5088
5094
|
formula: z.ZodOptional<z.ZodString>;
|
|
5089
5095
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -5806,8 +5812,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
5806
5812
|
}, z.core.$strip>>;
|
|
5807
5813
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
5808
5814
|
left: "left";
|
|
5809
|
-
center: "center";
|
|
5810
5815
|
right: "right";
|
|
5816
|
+
center: "center";
|
|
5811
5817
|
justify: "justify";
|
|
5812
5818
|
}>>;
|
|
5813
5819
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -5939,10 +5945,10 @@ declare const SheetRuleOperatorSchema: z.ZodEnum<{
|
|
|
5939
5945
|
}>;
|
|
5940
5946
|
type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
|
|
5941
5947
|
declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
|
|
5942
|
-
decimal: "decimal";
|
|
5943
|
-
list: "list";
|
|
5944
5948
|
date: "date";
|
|
5945
5949
|
custom: "custom";
|
|
5950
|
+
decimal: "decimal";
|
|
5951
|
+
list: "list";
|
|
5946
5952
|
time: "time";
|
|
5947
5953
|
whole: "whole";
|
|
5948
5954
|
textLength: "textLength";
|
|
@@ -5956,10 +5962,10 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
|
|
|
5956
5962
|
endColumn: z.ZodNumber;
|
|
5957
5963
|
}, z.core.$strip>>;
|
|
5958
5964
|
type: z.ZodEnum<{
|
|
5959
|
-
decimal: "decimal";
|
|
5960
|
-
list: "list";
|
|
5961
5965
|
date: "date";
|
|
5962
5966
|
custom: "custom";
|
|
5967
|
+
decimal: "decimal";
|
|
5968
|
+
list: "list";
|
|
5963
5969
|
time: "time";
|
|
5964
5970
|
whole: "whole";
|
|
5965
5971
|
textLength: "textLength";
|
|
@@ -6711,10 +6717,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6711
6717
|
}>;
|
|
6712
6718
|
align: z.ZodEnum<{
|
|
6713
6719
|
left: "left";
|
|
6714
|
-
center: "center";
|
|
6715
6720
|
right: "right";
|
|
6716
6721
|
top: "top";
|
|
6717
6722
|
bottom: "bottom";
|
|
6723
|
+
center: "center";
|
|
6718
6724
|
inside: "inside";
|
|
6719
6725
|
outside: "outside";
|
|
6720
6726
|
}>;
|
|
@@ -6754,10 +6760,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
6754
6760
|
}>;
|
|
6755
6761
|
align: z.ZodEnum<{
|
|
6756
6762
|
left: "left";
|
|
6757
|
-
center: "center";
|
|
6758
6763
|
right: "right";
|
|
6759
6764
|
top: "top";
|
|
6760
6765
|
bottom: "bottom";
|
|
6766
|
+
center: "center";
|
|
6761
6767
|
inside: "inside";
|
|
6762
6768
|
outside: "outside";
|
|
6763
6769
|
}>;
|
|
@@ -7148,8 +7154,8 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7148
7154
|
}, z.core.$strip>>;
|
|
7149
7155
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
7150
7156
|
left: "left";
|
|
7151
|
-
center: "center";
|
|
7152
7157
|
right: "right";
|
|
7158
|
+
center: "center";
|
|
7153
7159
|
justify: "justify";
|
|
7154
7160
|
}>>;
|
|
7155
7161
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7291,10 +7297,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7291
7297
|
}>;
|
|
7292
7298
|
align: z.ZodEnum<{
|
|
7293
7299
|
left: "left";
|
|
7294
|
-
center: "center";
|
|
7295
7300
|
right: "right";
|
|
7296
7301
|
top: "top";
|
|
7297
7302
|
bottom: "bottom";
|
|
7303
|
+
center: "center";
|
|
7298
7304
|
inside: "inside";
|
|
7299
7305
|
outside: "outside";
|
|
7300
7306
|
}>;
|
|
@@ -7334,10 +7340,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7334
7340
|
}>;
|
|
7335
7341
|
align: z.ZodEnum<{
|
|
7336
7342
|
left: "left";
|
|
7337
|
-
center: "center";
|
|
7338
7343
|
right: "right";
|
|
7339
7344
|
top: "top";
|
|
7340
7345
|
bottom: "bottom";
|
|
7346
|
+
center: "center";
|
|
7341
7347
|
inside: "inside";
|
|
7342
7348
|
outside: "outside";
|
|
7343
7349
|
}>;
|
|
@@ -7426,10 +7432,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
7426
7432
|
endColumn: z.ZodNumber;
|
|
7427
7433
|
}, z.core.$strip>>;
|
|
7428
7434
|
type: z.ZodEnum<{
|
|
7429
|
-
decimal: "decimal";
|
|
7430
|
-
list: "list";
|
|
7431
7435
|
date: "date";
|
|
7432
7436
|
custom: "custom";
|
|
7437
|
+
decimal: "decimal";
|
|
7438
|
+
list: "list";
|
|
7433
7439
|
time: "time";
|
|
7434
7440
|
whole: "whole";
|
|
7435
7441
|
textLength: "textLength";
|
|
@@ -10269,8 +10275,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10269
10275
|
}, z.core.$strip>>;
|
|
10270
10276
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
10271
10277
|
left: "left";
|
|
10272
|
-
center: "center";
|
|
10273
10278
|
right: "right";
|
|
10279
|
+
center: "center";
|
|
10274
10280
|
justify: "justify";
|
|
10275
10281
|
}>>;
|
|
10276
10282
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -10412,10 +10418,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10412
10418
|
}>;
|
|
10413
10419
|
align: z.ZodEnum<{
|
|
10414
10420
|
left: "left";
|
|
10415
|
-
center: "center";
|
|
10416
10421
|
right: "right";
|
|
10417
10422
|
top: "top";
|
|
10418
10423
|
bottom: "bottom";
|
|
10424
|
+
center: "center";
|
|
10419
10425
|
inside: "inside";
|
|
10420
10426
|
outside: "outside";
|
|
10421
10427
|
}>;
|
|
@@ -10455,10 +10461,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10455
10461
|
}>;
|
|
10456
10462
|
align: z.ZodEnum<{
|
|
10457
10463
|
left: "left";
|
|
10458
|
-
center: "center";
|
|
10459
10464
|
right: "right";
|
|
10460
10465
|
top: "top";
|
|
10461
10466
|
bottom: "bottom";
|
|
10467
|
+
center: "center";
|
|
10462
10468
|
inside: "inside";
|
|
10463
10469
|
outside: "outside";
|
|
10464
10470
|
}>;
|
|
@@ -10547,10 +10553,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
10547
10553
|
endColumn: z.ZodNumber;
|
|
10548
10554
|
}, z.core.$strip>>;
|
|
10549
10555
|
type: z.ZodEnum<{
|
|
10550
|
-
decimal: "decimal";
|
|
10551
|
-
list: "list";
|
|
10552
10556
|
date: "date";
|
|
10553
10557
|
custom: "custom";
|
|
10558
|
+
decimal: "decimal";
|
|
10559
|
+
list: "list";
|
|
10554
10560
|
time: "time";
|
|
10555
10561
|
whole: "whole";
|
|
10556
10562
|
textLength: "textLength";
|