document-schema 4.2.0 → 4.3.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.
- package/README.md +30 -4
- package/dist/canonicalise.cjs +20 -0
- package/dist/canonicalise.d.cts +5 -0
- package/dist/canonicalise.d.ts +5 -0
- package/dist/canonicalise.js +18 -0
- package/dist/codec.d.cts +1 -1
- package/dist/codec.d.ts +1 -1
- package/dist/{construct-D5pdDPqM.d.cts → construct-CdQuI9f5.d.cts} +6 -6
- package/dist/{construct-D5pdDPqM.d.ts → construct-CdQuI9f5.d.ts} +6 -6
- package/dist/construct.d.cts +1 -1
- package/dist/construct.d.ts +1 -1
- package/dist/{content-oSmH1_zP.d.cts → content-BmqzegMG.d.cts} +9 -9
- package/dist/{content-D3C14yyb.d.ts → content-CIwPb_yh.d.ts} +9 -9
- package/dist/content.d.cts +1 -1
- package/dist/content.d.ts +1 -1
- package/dist/decompose.cjs +186 -0
- package/dist/decompose.d.cts +18 -0
- package/dist/decompose.d.ts +18 -0
- package/dist/decompose.js +177 -0
- package/dist/definitions.d.cts +1 -1
- package/dist/definitions.d.ts +1 -1
- package/dist/factor-styles.cjs +435 -0
- package/dist/factor-styles.d.cts +9 -0
- package/dist/factor-styles.d.ts +9 -0
- package/dist/factor-styles.js +432 -0
- package/dist/flatten.cjs +154 -0
- package/dist/flatten.d.cts +6 -0
- package/dist/flatten.d.ts +6 -0
- package/dist/flatten.js +153 -0
- package/dist/index.cjs +8 -0
- package/dist/index.d.cts +9 -6
- package/dist/index.d.ts +9 -6
- package/dist/index.js +4 -1
- package/dist/{math-BlG8Tjk-.d.cts → math-B7gZJeND.d.cts} +3 -3
- package/dist/{math-BlG8Tjk-.d.ts → math-B7gZJeND.d.ts} +3 -3
- package/dist/math.d.cts +1 -1
- package/dist/math.d.ts +1 -1
- package/dist/{package-node-B9qLyhk5.d.ts → package-node-C7RiYhyk.d.ts} +48 -48
- package/dist/{package-node-DUKZHgAg.d.cts → package-node-a9CyRaD3.d.cts} +48 -48
- package/dist/package-node.d.cts +1 -1
- package/dist/package-node.d.ts +1 -1
- package/dist/package.d.cts +7 -7
- package/dist/package.d.ts +7 -7
- 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.d.cts +2 -2
- package/dist/style.d.ts +2 -2
- package/package.json +2 -2
- package/schemas/content-document.schema.json +3 -3
- package/schemas/document-package.schema.json +3 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { C as ContentFormula, X as ContentSheetImage, f as ContentConstructStart, n as ContentBlock, u as ContentConstructEnd, v as ContentEmbeddedObject, xt as ContentVector } from "./content-
|
|
2
|
-
import { a as ConstructDescriptor } from "./construct-
|
|
1
|
+
import { C as ContentFormula, X as ContentSheetImage, f as ContentConstructStart, n as ContentBlock, u as ContentConstructEnd, v as ContentEmbeddedObject, xt as ContentVector } from "./content-BmqzegMG.cjs";
|
|
2
|
+
import { a as ConstructDescriptor } from "./construct-CdQuI9f5.cjs";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
//#region src/package-node.d.ts
|
|
5
5
|
declare const SectionDescriptorSchema: z.ZodObject<{
|
|
@@ -27,52 +27,6 @@ declare const SlideDescriptorSchema: z.ZodObject<{
|
|
|
27
27
|
type SlideDescriptor = z.infer<typeof SlideDescriptorSchema>;
|
|
28
28
|
declare const SheetDescriptorSchema: z.ZodObject<{
|
|
29
29
|
name: z.ZodString;
|
|
30
|
-
rows: z.ZodArray<z.ZodObject<{
|
|
31
|
-
index: z.ZodNumber;
|
|
32
|
-
heightPt: z.ZodOptional<z.ZodNumber>;
|
|
33
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
34
|
-
}, z.core.$strip>>;
|
|
35
|
-
printSettings: z.ZodObject<{
|
|
36
|
-
pageSize: z.ZodObject<{
|
|
37
|
-
widthPt: z.ZodNumber;
|
|
38
|
-
heightPt: z.ZodNumber;
|
|
39
|
-
}, z.core.$strip>;
|
|
40
|
-
margins: z.ZodObject<{
|
|
41
|
-
topPt: z.ZodNumber;
|
|
42
|
-
rightPt: z.ZodNumber;
|
|
43
|
-
bottomPt: z.ZodNumber;
|
|
44
|
-
leftPt: z.ZodNumber;
|
|
45
|
-
}, z.core.$strip>;
|
|
46
|
-
printRange: z.ZodOptional<z.ZodObject<{
|
|
47
|
-
startRow: z.ZodNumber;
|
|
48
|
-
startColumn: z.ZodNumber;
|
|
49
|
-
endRow: z.ZodNumber;
|
|
50
|
-
endColumn: z.ZodNumber;
|
|
51
|
-
}, z.core.$strip>>;
|
|
52
|
-
scalePercent: z.ZodOptional<z.ZodNumber>;
|
|
53
|
-
fitToPages: z.ZodOptional<z.ZodObject<{
|
|
54
|
-
width: z.ZodNumber;
|
|
55
|
-
height: z.ZodNumber;
|
|
56
|
-
}, z.core.$strip>>;
|
|
57
|
-
repeatRows: z.ZodOptional<z.ZodObject<{
|
|
58
|
-
start: z.ZodNumber;
|
|
59
|
-
end: z.ZodNumber;
|
|
60
|
-
}, z.core.$strip>>;
|
|
61
|
-
repeatColumns: z.ZodOptional<z.ZodObject<{
|
|
62
|
-
start: z.ZodNumber;
|
|
63
|
-
end: z.ZodNumber;
|
|
64
|
-
}, z.core.$strip>>;
|
|
65
|
-
gridlines: z.ZodBoolean;
|
|
66
|
-
headers: z.ZodBoolean;
|
|
67
|
-
pageOrder: z.ZodEnum<{
|
|
68
|
-
downThenOver: "downThenOver";
|
|
69
|
-
overThenDown: "overThenDown";
|
|
70
|
-
}>;
|
|
71
|
-
manualBreaks: z.ZodOptional<z.ZodObject<{
|
|
72
|
-
rows: z.ZodArray<z.ZodNumber>;
|
|
73
|
-
columns: z.ZodArray<z.ZodNumber>;
|
|
74
|
-
}, z.core.$strip>>;
|
|
75
|
-
}, z.core.$strip>;
|
|
76
30
|
cells: z.ZodArray<z.ZodObject<{
|
|
77
31
|
row: z.ZodNumber;
|
|
78
32
|
column: z.ZodNumber;
|
|
@@ -229,11 +183,57 @@ declare const SheetDescriptorSchema: z.ZodObject<{
|
|
|
229
183
|
heightPt: z.ZodNumber;
|
|
230
184
|
}, z.core.$strip>>>;
|
|
231
185
|
}, z.core.$strip>>;
|
|
186
|
+
rows: z.ZodArray<z.ZodObject<{
|
|
187
|
+
index: z.ZodNumber;
|
|
188
|
+
heightPt: z.ZodOptional<z.ZodNumber>;
|
|
189
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
190
|
+
}, z.core.$strip>>;
|
|
232
191
|
columns: z.ZodArray<z.ZodObject<{
|
|
233
192
|
index: z.ZodNumber;
|
|
234
193
|
widthPt: z.ZodOptional<z.ZodNumber>;
|
|
235
194
|
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
236
195
|
}, z.core.$strip>>;
|
|
196
|
+
printSettings: z.ZodObject<{
|
|
197
|
+
pageSize: z.ZodObject<{
|
|
198
|
+
widthPt: z.ZodNumber;
|
|
199
|
+
heightPt: z.ZodNumber;
|
|
200
|
+
}, z.core.$strip>;
|
|
201
|
+
margins: z.ZodObject<{
|
|
202
|
+
topPt: z.ZodNumber;
|
|
203
|
+
rightPt: z.ZodNumber;
|
|
204
|
+
bottomPt: z.ZodNumber;
|
|
205
|
+
leftPt: z.ZodNumber;
|
|
206
|
+
}, z.core.$strip>;
|
|
207
|
+
printRange: z.ZodOptional<z.ZodObject<{
|
|
208
|
+
startRow: z.ZodNumber;
|
|
209
|
+
startColumn: z.ZodNumber;
|
|
210
|
+
endRow: z.ZodNumber;
|
|
211
|
+
endColumn: z.ZodNumber;
|
|
212
|
+
}, z.core.$strip>>;
|
|
213
|
+
scalePercent: z.ZodOptional<z.ZodNumber>;
|
|
214
|
+
fitToPages: z.ZodOptional<z.ZodObject<{
|
|
215
|
+
width: z.ZodNumber;
|
|
216
|
+
height: z.ZodNumber;
|
|
217
|
+
}, z.core.$strip>>;
|
|
218
|
+
repeatRows: z.ZodOptional<z.ZodObject<{
|
|
219
|
+
start: z.ZodNumber;
|
|
220
|
+
end: z.ZodNumber;
|
|
221
|
+
}, z.core.$strip>>;
|
|
222
|
+
repeatColumns: z.ZodOptional<z.ZodObject<{
|
|
223
|
+
start: z.ZodNumber;
|
|
224
|
+
end: z.ZodNumber;
|
|
225
|
+
}, z.core.$strip>>;
|
|
226
|
+
gridlines: z.ZodBoolean;
|
|
227
|
+
headers: z.ZodBoolean;
|
|
228
|
+
pageOrder: z.ZodEnum<{
|
|
229
|
+
downThenOver: "downThenOver";
|
|
230
|
+
overThenDown: "overThenDown";
|
|
231
|
+
}>;
|
|
232
|
+
manualBreaks: z.ZodOptional<z.ZodObject<{
|
|
233
|
+
rows: z.ZodArray<z.ZodNumber>;
|
|
234
|
+
columns: z.ZodArray<z.ZodNumber>;
|
|
235
|
+
}, z.core.$strip>>;
|
|
236
|
+
}, z.core.$strip>;
|
|
237
237
|
kind: z.ZodLiteral<"sheet">;
|
|
238
238
|
}, z.core.$strict>;
|
|
239
239
|
type SheetDescriptor = z.infer<typeof SheetDescriptorSchema>;
|
package/dist/package-node.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as isSectionConstructGroupNode, A as ShapeChild, B as SheetGroupNode, C as SectionChild, D as SectionDescriptorSchema, E as SectionDescriptor, F as ShapeGroupNode, G as SlideGroupSchema, H as SlideDescriptor, I as ShapeGroupSchema, J as isListGroupNode, K as isDrawPageGroupNode, L as SheetChild, M as ShapeConstructGroupSchema, N as ShapeDescriptor, O as SectionGroupNode, P as ShapeDescriptorSchema, Q as isPackageNode, R as SheetDescriptor, S as PackageNodeSchema, T as SectionConstructGroupSchema, U as SlideDescriptorSchema, V as SheetGroupSchema, W as SlideGroupNode, X as isPackageGroup, Y as isPackageBlockLeaf, Z as isPackageLeaf, _ as PackageGroup, a as DrawPageGroupSchema, b as PackageLeafSchema, c as HeadingParagraph, d as ListGroupNode, et as isSectionGroupNode, f as ListGroupSchema, g as PackageBlockLeafSchema, h as PackageBlockLeaf, i as DrawPageGroupNode, it as isSlideGroupNode, j as ShapeConstructGroupNode, k as SectionGroupSchema, l as HeadingParagraphSchema, m as ListParagraphSchema, n as DrawPageDescriptor, nt as isShapeGroupNode, o as HeadingGroupNode, p as ListParagraph, q as isHeadingGroupNode, r as DrawPageDescriptorSchema, rt as isSheetGroupNode, s as HeadingGroupSchema, t as DrawPageChild, tt as isShapeConstructGroupNode, u as ListChild, v as PackageGroupSchema, w as SectionConstructGroupNode, x as PackageNode, y as PackageLeaf, z as SheetDescriptorSchema } from "./package-node-
|
|
1
|
+
import { $ as isSectionConstructGroupNode, A as ShapeChild, B as SheetGroupNode, C as SectionChild, D as SectionDescriptorSchema, E as SectionDescriptor, F as ShapeGroupNode, G as SlideGroupSchema, H as SlideDescriptor, I as ShapeGroupSchema, J as isListGroupNode, K as isDrawPageGroupNode, L as SheetChild, M as ShapeConstructGroupSchema, N as ShapeDescriptor, O as SectionGroupNode, P as ShapeDescriptorSchema, Q as isPackageNode, R as SheetDescriptor, S as PackageNodeSchema, T as SectionConstructGroupSchema, U as SlideDescriptorSchema, V as SheetGroupSchema, W as SlideGroupNode, X as isPackageGroup, Y as isPackageBlockLeaf, Z as isPackageLeaf, _ as PackageGroup, a as DrawPageGroupSchema, b as PackageLeafSchema, c as HeadingParagraph, d as ListGroupNode, et as isSectionGroupNode, f as ListGroupSchema, g as PackageBlockLeafSchema, h as PackageBlockLeaf, i as DrawPageGroupNode, it as isSlideGroupNode, j as ShapeConstructGroupNode, k as SectionGroupSchema, l as HeadingParagraphSchema, m as ListParagraphSchema, n as DrawPageDescriptor, nt as isShapeGroupNode, o as HeadingGroupNode, p as ListParagraph, q as isHeadingGroupNode, r as DrawPageDescriptorSchema, rt as isSheetGroupNode, s as HeadingGroupSchema, t as DrawPageChild, tt as isShapeConstructGroupNode, u as ListChild, v as PackageGroupSchema, w as SectionConstructGroupNode, x as PackageNode, y as PackageLeaf, z as SheetDescriptorSchema } from "./package-node-a9CyRaD3.cjs";
|
|
2
2
|
export { DrawPageChild, DrawPageDescriptor, DrawPageDescriptorSchema, DrawPageGroupNode, DrawPageGroupSchema, HeadingGroupNode, HeadingGroupSchema, HeadingParagraph, HeadingParagraphSchema, ListChild, ListGroupNode, ListGroupSchema, ListParagraph, ListParagraphSchema, PackageBlockLeaf, PackageBlockLeafSchema, PackageGroup, PackageGroupSchema, PackageLeaf, PackageLeafSchema, PackageNode, PackageNodeSchema, SectionChild, SectionConstructGroupNode, SectionConstructGroupSchema, SectionDescriptor, SectionDescriptorSchema, SectionGroupNode, SectionGroupSchema, ShapeChild, ShapeConstructGroupNode, ShapeConstructGroupSchema, ShapeDescriptor, ShapeDescriptorSchema, ShapeGroupNode, ShapeGroupSchema, SheetChild, SheetDescriptor, SheetDescriptorSchema, SheetGroupNode, SheetGroupSchema, SlideDescriptor, SlideDescriptorSchema, SlideGroupNode, SlideGroupSchema, isDrawPageGroupNode, isHeadingGroupNode, isListGroupNode, isPackageBlockLeaf, isPackageGroup, isPackageLeaf, isPackageNode, isSectionConstructGroupNode, isSectionGroupNode, isShapeConstructGroupNode, isShapeGroupNode, isSheetGroupNode, isSlideGroupNode };
|
package/dist/package-node.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as isSectionConstructGroupNode, A as ShapeChild, B as SheetGroupNode, C as SectionChild, D as SectionDescriptorSchema, E as SectionDescriptor, F as ShapeGroupNode, G as SlideGroupSchema, H as SlideDescriptor, I as ShapeGroupSchema, J as isListGroupNode, K as isDrawPageGroupNode, L as SheetChild, M as ShapeConstructGroupSchema, N as ShapeDescriptor, O as SectionGroupNode, P as ShapeDescriptorSchema, Q as isPackageNode, R as SheetDescriptor, S as PackageNodeSchema, T as SectionConstructGroupSchema, U as SlideDescriptorSchema, V as SheetGroupSchema, W as SlideGroupNode, X as isPackageGroup, Y as isPackageBlockLeaf, Z as isPackageLeaf, _ as PackageGroup, a as DrawPageGroupSchema, b as PackageLeafSchema, c as HeadingParagraph, d as ListGroupNode, et as isSectionGroupNode, f as ListGroupSchema, g as PackageBlockLeafSchema, h as PackageBlockLeaf, i as DrawPageGroupNode, it as isSlideGroupNode, j as ShapeConstructGroupNode, k as SectionGroupSchema, l as HeadingParagraphSchema, m as ListParagraphSchema, n as DrawPageDescriptor, nt as isShapeGroupNode, o as HeadingGroupNode, p as ListParagraph, q as isHeadingGroupNode, r as DrawPageDescriptorSchema, rt as isSheetGroupNode, s as HeadingGroupSchema, t as DrawPageChild, tt as isShapeConstructGroupNode, u as ListChild, v as PackageGroupSchema, w as SectionConstructGroupNode, x as PackageNode, y as PackageLeaf, z as SheetDescriptorSchema } from "./package-node-
|
|
1
|
+
import { $ as isSectionConstructGroupNode, A as ShapeChild, B as SheetGroupNode, C as SectionChild, D as SectionDescriptorSchema, E as SectionDescriptor, F as ShapeGroupNode, G as SlideGroupSchema, H as SlideDescriptor, I as ShapeGroupSchema, J as isListGroupNode, K as isDrawPageGroupNode, L as SheetChild, M as ShapeConstructGroupSchema, N as ShapeDescriptor, O as SectionGroupNode, P as ShapeDescriptorSchema, Q as isPackageNode, R as SheetDescriptor, S as PackageNodeSchema, T as SectionConstructGroupSchema, U as SlideDescriptorSchema, V as SheetGroupSchema, W as SlideGroupNode, X as isPackageGroup, Y as isPackageBlockLeaf, Z as isPackageLeaf, _ as PackageGroup, a as DrawPageGroupSchema, b as PackageLeafSchema, c as HeadingParagraph, d as ListGroupNode, et as isSectionGroupNode, f as ListGroupSchema, g as PackageBlockLeafSchema, h as PackageBlockLeaf, i as DrawPageGroupNode, it as isSlideGroupNode, j as ShapeConstructGroupNode, k as SectionGroupSchema, l as HeadingParagraphSchema, m as ListParagraphSchema, n as DrawPageDescriptor, nt as isShapeGroupNode, o as HeadingGroupNode, p as ListParagraph, q as isHeadingGroupNode, r as DrawPageDescriptorSchema, rt as isSheetGroupNode, s as HeadingGroupSchema, t as DrawPageChild, tt as isShapeConstructGroupNode, u as ListChild, v as PackageGroupSchema, w as SectionConstructGroupNode, x as PackageNode, y as PackageLeaf, z as SheetDescriptorSchema } from "./package-node-C7RiYhyk.js";
|
|
2
2
|
export { DrawPageChild, DrawPageDescriptor, DrawPageDescriptorSchema, DrawPageGroupNode, DrawPageGroupSchema, HeadingGroupNode, HeadingGroupSchema, HeadingParagraph, HeadingParagraphSchema, ListChild, ListGroupNode, ListGroupSchema, ListParagraph, ListParagraphSchema, PackageBlockLeaf, PackageBlockLeafSchema, PackageGroup, PackageGroupSchema, PackageLeaf, PackageLeafSchema, PackageNode, PackageNodeSchema, SectionChild, SectionConstructGroupNode, SectionConstructGroupSchema, SectionDescriptor, SectionDescriptorSchema, SectionGroupNode, SectionGroupSchema, ShapeChild, ShapeConstructGroupNode, ShapeConstructGroupSchema, ShapeDescriptor, ShapeDescriptorSchema, ShapeGroupNode, ShapeGroupSchema, SheetChild, SheetDescriptor, SheetDescriptorSchema, SheetGroupNode, SheetGroupSchema, SlideDescriptor, SlideDescriptorSchema, SlideGroupNode, SlideGroupSchema, isDrawPageGroupNode, isHeadingGroupNode, isListGroupNode, isPackageBlockLeaf, isPackageGroup, isPackageLeaf, isPackageNode, isSectionConstructGroupNode, isSectionGroupNode, isShapeConstructGroupNode, isShapeGroupNode, isSheetGroupNode, isSlideGroupNode };
|
package/dist/package.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { d as MathMlNode } from "./mathml-B1oTCtzc.cjs";
|
|
2
|
-
import { s as MathExpression } from "./math-
|
|
3
|
-
import { B as SheetGroupNode, O as SectionGroupNode, W as SlideGroupNode, i as DrawPageGroupNode } from "./package-node-
|
|
2
|
+
import { s as MathExpression } from "./math-B7gZJeND.cjs";
|
|
3
|
+
import { B as SheetGroupNode, O as SectionGroupNode, W as SlideGroupNode, i as DrawPageGroupNode } from "./package-node-a9CyRaD3.cjs";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
//#region src/package.d.ts
|
|
6
6
|
declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -67,9 +67,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
67
67
|
symbol: z.ZodString;
|
|
68
68
|
name: z.ZodOptional<z.ZodString>;
|
|
69
69
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
70
|
+
time: "time";
|
|
70
71
|
length: "length";
|
|
71
72
|
mass: "mass";
|
|
72
|
-
time: "time";
|
|
73
73
|
electricCurrent: "electricCurrent";
|
|
74
74
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
75
75
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -171,9 +171,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
171
171
|
symbol: z.ZodString;
|
|
172
172
|
name: z.ZodOptional<z.ZodString>;
|
|
173
173
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
174
|
+
time: "time";
|
|
174
175
|
length: "length";
|
|
175
176
|
mass: "mass";
|
|
176
|
-
time: "time";
|
|
177
177
|
electricCurrent: "electricCurrent";
|
|
178
178
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
179
179
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -275,9 +275,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
275
275
|
symbol: z.ZodString;
|
|
276
276
|
name: z.ZodOptional<z.ZodString>;
|
|
277
277
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
278
|
+
time: "time";
|
|
278
279
|
length: "length";
|
|
279
280
|
mass: "mass";
|
|
280
|
-
time: "time";
|
|
281
281
|
electricCurrent: "electricCurrent";
|
|
282
282
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
283
283
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -379,9 +379,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
379
379
|
symbol: z.ZodString;
|
|
380
380
|
name: z.ZodOptional<z.ZodString>;
|
|
381
381
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
382
|
+
time: "time";
|
|
382
383
|
length: "length";
|
|
383
384
|
mass: "mass";
|
|
384
|
-
time: "time";
|
|
385
385
|
electricCurrent: "electricCurrent";
|
|
386
386
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
387
387
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -495,9 +495,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
495
495
|
symbol: z.ZodString;
|
|
496
496
|
name: z.ZodOptional<z.ZodString>;
|
|
497
497
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
498
|
+
time: "time";
|
|
498
499
|
length: "length";
|
|
499
500
|
mass: "mass";
|
|
500
|
-
time: "time";
|
|
501
501
|
electricCurrent: "electricCurrent";
|
|
502
502
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
503
503
|
amountOfSubstance: "amountOfSubstance";
|
package/dist/package.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { d as MathMlNode } from "./mathml-B1oTCtzc.js";
|
|
2
|
-
import { s as MathExpression } from "./math-
|
|
3
|
-
import { B as SheetGroupNode, O as SectionGroupNode, W as SlideGroupNode, i as DrawPageGroupNode } from "./package-node-
|
|
2
|
+
import { s as MathExpression } from "./math-B7gZJeND.js";
|
|
3
|
+
import { B as SheetGroupNode, O as SectionGroupNode, W as SlideGroupNode, i as DrawPageGroupNode } from "./package-node-C7RiYhyk.js";
|
|
4
4
|
import { z } from "zod";
|
|
5
5
|
//#region src/package.d.ts
|
|
6
6
|
declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -67,9 +67,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
67
67
|
symbol: z.ZodString;
|
|
68
68
|
name: z.ZodOptional<z.ZodString>;
|
|
69
69
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
70
|
+
time: "time";
|
|
70
71
|
length: "length";
|
|
71
72
|
mass: "mass";
|
|
72
|
-
time: "time";
|
|
73
73
|
electricCurrent: "electricCurrent";
|
|
74
74
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
75
75
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -171,9 +171,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
171
171
|
symbol: z.ZodString;
|
|
172
172
|
name: z.ZodOptional<z.ZodString>;
|
|
173
173
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
174
|
+
time: "time";
|
|
174
175
|
length: "length";
|
|
175
176
|
mass: "mass";
|
|
176
|
-
time: "time";
|
|
177
177
|
electricCurrent: "electricCurrent";
|
|
178
178
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
179
179
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -275,9 +275,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
275
275
|
symbol: z.ZodString;
|
|
276
276
|
name: z.ZodOptional<z.ZodString>;
|
|
277
277
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
278
|
+
time: "time";
|
|
278
279
|
length: "length";
|
|
279
280
|
mass: "mass";
|
|
280
|
-
time: "time";
|
|
281
281
|
electricCurrent: "electricCurrent";
|
|
282
282
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
283
283
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -379,9 +379,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
379
379
|
symbol: z.ZodString;
|
|
380
380
|
name: z.ZodOptional<z.ZodString>;
|
|
381
381
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
382
|
+
time: "time";
|
|
382
383
|
length: "length";
|
|
383
384
|
mass: "mass";
|
|
384
|
-
time: "time";
|
|
385
385
|
electricCurrent: "electricCurrent";
|
|
386
386
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
387
387
|
amountOfSubstance: "amountOfSubstance";
|
|
@@ -495,9 +495,9 @@ declare const DocumentPackageSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
495
495
|
symbol: z.ZodString;
|
|
496
496
|
name: z.ZodOptional<z.ZodString>;
|
|
497
497
|
dimension: z.ZodRecord<z.ZodEnum<{
|
|
498
|
+
time: "time";
|
|
498
499
|
length: "length";
|
|
499
500
|
mass: "mass";
|
|
500
|
-
time: "time";
|
|
501
501
|
electricCurrent: "electricCurrent";
|
|
502
502
|
thermodynamicTemperature: "thermodynamicTemperature";
|
|
503
503
|
amountOfSubstance: "amountOfSubstance";
|
package/dist/schema-io.cjs
CHANGED
|
@@ -7,7 +7,7 @@ const SCHEMA_FILE_NAMES = {
|
|
|
7
7
|
ContentDocument: "content-document.schema.json"
|
|
8
8
|
};
|
|
9
9
|
function schemaUriFor(kind) {
|
|
10
|
-
return `https://cdn.jsdelivr.net/npm/document-schema.js@4.
|
|
10
|
+
return `https://cdn.jsdelivr.net/npm/document-schema.js@4.3.0/schemas/${SCHEMA_FILE_NAMES[kind]}`;
|
|
11
11
|
}
|
|
12
12
|
const SCHEMA_URI_PATTERN = /^https:\/\/cdn\.jsdelivr\.net\/npm\/document-schema\.js@([^/]+)\/schemas\/(document-package|content-document|layout-document)\.schema\.json$/;
|
|
13
13
|
function parseSchemaUri(uri) {
|
|
@@ -93,7 +93,7 @@ function documentFromJson(value) {
|
|
|
93
93
|
if (parts.stem === "layout-document") throw new LayoutSchemaDemotedError(value.$schema);
|
|
94
94
|
const kind = kindForFileStem(parts.stem);
|
|
95
95
|
if (kind === void 0) throw new UnrecognizedDocumentSchemaError(value.$schema);
|
|
96
|
-
if (majorVersionOf(parts.version) !== majorVersionOf("4.
|
|
96
|
+
if (majorVersionOf(parts.version) !== majorVersionOf("4.3.0")) throw new SchemaVersionMismatchError(value.$schema, parts.version, "4.3.0");
|
|
97
97
|
switch (kind) {
|
|
98
98
|
case "DocumentPackage": return {
|
|
99
99
|
kind,
|
package/dist/schema-io.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as ContentDocument } from "./content-
|
|
1
|
+
import { m as ContentDocument } from "./content-BmqzegMG.cjs";
|
|
2
2
|
import { DocumentPackage } from "./package.cjs";
|
|
3
3
|
//#region src/schema-io.d.ts
|
|
4
4
|
type DocumentSchemaKind = 'DocumentPackage' | 'ContentDocument';
|
package/dist/schema-io.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as ContentDocument } from "./content-
|
|
1
|
+
import { m as ContentDocument } from "./content-CIwPb_yh.js";
|
|
2
2
|
import { DocumentPackage } from "./package.js";
|
|
3
3
|
//#region src/schema-io.d.ts
|
|
4
4
|
type DocumentSchemaKind = 'DocumentPackage' | 'ContentDocument';
|
package/dist/schema-io.js
CHANGED
|
@@ -6,7 +6,7 @@ const SCHEMA_FILE_NAMES = {
|
|
|
6
6
|
ContentDocument: "content-document.schema.json"
|
|
7
7
|
};
|
|
8
8
|
function schemaUriFor(kind) {
|
|
9
|
-
return `https://cdn.jsdelivr.net/npm/document-schema.js@4.
|
|
9
|
+
return `https://cdn.jsdelivr.net/npm/document-schema.js@4.3.0/schemas/${SCHEMA_FILE_NAMES[kind]}`;
|
|
10
10
|
}
|
|
11
11
|
const SCHEMA_URI_PATTERN = /^https:\/\/cdn\.jsdelivr\.net\/npm\/document-schema\.js@([^/]+)\/schemas\/(document-package|content-document|layout-document)\.schema\.json$/;
|
|
12
12
|
function parseSchemaUri(uri) {
|
|
@@ -92,7 +92,7 @@ function documentFromJson(value) {
|
|
|
92
92
|
if (parts.stem === "layout-document") throw new LayoutSchemaDemotedError(value.$schema);
|
|
93
93
|
const kind = kindForFileStem(parts.stem);
|
|
94
94
|
if (kind === void 0) throw new UnrecognizedDocumentSchemaError(value.$schema);
|
|
95
|
-
if (majorVersionOf(parts.version) !== majorVersionOf("4.
|
|
95
|
+
if (majorVersionOf(parts.version) !== majorVersionOf("4.3.0")) throw new SchemaVersionMismatchError(value.$schema, parts.version, "4.3.0");
|
|
96
96
|
switch (kind) {
|
|
97
97
|
case "DocumentPackage": return {
|
|
98
98
|
kind,
|
package/dist/style.d.cts
CHANGED
|
@@ -10,12 +10,12 @@ type Alignment = z.infer<typeof AlignmentSchema>;
|
|
|
10
10
|
declare const LayoutFontSchema: z.ZodObject<{
|
|
11
11
|
family: z.ZodString;
|
|
12
12
|
weight: z.ZodEnum<{
|
|
13
|
-
normal: "normal";
|
|
14
13
|
bold: "bold";
|
|
14
|
+
normal: "normal";
|
|
15
15
|
}>;
|
|
16
16
|
style: z.ZodEnum<{
|
|
17
|
-
normal: "normal";
|
|
18
17
|
italic: "italic";
|
|
18
|
+
normal: "normal";
|
|
19
19
|
}>;
|
|
20
20
|
}, z.core.$strip>;
|
|
21
21
|
type LayoutFont = z.infer<typeof LayoutFontSchema>;
|
package/dist/style.d.ts
CHANGED
|
@@ -10,12 +10,12 @@ type Alignment = z.infer<typeof AlignmentSchema>;
|
|
|
10
10
|
declare const LayoutFontSchema: z.ZodObject<{
|
|
11
11
|
family: z.ZodString;
|
|
12
12
|
weight: z.ZodEnum<{
|
|
13
|
-
normal: "normal";
|
|
14
13
|
bold: "bold";
|
|
14
|
+
normal: "normal";
|
|
15
15
|
}>;
|
|
16
16
|
style: z.ZodEnum<{
|
|
17
|
-
normal: "normal";
|
|
18
17
|
italic: "italic";
|
|
18
|
+
normal: "normal";
|
|
19
19
|
}>;
|
|
20
20
|
}, z.core.$strip>;
|
|
21
21
|
type LayoutFont = z.infer<typeof LayoutFontSchema>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "document-schema",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "The canonical, format-agnostic content and document-package schemas shared by ooxml.js, odf.js, documents.js, pdf-codec, and markdown-codec
|
|
3
|
+
"version": "4.3.0",
|
|
4
|
+
"description": "The canonical, format-agnostic content and document-package schemas shared by ooxml.js, odf.js, documents.js, pdf-codec, and markdown-codec, plus the structural transform between them -- no format-specific or I/O behaviour.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@4.
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@4.3.0/schemas/content-document.schema.json",
|
|
4
4
|
"oneOf": [
|
|
5
5
|
{
|
|
6
6
|
"type": "object",
|
|
@@ -2857,7 +2857,7 @@
|
|
|
2857
2857
|
]
|
|
2858
2858
|
},
|
|
2859
2859
|
"document": {
|
|
2860
|
-
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@4.
|
|
2860
|
+
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@4.3.0/schemas/content-document.schema.json"
|
|
2861
2861
|
},
|
|
2862
2862
|
"frame": {
|
|
2863
2863
|
"$ref": "#/$defs/Box"
|
|
@@ -4132,7 +4132,7 @@
|
|
|
4132
4132
|
]
|
|
4133
4133
|
},
|
|
4134
4134
|
"document": {
|
|
4135
|
-
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@4.
|
|
4135
|
+
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@4.3.0/schemas/content-document.schema.json"
|
|
4136
4136
|
},
|
|
4137
4137
|
"frame": {
|
|
4138
4138
|
"$ref": "#/$defs/Box"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@4.
|
|
3
|
+
"$id": "https://cdn.jsdelivr.net/npm/document-schema.js@4.3.0/schemas/document-package.schema.json",
|
|
4
4
|
"oneOf": [
|
|
5
5
|
{
|
|
6
6
|
"type": "object",
|
|
@@ -1066,7 +1066,7 @@
|
|
|
1066
1066
|
]
|
|
1067
1067
|
},
|
|
1068
1068
|
"document": {
|
|
1069
|
-
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@4.
|
|
1069
|
+
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@4.3.0/schemas/content-document.schema.json"
|
|
1070
1070
|
},
|
|
1071
1071
|
"frame": {
|
|
1072
1072
|
"$ref": "#/$defs/Box"
|
|
@@ -2341,7 +2341,7 @@
|
|
|
2341
2341
|
]
|
|
2342
2342
|
},
|
|
2343
2343
|
"document": {
|
|
2344
|
-
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@4.
|
|
2344
|
+
"$ref": "https://cdn.jsdelivr.net/npm/document-schema.js@4.3.0/schemas/content-document.schema.json"
|
|
2345
2345
|
},
|
|
2346
2346
|
"frame": {
|
|
2347
2347
|
"$ref": "#/$defs/Box"
|