@json-to-office/jto 6.2.0 → 6.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 (27) hide show
  1. package/dist/cli.js +1 -1
  2. package/dist/client/assets/{HomePage-BzVqc59H.js → HomePage-Dzm2MeID.js} +4 -4
  3. package/dist/client/assets/{HomePage-BzVqc59H.js.map → HomePage-Dzm2MeID.js.map} +1 -1
  4. package/dist/client/assets/{JsonEditorPage-B_w18Hi0.js → JsonEditorPage-DOp1sE3p.js} +3 -3
  5. package/dist/client/assets/{JsonEditorPage-B_w18Hi0.js.map → JsonEditorPage-DOp1sE3p.js.map} +1 -1
  6. package/dist/client/assets/{MonacoPluginProvider-C3zEZQld.js → MonacoPluginProvider-Bc9nyqNY.js} +5 -5
  7. package/dist/client/assets/{MonacoPluginProvider-C3zEZQld.js.map → MonacoPluginProvider-Bc9nyqNY.js.map} +1 -1
  8. package/dist/client/assets/{_virtual_jto-plugin-type-libs-jTPhWeEU.js → _virtual_jto-plugin-type-libs-Pc3DyHoX.js} +120 -59
  9. package/dist/client/assets/{_virtual_jto-plugin-type-libs-jTPhWeEU.js.map → _virtual_jto-plugin-type-libs-Pc3DyHoX.js.map} +1 -1
  10. package/dist/client/assets/_virtual_jto-sandbox-runtime-DUgi1ipv.js +2 -0
  11. package/dist/client/assets/_virtual_jto-sandbox-runtime-DUgi1ipv.js.map +1 -0
  12. package/dist/client/assets/{editor-a7VYkAGF.js → editor-BJWDd3uK.js} +2 -2
  13. package/dist/client/assets/{editor-a7VYkAGF.js.map → editor-BJWDd3uK.js.map} +1 -1
  14. package/dist/client/assets/{editor-monaco-json-ChtoHxGw.js → editor-monaco-json-FLZpeDZL.js} +2 -2
  15. package/dist/client/assets/{editor-monaco-json-ChtoHxGw.js.map → editor-monaco-json-FLZpeDZL.js.map} +1 -1
  16. package/dist/client/assets/{index-B0KTyZs_.js → index-D5Xrk4Ze.js} +2 -2
  17. package/dist/client/assets/{index-B0KTyZs_.js.map → index-D5Xrk4Ze.js.map} +1 -1
  18. package/dist/client/assets/{index-CFDTrjX3.js → index-D6Nfjrjh.js} +3 -3
  19. package/dist/client/assets/{index-CFDTrjX3.js.map → index-D6Nfjrjh.js.map} +1 -1
  20. package/dist/client/assets/{preview-BDH_k10v.js → preview-C4ynYVMZ.js} +2 -2
  21. package/dist/client/assets/{preview-BDH_k10v.js.map → preview-C4ynYVMZ.js.map} +1 -1
  22. package/dist/client/assets/{useQualityAnalysis-zt2e1ggx.js → useQualityAnalysis-kUkZB_mW.js} +2 -2
  23. package/dist/client/assets/{useQualityAnalysis-zt2e1ggx.js.map → useQualityAnalysis-kUkZB_mW.js.map} +1 -1
  24. package/dist/client/index.html +1 -1
  25. package/package.json +2 -2
  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
@@ -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.3.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';
@@ -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<{
@@ -14784,7 +14845,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14784
14845
  }>>;
14785
14846
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14786
14847
  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">[]>>;
14848
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14788
14849
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14789
14850
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14790
14851
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14795,7 +14856,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14795
14856
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14796
14857
  }>>;
14797
14858
  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">[]>>;
14859
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14799
14860
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14800
14861
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14801
14862
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14806,7 +14867,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14806
14867
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14807
14868
  }>>;
14808
14869
  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">[]>>;
14870
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14810
14871
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14811
14872
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14812
14873
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14817,7 +14878,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14817
14878
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14818
14879
  }>>;
14819
14880
  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">[]>>;
14881
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14821
14882
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14822
14883
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14823
14884
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14828,7 +14889,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14828
14889
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14829
14890
  }>>;
14830
14891
  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">[]>>;
