@json-to-office/jto 6.2.0 → 6.4.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 (29) hide show
  1. package/dist/cli.js +1 -1
  2. package/dist/client/assets/{HomePage-BzVqc59H.js → HomePage-DgyrBIGY.js} +4 -4
  3. package/dist/client/assets/{HomePage-BzVqc59H.js.map → HomePage-DgyrBIGY.js.map} +1 -1
  4. package/dist/client/assets/{JsonEditorPage-B_w18Hi0.js → JsonEditorPage-BGctWRXE.js} +3 -3
  5. package/dist/client/assets/{JsonEditorPage-B_w18Hi0.js.map → JsonEditorPage-BGctWRXE.js.map} +1 -1
  6. package/dist/client/assets/{MonacoPluginProvider-C3zEZQld.js → MonacoPluginProvider-DbBCCotq.js} +5 -5
  7. package/dist/client/assets/{MonacoPluginProvider-C3zEZQld.js.map → MonacoPluginProvider-DbBCCotq.js.map} +1 -1
  8. package/dist/client/assets/{_virtual_jto-plugin-type-libs-jTPhWeEU.js → _virtual_jto-plugin-type-libs-BpQu9aDr.js} +164 -72
  9. package/dist/client/assets/{_virtual_jto-plugin-type-libs-jTPhWeEU.js.map → _virtual_jto-plugin-type-libs-BpQu9aDr.js.map} +1 -1
  10. package/dist/client/assets/_virtual_jto-sandbox-runtime-CySzPJ5n.js +2 -0
  11. package/dist/client/assets/_virtual_jto-sandbox-runtime-CySzPJ5n.js.map +1 -0
  12. package/dist/client/assets/{editor-a7VYkAGF.js → editor-DnPnx_0M.js} +2 -2
  13. package/dist/client/assets/{editor-a7VYkAGF.js.map → editor-DnPnx_0M.js.map} +1 -1
  14. package/dist/client/assets/{editor-monaco-json-ChtoHxGw.js → editor-monaco-json-B_U6hHbA.js} +2 -2
  15. package/dist/client/assets/{editor-monaco-json-ChtoHxGw.js.map → editor-monaco-json-B_U6hHbA.js.map} +1 -1
  16. package/dist/client/assets/index-2S58SOrb.js +27 -0
  17. package/dist/client/assets/index-2S58SOrb.js.map +1 -0
  18. package/dist/client/assets/{index-B0KTyZs_.js → index-CWzQeme_.js} +2 -2
  19. package/dist/client/assets/{index-B0KTyZs_.js.map → index-CWzQeme_.js.map} +1 -1
  20. package/dist/client/assets/{preview-BDH_k10v.js → preview-Bdmil0FT.js} +2 -2
  21. package/dist/client/assets/{preview-BDH_k10v.js.map → preview-Bdmil0FT.js.map} +1 -1
  22. package/dist/client/assets/{useQualityAnalysis-zt2e1ggx.js → useQualityAnalysis-B0tasjoU.js} +2 -2
  23. package/dist/client/assets/{useQualityAnalysis-zt2e1ggx.js.map → useQualityAnalysis-B0tasjoU.js.map} +1 -1
  24. package/dist/client/index.html +1 -1
  25. package/package.json +4 -4
  26. package/dist/client/assets/_virtual_jto-sandbox-runtime-HQzTkKV2.js +0 -2
  27. package/dist/client/assets/_virtual_jto-sandbox-runtime-HQzTkKV2.js.map +0 -1
  28. package/dist/client/assets/index-CFDTrjX3.js +0 -27
  29. package/dist/client/assets/index-CFDTrjX3.js.map +0 -1
@@ -4186,7 +4186,7 @@ export { Mutate, type Mutable } from '../mutate/index';
4186
4186
  export { Parse } from '../parse/index';
