@json-to-office/jto 6.0.0 → 6.2.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 (30) hide show
  1. package/dist/cli.js +1 -1
  2. package/dist/client/assets/{HomePage-cnVO2sFq.js → HomePage-BzVqc59H.js} +4 -4
  3. package/dist/client/assets/{HomePage-cnVO2sFq.js.map → HomePage-BzVqc59H.js.map} +1 -1
  4. package/dist/client/assets/{JsonEditorPage-nazV1RwE.js → JsonEditorPage-B_w18Hi0.js} +3 -3
  5. package/dist/client/assets/{JsonEditorPage-nazV1RwE.js.map → JsonEditorPage-B_w18Hi0.js.map} +1 -1
  6. package/dist/client/assets/{MonacoPluginProvider-CHlaWI7K.js → MonacoPluginProvider-C3zEZQld.js} +5 -5
  7. package/dist/client/assets/{MonacoPluginProvider-CHlaWI7K.js.map → MonacoPluginProvider-C3zEZQld.js.map} +1 -1
  8. package/dist/client/assets/{_virtual_jto-plugin-type-libs-ToC-eF7z.js → _virtual_jto-plugin-type-libs-jTPhWeEU.js} +101 -94
  9. package/dist/client/assets/{_virtual_jto-plugin-type-libs-ToC-eF7z.js.map → _virtual_jto-plugin-type-libs-jTPhWeEU.js.map} +1 -1
  10. package/dist/client/assets/_virtual_jto-sandbox-runtime-HQzTkKV2.js +2 -0
  11. package/dist/client/assets/_virtual_jto-sandbox-runtime-HQzTkKV2.js.map +1 -0
  12. package/dist/client/assets/{editor-BDFx5tyz.js → editor-a7VYkAGF.js} +2 -2
  13. package/dist/client/assets/{editor-BDFx5tyz.js.map → editor-a7VYkAGF.js.map} +1 -1
  14. package/dist/client/assets/{editor-monaco-json-Bs0Mrsdq.js → editor-monaco-json-ChtoHxGw.js} +2 -2
  15. package/dist/client/assets/{editor-monaco-json-Bs0Mrsdq.js.map → editor-monaco-json-ChtoHxGw.js.map} +1 -1
  16. package/dist/client/assets/{index-CooDRbV2.js → index-B0KTyZs_.js} +2 -2
  17. package/dist/client/assets/{index-CooDRbV2.js.map → index-B0KTyZs_.js.map} +1 -1
  18. package/dist/client/assets/{index-DJULKPqV.js → index-CFDTrjX3.js} +13 -13
  19. package/dist/client/assets/index-CFDTrjX3.js.map +1 -0
  20. package/dist/client/assets/{preview-1VQB3b7e.js → preview-BDH_k10v.js} +2 -2
  21. package/dist/client/assets/{preview-1VQB3b7e.js.map → preview-BDH_k10v.js.map} +1 -1
  22. package/dist/client/assets/{useQualityAnalysis-Cgw8FvPh.js → useQualityAnalysis-zt2e1ggx.js} +2 -2
  23. package/dist/client/assets/{useQualityAnalysis-Cgw8FvPh.js.map → useQualityAnalysis-zt2e1ggx.js.map} +1 -1
  24. package/dist/client/index.html +1 -1
  25. package/dist/client/templates/client-report-blocks.docx.json +2 -2
  26. package/dist/client/templates/consulting-deck-blocks.pptx.json +1 -2
  27. package/package.json +5 -5
  28. package/dist/client/assets/_virtual_jto-sandbox-runtime-DhfBorPd.js +0 -2
  29. package/dist/client/assets/_virtual_jto-sandbox-runtime-DhfBorPd.js.map +0 -1
  30. package/dist/client/assets/index-DJULKPqV.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.0.0",
4189
+ "version": "6.1.0",
4190
4190
  "types": "./dist/index.d.ts",
