@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
package/dist/server/theme.mjs
CHANGED
|
@@ -643,6 +643,111 @@ var pebble = defineButtonPersonality({
|
|
|
643
643
|
}
|
|
644
644
|
});
|
|
645
645
|
|
|
646
|
+
// ../theme-core/src/buttons/personalities/showtime-pill.ts
|
|
647
|
+
var showtimePill = defineButtonPersonality({
|
|
648
|
+
id: "showtime-pill",
|
|
649
|
+
name: "Showtime Pill",
|
|
650
|
+
description: "Bold pill buttons with uppercase labels, generous padding, and a playful pop.",
|
|
651
|
+
tags: { tone: "bold", energy: "vibrant", motion: "expressive", era: "modern" },
|
|
652
|
+
buttonSystem: {
|
|
653
|
+
global: {
|
|
654
|
+
cornerStyle: "pill",
|
|
655
|
+
shadow: "low",
|
|
656
|
+
textTransform: "uppercase",
|
|
657
|
+
fontWeight: 700,
|
|
658
|
+
borderWidth: 2,
|
|
659
|
+
hoverTransform: "lift",
|
|
660
|
+
hoverColor: "darken",
|
|
661
|
+
typography: "body",
|
|
662
|
+
paddingPreset: "spacious",
|
|
663
|
+
italic: false
|
|
664
|
+
},
|
|
665
|
+
sizes: {
|
|
666
|
+
sm: { padding: "0.625rem 1.25rem", fontSize: "0.875rem" },
|
|
667
|
+
md: { padding: "0.875rem 1.75rem", fontSize: "1rem" },
|
|
668
|
+
lg: { padding: "1.125rem 2.25rem", fontSize: "1.125rem" },
|
|
669
|
+
xl: { padding: "1.125rem 2.25rem", fontSize: "1.125rem" }
|
|
670
|
+
},
|
|
671
|
+
variants: [
|
|
672
|
+
{
|
|
673
|
+
id: "primary",
|
|
674
|
+
name: "Primary",
|
|
675
|
+
enabled: true,
|
|
676
|
+
priority: 1,
|
|
677
|
+
background: { type: "solid", colorToken: "primary" },
|
|
678
|
+
textColorToken: "background",
|
|
679
|
+
borderRadius: "rounded-full",
|
|
680
|
+
effects: {
|
|
681
|
+
hover: [{ effectId: "pop" }]
|
|
682
|
+
}
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
id: "secondary",
|
|
686
|
+
name: "Secondary",
|
|
687
|
+
enabled: true,
|
|
688
|
+
priority: 2,
|
|
689
|
+
background: { type: "transparent" },
|
|
690
|
+
textColorToken: "primary",
|
|
691
|
+
borderRadius: "rounded-full",
|
|
692
|
+
border: { widthClass: "border-2", colorToken: "primary" },
|
|
693
|
+
effects: {
|
|
694
|
+
hover: [{ effectId: "pop" }]
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
id: "hero",
|
|
699
|
+
name: "Hero",
|
|
700
|
+
enabled: true,
|
|
701
|
+
priority: 1,
|
|
702
|
+
background: { type: "solid", colorToken: "secondary" },
|
|
703
|
+
textColorToken: "primary",
|
|
704
|
+
borderRadius: "rounded-full",
|
|
705
|
+
effects: {
|
|
706
|
+
hover: [{ effectId: "pop" }]
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
id: "header",
|
|
711
|
+
name: "Header",
|
|
712
|
+
enabled: true,
|
|
713
|
+
priority: 2,
|
|
714
|
+
background: { type: "solid", colorToken: "background" },
|
|
715
|
+
textColorToken: "primary",
|
|
716
|
+
borderRadius: "rounded-full",
|
|
717
|
+
border: { widthClass: "border-2", colorToken: "primary" },
|
|
718
|
+
effects: {
|
|
719
|
+
hover: [{ effectId: "background-on-hover", options: { colorToken: "surface" } }]
|
|
720
|
+
}
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
id: "outline",
|
|
724
|
+
name: "Outline",
|
|
725
|
+
enabled: true,
|
|
726
|
+
priority: 3,
|
|
727
|
+
background: { type: "transparent" },
|
|
728
|
+
textColorToken: "primary",
|
|
729
|
+
borderRadius: "rounded-full",
|
|
730
|
+
border: { widthClass: "border-2", colorToken: "primary" },
|
|
731
|
+
effects: {
|
|
732
|
+
hover: [{ effectId: "background-on-hover", options: { colorToken: "background" } }]
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
id: "ghost",
|
|
737
|
+
name: "Ghost",
|
|
738
|
+
enabled: true,
|
|
739
|
+
priority: 3,
|
|
740
|
+
background: { type: "transparent" },
|
|
741
|
+
textColorToken: "primary",
|
|
742
|
+
borderRadius: "rounded-full",
|
|
743
|
+
effects: {
|
|
744
|
+
hover: [{ effectId: "background-on-hover", options: { colorToken: "surface" } }]
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
]
|
|
748
|
+
}
|
|
749
|
+
});
|
|
750
|
+
|
|
646
751
|
// ../theme-core/src/buttons/personalities/soft-pill.ts
|
|
647
752
|
var softPill = defineButtonPersonality({
|
|
648
753
|
id: "soft-pill",
|
|
@@ -723,7 +828,8 @@ var buttonPersonalities = [
|
|
|
723
828
|
editorialLink,
|
|
724
829
|
pebble,
|
|
725
830
|
inkStamp,
|
|
726
|
-
brushedWash
|
|
831
|
+
brushedWash,
|
|
832
|
+
showtimePill
|
|
727
833
|
];
|
|
728
834
|
var personalitiesById = new Map(
|
|
729
835
|
buttonPersonalities.map((p) => [p.id, p])
|
|
@@ -1251,14 +1357,7 @@ var proseLinkStyleSchema = z14.object({
|
|
|
1251
1357
|
underlineThickness: proseLinkUnderlineThicknessSchema.optional(),
|
|
1252
1358
|
underlineOffset: proseLinkUnderlineOffsetSchema.optional()
|
|
1253
1359
|
});
|
|
1254
|
-
var semanticSpacingSchema = z14.enum([
|
|
1255
|
-
"none",
|
|
1256
|
-
"compact",
|
|
1257
|
-
"cozy",
|
|
1258
|
-
"medium",
|
|
1259
|
-
"comfortable",
|
|
1260
|
-
"spacious"
|
|
1261
|
-
]);
|
|
1360
|
+
var semanticSpacingSchema = z14.enum(["none", "compact", "cozy", "medium", "comfortable", "spacious"]);
|
|
1262
1361
|
var boxRoundedSchema = z14.enum(["none", "sm", "md", "lg", "xl", "2xl", "full"]);
|
|
1263
1362
|
var boxBackgroundOverlaySchema = z14.object({
|
|
1264
1363
|
type: z14.enum(["none", "color", "gradient"]).nullable().optional(),
|
|
@@ -1275,6 +1374,7 @@ var boxBackgroundSchema = z14.object({
|
|
|
1275
1374
|
scale: z14.string().nullable().optional(),
|
|
1276
1375
|
position: z14.string().nullable().optional(),
|
|
1277
1376
|
opacity: z14.number().min(0).max(1).nullable().optional(),
|
|
1377
|
+
motion: z14.enum(["static", "fixed-frame"]).nullable().optional(),
|
|
1278
1378
|
overlay: boxBackgroundOverlaySchema.nullable().optional(),
|
|
1279
1379
|
textColor: z14.string().nullable().optional(),
|
|
1280
1380
|
headingColor: z14.string().nullable().optional()
|
|
@@ -1282,7 +1382,7 @@ var boxBackgroundSchema = z14.object({
|
|
|
1282
1382
|
var sectionStylesOverrideSchema = z14.object({
|
|
1283
1383
|
background: boxBackgroundSchema.nullable().optional(),
|
|
1284
1384
|
spacing: semanticSpacingSchema.nullable().optional(),
|
|
1285
|
-
minHeight: z14.enum(["none", "hero", "immersive"]).nullable().optional()
|
|
1385
|
+
minHeight: z14.enum(["none", "banner", "hero", "immersive"]).nullable().optional()
|
|
1286
1386
|
});
|
|
1287
1387
|
var containerStylesOverrideSchema = z14.object({
|
|
1288
1388
|
background: boxBackgroundSchema.nullable().optional(),
|
|
@@ -1301,7 +1401,8 @@ var cardStylesOverrideSchema = z14.object({
|
|
|
1301
1401
|
border: cardBorderOverrideSchema.nullable().optional(),
|
|
1302
1402
|
spacing: semanticSpacingSchema.nullable().optional(),
|
|
1303
1403
|
raised: z14.boolean().nullable().optional(),
|
|
1304
|
-
rounded: boxRoundedSchema.nullable().optional()
|
|
1404
|
+
rounded: boxRoundedSchema.nullable().optional(),
|
|
1405
|
+
treatment: z14.enum(["accent-quote"]).nullable().optional()
|
|
1305
1406
|
});
|
|
1306
1407
|
var blockStyleOverridesSchema = z14.object({
|
|
1307
1408
|
sectionStyles: sectionStylesOverrideSchema.nullable().optional(),
|
|
@@ -1376,15 +1477,7 @@ var inputStyle = z14.object({
|
|
|
1376
1477
|
});
|
|
1377
1478
|
var headerVariant = z14.enum(["classic", "centered", "transparent", "floating", "editorial"]);
|
|
1378
1479
|
var headerPositioning = z14.enum(["static", "sticky", "fixed"]);
|
|
1379
|
-
var headerNavStyle = z14.enum([
|
|
1380
|
-
"minimal",
|
|
1381
|
-
"underline",
|
|
1382
|
-
"underline-grow",
|
|
1383
|
-
"capsule",
|
|
1384
|
-
"scale",
|
|
1385
|
-
"frosted",
|
|
1386
|
-
"solid"
|
|
1387
|
-
]);
|
|
1480
|
+
var headerNavStyle = z14.enum(["minimal", "underline", "underline-grow", "capsule", "scale", "frosted", "solid"]);
|
|
1388
1481
|
var navFontWeight = z14.enum(["regular", "medium", "semibold", "bold"]);
|
|
1389
1482
|
var headerMaxWidth = z14.enum(["container", "full"]);
|
|
1390
1483
|
var headerContainerSchema = z14.object({
|
|
@@ -1438,6 +1531,7 @@ var dropdownStyleSchema = z14.object({
|
|
|
1438
1531
|
// optional = no override (browser default)
|
|
1439
1532
|
}).optional();
|
|
1440
1533
|
var headerCtaGapSchema = z14.enum(["none", "tight", "compact", "default", "relaxed", "spacious"]);
|
|
1534
|
+
var headerCtaTreatmentSchema = z14.enum(["default", "primary", "secondary", "inverted", "outline", "ghost"]);
|
|
1441
1535
|
var navContainerSchema = z14.object({
|
|
1442
1536
|
type: z14.enum(["none", "pill", "glass"]).default("none"),
|
|
1443
1537
|
tint: z14.string().nullable().optional(),
|
|
@@ -1456,7 +1550,10 @@ var headerSchema = z14.object({
|
|
|
1456
1550
|
shrinkOnScroll: z14.boolean(),
|
|
1457
1551
|
maxWidth: headerMaxWidth,
|
|
1458
1552
|
logoOverride: mediaSchema.nullable().optional(),
|
|
1459
|
-
background: headerBackgroundSchema.default({
|
|
1553
|
+
background: headerBackgroundSchema.default({
|
|
1554
|
+
type: "color",
|
|
1555
|
+
color: "surface"
|
|
1556
|
+
}),
|
|
1460
1557
|
textColor: z14.string().nullable().optional(),
|
|
1461
1558
|
// Site title and general header text
|
|
1462
1559
|
navStyle: headerNavStyle,
|
|
@@ -1476,6 +1573,13 @@ var headerSchema = z14.object({
|
|
|
1476
1573
|
navLinkStyle: navLinkStyleSchema.optional(),
|
|
1477
1574
|
// CTA button spacing (desktop left margin)
|
|
1478
1575
|
ctaGap: headerCtaGapSchema.optional(),
|
|
1576
|
+
// Semantic CTA treatment for header/nav CTA buttons. The Theme V2 compiler
|
|
1577
|
+
// materializes this to ctaVariant against the active button personality.
|
|
1578
|
+
ctaTreatment: headerCtaTreatmentSchema.optional(),
|
|
1579
|
+
// Optional theme-level CTA variant for header/nav CTA buttons.
|
|
1580
|
+
// Internal runtime bridge for the block renderer; prefer ctaTreatment in
|
|
1581
|
+
// authored Theme V2 concepts.
|
|
1582
|
+
ctaVariant: z14.string().min(1).optional(),
|
|
1479
1583
|
// Dropdown menu styling (nav dropdowns and mobile drawer)
|
|
1480
1584
|
dropdownStyle: dropdownStyleSchema
|
|
1481
1585
|
});
|
|
@@ -1532,7 +1636,10 @@ var footerSchema = z14.object({
|
|
|
1532
1636
|
variant: footerVariant,
|
|
1533
1637
|
maxWidth: footerMaxWidth,
|
|
1534
1638
|
showLogoText: z14.boolean().optional(),
|
|
1535
|
-
background: headerBackgroundSchema.default({
|
|
1639
|
+
background: headerBackgroundSchema.default({
|
|
1640
|
+
type: "color",
|
|
1641
|
+
color: "surface"
|
|
1642
|
+
}),
|
|
1536
1643
|
// Footer nav styling (independent from header)
|
|
1537
1644
|
navStyle: headerNavStyle.default("minimal"),
|
|
1538
1645
|
navColor: z14.string().nullable().optional(),
|
|
@@ -1554,17 +1661,7 @@ var layoutSchema = z14.object({
|
|
|
1554
1661
|
desktop: containerPaddingPresetSchema.optional()
|
|
1555
1662
|
}).optional()
|
|
1556
1663
|
}).optional();
|
|
1557
|
-
var heroTypographySizeSchema = z14.enum([
|
|
1558
|
-
"sm",
|
|
1559
|
-
"base",
|
|
1560
|
-
"lg",
|
|
1561
|
-
"xl",
|
|
1562
|
-
"2xl",
|
|
1563
|
-
"3xl",
|
|
1564
|
-
"4xl",
|
|
1565
|
-
"5xl",
|
|
1566
|
-
"6xl"
|
|
1567
|
-
]);
|
|
1664
|
+
var heroTypographySizeSchema = z14.enum(["sm", "base", "lg", "xl", "2xl", "3xl", "4xl", "5xl", "6xl", "editorial"]);
|
|
1568
1665
|
var heroTypographyLineHeightSchema = z14.enum(["tight", "snug", "normal", "relaxed"]);
|
|
1569
1666
|
var heroResponsiveTypographySchema = z14.object({
|
|
1570
1667
|
headlineSize: heroTypographySizeSchema.optional(),
|
|
@@ -1589,6 +1686,13 @@ var heroTypographySchema = z14.object({
|
|
|
1589
1686
|
var heroSchema = z14.object({
|
|
1590
1687
|
typography: heroTypographySchema.optional()
|
|
1591
1688
|
}).optional();
|
|
1689
|
+
var bodyTextIntroTypographySizeSchema = z14.enum(["default", "editorial"]);
|
|
1690
|
+
var bodyTextSchema = z14.object({
|
|
1691
|
+
intro: z14.object({
|
|
1692
|
+
paragraphSize: bodyTextIntroTypographySizeSchema.optional(),
|
|
1693
|
+
headingSize: bodyTextIntroTypographySizeSchema.optional()
|
|
1694
|
+
}).optional()
|
|
1695
|
+
}).optional();
|
|
1592
1696
|
var gradientsSchema = z14.object({
|
|
1593
1697
|
button: z14.string().min(1).nullable().optional(),
|
|
1594
1698
|
hero: z14.string().min(1).nullable().optional(),
|
|
@@ -1610,6 +1714,7 @@ var themeSchema = z14.object({
|
|
|
1610
1714
|
gradients: gradientsSchema.optional(),
|
|
1611
1715
|
layout: layoutSchema,
|
|
1612
1716
|
hero: heroSchema,
|
|
1717
|
+
bodyText: bodyTextSchema,
|
|
1613
1718
|
header: headerSchema,
|
|
1614
1719
|
footer: footerSchema,
|
|
1615
1720
|
buttons: buttonSystemSchema.optional(),
|
|
@@ -1633,10 +1738,7 @@ var themeSchema = z14.object({
|
|
|
1633
1738
|
).optional(),
|
|
1634
1739
|
// Structured block-kind theme overrides (v1: typography prose-link style only)
|
|
1635
1740
|
// Keyed by block kind (usually data-block value like "hero"; "block.hero" also accepted)
|
|
1636
|
-
blockOverrides: z14.record(
|
|
1637
|
-
z14.string(),
|
|
1638
|
-
blockThemeOverrideSchema
|
|
1639
|
-
).optional(),
|
|
1741
|
+
blockOverrides: z14.record(z14.string(), blockThemeOverrideSchema).optional(),
|
|
1640
1742
|
// Structured custom CSS rules
|
|
1641
1743
|
// Validated, scoped, and safe by construction - no @import, remote url(), or global selectors
|
|
1642
1744
|
customCssRules: customCssRulesSchema,
|
package/dist/styles/index.css
CHANGED
|
@@ -274,12 +274,16 @@
|
|
|
274
274
|
.rb-h-full {
|
|
275
275
|
height: 100%;
|
|
276
276
|
}
|
|
277
|
+
.rb-section-min-h-banner {
|
|
278
|
+
min-height: clamp(16rem, 34svh, 24rem);
|
|
279
|
+
}
|
|
277
280
|
.rb-section-min-h-hero {
|
|
278
281
|
min-height: clamp(32rem, 62svh, 44rem);
|
|
279
282
|
}
|
|
280
283
|
.rb-section-min-h-immersive {
|
|
281
284
|
min-height: clamp(38rem, 78svh, 54rem);
|
|
282
285
|
}
|
|
286
|
+
.rb-section-min-h-banner > .rb-container,
|
|
283
287
|
.rb-section-min-h-hero > .rb-container,
|
|
284
288
|
.rb-section-min-h-immersive > .rb-container {
|
|
285
289
|
min-height: inherit;
|
|
@@ -1367,6 +1371,19 @@
|
|
|
1367
1371
|
.rb-object-contain {
|
|
1368
1372
|
object-fit: contain;
|
|
1369
1373
|
}
|
|
1374
|
+
.rb-bg-motion-fixed-frame {
|
|
1375
|
+
position: fixed;
|
|
1376
|
+
inset: 0;
|
|
1377
|
+
width: 100vw;
|
|
1378
|
+
height: 100svh;
|
|
1379
|
+
}
|
|
1380
|
+
@media (hover: none), (prefers-reduced-motion: reduce) {
|
|
1381
|
+
.rb-bg-motion-fixed-frame {
|
|
1382
|
+
position: absolute;
|
|
1383
|
+
width: 100%;
|
|
1384
|
+
height: 100%;
|
|
1385
|
+
}
|
|
1386
|
+
}
|
|
1370
1387
|
|
|
1371
1388
|
/* Line clamp */
|
|
1372
1389
|
.rb-line-clamp-2,
|
|
@@ -5840,13 +5857,13 @@
|
|
|
5840
5857
|
|
|
5841
5858
|
/* Eyebrow - color only (typography via .rb-eyebrow) */
|
|
5842
5859
|
:where(.theme-scope) :where([data-block="hero"]) .hero-eyebrow {
|
|
5843
|
-
color: rgb(var(--tb-text));
|
|
5860
|
+
color: var(--section-text-color, rgb(var(--tb-text)));
|
|
5844
5861
|
}
|
|
5845
5862
|
|
|
5846
5863
|
/* Subheadline - supporting text below headline */
|
|
5847
5864
|
:where(.theme-scope) :where([data-block="hero"]) .hero-subheadline {
|
|
5848
5865
|
font-size: 1.125rem;
|
|
5849
|
-
color: rgb(var(--tb-text));
|
|
5866
|
+
color: var(--section-text-color, rgb(var(--tb-text)));
|
|
5850
5867
|
}
|
|
5851
5868
|
|
|
5852
5869
|
@media (min-width: 640px) {
|
|
@@ -5922,6 +5939,18 @@
|
|
|
5922
5939
|
max-width: 60rem;
|
|
5923
5940
|
}
|
|
5924
5941
|
|
|
5942
|
+
:where(.theme-scope) :where([data-block="body-text"][data-block-variant="intro"]) .body-copy-body {
|
|
5943
|
+
font-size: var(--rb-prose-lg-font-size);
|
|
5944
|
+
line-height: var(--rb-prose-lg-line-height);
|
|
5945
|
+
}
|
|
5946
|
+
|
|
5947
|
+
@media (min-width: 640px) {
|
|
5948
|
+
:where(.theme-scope) :where([data-block="body-text"][data-block-variant="intro"]) .body-copy-body {
|
|
5949
|
+
font-size: var(--rb-prose-xl-sm-font-size);
|
|
5950
|
+
line-height: var(--rb-prose-xl-sm-line-height);
|
|
5951
|
+
}
|
|
5952
|
+
}
|
|
5953
|
+
|
|
5925
5954
|
/* Variant: Narrow (left-aligned, shorter line length) */
|
|
5926
5955
|
:where(.theme-scope) :where([data-block="body-text"][data-block-variant="narrow"]) .body-copy-container {
|
|
5927
5956
|
max-width: 34rem;
|
|
@@ -7268,6 +7297,13 @@
|
|
|
7268
7297
|
border-radius: var(--rb-block-radius);
|
|
7269
7298
|
}
|
|
7270
7299
|
|
|
7300
|
+
:where(.theme-scope) :where([data-block="testimonials"]) .rb-testimonial-card.rb-card-treatment-accent-quote {
|
|
7301
|
+
border: 0;
|
|
7302
|
+
border-left: 5px solid rgb(var(--tb-secondary));
|
|
7303
|
+
border-radius: 0 calc(var(--rb-block-radius) * 3) 0 0;
|
|
7304
|
+
color: rgb(var(--tb-primaryForeground));
|
|
7305
|
+
}
|
|
7306
|
+
|
|
7271
7307
|
:where(.theme-scope) :where([data-block="testimonials"]) .rb-testimonial-quote {
|
|
7272
7308
|
font-size: var(--rb-testimonial-quote-size);
|
|
7273
7309
|
line-height: 1;
|
|
@@ -7276,6 +7312,12 @@
|
|
|
7276
7312
|
color: rgb(var(--tb-primary));
|
|
7277
7313
|
}
|
|
7278
7314
|
|
|
7315
|
+
:where(.theme-scope) :where([data-block="testimonials"]) .rb-card-treatment-accent-quote .rb-testimonial-quote {
|
|
7316
|
+
color: rgb(var(--tb-secondary));
|
|
7317
|
+
font-size: calc(var(--rb-testimonial-quote-size) * 1.25);
|
|
7318
|
+
opacity: 1;
|
|
7319
|
+
}
|
|
7320
|
+
|
|
7279
7321
|
|
|
7280
7322
|
/* Testimonials carousel tweaks: arrow styling + gutters + equal-height cards */
|
|
7281
7323
|
:where(.theme-scope) :where([data-block="testimonials"]) .rb-testimonials-carousel.carousel-root .carousel-nav-btn {
|