document-content-model 7.6.0 → 7.6.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/README.md +1 -1
- package/dist/codec.d.cts +1 -1
- package/dist/codec.d.ts +1 -1
- package/dist/{construct-GVdTKrE7.d.cts → construct-C9cYkjnd.d.cts} +3 -3
- package/dist/{construct-GVdTKrE7.d.ts → construct-C9cYkjnd.d.ts} +3 -3
- package/dist/construct.d.cts +1 -1
- package/dist/construct.d.ts +1 -1
- package/dist/{content-BzkhrS6P.d.cts → content-JIKLIrji.d.cts} +36 -36
- package/dist/{content-BCOxY0Eb.d.ts → content-PPcQWl8e.d.ts} +36 -36
- 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-C4mh1hLY.d.ts → package-node-B4CHgiVQ.d.ts} +9 -9
- package/dist/{package-node-RQMDBzwd.d.cts → package-node-duDMdOvH.d.cts} +9 -9
- 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/README.md
CHANGED
|
@@ -547,7 +547,7 @@ This package also published under the following alternate npm names from the pre
|
|
|
547
547
|
- [document-schema](https://www.npmjs.com/package/document-schema)
|
|
548
548
|
- [document-model.js](https://www.npmjs.com/package/document-model.js)
|
|
549
549
|
|
|
550
|
-
**
|
|
550
|
+
**Republished automatically** — the alias's trusted publisher is registered against this repository and workflow (2026-09-10), so every release from the [backfill run](https://github.com/ExaDev/documents.js/actions/runs/34449796133) onward publishes under this name too; the registration evidence is on [ExaDev/documents.js#730](https://github.com/ExaDev/documents.js/issues/730).
|
|
551
551
|
|
|
552
552
|
## License
|
|
553
553
|
|
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";
|
|
@@ -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";
|
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.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-
|
|
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 & {
|
|
@@ -80,12 +80,12 @@ declare const RunConstructExtentSchema: z.ZodObject<{
|
|
|
80
80
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
81
81
|
kind: z.ZodLiteral<"contentControl">;
|
|
82
82
|
controlType: z.ZodEnum<{
|
|
83
|
-
date: "date";
|
|
84
83
|
richText: "richText";
|
|
85
84
|
plainText: "plainText";
|
|
86
85
|
checkbox: "checkbox";
|
|
87
86
|
dropDown: "dropDown";
|
|
88
87
|
comboBox: "comboBox";
|
|
88
|
+
date: "date";
|
|
89
89
|
picture: "picture";
|
|
90
90
|
repeatingSection: "repeatingSection";
|
|
91
91
|
button: "button";
|
|
@@ -409,12 +409,12 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
409
409
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
410
410
|
kind: z.ZodLiteral<"contentControl">;
|
|
411
411
|
controlType: z.ZodEnum<{
|
|
412
|
-
date: "date";
|
|
413
412
|
richText: "richText";
|
|
414
413
|
plainText: "plainText";
|
|
415
414
|
checkbox: "checkbox";
|
|
416
415
|
dropDown: "dropDown";
|
|
417
416
|
comboBox: "comboBox";
|
|
417
|
+
date: "date";
|
|
418
418
|
picture: "picture";
|
|
419
419
|
repeatingSection: "repeatingSection";
|
|
420
420
|
button: "button";
|
|
@@ -605,8 +605,8 @@ declare const ContentParagraphSchema: z.ZodObject<{
|
|
|
605
605
|
headingLevel: z.ZodOptional<z.ZodNumber>;
|
|
606
606
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
607
607
|
left: "left";
|
|
608
|
-
center: "center";
|
|
609
608
|
right: "right";
|
|
609
|
+
center: "center";
|
|
610
610
|
justify: "justify";
|
|
611
611
|
}>>;
|
|
612
612
|
list: z.ZodOptional<z.ZodObject<{
|
|
@@ -742,10 +742,10 @@ declare const ContentFloatOriginSchema: z.ZodEnum<{
|
|
|
742
742
|
type ContentFloatOrigin = z.infer<typeof ContentFloatOriginSchema>;
|
|
743
743
|
declare const ContentFloatAlignSchema: z.ZodEnum<{
|
|
744
744
|
left: "left";
|
|
745
|
-
center: "center";
|
|
746
745
|
right: "right";
|
|
747
746
|
top: "top";
|
|
748
747
|
bottom: "bottom";
|
|
748
|
+
center: "center";
|
|
749
749
|
inside: "inside";
|
|
750
750
|
outside: "outside";
|
|
751
751
|
}>;
|
|
@@ -785,10 +785,10 @@ declare const ContentFloatAxisSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
785
785
|
}>;
|
|
786
786
|
align: z.ZodEnum<{
|
|
787
787
|
left: "left";
|
|
788
|
-
center: "center";
|
|
789
788
|
right: "right";
|
|
790
789
|
top: "top";
|
|
791
790
|
bottom: "bottom";
|
|
791
|
+
center: "center";
|
|
792
792
|
inside: "inside";
|
|
793
793
|
outside: "outside";
|
|
794
794
|
}>;
|
|
@@ -830,10 +830,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
|
|
|
830
830
|
}>;
|
|
831
831
|
align: z.ZodEnum<{
|
|
832
832
|
left: "left";
|
|
833
|
-
center: "center";
|
|
834
833
|
right: "right";
|
|
835
834
|
top: "top";
|
|
836
835
|
bottom: "bottom";
|
|
836
|
+
center: "center";
|
|
837
837
|
inside: "inside";
|
|
838
838
|
outside: "outside";
|
|
839
839
|
}>;
|
|
@@ -873,10 +873,10 @@ declare const ContentFloatPositionSchema: z.ZodObject<{
|
|
|
873
873
|
}>;
|
|
874
874
|
align: z.ZodEnum<{
|
|
875
875
|
left: "left";
|
|
876
|
-
center: "center";
|
|
877
876
|
right: "right";
|
|
878
877
|
top: "top";
|
|
879
878
|
bottom: "bottom";
|
|
879
|
+
center: "center";
|
|
880
880
|
inside: "inside";
|
|
881
881
|
outside: "outside";
|
|
882
882
|
}>;
|
|
@@ -931,10 +931,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
931
931
|
}>;
|
|
932
932
|
align: z.ZodEnum<{
|
|
933
933
|
left: "left";
|
|
934
|
-
center: "center";
|
|
935
934
|
right: "right";
|
|
936
935
|
top: "top";
|
|
937
936
|
bottom: "bottom";
|
|
937
|
+
center: "center";
|
|
938
938
|
inside: "inside";
|
|
939
939
|
outside: "outside";
|
|
940
940
|
}>;
|
|
@@ -974,10 +974,10 @@ declare const ContentImageBlockSchema: z.ZodObject<{
|
|
|
974
974
|
}>;
|
|
975
975
|
align: z.ZodEnum<{
|
|
976
976
|
left: "left";
|
|
977
|
-
center: "center";
|
|
978
977
|
right: "right";
|
|
979
978
|
top: "top";
|
|
980
979
|
bottom: "bottom";
|
|
980
|
+
center: "center";
|
|
981
981
|
inside: "inside";
|
|
982
982
|
outside: "outside";
|
|
983
983
|
}>;
|
|
@@ -1050,12 +1050,12 @@ declare const ContentConstructStartSchema: z.ZodObject<{
|
|
|
1050
1050
|
descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1051
1051
|
kind: z.ZodLiteral<"contentControl">;
|
|
1052
1052
|
controlType: z.ZodEnum<{
|
|
1053
|
-
date: "date";
|
|
1054
1053
|
richText: "richText";
|
|
1055
1054
|
plainText: "plainText";
|
|
1056
1055
|
checkbox: "checkbox";
|
|
1057
1056
|
dropDown: "dropDown";
|
|
1058
1057
|
comboBox: "comboBox";
|
|
1058
|
+
date: "date";
|
|
1059
1059
|
picture: "picture";
|
|
1060
1060
|
repeatingSection: "repeatingSection";
|
|
1061
1061
|
button: "button";
|
|
@@ -1823,8 +1823,8 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1823
1823
|
}, z.core.$strip>>;
|
|
1824
1824
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
1825
1825
|
left: "left";
|
|
1826
|
-
center: "center";
|
|
1827
1826
|
right: "right";
|
|
1827
|
+
center: "center";
|
|
1828
1828
|
justify: "justify";
|
|
1829
1829
|
}>>;
|
|
1830
1830
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1928,10 +1928,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1928
1928
|
}>;
|
|
1929
1929
|
align: z.ZodEnum<{
|
|
1930
1930
|
left: "left";
|
|
1931
|
-
center: "center";
|
|
1932
1931
|
right: "right";
|
|
1933
1932
|
top: "top";
|
|
1934
1933
|
bottom: "bottom";
|
|
1934
|
+
center: "center";
|
|
1935
1935
|
inside: "inside";
|
|
1936
1936
|
outside: "outside";
|
|
1937
1937
|
}>;
|
|
@@ -1971,10 +1971,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
1971
1971
|
}>;
|
|
1972
1972
|
align: z.ZodEnum<{
|
|
1973
1973
|
left: "left";
|
|
1974
|
-
center: "center";
|
|
1975
1974
|
right: "right";
|
|
1976
1975
|
top: "top";
|
|
1977
1976
|
bottom: "bottom";
|
|
1977
|
+
center: "center";
|
|
1978
1978
|
inside: "inside";
|
|
1979
1979
|
outside: "outside";
|
|
1980
1980
|
}>;
|
|
@@ -2063,10 +2063,10 @@ declare const ContentEmbeddedObjectBlockSchema: z.ZodObject<{
|
|
|
2063
2063
|
endColumn: z.ZodNumber;
|
|
2064
2064
|
}, z.core.$strip>>;
|
|
2065
2065
|
type: z.ZodEnum<{
|
|
2066
|
-
decimal: "decimal";
|
|
2067
|
-
list: "list";
|
|
2068
2066
|
date: "date";
|
|
2069
2067
|
custom: "custom";
|
|
2068
|
+
decimal: "decimal";
|
|
2069
|
+
list: "list";
|
|
2070
2070
|
time: "time";
|
|
2071
2071
|
whole: "whole";
|
|
2072
2072
|
textLength: "textLength";
|
|
@@ -3876,9 +3876,9 @@ declare const ContentTableCellSchema: z.ZodObject<{
|
|
|
3876
3876
|
}, z.core.$strip>>;
|
|
3877
3877
|
}, z.core.$strip>>;
|
|
3878
3878
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
3879
|
-
center: "center";
|
|
3880
3879
|
top: "top";
|
|
3881
3880
|
bottom: "bottom";
|
|
3881
|
+
center: "center";
|
|
3882
3882
|
}>>;
|
|
3883
3883
|
formula: z.ZodOptional<z.ZodString>;
|
|
3884
3884
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4076,9 +4076,9 @@ declare const ContentTableRowSchema: z.ZodObject<{
|
|
|
4076
4076
|
}, z.core.$strip>>;
|
|
4077
4077
|
}, z.core.$strip>>;
|
|
4078
4078
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4079
|
-
center: "center";
|
|
4080
4079
|
top: "top";
|
|
4081
4080
|
bottom: "bottom";
|
|
4081
|
+
center: "center";
|
|
4082
4082
|
}>>;
|
|
4083
4083
|
formula: z.ZodOptional<z.ZodString>;
|
|
4084
4084
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4284,9 +4284,9 @@ declare const ContentTableSchema: z.ZodObject<{
|
|
|
4284
4284
|
}, z.core.$strip>>;
|
|
4285
4285
|
}, z.core.$strip>>;
|
|
4286
4286
|
verticalAlign: z.ZodOptional<z.ZodEnum<{
|
|
4287
|
-
center: "center";
|
|
4288
4287
|
top: "top";
|
|
4289
4288
|
bottom: "bottom";
|
|
4289
|
+
center: "center";
|
|
4290
4290
|
}>>;
|
|
4291
4291
|
formula: z.ZodOptional<z.ZodString>;
|
|
4292
4292
|
sourcePath: z.ZodOptional<z.ZodString>;
|
|
@@ -4834,8 +4834,8 @@ declare const ContentSheetCellSchema: z.ZodObject<{
|
|
|
4834
4834
|
}, z.core.$strip>>;
|
|
4835
4835
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
4836
4836
|
left: "left";
|
|
4837
|
-
center: "center";
|
|
4838
4837
|
right: "right";
|
|
4838
|
+
center: "center";
|
|
4839
4839
|
justify: "justify";
|
|
4840
4840
|
}>>;
|
|
4841
4841
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4967,10 +4967,10 @@ declare const SheetRuleOperatorSchema: z.ZodEnum<{
|
|
|
4967
4967
|
}>;
|
|
4968
4968
|
type SheetRuleOperator = z.infer<typeof SheetRuleOperatorSchema>;
|
|
4969
4969
|
declare const ContentSheetDataValidationTypeSchema: z.ZodEnum<{
|
|
4970
|
-
decimal: "decimal";
|
|
4971
|
-
list: "list";
|
|
4972
4970
|
date: "date";
|
|
4973
4971
|
custom: "custom";
|
|
4972
|
+
decimal: "decimal";
|
|
4973
|
+
list: "list";
|
|
4974
4974
|
time: "time";
|
|
4975
4975
|
whole: "whole";
|
|
4976
4976
|
textLength: "textLength";
|
|
@@ -4984,10 +4984,10 @@ declare const ContentSheetDataValidationSchema: z.ZodObject<{
|
|
|
4984
4984
|
endColumn: z.ZodNumber;
|
|
4985
4985
|
}, z.core.$strip>>;
|
|
4986
4986
|
type: z.ZodEnum<{
|
|
4987
|
-
decimal: "decimal";
|
|
4988
|
-
list: "list";
|
|
4989
4987
|
date: "date";
|
|
4990
4988
|
custom: "custom";
|
|
4989
|
+
decimal: "decimal";
|
|
4990
|
+
list: "list";
|
|
4991
4991
|
time: "time";
|
|
4992
4992
|
whole: "whole";
|
|
4993
4993
|
textLength: "textLength";
|
|
@@ -5701,10 +5701,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
5701
5701
|
}>;
|
|
5702
5702
|
align: z.ZodEnum<{
|
|
5703
5703
|
left: "left";
|
|
5704
|
-
center: "center";
|
|
5705
5704
|
right: "right";
|
|
5706
5705
|
top: "top";
|
|
5707
5706
|
bottom: "bottom";
|
|
5707
|
+
center: "center";
|
|
5708
5708
|
inside: "inside";
|
|
5709
5709
|
outside: "outside";
|
|
5710
5710
|
}>;
|
|
@@ -5744,10 +5744,10 @@ declare const ContentSheetImageSchema: z.ZodObject<{
|
|
|
5744
5744
|
}>;
|
|
5745
5745
|
align: z.ZodEnum<{
|
|
5746
5746
|
left: "left";
|
|
5747
|
-
center: "center";
|
|
5748
5747
|
right: "right";
|
|
5749
5748
|
top: "top";
|
|
5750
5749
|
bottom: "bottom";
|
|
5750
|
+
center: "center";
|
|
5751
5751
|
inside: "inside";
|
|
5752
5752
|
outside: "outside";
|
|
5753
5753
|
}>;
|
|
@@ -6044,8 +6044,8 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6044
6044
|
}, z.core.$strip>>;
|
|
6045
6045
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
6046
6046
|
left: "left";
|
|
6047
|
-
center: "center";
|
|
6048
6047
|
right: "right";
|
|
6048
|
+
center: "center";
|
|
6049
6049
|
justify: "justify";
|
|
6050
6050
|
}>>;
|
|
6051
6051
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6149,10 +6149,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6149
6149
|
}>;
|
|
6150
6150
|
align: z.ZodEnum<{
|
|
6151
6151
|
left: "left";
|
|
6152
|
-
center: "center";
|
|
6153
6152
|
right: "right";
|
|
6154
6153
|
top: "top";
|
|
6155
6154
|
bottom: "bottom";
|
|
6155
|
+
center: "center";
|
|
6156
6156
|
inside: "inside";
|
|
6157
6157
|
outside: "outside";
|
|
6158
6158
|
}>;
|
|
@@ -6192,10 +6192,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6192
6192
|
}>;
|
|
6193
6193
|
align: z.ZodEnum<{
|
|
6194
6194
|
left: "left";
|
|
6195
|
-
center: "center";
|
|
6196
6195
|
right: "right";
|
|
6197
6196
|
top: "top";
|
|
6198
6197
|
bottom: "bottom";
|
|
6198
|
+
center: "center";
|
|
6199
6199
|
inside: "inside";
|
|
6200
6200
|
outside: "outside";
|
|
6201
6201
|
}>;
|
|
@@ -6284,10 +6284,10 @@ declare const ContentSheetSchema: z.ZodObject<{
|
|
|
6284
6284
|
endColumn: z.ZodNumber;
|
|
6285
6285
|
}, z.core.$strip>>;
|
|
6286
6286
|
type: z.ZodEnum<{
|
|
6287
|
-
decimal: "decimal";
|
|
6288
|
-
list: "list";
|
|
6289
6287
|
date: "date";
|
|
6290
6288
|
custom: "custom";
|
|
6289
|
+
decimal: "decimal";
|
|
6290
|
+
list: "list";
|
|
6291
6291
|
time: "time";
|
|
6292
6292
|
whole: "whole";
|
|
6293
6293
|
textLength: "textLength";
|
|
@@ -8649,8 +8649,8 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8649
8649
|
}, z.core.$strip>>;
|
|
8650
8650
|
alignment: z.ZodOptional<z.ZodEnum<{
|
|
8651
8651
|
left: "left";
|
|
8652
|
-
center: "center";
|
|
8653
8652
|
right: "right";
|
|
8653
|
+
center: "center";
|
|
8654
8654
|
justify: "justify";
|
|
8655
8655
|
}>>;
|
|
8656
8656
|
verticalAlignment: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8754,10 +8754,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8754
8754
|
}>;
|
|
8755
8755
|
align: z.ZodEnum<{
|
|
8756
8756
|
left: "left";
|
|
8757
|
-
center: "center";
|
|
8758
8757
|
right: "right";
|
|
8759
8758
|
top: "top";
|
|
8760
8759
|
bottom: "bottom";
|
|
8760
|
+
center: "center";
|
|
8761
8761
|
inside: "inside";
|
|
8762
8762
|
outside: "outside";
|
|
8763
8763
|
}>;
|
|
@@ -8797,10 +8797,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8797
8797
|
}>;
|
|
8798
8798
|
align: z.ZodEnum<{
|
|
8799
8799
|
left: "left";
|
|
8800
|
-
center: "center";
|
|
8801
8800
|
right: "right";
|
|
8802
8801
|
top: "top";
|
|
8803
8802
|
bottom: "bottom";
|
|
8803
|
+
center: "center";
|
|
8804
8804
|
inside: "inside";
|
|
8805
8805
|
outside: "outside";
|
|
8806
8806
|
}>;
|
|
@@ -8889,10 +8889,10 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
8889
8889
|
endColumn: z.ZodNumber;
|
|
8890
8890
|
}, z.core.$strip>>;
|
|
8891
8891
|
type: z.ZodEnum<{
|
|
8892
|
-
decimal: "decimal";
|
|
8893
|
-
list: "list";
|
|
8894
8892
|
date: "date";
|
|
8895
8893
|
custom: "custom";
|
|
8894
|
+
decimal: "decimal";
|
|
8895
|
+
list: "list";
|
|
8896
8896
|
time: "time";
|
|
8897
8897
|
whole: "whole";
|
|
8898
8898
|
textLength: "textLength";
|