4187
4187
  `,"node_modules/@json-to-office/shared/package.json":`{
4188
4188
  "name": "@json-to-office/shared",
4189
- "version": "6.1.0",
4189
+ "version": "6.4.0",
4190
4190
  "types": "./dist/index.d.ts",
4191
4191
  "exports": {
4192
4192
  ".": {
@@ -6744,6 +6744,16 @@ interface InstantiateBlueprintOptions {
6744
6744
  definitions: Readonly<Record<string, JsonBlockDefinition>>;
6745
6745
  /** Metadata values that replace the variant's marked ones. */
6746
6746
  metadata?: Readonly<Record<string, string>>;
6747
+ /**
6748
+ * The variant's children after a caller reshaped them — a deck whose slides
6749
+ * an outline redistributed (#421). The variant's own when omitted.
6750
+ *
6751
+ * They are instantiated in place of the variant's, so the definitions they
6752
+ * invoke and the fill map they produce describe what is actually in the
6753
+ * document. A reshaping that invents a block the blueprint's template does
6754
+ * not define fails here rather than at render time.
6755
+ */
6756
+ children?: readonly unknown[];
6747
6757
  }
6748
6758
  interface InstantiatedBlueprint {
6749
6759
  document: Record<string, unknown>;
@@ -6770,6 +6780,15 @@ declare function selectVariant(blueprint: Blueprint, format: BlueprintFormat, va
6770
6780
  id: string;
6771
6781
  variant: BlueprintVariant;
6772
6782
  };
6783
+ /**
6784
+ * Turn a blueprint into a draft document and the fill map of what it still
6785
+ * owes.
6786
+ *
6787
+ * The variant's children are copied — or the reshaped ones a caller passes as
6788
+ * \`options.children\` — and only the definitions they invoke come with them,
6789
+ * dependencies included. The fill map is computed from the document as built,
6790
+ * so every pointer in it resolves in the document returned beside it.
6791
+ */
6773
6792
  declare function instantiateBlueprint(blueprint: Blueprint, options: InstantiateBlueprintOptions, root: InstantiateRoot): InstantiatedBlueprint;
6774
6793
  /** The definitions the children invoke, dependencies first, from \`available\`. */
6775
6794
  declare function definitionsFor(children: unknown[], available: Readonly<Record<string, JsonBlockDefinition>>, blueprint: Blueprint): Record<string, JsonBlockDefinition>;
@@ -6778,6 +6797,48 @@ declare function slotAt(document: unknown, pointer: string, blocks: Readonly<Rec
6778
6797
  /** The value a JSON pointer names, or undefined. */
6779
6798
  declare function valueAt(root: unknown, pointer: string): unknown;
6780
6799
 
6800
+ /**
6801
+ * What "good" means, as data.
6802
+ *
6803
+ * It lives beside the blueprints because both answer the same question from
6804
+ * opposite ends: a blueprint says what an archetype must contain, and this
6805
+ * says how well the result has to read. Everything that judges a document is
6806
+ * generated from this table rather than written beside it — the evaluation
6807
+ * judge's prompt, \`jto_critique\`'s rubric, the design guide — for the same
6808
+ * reason the design notes are: a rubric restated in prose drifts from the
6809
+ * model the rules enforce, and then two parts of the same system are
6810
+ * measuring different things. These five levels are the ones
6811
+ * \`taste-system.md\` defines; the rules cover 1-3 deterministically and this is
6812
+ * where 4 and 5 are answered.
6813
+ *
6814
+ * A higher level never compensates for a failure below it. That ordering is
6815
+ * the whole point of the scale: a beautiful document with text running off the
6816
+ * page is a level 1 failure, not a level 5 success with a caveat.
6817
+ */
6818
+ interface RubricLevel {
6819
+ level: 1 | 2 | 3 | 4 | 5;
6820
+ name: string;
6821
+ bar: string;
6822
+ }
6823
+ declare const RUBRIC: readonly RubricLevel[];
6824
+ /**
6825
+ * The question the targets are actually stated against.
6826
+ *
6827
+ * A rubric score is a description; this is a decision, and it is the one the
6828
+ * programme's headline metric is made of. Asked separately so a judge that
6829
+ * likes a document cannot quietly round it up to shippable.
6830
+ */
6831
+ declare const SHIPPING_QUESTION = "Would you send this to a client, unchanged, with your name on it?";
6832
+ /**
6833
+ * Sameness is a failure mode this programme creates.
6834
+ *
6835
+ * Moving design decisions into a house theme and a handful of blueprints makes
6836
+ * every document look designed and risks making them all look the same. The
6837
+ * judge is told to notice, so the scorecard can see it happening rather than
6838
+ * celebrating it as consistency.
6839
+ */
6840
+ declare const GENERICNESS_PENALTY = "Separately, rate how generic this looks: whether it reads as a document made for this brief, or as a template that would look identical for any other. A document can be clean, coherent and still generic.";
6841
+
6781
6842
  /**
6782
6843
  * Deep Merge Utilities
6783
6844
  * Generic deep-merge helpers used by both docx and pptx
@@ -6962,7 +7023,7 @@ declare function sendChartRequest<T>(request: ChartRequest<T>): Promise<T>;
6962
7023
  */
6963
7024
  declare function resetChartLimiters(): void;
6964
7025
 
6965
- export { BLOCK_SLOT_PLACEMENT_PROPS, BLOCK_SLOT_ROLES, BLUEPRINT_FORMATS, type BlockComposition, type BlockCompositionOptions, BlockDefinitionsSchema, type BlockEnvironment, BlockEvaluationError, type BlockEvaluatorOptions, type BlockInvocationExample, BlockInvocationPropsSchema, type BlockIssue, type BlockReference, type BlockSectionEffect, type BlockSlideEffect, type BlockSlot, type BlockSlotBudget, type BlockSlotRole, type BlockSlotRoleValue, BlockSlotSchema, type BlockSourceMap, type Blueprint, type BlueprintFillEntry, type BlueprintFormat, type BlueprintIssue, BlueprintPagesSchema, BlueprintSchema, type BlueprintVariant, BlueprintVariantSchema, CANVASES, type ChartRenderCache, type ChartRequest, type ChartRequestStats, type ChartTypography, ChromeSchema, DEFAULT_CHART_CONCURRENCY, DEFAULT_CHART_THEME_COLORS, type DesignCanvas, DesignSpacingSchema, type DesignSystem, DesignSystemProperties, DesignSystemSchema, type DocumentBlockTarget, type ExpandedBlocks, FONT_URL_ALLOWLIST, type FontIssueCode, FontRegistry, FontRegistryEntry, type FontRegistryInput, type FontResolutionIssue, FontRuntimeOpts, type FontSubstitution, type FontValidationInput, type FontValidationResult, type InstantiateBlueprintOptions, type InstantiateRoot, type InstantiatedBlueprint, type JsonBlockDefinition, JsonBlockDefinitionSchema, JsonBlockEvaluator, type MarkerOccurrence, MotifSchema, OfficeFormat, POINTS_PER_PIXEL_96DPI, POPULAR_GOOGLE_FONTS, PaletteSchema, type PopularGoogleFont, type PostJsonOptions, REMOTE_EXPORT_WARNING, ROLE_SCALE_STEPS, RasterizeFontFace, ResolvedFont, ResolvedFontSource, SERVICE_UNAVAILABLE_CODE, type ServiceHeaders, type SynthesizedFamily, TYPE_ROLES, TextCaseSchema, type TypeRole, type TypeRoleName, TypeRoleNameSchema, TypeRoleSchema, TypeRolesSchema, type TypeScale, TypographySchema, UPSTREAM_OVERRIDES, type UpstreamOverride, type UpstreamVariant, WEIGHT_LABELS, applyDocumentBlocksToSchema, applyExportMode, applyFontSubstitution, blockDependencies, blockInvocationExample, blockInvocationPropsSchema, blockPointerKey, blockReferencesFromDocument, blockSlotBudgets, blockSlotEditorSchema, blockSlotFacts, blockSlotJsonSchema, blockSlotMarkdown, blockSlotRoles, blockSlotsEditorSchema, blockSlotsJsonSchema, blockValueAt, blockWordCount, buildDefaultSubstitutionMap, capsFormatting, chartFamilyResolver, chartFontFaceCss, chartPointsPerPixel, collectFontNamesFromDocx, collectFontNamesFromPptx, composeBlocksWithPlugins, createBlockAuthoringSchema, createLimiter, cssFontFamily, defaultSubstituteFor, definitionsFor, designCanvas, designColors, detectFontFormat, documentBlockMetadata, documentFontRegistry, fetchGoogleFontSources, getChartRequestStats, getUpstreamOverride, instantiateBlueprint, isAllowedFontUrl, isBlockRecord, isBlueprint, isPrivateServiceUrl, mergeFontRegistries, mergeWithDefaults, postJsonToService, readBlockDefinitions, recordChartCollected, recordChartRetry, registerBlueprints, remoteExportNotice, resetChartLimiters, resetChartRequestStats, resolveBlockSlot, resolveDesignColor, resolveMotif, resolveServiceUrl, resolveTypeRoles, restructureNameDiscriminatedUnions, rewriteFontFamilyName, selectVariant, sendChartRequest, slotAt, synthesizeFamilyName, themeFontRegistry, toAuthoredBlockPointer, typeScaleSizes, unionBranches, validateBlockDefinitions, validateBlockInvocations, validateBlueprint, validateDesignColors, validateFontReferences, valueAt, withChartFontFaceCss, withChartTypography };
7026
+ export { BLOCK_SLOT_PLACEMENT_PROPS, BLOCK_SLOT_ROLES, BLUEPRINT_FORMATS, type BlockComposition, type BlockCompositionOptions, BlockDefinitionsSchema, type BlockEnvironment, BlockEvaluationError, type BlockEvaluatorOptions, type BlockInvocationExample, BlockInvocationPropsSchema, type BlockIssue, type BlockReference, type BlockSectionEffect, type BlockSlideEffect, type BlockSlot, type BlockSlotBudget, type BlockSlotRole, type BlockSlotRoleValue, BlockSlotSchema, type BlockSourceMap, type Blueprint, type BlueprintFillEntry, type BlueprintFormat, type BlueprintIssue, BlueprintPagesSchema, BlueprintSchema, type BlueprintVariant, BlueprintVariantSchema, CANVASES, type ChartRenderCache, type ChartRequest, type ChartRequestStats, type ChartTypography, ChromeSchema, DEFAULT_CHART_CONCURRENCY, DEFAULT_CHART_THEME_COLORS, type DesignCanvas, DesignSpacingSchema, type DesignSystem, DesignSystemProperties, DesignSystemSchema, type DocumentBlockTarget, type ExpandedBlocks, FONT_URL_ALLOWLIST, type FontIssueCode, FontRegistry, FontRegistryEntry, type FontRegistryInput, type FontResolutionIssue, FontRuntimeOpts, type FontSubstitution, type FontValidationInput, type FontValidationResult, GENERICNESS_PENALTY, type InstantiateBlueprintOptions, type InstantiateRoot, type InstantiatedBlueprint, type JsonBlockDefinition, JsonBlockDefinitionSchema, JsonBlockEvaluator, type MarkerOccurrence, MotifSchema, OfficeFormat, POINTS_PER_PIXEL_96DPI, POPULAR_GOOGLE_FONTS, PaletteSchema, type PopularGoogleFont, type PostJsonOptions, REMOTE_EXPORT_WARNING, ROLE_SCALE_STEPS, RUBRIC, RasterizeFontFace, ResolvedFont, ResolvedFontSource, type RubricLevel, SERVICE_UNAVAILABLE_CODE, SHIPPING_QUESTION, type ServiceHeaders, type SynthesizedFamily, TYPE_ROLES, TextCaseSchema, type TypeRole, type TypeRoleName, TypeRoleNameSchema, TypeRoleSchema, TypeRolesSchema, type TypeScale, TypographySchema, UPSTREAM_OVERRIDES, type UpstreamOverride, type UpstreamVariant, WEIGHT_LABELS, applyDocumentBlocksToSchema, applyExportMode, applyFontSubstitution, blockDependencies, blockInvocationExample, blockInvocationPropsSchema, blockPointerKey, blockReferencesFromDocument, blockSlotBudgets, blockSlotEditorSchema, blockSlotFacts, blockSlotJsonSchema, blockSlotMarkdown, blockSlotRoles, blockSlotsEditorSchema, blockSlotsJsonSchema, blockValueAt, blockWordCount, buildDefaultSubstitutionMap, capsFormatting, chartFamilyResolver, chartFontFaceCss, chartPointsPerPixel, collectFontNamesFromDocx, collectFontNamesFromPptx, composeBlocksWithPlugins, createBlockAuthoringSchema, createLimiter, cssFontFamily, defaultSubstituteFor, definitionsFor, designCanvas, designColors, detectFontFormat, documentBlockMetadata, documentFontRegistry, fetchGoogleFontSources, getChartRequestStats, getUpstreamOverride, instantiateBlueprint, isAllowedFontUrl, isBlockRecord, isBlueprint, isPrivateServiceUrl, mergeFontRegistries, mergeWithDefaults, postJsonToService, readBlockDefinitions, recordChartCollected, recordChartRetry, registerBlueprints, remoteExportNotice, resetChartLimiters, resetChartRequestStats, resolveBlockSlot, resolveDesignColor, resolveMotif, resolveServiceUrl, resolveTypeRoles, restructureNameDiscriminatedUnions, rewriteFontFamilyName, selectVariant, sendChartRequest, slotAt, synthesizeFamilyName, themeFontRegistry, toAuthoredBlockPointer, typeScaleSizes, unionBranches, validateBlockDefinitions, validateBlockInvocations, validateBlueprint, validateDesignColors, validateFontReferences, valueAt, withChartFontFaceCss, withChartTypography };
6966
7027
  `,"node_modules/@json-to-office/shared/dist/plugin/index.d.ts":`import { TSchema, Static } from '@sinclair/typebox';
6967
7028
  import { AddWarningFunction } from '../types/warnings.js';
6968
7029
  import { V as ValidationError, a as ValidationResult } from '../types-BWFZ7OaO.js';
@@ -9479,7 +9540,7 @@ declare function getSchemaMetadata(schema: TSchema): {
9479
9540
  export { DEFAULT_ERROR_CONFIG, ERROR_EMOJIS, type ErrorFormatterConfig, ValidationError, calculatePosition, clearComponentNamesCache, createErrorConfig, createJsonParseError, extractStandardComponentNames, formatErrorMessage, formatErrorSummary, getLiteralValue, getObjectSchemaPropertyNames, getSchemaMetadata, groupErrorsByPath, isLiteralSchema, isObjectSchema, isUnionSchema, transformValueError, transformValueErrors };
9480
9541
  `,"node_modules/@json-to-office/shared-docx/package.json":`{
9481
9542
  "name": "@json-to-office/shared-docx",
9482
- "version": "6.0.0",
9543
+ "version": "6.4.0",
9483
9544
  "types": "./dist/index.d.ts",
9484
9545
  "exports": {
9485
9546
  ".": {
@@ -9641,8 +9702,8 @@ export { ERROR_TEMPLATES, collectIndentConflicts, collectNoteRevisionConflicts,
9641
9702
  import { TextSpaceAfterPropsSchema } from './schemas/custom-components.js';
9642
9703
  export { CustomComponentDefinitionSchema, TextSpaceAfterComponentSchema, TextSpaceAfterProps } from './schemas/custom-components.js';
9643
9704
  import { DocxRendererId } from './schemas/renderer.js';
9644
- export { DEFAULT_DOCX_RENDERER_ID, DOCX_RENDERER_IDS, collectDocxRendererErrors, docxComponentDefinitionName } from './schemas/renderer.js';
9645
- export { STANDARD_COMPONENTS_REGISTRY, getAllStandardComponentNames, getStandardComponent } from './schemas/component-registry.js';
9705
+ export { DEFAULT_DOCX_RENDERER_ID, DOCX_RENDERER_IDS, collectDocxRendererErrors, docxComponentDefinitionName, docxFlowDefinitionName } from './schemas/renderer.js';
9706
+ export { FLOW_CHILDREN, STANDARD_COMPONENTS_REGISTRY, getAllStandardComponentNames, getStandardComponent } from './schemas/component-registry.js';
9646
9707
  export { BASE_SCHEMA_METADATA, COMPONENT_METADATA, ComponentSchemaConfig as DocxComponentSchemaConfig, THEME_SCHEMA_METADATA, convertToJsonSchema as convertDocxToJsonSchema, convertToJsonSchema, createComponentSchema as createDocxComponentSchema, exportSchemaToFile as exportDocxSchemaToFile, fixSchemaReferences as fixDocxSchemaReferences } from './schemas/export.js';
9647
9708
  export { CustomComponentInfo, GenerateDocumentSchemaOptions, generateUnifiedDocumentSchema } from './schemas/generator.js';
9648
9709
  export { docxDocumentBlockTargets } from './schemas/block-authoring.js';
@@ -11270,7 +11331,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11270
11331
  }>>;
11271
11332
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11272
11333
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11273
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11334
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11274
11335
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11275
11336
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11276
11337
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11281,7 +11342,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11281
11342
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11282
11343
  }>>;
11283
11344
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11284
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11345
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11285
11346
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11286
11347
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11287
11348
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11292,7 +11353,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11292
11353
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11293
11354
  }>>;
11294
11355
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11295
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11356
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11296
11357
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11297
11358
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11298
11359
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11303,7 +11364,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11303
11364
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11304
11365
  }>>;
11305
11366
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11306
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11367
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11307
11368
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11308
11369
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11309
11370
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11314,7 +11375,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11314
11375
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11315
11376
  }>>;
11316
11377
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11317
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11378
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11318
11379
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11319
11380
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11320
11381
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11325,7 +11386,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11325
11386
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11326
11387
  }>>;
11327
11388
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11328
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11389
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11329
11390
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11330
11391
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11331
11392
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11336,7 +11397,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11336
11397
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11337
11398
  }>>;
11338
11399
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11339
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11400
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11340
11401
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11341
11402
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11342
11403
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11347,7 +11408,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11347
11408
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11348
11409
  }>>;
11349
11410
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11350
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11411
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11351
11412
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11352
11413
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11353
11414
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -12378,7 +12439,7 @@ export { type BlockComponent, ChartPropsSchema, type ColumnsComponent, ColumnsPr
12378
12439
  import { Static } from '@sinclair/typebox';
12379
12440
 
12380
12441
  declare const GenerateDocumentRequestSchema: _sinclair_typebox.TObject<{
12381
- definition: _sinclair_typebox.TRecursive<_sinclair_typebox.TUnion<_sinclair_typebox.TSchema[]>>;
12442
+ definition: _sinclair_typebox.TRecursive<_sinclair_typebox.TUnion<[..._sinclair_typebox.TSchema[], _sinclair_typebox.TSchema]>>;
12382
12443
  format: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"docx">, _sinclair_typebox.TLiteral<"pdf">, _sinclair_typebox.TLiteral<"html">]>>;
12383
12444
  options: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
12384
12445
  includeMetadata: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
@@ -13163,6 +13224,17 @@ interface StandardComponentDefinition {
13163
13224
  hasSchemaField?: boolean;
13164
13225
  };
13165
13226
  }
13227
+ /**
13228
+ * Flow content: everything a section body holds.
13229
+ *
13230
+ * The containers that sit in flow — \`group\`, \`columns\`, \`text-box\` — are each
13231
+ * compiled to a table cell or a transparent run of blocks, and a cell holds
13232
+ * whatever a section holds. So they name this same list (\`columns\` minus
13233
+ * itself), and the schema builder below gives every container that names the
13234
+ * whole list one shared recursive definition instead of an inlined copy:
13235
+ * that is what lets a text-box hold a columns that holds a text-box.
13236
+ */
13237
+ declare const FLOW_CHILDREN: readonly ["block", "group", "heading", "paragraph", "image", "statistic", "table", "list", "toc", "divider", "highcharts", "chart", "visual", "columns", "text-box"];
13166
13238
  /**
13167
13239
  * SINGLE SOURCE OF TRUTH for all standard components
13168
13240
  *
@@ -13222,13 +13294,25 @@ declare function createAllComponentSchemas(recursiveRef?: TSchema): readonly TSc
13222
13294
  /**
13223
13295
  * Build all standard component schemas with per-container narrowed children.
13224
13296
  *
13225
- * Resolves containers in dependency order so each container's children union
13226
- * only references its allowedChildren. Plugin schemas are always included in
13227
- * every container's children.
13297
+ * Flow content is one shared recursive definition (\`flow\`): every container
13298
+ * whose \`allowedChildren\` is exactly \`FLOW_CHILDREN\` \`section\`, \`group\`,
13299
+ * \`text-box\` takes it as its children type, which is what lets the containers
13300
+ * in flow nest each other without a cycle in the schema. A container that
13301
+ * narrows the list (\`docx\` to sections, \`columns\` to flow minus itself) gets an
13302
+ * inlined union of the branches it names, resolved in dependency order; only
13303
+ * those can still form a cycle, and one is a registry mistake.
13228
13304
  *
13229
- * @param selfRef - The Type.Recursive self-reference (used as fallback and for plugin children)
13305
+ * Plugin schemas join the flow definition and every inlined union, so a plugin
13306
+ * is allowed wherever a standard component is.
13307
+ *
13308
+ * @param selfRef - The Type.Recursive self-reference: table cell content,
13309
+ * section header and footer, plugin children — the positions that take any
13310
+ * component at all.
13230
13311
  * @param pluginSchemas - Plugin component schemas (always allowed in all containers)
13231
- * @returns schemas array and a byName map for direct lookups
13312
+ * @returns every standard branch (\`schemas\`, by name in \`byName\`), the flow
13313
+ * definition, and \`roots\` — the branches outside flow (\`docx\`, \`section\`).
13314
+ * A union a TypeBox check can walk on its own is \`[...roots, flow]\`: the flow
13315
+ * branches reference the definition by \`$id\`, which only resolves through it.
13232
13316
  */
13233
13317
  declare function createAllComponentSchemasNarrowed(selfRef: TSchema, pluginSchemas?: TSchema[], profile?: {
13234
13318
  renderer: DocxRendererId;
@@ -13236,9 +13320,11 @@ declare function createAllComponentSchemasNarrowed(selfRef: TSchema, pluginSchem
13236
13320
  }): {
13237
13321
  schemas: TSchema[];
13238
13322
  byName: Map<string, TSchema>;
13323
+ flow: TSchema;
13324
+ roots: TSchema[];
13239
13325
  };
13240
13326
 
13241
- export { type EmbeddedComponentRegion, STANDARD_COMPONENTS_REGISTRY, type StandardComponentDefinition, createAllComponentSchemas, createAllComponentSchemasNarrowed, createComponentSchemaObject, getAllStandardComponentNames, getComponentsByCategory, getContainerComponents, getContentComponents, getStandardComponent, isStandardComponent };
13327
+ export { type EmbeddedComponentRegion, FLOW_CHILDREN, STANDARD_COMPONENTS_REGISTRY, type StandardComponentDefinition, createAllComponentSchemas, createAllComponentSchemasNarrowed, createComponentSchemaObject, getAllStandardComponentNames, getComponentsByCategory, getContainerComponents, getContentComponents, getStandardComponent, isStandardComponent };
13242
13328
  `,"node_modules/@json-to-office/shared-docx/dist/schemas/components.d.ts":`import * as _sinclair_typebox from '@sinclair/typebox';
13243
13329
  import { Static, TSchema } from '@sinclair/typebox';
13244
13330
  import * as _json_to_office_shared from '@json-to-office/shared';
@@ -14784,7 +14870,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14784
14870
  }>>;
14785
14871
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14786
14872
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14787
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14873
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14788
14874
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14789
14875
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14790
14876
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14795,7 +14881,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14795
14881
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14796
14882
  }>>;
14797
14883
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14798
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14884
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14799
14885
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14800
14886
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14801
14887
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14806,7 +14892,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14806
14892
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14807
14893
  }>>;