14892
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14832
14893
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14833
14894
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14834
14895
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14839,7 +14900,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14839
14900
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14840
14901
  }>>;
14841
14902
  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">[]>>;
14903
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14843
14904
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14844
14905
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14845
14906
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14850,7 +14911,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14850
14911
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14851
14912
  }>>;
14852
14913
  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">[]>>;
14914
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14854
14915
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14855
14916
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14856
14917
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14861,7 +14922,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14861
14922
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14862
14923
  }>>;
14863
14924
  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">[]>>;
14925
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14865
14926
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14866
14927
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14867
14928
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16559,7 +16620,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16559
16620
  }>>;
16560
16621
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16561
16622
  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">[]>>;
16623
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16563
16624
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16564
16625
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16565
16626
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16570,7 +16631,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16570
16631
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16571
16632
  }>>;
16572
16633
  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">[]>>;
16634
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16574
16635
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16575
16636
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16576
16637
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16581,7 +16642,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16581
16642
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16582
16643
  }>>;
16583
16644
  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">[]>>;
16645
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16585
16646
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16586
16647
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16587
16648
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16592,7 +16653,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16592
16653
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16593
16654
  }>>;
16594
16655
  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">[]>>;
16656
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16596
16657
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16597
16658
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16598
16659
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16603,7 +16664,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16603
16664
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16604
16665
  }>>;
16605
16666
  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">[]>>;
16667
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16607
16668
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16608
16669
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16609
16670
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16614,7 +16675,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16614
16675
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16615
16676
  }>>;
16616
16677
  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">[]>>;
16678
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16618
16679
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16619
16680
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16620
16681
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16625,7 +16686,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16625
16686
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16626
16687
  }>>;
16627
16688
  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">[]>>;
16689
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16629
16690
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16630
16691
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16631
16692
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16636,7 +16697,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16636
16697
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16637
16698
  }>>;
16638
16699
  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">[]>>;
16700
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16640
16701
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16641
16702
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16642
16703
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -17859,7 +17920,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
17859
17920
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17860
17921
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17861
17922
  }>>;
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">[]>>;
17923
+ 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
17924
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
17864
17925
  text: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
17865
17926
  runs: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
@@ -17938,7 +17999,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
17938
17999
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17939
18000
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17940
18001
  }>>;
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">[]>>;
18002
+ 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
18003
  }>>;
17943
18004
  }>, _sinclair_typebox.TObject<{
17944
18005
  name: _sinclair_typebox.TLiteral<"image">;
@@ -18090,7 +18151,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
18090
18151
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18091
18152
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18092
18153
  }>>;
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">[]>>;
18154
+ 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
18155
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
18095
18156
  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
18157
  x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
@@ -18162,7 +18223,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
18162
18223
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18163
18224
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18164
18225
  }>>;
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">[]>>;
18226
+ 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
18227
  }>>;
18167
18228
  }>, _sinclair_typebox.TObject<{
18168
18229
  name: _sinclair_typebox.TLiteral<"table">;
@@ -18808,7 +18869,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
18808
18869
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18809
18870
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18810
18871
  }>>;
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">[]>>;
18872
+ 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
18873
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
18813
18874
  text: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
18814
18875
  runs: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
@@ -18887,7 +18948,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
18887
18948
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18888
18949
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18889
18950
  }>>;
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">[]>>;
18951
+ 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
18952
  }>>;
18892
18953
  }>, _sinclair_typebox.TObject<{
18893
18954
  name: _sinclair_typebox.TLiteral<"image">;
@@ -19039,7 +19100,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
19039
19100
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19040
19101
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19041
19102
  }>>;
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">[]>>;
19103
+ 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
19104
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
19044
19105
  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
19106
  x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
@@ -19111,7 +19172,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
19111
19172
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19112
19173
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19113
19174
  }>>;
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">[]>>;
19175
+ 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
19176
  }>>;
19116
19177
  }>, _sinclair_typebox.TObject<{
19117
19178
  name: _sinclair_typebox.TLiteral<"table">;
@@ -22867,7 +22928,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22867
22928
  }>>;
22868
22929
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22869
22930
  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">[]>>;
22931
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22871
22932
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22872
22933
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22873
22934
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22878,7 +22939,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22878
22939
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22879
22940
  }>>;
22880
22941
  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">[]>>;