4191
4191
  "exports": {
4192
4192
  ".": {
@@ -6819,8 +6819,12 @@ declare function remoteExportNotice(serverUrl: string, allowRemote: boolean | un
6819
6819
  * JSON body with optional dynamic headers, and normalize transport errors — with
6820
6820
  * a request timeout so a wedged service can't hang the render forever, and a
6821
6821
  * bounded retry so one blip does not cost a whole document.
6822
- * Callers decode the response body themselves (highcharts returns base64 text,
6823
- * visual returns JSON), so this returns the raw Response on success.
6822
+ *
6823
+ * The caller says how to read the body (\`decode\`: highcharts returns base64
6824
+ * text, visual returns JSON) rather than receiving the Response, because the
6825
+ * timeout has to cover the body too. A service that sends its headers and then
6826
+ * stalls the stream is the same outage as one that never answers, and a
6827
+ * Response handed back after the abort was disarmed would hang on the read.
6824
6828
  */
6825
6829
  type ServiceHeaders = Record<string, string> | ((body: unknown) => Record<string, string> | Promise<Record<string, string>>);
6826
6830
  /**
@@ -6829,7 +6833,7 @@ type ServiceHeaders = Record<string, string> | ((body: unknown) => Record<string
6829
6833
  * can append \`\${url}/path\` without producing a \`//path\` that breaks routers.
6830
6834
  */
6831
6835
  declare function resolveServiceUrl(propsUrl: string | undefined, servicesUrl: string | undefined, defaultUrl: string): string;
6832
- interface PostJsonOptions {
6836
+ interface PostJsonOptions<T> {
6833
6837
  /** Resolved base URL (use resolveServiceUrl). */
6834
6838
  url: string;
6835
6839
  /** Path appended to the base URL, e.g. '/export' or '/rasterize'. */
@@ -6850,6 +6854,8 @@ interface PostJsonOptions {
6850
6854
  serviceLabel: string;
6851
6855
  /** Message builder for a connection failure (distinct from a timeout). */
6852
6856
  onUnreachable: (url: string, cause: string) => string;
6857
+ /** Read the 2xx body. Runs while the abort is still armed. */
6858
+ decode: (response: Response) => Promise<T>;
6853
6859
  }
6854
6860
  /**
6855
6861
  * A dependency that did not answer. The code lets a server route tell a
@@ -6858,11 +6864,12 @@ interface PostJsonOptions {
6858
6864
  */
6859
6865
  declare const SERVICE_UNAVAILABLE_CODE = "SERVICE_UNAVAILABLE";
6860
6866
  /**
6861
- * POST a JSON body to \`\${url}\${path}\` with a timeout, retrying a service that
6862
- * was busy or restarting. Returns the Response on a 2xx; throws a normalized
6863
- * Error on timeout, connection failure, or non-2xx.
6867
+ * POST a JSON body to \`\${url}\${path}\` and return the decoded 2xx body, under
6868
+ * one timeout covering the whole exchange and retrying a service that was
6869
+ * busy or restarting. Throws a normalized Error on timeout, connection
6870
+ * failure, a body that broke off, or a non-2xx.
6864
6871
  */
6865
- declare function postJsonToService(opts: PostJsonOptions): Promise<Response>;
6872
+ declare function postJsonToService<T>(opts: PostJsonOptions<T>): Promise<T>;
6866
6873
 
6867
6874
  /**
6868
6875
  * Minimal promise pool bounding concurrent async operations. Shared by the
@@ -6914,40 +6921,40 @@ interface ChartRequestStats {
6914
6921
  }
6915
6922
  declare function getChartRequestStats(): ChartRequestStats;
6916
6923
  declare function resetChartRequestStats(): void;
6917
- /** Record one retry. Wire it to \`postJsonToService\`'s \`onRetry\`. */
6918
- declare function recordChartRetry(): void;
6919
6924
  /**
6920
- * Run \`fn\` — one chart's trip to \`serverUrl\` under that server's cap.
6921
- *
6922
- * The first caller to reach a URL fixes its cap for the life of the process:
6923
- * the pool belongs to the server, so a second document cannot widen it by
6924
- * asking for more. A host that wants a different cap sets the same one
6925
- * everywhere, or calls {@link resetChartLimiters} between runs.
6925
+ * Record one chart the document asked for, before anything is deduped or
6926
+ * queued. Counted at the walk rather than inside {@link sendChartRequest} so
6927
+ * \`collected - unique\` stays the work deduplication saved.
6926
6928
  */
6927
- declare function limitChartRequest<T>(serverUrl: string, concurrency: number | undefined, fn: () => Promise<T>): Promise<T>;
6928
- /**
6929
- * Identity of one chart export request: the server it goes to and the body it
6930
- * carries.
6931
- *
6932
- * The body itself rather than a digest of it. Hashing would pull a Node
6933
- * builtin into a module the browser bundle includes, and the map this keys is
6934
- * per document and holds one entry per *unique* chart — so it costs about
6935
- * what the requests it saves already cost, and it cannot collide.
6936
- */
6937
- declare function chartRequestKey(serverUrl: string, requestBody: unknown): string;
6929
+ declare function recordChartCollected(): void;
6930
+ /** Record one retry. Wire it to \`postJsonToService\`'s \`onRetry\`. */
6931
+ declare function recordChartRetry(): void;
6938
6932
  /** Per-document memo of chart renders, keyed by {@link chartRequestKey}. */
6939
6933
  type ChartRenderCache<T> = Map<string, Promise<T>>;
6940
- /**
6941
- * Render a chart once per document however many times it appears.
6934
+ /** One chart's trip to an export server. */
6935
+ interface ChartRequest<T> {
6936
+ /** Per-document memo; omit to render every appearance separately. */
6937
+ cache: ChartRenderCache<T> | undefined;
6938
+ /** Resolved export server URL: keys both the memo and the gate. */
6939
+ serverUrl: string;
6940
+ /** Cap for that server (default {@link DEFAULT_CHART_CONCURRENCY}). */
6941
+ concurrency: number | undefined;
6942
+ /** The body about to be posted; its identity is the memo key. */
6943
+ requestBody: unknown;
6944
+ /** Post it. */
6945
+ send: () => Promise<T>;
6946
+ }
6947
+ /**
6948
+ * Memo, then gate, then counter — and the order is the whole point.
6942
6949
  *
6943
- * The *promise* is memoized, not the result, so charts that are identical and
6944
- * concurrent the normal case, since a document's charts are desugared
6945
- * together share one request rather than racing to start several. A failed
6946
- * render is shared too: the same body would fail the same way, and letting
6947
- * fifty copies each spend the retry budget is exactly the storm the gate
6948
- * exists to prevent.
6950
+ * A chart that the document has already rendered has no request to make, so
6951
+ * it must not sit in the gate holding a slot that a chart with real work to
6952
+ * do could use: four copies of one figure would otherwise fill the default
6953
+ * pool while a single request was in flight. And only what reaches the wire
6954
+ * is counted in flight, so \`maxInFlight\` means requests open against the
6955
+ * server rather than charts waiting their turn.
6949
6956
  */
6950
- declare function dedupeChartRequest<T>(cache: ChartRenderCache<T> | undefined, key: string, send: () => Promise<T>): Promise<T>;
6957
+ declare function sendChartRequest<T>(request: ChartRequest<T>): Promise<T>;
6951
6958
  /**
6952
6959
  * Forget every gate. For tests, and for a host that reconfigures between
6953
6960
  * runs — never while requests are in flight, which would let the next caller
@@ -6955,7 +6962,7 @@ declare function dedupeChartRequest<T>(cache: ChartRenderCache<T> | undefined, k
6955
6962
  */
6956
6963
  declare function resetChartLimiters(): void;
6957
6964
 
6958
- 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 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, chartRequestKey, collectFontNamesFromDocx, collectFontNamesFromPptx, composeBlocksWithPlugins, createBlockAuthoringSchema, createLimiter, cssFontFamily, dedupeChartRequest, defaultSubstituteFor, definitionsFor, designCanvas, designColors, detectFontFormat, documentBlockMetadata, documentFontRegistry, fetchGoogleFontSources, getChartRequestStats, getUpstreamOverride, instantiateBlueprint, isAllowedFontUrl, isBlockRecord, isBlueprint, isPrivateServiceUrl, limitChartRequest, mergeFontRegistries, mergeWithDefaults, postJsonToService, readBlockDefinitions, recordChartRetry, registerBlueprints, remoteExportNotice, resetChartLimiters, resetChartRequestStats, resolveBlockSlot, resolveDesignColor, resolveMotif, resolveServiceUrl, resolveTypeRoles, restructureNameDiscriminatedUnions, rewriteFontFamilyName, selectVariant, slotAt, synthesizeFamilyName, themeFontRegistry, toAuthoredBlockPointer, typeScaleSizes, unionBranches, validateBlockDefinitions, validateBlockInvocations, validateBlueprint, validateDesignColors, validateFontReferences, valueAt, withChartFontFaceCss, withChartTypography };
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 };
6959
6966
  `,"node_modules/@json-to-office/shared/dist/plugin/index.d.ts":`import { TSchema, Static } from '@sinclair/typebox';
6960
6967
  import { AddWarningFunction } from '../types/warnings.js';
6961
6968
  import { V as ValidationError, a as ValidationResult } from '../types-BWFZ7OaO.js';
@@ -11263,7 +11270,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11263
11270
  }>>;
11264
11271
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11265
11272
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11266
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11273
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11267
11274
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11268
11275
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11269
11276
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11274,7 +11281,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11274
11281
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11275
11282
  }>>;
11276
11283
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11277
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11284
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11278
11285
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11279
11286
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11280
11287
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11285,7 +11292,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11285
11292
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11286
11293
  }>>;
11287
11294
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11288
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11295
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11289
11296
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11290
11297
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11291
11298
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11296,7 +11303,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11296
11303
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11297
11304
  }>>;
11298
11305
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11299
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11306
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11300
11307
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11301
11308
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11302
11309
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11307,7 +11314,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11307
11314
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11308
11315
  }>>;
11309
11316
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11310
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11317
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11311
11318
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11312
11319
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11313
11320
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11318,7 +11325,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11318
11325
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11319
11326
  }>>;
11320
11327
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11321
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11328
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11322
11329
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11323
11330
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11324
11331
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11329,7 +11336,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11329
11336
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11330
11337
  }>>;
11331
11338
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11332
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11339
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11333
11340
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11334
11341
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11335
11342
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -11340,7 +11347,7 @@ declare const COMPONENT_SCHEMA_MAP: {
11340
11347
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
11341
11348
  }>>;
11342
11349
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
11343
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11350
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
11344
11351
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11345
11352
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
11346
11353
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14777,7 +14784,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14777
14784
  }>>;
14778
14785
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14779
14786
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14780
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14787
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14781
14788
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14782
14789
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14783
14790
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14788,7 +14795,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14788
14795
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14789
14796
  }>>;
14790
14797
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14791
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14798
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14792
14799
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14793
14800
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14794
14801
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14799,7 +14806,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14799
14806
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14800
14807
  }>>;
14801
14808
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14802
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14809
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14803
14810
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14804
14811
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14805
14812
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14810,7 +14817,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14810
14817
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14811
14818
  }>>;
14812
14819
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14813
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14820
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14814
14821
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14815
14822
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14816
14823
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14821,7 +14828,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14821
14828
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14822
14829
  }>>;
14823
14830
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14824
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14831
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14825
14832
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14826
14833
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14827
14834
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14832,7 +14839,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14832
14839
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14833
14840
  }>>;
14834
14841
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14835
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14842
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14836
14843
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14837
14844
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14838
14845
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14843,7 +14850,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14843
14850
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14844
14851
  }>>;
14845
14852
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14846
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14853
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14847
14854
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14848
14855
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14849
14856
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -14854,7 +14861,7 @@ declare const createReportPropsSchema: (_componentRef?: TSchema) => _sinclair_ty
14854
14861
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
14855
14862
  }>>;
14856
14863
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
14857
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14864
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
14858
14865
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14859
14866
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
14860
14867
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16552,7 +16559,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16552
16559
  }>>;
16553
16560
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16554
16561
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16555
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16562
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16556
16563
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16557
16564
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16558
16565
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16563,7 +16570,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16563
16570
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16564
16571
  }>>;
16565
16572
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16566
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16573
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16567
16574
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16568
16575
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16569
16576
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16574,7 +16581,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16574
16581
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16575
16582
  }>>;
16576
16583
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16577
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16584
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16578
16585
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16579
16586
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16580
16587
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16585,7 +16592,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16585
16592
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16586
16593
  }>>;
16587
16594
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16588
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16595
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16589
16596
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16590
16597
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16591
16598
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16596,7 +16603,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16596
16603
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16597
16604
  }>>;
16598
16605
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16599
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16606
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16600
16607
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16601
16608
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16602
16609
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16607,7 +16614,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16607
16614
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16608
16615
  }>>;
16609
16616
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16610
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16617
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16611
16618
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16612
16619
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16613
16620
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16618,7 +16625,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16618
16625
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16619
16626
  }>>;
16620
16627
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16621
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16628
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16622
16629
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16623
16630
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16624
16631
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -16629,7 +16636,7 @@ declare const ReportPropsSchema: _sinclair_typebox.TObject<{
16629
16636
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
16630
16637
  }>>;
16631
16638
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
16632
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16639
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
16633
16640
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16634
16641
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
16635
16642
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -17852,7 +17859,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
17852
17859
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17853
17860
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17854
17861
  }>>;
17855
- 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">[]>>;
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">[]>>;
17856
17863
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
17857
17864
  text: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
17858
17865
  runs: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
@@ -17931,7 +17938,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
17931
17938
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17932
17939
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
17933
17940
  }>>;
17934
- 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">[]>>;
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">[]>>;
17935
17942
  }>>;
17936
17943
  }>, _sinclair_typebox.TObject<{
17937
17944
  name: _sinclair_typebox.TLiteral<"image">;
@@ -18083,7 +18090,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
18083
18090
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18084
18091
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18085
18092
  }>>;
18086
- 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">[]>>;
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">[]>>;
18087
18094
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
18088
18095
  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">]>;
18089
18096
  x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
@@ -18155,7 +18162,7 @@ declare const VisualRasterPropsSchema: _sinclair_typebox.TObject<{
18155
18162
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18156
18163
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18157
18164
  }>>;
18158
- 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">[]>>;
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">[]>>;
18159
18166
  }>>;
18160
18167
  }>, _sinclair_typebox.TObject<{
18161
18168
  name: _sinclair_typebox.TLiteral<"table">;
@@ -18801,7 +18808,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
18801
18808
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18802
18809
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18803
18810
  }>>;
18804
- 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">[]>>;
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">[]>>;
18805
18812
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
18806
18813
  text: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
18807
18814
  runs: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
@@ -18880,7 +18887,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
18880
18887
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18881
18888
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
18882
18889
  }>>;
18883
- 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">[]>>;
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">[]>>;
18884
18891
  }>>;
18885
18892
  }>, _sinclair_typebox.TObject<{
18886
18893
  name: _sinclair_typebox.TLiteral<"image">;
@@ -19032,7 +19039,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
19032
19039
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19033
19040
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19034
19041
  }>>;
19035
- 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">[]>>;
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">[]>>;
19036
19043
  }> | _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
19037
19044
  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">]>;
19038
19045
  x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
@@ -19104,7 +19111,7 @@ declare const VisualPropsSchema: _sinclair_typebox.TUnion<[_sinclair_typebox.TOb
19104
19111
  columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19105
19112
  rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
19106
19113
  }>>;
19107
- 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">[]>>;
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">[]>>;
19108
19115
  }>>;
19109
19116
  }>, _sinclair_typebox.TObject<{
19110
19117
  name: _sinclair_typebox.TLiteral<"table">;
@@ -22860,7 +22867,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22860
22867
  }>>;
22861
22868
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22862
22869
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22863
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22870
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22864
22871
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22865
22872
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22866
22873
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22871,7 +22878,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22871
22878
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22872
22879
  }>>;
22873
22880
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22874
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22881
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22875
22882
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22876
22883
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22877
22884
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22882,7 +22889,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22882
22889
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22883
22890
  }>>;
22884
22891
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22885
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22892
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22886
22893
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22887
22894
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22888
22895
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22893,7 +22900,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22893
22900
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22894
22901
  }>>;
22895
22902
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22896
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22903
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22897
22904
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22898
22905
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22899
22906
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22904,7 +22911,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22904
22911
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22905
22912
  }>>;
22906
22913
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22907
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22914
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22908
22915
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22909
22916
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22910
22917
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22915,7 +22922,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22915
22922
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22916
22923
  }>>;
22917
22924
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22918
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22925
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22919
22926
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22920
22927
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22921
22928
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22926,7 +22933,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22926
22933
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22927
22934
  }>>;
22928
22935
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22929
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22936
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22930
22937
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22931
22938
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22932
22939
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -22937,7 +22944,7 @@ declare const ThemeOverridesSchema: _sinclair_typebox.TObject<{
22937
22944
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
22938
22945
  }>>;
22939
22946
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
22940
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22947
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
22941
22948
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22942
22949
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
22943
22950
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24639,7 +24646,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24639
24646
  }>>;
24640
24647
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24641
24648
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24642
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24649
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24643
24650
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24644
24651
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24645
24652
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24650,7 +24657,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24650
24657
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24651
24658
  }>>;
24652
24659
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24653
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24660
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24654
24661
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24655
24662
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24656
24663
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24661,7 +24668,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24661
24668
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24662
24669
  }>>;
24663
24670
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24664
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24671
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24665
24672
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24666
24673
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24667
24674
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24672,7 +24679,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24672
24679
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24673
24680
  }>>;
24674
24681
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24675
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24682
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24676
24683
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24677
24684
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24678
24685
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24683,7 +24690,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24683
24690
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24684
24691
  }>>;
24685
24692
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24686
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24693
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24687
24694
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24688
24695
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24689
24696
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24694,7 +24701,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24694
24701
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24695
24702
  }>>;
24696
24703
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24697
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24704
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24698
24705
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24699
24706
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24700
24707
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24705,7 +24712,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24705
24712
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24706
24713
  }>>;
24707
24714
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24708
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24715
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24709
24716
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24710
24717
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24711
24718
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -24716,7 +24723,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
24716
24723
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
24717
24724
  }>>;
24718
24725
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
24719
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24726
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
24720
24727
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24721
24728
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
24722
24729
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26270,7 +26277,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26270
26277
  }>>;
26271
26278
  chrome: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26272
26279
  runningHead: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26273
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26280
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26274
26281
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26275
26282
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26276
26283
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26281,7 +26288,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26281
26288
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26282
26289
  }>>;
26283
26290
  tracker: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26284
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26291
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26285
26292
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26286
26293
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26287
26294
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26292,7 +26299,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26292
26299
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26293
26300
  }>>;
26294
26301
  actionTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26295
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26302
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26296
26303
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26297
26304
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26298
26305
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26303,7 +26310,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26303
26310
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26304
26311
  }>>;
26305
26312
  keyTakeaways: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26306
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26313
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26307
26314
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26308
26315
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26309
26316
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26314,7 +26321,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26314
26321
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26315
26322
  }>>;
26316
26323
  sourceLine: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26317
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26324
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26318
26325
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26319
26326
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26320
26327
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26325,7 +26332,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26325
26332
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26326
26333
  }>>;
26327
26334
  confidentialFooter: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26328
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26335
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26329
26336
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26330
26337
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26331
26338
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26336,7 +26343,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26336
26343
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26337
26344
  }>>;
26338
26345
  logoSlot: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26339
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26346
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26340
26347
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26341
26348
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26342
26349
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -26347,7 +26354,7 @@ declare const COMPONENT_SCHEMA_MAP: {
26347
26354
  alignment: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
26348
26355
  }>>;
26349
26356
  cover: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
26350
- type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"tableHeader" | "footer" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26357
+ type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"footer" | "tableHeader" | "eyebrow" | "display" | "stat" | "quote" | "label" | "tableCell" | "chartLabel" | "tracker" | "source">[]>>;
26351
26358
  color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26352
26359
  fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
26353
26360
  rule: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
@@ -30867,4 +30874,4 @@ type SlideProps = Static<typeof SlidePropsSchema>;
30867
30874
 
30868
30875
  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 };
30869
30876
  `};export{i as default};
30870
- //# sourceMappingURL=_virtual_jto-plugin-type-libs-ToC-eF7z.js.map
30877
+ //# sourceMappingURL=_virtual_jto-plugin-type-libs-jTPhWeEU.js.map