14808
14894
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14809
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14895
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14810
14896
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14811
14897
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14812
14898
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14817,7 +14903,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14817
14903
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14818
14904
  }>>;
14819
14905
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14820
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14906
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14821
14907
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14822
14908
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14823
14909
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14828,7 +14914,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14828
14914
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14829
14915
  }>>;
14830
14916
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14831
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14917
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14832
14918
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14833
14919
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14834
14920
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14839,7 +14925,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14839
14925
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14840
14926
  }>>;
14841
14927
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14842
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14928
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14843
14929
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14844
14930
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14845
14931
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14850,7 +14936,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14850
14936
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14851
14937
  }>>;
14852
14938
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14853
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14939
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14854
14940
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14855
14941
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14856
14942
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14861,7 +14947,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14861
14947
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14862
14948
  }>>;
14863
14949
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14864
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14950
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14865
14951
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14866
14952
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14867
14953
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16559,7 +16645,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16559
16645
  }>>;
16560
16646
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16561
16647
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16562
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16648
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16563
16649
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16564
16650
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16565
16651
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16570,7 +16656,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16570
16656
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16571
16657
  }>>;
16572
16658
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16573
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16659
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16574
16660
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16575
16661
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16576
16662
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16581,7 +16667,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16581
16667
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16582
16668
  }>>;
