@riverbankcms/sdk 0.60.0 → 0.60.1
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 +20 -3
- package/dist/_dts/api/src/bookingManagementEndpoints.d.ts +1 -3
- package/dist/_dts/api/src/bookingRecords.d.ts +1 -0
- package/dist/_dts/api/src/endpoints.d.ts +1 -1
- package/dist/_dts/billing/src/plans/types.d.ts +27 -0
- package/dist/_dts/blocks/src/system/blocks/events/event-calendar.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/components/registry.client.d.ts +173 -2
- package/dist/_dts/blocks/src/system/runtime/components/runtime-backed-blocks.d.ts +24 -2
- package/dist/_dts/blocks/src/system/runtime/header/shared.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/booking-form.client.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/AgendaEventCard.d.ts +2 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/DayEventsModal.d.ts +2 -1
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/EventDetailModal.d.ts +2 -1
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/EventModals.d.ts +2 -1
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/WeekAgendaView.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/WeekTimetableView.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/eventCapacity.d.ts +16 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/events/shared/timetableModel.d.ts +2 -0
- package/dist/_dts/content-editor/src/index.d.ts +2 -2
- package/dist/_dts/content-editor/src/primitives/shared/activePreviewField.d.ts +9 -0
- package/dist/_dts/content-editor/src/primitives/shared/index.d.ts +1 -0
- package/dist/_dts/content-editor/src/ui/editorUiStore.d.ts +10 -0
- package/dist/_dts/editor-blocks/src/BlockEditor.d.ts +3 -0
- package/dist/_dts/editor-blocks/src/BlockForm.d.ts +4 -0
- package/dist/_dts/editor-blocks/src/block-editor/BlockCard.d.ts +8 -5
- package/dist/_dts/editor-blocks/src/block-editor/BlockCardHeader.d.ts +7 -5
- package/dist/_dts/editor-blocks/src/block-editor/SortableBlockItem.d.ts +2 -0
- package/dist/_dts/editor-blocks/src/block-editor/reorderControlMode.d.ts +3 -0
- package/dist/_dts/editor-blocks/src/block-editor/types.d.ts +4 -0
- package/dist/_dts/media-react/src/hooks/useApiMediaUploader.d.ts +14 -0
- package/dist/_dts/media-react/src/index.d.ts +1 -1
- package/dist/_dts/preview-next/src/client/index.d.ts +2 -0
- package/dist/_dts/preview-next/src/client/preview/PageDesignEditorStateContext.d.ts +11 -28
- package/dist/_dts/preview-next/src/client/preview/PreviewEditorUI.d.ts +1 -1
- package/dist/_dts/preview-next/src/client/preview/previewChromeSurface.d.ts +12 -0
- package/dist/_dts/preview-next/src/client/preview/previewCustomizeHistory.d.ts +41 -0
- package/dist/_dts/preview-next/src/client/preview/previewCustomizeRuntimePatch.d.ts +15 -0
- package/dist/_dts/preview-next/src/client/preview/previewCustomizeWorkflowState.d.ts +106 -0
- package/dist/_dts/preview-next/src/client/preview/previewUndoDomains.d.ts +34 -0
- package/dist/_dts/preview-next/src/client/preview/sidebarTabPreference.d.ts +2 -1
- package/dist/_dts/preview-next/src/client/preview/useOnboardingConfirmationCheck.d.ts +4 -9
- package/dist/_dts/preview-next/src/constants.d.ts +0 -1
- package/dist/_dts/preview-next/src/index.d.ts +1 -0
- package/dist/_dts/preview-next/src/onboarding-preview-planner.d.ts +89 -0
- package/dist/_dts/preview-next/src/route-contract.d.ts +37 -0
- package/dist/_dts/sdk/src/rendering/components/Block.d.ts +7 -76
- package/dist/_dts/sdk/src/rendering/components/Block.server.d.ts +9 -0
- package/dist/_dts/sdk/src/rendering/components/Block.shared.d.ts +78 -0
- package/dist/_dts/sdk/src/rendering/components/Layout.d.ts +5 -5
- package/dist/_dts/sdk/src/rendering/server.d.ts +2 -2
- package/dist/_dts/sdk/src/version.d.ts +1 -1
- package/dist/_dts/theme-core/src/generated/containerResponsiveThemeCss.d.ts +1 -1
- package/dist/_dts/theme-core/src/index.d.ts +17 -16
- package/dist/_dts/theme-core/src/responsiveDisplay.d.ts +23 -0
- package/dist/_dts/theme-core/src/responsiveMode.d.ts +21 -0
- package/dist/_dts/theme-core/src/site-styles/index.d.ts +1 -0
- package/dist/_dts/theme-core/src/site-styles/pageDesignEditorErrors.d.ts +1 -0
- package/dist/_dts/ui/src/command-multi-select.d.ts +2 -2
- package/dist/cli/index.mjs +120 -40
- package/dist/client/bookings.mjs +27 -0
- package/dist/client/client.mjs +889 -497
- package/dist/client/hooks.mjs +61 -21
- package/dist/client/rendering/client.mjs +319 -128
- package/dist/client/rendering/islands.mjs +122 -44
- package/dist/client/rendering.mjs +959 -486
- package/dist/preview-next/before-render.mjs +5525 -0
- package/dist/preview-next/client/runtime.mjs +104162 -102561
- package/dist/preview-next/constants.mjs +0 -2
- package/dist/preview-next/index.mjs +0 -2
- package/dist/preview-next/middleware.mjs +5535 -1
- package/dist/server/components.mjs +7880 -7522
- package/dist/server/config-validation.mjs +61 -21
- package/dist/server/config.mjs +61 -21
- package/dist/server/data.mjs +61 -21
- package/dist/server/index.mjs +2 -2
- package/dist/server/next.mjs +783 -429
- package/dist/server/page-converter.mjs +60 -20
- package/dist/server/prebuild.mjs +1 -1
- package/dist/server/rendering/server.mjs +2461 -837
- package/dist/server/rendering.mjs +9276 -8840
- package/dist/server/routing.mjs +102 -39
- package/dist/server/server.mjs +62 -22
- package/dist/server/theme-bridge.mjs +639 -358
- package/dist/styles/index.css +343 -299
- package/package.json +1 -1
- package/dist/_dts/preview-next/src/client/blocks/runOptimisticCustomizeAction.d.ts +0 -21
package/dist/client/client.mjs
CHANGED
|
@@ -10811,6 +10811,72 @@ var init_colorConversion = __esm({
|
|
|
10811
10811
|
}
|
|
10812
10812
|
});
|
|
10813
10813
|
|
|
10814
|
+
// ../theme-core/src/responsiveDisplay.ts
|
|
10815
|
+
function mobileOnlyDisplay(display) {
|
|
10816
|
+
return `${BASE_DISPLAY_CLASSES[display]} rb-lg-hidden`;
|
|
10817
|
+
}
|
|
10818
|
+
function desktopOnlyDisplay(display) {
|
|
10819
|
+
return `rb-hidden ${LARGE_DISPLAY_CLASSES[display]}`;
|
|
10820
|
+
}
|
|
10821
|
+
var BASE_DISPLAY_CLASSES, LARGE_DISPLAY_CLASSES;
|
|
10822
|
+
var init_responsiveDisplay = __esm({
|
|
10823
|
+
"../theme-core/src/responsiveDisplay.ts"() {
|
|
10824
|
+
"use strict";
|
|
10825
|
+
BASE_DISPLAY_CLASSES = {
|
|
10826
|
+
block: "rb-block",
|
|
10827
|
+
flex: "rb-flex",
|
|
10828
|
+
"inline-block": "rb-inline-block",
|
|
10829
|
+
"inline-flex": "rb-inline-flex",
|
|
10830
|
+
grid: "rb-grid"
|
|
10831
|
+
};
|
|
10832
|
+
LARGE_DISPLAY_CLASSES = {
|
|
10833
|
+
block: "rb-lg-block",
|
|
10834
|
+
flex: "rb-lg-flex",
|
|
10835
|
+
"inline-block": "rb-lg-inline-block",
|
|
10836
|
+
"inline-flex": "rb-lg-inline-flex",
|
|
10837
|
+
grid: "rb-lg-grid"
|
|
10838
|
+
};
|
|
10839
|
+
}
|
|
10840
|
+
});
|
|
10841
|
+
|
|
10842
|
+
// ../blocks/src/system/runtime/header/shared.ts
|
|
10843
|
+
function splitPositioningClasses(className) {
|
|
10844
|
+
if (!className) return { wrapperClasses: "", sectionClasses: "" };
|
|
10845
|
+
const classes = className.split(/\s+/).filter(Boolean);
|
|
10846
|
+
const wrapperParts = [];
|
|
10847
|
+
const sectionParts = [];
|
|
10848
|
+
for (const cls of classes) {
|
|
10849
|
+
if (POSITIONING_CLASSES.includes(cls)) {
|
|
10850
|
+
wrapperParts.push(cls);
|
|
10851
|
+
} else {
|
|
10852
|
+
sectionParts.push(cls);
|
|
10853
|
+
}
|
|
10854
|
+
}
|
|
10855
|
+
return {
|
|
10856
|
+
wrapperClasses: wrapperParts.join(" "),
|
|
10857
|
+
sectionClasses: sectionParts.join(" ")
|
|
10858
|
+
};
|
|
10859
|
+
}
|
|
10860
|
+
var POSITIONING_CLASSES;
|
|
10861
|
+
var init_shared2 = __esm({
|
|
10862
|
+
"../blocks/src/system/runtime/header/shared.ts"() {
|
|
10863
|
+
"use strict";
|
|
10864
|
+
init_responsiveDisplay();
|
|
10865
|
+
POSITIONING_CLASSES = [
|
|
10866
|
+
"rb-sticky",
|
|
10867
|
+
"rb-fixed",
|
|
10868
|
+
"rb-absolute",
|
|
10869
|
+
"rb-relative",
|
|
10870
|
+
"rb-top-0",
|
|
10871
|
+
"rb-left-0",
|
|
10872
|
+
"rb-right-0",
|
|
10873
|
+
"rb-bottom-0",
|
|
10874
|
+
"rb-z-40",
|
|
10875
|
+
"rb-z-50"
|
|
10876
|
+
];
|
|
10877
|
+
}
|
|
10878
|
+
});
|
|
10879
|
+
|
|
10814
10880
|
// ../blocks/src/system/blocks/events/shared/types.ts
|
|
10815
10881
|
var init_types7 = __esm({
|
|
10816
10882
|
"../blocks/src/system/blocks/events/shared/types.ts"() {
|
|
@@ -11375,7 +11441,7 @@ var init_filtering = __esm({
|
|
|
11375
11441
|
});
|
|
11376
11442
|
|
|
11377
11443
|
// ../blocks/src/system/blocks/events/shared/index.ts
|
|
11378
|
-
var
|
|
11444
|
+
var init_shared3 = __esm({
|
|
11379
11445
|
"../blocks/src/system/blocks/events/shared/index.ts"() {
|
|
11380
11446
|
"use strict";
|
|
11381
11447
|
init_types7();
|
|
@@ -11560,7 +11626,7 @@ var init_event_registration = __esm({
|
|
|
11560
11626
|
init_styledSection();
|
|
11561
11627
|
init_fragments();
|
|
11562
11628
|
init_api_bindings();
|
|
11563
|
-
|
|
11629
|
+
init_shared3();
|
|
11564
11630
|
init_defineBlock();
|
|
11565
11631
|
init_event_registration_shared();
|
|
11566
11632
|
init_event_registration_interactive();
|
|
@@ -11896,7 +11962,7 @@ var init_pricing = __esm({
|
|
|
11896
11962
|
});
|
|
11897
11963
|
|
|
11898
11964
|
// ../blocks/src/system/blocks/courses/shared/index.ts
|
|
11899
|
-
var
|
|
11965
|
+
var init_shared4 = __esm({
|
|
11900
11966
|
"../blocks/src/system/blocks/courses/shared/index.ts"() {
|
|
11901
11967
|
"use strict";
|
|
11902
11968
|
init_types8();
|
|
@@ -12058,7 +12124,7 @@ var init_course_registration = __esm({
|
|
|
12058
12124
|
init_styledSection();
|
|
12059
12125
|
init_fragments();
|
|
12060
12126
|
init_api_bindings();
|
|
12061
|
-
|
|
12127
|
+
init_shared4();
|
|
12062
12128
|
init_defineBlock();
|
|
12063
12129
|
init_course_registration_interactive();
|
|
12064
12130
|
courseRegistrationManifest = createBlockManifest({
|
|
@@ -12300,6 +12366,23 @@ var init_shop_shared = __esm({
|
|
|
12300
12366
|
}
|
|
12301
12367
|
});
|
|
12302
12368
|
|
|
12369
|
+
// ../blocks/src/system/runtime/nodes/events/shared/eventCapacity.ts
|
|
12370
|
+
function getEventAvailability(event) {
|
|
12371
|
+
if (event.capacity == null) {
|
|
12372
|
+
return { available: null, isFull: false };
|
|
12373
|
+
}
|
|
12374
|
+
const available = event.availableSpots ?? event.capacity - event.registeredCount;
|
|
12375
|
+
if (available <= 0) {
|
|
12376
|
+
return { available: 0, isFull: true };
|
|
12377
|
+
}
|
|
12378
|
+
return { available, isFull: false };
|
|
12379
|
+
}
|
|
12380
|
+
var init_eventCapacity = __esm({
|
|
12381
|
+
"../blocks/src/system/runtime/nodes/events/shared/eventCapacity.ts"() {
|
|
12382
|
+
"use strict";
|
|
12383
|
+
}
|
|
12384
|
+
});
|
|
12385
|
+
|
|
12303
12386
|
// ../blocks/src/system/runtime/nodes/events/shared/utils.ts
|
|
12304
12387
|
function getContainerClass(layout, columns) {
|
|
12305
12388
|
if (layout === "compact") {
|
|
@@ -12524,7 +12607,7 @@ function formatEventPrice(event) {
|
|
|
12524
12607
|
}
|
|
12525
12608
|
}
|
|
12526
12609
|
function resolveEventCta(event, buttonText) {
|
|
12527
|
-
const
|
|
12610
|
+
const { isFull: isSoldOut } = getEventAvailability(event);
|
|
12528
12611
|
const defaultButtonText = event.kind === "course_session" ? "View course" : "View event";
|
|
12529
12612
|
const effectiveButtonText = buttonText ?? defaultButtonText;
|
|
12530
12613
|
if (isSoldOut) {
|
|
@@ -12539,7 +12622,8 @@ var init_utils = __esm({
|
|
|
12539
12622
|
"../blocks/src/system/runtime/nodes/events/shared/utils.ts"() {
|
|
12540
12623
|
"use strict";
|
|
12541
12624
|
init_src();
|
|
12542
|
-
|
|
12625
|
+
init_shared4();
|
|
12626
|
+
init_eventCapacity();
|
|
12543
12627
|
COLUMN_CLASSES = {
|
|
12544
12628
|
"2": "rb-sm-grid-cols-2",
|
|
12545
12629
|
"3": "rb-sm-grid-cols-2 rb-lg-grid-cols-3",
|
|
@@ -14010,6 +14094,7 @@ var init_EventCard = __esm({
|
|
|
14010
14094
|
init_media2();
|
|
14011
14095
|
init_media_server();
|
|
14012
14096
|
init_EventCardIcons();
|
|
14097
|
+
init_eventCapacity();
|
|
14013
14098
|
init_utils();
|
|
14014
14099
|
EventCard = ({
|
|
14015
14100
|
event,
|
|
@@ -14034,7 +14119,7 @@ var init_EventCard = __esm({
|
|
|
14034
14119
|
)}`;
|
|
14035
14120
|
const cta = resolveEventCta(event, buttonText);
|
|
14036
14121
|
const isSoldOut = cta.hidden;
|
|
14037
|
-
const spotsLeft = event
|
|
14122
|
+
const { available: spotsLeft } = getEventAvailability(event);
|
|
14038
14123
|
const cardClass = `card-${cardVariant}`;
|
|
14039
14124
|
const buttonClass = `${buttonVariant} button-${buttonVariant}`;
|
|
14040
14125
|
const title = event.title;
|
|
@@ -14201,7 +14286,7 @@ var init_DateTimeTile = __esm({
|
|
|
14201
14286
|
});
|
|
14202
14287
|
|
|
14203
14288
|
// ../blocks/src/system/runtime/nodes/events/shared/index.ts
|
|
14204
|
-
var
|
|
14289
|
+
var init_shared5 = __esm({
|
|
14205
14290
|
"../blocks/src/system/runtime/nodes/events/shared/index.ts"() {
|
|
14206
14291
|
"use strict";
|
|
14207
14292
|
init_utils();
|
|
@@ -14229,10 +14314,10 @@ var init_EventListing_interactive = __esm({
|
|
|
14229
14314
|
"../blocks/src/system/runtime/nodes/events/EventListing.interactive.ts"() {
|
|
14230
14315
|
"use strict";
|
|
14231
14316
|
init_schemas2();
|
|
14232
|
-
|
|
14317
|
+
init_shared3();
|
|
14233
14318
|
init_islands();
|
|
14234
14319
|
init_runtime();
|
|
14235
|
-
|
|
14320
|
+
init_shared5();
|
|
14236
14321
|
init_contract_schemas();
|
|
14237
14322
|
cardVariantSchema2 = z50.enum(["default", "variant1", "variant2"]);
|
|
14238
14323
|
cardOrientationSchema = z50.enum(["vertical", "horizontal"]);
|
|
@@ -14409,7 +14494,7 @@ var init_event_listing = __esm({
|
|
|
14409
14494
|
init_api_bindings();
|
|
14410
14495
|
init_defineBlock();
|
|
14411
14496
|
init_EventListing_interactive();
|
|
14412
|
-
|
|
14497
|
+
init_shared3();
|
|
14413
14498
|
eventListingManifest = createBlockManifest({
|
|
14414
14499
|
id: "block.event-listing",
|
|
14415
14500
|
version: "1.1.0",
|
|
@@ -14754,10 +14839,10 @@ var init_EventCalendar_interactive = __esm({
|
|
|
14754
14839
|
"../blocks/src/system/runtime/nodes/events/EventCalendar.interactive.ts"() {
|
|
14755
14840
|
"use strict";
|
|
14756
14841
|
init_schemas2();
|
|
14757
|
-
|
|
14842
|
+
init_shared3();
|
|
14758
14843
|
init_islands();
|
|
14759
14844
|
init_runtime();
|
|
14760
|
-
|
|
14845
|
+
init_shared5();
|
|
14761
14846
|
init_contract_schemas();
|
|
14762
14847
|
displayModeSchema = z51.enum(["combined", "month", "week", "list", "timetable"]);
|
|
14763
14848
|
eventBlockKindSchema2 = z51.enum(eventBlockKindValues);
|
|
@@ -14915,7 +15000,7 @@ var init_event_calendar = __esm({
|
|
|
14915
15000
|
init_boxStyles();
|
|
14916
15001
|
init_api_bindings();
|
|
14917
15002
|
init_defineBlock();
|
|
14918
|
-
|
|
15003
|
+
init_shared3();
|
|
14919
15004
|
init_EventCalendar_interactive();
|
|
14920
15005
|
eventCalendarManifest = createBlockManifest({
|
|
14921
15006
|
id: "block.event-calendar",
|
|
@@ -15141,6 +15226,21 @@ var init_event_calendar = __esm({
|
|
|
15141
15226
|
visibleWhen: { field: "displayMode", oneOf: ["combined", "list", "timetable"] }
|
|
15142
15227
|
}
|
|
15143
15228
|
},
|
|
15229
|
+
{
|
|
15230
|
+
id: "showCapacity",
|
|
15231
|
+
type: "boolean",
|
|
15232
|
+
label: "Show available spots",
|
|
15233
|
+
description: "Display remaining capacity on event cards and timetable cells",
|
|
15234
|
+
required: false,
|
|
15235
|
+
defaultValue: true,
|
|
15236
|
+
ui: {
|
|
15237
|
+
intent: "display",
|
|
15238
|
+
visibleWhen: {
|
|
15239
|
+
field: "displayMode",
|
|
15240
|
+
oneOf: ["combined", "list", "week", "timetable"]
|
|
15241
|
+
}
|
|
15242
|
+
}
|
|
15243
|
+
},
|
|
15144
15244
|
// Block-level pre-filtering
|
|
15145
15245
|
{
|
|
15146
15246
|
id: "eventSurface",
|
|
@@ -15332,6 +15432,9 @@ var init_event_calendar = __esm({
|
|
|
15332
15432
|
showStaffFilter: {
|
|
15333
15433
|
$bind: { from: "content.showStaffFilter", fallback: true }
|
|
15334
15434
|
},
|
|
15435
|
+
showCapacity: {
|
|
15436
|
+
$bind: { from: "content.showCapacity", fallback: true }
|
|
15437
|
+
},
|
|
15335
15438
|
kind: { $bind: { from: "content.kind", fallback: "all" } },
|
|
15336
15439
|
eventSurface: {
|
|
15337
15440
|
$bind: { from: "content.eventSurface", fallback: "all" }
|
|
@@ -15405,7 +15508,7 @@ var init_event_calendar = __esm({
|
|
|
15405
15508
|
// ../blocks/src/system/blocks/products/shared.ts
|
|
15406
15509
|
import { z as z53 } from "zod";
|
|
15407
15510
|
var publicProductVariantSchema, publicProductSchema, publicProductsResponseSchema;
|
|
15408
|
-
var
|
|
15511
|
+
var init_shared6 = __esm({
|
|
15409
15512
|
"../blocks/src/system/blocks/products/shared.ts"() {
|
|
15410
15513
|
"use strict";
|
|
15411
15514
|
publicProductVariantSchema = z53.object({
|
|
@@ -16021,7 +16124,7 @@ var init_shop_interactive = __esm({
|
|
|
16021
16124
|
"../blocks/src/system/runtime/nodes/shop.interactive.ts"() {
|
|
16022
16125
|
"use strict";
|
|
16023
16126
|
init_shop_shared();
|
|
16024
|
-
|
|
16127
|
+
init_shared6();
|
|
16025
16128
|
init_display();
|
|
16026
16129
|
init_shop_commerce_shared();
|
|
16027
16130
|
init_islands();
|
|
@@ -16659,7 +16762,7 @@ var init_product_list = __esm({
|
|
|
16659
16762
|
init_api_bindings();
|
|
16660
16763
|
init_defineBlock();
|
|
16661
16764
|
init_shop_interactive();
|
|
16662
|
-
|
|
16765
|
+
init_shared6();
|
|
16663
16766
|
productListManifest = createBlockManifest({
|
|
16664
16767
|
id: "block.product-list",
|
|
16665
16768
|
version: "1.0.0",
|
|
@@ -16819,7 +16922,7 @@ var init_product_detail = __esm({
|
|
|
16819
16922
|
init_api_bindings();
|
|
16820
16923
|
init_defineBlock();
|
|
16821
16924
|
init_shop_interactive();
|
|
16822
|
-
|
|
16925
|
+
init_shared6();
|
|
16823
16926
|
productDetailManifest = createBlockManifest({
|
|
16824
16927
|
id: "block.product-detail",
|
|
16825
16928
|
version: "1.0.0",
|
|
@@ -20980,43 +21083,6 @@ var init_accordion_server = __esm({
|
|
|
20980
21083
|
}
|
|
20981
21084
|
});
|
|
20982
21085
|
|
|
20983
|
-
// ../blocks/src/system/runtime/header/shared.ts
|
|
20984
|
-
function splitPositioningClasses(className) {
|
|
20985
|
-
if (!className) return { wrapperClasses: "", sectionClasses: "" };
|
|
20986
|
-
const classes = className.split(/\s+/).filter(Boolean);
|
|
20987
|
-
const wrapperParts = [];
|
|
20988
|
-
const sectionParts = [];
|
|
20989
|
-
for (const cls of classes) {
|
|
20990
|
-
if (POSITIONING_CLASSES.includes(cls)) {
|
|
20991
|
-
wrapperParts.push(cls);
|
|
20992
|
-
} else {
|
|
20993
|
-
sectionParts.push(cls);
|
|
20994
|
-
}
|
|
20995
|
-
}
|
|
20996
|
-
return {
|
|
20997
|
-
wrapperClasses: wrapperParts.join(" "),
|
|
20998
|
-
sectionClasses: sectionParts.join(" ")
|
|
20999
|
-
};
|
|
21000
|
-
}
|
|
21001
|
-
var POSITIONING_CLASSES;
|
|
21002
|
-
var init_shared6 = __esm({
|
|
21003
|
-
"../blocks/src/system/runtime/header/shared.ts"() {
|
|
21004
|
-
"use strict";
|
|
21005
|
-
POSITIONING_CLASSES = [
|
|
21006
|
-
"rb-sticky",
|
|
21007
|
-
"rb-fixed",
|
|
21008
|
-
"rb-absolute",
|
|
21009
|
-
"rb-relative",
|
|
21010
|
-
"rb-top-0",
|
|
21011
|
-
"rb-left-0",
|
|
21012
|
-
"rb-right-0",
|
|
21013
|
-
"rb-bottom-0",
|
|
21014
|
-
"rb-z-40",
|
|
21015
|
-
"rb-z-50"
|
|
21016
|
-
];
|
|
21017
|
-
}
|
|
21018
|
-
});
|
|
21019
|
-
|
|
21020
21086
|
// ../blocks/src/system/runtime/nodes/header-section.server.tsx
|
|
21021
21087
|
import { jsx as jsx23, jsxs as jsxs9 } from "react/jsx-runtime";
|
|
21022
21088
|
function hasShrinkClasses(className) {
|
|
@@ -21028,7 +21094,7 @@ var init_header_section_server = __esm({
|
|
|
21028
21094
|
"use strict";
|
|
21029
21095
|
init_Section();
|
|
21030
21096
|
init_ssr();
|
|
21031
|
-
|
|
21097
|
+
init_shared2();
|
|
21032
21098
|
HeaderSectionNode = ({
|
|
21033
21099
|
blockId,
|
|
21034
21100
|
children,
|
|
@@ -22035,7 +22101,7 @@ function CoursePricingDisplay({
|
|
|
22035
22101
|
var init_CoursePricingDisplay = __esm({
|
|
22036
22102
|
"../blocks/src/system/runtime/nodes/event-details/CoursePricingDisplay.tsx"() {
|
|
22037
22103
|
"use strict";
|
|
22038
|
-
|
|
22104
|
+
init_shared4();
|
|
22039
22105
|
}
|
|
22040
22106
|
});
|
|
22041
22107
|
|
|
@@ -22155,7 +22221,7 @@ function EventDetailsView({
|
|
|
22155
22221
|
var init_view = __esm({
|
|
22156
22222
|
"../blocks/src/system/runtime/nodes/event-details/view.tsx"() {
|
|
22157
22223
|
"use strict";
|
|
22158
|
-
|
|
22224
|
+
init_shared4();
|
|
22159
22225
|
init_utils();
|
|
22160
22226
|
init_DateTimeTile();
|
|
22161
22227
|
init_CoursePricingDisplay();
|
|
@@ -22584,7 +22650,7 @@ function CourseDetailsView(props2) {
|
|
|
22584
22650
|
var init_view2 = __esm({
|
|
22585
22651
|
"../blocks/src/system/runtime/nodes/course-details/view.tsx"() {
|
|
22586
22652
|
"use strict";
|
|
22587
|
-
|
|
22653
|
+
init_shared4();
|
|
22588
22654
|
init_RichText();
|
|
22589
22655
|
init_richText_coerce();
|
|
22590
22656
|
init_DateTimeTile();
|
|
@@ -22705,7 +22771,7 @@ var EventSpotlight;
|
|
|
22705
22771
|
var init_EventSpotlight = __esm({
|
|
22706
22772
|
"../blocks/src/system/runtime/nodes/events/EventSpotlight.tsx"() {
|
|
22707
22773
|
"use strict";
|
|
22708
|
-
|
|
22774
|
+
init_shared5();
|
|
22709
22775
|
EventSpotlight = ({
|
|
22710
22776
|
events,
|
|
22711
22777
|
layout = "grid",
|
|
@@ -22822,10 +22888,10 @@ var init_EventCombined_interactive = __esm({
|
|
|
22822
22888
|
"../blocks/src/system/runtime/nodes/events/EventCombined.interactive.ts"() {
|
|
22823
22889
|
"use strict";
|
|
22824
22890
|
init_schemas2();
|
|
22825
|
-
|
|
22891
|
+
init_shared3();
|
|
22826
22892
|
init_islands();
|
|
22827
22893
|
init_runtime();
|
|
22828
|
-
|
|
22894
|
+
init_shared5();
|
|
22829
22895
|
init_contract_schemas();
|
|
22830
22896
|
eventBlockKindSchema3 = z61.enum(eventBlockKindValues);
|
|
22831
22897
|
eventSurfaceScopeSchema3 = z61.enum(eventSurfaceScopeValues);
|
|
@@ -22994,7 +23060,7 @@ var init_EventCombined_server = __esm({
|
|
|
22994
23060
|
"../blocks/src/system/runtime/nodes/events/EventCombined.server.tsx"() {
|
|
22995
23061
|
"use strict";
|
|
22996
23062
|
init_EventCombined_interactive();
|
|
22997
|
-
|
|
23063
|
+
init_shared5();
|
|
22998
23064
|
init_renderEventListItem();
|
|
22999
23065
|
init_ssr();
|
|
23000
23066
|
EventCombinedSSR = ({
|
|
@@ -23581,7 +23647,7 @@ function EventListingFrameView(props2) {
|
|
|
23581
23647
|
var init_EventListing_view = __esm({
|
|
23582
23648
|
"../blocks/src/system/runtime/nodes/events/EventListing.view.tsx"() {
|
|
23583
23649
|
"use strict";
|
|
23584
|
-
|
|
23650
|
+
init_shared5();
|
|
23585
23651
|
}
|
|
23586
23652
|
});
|
|
23587
23653
|
|
|
@@ -23597,21 +23663,26 @@ function buildTimetableModel(input) {
|
|
|
23597
23663
|
for (const [dateKey, dayDrafts] of groupDraftsByDate(drafts)) {
|
|
23598
23664
|
cellsByDate.set(
|
|
23599
23665
|
dateKey,
|
|
23600
|
-
assignTimetableLanes(dayDrafts).map((draft) =>
|
|
23601
|
-
|
|
23602
|
-
|
|
23603
|
-
|
|
23604
|
-
|
|
23605
|
-
|
|
23606
|
-
|
|
23607
|
-
|
|
23608
|
-
|
|
23609
|
-
|
|
23610
|
-
|
|
23611
|
-
|
|
23612
|
-
|
|
23613
|
-
|
|
23614
|
-
|
|
23666
|
+
assignTimetableLanes(dayDrafts).map((draft) => {
|
|
23667
|
+
const capacity = formatTimetableCapacity(draft.event);
|
|
23668
|
+
return {
|
|
23669
|
+
event: draft.event,
|
|
23670
|
+
startsAtMinutes: draft.startsAtMinutes,
|
|
23671
|
+
endsAtMinutes: draft.endsAtMinutes,
|
|
23672
|
+
topPercent: toRangePercent(draft.startsAtMinutes - rangeStartMinutes, rangeMinutes),
|
|
23673
|
+
heightPercent: Math.max(
|
|
23674
|
+
MIN_EVENT_HEIGHT_PERCENT,
|
|
23675
|
+
toRangePercent(draft.endsAtMinutes - draft.startsAtMinutes, rangeMinutes)
|
|
23676
|
+
),
|
|
23677
|
+
laneIndex: draft.laneIndex,
|
|
23678
|
+
laneCount: draft.laneCount,
|
|
23679
|
+
categoryColor: draft.event.eventCategory?.color || "rgb(var(--tb-accent))",
|
|
23680
|
+
timeLabel: formatEventTimeRange(draft.event),
|
|
23681
|
+
teacherLine: formatEventTeacherLine(draft.event),
|
|
23682
|
+
capacityLabel: capacity.label,
|
|
23683
|
+
isFull: capacity.isFull
|
|
23684
|
+
};
|
|
23685
|
+
})
|
|
23615
23686
|
);
|
|
23616
23687
|
}
|
|
23617
23688
|
return {
|
|
@@ -23744,6 +23815,12 @@ function formatShortDayLabel(date) {
|
|
|
23744
23815
|
const dayName = FULL_DAY_NAMES[date.getDay()] ?? "";
|
|
23745
23816
|
return `${dayName.slice(0, 3)} ${date.getDate()}`;
|
|
23746
23817
|
}
|
|
23818
|
+
function formatTimetableCapacity(event) {
|
|
23819
|
+
const { available, isFull } = getEventAvailability(event);
|
|
23820
|
+
if (available == null) return { label: null, isFull: false };
|
|
23821
|
+
if (isFull) return { label: "Full", isFull: true };
|
|
23822
|
+
return { label: `${available} spots left`, isFull: false };
|
|
23823
|
+
}
|
|
23747
23824
|
function formatEventTimeRange(event) {
|
|
23748
23825
|
const timeZone = event.timeZone ?? null;
|
|
23749
23826
|
return `${formatTime(event.startsAt, { timeZone })} - ${formatTime(event.endsAt, { timeZone })}`;
|
|
@@ -23756,6 +23833,7 @@ var init_timetableModel = __esm({
|
|
|
23756
23833
|
"../blocks/src/system/runtime/nodes/events/shared/timetableModel.ts"() {
|
|
23757
23834
|
"use strict";
|
|
23758
23835
|
init_src();
|
|
23836
|
+
init_eventCapacity();
|
|
23759
23837
|
init_utils();
|
|
23760
23838
|
DEFAULT_START_HOUR = 6;
|
|
23761
23839
|
DEFAULT_END_HOUR = 21;
|
|
@@ -24014,7 +24092,17 @@ function renderTimetableSsr(display) {
|
|
|
24014
24092
|
/* @__PURE__ */ jsx43("span", { className: "event-timetable-event-time", children: cell.timeLabel }),
|
|
24015
24093
|
/* @__PURE__ */ jsx43("span", { className: "event-timetable-event-title", children: cell.event.title }),
|
|
24016
24094
|
cell.teacherLine ? /* @__PURE__ */ jsx43("span", { className: "event-timetable-event-teacher", children: cell.teacherLine }) : null,
|
|
24017
|
-
cell.event.venue ? /* @__PURE__ */ jsx43("span", { className: "event-timetable-event-meta", children: cell.event.venue.name }) : null
|
|
24095
|
+
cell.event.venue ? /* @__PURE__ */ jsx43("span", { className: "event-timetable-event-meta", children: cell.event.venue.name }) : null,
|
|
24096
|
+
display.showCapacity && cell.capacityLabel ? /* @__PURE__ */ jsx43(
|
|
24097
|
+
"span",
|
|
24098
|
+
{
|
|
24099
|
+
className: clsx_default(
|
|
24100
|
+
"event-timetable-event-capacity",
|
|
24101
|
+
cell.isFull && "event-timetable-event-capacity--full"
|
|
24102
|
+
),
|
|
24103
|
+
children: cell.capacityLabel
|
|
24104
|
+
}
|
|
24105
|
+
) : null
|
|
24018
24106
|
]
|
|
24019
24107
|
},
|
|
24020
24108
|
cell.event.occurrenceId || cell.event.id
|
|
@@ -35451,7 +35539,7 @@ var init_components2 = __esm({
|
|
|
35451
35539
|
"../blocks/src/system/runtime/nodes/course-registration/components.tsx"() {
|
|
35452
35540
|
"use strict";
|
|
35453
35541
|
"use client";
|
|
35454
|
-
|
|
35542
|
+
init_shared4();
|
|
35455
35543
|
init_utils4();
|
|
35456
35544
|
init_LoggedInAsUser();
|
|
35457
35545
|
}
|
|
@@ -36084,7 +36172,7 @@ var init_useCourseRegistrationWizard = __esm({
|
|
|
36084
36172
|
"use strict";
|
|
36085
36173
|
"use client";
|
|
36086
36174
|
init_client2();
|
|
36087
|
-
|
|
36175
|
+
init_shared4();
|
|
36088
36176
|
init_api();
|
|
36089
36177
|
init_shared7();
|
|
36090
36178
|
init_useWaitlistClaim();
|
|
@@ -41541,7 +41629,7 @@ var init_useEventFilters = __esm({
|
|
|
41541
41629
|
"../blocks/src/system/runtime/hooks/useEventFilters.ts"() {
|
|
41542
41630
|
"use strict";
|
|
41543
41631
|
"use client";
|
|
41544
|
-
|
|
41632
|
+
init_shared3();
|
|
41545
41633
|
init_api();
|
|
41546
41634
|
init_normalize();
|
|
41547
41635
|
}
|
|
@@ -42007,30 +42095,22 @@ var init_CalendarDayCell = __esm({
|
|
|
42007
42095
|
|
|
42008
42096
|
// ../blocks/src/system/runtime/nodes/events/shared/AgendaEventCard.tsx
|
|
42009
42097
|
import { Fragment as Fragment22, jsx as jsx129, jsxs as jsxs92 } from "react/jsx-runtime";
|
|
42010
|
-
function formatCapacity(event) {
|
|
42011
|
-
if (event.capacity == null) {
|
|
42012
|
-
return null;
|
|
42013
|
-
}
|
|
42014
|
-
const available = event.availableSpots ?? event.capacity - event.registeredCount;
|
|
42015
|
-
if (available <= 0) {
|
|
42016
|
-
return "Full";
|
|
42017
|
-
}
|
|
42018
|
-
return `${available} spots left`;
|
|
42019
|
-
}
|
|
42020
42098
|
var AgendaEventCard;
|
|
42021
42099
|
var init_AgendaEventCard = __esm({
|
|
42022
42100
|
"../blocks/src/system/runtime/nodes/events/shared/AgendaEventCard.tsx"() {
|
|
42023
42101
|
"use strict";
|
|
42102
|
+
init_eventCapacity();
|
|
42024
42103
|
init_utils();
|
|
42025
42104
|
AgendaEventCard = ({
|
|
42026
42105
|
event,
|
|
42106
|
+
showCapacity,
|
|
42027
42107
|
onClick
|
|
42028
42108
|
}) => {
|
|
42029
42109
|
const eventUrl = event.path;
|
|
42030
42110
|
const categoryColor = event.eventCategory?.color || "rgb(var(--tb-accent))";
|
|
42031
42111
|
const price = formatEventPrice(event);
|
|
42032
|
-
const
|
|
42033
|
-
const
|
|
42112
|
+
const { available, isFull } = getEventAvailability(event);
|
|
42113
|
+
const capacity = showCapacity && available != null ? isFull ? "Full" : `${available} spots left` : null;
|
|
42034
42114
|
const title = event.title;
|
|
42035
42115
|
const timeZone = event.timeZone ?? null;
|
|
42036
42116
|
const teacherLine = formatEventTeacherLine(event);
|
|
@@ -42110,6 +42190,7 @@ var init_WeekAgendaView = __esm({
|
|
|
42110
42190
|
viewDate,
|
|
42111
42191
|
events,
|
|
42112
42192
|
startOfWeek,
|
|
42193
|
+
showCapacity,
|
|
42113
42194
|
emptyMessage = "No events scheduled"
|
|
42114
42195
|
}) => {
|
|
42115
42196
|
const weekDays = getWeekCalendarDays(viewDate, startOfWeek);
|
|
@@ -42130,7 +42211,8 @@ var init_WeekAgendaView = __esm({
|
|
|
42130
42211
|
/* @__PURE__ */ jsx130("div", { className: "event-agenda-day-content", children: dayEvents.length === 0 ? /* @__PURE__ */ jsx130("p", { className: "event-agenda-day-empty", children: emptyMessage }) : /* @__PURE__ */ jsx130("div", { className: "event-agenda-day-events", children: dayEvents.map((event) => /* @__PURE__ */ jsx130(
|
|
42131
42212
|
AgendaEventCard,
|
|
42132
42213
|
{
|
|
42133
|
-
event
|
|
42214
|
+
event,
|
|
42215
|
+
showCapacity
|
|
42134
42216
|
},
|
|
42135
42217
|
event.occurrenceId || event.id
|
|
42136
42218
|
)) }) })
|
|
@@ -42147,6 +42229,7 @@ var init_WeekAgendaView = __esm({
|
|
|
42147
42229
|
import { jsx as jsx131 } from "react/jsx-runtime";
|
|
42148
42230
|
function EventDetailModal({
|
|
42149
42231
|
event,
|
|
42232
|
+
showCapacity,
|
|
42150
42233
|
onClose,
|
|
42151
42234
|
cardVariant = "default",
|
|
42152
42235
|
buttonVariant = "primary",
|
|
@@ -42187,7 +42270,7 @@ function EventDetailModal({
|
|
|
42187
42270
|
showVenue: true,
|
|
42188
42271
|
showMap,
|
|
42189
42272
|
allowMap: true,
|
|
42190
|
-
showCapacity
|
|
42273
|
+
showCapacity
|
|
42191
42274
|
}
|
|
42192
42275
|
) })
|
|
42193
42276
|
}
|
|
@@ -42207,6 +42290,7 @@ import { jsx as jsx132, jsxs as jsxs94 } from "react/jsx-runtime";
|
|
|
42207
42290
|
function DayEventsModal({
|
|
42208
42291
|
date,
|
|
42209
42292
|
events,
|
|
42293
|
+
showCapacity,
|
|
42210
42294
|
onClose,
|
|
42211
42295
|
onSelectEvent
|
|
42212
42296
|
}) {
|
|
@@ -42243,7 +42327,8 @@ function DayEventsModal({
|
|
|
42243
42327
|
AgendaEventCard,
|
|
42244
42328
|
{
|
|
42245
42329
|
event,
|
|
42246
|
-
onClick: onSelectEvent
|
|
42330
|
+
onClick: onSelectEvent,
|
|
42331
|
+
showCapacity
|
|
42247
42332
|
},
|
|
42248
42333
|
event.occurrenceId || event.id
|
|
42249
42334
|
)) })
|
|
@@ -42264,6 +42349,7 @@ var init_DayEventsModal = __esm({
|
|
|
42264
42349
|
// ../blocks/src/system/runtime/nodes/events/shared/EventModals.tsx
|
|
42265
42350
|
import { jsx as jsx133 } from "react/jsx-runtime";
|
|
42266
42351
|
function EventModals({
|
|
42352
|
+
showCapacity,
|
|
42267
42353
|
cardVariant,
|
|
42268
42354
|
buttonVariant,
|
|
42269
42355
|
buttonText
|
|
@@ -42280,7 +42366,8 @@ function EventModals({
|
|
|
42280
42366
|
onClose: closeModal,
|
|
42281
42367
|
cardVariant,
|
|
42282
42368
|
buttonVariant,
|
|
42283
|
-
buttonText
|
|
42369
|
+
buttonText,
|
|
42370
|
+
showCapacity
|
|
42284
42371
|
}
|
|
42285
42372
|
);
|
|
42286
42373
|
}
|
|
@@ -42293,7 +42380,8 @@ function EventModals({
|
|
|
42293
42380
|
onClose: closeModal,
|
|
42294
42381
|
onSelectEvent: (event) => {
|
|
42295
42382
|
openEventModal(event);
|
|
42296
|
-
}
|
|
42383
|
+
},
|
|
42384
|
+
showCapacity
|
|
42297
42385
|
}
|
|
42298
42386
|
);
|
|
42299
42387
|
}
|
|
@@ -42348,7 +42436,7 @@ var init_EventCombined_client = __esm({
|
|
|
42348
42436
|
"../blocks/src/system/runtime/nodes/events/EventCombined.client.tsx"() {
|
|
42349
42437
|
"use strict";
|
|
42350
42438
|
"use client";
|
|
42351
|
-
|
|
42439
|
+
init_shared5();
|
|
42352
42440
|
init_TabBar();
|
|
42353
42441
|
init_EventFilters();
|
|
42354
42442
|
init_EventPaginatedListView_client();
|
|
@@ -42696,7 +42784,8 @@ var init_EventCombined_client = __esm({
|
|
|
42696
42784
|
viewDate,
|
|
42697
42785
|
events: calendarEventsRaw,
|
|
42698
42786
|
startOfWeek,
|
|
42699
|
-
emptyMessage: "No events scheduled"
|
|
42787
|
+
emptyMessage: "No events scheduled",
|
|
42788
|
+
showCapacity: resolvedShowCapacity
|
|
42700
42789
|
}
|
|
42701
42790
|
) : /* @__PURE__ */ jsxs95("div", { className: "event-calendar-container", children: [
|
|
42702
42791
|
/* @__PURE__ */ jsx134("div", { className: "event-calendar-day-headers", children: dayNames.map((day) => /* @__PURE__ */ jsx134("div", { className: "event-calendar-day-header", children: day }, day)) }),
|
|
@@ -42716,7 +42805,14 @@ var init_EventCombined_client = __esm({
|
|
|
42716
42805
|
] }),
|
|
42717
42806
|
calendarEventsRaw.length === 0 && !calendarLoading && /* @__PURE__ */ jsx134("p", { className: "event-calendar-empty", children: emptyMessage })
|
|
42718
42807
|
] }),
|
|
42719
|
-
/* @__PURE__ */ jsx134(
|
|
42808
|
+
/* @__PURE__ */ jsx134(
|
|
42809
|
+
EventModals,
|
|
42810
|
+
{
|
|
42811
|
+
buttonVariant,
|
|
42812
|
+
buttonText,
|
|
42813
|
+
showCapacity: resolvedShowCapacity
|
|
42814
|
+
}
|
|
42815
|
+
)
|
|
42720
42816
|
] })
|
|
42721
42817
|
]
|
|
42722
42818
|
}
|
|
@@ -42751,6 +42847,7 @@ var init_WeekTimetableView = __esm({
|
|
|
42751
42847
|
viewDate,
|
|
42752
42848
|
events,
|
|
42753
42849
|
startOfWeek,
|
|
42850
|
+
showCapacity,
|
|
42754
42851
|
emptyMessage = "No classes scheduled"
|
|
42755
42852
|
}) => {
|
|
42756
42853
|
const { openEventModal } = useEventModal();
|
|
@@ -42783,7 +42880,8 @@ var init_WeekTimetableView = __esm({
|
|
|
42783
42880
|
hours: model.hourTicks,
|
|
42784
42881
|
rangeMinutes: model.rangeMinutes,
|
|
42785
42882
|
selected: day.dateKey === selectedDayKey,
|
|
42786
|
-
onEventClick: openEventModal
|
|
42883
|
+
onEventClick: openEventModal,
|
|
42884
|
+
showCapacity
|
|
42787
42885
|
},
|
|
42788
42886
|
day.dateKey
|
|
42789
42887
|
))
|
|
@@ -42803,7 +42901,7 @@ var init_WeekTimetableView = __esm({
|
|
|
42803
42901
|
hour
|
|
42804
42902
|
)) })
|
|
42805
42903
|
] });
|
|
42806
|
-
TimetableDayColumn = ({ day, hours, rangeMinutes, selected, onEventClick }) => /* @__PURE__ */ jsxs96(
|
|
42904
|
+
TimetableDayColumn = ({ day, hours, rangeMinutes, selected, onEventClick, showCapacity }) => /* @__PURE__ */ jsxs96(
|
|
42807
42905
|
"section",
|
|
42808
42906
|
{
|
|
42809
42907
|
className: `event-timetable-day ${day.isToday ? "event-timetable-day--today" : ""}`,
|
|
@@ -42832,7 +42930,8 @@ var init_WeekTimetableView = __esm({
|
|
|
42832
42930
|
TimetableEventButton,
|
|
42833
42931
|
{
|
|
42834
42932
|
cell,
|
|
42835
|
-
onClick: onEventClick
|
|
42933
|
+
onClick: onEventClick,
|
|
42934
|
+
showCapacity
|
|
42836
42935
|
},
|
|
42837
42936
|
cell.event.occurrenceId || cell.event.id
|
|
42838
42937
|
))
|
|
@@ -42842,7 +42941,7 @@ var init_WeekTimetableView = __esm({
|
|
|
42842
42941
|
]
|
|
42843
42942
|
}
|
|
42844
42943
|
);
|
|
42845
|
-
TimetableEventButton = ({ cell, onClick }) => /* @__PURE__ */ jsxs96(
|
|
42944
|
+
TimetableEventButton = ({ cell, onClick, showCapacity }) => /* @__PURE__ */ jsxs96(
|
|
42846
42945
|
"button",
|
|
42847
42946
|
{
|
|
42848
42947
|
type: "button",
|
|
@@ -42860,7 +42959,14 @@ var init_WeekTimetableView = __esm({
|
|
|
42860
42959
|
/* @__PURE__ */ jsx135("span", { className: "event-timetable-event-time", children: cell.timeLabel }),
|
|
42861
42960
|
/* @__PURE__ */ jsx135("span", { className: "event-timetable-event-title", children: cell.event.title }),
|
|
42862
42961
|
cell.teacherLine ? /* @__PURE__ */ jsx135("span", { className: "event-timetable-event-teacher", children: cell.teacherLine }) : null,
|
|
42863
|
-
cell.event.venue ? /* @__PURE__ */ jsx135("span", { className: "event-timetable-event-meta", children: cell.event.venue.name }) : null
|
|
42962
|
+
cell.event.venue ? /* @__PURE__ */ jsx135("span", { className: "event-timetable-event-meta", children: cell.event.venue.name }) : null,
|
|
42963
|
+
showCapacity && cell.capacityLabel ? /* @__PURE__ */ jsx135(
|
|
42964
|
+
"span",
|
|
42965
|
+
{
|
|
42966
|
+
className: cell.isFull ? "event-timetable-event-capacity event-timetable-event-capacity--full" : "event-timetable-event-capacity",
|
|
42967
|
+
children: cell.capacityLabel
|
|
42968
|
+
}
|
|
42969
|
+
) : null
|
|
42864
42970
|
]
|
|
42865
42971
|
}
|
|
42866
42972
|
);
|
|
@@ -43082,7 +43188,8 @@ var init_EventCalendar_client = __esm({
|
|
|
43082
43188
|
viewDate,
|
|
43083
43189
|
events,
|
|
43084
43190
|
startOfWeek: display.startOfWeek,
|
|
43085
|
-
emptyMessage: display.emptyMessage
|
|
43191
|
+
emptyMessage: display.emptyMessage,
|
|
43192
|
+
showCapacity: display.showCapacity
|
|
43086
43193
|
}
|
|
43087
43194
|
)
|
|
43088
43195
|
}
|
|
@@ -43091,7 +43198,8 @@ var init_EventCalendar_client = __esm({
|
|
|
43091
43198
|
EventModals,
|
|
43092
43199
|
{
|
|
43093
43200
|
buttonVariant: display.buttonVariant,
|
|
43094
|
-
buttonText: display.buttonText
|
|
43201
|
+
buttonText: display.buttonText,
|
|
43202
|
+
showCapacity: display.showCapacity
|
|
43095
43203
|
}
|
|
43096
43204
|
)
|
|
43097
43205
|
] });
|
|
@@ -43173,7 +43281,8 @@ var init_EventCalendar_client = __esm({
|
|
|
43173
43281
|
EventModals,
|
|
43174
43282
|
{
|
|
43175
43283
|
buttonVariant: display.buttonVariant,
|
|
43176
|
-
buttonText: display.buttonText
|
|
43284
|
+
buttonText: display.buttonText,
|
|
43285
|
+
showCapacity: display.showCapacity
|
|
43177
43286
|
}
|
|
43178
43287
|
)
|
|
43179
43288
|
] });
|
|
@@ -43297,7 +43406,7 @@ var init_EventCalendar_client = __esm({
|
|
|
43297
43406
|
var init_events2 = __esm({
|
|
43298
43407
|
"../blocks/src/system/runtime/nodes/events/index.ts"() {
|
|
43299
43408
|
"use strict";
|
|
43300
|
-
|
|
43409
|
+
init_shared5();
|
|
43301
43410
|
init_EventListing_client();
|
|
43302
43411
|
init_EventCalendar_client();
|
|
43303
43412
|
init_EventCombined_client();
|
|
@@ -46721,12 +46830,50 @@ var init_compile = __esm({
|
|
|
46721
46830
|
});
|
|
46722
46831
|
|
|
46723
46832
|
// ../theme-core/src/responsiveMode.ts
|
|
46724
|
-
|
|
46833
|
+
function getResponsiveScopeSpec(mode = DEFAULT_THEME_RESPONSIVE_MODE) {
|
|
46834
|
+
if (mode === "container") {
|
|
46835
|
+
return {
|
|
46836
|
+
kind: "container",
|
|
46837
|
+
selector: `[${THEME_RESPONSIVE_MODE_ATTR}="container"]`,
|
|
46838
|
+
containerName: THEME_RESPONSIVE_CONTAINER_NAME
|
|
46839
|
+
};
|
|
46840
|
+
}
|
|
46841
|
+
return {
|
|
46842
|
+
kind: "viewport",
|
|
46843
|
+
selector: `[${THEME_RESPONSIVE_MODE_ATTR}="viewport"]`
|
|
46844
|
+
};
|
|
46845
|
+
}
|
|
46846
|
+
function escapeRegExp(value) {
|
|
46847
|
+
return value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
46848
|
+
}
|
|
46849
|
+
function buildResponsiveScopeRulePatternSource() {
|
|
46850
|
+
return [
|
|
46851
|
+
"@scope",
|
|
46852
|
+
"\\(\\[",
|
|
46853
|
+
escapeRegExp(THEME_RESPONSIVE_MODE_ATTR),
|
|
46854
|
+
'="(?:viewport|container)"\\]\\)',
|
|
46855
|
+
"to",
|
|
46856
|
+
"\\((?::scope )?\\[",
|
|
46857
|
+
escapeRegExp(THEME_RESPONSIVE_MODE_ATTR),
|
|
46858
|
+
"\\]\\)",
|
|
46859
|
+
"\\{"
|
|
46860
|
+
].join("\\s*");
|
|
46861
|
+
}
|
|
46862
|
+
var DEFAULT_THEME_RESPONSIVE_MODE, THEME_RESPONSIVE_CONTAINER_NAME, THEME_RESPONSIVE_MODE_ATTR, RESPONSIVE_SCOPE_RULE_PATTERN, RESPONSIVE_SCOPE_RULE_AT_PATTERN;
|
|
46725
46863
|
var init_responsiveMode = __esm({
|
|
46726
46864
|
"../theme-core/src/responsiveMode.ts"() {
|
|
46727
46865
|
"use strict";
|
|
46728
46866
|
DEFAULT_THEME_RESPONSIVE_MODE = "viewport";
|
|
46729
46867
|
THEME_RESPONSIVE_CONTAINER_NAME = "rb-site";
|
|
46868
|
+
THEME_RESPONSIVE_MODE_ATTR = "data-rb-responsive-mode";
|
|
46869
|
+
RESPONSIVE_SCOPE_RULE_PATTERN = new RegExp(
|
|
46870
|
+
buildResponsiveScopeRulePatternSource(),
|
|
46871
|
+
"g"
|
|
46872
|
+
);
|
|
46873
|
+
RESPONSIVE_SCOPE_RULE_AT_PATTERN = new RegExp(
|
|
46874
|
+
buildResponsiveScopeRulePatternSource(),
|
|
46875
|
+
"y"
|
|
46876
|
+
);
|
|
46730
46877
|
}
|
|
46731
46878
|
});
|
|
46732
46879
|
|
|
@@ -47775,45 +47922,53 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
47775
47922
|
flex-basis: 16.666667%;
|
|
47776
47923
|
}
|
|
47777
47924
|
@container rb-site (min-width: 768px) {
|
|
47778
|
-
|
|
47779
|
-
|
|
47780
|
-
|
|
47781
|
-
|
|
47782
|
-
|
|
47783
|
-
|
|
47784
|
-
|
|
47785
|
-
|
|
47786
|
-
|
|
47787
|
-
|
|
47788
|
-
|
|
47789
|
-
|
|
47790
|
-
|
|
47791
|
-
|
|
47792
|
-
|
|
47793
|
-
|
|
47794
|
-
|
|
47925
|
+
|
|
47926
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
47927
|
+
.rb-md-basis-full {
|
|
47928
|
+
flex-basis: 100%;
|
|
47929
|
+
}
|
|
47930
|
+
.rb-md-basis-1-2 {
|
|
47931
|
+
flex-basis: 50%;
|
|
47932
|
+
}
|
|
47933
|
+
.rb-md-basis-1-3 {
|
|
47934
|
+
flex-basis: 33.333333%;
|
|
47935
|
+
}
|
|
47936
|
+
.rb-md-basis-1-4 {
|
|
47937
|
+
flex-basis: 25%;
|
|
47938
|
+
}
|
|
47939
|
+
.rb-md-basis-1-5 {
|
|
47940
|
+
flex-basis: 20%;
|
|
47941
|
+
}
|
|
47942
|
+
.rb-md-basis-1-6 {
|
|
47943
|
+
flex-basis: 16.666667%;
|
|
47944
|
+
}
|
|
47795
47945
|
}
|
|
47796
|
-
|
|
47946
|
+
|
|
47947
|
+
}
|
|
47797
47948
|
@container rb-site (min-width: 1024px) {
|
|
47798
|
-
|
|
47799
|
-
|
|
47800
|
-
|
|
47801
|
-
|
|
47802
|
-
|
|
47803
|
-
|
|
47804
|
-
|
|
47805
|
-
|
|
47806
|
-
|
|
47807
|
-
|
|
47808
|
-
|
|
47809
|
-
|
|
47810
|
-
|
|
47811
|
-
|
|
47812
|
-
|
|
47813
|
-
|
|
47814
|
-
|
|
47949
|
+
|
|
47950
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
47951
|
+
.rb-lg-basis-full {
|
|
47952
|
+
flex-basis: 100%;
|
|
47953
|
+
}
|
|
47954
|
+
.rb-lg-basis-1-2 {
|
|
47955
|
+
flex-basis: 50%;
|
|
47956
|
+
}
|
|
47957
|
+
.rb-lg-basis-1-3 {
|
|
47958
|
+
flex-basis: 33.333333%;
|
|
47959
|
+
}
|
|
47960
|
+
.rb-lg-basis-1-4 {
|
|
47961
|
+
flex-basis: 25%;
|
|
47962
|
+
}
|
|
47963
|
+
.rb-lg-basis-1-5 {
|
|
47964
|
+
flex-basis: 20%;
|
|
47965
|
+
}
|
|
47966
|
+
.rb-lg-basis-1-6 {
|
|
47967
|
+
flex-basis: 16.666667%;
|
|
47968
|
+
}
|
|
47815
47969
|
}
|
|
47816
|
-
|
|
47970
|
+
|
|
47971
|
+
}
|
|
47817
47972
|
.rb-shrink-0 {
|
|
47818
47973
|
flex-shrink: 0;
|
|
47819
47974
|
}
|
|
@@ -47835,64 +47990,80 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
47835
47990
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
47836
47991
|
}
|
|
47837
47992
|
@container rb-site (min-width: 640px) {
|
|
47838
|
-
|
|
47839
|
-
|
|
47840
|
-
|
|
47841
|
-
|
|
47842
|
-
|
|
47843
|
-
|
|
47844
|
-
|
|
47845
|
-
|
|
47993
|
+
|
|
47994
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
47995
|
+
.rb-sm-grid-cols-2 {
|
|
47996
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
47997
|
+
}
|
|
47998
|
+
.rb-sm-grid-cols-3 {
|
|
47999
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
48000
|
+
}
|
|
48001
|
+
.rb-sm-grid-cols-4 {
|
|
48002
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
48003
|
+
}
|
|
47846
48004
|
}
|
|
47847
|
-
|
|
48005
|
+
|
|
48006
|
+
}
|
|
47848
48007
|
@container rb-site (min-width: 768px) {
|
|
47849
|
-
|
|
47850
|
-
|
|
47851
|
-
|
|
47852
|
-
|
|
47853
|
-
|
|
47854
|
-
|
|
47855
|
-
|
|
47856
|
-
|
|
48008
|
+
|
|
48009
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
48010
|
+
.rb-md-grid-cols-2 {
|
|
48011
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
48012
|
+
}
|
|
48013
|
+
.rb-md-grid-cols-3 {
|
|
48014
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
48015
|
+
}
|
|
48016
|
+
.rb-md-grid-cols-4 {
|
|
48017
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
48018
|
+
}
|
|
47857
48019
|
}
|
|
47858
|
-
|
|
48020
|
+
|
|
48021
|
+
}
|
|
47859
48022
|
@container rb-site (min-width: 1024px) {
|
|
47860
|
-
|
|
47861
|
-
|
|
47862
|
-
|
|
47863
|
-
|
|
47864
|
-
|
|
47865
|
-
|
|
47866
|
-
|
|
47867
|
-
|
|
47868
|
-
|
|
47869
|
-
|
|
47870
|
-
|
|
47871
|
-
|
|
47872
|
-
|
|
47873
|
-
|
|
47874
|
-
|
|
47875
|
-
|
|
47876
|
-
|
|
47877
|
-
|
|
47878
|
-
|
|
47879
|
-
|
|
47880
|
-
|
|
47881
|
-
|
|
47882
|
-
|
|
48023
|
+
|
|
48024
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
48025
|
+
.rb-lg-grid-cols-2 {
|
|
48026
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
48027
|
+
}
|
|
48028
|
+
.rb-lg-grid-cols-3 {
|
|
48029
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
48030
|
+
}
|
|
48031
|
+
.rb-lg-grid-cols-4 {
|
|
48032
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
48033
|
+
}
|
|
48034
|
+
.rb-lg-w-3\\/4 {
|
|
48035
|
+
width: 75%;
|
|
48036
|
+
}
|
|
48037
|
+
.rb-lg-col-span-1 {
|
|
48038
|
+
grid-column: span 1 / span 1;
|
|
48039
|
+
}
|
|
48040
|
+
.rb-lg-col-span-2 {
|
|
48041
|
+
grid-column: span 2 / span 2;
|
|
48042
|
+
}
|
|
48043
|
+
.rb-lg-col-span-3 {
|
|
48044
|
+
grid-column: span 3 / span 3;
|
|
48045
|
+
}
|
|
48046
|
+
.rb-lg-col-span-4 {
|
|
48047
|
+
grid-column: span 4 / span 4;
|
|
48048
|
+
}
|
|
47883
48049
|
}
|
|
47884
|
-
|
|
48050
|
+
|
|
48051
|
+
}
|
|
47885
48052
|
@container rb-site (min-width: 1280px) {
|
|
47886
|
-
|
|
47887
|
-
|
|
47888
|
-
|
|
47889
|
-
|
|
47890
|
-
|
|
47891
|
-
|
|
47892
|
-
|
|
47893
|
-
|
|
48053
|
+
|
|
48054
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
48055
|
+
.rb-xl-grid-cols-2 {
|
|
48056
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
48057
|
+
}
|
|
48058
|
+
.rb-xl-grid-cols-3 {
|
|
48059
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
48060
|
+
}
|
|
48061
|
+
.rb-xl-grid-cols-4 {
|
|
48062
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
48063
|
+
}
|
|
47894
48064
|
}
|
|
47895
|
-
|
|
48065
|
+
|
|
48066
|
+
}
|
|
47896
48067
|
|
|
47897
48068
|
/* Alignment */
|
|
47898
48069
|
.rb-items-start {
|
|
@@ -47961,13 +48132,17 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
47961
48132
|
row-gap: 0.75rem;
|
|
47962
48133
|
}
|
|
47963
48134
|
@container rb-site (min-width: 768px) {
|
|
47964
|
-
|
|
47965
|
-
|
|
47966
|
-
|
|
47967
|
-
|
|
47968
|
-
|
|
48135
|
+
|
|
48136
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
48137
|
+
.rb-md-gap-0 {
|
|
48138
|
+
gap: 0;
|
|
48139
|
+
}
|
|
48140
|
+
.rb-md-gap-10 {
|
|
48141
|
+
gap: 2.5rem;
|
|
48142
|
+
}
|
|
47969
48143
|
}
|
|
47970
|
-
|
|
48144
|
+
|
|
48145
|
+
}
|
|
47971
48146
|
|
|
47972
48147
|
.rb-space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
47973
48148
|
margin-top: 0.25rem;
|
|
@@ -48069,137 +48244,149 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
48069
48244
|
}
|
|
48070
48245
|
|
|
48071
48246
|
@container rb-site (min-width: 640px) {
|
|
48072
|
-
.rb-sm-py-16 {
|
|
48073
|
-
padding-top: 4rem;
|
|
48074
|
-
padding-bottom: 4rem;
|
|
48075
|
-
}
|
|
48076
|
-
.rb-sm-py-20 {
|
|
48077
|
-
padding-top: 5rem;
|
|
48078
|
-
padding-bottom: 5rem;
|
|
48079
|
-
}
|
|
48080
|
-
.rb-sm-p-6 {
|
|
48081
|
-
padding: 1.5rem;
|
|
48082
|
-
}
|
|
48083
|
-
.rb-sm-flex {
|
|
48084
|
-
display: flex;
|
|
48085
|
-
}
|
|
48086
|
-
.rb-sm-block {
|
|
48087
|
-
display: block;
|
|
48088
|
-
}
|
|
48089
|
-
.rb-sm-inline {
|
|
48090
|
-
display: inline;
|
|
48091
|
-
}
|
|
48092
|
-
.rb-sm-inline-block {
|
|
48093
|
-
display: inline-block;
|
|
48094
|
-
}
|
|
48095
|
-
.rb-sm-inline-flex {
|
|
48096
|
-
display: inline-flex;
|
|
48097
|
-
}
|
|
48098
|
-
.rb-sm-grid {
|
|
48099
|
-
display: grid;
|
|
48100
|
-
}
|
|
48101
|
-
.rb-sm-hidden {
|
|
48102
|
-
display: none;
|
|
48103
|
-
}
|
|
48104
|
-
.rb-sm-flex-row {
|
|
48105
|
-
flex-direction: row;
|
|
48106
|
-
}
|
|
48107
|
-
.rb-sm-items-start {
|
|
48108
|
-
align-items: flex-start;
|
|
48109
|
-
}
|
|
48110
|
-
.rb-sm-items-center {
|
|
48111
|
-
align-items: center;
|
|
48112
|
-
}
|
|
48113
|
-
.rb-sm-justify-between {
|
|
48114
|
-
justify-content: space-between;
|
|
48115
|
-
}
|
|
48116
|
-
.rb-sm-p-8 {
|
|
48117
|
-
padding: 2rem;
|
|
48118
|
-
}
|
|
48119
|
-
.rb-sm-text-lg {
|
|
48120
|
-
font-size: 1.125rem;
|
|
48121
|
-
line-height: 1.75rem;
|
|
48122
|
-
}
|
|
48123
|
-
.rb-sm-text-xl {
|
|
48124
|
-
font-size: 1.25rem;
|
|
48125
|
-
line-height: 1.75rem;
|
|
48126
|
-
}
|
|
48127
|
-
.rb-sm-text-4xl {
|
|
48128
|
-
font-size: 2.25rem;
|
|
48129
|
-
line-height: 2.5rem;
|
|
48130
|
-
}
|
|
48131
48247
|
|
|
48132
|
-
|
|
48133
|
-
|
|
48248
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
48249
|
+
.rb-sm-py-16 {
|
|
48250
|
+
padding-top: 4rem;
|
|
48251
|
+
padding-bottom: 4rem;
|
|
48252
|
+
}
|
|
48253
|
+
.rb-sm-py-20 {
|
|
48254
|
+
padding-top: 5rem;
|
|
48255
|
+
padding-bottom: 5rem;
|
|
48256
|
+
}
|
|
48257
|
+
.rb-sm-p-6 {
|
|
48258
|
+
padding: 1.5rem;
|
|
48259
|
+
}
|
|
48260
|
+
.rb-sm-flex {
|
|
48261
|
+
display: flex;
|
|
48262
|
+
}
|
|
48263
|
+
.rb-sm-block {
|
|
48264
|
+
display: block;
|
|
48265
|
+
}
|
|
48266
|
+
.rb-sm-inline {
|
|
48267
|
+
display: inline;
|
|
48268
|
+
}
|
|
48269
|
+
.rb-sm-inline-block {
|
|
48270
|
+
display: inline-block;
|
|
48271
|
+
}
|
|
48272
|
+
.rb-sm-inline-flex {
|
|
48273
|
+
display: inline-flex;
|
|
48274
|
+
}
|
|
48275
|
+
.rb-sm-grid {
|
|
48276
|
+
display: grid;
|
|
48277
|
+
}
|
|
48278
|
+
.rb-sm-hidden {
|
|
48279
|
+
display: none;
|
|
48280
|
+
}
|
|
48281
|
+
.rb-sm-flex-row {
|
|
48282
|
+
flex-direction: row;
|
|
48283
|
+
}
|
|
48284
|
+
.rb-sm-items-start {
|
|
48285
|
+
align-items: flex-start;
|
|
48286
|
+
}
|
|
48287
|
+
.rb-sm-items-center {
|
|
48288
|
+
align-items: center;
|
|
48289
|
+
}
|
|
48290
|
+
.rb-sm-justify-between {
|
|
48291
|
+
justify-content: space-between;
|
|
48292
|
+
}
|
|
48293
|
+
.rb-sm-p-8 {
|
|
48294
|
+
padding: 2rem;
|
|
48295
|
+
}
|
|
48296
|
+
.rb-sm-text-lg {
|
|
48297
|
+
font-size: 1.125rem;
|
|
48298
|
+
line-height: 1.75rem;
|
|
48299
|
+
}
|
|
48300
|
+
.rb-sm-text-xl {
|
|
48301
|
+
font-size: 1.25rem;
|
|
48302
|
+
line-height: 1.75rem;
|
|
48303
|
+
}
|
|
48304
|
+
.rb-sm-text-4xl {
|
|
48305
|
+
font-size: 2.25rem;
|
|
48306
|
+
line-height: 2.5rem;
|
|
48307
|
+
}
|
|
48308
|
+
|
|
48309
|
+
.rb-sm-w-auto {
|
|
48310
|
+
width: auto;
|
|
48311
|
+
}
|
|
48134
48312
|
}
|
|
48135
|
-
|
|
48313
|
+
|
|
48314
|
+
}
|
|
48136
48315
|
@container rb-site (min-width: 768px) {
|
|
48137
|
-
.rb-md-py-20 {
|
|
48138
|
-
padding-top: 5rem;
|
|
48139
|
-
padding-bottom: 5rem;
|
|
48140
|
-
}
|
|
48141
|
-
.rb-md-py-24 {
|
|
48142
|
-
padding-top: 6rem;
|
|
48143
|
-
padding-bottom: 6rem;
|
|
48144
|
-
}
|
|
48145
|
-
.rb-md-w-1\\/3 {
|
|
48146
|
-
width: 33.333333%;
|
|
48147
|
-
}
|
|
48148
48316
|
|
|
48149
|
-
|
|
48150
|
-
|
|
48151
|
-
|
|
48152
|
-
|
|
48153
|
-
|
|
48154
|
-
|
|
48155
|
-
|
|
48156
|
-
|
|
48157
|
-
|
|
48158
|
-
|
|
48159
|
-
|
|
48160
|
-
|
|
48161
|
-
|
|
48162
|
-
|
|
48163
|
-
|
|
48164
|
-
|
|
48165
|
-
|
|
48166
|
-
|
|
48167
|
-
|
|
48168
|
-
|
|
48169
|
-
|
|
48170
|
-
|
|
48171
|
-
|
|
48172
|
-
|
|
48173
|
-
|
|
48174
|
-
flex
|
|
48175
|
-
|
|
48176
|
-
|
|
48177
|
-
|
|
48317
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
48318
|
+
.rb-md-py-20 {
|
|
48319
|
+
padding-top: 5rem;
|
|
48320
|
+
padding-bottom: 5rem;
|
|
48321
|
+
}
|
|
48322
|
+
.rb-md-py-24 {
|
|
48323
|
+
padding-top: 6rem;
|
|
48324
|
+
padding-bottom: 6rem;
|
|
48325
|
+
}
|
|
48326
|
+
.rb-md-w-1\\/3 {
|
|
48327
|
+
width: 33.333333%;
|
|
48328
|
+
}
|
|
48329
|
+
|
|
48330
|
+
.rb-md-flex {
|
|
48331
|
+
display: flex;
|
|
48332
|
+
}
|
|
48333
|
+
.rb-md-block {
|
|
48334
|
+
display: block;
|
|
48335
|
+
}
|
|
48336
|
+
.rb-md-inline {
|
|
48337
|
+
display: inline;
|
|
48338
|
+
}
|
|
48339
|
+
.rb-md-inline-block {
|
|
48340
|
+
display: inline-block;
|
|
48341
|
+
}
|
|
48342
|
+
.rb-md-inline-flex {
|
|
48343
|
+
display: inline-flex;
|
|
48344
|
+
}
|
|
48345
|
+
.rb-md-grid {
|
|
48346
|
+
display: grid;
|
|
48347
|
+
}
|
|
48348
|
+
.rb-md-hidden {
|
|
48349
|
+
display: none;
|
|
48350
|
+
}
|
|
48351
|
+
.rb-md-flex-row {
|
|
48352
|
+
flex-direction: row;
|
|
48353
|
+
}
|
|
48354
|
+
.rb-md-flex-row-reverse {
|
|
48355
|
+
flex-direction: row-reverse;
|
|
48356
|
+
}
|
|
48357
|
+
.rb-md-items-start {
|
|
48358
|
+
align-items: flex-start;
|
|
48359
|
+
}
|
|
48178
48360
|
}
|
|
48179
|
-
|
|
48361
|
+
|
|
48362
|
+
}
|
|
48180
48363
|
@container rb-site (min-width: 1024px) {
|
|
48181
|
-
|
|
48182
|
-
|
|
48183
|
-
|
|
48184
|
-
|
|
48185
|
-
|
|
48186
|
-
|
|
48187
|
-
|
|
48188
|
-
|
|
48189
|
-
|
|
48190
|
-
|
|
48191
|
-
|
|
48192
|
-
|
|
48193
|
-
|
|
48194
|
-
|
|
48195
|
-
|
|
48196
|
-
|
|
48197
|
-
|
|
48198
|
-
|
|
48199
|
-
|
|
48200
|
-
|
|
48364
|
+
|
|
48365
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
48366
|
+
.rb-lg-flex {
|
|
48367
|
+
display: flex;
|
|
48368
|
+
}
|
|
48369
|
+
.rb-lg-block {
|
|
48370
|
+
display: block;
|
|
48371
|
+
}
|
|
48372
|
+
.rb-lg-inline {
|
|
48373
|
+
display: inline;
|
|
48374
|
+
}
|
|
48375
|
+
.rb-lg-inline-block {
|
|
48376
|
+
display: inline-block;
|
|
48377
|
+
}
|
|
48378
|
+
.rb-lg-inline-flex {
|
|
48379
|
+
display: inline-flex;
|
|
48380
|
+
}
|
|
48381
|
+
.rb-lg-grid {
|
|
48382
|
+
display: grid;
|
|
48383
|
+
}
|
|
48384
|
+
.rb-lg-hidden {
|
|
48385
|
+
display: none;
|
|
48386
|
+
}
|
|
48201
48387
|
}
|
|
48202
|
-
|
|
48388
|
+
|
|
48389
|
+
}
|
|
48203
48390
|
|
|
48204
48391
|
/* Margin */
|
|
48205
48392
|
.rb-m-0 {
|
|
@@ -48456,8 +48643,9 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
48456
48643
|
font-weight: 700;
|
|
48457
48644
|
}
|
|
48458
48645
|
.rb-font-mono {
|
|
48459
|
-
font-family:
|
|
48460
|
-
|
|
48646
|
+
font-family:
|
|
48647
|
+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
48648
|
+
"Courier New", monospace;
|
|
48461
48649
|
}
|
|
48462
48650
|
.rb-leading-relaxed {
|
|
48463
48651
|
line-height: 1.625;
|
|
@@ -48675,39 +48863,44 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
48675
48863
|
}
|
|
48676
48864
|
|
|
48677
48865
|
@container rb-site (max-width: 639px) {
|
|
48678
|
-
.rb-image-gallery-marquee {
|
|
48679
|
-
overflow-x: auto;
|
|
48680
|
-
overflow-y: hidden;
|
|
48681
|
-
-webkit-overflow-scrolling: touch;
|
|
48682
|
-
touch-action: pan-x;
|
|
48683
|
-
scrollbar-width: none;
|
|
48684
|
-
}
|
|
48685
48866
|
|
|
48686
|
-
|
|
48687
|
-
|
|
48688
|
-
|
|
48867
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
48868
|
+
.rb-image-gallery-marquee {
|
|
48869
|
+
overflow-x: auto;
|
|
48870
|
+
overflow-y: hidden;
|
|
48871
|
+
-webkit-overflow-scrolling: touch;
|
|
48872
|
+
touch-action: pan-x;
|
|
48873
|
+
scrollbar-width: none;
|
|
48874
|
+
}
|
|
48689
48875
|
|
|
48690
|
-
|
|
48691
|
-
|
|
48692
|
-
|
|
48693
|
-
animation-play-state: paused;
|
|
48694
|
-
}
|
|
48876
|
+
.rb-image-gallery-marquee::-webkit-scrollbar {
|
|
48877
|
+
display: none;
|
|
48878
|
+
}
|
|
48695
48879
|
|
|
48696
|
-
|
|
48697
|
-
|
|
48698
|
-
|
|
48699
|
-
|
|
48880
|
+
/* Let users swipe smoothly without fighting autoplay while interacting. */
|
|
48881
|
+
.rb-image-gallery-marquee:active .rb-animate-marquee,
|
|
48882
|
+
.rb-image-gallery-marquee:focus-within .rb-animate-marquee {
|
|
48883
|
+
animation-play-state: paused;
|
|
48884
|
+
}
|
|
48700
48885
|
|
|
48701
|
-
|
|
48702
|
-
|
|
48703
|
-
|
|
48704
|
-
|
|
48705
|
-
}
|
|
48886
|
+
.rb-container-full.rb-image-gallery-marquee-container {
|
|
48887
|
+
padding-left: 0;
|
|
48888
|
+
padding-right: 0;
|
|
48889
|
+
}
|
|
48706
48890
|
|
|
48707
|
-
|
|
48708
|
-
filter
|
|
48891
|
+
/* Marquee variant: keep images in color on mobile for legibility. */
|
|
48892
|
+
.rb-image-gallery-marquee-container .rb-filter-grayscale,
|
|
48893
|
+
.rb-image-gallery-marquee-container .rb-filter-grayscale-hover-reveal {
|
|
48894
|
+
filter: none;
|
|
48895
|
+
}
|
|
48896
|
+
|
|
48897
|
+
.rb-image-gallery-marquee-container
|
|
48898
|
+
.rb-filter-grayscale-hover-reveal:hover {
|
|
48899
|
+
filter: none;
|
|
48900
|
+
}
|
|
48709
48901
|
}
|
|
48710
|
-
|
|
48902
|
+
|
|
48903
|
+
}
|
|
48711
48904
|
|
|
48712
48905
|
@media (prefers-reduced-motion: reduce) {
|
|
48713
48906
|
.rb-animate-marquee {
|
|
@@ -48812,12 +49005,16 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
48812
49005
|
}
|
|
48813
49006
|
|
|
48814
49007
|
@container rb-site (min-width: 640px) {
|
|
48815
|
-
|
|
48816
|
-
|
|
48817
|
-
|
|
48818
|
-
|
|
49008
|
+
|
|
49009
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
49010
|
+
.rb-container,
|
|
49011
|
+
.rb-container-full {
|
|
49012
|
+
padding-left: 1.5rem;
|
|
49013
|
+
padding-right: 1.5rem;
|
|
49014
|
+
}
|
|
48819
49015
|
}
|
|
48820
|
-
|
|
49016
|
+
|
|
49017
|
+
}
|
|
48821
49018
|
|
|
48822
49019
|
/* Flex alignment */
|
|
48823
49020
|
.rb-self-start {
|
|
@@ -48851,27 +49048,31 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
48851
49048
|
}
|
|
48852
49049
|
|
|
48853
49050
|
@container rb-site (min-width: 640px) {
|
|
48854
|
-
|
|
48855
|
-
|
|
48856
|
-
|
|
48857
|
-
|
|
48858
|
-
|
|
48859
|
-
|
|
48860
|
-
|
|
48861
|
-
|
|
48862
|
-
|
|
48863
|
-
|
|
48864
|
-
|
|
48865
|
-
|
|
48866
|
-
|
|
48867
|
-
|
|
48868
|
-
|
|
48869
|
-
|
|
48870
|
-
|
|
48871
|
-
|
|
48872
|
-
|
|
49051
|
+
|
|
49052
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
49053
|
+
.rb-section-pad-compact {
|
|
49054
|
+
padding-top: 2rem;
|
|
49055
|
+
padding-bottom: 2rem;
|
|
49056
|
+
}
|
|
49057
|
+
.rb-section-pad-cozy {
|
|
49058
|
+
padding-top: 3.5rem;
|
|
49059
|
+
padding-bottom: 3.5rem;
|
|
49060
|
+
}
|
|
49061
|
+
.rb-section-pad-medium {
|
|
49062
|
+
padding-top: 4rem;
|
|
49063
|
+
padding-bottom: 4rem;
|
|
49064
|
+
}
|
|
49065
|
+
.rb-section-pad-comfortable {
|
|
49066
|
+
padding-top: 5rem;
|
|
49067
|
+
padding-bottom: 5rem;
|
|
49068
|
+
}
|
|
49069
|
+
.rb-section-pad-spacious {
|
|
49070
|
+
padding-top: 7rem;
|
|
49071
|
+
padding-bottom: 7rem;
|
|
49072
|
+
}
|
|
48873
49073
|
}
|
|
48874
|
-
|
|
49074
|
+
|
|
49075
|
+
}
|
|
48875
49076
|
|
|
48876
49077
|
.rb-container-pad-none {
|
|
48877
49078
|
padding: 0;
|
|
@@ -48893,22 +49094,26 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
48893
49094
|
}
|
|
48894
49095
|
|
|
48895
49096
|
@container rb-site (min-width: 640px) {
|
|
48896
|
-
|
|
48897
|
-
|
|
48898
|
-
|
|
48899
|
-
|
|
48900
|
-
|
|
48901
|
-
|
|
48902
|
-
|
|
48903
|
-
|
|
48904
|
-
|
|
48905
|
-
|
|
48906
|
-
|
|
48907
|
-
|
|
48908
|
-
|
|
48909
|
-
|
|
49097
|
+
|
|
49098
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
49099
|
+
.rb-container-pad-compact {
|
|
49100
|
+
padding: 1.5rem;
|
|
49101
|
+
}
|
|
49102
|
+
.rb-container-pad-cozy {
|
|
49103
|
+
padding: 2rem;
|
|
49104
|
+
}
|
|
49105
|
+
.rb-container-pad-medium {
|
|
49106
|
+
padding: 2rem;
|
|
49107
|
+
}
|
|
49108
|
+
.rb-container-pad-comfortable {
|
|
49109
|
+
padding: 2.5rem;
|
|
49110
|
+
}
|
|
49111
|
+
.rb-container-pad-spacious {
|
|
49112
|
+
padding: 3.5rem;
|
|
49113
|
+
}
|
|
48910
49114
|
}
|
|
48911
|
-
|
|
49115
|
+
|
|
49116
|
+
}
|
|
48912
49117
|
|
|
48913
49118
|
/* Semantic gap tokens (theme-aware via --space-mult) */
|
|
48914
49119
|
.rb-gap-semantic-none {
|
|
@@ -48937,27 +49142,31 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
48937
49142
|
}
|
|
48938
49143
|
|
|
48939
49144
|
@container rb-site (min-width: 768px) {
|
|
48940
|
-
|
|
48941
|
-
|
|
48942
|
-
|
|
48943
|
-
|
|
48944
|
-
|
|
48945
|
-
|
|
48946
|
-
|
|
48947
|
-
|
|
48948
|
-
|
|
48949
|
-
|
|
48950
|
-
|
|
48951
|
-
|
|
48952
|
-
|
|
48953
|
-
|
|
48954
|
-
|
|
48955
|
-
|
|
48956
|
-
|
|
48957
|
-
|
|
48958
|
-
|
|
49145
|
+
|
|
49146
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
49147
|
+
.rb-gap-semantic-compact {
|
|
49148
|
+
--rb-semantic-gap: calc(1.25rem * var(--space-mult, 1));
|
|
49149
|
+
gap: calc(1.25rem * var(--space-mult, 1));
|
|
49150
|
+
}
|
|
49151
|
+
.rb-gap-semantic-cozy {
|
|
49152
|
+
--rb-semantic-gap: calc(2.25rem * var(--space-mult, 1));
|
|
49153
|
+
gap: calc(2.25rem * var(--space-mult, 1));
|
|
49154
|
+
}
|
|
49155
|
+
.rb-gap-semantic-medium {
|
|
49156
|
+
--rb-semantic-gap: calc(3.5rem * var(--space-mult, 1));
|
|
49157
|
+
gap: calc(3.5rem * var(--space-mult, 1));
|
|
49158
|
+
}
|
|
49159
|
+
.rb-gap-semantic-comfortable {
|
|
49160
|
+
--rb-semantic-gap: calc(5.75rem * var(--space-mult, 1));
|
|
49161
|
+
gap: calc(5.75rem * var(--space-mult, 1));
|
|
49162
|
+
}
|
|
49163
|
+
.rb-gap-semantic-spacious {
|
|
49164
|
+
--rb-semantic-gap: calc(8.75rem * var(--space-mult, 1));
|
|
49165
|
+
gap: calc(8.75rem * var(--space-mult, 1));
|
|
49166
|
+
}
|
|
48959
49167
|
}
|
|
48960
|
-
|
|
49168
|
+
|
|
49169
|
+
}
|
|
48961
49170
|
|
|
48962
49171
|
/* Backdrop blur helpers */
|
|
48963
49172
|
.rb-backdrop-blur {
|
|
@@ -49311,11 +49520,13 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
49311
49520
|
line-height: var(--rb-prose-lg-line-height);
|
|
49312
49521
|
}
|
|
49313
49522
|
@container rb-site (min-width: 640px) {
|
|
49314
|
-
|
|
49523
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
49524
|
+
:where(.theme-scope) .rb-prose-xl-sm {
|
|
49315
49525
|
font-size: var(--rb-prose-xl-sm-font-size);
|
|
49316
49526
|
line-height: var(--rb-prose-xl-sm-line-height);
|
|
49317
49527
|
}
|
|
49318
49528
|
}
|
|
49529
|
+
}
|
|
49319
49530
|
|
|
49320
49531
|
/* Neutral prose uses theme text color by default */
|
|
49321
49532
|
:where(.theme-scope) .rb-prose-neutral {
|
|
@@ -49399,22 +49610,28 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
49399
49610
|
}
|
|
49400
49611
|
|
|
49401
49612
|
@container rb-site (min-width: 768px) {
|
|
49402
|
-
|
|
49613
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
49614
|
+
:where(.theme-scope) .rb-columns-equal-height {
|
|
49403
49615
|
--rb-columns-cols: var(--rb-columns-cols-md, var(--rb-columns-cols));
|
|
49404
49616
|
}
|
|
49405
49617
|
}
|
|
49618
|
+
}
|
|
49406
49619
|
|
|
49407
49620
|
@container rb-site (min-width: 1024px) {
|
|
49408
|
-
|
|
49621
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
49622
|
+
:where(.theme-scope) .rb-columns-equal-height {
|
|
49409
49623
|
--rb-columns-cols: var(--rb-columns-cols-lg, var(--rb-columns-cols));
|
|
49410
49624
|
}
|
|
49411
49625
|
}
|
|
49626
|
+
}
|
|
49412
49627
|
|
|
49413
49628
|
@container rb-site (min-width: 1280px) {
|
|
49414
|
-
|
|
49629
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
49630
|
+
:where(.theme-scope) .rb-columns-equal-height {
|
|
49415
49631
|
--rb-columns-cols: var(--rb-columns-cols-xl, var(--rb-columns-cols));
|
|
49416
49632
|
}
|
|
49417
49633
|
}
|
|
49634
|
+
}
|
|
49418
49635
|
|
|
49419
49636
|
:where(.theme-scope) .rb-columns-equal-height > * {
|
|
49420
49637
|
height: var(--rb-columns-tile-h);
|
|
@@ -50036,7 +50253,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
50036
50253
|
|
|
50037
50254
|
/* Mobile: reduce site title size (~30%) to keep header compact */
|
|
50038
50255
|
@container rb-site (max-width: 767px) {
|
|
50039
|
-
|
|
50256
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
50257
|
+
:where(.theme-scope) .header-logo-text {
|
|
50040
50258
|
font-size: 0.8rem;
|
|
50041
50259
|
line-height: 1.25rem;
|
|
50042
50260
|
}
|
|
@@ -50047,6 +50265,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
50047
50265
|
line-height: 1.25rem;
|
|
50048
50266
|
}
|
|
50049
50267
|
}
|
|
50268
|
+
}
|
|
50050
50269
|
|
|
50051
50270
|
/* Centered/editorial variants use larger title */
|
|
50052
50271
|
:where(.theme-scope) .header-variant-centered .header-logo-text,
|
|
@@ -50070,10 +50289,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
50070
50289
|
}
|
|
50071
50290
|
|
|
50072
50291
|
@container rb-site (max-width: 767px) {
|
|
50073
|
-
|
|
50292
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
50293
|
+
:where(.theme-scope) .rb-header-shrink.header-scrolled .header-logo-text {
|
|
50074
50294
|
font-size: 0.75rem;
|
|
50075
50295
|
}
|
|
50076
50296
|
}
|
|
50297
|
+
}
|
|
50077
50298
|
|
|
50078
50299
|
/* =================================================================
|
|
50079
50300
|
Accessibility: Reduced Motion
|
|
@@ -50517,10 +50738,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
50517
50738
|
}
|
|
50518
50739
|
|
|
50519
50740
|
@container rb-site (min-width: 768px) {
|
|
50520
|
-
|
|
50741
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
50742
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-event-grid {
|
|
50521
50743
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
50522
50744
|
}
|
|
50523
50745
|
}
|
|
50746
|
+
}
|
|
50524
50747
|
|
|
50525
50748
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-row {
|
|
50526
50749
|
display: flex;
|
|
@@ -50753,12 +50976,14 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
50753
50976
|
}
|
|
50754
50977
|
|
|
50755
50978
|
@container rb-site (min-width: 768px) {
|
|
50756
|
-
|
|
50979
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
50980
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-layout {
|
|
50757
50981
|
/* Desktop: main + sidebar */
|
|
50758
50982
|
grid-template-columns: 1fr 300px;
|
|
50759
50983
|
grid-template-areas: "main summary";
|
|
50760
50984
|
}
|
|
50761
50985
|
}
|
|
50986
|
+
}
|
|
50762
50987
|
|
|
50763
50988
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-layout-main {
|
|
50764
50989
|
grid-area: main;
|
|
@@ -50840,10 +51065,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
50840
51065
|
}
|
|
50841
51066
|
|
|
50842
51067
|
@container rb-site (min-width: 640px) {
|
|
50843
|
-
|
|
51068
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
51069
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-step-label {
|
|
50844
51070
|
display: inline;
|
|
50845
51071
|
}
|
|
50846
51072
|
}
|
|
51073
|
+
}
|
|
50847
51074
|
|
|
50848
51075
|
/* Sticky order summary */
|
|
50849
51076
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-summary {
|
|
@@ -50860,11 +51087,13 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
50860
51087
|
}
|
|
50861
51088
|
|
|
50862
51089
|
@container rb-site (min-width: 768px) {
|
|
50863
|
-
|
|
51090
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
51091
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-summary {
|
|
50864
51092
|
position: sticky;
|
|
50865
51093
|
top: 1rem;
|
|
50866
51094
|
}
|
|
50867
51095
|
}
|
|
51096
|
+
}
|
|
50868
51097
|
|
|
50869
51098
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-summary-event {
|
|
50870
51099
|
font-weight: 600;
|
|
@@ -50934,12 +51163,14 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
50934
51163
|
}
|
|
50935
51164
|
|
|
50936
51165
|
@container rb-site (min-width: 768px) {
|
|
50937
|
-
|
|
51166
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
51167
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-guest-card {
|
|
50938
51168
|
grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
|
|
50939
51169
|
column-gap: 1rem;
|
|
50940
51170
|
align-items: start;
|
|
50941
51171
|
}
|
|
50942
51172
|
}
|
|
51173
|
+
}
|
|
50943
51174
|
|
|
50944
51175
|
/* Shake animation for validation errors */
|
|
50945
51176
|
@keyframes er-shake {
|
|
@@ -51084,7 +51315,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
51084
51315
|
* ============================================================================= */
|
|
51085
51316
|
|
|
51086
51317
|
@container rb-site (min-width: 768px) {
|
|
51087
|
-
|
|
51318
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
51319
|
+
:where(.theme-scope)
|
|
51088
51320
|
:where([data-block="event-listing"], [data-block="event-spotlight"], [data-block="event-calendar"], [data-block="event-combined"])
|
|
51089
51321
|
.event-card[data-orientation="horizontal"] {
|
|
51090
51322
|
display: flex;
|
|
@@ -51135,6 +51367,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
51135
51367
|
text-align: right;
|
|
51136
51368
|
}
|
|
51137
51369
|
}
|
|
51370
|
+
}
|
|
51138
51371
|
|
|
51139
51372
|
/* Keep token list in sync with \`EVENT_CATEGORY_BADGE_TOKENS\` in \`packages/blocks/src/system/constants/events.ts\`. */
|
|
51140
51373
|
:where(.theme-scope)
|
|
@@ -51214,7 +51447,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
51214
51447
|
}
|
|
51215
51448
|
|
|
51216
51449
|
@container rb-site (min-width: 768px) {
|
|
51217
|
-
|
|
51450
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
51451
|
+
:where(.theme-scope) :where([data-block="event-registration"]) .er-payment-layout {
|
|
51218
51452
|
grid-template-columns: 1fr 260px;
|
|
51219
51453
|
grid-template-areas:
|
|
51220
51454
|
"main sidebar"
|
|
@@ -51229,6 +51463,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
51229
51463
|
"footer";
|
|
51230
51464
|
}
|
|
51231
51465
|
}
|
|
51466
|
+
}
|
|
51232
51467
|
|
|
51233
51468
|
:where(.theme-scope) :where([data-block="event-registration"]) .er-payment-layout-main {
|
|
51234
51469
|
grid-area: main;
|
|
@@ -52508,7 +52743,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
52508
52743
|
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-time,
|
|
52509
52744
|
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-title,
|
|
52510
52745
|
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-teacher,
|
|
52511
|
-
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-meta
|
|
52746
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-meta,
|
|
52747
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-capacity {
|
|
52512
52748
|
display: block;
|
|
52513
52749
|
min-width: 0;
|
|
52514
52750
|
overflow: hidden;
|
|
@@ -52534,6 +52770,17 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
52534
52770
|
opacity: 0.72;
|
|
52535
52771
|
}
|
|
52536
52772
|
|
|
52773
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-capacity {
|
|
52774
|
+
font-size: 0.6875rem;
|
|
52775
|
+
font-weight: 600;
|
|
52776
|
+
opacity: 0.85;
|
|
52777
|
+
}
|
|
52778
|
+
|
|
52779
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-event-capacity--full {
|
|
52780
|
+
color: rgb(var(--tb-danger, 220 38 38));
|
|
52781
|
+
opacity: 1;
|
|
52782
|
+
}
|
|
52783
|
+
|
|
52537
52784
|
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-day-empty {
|
|
52538
52785
|
margin: 0;
|
|
52539
52786
|
padding: 1rem 0.5rem;
|
|
@@ -52550,7 +52797,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
52550
52797
|
}
|
|
52551
52798
|
|
|
52552
52799
|
@container rb-site (max-width: 767px) {
|
|
52553
|
-
|
|
52800
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
52801
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-timetable-day-selector {
|
|
52554
52802
|
display: flex;
|
|
52555
52803
|
}
|
|
52556
52804
|
|
|
@@ -52580,6 +52828,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
52580
52828
|
padding-inline: 0.75rem;
|
|
52581
52829
|
}
|
|
52582
52830
|
}
|
|
52831
|
+
}
|
|
52583
52832
|
|
|
52584
52833
|
/* -----------------------------------------------------------------------------
|
|
52585
52834
|
* Event Calendar Modals
|
|
@@ -52718,7 +52967,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
52718
52967
|
|
|
52719
52968
|
/* Responsive adjustments */
|
|
52720
52969
|
@container rb-site (max-width: 640px) {
|
|
52721
|
-
|
|
52970
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
52971
|
+
:where(.theme-scope) :where([data-block="event-calendar"]) .event-calendar-container {
|
|
52722
52972
|
margin-left: -1.5rem;
|
|
52723
52973
|
margin-right: -1.5rem;
|
|
52724
52974
|
border-left: none;
|
|
@@ -52779,6 +53029,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
52779
53029
|
margin: 0 0.5rem;
|
|
52780
53030
|
}
|
|
52781
53031
|
}
|
|
53032
|
+
}
|
|
52782
53033
|
|
|
52783
53034
|
/*
|
|
52784
53035
|
* Shared: Tab bar (underline style)
|
|
@@ -53141,10 +53392,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
53141
53392
|
}
|
|
53142
53393
|
|
|
53143
53394
|
@container rb-site (min-width: 768px) {
|
|
53144
|
-
|
|
53395
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
53396
|
+
:where(.theme-scope) :where([data-block="form"]) .fb-row-2 {
|
|
53145
53397
|
grid-template-columns: 1fr 1fr;
|
|
53146
53398
|
}
|
|
53147
53399
|
}
|
|
53400
|
+
}
|
|
53148
53401
|
|
|
53149
53402
|
/* Field wrapper */
|
|
53150
53403
|
:where(.theme-scope) :where([data-block="form"]) .fb-field {
|
|
@@ -53225,10 +53478,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
53225
53478
|
}
|
|
53226
53479
|
|
|
53227
53480
|
@container rb-site (min-width: 640px) {
|
|
53228
|
-
|
|
53481
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
53482
|
+
:where(.theme-scope) :where([data-block="hero"]) .hero-subheadline {
|
|
53229
53483
|
font-size: 1.25rem;
|
|
53230
53484
|
}
|
|
53231
53485
|
}
|
|
53486
|
+
}
|
|
53232
53487
|
|
|
53233
53488
|
/* =============================================================================
|
|
53234
53489
|
* Shared: Heading Group (used by CTA, single-button, etc.)
|
|
@@ -53442,16 +53697,19 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
53442
53697
|
}
|
|
53443
53698
|
|
|
53444
53699
|
@container rb-site (min-width: 768px) {
|
|
53445
|
-
|
|
53700
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
53701
|
+
:where(.theme-scope) .carousel-root {
|
|
53446
53702
|
--rb-carousel-slides-to-show: var(
|
|
53447
53703
|
--rb-carousel-slides-to-show-tablet,
|
|
53448
53704
|
var(--rb-carousel-slides-to-show-mobile, 1)
|
|
53449
53705
|
);
|
|
53450
53706
|
}
|
|
53451
53707
|
}
|
|
53708
|
+
}
|
|
53452
53709
|
|
|
53453
53710
|
@container rb-site (min-width: 1024px) {
|
|
53454
|
-
|
|
53711
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
53712
|
+
:where(.theme-scope) .carousel-root {
|
|
53455
53713
|
--rb-carousel-slides-to-show: var(
|
|
53456
53714
|
--rb-carousel-slides-to-show-desktop,
|
|
53457
53715
|
var(
|
|
@@ -53461,6 +53719,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
53461
53719
|
);
|
|
53462
53720
|
}
|
|
53463
53721
|
}
|
|
53722
|
+
}
|
|
53464
53723
|
|
|
53465
53724
|
/* Slides take exact percentage width with internal padding for gaps.
|
|
53466
53725
|
* Padding is more reliable than margin (no collapsing, consistent on all slides). */
|
|
@@ -53734,10 +53993,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
53734
53993
|
|
|
53735
53994
|
/* Responsive grid */
|
|
53736
53995
|
@container rb-site (max-width: 768px) {
|
|
53737
|
-
|
|
53996
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
53997
|
+
:where(.theme-scope) .shop__products--grid {
|
|
53738
53998
|
grid-template-columns: 1fr;
|
|
53739
53999
|
}
|
|
53740
54000
|
}
|
|
54001
|
+
}
|
|
53741
54002
|
|
|
53742
54003
|
:where(.theme-scope) .shop__modal-product {
|
|
53743
54004
|
font-size: 0.9375rem;
|
|
@@ -53839,11 +54100,13 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
53839
54100
|
|
|
53840
54101
|
/* Mobile: full-width CTA buttons inside cards */
|
|
53841
54102
|
@container rb-site (max-width: 640px) {
|
|
53842
|
-
|
|
54103
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
54104
|
+
:where(.theme-scope) .shop__cta {
|
|
53843
54105
|
align-self: stretch;
|
|
53844
54106
|
width: 100%;
|
|
53845
54107
|
}
|
|
53846
54108
|
}
|
|
54109
|
+
}
|
|
53847
54110
|
|
|
53848
54111
|
/* =============================================================================
|
|
53849
54112
|
* Block: Customer Portal
|
|
@@ -54549,7 +54812,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
54549
54812
|
|
|
54550
54813
|
/* Responsive: show everything without horizontal scrolling */
|
|
54551
54814
|
@container rb-site (max-width: 640px) {
|
|
54552
|
-
|
|
54815
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
54816
|
+
:where(.theme-scope) :where([data-block="customer-portal"]) .cp-only-mobile {
|
|
54553
54817
|
display: flex;
|
|
54554
54818
|
}
|
|
54555
54819
|
|
|
@@ -54589,6 +54853,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
54589
54853
|
align-self: stretch;
|
|
54590
54854
|
}
|
|
54591
54855
|
}
|
|
54856
|
+
}
|
|
54592
54857
|
|
|
54593
54858
|
/* Placeholder (SSR) */
|
|
54594
54859
|
:where(.theme-scope) :where([data-block="customer-portal"]) .cp-placeholder {
|
|
@@ -54678,7 +54943,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
54678
54943
|
|
|
54679
54944
|
/* Position arrows outside the carousel content area */
|
|
54680
54945
|
@container rb-site (max-width: 639px) {
|
|
54681
|
-
|
|
54946
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
54947
|
+
:where(.theme-scope) :where([data-block="testimonials"]) .rb-testimonials-carousel.carousel-root .carousel-nav-btn--prev {
|
|
54682
54948
|
/* Move arrows closer to viewport edge than container edge on mobile. */
|
|
54683
54949
|
left: calc(0.5rem - 1.5rem);
|
|
54684
54950
|
}
|
|
@@ -54688,10 +54954,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
54688
54954
|
right: calc(0.5rem - 1.5rem);
|
|
54689
54955
|
}
|
|
54690
54956
|
}
|
|
54957
|
+
}
|
|
54691
54958
|
|
|
54692
54959
|
/* Position arrows further out on larger breakpoints */
|
|
54693
54960
|
@container rb-site (min-width: 640px) {
|
|
54694
|
-
|
|
54961
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
54962
|
+
:where(.theme-scope) :where([data-block="testimonials"]) .rb-testimonials-carousel.carousel-root .carousel-nav-btn--prev {
|
|
54695
54963
|
left: calc(-1 * (var(--rb-testimonial-carousel-arrow-size) / 2 + var(--rb-testimonial-carousel-arrow-gap)));
|
|
54696
54964
|
}
|
|
54697
54965
|
|
|
@@ -54699,6 +54967,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
54699
54967
|
right: calc(-1 * (var(--rb-testimonial-carousel-arrow-size) / 2 + var(--rb-testimonial-carousel-arrow-gap)));
|
|
54700
54968
|
}
|
|
54701
54969
|
}
|
|
54970
|
+
}
|
|
54702
54971
|
|
|
54703
54972
|
/*
|
|
54704
54973
|
* Event Details (runtime node)
|
|
@@ -54750,10 +55019,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
54750
55019
|
}
|
|
54751
55020
|
|
|
54752
55021
|
@container rb-site (min-width: 768px) {
|
|
54753
|
-
|
|
55022
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
55023
|
+
:where(.theme-scope) .rb-tiles-grid {
|
|
54754
55024
|
grid-template-columns: repeat(var(--rb-tiles-grid-cols-md, var(--rb-tiles-grid-cols-sm, 2)), minmax(0, 1fr));
|
|
54755
55025
|
}
|
|
54756
55026
|
}
|
|
55027
|
+
}
|
|
54757
55028
|
|
|
54758
55029
|
:where(.theme-scope) :where(.rb-tile--interactive, .er-event-card) {
|
|
54759
55030
|
cursor: pointer;
|
|
@@ -54858,10 +55129,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
54858
55129
|
}
|
|
54859
55130
|
|
|
54860
55131
|
@container rb-site (min-width: 768px) {
|
|
54861
|
-
|
|
55132
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
55133
|
+
:where(.theme-scope) :where([data-block="course-registration"]) .cr-layout--with-sidebar {
|
|
54862
55134
|
grid-template-columns: 1fr 280px;
|
|
54863
55135
|
}
|
|
54864
55136
|
}
|
|
55137
|
+
}
|
|
54865
55138
|
|
|
54866
55139
|
:where(.theme-scope) :where([data-block="course-registration"]) .cr-layout__main {
|
|
54867
55140
|
min-width: 0;
|
|
@@ -54872,10 +55145,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
54872
55145
|
}
|
|
54873
55146
|
|
|
54874
55147
|
@container rb-site (min-width: 768px) {
|
|
54875
|
-
|
|
55148
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
55149
|
+
:where(.theme-scope) :where([data-block="course-registration"]) .cr-layout__sidebar {
|
|
54876
55150
|
display: block;
|
|
54877
55151
|
}
|
|
54878
55152
|
}
|
|
55153
|
+
}
|
|
54879
55154
|
|
|
54880
55155
|
/* =============================================================================
|
|
54881
55156
|
* Step Indicator
|
|
@@ -54926,10 +55201,12 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
54926
55201
|
}
|
|
54927
55202
|
|
|
54928
55203
|
@container rb-site (min-width: 640px) {
|
|
54929
|
-
|
|
55204
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
55205
|
+
:where(.theme-scope) :where([data-block="course-registration"]) .cr-step-label {
|
|
54930
55206
|
display: block;
|
|
54931
55207
|
}
|
|
54932
55208
|
}
|
|
55209
|
+
}
|
|
54933
55210
|
|
|
54934
55211
|
:where(.theme-scope) :where([data-block="course-registration"]) .cr-step-label--active {
|
|
54935
55212
|
color: var(--cr-on-surface);
|
|
@@ -55812,7 +56089,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
55812
56089
|
|
|
55813
56090
|
/* Mobile fallback for inline variant */
|
|
55814
56091
|
@container rb-site (max-width: 640px) {
|
|
55815
|
-
|
|
56092
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
56093
|
+
:where(.theme-scope) .newsletter-inline .newsletter-form-fields {
|
|
55816
56094
|
flex-direction: column;
|
|
55817
56095
|
}
|
|
55818
56096
|
|
|
@@ -55820,6 +56098,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
55820
56098
|
min-width: 100%;
|
|
55821
56099
|
}
|
|
55822
56100
|
}
|
|
56101
|
+
}
|
|
55823
56102
|
|
|
55824
56103
|
/* =============================================================================
|
|
55825
56104
|
* Success State
|
|
@@ -55857,12 +56136,14 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
55857
56136
|
}
|
|
55858
56137
|
|
|
55859
56138
|
@container rb-site (min-width: 1024px) {
|
|
55860
|
-
|
|
56139
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
56140
|
+
:where(.theme-scope) :where([data-block="team-members"]) :where(.rb-team-members[data-layout-width="lg-3-4-left"]) {
|
|
55861
56141
|
width: 75%;
|
|
55862
56142
|
margin-left: 0;
|
|
55863
56143
|
margin-right: auto;
|
|
55864
56144
|
}
|
|
55865
56145
|
}
|
|
56146
|
+
}
|
|
55866
56147
|
|
|
55867
56148
|
:where(.theme-scope) :where([data-block="team-members"]) .rb-team-member-photo {
|
|
55868
56149
|
display: block;
|
|
@@ -55937,7 +56218,8 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
55937
56218
|
}
|
|
55938
56219
|
|
|
55939
56220
|
@container rb-site (min-width: 768px) {
|
|
55940
|
-
|
|
56221
|
+
@scope ([data-rb-responsive-mode="container"]) to (:scope [data-rb-responsive-mode]) {
|
|
56222
|
+
/* Stack variant: enforce real column ratio at md+ (fixes transform/fallback pitfalls). */
|
|
55941
56223
|
:where(.theme-scope) :where([data-block="team-members"][data-block-variant="stack"]) :where(.rb-team-member-photo-col) {
|
|
55942
56224
|
flex: 0 0 var(--rb-team-image-basis);
|
|
55943
56225
|
}
|
|
@@ -55961,6 +56243,7 @@ var init_containerResponsiveThemeCss = __esm({
|
|
|
55961
56243
|
flex-direction: row-reverse;
|
|
55962
56244
|
}
|
|
55963
56245
|
}
|
|
56246
|
+
}
|
|
55964
56247
|
|
|
55965
56248
|
/* Thumbnail padding (space around image inside the item) */
|
|
55966
56249
|
:where(.theme-scope) :where([data-block="team-members"]) .rb-team-members[data-thumb-pad="sm"] .rb-team-member-photo-wrap {
|
|
@@ -56165,18 +56448,19 @@ function ThemeScopeCore({
|
|
|
56165
56448
|
children,
|
|
56166
56449
|
className
|
|
56167
56450
|
}) {
|
|
56168
|
-
const
|
|
56451
|
+
const responsiveScope = getResponsiveScopeSpec(responsiveMode);
|
|
56452
|
+
const isContainerResponsive = responsiveScope.kind === "container";
|
|
56169
56453
|
const wrapperStyle = isContainerResponsive ? {
|
|
56170
56454
|
...cssVars,
|
|
56171
56455
|
containerType: "inline-size",
|
|
56172
|
-
containerName:
|
|
56456
|
+
containerName: responsiveScope.containerName
|
|
56173
56457
|
} : cssVars;
|
|
56174
56458
|
return /* @__PURE__ */ jsxs100(
|
|
56175
56459
|
"div",
|
|
56176
56460
|
{
|
|
56177
56461
|
className: className ? `theme-scope ${className}` : "theme-scope",
|
|
56178
56462
|
style: wrapperStyle,
|
|
56179
|
-
"data-rb-responsive-mode":
|
|
56463
|
+
"data-rb-responsive-mode": responsiveScope.kind,
|
|
56180
56464
|
...dataAttrs,
|
|
56181
56465
|
suppressHydrationWarning,
|
|
56182
56466
|
children: [
|
|
@@ -56184,25 +56468,131 @@ function ThemeScopeCore({
|
|
|
56184
56468
|
"style",
|
|
56185
56469
|
{
|
|
56186
56470
|
"data-container-responsive-overrides": true,
|
|
56187
|
-
dangerouslySetInnerHTML: {
|
|
56471
|
+
dangerouslySetInnerHTML: {
|
|
56472
|
+
__html: escapeStyleContent(containerResponsiveThemeCss)
|
|
56473
|
+
}
|
|
56474
|
+
}
|
|
56475
|
+
),
|
|
56476
|
+
layoutCss && /* @__PURE__ */ jsx139(
|
|
56477
|
+
"style",
|
|
56478
|
+
{
|
|
56479
|
+
"data-layout-styles": true,
|
|
56480
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(layoutCss) }
|
|
56481
|
+
}
|
|
56482
|
+
),
|
|
56483
|
+
buttonCss && /* @__PURE__ */ jsx139(
|
|
56484
|
+
"style",
|
|
56485
|
+
{
|
|
56486
|
+
"data-button-effects": true,
|
|
56487
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(buttonCss) }
|
|
56488
|
+
}
|
|
56489
|
+
),
|
|
56490
|
+
headerCss && /* @__PURE__ */ jsx139(
|
|
56491
|
+
"style",
|
|
56492
|
+
{
|
|
56493
|
+
"data-header-styles": true,
|
|
56494
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(headerCss) }
|
|
56495
|
+
}
|
|
56496
|
+
),
|
|
56497
|
+
footerCss && /* @__PURE__ */ jsx139(
|
|
56498
|
+
"style",
|
|
56499
|
+
{
|
|
56500
|
+
"data-footer-styles": true,
|
|
56501
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(footerCss) }
|
|
56502
|
+
}
|
|
56503
|
+
),
|
|
56504
|
+
cardCss && /* @__PURE__ */ jsx139(
|
|
56505
|
+
"style",
|
|
56506
|
+
{
|
|
56507
|
+
"data-card-styles": true,
|
|
56508
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(cardCss) }
|
|
56509
|
+
}
|
|
56510
|
+
),
|
|
56511
|
+
accordionCss && /* @__PURE__ */ jsx139(
|
|
56512
|
+
"style",
|
|
56513
|
+
{
|
|
56514
|
+
"data-accordion-styles": true,
|
|
56515
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(accordionCss) }
|
|
56516
|
+
}
|
|
56517
|
+
),
|
|
56518
|
+
inputCss && /* @__PURE__ */ jsx139(
|
|
56519
|
+
"style",
|
|
56520
|
+
{
|
|
56521
|
+
"data-input-styles": true,
|
|
56522
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(inputCss) }
|
|
56523
|
+
}
|
|
56524
|
+
),
|
|
56525
|
+
statusCss && /* @__PURE__ */ jsx139(
|
|
56526
|
+
"style",
|
|
56527
|
+
{
|
|
56528
|
+
"data-status-styles": true,
|
|
56529
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(statusCss) }
|
|
56530
|
+
}
|
|
56531
|
+
),
|
|
56532
|
+
progressCss && /* @__PURE__ */ jsx139(
|
|
56533
|
+
"style",
|
|
56534
|
+
{
|
|
56535
|
+
"data-progress-styles": true,
|
|
56536
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(progressCss) }
|
|
56537
|
+
}
|
|
56538
|
+
),
|
|
56539
|
+
typographyCss && /* @__PURE__ */ jsx139(
|
|
56540
|
+
"style",
|
|
56541
|
+
{
|
|
56542
|
+
"data-typography-styles": true,
|
|
56543
|
+
dangerouslySetInnerHTML: {
|
|
56544
|
+
__html: escapeStyleContent(typographyCss)
|
|
56545
|
+
}
|
|
56546
|
+
}
|
|
56547
|
+
),
|
|
56548
|
+
eventCalendarCss && /* @__PURE__ */ jsx139(
|
|
56549
|
+
"style",
|
|
56550
|
+
{
|
|
56551
|
+
"data-event-calendar-styles": true,
|
|
56552
|
+
dangerouslySetInnerHTML: {
|
|
56553
|
+
__html: escapeStyleContent(eventCalendarCss)
|
|
56554
|
+
}
|
|
56555
|
+
}
|
|
56556
|
+
),
|
|
56557
|
+
blockVarsCss && /* @__PURE__ */ jsx139(
|
|
56558
|
+
"style",
|
|
56559
|
+
{
|
|
56560
|
+
"data-block-vars-styles": true,
|
|
56561
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(blockVarsCss) }
|
|
56562
|
+
}
|
|
56563
|
+
),
|
|
56564
|
+
blockCustomVarsCss && /* @__PURE__ */ jsx139(
|
|
56565
|
+
"style",
|
|
56566
|
+
{
|
|
56567
|
+
"data-block-custom-vars-styles": true,
|
|
56568
|
+
dangerouslySetInnerHTML: {
|
|
56569
|
+
__html: escapeStyleContent(blockCustomVarsCss)
|
|
56570
|
+
}
|
|
56571
|
+
}
|
|
56572
|
+
),
|
|
56573
|
+
blockCustomCss && /* @__PURE__ */ jsx139(
|
|
56574
|
+
"style",
|
|
56575
|
+
{
|
|
56576
|
+
"data-block-custom-styles": true,
|
|
56577
|
+
dangerouslySetInnerHTML: {
|
|
56578
|
+
__html: escapeStyleContent(blockCustomCss)
|
|
56579
|
+
}
|
|
56580
|
+
}
|
|
56581
|
+
),
|
|
56582
|
+
atRulesCss && /* @__PURE__ */ jsx139(
|
|
56583
|
+
"style",
|
|
56584
|
+
{
|
|
56585
|
+
"data-at-rules-styles": true,
|
|
56586
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(atRulesCss) }
|
|
56587
|
+
}
|
|
56588
|
+
),
|
|
56589
|
+
customCss && /* @__PURE__ */ jsx139(
|
|
56590
|
+
"style",
|
|
56591
|
+
{
|
|
56592
|
+
"data-custom-theme-styles": true,
|
|
56593
|
+
dangerouslySetInnerHTML: { __html: escapeStyleContent(customCss) }
|
|
56188
56594
|
}
|
|
56189
56595
|
),
|
|
56190
|
-
layoutCss && /* @__PURE__ */ jsx139("style", { "data-layout-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(layoutCss) } }),
|
|
56191
|
-
buttonCss && /* @__PURE__ */ jsx139("style", { "data-button-effects": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(buttonCss) } }),
|
|
56192
|
-
headerCss && /* @__PURE__ */ jsx139("style", { "data-header-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(headerCss) } }),
|
|
56193
|
-
footerCss && /* @__PURE__ */ jsx139("style", { "data-footer-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(footerCss) } }),
|
|
56194
|
-
cardCss && /* @__PURE__ */ jsx139("style", { "data-card-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(cardCss) } }),
|
|
56195
|
-
accordionCss && /* @__PURE__ */ jsx139("style", { "data-accordion-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(accordionCss) } }),
|
|
56196
|
-
inputCss && /* @__PURE__ */ jsx139("style", { "data-input-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(inputCss) } }),
|
|
56197
|
-
statusCss && /* @__PURE__ */ jsx139("style", { "data-status-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(statusCss) } }),
|
|
56198
|
-
progressCss && /* @__PURE__ */ jsx139("style", { "data-progress-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(progressCss) } }),
|
|
56199
|
-
typographyCss && /* @__PURE__ */ jsx139("style", { "data-typography-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(typographyCss) } }),
|
|
56200
|
-
eventCalendarCss && /* @__PURE__ */ jsx139("style", { "data-event-calendar-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(eventCalendarCss) } }),
|
|
56201
|
-
blockVarsCss && /* @__PURE__ */ jsx139("style", { "data-block-vars-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(blockVarsCss) } }),
|
|
56202
|
-
blockCustomVarsCss && /* @__PURE__ */ jsx139("style", { "data-block-custom-vars-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(blockCustomVarsCss) } }),
|
|
56203
|
-
blockCustomCss && /* @__PURE__ */ jsx139("style", { "data-block-custom-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(blockCustomCss) } }),
|
|
56204
|
-
atRulesCss && /* @__PURE__ */ jsx139("style", { "data-at-rules-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(atRulesCss) } }),
|
|
56205
|
-
customCss && /* @__PURE__ */ jsx139("style", { "data-custom-theme-styles": true, dangerouslySetInnerHTML: { __html: escapeStyleContent(customCss) } }),
|
|
56206
56596
|
children
|
|
56207
56597
|
]
|
|
56208
56598
|
}
|
|
@@ -58041,7 +58431,7 @@ var ENDPOINT_DEFINITIONS = {
|
|
|
58041
58431
|
responseKind: "void"
|
|
58042
58432
|
},
|
|
58043
58433
|
googleCalendarCallback: {
|
|
58044
|
-
path: "/
|
|
58434
|
+
path: "/bookings/calendar/google/callback",
|
|
58045
58435
|
method: "GET",
|
|
58046
58436
|
auth: "user",
|
|
58047
58437
|
responseKind: "void"
|
|
@@ -68229,6 +68619,7 @@ function bindProp(from, opts) {
|
|
|
68229
68619
|
|
|
68230
68620
|
// ../blocks/src/system/blocks/site-header.ts
|
|
68231
68621
|
init_defineBlock();
|
|
68622
|
+
init_shared2();
|
|
68232
68623
|
init_colorStyles();
|
|
68233
68624
|
var logoRow = link(
|
|
68234
68625
|
{
|
|
@@ -68309,7 +68700,7 @@ var headerCta = ctaButton({
|
|
|
68309
68700
|
whenPath: "menu.ctaItem.label",
|
|
68310
68701
|
variantPath: "menu.ctaItem.variant",
|
|
68311
68702
|
linkPath: "menu.ctaItem.link",
|
|
68312
|
-
className:
|
|
68703
|
+
className: `header-cta btn-sm ${desktopOnlyDisplay("inline-flex")} rb-ml-6`
|
|
68313
68704
|
});
|
|
68314
68705
|
var mobileCta = ctaButton({
|
|
68315
68706
|
basePath: "menu.ctaItem",
|
|
@@ -68337,7 +68728,7 @@ var mobileToggleButton = {
|
|
|
68337
68728
|
props: {
|
|
68338
68729
|
type: "button",
|
|
68339
68730
|
variantId: "",
|
|
68340
|
-
className:
|
|
68731
|
+
className: `nav-mobile-toggle ${mobileOnlyDisplay("inline-flex")} rb-h-10 rb-w-10 rb-items-center rb-justify-center rb-rounded-md transition-theme-standard`,
|
|
68341
68732
|
"aria-label": "Open menu",
|
|
68342
68733
|
"aria-expanded": "false",
|
|
68343
68734
|
"aria-controls": "nav-mobile-overlay",
|
|
@@ -68392,7 +68783,7 @@ var mobileOverlay = {
|
|
|
68392
68783
|
type: "div",
|
|
68393
68784
|
props: {
|
|
68394
68785
|
id: "nav-mobile-overlay",
|
|
68395
|
-
className:
|
|
68786
|
+
className: `nav-mobile-overlay ${mobileOnlyDisplay("block")} rb-fixed rb-inset-0 rb-z-50`,
|
|
68396
68787
|
role: "dialog",
|
|
68397
68788
|
"aria-modal": "true",
|
|
68398
68789
|
"aria-label": "Main menu",
|
|
@@ -68421,10 +68812,10 @@ var mobileHeaderBar = inline(
|
|
|
68421
68812
|
className: bindProp("$root.theme.header.maxWidth", {
|
|
68422
68813
|
transforms: pipe(
|
|
68423
68814
|
tx("layout.maxWidthClass", {
|
|
68424
|
-
base:
|
|
68815
|
+
base: `rb-header-layout ${mobileOnlyDisplay("flex")} rb-w-full rb-items-center rb-justify-between`
|
|
68425
68816
|
})
|
|
68426
68817
|
),
|
|
68427
|
-
fallback:
|
|
68818
|
+
fallback: `rb-container rb-header-layout ${mobileOnlyDisplay("flex")} rb-w-full rb-items-center rb-justify-between`
|
|
68428
68819
|
}),
|
|
68429
68820
|
align: "center",
|
|
68430
68821
|
justify: "between"
|
|
@@ -68436,16 +68827,16 @@ var classicLayout2 = inline(
|
|
|
68436
68827
|
className: bindProp("$root.theme.header.maxWidth", {
|
|
68437
68828
|
transforms: pipe(
|
|
68438
68829
|
tx("layout.maxWidthClass", {
|
|
68439
|
-
base:
|
|
68830
|
+
base: `rb-header-layout ${desktopOnlyDisplay("flex")} rb-w-full rb-items-center rb-gap-6`
|
|
68440
68831
|
})
|
|
68441
68832
|
),
|
|
68442
|
-
fallback:
|
|
68833
|
+
fallback: `rb-container rb-header-layout ${desktopOnlyDisplay("flex")} rb-w-full rb-items-center rb-gap-6`
|
|
68443
68834
|
}),
|
|
68444
68835
|
align: "center"
|
|
68445
68836
|
},
|
|
68446
68837
|
[
|
|
68447
68838
|
logoRow,
|
|
68448
|
-
createNavRow(
|
|
68839
|
+
createNavRow(`rb-ml-auto ${desktopOnlyDisplay("flex")} rb-gap-6`),
|
|
68449
68840
|
headerCta
|
|
68450
68841
|
],
|
|
68451
68842
|
when("$root.theme.header.variant", { equals: "classic" })
|
|
@@ -68457,16 +68848,16 @@ var centeredLayout = stack(
|
|
|
68457
68848
|
className: bindProp("$root.theme.header.maxWidth", {
|
|
68458
68849
|
transforms: pipe(
|
|
68459
68850
|
tx("layout.maxWidthClass", {
|
|
68460
|
-
base:
|
|
68851
|
+
base: `rb-header-layout ${desktopOnlyDisplay("flex")} rb-w-full rb-flex-col rb-items-center rb-gap-5 rb-text-center`
|
|
68461
68852
|
})
|
|
68462
68853
|
),
|
|
68463
|
-
fallback:
|
|
68854
|
+
fallback: `rb-container rb-header-layout ${desktopOnlyDisplay("flex")} rb-w-full rb-flex-col rb-items-center rb-gap-5 rb-text-center`
|
|
68464
68855
|
})
|
|
68465
68856
|
},
|
|
68466
68857
|
[
|
|
68467
68858
|
centeredLogoRow,
|
|
68468
68859
|
createNavRow(
|
|
68469
|
-
"
|
|
68860
|
+
`${desktopOnlyDisplay("flex")} rb-flex-wrap rb-justify-center rb-gap-x-6 rb-gap-y-3`,
|
|
68470
68861
|
"center"
|
|
68471
68862
|
)
|
|
68472
68863
|
],
|
|
@@ -68477,16 +68868,16 @@ var transparentLayout = inline(
|
|
|
68477
68868
|
className: bindProp("$root.theme.header.maxWidth", {
|
|
68478
68869
|
transforms: pipe(
|
|
68479
68870
|
tx("layout.maxWidthClass", {
|
|
68480
|
-
base:
|
|
68871
|
+
base: `rb-header-layout ${desktopOnlyDisplay("flex")} rb-w-full rb-items-center rb-gap-6`
|
|
68481
68872
|
})
|
|
68482
68873
|
),
|
|
68483
|
-
fallback:
|
|
68874
|
+
fallback: `rb-container rb-header-layout ${desktopOnlyDisplay("flex")} rb-w-full rb-items-center rb-gap-6`
|
|
68484
68875
|
}),
|
|
68485
68876
|
align: "center"
|
|
68486
68877
|
},
|
|
68487
68878
|
[
|
|
68488
68879
|
logoRow,
|
|
68489
|
-
createNavRow(
|
|
68880
|
+
createNavRow(`rb-ml-auto ${desktopOnlyDisplay("flex")} rb-gap-6`),
|
|
68490
68881
|
headerCta
|
|
68491
68882
|
],
|
|
68492
68883
|
when("$root.theme.header.variant", { equals: "transparent" })
|
|
@@ -68496,18 +68887,18 @@ var floatingLayout = inline(
|
|
|
68496
68887
|
className: bindProp("$root.theme.header.maxWidth", {
|
|
68497
68888
|
transforms: pipe(
|
|
68498
68889
|
tx("layout.maxWidthClass", {
|
|
68499
|
-
base:
|
|
68890
|
+
base: `rb-header-layout header-floating-container rb-absolute rb-left-1/2 rb-top-4 ${desktopOnlyDisplay("flex")} rb-w-calc-100-minus-2rem rb-max-w-7xl rb-translate-x-neg-1/2 rb-items-center rb-gap-6 rb-px-6`,
|
|
68500
68891
|
container: "",
|
|
68501
68892
|
full: ""
|
|
68502
68893
|
})
|
|
68503
68894
|
),
|
|
68504
|
-
fallback:
|
|
68895
|
+
fallback: `rb-header-layout header-floating-container rb-absolute rb-left-1/2 rb-top-4 ${desktopOnlyDisplay("flex")} rb-w-calc-100-minus-2rem rb-max-w-7xl rb-translate-x-neg-1/2 rb-items-center rb-gap-6 rb-px-6`
|
|
68505
68896
|
}),
|
|
68506
68897
|
align: "center"
|
|
68507
68898
|
},
|
|
68508
68899
|
[
|
|
68509
68900
|
logoRow,
|
|
68510
|
-
createNavRow(
|
|
68901
|
+
createNavRow(`rb-ml-auto ${desktopOnlyDisplay("flex")} rb-gap-6`),
|
|
68511
68902
|
headerCta
|
|
68512
68903
|
],
|
|
68513
68904
|
when("$root.theme.header.variant", { equals: "floating" })
|
|
@@ -68519,16 +68910,16 @@ var editorialLayout = stack(
|
|
|
68519
68910
|
className: bindProp("$root.theme.header.maxWidth", {
|
|
68520
68911
|
transforms: pipe(
|
|
68521
68912
|
tx("layout.maxWidthClass", {
|
|
68522
|
-
base:
|
|
68913
|
+
base: `rb-header-layout ${desktopOnlyDisplay("flex")} rb-w-full rb-flex-col rb-items-center rb-gap-6 rb-text-center`
|
|
68523
68914
|
})
|
|
68524
68915
|
),
|
|
68525
|
-
fallback:
|
|
68916
|
+
fallback: `rb-container rb-header-layout ${desktopOnlyDisplay("flex")} rb-w-full rb-flex-col rb-items-center rb-gap-6 rb-text-center`
|
|
68526
68917
|
})
|
|
68527
68918
|
},
|
|
68528
68919
|
[
|
|
68529
68920
|
centeredLogoRow,
|
|
68530
68921
|
createNavRow(
|
|
68531
|
-
"
|
|
68922
|
+
`${desktopOnlyDisplay("flex")} rb-flex-wrap rb-justify-center rb-gap-x-8 rb-gap-y-3`,
|
|
68532
68923
|
"center"
|
|
68533
68924
|
)
|
|
68534
68925
|
],
|
|
@@ -70045,7 +70436,7 @@ init_builder();
|
|
|
70045
70436
|
init_builder();
|
|
70046
70437
|
init_styledSection();
|
|
70047
70438
|
init_fragments();
|
|
70048
|
-
|
|
70439
|
+
init_shared3();
|
|
70049
70440
|
init_shop_shared();
|
|
70050
70441
|
init_defineBlock();
|
|
70051
70442
|
import { z as z49 } from "zod";
|
|
@@ -70216,7 +70607,7 @@ var eventDetailsBlockDefinition = {
|
|
|
70216
70607
|
init_builder();
|
|
70217
70608
|
init_styledSection();
|
|
70218
70609
|
init_fragments();
|
|
70219
|
-
|
|
70610
|
+
init_shared4();
|
|
70220
70611
|
init_defineBlock();
|
|
70221
70612
|
var courseDetailsManifest = createBlockManifest({
|
|
70222
70613
|
id: "block.course-details",
|
|
@@ -70398,7 +70789,7 @@ var courseDetailsBlockDefinition = {
|
|
|
70398
70789
|
};
|
|
70399
70790
|
|
|
70400
70791
|
// ../blocks/src/system/blocks/events/index.ts
|
|
70401
|
-
|
|
70792
|
+
init_shared3();
|
|
70402
70793
|
|
|
70403
70794
|
// ../blocks/src/system/blocks/events/event-spotlight.ts
|
|
70404
70795
|
init_builder();
|
|
@@ -70407,7 +70798,7 @@ init_styledSection();
|
|
|
70407
70798
|
init_fragments();
|
|
70408
70799
|
init_boxStyles();
|
|
70409
70800
|
init_defineBlock();
|
|
70410
|
-
|
|
70801
|
+
init_shared3();
|
|
70411
70802
|
var eventSpotlightManifest = createBlockManifest({
|
|
70412
70803
|
id: "block.event-spotlight",
|
|
70413
70804
|
version: "1.1.0",
|
|
@@ -77134,6 +77525,7 @@ init_schema2();
|
|
|
77134
77525
|
|
|
77135
77526
|
// ../theme-core/src/index.ts
|
|
77136
77527
|
init_responsiveMode();
|
|
77528
|
+
init_responsiveDisplay();
|
|
77137
77529
|
init_breakpoints();
|
|
77138
77530
|
init_ThemeScopeCore();
|
|
77139
77531
|
init_buildThemeRuntime();
|
|
@@ -77433,7 +77825,7 @@ var SimpleCache = class {
|
|
|
77433
77825
|
};
|
|
77434
77826
|
|
|
77435
77827
|
// src/version.ts
|
|
77436
|
-
var SDK_VERSION = "0.60.
|
|
77828
|
+
var SDK_VERSION = "0.60.1";
|
|
77437
77829
|
|
|
77438
77830
|
// src/client/error.ts
|
|
77439
77831
|
var RiverbankApiError = class _RiverbankApiError extends Error {
|