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.
Files changed (52) hide show
  1. package/README.md +30 -4
  2. package/dist/canonicalise.cjs +20 -0
  3. package/dist/canonicalise.d.cts +5 -0
  4. package/dist/canonicalise.d.ts +5 -0
  5. package/dist/canonicalise.js +18 -0
  6. package/dist/codec.d.cts +1 -1
  7. package/dist/codec.d.ts +1 -1
  8. package/dist/{construct-D5pdDPqM.d.cts → construct-CdQuI9f5.d.cts} +6 -6
  9. package/dist/{construct-D5pdDPqM.d.ts → construct-CdQuI9f5.d.ts} +6 -6
  10. package/dist/construct.d.cts +1 -1
  11. package/dist/construct.d.ts +1 -1
  12. package/dist/{content-oSmH1_zP.d.cts → content-BmqzegMG.d.cts} +9 -9
  13. package/dist/{content-D3C14yyb.d.ts → content-CIwPb_yh.d.ts} +9 -9
  14. package/dist/content.d.cts +1 -1
  15. package/dist/content.d.ts +1 -1
  16. package/dist/decompose.cjs +186 -0
  17. package/dist/decompose.d.cts +18 -0
  18. package/dist/decompose.d.ts +18 -0
  19. package/dist/decompose.js +177 -0
  20. package/dist/definitions.d.cts +1 -1
  21. package/dist/definitions.d.ts +1 -1
  22. package/dist/factor-styles.cjs +435 -0
  23. package/dist/factor-styles.d.cts +9 -0
  24. package/dist/factor-styles.d.ts +9 -0
  25. package/dist/factor-styles.js +432 -0
  26. package/dist/flatten.cjs +154 -0
  27. package/dist/flatten.d.cts +6 -0
  28. package/dist/flatten.d.ts +6 -0
  29. package/dist/flatten.js +153 -0
  30. package/dist/index.cjs +8 -0
  31. package/dist/index.d.cts +9 -6
  32. package/dist/index.d.ts +9 -6
  33. package/dist/index.js +4 -1
  34. package/dist/{math-BlG8Tjk-.d.cts → math-B7gZJeND.d.cts} +3 -3
  35. package/dist/{math-BlG8Tjk-.d.ts → math-B7gZJeND.d.ts} +3 -3
  36. package/dist/math.d.cts +1 -1
  37. package/dist/math.d.ts +1 -1
  38. package/dist/{package-node-B9qLyhk5.d.ts → package-node-C7RiYhyk.d.ts} +48 -48
  39. package/dist/{package-node-DUKZHgAg.d.cts → package-node-a9CyRaD3.d.cts} +48 -48
  40. package/dist/package-node.d.cts +1 -1
  41. package/dist/package-node.d.ts +1 -1
  42. package/dist/package.d.cts +7 -7
  43. package/dist/package.d.ts +7 -7
  44. package/dist/schema-io.cjs +2 -2
  45. package/dist/schema-io.d.cts +1 -1
  46. package/dist/schema-io.d.ts +1 -1
  47. package/dist/schema-io.js +2 -2
  48. package/dist/style.d.cts +2 -2
  49. package/dist/style.d.ts +2 -2
  50. package/package.json +2 -2
  51. package/schemas/content-document.schema.json +3 -3
  52. package/schemas/document-package.schema.json +3 -3
package/README.md CHANGED
@@ -52,7 +52,7 @@ graph TD
52
52
 