16583
16669
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16584
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16670
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16585
16671
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16586
16672
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16587
16673
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16592,7 +16678,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16592
16678
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16593
16679
  }>>;
16594
16680
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16595
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16681
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16596
16682
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16597
16683
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16598
16684
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16603,7 +16689,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16603
16689
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16604
16690
  }>>;
16605
16691
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16606
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16692
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16607
16693
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16608
16694
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16609
16695
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16614,7 +16700,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16614
16700
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16615
16701
  }>>;
16616
16702
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16617
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16703
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16618
16704
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16619
16705
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16620
16706
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16625,7 +16711,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16625
16711
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16626
16712
  }>>;
16627
16713
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16628
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16714
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16629
16715
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16630
16716
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16631
16717
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16636,7 +16722,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16636
16722
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16637
16723
  }>>;
16638
16724
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16639
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16725
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16640
16726
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16641
16727
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16642
16728
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -17859,7 +17945,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
17859
17945
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17860
17946
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17861
17947
  }>>;
17862
- style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "title" | "caption" | "tableHeader" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
17948
+ style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "caption" | "tableHeader" | "footer" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
17863
17949
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
17864
17950
  text: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
17865
17951
  runs: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
@@ -17938,7 +18024,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
17938
18024
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17939
18025
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17940
18026
  }>>;
