@riverbankcms/sdk 0.60.12 → 0.60.14
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.
- package/README.md +10 -7
- package/dist/_dts/api/src/bookingConfig.d.ts +31 -1
- package/dist/_dts/api/src/bookingManagementEndpoints.d.ts +38 -1
- package/dist/_dts/api/src/bookingOperations.d.ts +3 -0
- package/dist/_dts/api/src/bookingRecords.d.ts +45 -0
- package/dist/_dts/api/src/bookingRefundOutcomes.d.ts +4 -4
- package/dist/_dts/api/src/commercePortalEndpoints.d.ts +1 -5
- package/dist/_dts/api/src/communications.d.ts +1 -1
- package/dist/_dts/api/src/contentRuntime.d.ts +1 -1
- package/dist/_dts/api/src/endpoints.d.ts +89 -9
- package/dist/_dts/api/src/index.d.ts +2 -1
- package/dist/_dts/api/src/publicExperienceEndpoints.d.ts +1 -0
- package/dist/_dts/api/src/seoEndpoints.d.ts +2 -0
- package/dist/_dts/api/src/siteAssets.d.ts +0 -10
- package/dist/_dts/api/src/types.d.ts +1 -1
- package/dist/_dts/blocks/src/PageRenderer.d.ts +1 -0
- package/dist/_dts/blocks/src/index.d.ts +1 -0
- package/dist/_dts/blocks/src/portal/types.d.ts +1 -1
- package/dist/_dts/blocks/src/server.d.ts +1 -0
- package/dist/_dts/blocks/src/subroutes/fold.d.ts +40 -0
- package/dist/_dts/blocks/src/subroutes/formatDate.d.ts +12 -0
- package/dist/_dts/blocks/src/subroutes/index.d.ts +3 -0
- package/dist/_dts/blocks/src/subroutes/kinds.d.ts +32 -0
- package/dist/_dts/blocks/src/system/fields/boxStyles.d.ts +3 -1
- package/dist/_dts/blocks/src/system/helpers/resolveBackground.d.ts +2 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/course-registration/types.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/course-registration.interactive.d.ts +1 -0
- package/dist/_dts/blocks/src/system/spacing.d.ts +2 -1
- package/dist/_dts/blocks/src/system/transforms/registry/layout.d.ts +5 -0
- package/dist/_dts/blocks/src/system/transforms/typed.d.ts +5 -1
- package/dist/_dts/core/src/booking-refunds.d.ts +8 -0
- package/dist/_dts/core/src/participant-identity.d.ts +1 -73
- package/dist/_dts/core/src/participants.d.ts +19 -7
- package/dist/_dts/db/src/generated/supabase/database.types.d.ts +188 -36
- package/dist/_dts/preview-next/src/client/preview/EntryEditorPanel.d.ts +3 -3
- package/dist/_dts/preview-next/src/client/preview/PreviewEditorSidebar.d.ts +3 -3
- package/dist/_dts/preview-next/src/client/preview/PreviewShell.d.ts +3 -3
- package/dist/_dts/preview-next/src/client/preview/PreviewShellLayout.d.ts +3 -3
- package/dist/_dts/preview-next/src/client/preview/SubrouteNoticePanel.d.ts +13 -0
- package/dist/_dts/preview-next/src/client/preview/subrouteNotice.d.ts +26 -0
- package/dist/_dts/sdk/src/contracts/page.d.ts +1 -0
- package/dist/_dts/sdk/src/public-api/contracts.d.ts +1 -0
- package/dist/_dts/sdk/src/rendering/islands/types.d.ts +1 -0
- package/dist/_dts/sdk/src/routing/resolvePageContent.d.ts +4 -5
- package/dist/_dts/sdk/src/version.d.ts +1 -1
- package/dist/_dts/theme-core/src/buttons/personalities/index.d.ts +11 -0
- package/dist/_dts/theme-core/src/buttons/personalities/showtime-pill.d.ts +17 -0
- package/dist/_dts/theme-core/src/buttons/types.d.ts +1 -1
- package/dist/_dts/theme-core/src/generated/containerResponsiveThemeCss.d.ts +1 -1
- package/dist/_dts/theme-core/src/mock-themes/all.d.ts +66 -30
- package/dist/_dts/theme-core/src/palette/variants/brand-led.d.ts +16 -0
- package/dist/_dts/theme-core/src/palette/variants/index.d.ts +15 -0
- package/dist/_dts/theme-core/src/palette/variants/types.d.ts +3 -3
- package/dist/_dts/theme-core/src/schema.d.ts +174 -6
- package/dist/_dts/theme-core/src/site-styles/appearancePresets.d.ts +328 -15
- package/dist/_dts/theme-core/src/site-styles/curatedSiteStyles.d.ts +54 -2
- package/dist/_dts/theme-core/src/site-styles/designState.d.ts +124 -0
- package/dist/_dts/theme-core/src/site-styles/generatedSchemas.d.ts +4 -2
- package/dist/_dts/theme-core/src/site-styles/index.d.ts +1 -0
- package/dist/_dts/theme-core/src/site-styles/lookResolution.d.ts +21 -0
- package/dist/_dts/theme-core/src/site-styles/pageDesignEditorModel.d.ts +2 -1
- package/dist/_dts/theme-core/src/site-styles/previewCompiler.d.ts +1 -1
- package/dist/_dts/theme-core/src/site-styles/types.d.ts +135 -2
- package/dist/_dts/ui/src/badge.d.ts +1 -1
- package/dist/_dts/ui/src/button.d.ts +1 -1
- package/dist/cli/index.mjs +744 -176
- package/dist/client/bookings.mjs +115 -63
- package/dist/client/client.mjs +848 -227
- package/dist/client/hooks.mjs +737 -173
- package/dist/client/rendering/client.mjs +179 -100
- package/dist/client/rendering/islands.mjs +179 -99
- package/dist/client/rendering.mjs +847 -226
- package/dist/preview-next/before-render.mjs +103 -16
- package/dist/preview-next/client/runtime.mjs +1615 -319
- package/dist/preview-next/middleware.mjs +103 -16
- package/dist/server/components.mjs +838 -227
- package/dist/server/config-validation.mjs +737 -173
- package/dist/server/config.mjs +737 -173
- package/dist/server/data.mjs +737 -173
- package/dist/server/index.mjs +106 -79
- package/dist/server/next.mjs +841 -229
- package/dist/server/page-converter.mjs +589 -144
- package/dist/server/prebuild.mjs +1 -1
- package/dist/server/rendering/server.mjs +838 -227
- package/dist/server/rendering.mjs +838 -227
- package/dist/server/routing.mjs +771 -178
- package/dist/server/server.mjs +738 -174
- package/dist/server/theme-bridge.mjs +216 -39
- package/dist/server/theme.mjs +139 -37
- package/dist/styles/index.css +44 -2
- package/package.json +1 -1
|
@@ -117,7 +117,7 @@ export declare const mockThemes: {
|
|
|
117
117
|
};
|
|
118
118
|
corners: "soft" | "square" | "rounded" | "pill";
|
|
119
119
|
header: {
|
|
120
|
-
variant: "classic" | "
|
|
120
|
+
variant: "classic" | "editorial" | "centered" | "transparent" | "floating";
|
|
121
121
|
positioning: "fixed" | "static" | "sticky";
|
|
122
122
|
shrinkOnScroll: boolean;
|
|
123
123
|
maxWidth: "full" | "container";
|
|
@@ -278,6 +278,8 @@ export declare const mockThemes: {
|
|
|
278
278
|
name?: string | undefined;
|
|
279
279
|
} | undefined;
|
|
280
280
|
ctaGap?: "default" | "none" | "compact" | "tight" | "relaxed" | "spacious" | undefined;
|
|
281
|
+
ctaTreatment?: "default" | "primary" | "secondary" | "inverted" | "outline" | "ghost" | undefined;
|
|
282
|
+
ctaVariant?: string | undefined;
|
|
281
283
|
dropdownStyle?: {
|
|
282
284
|
background: string;
|
|
283
285
|
textColor: string;
|
|
@@ -477,30 +479,36 @@ export declare const mockThemes: {
|
|
|
477
479
|
} | undefined;
|
|
478
480
|
hero?: {
|
|
479
481
|
typography?: {
|
|
480
|
-
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
482
|
+
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
481
483
|
headlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
482
|
-
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
484
|
+
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
483
485
|
subheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
484
|
-
microHeadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
486
|
+
microHeadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
485
487
|
microHeadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
486
|
-
microSubheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
488
|
+
microSubheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
487
489
|
microSubheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
488
490
|
responsive?: {
|
|
489
491
|
tablet?: {
|
|
490
|
-
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
492
|
+
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
491
493
|
headlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
492
|
-
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
494
|
+
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
493
495
|
subheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
494
496
|
} | undefined;
|
|
495
497
|
mobile?: {
|
|
496
|
-
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
498
|
+
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
497
499
|
headlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
498
|
-
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
500
|
+
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
499
501
|
subheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
500
502
|
} | undefined;
|
|
501
503
|
} | undefined;
|
|
502
504
|
} | undefined;
|
|
503
505
|
} | undefined;
|
|
506
|
+
bodyText?: {
|
|
507
|
+
intro?: {
|
|
508
|
+
paragraphSize?: "default" | "editorial" | undefined;
|
|
509
|
+
headingSize?: "default" | "editorial" | undefined;
|
|
510
|
+
} | undefined;
|
|
511
|
+
} | undefined;
|
|
504
512
|
buttons?: {
|
|
505
513
|
global: {
|
|
506
514
|
cornerStyle: "square" | "rounded" | "pill";
|
|
@@ -777,6 +785,7 @@ export declare const mockThemes: {
|
|
|
777
785
|
scale?: string | null | undefined;
|
|
778
786
|
position?: string | null | undefined;
|
|
779
787
|
opacity?: number | null | undefined;
|
|
788
|
+
motion?: "static" | "fixed-frame" | null | undefined;
|
|
780
789
|
overlay?: {
|
|
781
790
|
type?: "none" | "color" | "gradient" | null | undefined;
|
|
782
791
|
color?: string | null | undefined;
|
|
@@ -787,7 +796,7 @@ export declare const mockThemes: {
|
|
|
787
796
|
headingColor?: string | null | undefined;
|
|
788
797
|
} | null | undefined;
|
|
789
798
|
spacing?: "none" | "compact" | "medium" | "spacious" | "comfortable" | "cozy" | null | undefined;
|
|
790
|
-
minHeight?: "none" | "hero" | "immersive" | null | undefined;
|
|
799
|
+
minHeight?: "none" | "hero" | "banner" | "immersive" | null | undefined;
|
|
791
800
|
} | null | undefined;
|
|
792
801
|
containerStyles?: {
|
|
793
802
|
background?: {
|
|
@@ -832,6 +841,7 @@ export declare const mockThemes: {
|
|
|
832
841
|
scale?: string | null | undefined;
|
|
833
842
|
position?: string | null | undefined;
|
|
834
843
|
opacity?: number | null | undefined;
|
|
844
|
+
motion?: "static" | "fixed-frame" | null | undefined;
|
|
835
845
|
overlay?: {
|
|
836
846
|
type?: "none" | "color" | "gradient" | null | undefined;
|
|
837
847
|
color?: string | null | undefined;
|
|
@@ -889,6 +899,7 @@ export declare const mockThemes: {
|
|
|
889
899
|
scale?: string | null | undefined;
|
|
890
900
|
position?: string | null | undefined;
|
|
891
901
|
opacity?: number | null | undefined;
|
|
902
|
+
motion?: "static" | "fixed-frame" | null | undefined;
|
|
892
903
|
overlay?: {
|
|
893
904
|
type?: "none" | "color" | "gradient" | null | undefined;
|
|
894
905
|
color?: string | null | undefined;
|
|
@@ -906,6 +917,7 @@ export declare const mockThemes: {
|
|
|
906
917
|
spacing?: "none" | "compact" | "medium" | "spacious" | "comfortable" | "cozy" | null | undefined;
|
|
907
918
|
raised?: boolean | null | undefined;
|
|
908
919
|
rounded?: "full" | "none" | "md" | "lg" | "xl" | "sm" | "2xl" | null | undefined;
|
|
920
|
+
treatment?: "accent-quote" | null | undefined;
|
|
909
921
|
} | null | undefined;
|
|
910
922
|
} | undefined;
|
|
911
923
|
}> | undefined;
|
|
@@ -1074,7 +1086,7 @@ export declare const mockThemes: {
|
|
|
1074
1086
|
};
|
|
1075
1087
|
corners: "soft" | "square" | "rounded" | "pill";
|
|
1076
1088
|
header: {
|
|
1077
|
-
variant: "classic" | "
|
|
1089
|
+
variant: "classic" | "editorial" | "centered" | "transparent" | "floating";
|
|
1078
1090
|
positioning: "fixed" | "static" | "sticky";
|
|
1079
1091
|
shrinkOnScroll: boolean;
|
|
1080
1092
|
maxWidth: "full" | "container";
|
|
@@ -1235,6 +1247,8 @@ export declare const mockThemes: {
|
|
|
1235
1247
|
name?: string | undefined;
|
|
1236
1248
|
} | undefined;
|
|
1237
1249
|
ctaGap?: "default" | "none" | "compact" | "tight" | "relaxed" | "spacious" | undefined;
|
|
1250
|
+
ctaTreatment?: "default" | "primary" | "secondary" | "inverted" | "outline" | "ghost" | undefined;
|
|
1251
|
+
ctaVariant?: string | undefined;
|
|
1238
1252
|
dropdownStyle?: {
|
|
1239
1253
|
background: string;
|
|
1240
1254
|
textColor: string;
|
|
@@ -1434,30 +1448,36 @@ export declare const mockThemes: {
|
|
|
1434
1448
|
} | undefined;
|
|
1435
1449
|
hero?: {
|
|
1436
1450
|
typography?: {
|
|
1437
|
-
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
1451
|
+
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
1438
1452
|
headlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
1439
|
-
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
1453
|
+
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
1440
1454
|
subheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
1441
|
-
microHeadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
1455
|
+
microHeadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
1442
1456
|
microHeadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
1443
|
-
microSubheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
1457
|
+
microSubheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
1444
1458
|
microSubheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
1445
1459
|
responsive?: {
|
|
1446
1460
|
tablet?: {
|
|
1447
|
-
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
1461
|
+
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
1448
1462
|
headlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
1449
|
-
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
1463
|
+
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
1450
1464
|
subheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
1451
1465
|
} | undefined;
|
|
1452
1466
|
mobile?: {
|
|
1453
|
-
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
1467
|
+
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
1454
1468
|
headlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
1455
|
-
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
1469
|
+
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
1456
1470
|
subheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
1457
1471
|
} | undefined;
|
|
1458
1472
|
} | undefined;
|
|
1459
1473
|
} | undefined;
|
|
1460
1474
|
} | undefined;
|
|
1475
|
+
bodyText?: {
|
|
1476
|
+
intro?: {
|
|
1477
|
+
paragraphSize?: "default" | "editorial" | undefined;
|
|
1478
|
+
headingSize?: "default" | "editorial" | undefined;
|
|
1479
|
+
} | undefined;
|
|
1480
|
+
} | undefined;
|
|
1461
1481
|
buttons?: {
|
|
1462
1482
|
global: {
|
|
1463
1483
|
cornerStyle: "square" | "rounded" | "pill";
|
|
@@ -1734,6 +1754,7 @@ export declare const mockThemes: {
|
|
|
1734
1754
|
scale?: string | null | undefined;
|
|
1735
1755
|
position?: string | null | undefined;
|
|
1736
1756
|
opacity?: number | null | undefined;
|
|
1757
|
+
motion?: "static" | "fixed-frame" | null | undefined;
|
|
1737
1758
|
overlay?: {
|
|
1738
1759
|
type?: "none" | "color" | "gradient" | null | undefined;
|
|
1739
1760
|
color?: string | null | undefined;
|
|
@@ -1744,7 +1765,7 @@ export declare const mockThemes: {
|
|
|
1744
1765
|
headingColor?: string | null | undefined;
|
|
1745
1766
|
} | null | undefined;
|
|
1746
1767
|
spacing?: "none" | "compact" | "medium" | "spacious" | "comfortable" | "cozy" | null | undefined;
|
|
1747
|
-
minHeight?: "none" | "hero" | "immersive" | null | undefined;
|
|
1768
|
+
minHeight?: "none" | "hero" | "banner" | "immersive" | null | undefined;
|
|
1748
1769
|
} | null | undefined;
|
|
1749
1770
|
containerStyles?: {
|
|
1750
1771
|
background?: {
|
|
@@ -1789,6 +1810,7 @@ export declare const mockThemes: {
|
|
|
1789
1810
|
scale?: string | null | undefined;
|
|
1790
1811
|
position?: string | null | undefined;
|
|
1791
1812
|
opacity?: number | null | undefined;
|
|
1813
|
+
motion?: "static" | "fixed-frame" | null | undefined;
|
|
1792
1814
|
overlay?: {
|
|
1793
1815
|
type?: "none" | "color" | "gradient" | null | undefined;
|
|
1794
1816
|
color?: string | null | undefined;
|
|
@@ -1846,6 +1868,7 @@ export declare const mockThemes: {
|
|
|
1846
1868
|
scale?: string | null | undefined;
|
|
1847
1869
|
position?: string | null | undefined;
|
|
1848
1870
|
opacity?: number | null | undefined;
|
|
1871
|
+
motion?: "static" | "fixed-frame" | null | undefined;
|
|
1849
1872
|
overlay?: {
|
|
1850
1873
|
type?: "none" | "color" | "gradient" | null | undefined;
|
|
1851
1874
|
color?: string | null | undefined;
|
|
@@ -1863,6 +1886,7 @@ export declare const mockThemes: {
|
|
|
1863
1886
|
spacing?: "none" | "compact" | "medium" | "spacious" | "comfortable" | "cozy" | null | undefined;
|
|
1864
1887
|
raised?: boolean | null | undefined;
|
|
1865
1888
|
rounded?: "full" | "none" | "md" | "lg" | "xl" | "sm" | "2xl" | null | undefined;
|
|
1889
|
+
treatment?: "accent-quote" | null | undefined;
|
|
1866
1890
|
} | null | undefined;
|
|
1867
1891
|
} | undefined;
|
|
1868
1892
|
}> | undefined;
|
|
@@ -2031,7 +2055,7 @@ export declare const mockThemes: {
|
|
|
2031
2055
|
};
|
|
2032
2056
|
corners: "soft" | "square" | "rounded" | "pill";
|
|
2033
2057
|
header: {
|
|
2034
|
-
variant: "classic" | "
|
|
2058
|
+
variant: "classic" | "editorial" | "centered" | "transparent" | "floating";
|
|
2035
2059
|
positioning: "fixed" | "static" | "sticky";
|
|
2036
2060
|
shrinkOnScroll: boolean;
|
|
2037
2061
|
maxWidth: "full" | "container";
|
|
@@ -2192,6 +2216,8 @@ export declare const mockThemes: {
|
|
|
2192
2216
|
name?: string | undefined;
|
|
2193
2217
|
} | undefined;
|
|
2194
2218
|
ctaGap?: "default" | "none" | "compact" | "tight" | "relaxed" | "spacious" | undefined;
|
|
2219
|
+
ctaTreatment?: "default" | "primary" | "secondary" | "inverted" | "outline" | "ghost" | undefined;
|
|
2220
|
+
ctaVariant?: string | undefined;
|
|
2195
2221
|
dropdownStyle?: {
|
|
2196
2222
|
background: string;
|
|
2197
2223
|
textColor: string;
|
|
@@ -2391,30 +2417,36 @@ export declare const mockThemes: {
|
|
|
2391
2417
|
} | undefined;
|
|
2392
2418
|
hero?: {
|
|
2393
2419
|
typography?: {
|
|
2394
|
-
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
2420
|
+
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
2395
2421
|
headlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
2396
|
-
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
2422
|
+
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
2397
2423
|
subheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
2398
|
-
microHeadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
2424
|
+
microHeadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
2399
2425
|
microHeadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
2400
|
-
microSubheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
2426
|
+
microSubheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
2401
2427
|
microSubheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
2402
2428
|
responsive?: {
|
|
2403
2429
|
tablet?: {
|
|
2404
|
-
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
2430
|
+
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
2405
2431
|
headlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
2406
|
-
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
2432
|
+
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
2407
2433
|
subheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
2408
2434
|
} | undefined;
|
|
2409
2435
|
mobile?: {
|
|
2410
|
-
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
2436
|
+
headlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
2411
2437
|
headlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
2412
|
-
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | undefined;
|
|
2438
|
+
subheadlineSize?: "lg" | "xl" | "sm" | "2xl" | "base" | "3xl" | "4xl" | "5xl" | "6xl" | "editorial" | undefined;
|
|
2413
2439
|
subheadlineLineHeight?: "tight" | "normal" | "relaxed" | "snug" | undefined;
|
|
2414
2440
|
} | undefined;
|
|
2415
2441
|
} | undefined;
|
|
2416
2442
|
} | undefined;
|
|
2417
2443
|
} | undefined;
|
|
2444
|
+
bodyText?: {
|
|
2445
|
+
intro?: {
|
|
2446
|
+
paragraphSize?: "default" | "editorial" | undefined;
|
|
2447
|
+
headingSize?: "default" | "editorial" | undefined;
|
|
2448
|
+
} | undefined;
|
|
2449
|
+
} | undefined;
|
|
2418
2450
|
buttons?: {
|
|
2419
2451
|
global: {
|
|
2420
2452
|
cornerStyle: "square" | "rounded" | "pill";
|
|
@@ -2691,6 +2723,7 @@ export declare const mockThemes: {
|
|
|
2691
2723
|
scale?: string | null | undefined;
|
|
2692
2724
|
position?: string | null | undefined;
|
|
2693
2725
|
opacity?: number | null | undefined;
|
|
2726
|
+
motion?: "static" | "fixed-frame" | null | undefined;
|
|
2694
2727
|
overlay?: {
|
|
2695
2728
|
type?: "none" | "color" | "gradient" | null | undefined;
|
|
2696
2729
|
color?: string | null | undefined;
|
|
@@ -2701,7 +2734,7 @@ export declare const mockThemes: {
|
|
|
2701
2734
|
headingColor?: string | null | undefined;
|
|
2702
2735
|
} | null | undefined;
|
|
2703
2736
|
spacing?: "none" | "compact" | "medium" | "spacious" | "comfortable" | "cozy" | null | undefined;
|
|
2704
|
-
minHeight?: "none" | "hero" | "immersive" | null | undefined;
|
|
2737
|
+
minHeight?: "none" | "hero" | "banner" | "immersive" | null | undefined;
|
|
2705
2738
|
} | null | undefined;
|
|
2706
2739
|
containerStyles?: {
|
|
2707
2740
|
background?: {
|
|
@@ -2746,6 +2779,7 @@ export declare const mockThemes: {
|
|
|
2746
2779
|
scale?: string | null | undefined;
|
|
2747
2780
|
position?: string | null | undefined;
|
|
2748
2781
|
opacity?: number | null | undefined;
|
|
2782
|
+
motion?: "static" | "fixed-frame" | null | undefined;
|
|
2749
2783
|
overlay?: {
|
|
2750
2784
|
type?: "none" | "color" | "gradient" | null | undefined;
|
|
2751
2785
|
color?: string | null | undefined;
|
|
@@ -2803,6 +2837,7 @@ export declare const mockThemes: {
|
|
|
2803
2837
|
scale?: string | null | undefined;
|
|
2804
2838
|
position?: string | null | undefined;
|
|
2805
2839
|
opacity?: number | null | undefined;
|
|
2840
|
+
motion?: "static" | "fixed-frame" | null | undefined;
|
|
2806
2841
|
overlay?: {
|
|
2807
2842
|
type?: "none" | "color" | "gradient" | null | undefined;
|
|
2808
2843
|
color?: string | null | undefined;
|
|
@@ -2820,6 +2855,7 @@ export declare const mockThemes: {
|
|
|
2820
2855
|
spacing?: "none" | "compact" | "medium" | "spacious" | "comfortable" | "cozy" | null | undefined;
|
|
2821
2856
|
raised?: boolean | null | undefined;
|
|
2822
2857
|
rounded?: "full" | "none" | "md" | "lg" | "xl" | "sm" | "2xl" | null | undefined;
|
|
2858
|
+
treatment?: "accent-quote" | null | undefined;
|
|
2823
2859
|
} | null | undefined;
|
|
2824
2860
|
} | undefined;
|
|
2825
2861
|
}> | undefined;
|
|
@@ -50,3 +50,19 @@ export declare const brandLedJewel: Readonly<{
|
|
|
50
50
|
hex: string;
|
|
51
51
|
}>[];
|
|
52
52
|
}>;
|
|
53
|
+
export declare const brandLedBurgundyGold: Readonly<{
|
|
54
|
+
id: import("@riverbankcms/blocks").PaletteVariantId<"brand-led-burgundy-gold">;
|
|
55
|
+
name: string;
|
|
56
|
+
description: string;
|
|
57
|
+
tags: Readonly<Partial<Readonly<{
|
|
58
|
+
tone: import("../../site-styles").StyleTone;
|
|
59
|
+
energy: import("../../site-styles").StyleEnergy;
|
|
60
|
+
motion: import("../../site-styles").StyleMotion;
|
|
61
|
+
era: import("../../site-styles").StyleEra;
|
|
62
|
+
}>>>;
|
|
63
|
+
mode: "light" | "dark";
|
|
64
|
+
colors: readonly Readonly<{
|
|
65
|
+
name: import("@riverbankcms/blocks").PaletteTokenName;
|
|
66
|
+
hex: string;
|
|
67
|
+
}>[];
|
|
68
|
+
}>;
|
|
@@ -58,6 +58,21 @@ export declare const paletteVariants: readonly [Readonly<{
|
|
|
58
58
|
name: import("@riverbankcms/blocks").PaletteTokenName;
|
|
59
59
|
hex: string;
|
|
60
60
|
}>[];
|
|
61
|
+
}>, Readonly<{
|
|
62
|
+
id: PaletteVariantId<"brand-led-burgundy-gold">;
|
|
63
|
+
name: string;
|
|
64
|
+
description: string;
|
|
65
|
+
tags: Readonly<Partial<Readonly<{
|
|
66
|
+
tone: import("../../site-styles").StyleTone;
|
|
67
|
+
energy: import("../../site-styles").StyleEnergy;
|
|
68
|
+
motion: import("../../site-styles").StyleMotion;
|
|
69
|
+
era: import("../../site-styles").StyleEra;
|
|
70
|
+
}>>>;
|
|
71
|
+
mode: "light" | "dark";
|
|
72
|
+
colors: readonly Readonly<{
|
|
73
|
+
name: import("@riverbankcms/blocks").PaletteTokenName;
|
|
74
|
+
hex: string;
|
|
75
|
+
}>[];
|
|
61
76
|
}>, Readonly<{
|
|
62
77
|
id: PaletteVariantId<"warm-neutral-clay">;
|
|
63
78
|
name: string;
|
|
@@ -24,8 +24,8 @@ export declare const paletteTokenNameSchema: z.ZodEnum<{
|
|
|
24
24
|
border: "border";
|
|
25
25
|
background: "background";
|
|
26
26
|
primary: "primary";
|
|
27
|
-
primaryForeground: "primaryForeground";
|
|
28
27
|
secondary: "secondary";
|
|
28
|
+
primaryForeground: "primaryForeground";
|
|
29
29
|
accent: "accent";
|
|
30
30
|
destructive: "destructive";
|
|
31
31
|
surfaceAlt: "surfaceAlt";
|
|
@@ -94,8 +94,8 @@ export declare const paletteVariantSchema: z.ZodObject<{
|
|
|
94
94
|
border: "border";
|
|
95
95
|
background: "background";
|
|
96
96
|
primary: "primary";
|
|
97
|
-
primaryForeground: "primaryForeground";
|
|
98
97
|
secondary: "secondary";
|
|
98
|
+
primaryForeground: "primaryForeground";
|
|
99
99
|
accent: "accent";
|
|
100
100
|
destructive: "destructive";
|
|
101
101
|
surfaceAlt: "surfaceAlt";
|
|
@@ -137,7 +137,7 @@ export declare const paletteOverridesSchema: z.ZodPipe<z.ZodObject<{
|
|
|
137
137
|
muted: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<HexColor, string>>>;
|
|
138
138
|
text: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<HexColor, string>>>;
|
|
139
139
|
border: z.ZodOptional<z.ZodPipe<z.ZodString, z.ZodTransform<HexColor, string>>>;
|
|
140
|
-
}, z.core.$strict>, z.ZodTransform<Readonly<Partial<Record<"success" | "text" | "surface" | "warning" | "border" | "background" | "primary" | "
|
|
140
|
+
}, z.core.$strict>, z.ZodTransform<Readonly<Partial<Record<"success" | "text" | "surface" | "warning" | "border" | "background" | "primary" | "secondary" | "primaryForeground" | "accent" | "destructive" | "surfaceAlt" | "muted", HexColor>>>, {
|
|
141
141
|
primary?: HexColor | undefined;
|
|
142
142
|
primaryForeground?: HexColor | undefined;
|
|
143
143
|
secondary?: HexColor | undefined;
|