53
53
  The `LayoutDocument` family (pages of positioned `LayoutItem`s — `text`/`image`/`rect`/`line`/`ellipse`/`path`/`link` in PDF user-space coordinates) no longer lives here: 4.0.0 demoted it to a pdf-codec-private model ([pdf-codec#65](https://github.com/ExaDev/pdf-codec/issues/65)), where the only codec that ever read or wrote it owns it outright. `documentFromJson` recognises old layout-document `$schema` URIs and throws a tombstone pointing at pdf-codec rather than failing as if the value were unrelated. Dependents stay on document-schema.js 3.x via semver until their own majors, so the demotion is not a cascade-breaker.
54
54
 
55
- The package contains only [Zod](https://zod.dev) schemas, their inferred types, trivial schema-attached helpers (hex-colour conversion, recursive structural type guards, the style-resolution helpers of `src/definitions.ts`, the construct-marker balance check of `src/content.ts`), and one small structural interface (`ContentCodec`, see [Codecs](#codecs)). No XML, ZIP, PDF, or binary handling; the sole dependency is `zod`.
55
+ The package contains [Zod](https://zod.dev) schemas, their inferred types, trivial schema-attached helpers (hex-colour conversion, recursive structural type guards, the style-resolution helpers of `src/definitions.ts`, the construct-marker balance check of `src/content.ts`), one small structural interface (`ContentCodec`, see [Codecs](#codecs)), and the structural transform between the two encodings it defines (`decompose`/`flattenPackage`/`factorStyles`/`assemblePackage`, see [The package boundary](#the-package-boundary)). No format-specific behaviour and no I/O of any kind — no XML, ZIP, PDF, or binary handling; the sole dependency is `zod`.
56
56
 
57
57
  Two format-agnostic helpers live here because they operate on the content model itself: cell-addressing utilities in `src/a1.ts` (0-based row/column indices, row-first order matching `ContentSheetCell`'s `{row, column}`) and the `FontFace` interface in `src/font-port.ts` (`{family, bold, italic}`).
58
58
 
@@ -102,7 +102,33 @@ The flat `ContentDocument` and the tree are **one format, two encodings**, relat
102
102
  2. **Effective-property equality, universally** — resolve styles first, then compare: a factored and an unfactored serialisation of one document are equal (this is also why content hashing and structural diffing resolve first).
103
103
  3. **Minting idempotence** — factoring a package a second time mints the identical styles table: `decompose(flatten(decompose(x))) === decompose(x)`.
104
104
 
105
- The codecs do not change: they keep producing flat `ContentDocument`s (their natural reading shape); decomposition runs once at the package boundary in documents.js and flatten runs once where a builder consumes a package.
105
+ The codecs do not change: they keep producing flat `ContentDocument`s (their natural reading shape); decomposition runs once where a package is assembled and flatten runs once where a builder consumes one. Both directions live here — see [The package boundary](#the-package-boundary).
106
+
107
+ ## The package boundary
108
+
109
+ The transform between the two encodings lives in this package, alongside the schemas that define them:
110
+
111
+ ```ts
112
+ import { assemblePackage, decompose, factorStyles, flattenPackage } from 'document-schema.js';
113
+
114
+ // The one call a construction site makes: decompose the flat content into the tree, splice the envelope
115
+ // onto the root, and mint a styles table over the result. `pages` is optional -- pass it once a layout
116
+ // pass has produced each rendered page's own size.
117
+ const pkg = assemblePackage(content, pages);
118
+
119
+ // The inverse, with every style ref resolved away: a fully materialised, ref-free ContentDocument.
120
+ const flat = flattenPackage(pkg);
121
+
122
+ // The two halves on their own, for a caller composing its own boundary.
123
+ const children = decompose(content); // flat -> the tree `children` a package carries
124
+ const reminted = factorStyles(pkg); // re-mint an already-assembled tree (idempotent)
125
+ ```
126
+
127
+ `decompose` throws `ConstructMarkerImbalanceError` — carrying `src/content.ts`'s own `ConstructMarkerImbalance` payload, so a caller narrows with `instanceof` and reads the offending block index rather than parsing a message — when a container's `constructStart`/`constructEnd` markers do not pair up. Promotion is defined only over a balanced stream, so an unbalanced one is refused rather than repaired into a plausible tree.
128
+
129
+ **This is a deliberate amendment to the "schemas only" charter, not a drift from it.** The transform is not business logic and not format-specific behaviour: it is the canonical, purely structural, zero-I/O relationship between the two shapes this package already defines, and its correctness contract *is* the three laws above. It lives here because it has to: `ooxml.js`, `odf.js`, `markdown-codec`, and `pdf-codec` all depend on this package and none of them depends on `documents.js`, so a codec whose public read/write functions speak `DocumentPackage` directly can only reach the transform if the transform sits at or below the schema layer. Everything the charter actually guards against — XML, ZIP, PDF, fonts, layout, bytes, filesystem — remains firmly out.
130
+
131
+ The laws are pinned in `src/bijection.test.ts` over a corpus spanning every document kind, every leaf the tree vocabulary admits, and every grouping signal `decompose` reads (headings, list levels, and construct boundaries in each block flow that admits them). `documents.js` runs the same law harness over its own real-format corpus — reader output for every format it supports, editor builds, and conversion captures carrying a layout pass's real frames and pages — which is the complement this package cannot host, since every reader in it belongs to a package that depends on this one.
106
132
 
107
133
  ## Fidelity constructs
108
134
 
@@ -199,7 +225,7 @@ Each is its own root field rather than three more tenants of `definitions`, for
199
225
 
200
226
  A styles entry carries `{ paragraph?, run? }` sub-objects of **resolved canonical properties only**: paragraph `alignment`/`list`/`spacingBeforePt`/`spacingAfterPt`/`lineSpacing`/`indentLeftPt`/`indentFirstLinePt`, run `bold`/`italic`/`underline`/`strike`/`fontFamily`/`sizePt`/`color`. Never `frames`, never `sourcePath`, never `styleId` (per-node facts — a position is a fact about a node, not a style), never a `basedOn` graph (the table is a dictionary, not a program) — and the ban list is **enforced by schema shape** (strict objects that reject those keys outright), not merely documented.
201
227
 
202
- Resolution is one overlay chain — outermost ancestor group's style, each nearer group's style, the node's own direct properties; innermost wins, with the resolved run half applying one level further down as run defaults under each run's own properties. `src/definitions.ts` exports the pure helpers that implement it (`overlayStyleEntries`, `resolveStyleChain`, `applyParagraphStyleProperties`, `applyRunStyleProperties`); minting entries (the deterministic frequency pass that factors repeated property tuples into `s1`, `s2`, … refs) is documents.js's boundary behaviour, not this package's.
228
+ Resolution is one overlay chain — outermost ancestor group's style, each nearer group's style, the node's own direct properties; innermost wins, with the resolved run half applying one level further down as run defaults under each run's own properties. `src/definitions.ts` exports the pure helpers that implement it (`overlayStyleEntries`, `resolveStyleChain`, `applyParagraphStyleProperties`, `applyRunStyleProperties`), and `factorStyles` (`src/factor-styles.ts`) is the deterministic frequency pass that mints entries, factoring repeated property tuples into `s1`, `s2`, … refs see [The package boundary](#the-package-boundary).
203
229
 
204
230
  Every module is also importable directly — `tsdown` builds one file per source module, and `package.json`'s `"./*"` export makes each individually resolvable:
205
231
 
@@ -311,7 +337,7 @@ try {
311
337
 
312
338
  - [ooxml.js](https://github.com/ExaDev/ooxml.js) — `readDocx`/`readPptx`/`readXlsxContent` return types are typed against this package's schemas, not a local lookalike.
313
339
  - [odf.js](https://github.com/ExaDev/odf.js) — ODF typed readers return the same shared types, so ODF and OOXML speak the identical pivot.
314
- - [documents.js](https://github.com/ExaDev/documents.js) — primary consumer of `ContentDocument` and `DocumentPackage`; its `DOCUMENT_FORMAT_CODECS` registry implements `ContentCodec` per format, and its package boundary runs decompose/flatten against the tree form.
340
+ - [documents.js](https://github.com/ExaDev/documents.js) — primary consumer of `ContentDocument` and `DocumentPackage`; its `DOCUMENT_FORMAT_CODECS` registry implements `ContentCodec` per format, and its conversion pipeline calls `assemblePackage`/`flattenPackage` from here at every package construction site.
315
341
  - [pdf-codec](https://github.com/ExaDev/pdf-codec) — owns its layout item model outright since 4.0.0; `readPdf`/`writePdf` operate on pdf-codec's own `LayoutDocument`, and this package's `ContentDocument` remains its content pivot.
316
342
  - [markdown-codec](https://github.com/ExaDev/markdown-codec) — `readMarkdown`/`writeMarkdown` read and write this package's `ContentDocument` directly.
317
343
 
@@ -0,0 +1,20 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ //#region src/canonicalise.ts
3
+ function canonicalise(value) {
4
+ if (Array.isArray(value)) return value.map(canonicalise);
5
+ if (isRecord(value)) {
6
+ const sorted = {};
7
+ for (const key of Object.keys(value).sort()) sorted[key] = canonicalise(value[key]);
8
+ return sorted;
9
+ }
10
+ return value;
11
+ }
12
+ function isRecord(value) {
13
+ return typeof value === "object" && value !== null && !Array.isArray(value);
14
+ }
15
+ function canonicalKey(value) {
16
+ return JSON.stringify(canonicalise(value));
17
+ }
18
+ //#endregion
19
+ exports.canonicalKey = canonicalKey;
20
+ exports.canonicalise = canonicalise;
@@ -0,0 +1,5 @@
1
+ //#region src/canonicalise.d.ts
2
+ declare function canonicalise(value: unknown): unknown;
3
+ declare function canonicalKey(value: unknown): string;
4
+ //#endregion
5
+ export { canonicalKey, canonicalise };
@@ -0,0 +1,5 @@
1
+ //#region src/canonicalise.d.ts
2
+ declare function canonicalise(value: unknown): unknown;
3
+ declare function canonicalKey(value: unknown): string;
4
+ //#endregion
5
+ export { canonicalKey, canonicalise };
@@ -0,0 +1,18 @@
1
+ //#region src/canonicalise.ts
2
+ function canonicalise(value) {
3
+ if (Array.isArray(value)) return value.map(canonicalise);
4
+ if (isRecord(value)) {
5
+ const sorted = {};
6
+ for (const key of Object.keys(value).sort()) sorted[key] = canonicalise(value[key]);
7
+ return sorted;
8
+ }
9
+ return value;
10
+ }
11
+ function isRecord(value) {
12
+ return typeof value === "object" && value !== null && !Array.isArray(value);
13
+ }
14
+ function canonicalKey(value) {
15
+ return JSON.stringify(canonicalise(value));
16
+ }
17
+ //#endregion
18
+ export { canonicalKey, canonicalise };
package/dist/codec.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { m as ContentDocument } from "./content-oSmH1_zP.cjs";
1
+ import { m as ContentDocument } from "./content-BmqzegMG.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 { m as ContentDocument } from "./content-D3C14yyb.js";
1
+ import { m as ContentDocument } from "./content-CIwPb_yh.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";
@@ -54,19 +54,19 @@ declare const FieldDescriptorSchema: z.ZodObject<{
54
54
  }, z.core.$strict>;
55
55
  type FieldDescriptor = z.infer<typeof FieldDescriptorSchema>;
56
56
  declare const AnchorTypeSchema: z.ZodEnum<{
57
- comment: "comment";
58
57
  bookmark: "bookmark";
59
58
  footnote: "footnote";
60
59
  endnote: "endnote";
60
+ comment: "comment";
61
61
  }>;
62
62
  type AnchorType = z.infer<typeof AnchorTypeSchema>;
63
63
  declare const AnchorDescriptorSchema: z.ZodObject<{
64
64
  kind: z.ZodLiteral<"anchor">;
65
65
  anchorType: z.ZodEnum<{
66
- comment: "comment";
67
66
  bookmark: "bookmark";
68
67
  footnote: "footnote";
69
68
  endnote: "endnote";
69
+ comment: "comment";
70
70
  }>;
71
71
  name: z.ZodString;
72
72
  definition: z.ZodOptional<z.ZodString>;
@@ -132,12 +132,12 @@ type DivisionDescriptor = z.infer<typeof DivisionDescriptorSchema>;
132
132
  declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
133
133
  kind: z.ZodLiteral<"contentControl">;
134
134
  controlType: z.ZodEnum<{
135
- date: "date";
136
135
  richText: "richText";
137
136
  plainText: "plainText";
138
137
  checkbox: "checkbox";
139
138
  dropDown: "dropDown";
140
139
  comboBox: "comboBox";
140
+ date: "date";
141
141
  picture: "picture";
142
142
  repeatingSection: "repeatingSection";
143
143
  button: "button";
@@ -161,10 +161,10 @@ declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
161
161
  }, z.core.$strict>, z.ZodObject<{
162
162
  kind: z.ZodLiteral<"anchor">;
163
163
  anchorType: z.ZodEnum<{
164
- comment: "comment";
165
164
  bookmark: "bookmark";
166
165
  footnote: "footnote";
167
166
  endnote: "endnote";
167
+ comment: "comment";
168
168
  }>;
169
169
  name: z.ZodString;
170
170
  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";
@@ -54,19 +54,19 @@ declare const FieldDescriptorSchema: z.ZodObject<{
54
54
  }, z.core.$strict>;
55
55
  type FieldDescriptor = z.infer<typeof FieldDescriptorSchema>;
56
56
  declare const AnchorTypeSchema: z.ZodEnum<{
57
- comment: "comment";
58
57
  bookmark: "bookmark";
59
58
  footnote: "footnote";
60
59
  endnote: "endnote";
60
+ comment: "comment";
61
61
  }>;
62
62
  type AnchorType = z.infer<typeof AnchorTypeSchema>;
63
63
  declare const AnchorDescriptorSchema: z.ZodObject<{
64
64
  kind: z.ZodLiteral<"anchor">;
65
65
  anchorType: z.ZodEnum<{
66
- comment: "comment";
67
66
  bookmark: "bookmark";
68
67
  footnote: "footnote";
69
68
  endnote: "endnote";
69
+ comment: "comment";
70
70
  }>;
71
71
  name: z.ZodString;
72
72
  definition: z.ZodOptional<z.ZodString>;
@@ -132,12 +132,12 @@ type DivisionDescriptor = z.infer<typeof DivisionDescriptorSchema>;
132
132
  declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
133
133
  kind: z.ZodLiteral<"contentControl">;
134
134
  controlType: z.ZodEnum<{
135
- date: "date";
136
135
  richText: "richText";
137
136
  plainText: "plainText";
138
137
  checkbox: "checkbox";
139
138
  dropDown: "dropDown";
140
139
  comboBox: "comboBox";
140
+ date: "date";
141
141
  picture: "picture";
142
142
  repeatingSection: "repeatingSection";
143
143
  button: "button";
@@ -161,10 +161,10 @@ declare const ConstructDescriptorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
161
161
  }, z.core.$strict>, z.ZodObject<{
162
162
  kind: z.ZodLiteral<"anchor">;
163
163
  anchorType: z.ZodEnum<{
164
- comment: "comment";
165
164
  bookmark: "bookmark";
166
165
  footnote: "footnote";
167
166
  endnote: "endnote";
167
+ comment: "comment";
168
168
  }>;
169
169
  name: z.ZodString;
170
170
  definition: z.ZodOptional<z.ZodString>;
@@ -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-D5pdDPqM.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-CdQuI9f5.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-D5pdDPqM.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-CdQuI9f5.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 };
@@ -1,5 +1,5 @@
1
1
  import { d as MathMlNode } from "./mathml-B1oTCtzc.cjs";
2
- import { s as MathExpression } from "./math-BlG8Tjk-.cjs";
2
+ import { s as MathExpression } from "./math-B7gZJeND.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 { z } from "zod";
@@ -126,12 +126,12 @@ declare const ContentConstructStartSchema: z.ZodObject<{
126
126
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
127
127
  kind: z.ZodLiteral<"contentControl">;
128
128
  controlType: z.ZodEnum<{
129
- date: "date";
130
129
  richText: "richText";
131
130
  plainText: "plainText";
132
131
  checkbox: "checkbox";
133
132
  dropDown: "dropDown";
134
133
  comboBox: "comboBox";
134
+ date: "date";
135
135
  picture: "picture";
136
136
  repeatingSection: "repeatingSection";
137
137
  button: "button";
@@ -155,10 +155,10 @@ declare const ContentConstructStartSchema: z.ZodObject<{
155
155
  }, z.core.$strict>, z.ZodObject<{
156
156
  kind: z.ZodLiteral<"anchor">;
157
157
  anchorType: z.ZodEnum<{
158
- comment: "comment";
159
158
  bookmark: "bookmark";
160
159
  footnote: "footnote";
161
160
  endnote: "endnote";
161
+ comment: "comment";
162
162
  }>;
163
163
  name: z.ZodString;
164
164
  definition: z.ZodOptional<z.ZodString>;
@@ -1668,9 +1668,9 @@ declare const contentDocumentSharedFields: {
1668
1668
  symbol: z.ZodString;
1669
1669
  name: z.ZodOptional<z.ZodString>;
1670
1670
  dimension: z.ZodRecord<z.ZodEnum<{
1671
+ time: "time";
1671
1672
  length: "length";
1672
1673
  mass: "mass";
1673
- time: "time";
1674
1674
  electricCurrent: "electricCurrent";
1675
1675
  thermodynamicTemperature: "thermodynamicTemperature";
1676
1676
  amountOfSubstance: "amountOfSubstance";
@@ -1726,9 +1726,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1726
1726
  symbol: z.ZodString;
1727
1727
  name: z.ZodOptional<z.ZodString>;
1728
1728
  dimension: z.ZodRecord<z.ZodEnum<{
1729
+ time: "time";
1729
1730
  length: "length";
1730
1731
  mass: "mass";
1731
- time: "time";
1732
1732
  electricCurrent: "electricCurrent";
1733
1733
  thermodynamicTemperature: "thermodynamicTemperature";
1734
1734
  amountOfSubstance: "amountOfSubstance";
@@ -1814,9 +1814,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1814
1814
  symbol: z.ZodString;
1815
1815
  name: z.ZodOptional<z.ZodString>;
1816
1816
  dimension: z.ZodRecord<z.ZodEnum<{
1817
+ time: "time";
1817
1818
  length: "length";
1818
1819
  mass: "mass";
1819
- time: "time";
1820
1820
  electricCurrent: "electricCurrent";
1821
1821
  thermodynamicTemperature: "thermodynamicTemperature";
1822
1822
  amountOfSubstance: "amountOfSubstance";
@@ -2103,9 +2103,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2103
2103
  symbol: z.ZodString;
2104
2104
  name: z.ZodOptional<z.ZodString>;
2105
2105
  dimension: z.ZodRecord<z.ZodEnum<{
2106
+ time: "time";
2106
2107
  length: "length";
2107
2108
  mass: "mass";
2108
- time: "time";
2109
2109
  electricCurrent: "electricCurrent";
2110
2110
  thermodynamicTemperature: "thermodynamicTemperature";
2111
2111
  amountOfSubstance: "amountOfSubstance";
@@ -2367,9 +2367,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2367
2367
  symbol: z.ZodString;
2368
2368
  name: z.ZodOptional<z.ZodString>;
2369
2369
  dimension: z.ZodRecord<z.ZodEnum<{
2370
+ time: "time";
2370
2371
  length: "length";
2371
2372
  mass: "mass";
2372
- time: "time";
2373
2373
  electricCurrent: "electricCurrent";
2374
2374
  thermodynamicTemperature: "thermodynamicTemperature";
2375
2375
  amountOfSubstance: "amountOfSubstance";
@@ -2435,9 +2435,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2435
2435
  symbol: z.ZodString;
2436
2436
  name: z.ZodOptional<z.ZodString>;
2437
2437
  dimension: z.ZodRecord<z.ZodEnum<{
2438
+ time: "time";
2438
2439
  length: "length";
2439
2440
  mass: "mass";
2440
- time: "time";
2441
2441
  electricCurrent: "electricCurrent";
2442
2442
  thermodynamicTemperature: "thermodynamicTemperature";
2443
2443
  amountOfSubstance: "amountOfSubstance";
@@ -1,5 +1,5 @@
1
1
  import { d as MathMlNode } from "./mathml-B1oTCtzc.js";
2
- import { s as MathExpression } from "./math-BlG8Tjk-.js";
2
+ import { s as MathExpression } from "./math-B7gZJeND.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 { z } from "zod";
@@ -126,12 +126,12 @@ declare const ContentConstructStartSchema: z.ZodObject<{
126
126
  descriptor: z.ZodDiscriminatedUnion<[z.ZodObject<{
127
127
  kind: z.ZodLiteral<"contentControl">;
128
128
  controlType: z.ZodEnum<{
129
- date: "date";
130
129
  richText: "richText";
131
130
  plainText: "plainText";
132
131
  checkbox: "checkbox";
133
132
  dropDown: "dropDown";
134
133
  comboBox: "comboBox";
134
+ date: "date";
135
135
  picture: "picture";
136
136
  repeatingSection: "repeatingSection";
137
137
  button: "button";
@@ -155,10 +155,10 @@ declare const ContentConstructStartSchema: z.ZodObject<{
155
155
  }, z.core.$strict>, z.ZodObject<{
156
156
  kind: z.ZodLiteral<"anchor">;
157
157
  anchorType: z.ZodEnum<{
158
- comment: "comment";
159
158
  bookmark: "bookmark";
160
159
  footnote: "footnote";
161
160
  endnote: "endnote";
161
+ comment: "comment";
162
162
  }>;
163
163
  name: z.ZodString;
164
164
  definition: z.ZodOptional<z.ZodString>;
@@ -1668,9 +1668,9 @@ declare const contentDocumentSharedFields: {
1668
1668
  symbol: z.ZodString;
1669
1669
  name: z.ZodOptional<z.ZodString>;
1670
1670
  dimension: z.ZodRecord<z.ZodEnum<{
1671
+ time: "time";
1671
1672
  length: "length";
1672
1673
  mass: "mass";
1673
- time: "time";
1674
1674
  electricCurrent: "electricCurrent";
1675
1675
  thermodynamicTemperature: "thermodynamicTemperature";
1676
1676
  amountOfSubstance: "amountOfSubstance";
@@ -1726,9 +1726,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1726
1726
  symbol: z.ZodString;
1727
1727
  name: z.ZodOptional<z.ZodString>;
1728
1728
  dimension: z.ZodRecord<z.ZodEnum<{
1729
+ time: "time";
1729
1730
  length: "length";
1730
1731
  mass: "mass";
1731
- time: "time";
1732
1732
  electricCurrent: "electricCurrent";
1733
1733
  thermodynamicTemperature: "thermodynamicTemperature";
1734
1734
  amountOfSubstance: "amountOfSubstance";
@@ -1814,9 +1814,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1814
1814
  symbol: z.ZodString;
1815
1815
  name: z.ZodOptional<z.ZodString>;
1816
1816
  dimension: z.ZodRecord<z.ZodEnum<{
1817
+ time: "time";
1817
1818
  length: "length";
1818
1819
  mass: "mass";
1819
- time: "time";
1820
1820
  electricCurrent: "electricCurrent";
1821
1821
  thermodynamicTemperature: "thermodynamicTemperature";
1822
1822
  amountOfSubstance: "amountOfSubstance";
@@ -2103,9 +2103,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2103
2103
  symbol: z.ZodString;
2104
2104
  name: z.ZodOptional<z.ZodString>;
2105
2105
  dimension: z.ZodRecord<z.ZodEnum<{
2106
+ time: "time";
2106
2107
  length: "length";
2107
2108
  mass: "mass";
2108
- time: "time";
2109
2109
  electricCurrent: "electricCurrent";
2110
2110
  thermodynamicTemperature: "thermodynamicTemperature";
2111
2111
  amountOfSubstance: "amountOfSubstance";
@@ -2367,9 +2367,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2367
2367
  symbol: z.ZodString;
2368
2368
  name: z.ZodOptional<z.ZodString>;
2369
2369
  dimension: z.ZodRecord<z.ZodEnum<{
2370
+ time: "time";
2370
2371
  length: "length";
2371
2372
  mass: "mass";
2372
- time: "time";
2373
2373
  electricCurrent: "electricCurrent";
2374
2374
  thermodynamicTemperature: "thermodynamicTemperature";
2375
2375
  amountOfSubstance: "amountOfSubstance";
@@ -2435,9 +2435,9 @@ declare const ContentDocumentSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
2435
2435
  symbol: z.ZodString;
2436
2436
  name: z.ZodOptional<z.ZodString>;
2437
2437
  dimension: z.ZodRecord<z.ZodEnum<{
2438
+ time: "time";
2438
2439
  length: "length";
2439
2440
  mass: "mass";
2440
- time: "time";
2441
2441
  electricCurrent: "electricCurrent";
2442
2442
  thermodynamicTemperature: "thermodynamicTemperature";
2443
2443
  amountOfSubstance: "amountOfSubstance";
@@ -1,2 +1,2 @@
1
- import { $ as ContentSheetPrintRangeSchema, A as ContentPageBreakSchema, At as isContentConstructEnd, B as ContentSectionSchema, C as ContentFormula, Ct as DecimalString, D as ContentListMembership, Dt as contentDocumentSharedFields, E as ContentImageBlockSchema, Et as clampHeadingLevel, F as ContentPathSegment, G as ContentSheetCellComment, H as ContentShapeSchema, I as ContentPathSegmentSchema, J as ContentSheetColumn, K as ContentSheetCellCommentSchema, L as ContentRun, M as ContentParagraphSchema, N as ContentPathPoint, O as ContentListMembershipSchema, Ot as findConstructMarkerImbalance, P as ContentPathPointSchema, Q as ContentSheetPrintRange, R as ContentRunSchema, S as ContentEmbeddedObjectSchema, St as ContentVectorSchema, T as ContentImageBlock, Tt as FusedNode, U as ContentSheet, V as ContentShape, W as ContentSheetCell, X as ContentSheetImage, Y as ContentSheetColumnSchema, Z as ContentSheetImageSchema, _ as ContentDrawPageSchema, _t as ContentTableCellSchema, a as ContentBorderSchema, at as ContentSheetRowSchema, b as ContentEmbeddedObjectBlockSchema, bt as ContentTableSchema, c as ContentCellValue, ct as ContentSlideSchema, d as ContentConstructEndSchema, dt as ContentStrokeStyle, et as ContentSheetPrintSettings, f as ContentConstructStart, ft as ContentStrokeStyleSchema, g as ContentDrawPage, gt as ContentTableCell, h as ContentDocumentSchema, ht as ContentTable, i as ContentBorder, it as ContentSheetRow, j as ContentParagraph, jt as isContentConstructStart, k as ContentPageBreak, kt as isContentBlock, l as ContentCellValueSchema, lt as ContentStroke, m as ContentDocument, mt as ContentSubpathSchema, n as ContentBlock, nt as ContentSheetRepeatRange, o as ContentCellBorders, ot as ContentSheetSchema, p as ContentConstructStartSchema, pt as ContentSubpath, q as ContentSheetCellSchema, r as ContentBlockSchema, rt as ContentSheetRepeatRangeSchema, s as ContentCellBordersSchema, st as ContentSlide, t as ConstructMarkerImbalance, tt as ContentSheetPrintSettingsSchema, u as ContentConstructEnd, ut as ContentStrokeSchema, v as ContentEmbeddedObject, vt as ContentTableRow, w as ContentFormulaSchema, wt as DecimalStringSchema, x as ContentEmbeddedObjectKind, xt as ContentVector, y as ContentEmbeddedObjectBlock, yt as ContentTableRowSchema, z as ContentSection } from "./content-oSmH1_zP.cjs";
1
+ import { $ as ContentSheetPrintRangeSchema, A as ContentPageBreakSchema, At as isContentConstructEnd, B as ContentSectionSchema, C as ContentFormula, Ct as DecimalString, D as ContentListMembership, Dt as contentDocumentSharedFields, E as ContentImageBlockSchema, Et as clampHeadingLevel, F as ContentPathSegment, G as ContentSheetCellComment, H as ContentShapeSchema, I as ContentPathSegmentSchema, J as ContentSheetColumn, K as ContentSheetCellCommentSchema, L as ContentRun, M as ContentParagraphSchema, N as ContentPathPoint, O as ContentListMembershipSchema, Ot as findConstructMarkerImbalance, P as ContentPathPointSchema, Q as ContentSheetPrintRange, R as ContentRunSchema, S as ContentEmbeddedObjectSchema, St as ContentVectorSchema, T as ContentImageBlock, Tt as FusedNode, U as ContentSheet, V as ContentShape, W as ContentSheetCell, X as ContentSheetImage, Y as ContentSheetColumnSchema, Z as ContentSheetImageSchema, _ as ContentDrawPageSchema, _t as ContentTableCellSchema, a as ContentBorderSchema, at as ContentSheetRowSchema, b as ContentEmbeddedObjectBlockSchema, bt as ContentTableSchema, c as ContentCellValue, ct as ContentSlideSchema, d as ContentConstructEndSchema, dt as ContentStrokeStyle, et as ContentSheetPrintSettings, f as ContentConstructStart, ft as ContentStrokeStyleSchema, g as ContentDrawPage, gt as ContentTableCell, h as ContentDocumentSchema, ht as ContentTable, i as ContentBorder, it as ContentSheetRow, j as ContentParagraph, jt as isContentConstructStart, k as ContentPageBreak, kt as isContentBlock, l as ContentCellValueSchema, lt as ContentStroke, m as ContentDocument, mt as ContentSubpathSchema, n as ContentBlock, nt as ContentSheetRepeatRange, o as ContentCellBorders, ot as ContentSheetSchema, p as ContentConstructStartSchema, pt as ContentSubpath, q as ContentSheetCellSchema, r as ContentBlockSchema, rt as ContentSheetRepeatRangeSchema, s as ContentCellBordersSchema, st as ContentSlide, t as ConstructMarkerImbalance, tt as ContentSheetPrintSettingsSchema, u as ContentConstructEnd, ut as ContentStrokeSchema, v as ContentEmbeddedObject, vt as ContentTableRow, w as ContentFormulaSchema, wt as DecimalStringSchema, x as ContentEmbeddedObjectKind, xt as ContentVector, y as ContentEmbeddedObjectBlock, yt as ContentTableRowSchema, z as ContentSection } from "./content-BmqzegMG.cjs";
2
2
  export { ConstructMarkerImbalance, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellValue, ContentCellValueSchema, ContentConstructEnd, ContentConstructEndSchema, ContentConstructStart, ContentConstructStartSchema, ContentDocument, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFormula, ContentFormulaSchema, ContentImageBlock, ContentImageBlockSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentParagraph, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellComment, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DecimalString, DecimalStringSchema, FusedNode, clampHeadingLevel, contentDocumentSharedFields, findConstructMarkerImbalance, isContentBlock, isContentConstructEnd, isContentConstructStart };
package/dist/content.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import { $ as ContentSheetPrintRangeSchema, A as ContentPageBreakSchema, At as isContentConstructEnd, B as ContentSectionSchema, C as ContentFormula, Ct as DecimalString, D as ContentListMembership, Dt as contentDocumentSharedFields, E as ContentImageBlockSchema, Et as clampHeadingLevel, F as ContentPathSegment, G as ContentSheetCellComment, H as ContentShapeSchema, I as ContentPathSegmentSchema, J as ContentSheetColumn, K as ContentSheetCellCommentSchema, L as ContentRun, M as ContentParagraphSchema, N as ContentPathPoint, O as ContentListMembershipSchema, Ot as findConstructMarkerImbalance, P as ContentPathPointSchema, Q as ContentSheetPrintRange, R as ContentRunSchema, S as ContentEmbeddedObjectSchema, St as ContentVectorSchema, T as ContentImageBlock, Tt as FusedNode, U as ContentSheet, V as ContentShape, W as ContentSheetCell, X as ContentSheetImage, Y as ContentSheetColumnSchema, Z as ContentSheetImageSchema, _ as ContentDrawPageSchema, _t as ContentTableCellSchema, a as ContentBorderSchema, at as ContentSheetRowSchema, b as ContentEmbeddedObjectBlockSchema, bt as ContentTableSchema, c as ContentCellValue, ct as ContentSlideSchema, d as ContentConstructEndSchema, dt as ContentStrokeStyle, et as ContentSheetPrintSettings, f as ContentConstructStart, ft as ContentStrokeStyleSchema, g as ContentDrawPage, gt as ContentTableCell, h as ContentDocumentSchema, ht as ContentTable, i as ContentBorder, it as ContentSheetRow, j as ContentParagraph, jt as isContentConstructStart, k as ContentPageBreak, kt as isContentBlock, l as ContentCellValueSchema, lt as ContentStroke, m as ContentDocument, mt as ContentSubpathSchema, n as ContentBlock, nt as ContentSheetRepeatRange, o as ContentCellBorders, ot as ContentSheetSchema, p as ContentConstructStartSchema, pt as ContentSubpath, q as ContentSheetCellSchema, r as ContentBlockSchema, rt as ContentSheetRepeatRangeSchema, s as ContentCellBordersSchema, st as ContentSlide, t as ConstructMarkerImbalance, tt as ContentSheetPrintSettingsSchema, u as ContentConstructEnd, ut as ContentStrokeSchema, v as ContentEmbeddedObject, vt as ContentTableRow, w as ContentFormulaSchema, wt as DecimalStringSchema, x as ContentEmbeddedObjectKind, xt as ContentVector, y as ContentEmbeddedObjectBlock, yt as ContentTableRowSchema, z as ContentSection } from "./content-D3C14yyb.js";
1
+ import { $ as ContentSheetPrintRangeSchema, A as ContentPageBreakSchema, At as isContentConstructEnd, B as ContentSectionSchema, C as ContentFormula, Ct as DecimalString, D as ContentListMembership, Dt as contentDocumentSharedFields, E as ContentImageBlockSchema, Et as clampHeadingLevel, F as ContentPathSegment, G as ContentSheetCellComment, H as ContentShapeSchema, I as ContentPathSegmentSchema, J as ContentSheetColumn, K as ContentSheetCellCommentSchema, L as ContentRun, M as ContentParagraphSchema, N as ContentPathPoint, O as ContentListMembershipSchema, Ot as findConstructMarkerImbalance, P as ContentPathPointSchema, Q as ContentSheetPrintRange, R as ContentRunSchema, S as ContentEmbeddedObjectSchema, St as ContentVectorSchema, T as ContentImageBlock, Tt as FusedNode, U as ContentSheet, V as ContentShape, W as ContentSheetCell, X as ContentSheetImage, Y as ContentSheetColumnSchema, Z as ContentSheetImageSchema, _ as ContentDrawPageSchema, _t as ContentTableCellSchema, a as ContentBorderSchema, at as ContentSheetRowSchema, b as ContentEmbeddedObjectBlockSchema, bt as ContentTableSchema, c as ContentCellValue, ct as ContentSlideSchema, d as ContentConstructEndSchema, dt as ContentStrokeStyle, et as ContentSheetPrintSettings, f as ContentConstructStart, ft as ContentStrokeStyleSchema, g as ContentDrawPage, gt as ContentTableCell, h as ContentDocumentSchema, ht as ContentTable, i as ContentBorder, it as ContentSheetRow, j as ContentParagraph, jt as isContentConstructStart, k as ContentPageBreak, kt as isContentBlock, l as ContentCellValueSchema, lt as ContentStroke, m as ContentDocument, mt as ContentSubpathSchema, n as ContentBlock, nt as ContentSheetRepeatRange, o as ContentCellBorders, ot as ContentSheetSchema, p as ContentConstructStartSchema, pt as ContentSubpath, q as ContentSheetCellSchema, r as ContentBlockSchema, rt as ContentSheetRepeatRangeSchema, s as ContentCellBordersSchema, st as ContentSlide, t as ConstructMarkerImbalance, tt as ContentSheetPrintSettingsSchema, u as ContentConstructEnd, ut as ContentStrokeSchema, v as ContentEmbeddedObject, vt as ContentTableRow, w as ContentFormulaSchema, wt as DecimalStringSchema, x as ContentEmbeddedObjectKind, xt as ContentVector, y as ContentEmbeddedObjectBlock, yt as ContentTableRowSchema, z as ContentSection } from "./content-CIwPb_yh.js";
2
2
  export { ConstructMarkerImbalance, ContentBlock, ContentBlockSchema, ContentBorder, ContentBorderSchema, ContentCellBorders, ContentCellBordersSchema, ContentCellValue, ContentCellValueSchema, ContentConstructEnd, ContentConstructEndSchema, ContentConstructStart, ContentConstructStartSchema, ContentDocument, ContentDocumentSchema, ContentDrawPage, ContentDrawPageSchema, ContentEmbeddedObject, ContentEmbeddedObjectBlock, ContentEmbeddedObjectBlockSchema, ContentEmbeddedObjectKind, ContentEmbeddedObjectSchema, ContentFormula, ContentFormulaSchema, ContentImageBlock, ContentImageBlockSchema, ContentListMembership, ContentListMembershipSchema, ContentPageBreak, ContentPageBreakSchema, ContentParagraph, ContentParagraphSchema, ContentPathPoint, ContentPathPointSchema, ContentPathSegment, ContentPathSegmentSchema, ContentRun, ContentRunSchema, ContentSection, ContentSectionSchema, ContentShape, ContentShapeSchema, ContentSheet, ContentSheetCell, ContentSheetCellComment, ContentSheetCellCommentSchema, ContentSheetCellSchema, ContentSheetColumn, ContentSheetColumnSchema, ContentSheetImage, ContentSheetImageSchema, ContentSheetPrintRange, ContentSheetPrintRangeSchema, ContentSheetPrintSettings, ContentSheetPrintSettingsSchema, ContentSheetRepeatRange, ContentSheetRepeatRangeSchema, ContentSheetRow, ContentSheetRowSchema, ContentSheetSchema, ContentSlide, ContentSlideSchema, ContentStroke, ContentStrokeSchema, ContentStrokeStyle, ContentStrokeStyleSchema, ContentSubpath, ContentSubpathSchema, ContentTable, ContentTableCell, ContentTableCellSchema, ContentTableRow, ContentTableRowSchema, ContentTableSchema, ContentVector, ContentVectorSchema, DecimalString, DecimalStringSchema, FusedNode, clampHeadingLevel, contentDocumentSharedFields, findConstructMarkerImbalance, isContentBlock, isContentConstructEnd, isContentConstructStart };