17941
- style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "title" | "caption" | "tableHeader" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
18027
+ style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "caption" | "tableHeader" | "footer" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
17942
18028
  }>>;
17943
18029
  }>, _sinclair_typebox.TObject<{
17944
18030
  name: _sinclair_typebox.TLiteral<"image">;
@@ -18090,7 +18176,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
18090
18176
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18091
18177
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18092
18178
  }>>;
18093
- style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "title" | "caption" | "tableHeader" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
18179
+ style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "caption" | "tableHeader" | "footer" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
18094
18180
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
18095
18181
  type: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"rect">, _sinclair_typebox.TLiteral<"roundRect">, _sinclair_typebox.TLiteral<"ellipse">, _sinclair_typebox.TLiteral<"triangle">, _sinclair_typebox.TLiteral<"diamond">, _sinclair_typebox.TLiteral<"pentagon">, _sinclair_typebox.TLiteral<"hexagon">, _sinclair_typebox.TLiteral<"star5">, _sinclair_typebox.TLiteral<"star6">, _sinclair_typebox.TLiteral<"line">, _sinclair_typebox.TLiteral<"arc">, _sinclair_typebox.TLiteral<"pie">, _sinclair_typebox.TLiteral<"blockArc">, _sinclair_typebox.TLiteral<"chord">, _sinclair_typebox.TLiteral<"arrow">, _sinclair_typebox.TLiteral<"chevron">, _sinclair_typebox.TLiteral<"cloud">, _sinclair_typebox.TLiteral<"heart">, _sinclair_typebox.TLiteral<"lightning">]>;
