@riverbankcms/sdk 0.95.0 → 0.96.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 (149) hide show
  1. package/README.md +27 -4
  2. package/dist/{PreviewEditorSidebar-6FQYKOSB.mjs → PreviewEditorSidebar-46VT4QVU.mjs} +2 -2
  3. package/dist/{PreviewEditorUI-NPO2XMFB.mjs → PreviewEditorUI-JD75GE5F.mjs} +2 -2
  4. package/dist/SdkPreviewModeRuntime-MJUSYUFB.mjs +8 -0
  5. package/dist/_dts/ai/src/contracts/proposals.d.ts +10 -10
  6. package/dist/_dts/block-form/src/client/index.d.ts +1 -1
  7. package/dist/_dts/block-form/src/fields/types.d.ts +9 -1
  8. package/dist/_dts/block-form/src/registry/schemas.d.ts +4 -0
  9. package/dist/_dts/block-form/src/registry/widgets.d.ts +1 -0
  10. package/dist/_dts/block-form/src/widgets/InlineTextField/InlineTextField.d.ts +4 -0
  11. package/dist/_dts/block-form/src/widgets/InlineTextField/index.d.ts +3 -0
  12. package/dist/_dts/block-form/src/widgets/InlineTextField/inlineTextFieldDefaults.d.ts +2 -0
  13. package/dist/_dts/block-form/src/widgets/InlineTextField/inlineTextFieldSchema.d.ts +3 -0
  14. package/dist/_dts/blocks/src/bindings/index.d.ts +1 -0
  15. package/dist/_dts/blocks/src/bindings/types.d.ts +1 -0
  16. package/dist/_dts/blocks/src/index.d.ts +2 -0
  17. package/dist/_dts/blocks/src/system/blocks/appointment-booking.d.ts +2 -29631
  18. package/dist/_dts/blocks/src/system/blocks/blog-listing.d.ts +2 -29614
  19. package/dist/_dts/blocks/src/system/blocks/cart.d.ts +2 -29634
  20. package/dist/_dts/blocks/src/system/blocks/checkout.d.ts +2 -29627
  21. package/dist/_dts/blocks/src/system/blocks/collection.d.ts +2 -29585
  22. package/dist/_dts/blocks/src/system/blocks/faq.d.ts +2 -29677
  23. package/dist/_dts/blocks/src/system/blocks/gifting.d.ts +2 -29655
  24. package/dist/_dts/blocks/src/system/blocks/media-text.d.ts +220 -0
  25. package/dist/_dts/blocks/src/system/blocks/product-detail.d.ts +2 -29655
  26. package/dist/_dts/blocks/src/system/blocks/product-list.d.ts +2 -29685
  27. package/dist/_dts/blocks/src/system/blocks/shop.d.ts +2 -29761
  28. package/dist/_dts/blocks/src/system/fragments/library/heroCopy.d.ts +9 -0
  29. package/dist/_dts/blocks/src/system/inlineText.d.ts +78 -0
  30. package/dist/_dts/blocks/src/system/manifest/derivedContent.d.ts +3 -1
  31. package/dist/_dts/blocks/src/system/manifest/fieldValidation/index.d.ts +15 -3
  32. package/dist/_dts/blocks/src/system/manifest/schema.d.ts +188 -7
  33. package/dist/_dts/blocks/src/system/runtime/nodes/basic.d.ts +2 -1
  34. package/dist/_dts/blocks/src/system/runtime/nodes/renderInlineText.d.ts +3 -0
  35. package/dist/_dts/content-editor/src/index.d.ts +1 -0
  36. package/dist/_dts/content-editor/src/primitives/PreviewInlineTextEditor.d.ts +9 -0
  37. package/dist/_dts/content-model/src/templates/bindingTypeCompatibility.d.ts +1 -1
  38. package/dist/_dts/content-model/src/templates/defaults.d.ts +30 -0
  39. package/dist/_dts/content-model/src/templates/types.d.ts +1 -0
  40. package/dist/_dts/editor/src/inline/FloatingToolbar.d.ts +18 -0
  41. package/dist/_dts/editor/src/inline/InlineTextEditor.d.ts +18 -1
  42. package/dist/_dts/editor/src/inline/InlineTextEditorStyles.d.ts +1 -0
  43. package/dist/_dts/editor/src/inline/domParse.d.ts +3 -0
  44. package/dist/_dts/editor/src/inline/presentation.d.ts +48 -0
  45. package/dist/_dts/editor/src/inline/selection.d.ts +12 -0
  46. package/dist/_dts/editor-blocks/src/widgets/index.d.ts +1 -0
  47. package/dist/_dts/editor-blocks/src/widgets/inline-text/InlineTextField.d.ts +3 -0
  48. package/dist/_dts/editor-blocks/src/widgets/inline-text/index.d.ts +1 -0
  49. package/dist/_dts/path-utils/src/index.d.ts +1 -0
  50. package/dist/_dts/preview-next/src/client/widgets/widgetOverrides.d.ts +1 -0
  51. package/dist/_dts/sdk/src/cli/commands/content.d.ts +56 -0
  52. package/dist/_dts/sdk/src/cli/commands/push/options.d.ts +4 -0
  53. package/dist/_dts/sdk/src/cli/commands/push/scopes/commandBackedDatedOfferingScope.d.ts +2 -6
  54. package/dist/_dts/sdk/src/cli/commands/push/scopes/types.d.ts +2 -0
  55. package/dist/_dts/sdk/src/cli/commands/push/verification.d.ts +56 -0
  56. package/dist/_dts/sdk/src/cli/commands/push-execute.d.ts +2 -1
  57. package/dist/_dts/sdk/src/cli/content/edit/format.d.ts +2 -0
  58. package/dist/_dts/sdk/src/cli/content/edit/path.d.ts +14 -0
  59. package/dist/_dts/sdk/src/cli/content/edit/planner.d.ts +46 -0
  60. package/dist/_dts/sdk/src/cli/content/fs-utils.d.ts +4 -0
  61. package/dist/_dts/sdk/src/cli/content/writer.d.ts +2 -0
  62. package/dist/_dts/sdk/src/cli/merge-remote/mergeFieldChanges.d.ts +22 -0
  63. package/dist/_dts/sdk/src/cli/merge-remote/pageLocal.d.ts +3 -0
  64. package/dist/_dts/sdk/src/cli/merge-remote/pageMerge.d.ts +78 -0
  65. package/dist/_dts/sdk/src/cli/merge-remote/pageMergePlan.d.ts +36 -0
  66. package/dist/_dts/sdk/src/cli/merge-remote/pageMergePush.d.ts +21 -0
  67. package/dist/_dts/sdk/src/cli/merge-remote/pageMergeReport.d.ts +29 -0
  68. package/dist/_dts/sdk/src/cli/merge-remote/pageSnapshots.d.ts +48 -0
  69. package/dist/_dts/sdk/src/cli/sync/diff.d.ts +3 -6
  70. package/dist/_dts/sdk/src/cli/sync/field-diff.d.ts +39 -0
  71. package/dist/_dts/sdk/src/cli/sync/index.d.ts +1 -0
  72. package/dist/_dts/sdk/src/config/field-definitions.d.ts +8 -3
  73. package/dist/_dts/sdk/src/config/typed-entries.d.ts +5 -3
  74. package/dist/_dts/sdk/src/contracts/bindings.d.ts +1 -0
  75. package/dist/_dts/sdk/src/contracts/content.d.ts +18 -0
  76. package/dist/_dts/sdk/src/contracts/index.d.ts +1 -1
  77. package/dist/_dts/sdk/src/contracts/system-block-content.d.ts +3 -2
  78. package/dist/_dts/sdk/src/rendering/helpers/bindings.d.ts +1 -0
  79. package/dist/_dts/sdk/src/version.d.ts +1 -1
  80. package/dist/_dts/theme-core/src/accordions/types.d.ts +1 -1
  81. package/dist/_dts/theme-core/src/buttons/types.d.ts +1 -1
  82. package/dist/_dts/theme-core/src/cards/types.d.ts +15 -15
  83. package/dist/_dts/theme-core/src/generated/containerResponsiveThemeCss.d.ts +1 -1
  84. package/dist/_dts/theme-core/src/inputs/types.d.ts +1 -1
  85. package/dist/_dts/theme-core/src/mock-themes/all.d.ts +42 -42
  86. package/dist/_dts/theme-core/src/palette/variants/types.d.ts +2 -2
  87. package/dist/_dts/theme-core/src/schema.d.ts +44 -44
  88. package/dist/_dts/theme-core/src/site-styles/backgroundAppearance.d.ts +2 -2
  89. package/dist/_dts/theme-core/src/site-styles/designState.d.ts +16 -16
  90. package/dist/_dts/theme-core/src/site-styles/pageDesignIntent.d.ts +4 -4
  91. package/dist/_dts/theme-core/src/site-styles/tokenRecipes.d.ts +1 -1
  92. package/dist/_dts/theme-core/src/tokens/themeColorTokens.d.ts +1 -1
  93. package/dist/{chunk-K2SJTZMX.mjs → chunk-4TLTV7OB.mjs} +1 -1
  94. package/dist/{chunk-4A6NWO3X.mjs → chunk-EL55VV6Q.mjs} +47 -7
  95. package/dist/{chunk-PJPFTVZG.mjs → chunk-VHIMXQ7Z.mjs} +105 -3
  96. package/dist/{chunk-VZBSD4AJ.mjs → chunk-XMATDBXO.mjs} +1633 -225
  97. package/dist/cli/index.mjs +2691 -772
  98. package/dist/cli/init-docs/content/cli-reference.md +43 -4
  99. package/dist/cli/init-docs/content/content-management.md +22 -0
  100. package/dist/client/{accordion-LGO4IO5U.mjs → accordion-GUNXIIZR.mjs} +1 -1
  101. package/dist/client/{bookingForm-MWLS4LGU.mjs → bookingForm-AOU4VHP5.mjs} +3 -3
  102. package/dist/client/{carousel-6AHNP5HA.mjs → carousel-4QSX2JPC.mjs} +1 -1
  103. package/dist/client/{cart-CIXGYAZB.mjs → cart-JKN6C4ZB.mjs} +4 -4
  104. package/dist/client/{checkout-OTX6O3DN.mjs → checkout-YY6YMITW.mjs} +4 -4
  105. package/dist/client/{chunk-Y2PMKCXO.mjs → chunk-6H27K6AA.mjs} +1 -1
  106. package/dist/client/{chunk-R3NQTBWE.mjs → chunk-A3YN7M3G.mjs} +1 -1
  107. package/dist/client/{chunk-TREIML53.mjs → chunk-BFCJZODD.mjs} +3 -3
  108. package/dist/client/{chunk-INRIT6DP.mjs → chunk-CPKMJVBD.mjs} +5 -5
  109. package/dist/client/{chunk-V67AT7ZW.mjs → chunk-GWCRCJLB.mjs} +6 -0
  110. package/dist/client/{chunk-AVBQSUIS.mjs → chunk-H7A6PUGM.mjs} +1 -1
  111. package/dist/client/{chunk-HOP7MKAZ.mjs → chunk-SY543WZ3.mjs} +1 -1
  112. package/dist/client/{chunk-MYCXAKWP.mjs → chunk-VJROUYOQ.mjs} +2 -2
  113. package/dist/client/client.mjs +4007 -3687
  114. package/dist/client/{courseRegistration-2LU6C3JL.mjs → courseRegistration-UU2KMPSQ.mjs} +3 -3
  115. package/dist/client/{eventCalendar-OKUSISBZ.mjs → eventCalendar-WIVNS2TM.mjs} +6 -6
  116. package/dist/client/{eventCombined-CMF6CD4S.mjs → eventCombined-P3G5MW4J.mjs} +6 -6
  117. package/dist/client/{eventDetails-XYWH7WXI.mjs → eventDetails-2VHJ2RDG.mjs} +6 -6
  118. package/dist/client/{eventListing-EK5DJTAH.mjs → eventListing-TGO6JI3R.mjs} +6 -6
  119. package/dist/client/{eventRegistration-XDOSICV6.mjs → eventRegistration-B46HEJES.mjs} +6 -6
  120. package/dist/client/{form-J6GOHKYG.mjs → form-VKRTFUNQ.mjs} +1 -1
  121. package/dist/client/{headerSection-C5SYJTRW.mjs → headerSection-XUX4ZJLO.mjs} +2 -2
  122. package/dist/client/hooks.mjs +20 -3
  123. package/dist/client/{locationMap-QSQIFVVT.mjs → locationMap-NQFI5MJO.mjs} +2 -2
  124. package/dist/client/{newsletterForm-47VXJRWK.mjs → newsletterForm-P2GETCQK.mjs} +1 -1
  125. package/dist/client/{productDetail-5U6ISCC2.mjs → productDetail-7NQ7O5IF.mjs} +4 -4
  126. package/dist/client/{productList-XDZUMR3P.mjs → productList-RX6ZJ7BL.mjs} +4 -4
  127. package/dist/client/rendering/client.mjs +3822 -3600
  128. package/dist/client/rendering/islands.mjs +18 -18
  129. package/dist/client/rendering.mjs +1211 -883
  130. package/dist/client/{shop-ZSZKIY3R.mjs → shop-BHN5AKY6.mjs} +4 -4
  131. package/dist/preview-next/client/runtime.mjs +3 -3
  132. package/dist/{sdk-runtime-PHNM7MRD.mjs → sdk-runtime-X2LXQ5IC.mjs} +4 -4
  133. package/dist/server/components.mjs +3144 -2827
  134. package/dist/server/config-template-validation.mjs +29 -20
  135. package/dist/server/config-validation.mjs +22 -4
  136. package/dist/server/config.mjs +22 -4
  137. package/dist/server/data.mjs +20 -3
  138. package/dist/server/index.mjs +1 -1
  139. package/dist/server/next.mjs +3181 -2858
  140. package/dist/server/page-converter.mjs +20 -3
  141. package/dist/server/prebuild.mjs +1 -1
  142. package/dist/server/rendering/server.mjs +3153 -2837
  143. package/dist/server/rendering.mjs +3168 -2844
  144. package/dist/server/routing.mjs +21 -4
  145. package/dist/server/server.mjs +2299 -2188
  146. package/dist/server/theme-bridge.mjs +43 -0
  147. package/dist/styles/index.css +44 -0
  148. package/package.json +1 -1
  149. package/dist/SdkPreviewModeRuntime-PBEFH5AL.mjs +0 -8