22942
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22882
22943
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22883
22944
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22884
22945
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22889,7 +22950,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22889
22950
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22890
22951
  }>>;
22891
22952
  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">[]>>;
22953
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22893
22954
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22894
22955
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22895
22956
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22900,7 +22961,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22900
22961
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22901
22962
  }>>;
22902
22963
  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">[]>>;
22964
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22904
22965
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22905
22966
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22906
22967
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22911,7 +22972,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22911
22972
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22912
22973
  }>>;
22913
22974
  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">[]>>;
22975
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22915
22976
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22916
22977
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22917
22978
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22922,7 +22983,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22922
22983
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22923
22984
  }>>;
22924
22985
  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">[]>>;
22986
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22926
22987
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22927
22988
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22928
22989
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22933,7 +22994,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22933
22994
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22934
22995
  }>>;
22935
22996
  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">[]>>;
22997
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22937
22998
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22938
22999
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22939
23000
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22944,7 +23005,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22944
23005
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22945
23006
  }>>;
22946
23007
  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">[]>>;
23008
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22948
23009
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22949
23010
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22950
23011
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24646,7 +24707,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24646
24707
  }>>;
24647
24708
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24648
24709
  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">[]>>;
24710
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24650
24711
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24651
24712
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24652
24713
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24657,7 +24718,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24657
24718
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24658
24719
  }>>;
24659
24720
  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">[]>>;
24721
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24661
24722
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24662
24723
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24663
24724
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24668,7 +24729,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24668
24729
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24669
24730
  }>>;
24670
24731
  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">[]>>;
24732
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24672
24733
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24673
24734
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24674
24735
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24679,7 +24740,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24679
24740
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24680
24741
  }>>;
24681
24742
  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">[]>>;
24743
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24683
24744
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24684
24745
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24685
24746
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24690,7 +24751,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24690
24751
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24691
24752
  }>>;
24692
24753
  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">[]>>;
24754
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24694
24755
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24695
24756
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24696
24757
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24701,7 +24762,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24701
24762
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24702
24763
  }>>;
24703
24764
  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">[]>>;
24765
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24705
24766
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24706
24767
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24707
24768
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24712,7 +24773,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24712
24773
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24713
24774
  }>>;
24714
24775
  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">[]>>;
24776
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24716
24777
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24717
24778
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24718
24779
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24723,7 +24784,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24723
24784
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24724
24785
  }>>;
24725
24786
  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">[]>>;
24787
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24727
24788
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24728
24789
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24729
24790
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26277,7 +26338,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26277
26338
  }>>;
26278
26339
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26279
26340
  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">[]>>;
26341
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26281
26342
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26282
26343
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26283
26344
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26288,7 +26349,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26288
26349
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26289
26350
  }>>;
26290
26351
  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">[]>>;
26352
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26292
26353
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26293
26354
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26294
26355
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26299,7 +26360,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26299
26360
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26300
26361
  }>>;
26301
26362
  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">[]>>;
26363
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26303
26364
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26304
26365
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26305
26366
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26310,7 +26371,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26310
26371
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26311
26372
  }>>;
26312
26373
  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">[]>>;
26374
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26314
26375
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26315
26376
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26316
26377
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26321,7 +26382,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26321
26382
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26322
26383
  }>>;
26323
26384
  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">[]>>;
26385
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26325
26386
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26326
26387
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26327
26388
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26332,7 +26393,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26332
26393
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26333
26394
  }>>;
26334
26395
  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">[]>>;
26396
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26336
26397
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26337
26398
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26338
26399
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26343,7 +26404,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26343
26404
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26344
26405
  }>>;
26345
26406
  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">[]>>;
26407
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26347
26408
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26348
26409
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26349
26410
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26354,7 +26415,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26354
26415
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26355
26416
  }>>;
26356
26417
  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">[]>>;
26418
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26358
26419
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26359
26420
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26360
26421
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -30874,4 +30935,4 @@ type SlideProps = Static<typeof SlidePropsSchema>;
30874
30935
 
30875
30936
  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
30937
  `};export{i as default};
30877
- //# sourceMappingURL=_virtual_jto-plugin-type-libs-jTPhWeEU.js.map
30938
+ //# sourceMappingURL=_virtual_jto-plugin-type-libs-Pc3DyHoX.js.map