18096
18182
  x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
@@ -18162,7 +18248,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
18162
18248
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18163
18249
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18164
18250
  }>>;
18165
- style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "title" | "caption" | "tableHeader" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
18251
+ style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "caption" | "tableHeader" | "footer" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
18166
18252
  }>>;
18167
18253
  }>, _sinclair_typebox.TObject<{
18168
18254
  name: _sinclair_typebox.TLiteral<"table">;
@@ -18808,7 +18894,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
18808
18894
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18809
18895
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18810
18896
  }>>;
18811
- style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "title" | "caption" | "tableHeader" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
18897
+ style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "caption" | "tableHeader" | "footer" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
18812
18898
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
18813
18899
  text: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
18814
18900
  runs: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
@@ -18887,7 +18973,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
18887
18973
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18888
18974
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18889
18975
  }>>;
18890
- style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "title" | "caption" | "tableHeader" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
18976
+ style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "caption" | "tableHeader" | "footer" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
18891
18977
  }>>;
18892
18978
  }>, _sinclair_typebox.TObject<{
18893
18979
  name: _sinclair_typebox.TLiteral<"image">;
@@ -19039,7 +19125,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
19039
19125
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19040
19126
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19041
19127
  }>>;
19042
- style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "title" | "caption" | "tableHeader" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
19128
+ style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "caption" | "tableHeader" | "footer" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
19043
19129
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
19044
19130
  type: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"rect">, _sinclair_typebox.TLiteral<"roundRect">, _sinclair_typebox.TLiteral<"ellipse">, _sinclair_typebox.TLiteral<"triangle">, _sinclair_typebox.TLiteral<"diamond">, _sinclair_typebox.TLiteral<"pentagon">, _sinclair_typebox.TLiteral<"hexagon">, _sinclair_typebox.TLiteral<"star5">, _sinclair_typebox.TLiteral<"star6">, _sinclair_typebox.TLiteral<"line">, _sinclair_typebox.TLiteral<"arc">, _sinclair_typebox.TLiteral<"pie">, _sinclair_typebox.TLiteral<"blockArc">, _sinclair_typebox.TLiteral<"chord">, _sinclair_typebox.TLiteral<"arrow">, _sinclair_typebox.TLiteral<"chevron">, _sinclair_typebox.TLiteral<"cloud">, _sinclair_typebox.TLiteral<"heart">, _sinclair_typebox.TLiteral<"lightning">]>;
19045
19131
  x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
@@ -19111,7 +19197,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
19111
19197
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19112
19198
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19113
19199
  }>>;
19114
- style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "title" | "caption" | "tableHeader" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
19200
+ style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "caption" | "tableHeader" | "footer" | "body" | "heading1" | "heading2" | "heading3" | "subtitle" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
19115
19201
  }>>;