@@ -27,10 +27,10 @@ export declare const inputSystemSchema: z.ZodObject<{
27
27
  }>>;
28
28
  }, z.core.$strip>;
29
29
  corners: z.ZodNullable<z.ZodEnum<{
30
+ soft: "soft";
30
31
  square: "square";
31
32
  rounded: "rounded";
32
33
  pill: "pill";
33
- soft: "soft";
34
34
  }>>;
35
35
  shadow: z.ZodNullable<z.ZodObject<{
36
36
  elevation: z.ZodEnum<{
@@ -115,7 +115,7 @@ export declare const mockThemes: {
115
115
  level: "medium" | "high" | "low" | "off";
116
116
  easing: "standard" | "snappy" | "gentle" | null;
117
117
  };
118
- corners: "square" | "rounded" | "pill" | "soft";
118
+ corners: "soft" | "square" | "rounded" | "pill";
119
119
  header: {
120
120
  variant: "classic" | "centered" | "transparent" | "floating";
121
121
  positioning: "fixed" | "static" | "sticky";
@@ -645,12 +645,12 @@ export declare const mockThemes: {
645
645
  softness: "soft" | "crisp" | "hard" | null;
646
646
  position: "bottom" | "bottom-right";
647
647
  } | undefined;
648
- corners?: "square" | "rounded" | "pill" | "soft" | undefined;
648
+ corners?: "soft" | "square" | "rounded" | "pill" | undefined;
649
649
  cornerRadii?: {
650
- topLeft?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
651
- topRight?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
652
- bottomLeft?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
653
- bottomRight?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
650
+ topLeft?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
651
+ topRight?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
652
+ bottomLeft?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
653
+ bottomRight?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
654
654
  } | undefined;
655
655
  border?: {
656
656
  widthClass: string;
@@ -669,7 +669,7 @@ export declare const mockThemes: {
669
669
  colorToken: string;
670
670
  } | null;
671
671
  spacing: "medium" | "none" | "compact" | "cozy" | "comfortable" | "spacious";
672
- corners: "square" | "rounded" | "pill" | "soft" | null;
672
+ corners: "soft" | "square" | "rounded" | "pill" | null;
673
673
  border: {
674
674
  widthClass: string;
675
675
  colorToken: string;
@@ -732,7 +732,7 @@ export declare const mockThemes: {
732
732
  colorToken: string;
733
733
  style?: "all" | "underline" | undefined;
734
734
  };
735
- corners: "square" | "rounded" | "pill" | "soft" | null;
735
+ corners: "soft" | "square" | "rounded" | "pill" | null;
736
736
  shadow: {
737
737
  elevation: "medium" | "none" | "low";
738
738
  softness: "soft" | "crisp" | "hard" | null;
@@ -764,7 +764,7 @@ export declare const mockThemes: {
764
764
  };
765
765
  } | undefined;
766
766
  inputStyle?: {
767
- shape: "square" | "rounded" | "pill" | "soft";
767
+ shape: "soft" | "square" | "rounded" | "pill";
768
768
  border: "subtle" | "underline" | "defined";
769
769
  focus: "underline" | "glow" | "ring";
770
770
  label: "above" | "inside";
@@ -845,19 +845,19 @@ export declare const mockThemes: {
845
845
  minHeight?: "none" | "hero" | "banner" | "immersive" | null | undefined;
846
846
  tileTreatment?: "default" | "quiet" | "brand-depth" | null | undefined;
847
847
  eventListTreatment?: "plain" | "lined-panel" | null | undefined;
848
- eyebrowTreatment?: "plain" | "pill" | "accent" | "accent-pill" | "pill-bounce" | "accent-pill-bounce" | null | undefined;
848
+ eyebrowTreatment?: "accent" | "plain" | "pill" | "accent-pill" | "pill-bounce" | "accent-pill-bounce" | null | undefined;
849
849
  headingDecoration?: {
850
850
  family: "none";
851
851
  } | {
852
852
  family: "organic-squiggle" | "short-center-rule";
853
- colorToken?: "text" | "primary" | "secondary" | "accent" | "muted" | "border" | undefined;
853
+ colorToken?: "text" | "accent" | "primary" | "secondary" | "muted" | "border" | undefined;
854
854
  } | null | undefined;
855
855
  headingDecorationOverride?: "off" | "site-default" | null | undefined;
856
856
  accordionIconTreatment?: {
857
857
  iconSet: "chevron" | "caret" | "plus" | "minimal-cross";
858
- colorToken: "current" | "text" | "primary" | "secondary" | "accent" | "muted";
858
+ colorToken: "current" | "text" | "accent" | "primary" | "secondary" | "muted";
859
859
  motion: "none" | "rotate" | "swap";
860
- openColorToken?: "current" | "text" | "primary" | "secondary" | "accent" | "muted" | undefined;
860
+ openColorToken?: "current" | "text" | "accent" | "primary" | "secondary" | "muted" | undefined;
861
861
  } | null | undefined;
862
862
  } | null | undefined;
863
863
  containerStyles?: {
@@ -996,7 +996,7 @@ export declare const mockThemes: {
996
996
  family: "none";
997
997
  } | {
998
998
  family: "organic-squiggle" | "short-center-rule";
999
- colorToken?: "text" | "primary" | "secondary" | "accent" | "muted" | "border" | undefined;
999
+ colorToken?: "text" | "accent" | "primary" | "secondary" | "muted" | "border" | undefined;
1000
1000
  } | undefined;
1001
1001
  customCssRules?: {
1002
1002
  id: string;
@@ -1161,7 +1161,7 @@ export declare const mockThemes: {
1161
1161
  level: "medium" | "high" | "low" | "off";
1162
1162
  easing: "standard" | "snappy" | "gentle" | null;
1163
1163
  };
1164
- corners: "square" | "rounded" | "pill" | "soft";
1164
+ corners: "soft" | "square" | "rounded" | "pill";
1165
1165
  header: {
1166
1166
  variant: "classic" | "centered" | "transparent" | "floating";
1167
1167
  positioning: "fixed" | "static" | "sticky";
@@ -1691,12 +1691,12 @@ export declare const mockThemes: {
1691
1691
  softness: "soft" | "crisp" | "hard" | null;
1692
1692
  position: "bottom" | "bottom-right";
1693
1693
  } | undefined;
1694
- corners?: "square" | "rounded" | "pill" | "soft" | undefined;
1694
+ corners?: "soft" | "square" | "rounded" | "pill" | undefined;
1695
1695
  cornerRadii?: {
1696
- topLeft?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
1697
- topRight?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
1698
- bottomLeft?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
1699
- bottomRight?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
1696
+ topLeft?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
1697
+ topRight?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
1698
+ bottomLeft?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
1699
+ bottomRight?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
1700
1700
  } | undefined;
1701
1701
  border?: {
1702
1702
  widthClass: string;
@@ -1715,7 +1715,7 @@ export declare const mockThemes: {
1715
1715
  colorToken: string;
1716
1716
  } | null;
1717
1717
  spacing: "medium" | "none" | "compact" | "cozy" | "comfortable" | "spacious";
1718
- corners: "square" | "rounded" | "pill" | "soft" | null;
1718
+ corners: "soft" | "square" | "rounded" | "pill" | null;
1719
1719
  border: {
1720
1720
  widthClass: string;
1721
1721
  colorToken: string;
@@ -1778,7 +1778,7 @@ export declare const mockThemes: {
1778
1778
  colorToken: string;
1779
1779
  style?: "all" | "underline" | undefined;
1780
1780
  };
1781
- corners: "square" | "rounded" | "pill" | "soft" | null;
1781
+ corners: "soft" | "square" | "rounded" | "pill" | null;
1782
1782
  shadow: {
1783
1783
  elevation: "medium" | "none" | "low";
1784
1784
  softness: "soft" | "crisp" | "hard" | null;
@@ -1810,7 +1810,7 @@ export declare const mockThemes: {
1810
1810
  };
1811
1811
  } | undefined;
1812
1812
  inputStyle?: {
1813
- shape: "square" | "rounded" | "pill" | "soft";
1813
+ shape: "soft" | "square" | "rounded" | "pill";
1814
1814
  border: "subtle" | "underline" | "defined";
1815
1815
  focus: "underline" | "glow" | "ring";
1816
1816
  label: "above" | "inside";
@@ -1891,19 +1891,19 @@ export declare const mockThemes: {
1891
1891
  minHeight?: "none" | "hero" | "banner" | "immersive" | null | undefined;
1892
1892
  tileTreatment?: "default" | "quiet" | "brand-depth" | null | undefined;
1893
1893
  eventListTreatment?: "plain" | "lined-panel" | null | undefined;
1894
- eyebrowTreatment?: "plain" | "pill" | "accent" | "accent-pill" | "pill-bounce" | "accent-pill-bounce" | null | undefined;
1894
+ eyebrowTreatment?: "accent" | "plain" | "pill" | "accent-pill" | "pill-bounce" | "accent-pill-bounce" | null | undefined;
1895
1895
  headingDecoration?: {
1896
1896
  family: "none";
1897
1897
  } | {
1898
1898
  family: "organic-squiggle" | "short-center-rule";
1899
- colorToken?: "text" | "primary" | "secondary" | "accent" | "muted" | "border" | undefined;
1899
+ colorToken?: "text" | "accent" | "primary" | "secondary" | "muted" | "border" | undefined;
1900
1900
  } | null | undefined;
1901
1901
  headingDecorationOverride?: "off" | "site-default" | null | undefined;
1902
1902
  accordionIconTreatment?: {
1903
1903
  iconSet: "chevron" | "caret" | "plus" | "minimal-cross";
1904
- colorToken: "current" | "text" | "primary" | "secondary" | "accent" | "muted";
1904
+ colorToken: "current" | "text" | "accent" | "primary" | "secondary" | "muted";
1905
1905
  motion: "none" | "rotate" | "swap";
1906
- openColorToken?: "current" | "text" | "primary" | "secondary" | "accent" | "muted" | undefined;
1906
+ openColorToken?: "current" | "text" | "accent" | "primary" | "secondary" | "muted" | undefined;
1907
1907
  } | null | undefined;
1908
1908
  } | null | undefined;
1909
1909
  containerStyles?: {
@@ -2042,7 +2042,7 @@ export declare const mockThemes: {
2042
2042
  family: "none";
2043
2043
  } | {
2044
2044
  family: "organic-squiggle" | "short-center-rule";
2045
- colorToken?: "text" | "primary" | "secondary" | "accent" | "muted" | "border" | undefined;
2045
+ colorToken?: "text" | "accent" | "primary" | "secondary" | "muted" | "border" | undefined;
2046
2046
  } | undefined;
2047
2047
  customCssRules?: {
2048
2048
  id: string;
@@ -2207,7 +2207,7 @@ export declare const mockThemes: {
2207
2207
  level: "medium" | "high" | "low" | "off";
2208
2208
  easing: "standard" | "snappy" | "gentle" | null;
2209
2209
  };
2210
- corners: "square" | "rounded" | "pill" | "soft";
2210
+ corners: "soft" | "square" | "rounded" | "pill";
2211
2211
  header: {
2212
2212
  variant: "classic" | "centered" | "transparent" | "floating";
2213
2213
  positioning: "fixed" | "static" | "sticky";
@@ -2737,12 +2737,12 @@ export declare const mockThemes: {
2737
2737
  softness: "soft" | "crisp" | "hard" | null;
2738
2738
  position: "bottom" | "bottom-right";
2739
2739
  } | undefined;
2740
- corners?: "square" | "rounded" | "pill" | "soft" | undefined;
2740
+ corners?: "soft" | "square" | "rounded" | "pill" | undefined;
2741
2741
  cornerRadii?: {
2742
- topLeft?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
2743
- topRight?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
2744
- bottomLeft?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
2745
- bottomRight?: "square" | "rounded" | "pill" | "soft" | "expressive" | undefined;
2742
+ topLeft?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
2743
+ topRight?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
2744
+ bottomLeft?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
2745
+ bottomRight?: "soft" | "square" | "rounded" | "pill" | "expressive" | undefined;
2746
2746
  } | undefined;
2747
2747
  border?: {
2748
2748
  widthClass: string;
@@ -2761,7 +2761,7 @@ export declare const mockThemes: {
2761
2761
  colorToken: string;
2762
2762
  } | null;
2763
2763
  spacing: "medium" | "none" | "compact" | "cozy" | "comfortable" | "spacious";
2764
- corners: "square" | "rounded" | "pill" | "soft" | null;
2764
+ corners: "soft" | "square" | "rounded" | "pill" | null;
2765
2765
  border: {
2766
2766
  widthClass: string;
2767
2767
  colorToken: string;
@@ -2824,7 +2824,7 @@ export declare const mockThemes: {
2824
2824
  colorToken: string;
2825
2825
  style?: "all" | "underline" | undefined;
2826
2826
  };
2827
- corners: "square" | "rounded" | "pill" | "soft" | null;
2827
+ corners: "soft" | "square" | "rounded" | "pill" | null;
2828
2828
  shadow: {
2829
2829
  elevation: "medium" | "none" | "low";
2830
2830
  softness: "soft" | "crisp" | "hard" | null;
@@ -2856,7 +2856,7 @@ export declare const mockThemes: {
2856
2856
  };
2857
2857
  } | undefined;
2858
2858
  inputStyle?: {
2859
- shape: "square" | "rounded" | "pill" | "soft";
2859
+ shape: "soft" | "square" | "rounded" | "pill";
2860
2860
  border: "subtle" | "underline" | "defined";
2861
2861
  focus: "underline" | "glow" | "ring";
2862
2862
  label: "above" | "inside";
@@ -2937,19 +2937,19 @@ export declare const mockThemes: {
2937
2937
  minHeight?: "none" | "hero" | "banner" | "immersive" | null | undefined;
2938
2938
  tileTreatment?: "default" | "quiet" | "brand-depth" | null | undefined;
2939
2939
  eventListTreatment?: "plain" | "lined-panel" | null | undefined;
2940
- eyebrowTreatment?: "plain" | "pill" | "accent" | "accent-pill" | "pill-bounce" | "accent-pill-bounce" | null | undefined;
2940
+ eyebrowTreatment?: "accent" | "plain" | "pill" | "accent-pill" | "pill-bounce" | "accent-pill-bounce" | null | undefined;
2941
2941
  headingDecoration?: {
2942
2942
  family: "none";
2943
2943
  } | {
2944
2944
  family: "organic-squiggle" | "short-center-rule";
2945
- colorToken?: "text" | "primary" | "secondary" | "accent" | "muted" | "border" | undefined;
2945
+ colorToken?: "text" | "accent" | "primary" | "secondary" | "muted" | "border" | undefined;
2946
2946
  } | null | undefined;
2947
2947
  headingDecorationOverride?: "off" | "site-default" | null | undefined;
2948
2948
  accordionIconTreatment?: {
2949
2949
  iconSet: "chevron" | "caret" | "plus" | "minimal-cross";
2950
- colorToken: "current" | "text" | "primary" | "secondary" | "accent" | "muted";
2950
+ colorToken: "current" | "text" | "accent" | "primary" | "secondary" | "muted";
2951
2951
  motion: "none" | "rotate" | "swap";
2952
- openColorToken?: "current" | "text" | "primary" | "secondary" | "accent" | "muted" | undefined;
2952
+ openColorToken?: "current" | "text" | "accent" | "primary" | "secondary" | "muted" | undefined;
2953
2953
  } | null | undefined;
2954
2954
  } | null | undefined;
2955
2955
  containerStyles?: {
@@ -3088,7 +3088,7 @@ export declare const mockThemes: {
3088
3088
  family: "none";
3089
3089
  } | {
3090
3090
  family: "organic-squiggle" | "short-center-rule";
3091
- colorToken?: "text" | "primary" | "secondary" | "accent" | "muted" | "border" | undefined;
3091
+ colorToken?: "text" | "accent" | "primary" | "secondary" | "muted" | "border" | undefined;
3092
3092
  } | undefined;
3093
3093
  customCssRules?: {
3094
3094
  id: string;
@@ -71,11 +71,11 @@ export declare const paletteVariantSchema: z.ZodObject<{
71
71
  surface: "surface";
72
72
  success: "success";
73
73
  text: "text";
74
+ accent: "accent";
74
75
  primary: "primary";
75
76
  secondary: "secondary";
76
77
  warning: "warning";
77
78
  background: "background";
78
- accent: "accent";
79
79
  muted: "muted";
80
80
  border: "border";
81
81
  destructive: "destructive";
@@ -118,7 +118,7 @@ export declare const paletteOverridesSchema: z.ZodPipe<z.ZodObject<{
118
118
  muted: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<HexColor, string>>>;
119
119
  text: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<HexColor, string>>>;
120
120
  border: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<HexColor, string>>>;
121
- }, z.core.$strict>, z.ZodTransform<Readonly<Partial<Record<"surface" | "success" | "text" | "primary" | "secondary" | "warning" | "background" | "accent" | "muted" | "border" | "destructive" | "surfaceAlt" | "primaryForeground", HexColor>>>, {
121
+ }, z.core.$strict>, z.ZodTransform<Readonly<Partial<Record<"surface" | "success" | "text" | "accent" | "primary" | "secondary" | "warning" | "background" | "muted" | "border" | "destructive" | "surfaceAlt" | "primaryForeground", HexColor>>>, {
122
122
  primary?: HexColor | undefined;
123
123
  primaryForeground?: HexColor | undefined;
124
124
  secondary?: HexColor | undefined;