19116
19202
  }>, _sinclair_typebox.TObject<{
19117
19203
  name: _sinclair_typebox.TLiteral<"table">;
@@ -19895,7 +19981,7 @@ declare const GroupPropsSchema: _sinclair_typebox.TObject<{}>;
19895
19981
  type BlockProps = Static<typeof BlockInvocationPropsSchema>;
19896
19982
 
19897
19983
  declare const StandardComponentDefinitionSchema: _sinclair_typebox.TUnion<_sinclair_typebox.TSchema[]>;
19898
- declare const ComponentDefinitionSchema: _sinclair_typebox.TRecursive<_sinclair_typebox.TUnion<_sinclair_typebox.TSchema[]>>;
19984
+ declare const ComponentDefinitionSchema: _sinclair_typebox.TRecursive<_sinclair_typebox.TUnion<[..._sinclair_typebox.TSchema[], _sinclair_typebox.TSchema]>>;
19899
19985
  type ComponentDefinition = Static<typeof ComponentDefinitionSchema>;
19900
19986
 
19901
19987
  export { type Alignment, AlignmentSchema, BaseComponentFields, type BaseComponentProps, BaseComponentPropsSchema, type BlockProps, type Border, BorderSchema, type ChartProps, ChartPropsSchema, type ColumnsProps, ColumnsPropsSchema, type Comment, type CommentReply, CommentReplySchema, CommentSchema, type ComponentDefinition, ComponentDefinitionSchema, type DividerProps, DividerPropsSchema, EndnotesSchema, type FloatingProperties, FloatingPropertiesSchema, FootnotesSchema, GroupPropsSchema, type HeadingLevel, HeadingLevelSchema, type HeadingProps, HeadingPropsSchema, type HighchartsProps, HighchartsPropsSchema, type HorizontalPositionAlign, HorizontalPositionAlignSchema, type HorizontalPositionRelativeFrom, HorizontalPositionRelativeFromSchema, type ImageProps, ImagePropsSchema, type Indent, IndentSchema, type JustifiedAlignment, JustifiedAlignmentSchema, type LevelFormat, LevelFormatSchema, type LineSpacing, LineSpacingSchema, type ListLevelProps, ListLevelPropsSchema, type ListMarkerFont, ListMarkerFontSchema, type ListProps, ListPropsSchema, type ListSpacing, ListSpacingSchema, type Margins, MarginsSchema, NATIVE_RENDER_MODE, NATIVE_VISUAL_ELEMENT_NAMES, NativeVisualAlignmentSchema, type NativeVisualCanvas, NativeVisualCanvasSchema, NativeVisualColorSchema, type NativeVisualElement, type NativeVisualElementName, NativeVisualElementSchema, NativeVisualExtentSchema, type NativeVisualFill, NativeVisualFillSchema, type NativeVisualImageProps, NativeVisualImagePropsSchema, type NativeVisualLine, NativeVisualLineSchema, NativeVisualMarginSchema, NativeVisualOffsetSchema, type NativeVisualShapeProps, NativeVisualShapePropsSchema, type NativeVisualTextProps, NativeVisualTextPropsSchema, type NativeVisualTextRun, NativeVisualTextRunSchema, type NativeVisualTextSegment, NativeVisualTextSegmentSchema, NativeVisualUnderlineSchema, NativeVisualVerticalAlignmentSchema, type Note, NoteSchema, type Numbering, NumberingSchema, type ParagraphIndent, ParagraphIndentSchema, type ParagraphProps, ParagraphPropsSchema, type ReportProps, ReportPropsSchema, type Revision, type RevisionMark, RevisionMarkSchema, RevisionSchema, type RevisionSegment, RevisionSegmentSchema, type SectionProps, SectionPropsSchema, type Spacing, SpacingSchema, StandardComponentDefinitionSchema, type StatisticProps, StatisticPropsSchema, type TabStop, type TabStopLeader, TabStopLeaderSchema, TabStopSchema, type TabStopType, TabStopTypeSchema, type TabStops, TabStopsSchema, type TableProps, TablePropsSchema, type TextBoxProps, TextBoxPropsSchema, type TextWrappingSide, TextWrappingSideSchema, type TextWrappingType, TextWrappingTypeSchema, TocDepthRangeSchema, type TocProps, TocPropsSchema, TocScopeSchema, TocStyleMappingSchema, TocStyleSchema, type VerticalPositionAlign, VerticalPositionAlignSchema, type VerticalPositionRelativeFrom, VerticalPositionRelativeFromSchema, type VisualCanvas, VisualCanvasBackgroundSchema, VisualCanvasSchema, type VisualNativeProps, VisualNativePropsSchema, type VisualProps, VisualPropsSchema, type VisualRasterProps, VisualRasterPropsSchema, createReportPropsSchema, createSectionPropsSchema, createTablePropsSchema, isNativeVisualProps, oneLineText };
@@ -19968,7 +20054,7 @@ import './components.js';
19968
20054
  import '@json-to-office/shared';
19969
20055
  import '@sinclair/typebox/value';
19970
20056
 
19971
- declare const JsonComponentDefinitionSchema: _sinclair_typebox.TRecursive<_sinclair_typebox.TUnion<_sinclair_typebox.TSchema[]>>;
20057
+ declare const JsonComponentDefinitionSchema: _sinclair_typebox.TRecursive<_sinclair_typebox.TUnion<[..._sinclair_typebox.TSchema[], _sinclair_typebox.TSchema]>>;
19972
20058
  type JsonComponentDefinition = Static<typeof JsonComponentDefinitionSchema>;
19973
20059
  interface ValidationError {
19974
20060
  path: string;
@@ -20259,6 +20345,12 @@ declare const DEFAULT_DOCX_RENDERER_ID: DocxRendererId;
20259
20345
  * renderer.
20260
20346
  */
20261
20347
  declare function docxComponentDefinitionName(renderer: DocxRendererId): string;
20348
+ /**
20349
+ * The flow-content definition: what a section body holds, and so what every
20350
+ * container in flow — \`group\`, \`columns\`, \`text-box\` — holds too. Per renderer
20351
+ * for the same reason as above; unsuffixed for the unprofiled runtime schema.
20352
+ */
20353
+ declare function docxFlowDefinitionName(renderer?: DocxRendererId): string;
20262
20354
  /**
20263
20355
  * Derive one renderer view from the canonical props schema.
20264
20356
  *
@@ -20271,7 +20363,7 @@ declare function docxPropsSchemaForRenderer(componentName: string, schema: TSche
20271
20363
  /** Static renderer-profile diagnostics used by CLI/library validation. */
20272
20364
  declare function collectDocxRendererErrors(data: unknown): ValidationError[];
20273
20365
 
20274
- export { DEFAULT_DOCX_RENDERER_ID, DOCX_RENDERER_IDS, type DocxRendererId, collectDocxRendererErrors, docxComponentDefinitionName, docxPropsSchemaForRenderer };
20366
+ export { DEFAULT_DOCX_RENDERER_ID, DOCX_RENDERER_IDS, type DocxRendererId, collectDocxRendererErrors, docxComponentDefinitionName, docxFlowDefinitionName, docxPropsSchemaForRenderer };
20275
20367
  `,"node_modules/@json-to-office/shared-docx/dist/schemas/theme.d.ts":`import * as _sinclair_typebox from '@sinclair/typebox';
20276
20368
  import { Static } from '@sinclair/typebox';
20277
20369
  import { FontDefinitionSchema } from './font.js';
@@ -22867,7 +22959,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22867
22959
  }>>;
22868
22960
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22869
22961
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22870
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22962
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22871
22963
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22872
22964
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22873
22965
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22878,7 +22970,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22878
22970
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22879
22971
  }>>;
22880
22972
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22881
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22973
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22882
22974
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22883
22975
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22884
22976
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22889,7 +22981,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22889
22981
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22890
22982
  }>>;
22891
22983
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22892
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22984
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22893
22985
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22894
22986
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22895
22987
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22900,7 +22992,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22900
22992
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22901
22993
  }>>;
22902
22994
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22903
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22995
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22904
22996
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22905
22997
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22906
22998
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22911,7 +23003,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22911
23003
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22912
23004
  }>>;
22913
23005
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22914
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
23006
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22915
23007
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22916
23008
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22917
23009
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22922,7 +23014,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22922
23014
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22923
23015
  }>>;
22924
23016
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22925
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
23017
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22926
23018
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22927
23019
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22928
23020
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22933,7 +23025,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22933
23025
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22934
23026
  }>>;
22935
23027
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22936
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
23028
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22937
23029
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22938
23030
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22939
23031
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22944,7 +23036,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22944
23036
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22945
23037
  }>>;
22946
23038
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22947
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
23039
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22948
23040
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22949
23041
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22950
23042
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24646,7 +24738,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24646
24738
  }>>;
24647
24739
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24648
24740
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24649
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24741
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24650
24742
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24651
24743
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24652
24744
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24657,7 +24749,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24657
24749
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24658
24750
  }>>;
24659
24751
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24660
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24752
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24661
24753
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24662
24754
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24663
24755
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24668,7 +24760,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24668
24760
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24669
24761
  }>>;
24670
24762
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24671
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24763
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24672
24764
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24673
24765
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24674
24766
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24679,7 +24771,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24679
24771
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24680
24772
  }>>;
24681
24773
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24682
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24774
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24683
24775
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24684
24776
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24685
24777
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24690,7 +24782,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24690
24782
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24691
24783
  }>>;
24692
24784
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24693
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24785
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24694
24786
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24695
24787
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24696
24788
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24701,7 +24793,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24701
24793
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24702
24794
  }>>;
24703
24795
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24704
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24796
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24705
24797
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24706
24798
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24707
24799
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24712,7 +24804,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24712
24804
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24713
24805
  }>>;
24714
24806
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24715
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24807
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24716
24808
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24717
24809
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24718
24810
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24723,7 +24815,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24723
24815
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24724
24816
  }>>;
24725
24817
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24726
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24818
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24727
24819
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24728
24820
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24729
24821
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26277,7 +26369,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26277
26369
  }>>;
26278
26370
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26279
26371
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26280
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26372
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26281
26373
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26282
26374
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26283
26375
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26288,7 +26380,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26288
26380
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26289
26381
  }>>;
26290
26382
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26291
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26383
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26292
26384
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26293
26385
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26294
26386
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26299,7 +26391,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26299
26391
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26300
26392
  }>>;
26301
26393
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26302
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26394
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26303
26395
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26304
26396
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26305
26397
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26310,7 +26402,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26310
26402
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26311
26403
  }>>;
26312
26404
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26313
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26405
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26314
26406
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26315
26407
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26316
26408
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26321,7 +26413,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26321
26413
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26322
26414
  }>>;
26323
26415
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26324
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26416
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26325
26417
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26326
26418
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26327
26419
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26332,7 +26424,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26332
26424
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26333
26425
  }>>;
26334
26426
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26335
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26427
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26336
26428
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26337
26429
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26338
26430
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26343,7 +26435,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26343
26435
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26344
26436
  }>>;
26345
26437
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26346
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26438
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26347
26439
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26348
26440
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26349
26441
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26354,7 +26446,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26354
26446
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26355
26447
  }>>;
26356
26448
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26357
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26449
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26358
26450
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26359
26451
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26360
26452
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -30874,4 +30966,4 @@ type SlideProps = Static<typeof SlidePropsSchema>;
30874
30966
 
30875
30967
  export { type Position as P, type SlideBackground as S, type Transition as T, PositionSchema as a, type PresentationProps as b, PresentationPropsSchema as c, SlideBackgroundSchema as d, type SlideProps as e, SlidePropsSchema as f, TransitionSchema as g };
30876
30968
  `};export{i as default};
30877
- //# sourceMappingURL=_virtual_jto-plugin-type-libs-jTPhWeEU.js.map
30969
+ //# sourceMappingURL=_virtual_jto-plugin-type-libs-BpQu9aDr.js.map