@riverbankcms/sdk 0.64.0 → 0.67.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/dist/_dts/api/src/aiPlayground.d.ts +18 -11
  2. package/dist/_dts/api/src/apiEndpointTypes.d.ts +12 -0
  3. package/dist/_dts/api/src/bookingOperations.d.ts +1 -1
  4. package/dist/_dts/api/src/endpoints.d.ts +25 -0
  5. package/dist/_dts/api/src/sdkConfig/contracts.d.ts +0 -40
  6. package/dist/_dts/api/src/sdkContracts.d.ts +1 -1
  7. package/dist/_dts/api/src/siteMembers.d.ts +1 -1
  8. package/dist/_dts/api/src/siteOperations.d.ts +1 -1
  9. package/dist/_dts/billing/src/plans/types.d.ts +1 -1
  10. package/dist/_dts/blocks/src/bindings/index.d.ts +1 -1
  11. package/dist/_dts/blocks/src/system/node/validation-constants.d.ts +1 -1
  12. package/dist/_dts/blocks/src/system/transforms/registry/formatting.d.ts +1 -0
  13. package/dist/_dts/blocks/src/system/transforms/typed.d.ts +2 -1
  14. package/dist/_dts/db/src/generated/supabase/database.types.d.ts +81 -0
  15. package/dist/_dts/preview-next/src/client/blocks/pageDesignRuntimePreview.d.ts +7 -3
  16. package/dist/_dts/preview-next/src/client/blocks/previewProjection/runtimeContentDecoration.d.ts +2 -2
  17. package/dist/_dts/sdk/src/cli/commands/push/execute/footer.d.ts +33 -0
  18. package/dist/_dts/sdk/src/cli/commands/push-execute.d.ts +2 -1
  19. package/dist/_dts/sdk/src/cli/env.d.ts +2 -1
  20. package/dist/_dts/sdk/src/cli/merge-remote/entryMergePush.d.ts +2 -1
  21. package/dist/_dts/sdk/src/cli/site-commands/commandKeys.d.ts +13 -0
  22. package/dist/_dts/sdk/src/cli/site-commands/commandRuntime.d.ts +114 -0
  23. package/dist/_dts/sdk/src/cli/site-commands/entryCommands.d.ts +26 -48
  24. package/dist/_dts/sdk/src/cli/site-commands/footerCommands.d.ts +50 -0
  25. package/dist/_dts/sdk/src/cli/site-commands/formCommands.d.ts +57 -0
  26. package/dist/_dts/sdk/src/cli/site-commands/index.d.ts +5 -0
  27. package/dist/_dts/sdk/src/cli/site-commands/navigationCommands.d.ts +57 -0
  28. package/dist/_dts/sdk/src/cli/site-commands/pageCommands.d.ts +83 -0
  29. package/dist/_dts/sdk/src/cli/site-commands/pushExecution.d.ts +67 -14
  30. package/dist/_dts/sdk/src/cli/sync/executor.d.ts +10 -28
  31. package/dist/_dts/sdk/src/cli/sync/index.d.ts +1 -1
  32. package/dist/_dts/sdk/src/config/dashboard-validation.d.ts +0 -48
  33. package/dist/_dts/sdk/src/config/types.d.ts +1 -1
  34. package/dist/_dts/sdk/src/version.d.ts +1 -1
  35. package/dist/_dts/site-commands/src/adapter.d.ts +2 -2
  36. package/dist/_dts/site-commands/src/commands.d.ts +410 -13
  37. package/dist/_dts/site-commands/src/domain.d.ts +3 -3
  38. package/dist/_dts/site-commands/src/exposure.d.ts +41 -0
  39. package/dist/_dts/site-commands/src/index.d.ts +1 -0
  40. package/dist/_dts/site-commands/src/metadata.d.ts +93 -2
  41. package/dist/_dts/site-commands/src/planner.d.ts +13 -6
  42. package/dist/_dts/site-commands/src/refs.d.ts +13 -1
  43. package/dist/_dts/theme-core/src/palette/utils/index.d.ts +1 -0
  44. package/dist/_dts/theme-core/src/palette/utils/onColor.d.ts +2 -0
  45. package/dist/_dts/theme-core/src/site-styles/accessibleSurfaces.d.ts +83 -0
  46. package/dist/_dts/theme-core/src/site-styles/contentTemplateRuntimeCompiler.d.ts +2 -1
  47. package/dist/_dts/theme-core/src/site-styles/curatedSiteStyles.d.ts +89 -12
  48. package/dist/_dts/theme-core/src/site-styles/generatedSchemas.d.ts +8 -2
  49. package/dist/_dts/theme-core/src/site-styles/index.d.ts +1 -0
  50. package/dist/_dts/theme-core/src/site-styles/previewCompiler.d.ts +3 -2
  51. package/dist/_dts/theme-core/src/site-styles/runtimeCompiler.d.ts +9 -6
  52. package/dist/_dts/ui/src/callout.d.ts +1 -1
  53. package/dist/cli/index.mjs +4290 -2513
  54. package/dist/client/client.mjs +598 -372
  55. package/dist/client/hooks.mjs +311 -123
  56. package/dist/client/rendering/client.mjs +209 -68
  57. package/dist/client/rendering/islands.mjs +281 -150
  58. package/dist/client/rendering.mjs +416 -190
  59. package/dist/preview-next/before-render.mjs +61 -13
  60. package/dist/preview-next/client/runtime.mjs +930 -376
  61. package/dist/preview-next/middleware.mjs +61 -13
  62. package/dist/server/components.mjs +526 -325
  63. package/dist/server/config-validation.mjs +313 -125
  64. package/dist/server/config.mjs +313 -125
  65. package/dist/server/data.mjs +311 -123
  66. package/dist/server/index.mjs +78 -16
  67. package/dist/server/next.mjs +527 -326
  68. package/dist/server/page-converter.mjs +159 -41
  69. package/dist/server/prebuild.mjs +1 -1
  70. package/dist/server/rendering/server.mjs +526 -325
  71. package/dist/server/rendering.mjs +526 -325
  72. package/dist/server/routing.mjs +392 -131
  73. package/dist/server/server.mjs +312 -124
  74. package/dist/server/theme-bridge.mjs +155 -48
  75. package/package.json +1 -1
  76. package/dist/_dts/path-utils/src/index.d.ts +0 -8
  77. package/dist/_dts/path-utils/src/redirectPaths.d.ts +0 -26
  78. package/dist/_dts/path-utils/src/safeAppPath.d.ts +0 -26
@@ -12336,6 +12336,22 @@ var init_footerNav = __esm({
12336
12336
  }
12337
12337
  });
12338
12338
 
12339
+ // ../theme-core/src/palette/utils/onColor.ts
12340
+ var init_onColor = __esm({
12341
+ "../theme-core/src/palette/utils/onColor.ts"() {
12342
+ "use strict";
12343
+ }
12344
+ });
12345
+
12346
+ // ../theme-core/src/site-styles/accessibleSurfaces.ts
12347
+ var init_accessibleSurfaces = __esm({
12348
+ "../theme-core/src/site-styles/accessibleSurfaces.ts"() {
12349
+ "use strict";
12350
+ init_contrast2();
12351
+ init_onColor();
12352
+ }
12353
+ });
12354
+
12339
12355
  // ../theme-core/src/site-styles/appearancePresetResolution.ts
12340
12356
  function assertValidOptionGroups(preset) {
12341
12357
  preset.optionGroups?.forEach((group) => {
@@ -14986,7 +15002,8 @@ function defineCuratedSiteStyle(input) {
14986
15002
  name: input.name,
14987
15003
  description: input.description,
14988
15004
  generationBrief: input.generationBrief,
14989
- selectionKeywords: input.selectionKeywords ?? [],
15005
+ selectionKeywordRules: input.selectionKeywordRules ?? [],
15006
+ siteCreatorSelection: input.siteCreatorSelection ?? { kind: "explicit_only" },
14990
15007
  template: {
14991
15008
  id: asDesignSystemTemplateId(`template:${input.id.replace("site-style:", "")}`),
14992
15009
  name: input.name,
@@ -15031,6 +15048,9 @@ var init_curatedSiteStyles = __esm({
15031
15048
  "site-style:bright-community",
15032
15049
  "site-style:quiet-luxury",
15033
15050
  "site-style:practical-services",
15051
+ "site-style:quiet-practice",
15052
+ "site-style:personal-retreat-journal",
15053
+ "site-style:tactile-workshop",
15034
15054
  "site-style:modern-wellness",
15035
15055
  "site-style:bold-launch",
15036
15056
  "site-style:south-west-twerk-school"
@@ -15214,12 +15234,13 @@ var init_curatedSiteStyles = __esm({
15214
15234
  name: "Quiet Luxury",
15215
15235
  description: "Minimal, confident, and refined for premium experiences and private services.",
15216
15236
  generationBrief: "Use fewer claims, more specificity, and restrained sensory detail. Favor elegant media and low repetition over dense panels.",
15217
- selectionKeywords: [
15218
- "luxury",
15219
- "premium",
15220
- "boutique",
15221
- "bespoke",
15222
- "exclusive"
15237
+ siteCreatorSelection: { kind: "site_creator_keyword_heuristic", priority: 20 },
15238
+ selectionKeywordRules: [
15239
+ { kind: "word", value: "luxury" },
15240
+ { kind: "word", value: "premium" },
15241
+ { kind: "word", value: "boutique" },
15242
+ { kind: "word", value: "bespoke" },
15243
+ { kind: "word", value: "exclusive" }
15223
15244
  ],
15224
15245
  tokenRecipes: {
15225
15246
  palette: "high-contrast",
@@ -15248,13 +15269,14 @@ var init_curatedSiteStyles = __esm({
15248
15269
  name: "Practical Services",
15249
15270
  description: "Efficient, plainspoken, and conversion-focused for trades and everyday services.",
15250
15271
  generationBrief: "Make services, location, trust signals, and contact paths obvious. Keep copy brief and avoid ornate visual treatments.",
15251
- selectionKeywords: [
15252
- "repair",
15253
- "plumb",
15254
- "electric",
15255
- "cleaning",
15256
- "landscap",
15257
- "contractor"
15272
+ siteCreatorSelection: { kind: "primary_goal_support" },
15273
+ selectionKeywordRules: [
15274
+ { kind: "word", value: "repair" },
15275
+ { kind: "substring", value: "plumb" },
15276
+ { kind: "substring", value: "electric" },
15277
+ { kind: "word", value: "cleaning" },
15278
+ { kind: "substring", value: "landscap" },
15279
+ { kind: "substring", value: "contractor" }
15258
15280
  ],
15259
15281
  tokenRecipes: {
15260
15282
  palette: "brand-led",
@@ -15305,18 +15327,134 @@ var init_curatedSiteStyles = __esm({
15305
15327
  paletteChoice("warm-neutral-forest")
15306
15328
  ]
15307
15329
  }),
15330
+ defineCuratedSiteStyle({
15331
+ id: "site-style:quiet-practice",
15332
+ name: "Quiet Practice",
15333
+ description: "Grounded, calm, and practical for small appointment-first practices.",
15334
+ generationBrief: "Make services, practitioner trust, preparation notes, and booking routes easy to scan. Keep the tone warm and specific, with quiet confidence rather than spa cliches or medical claims.",
15335
+ siteCreatorSelection: { kind: "site_creator_keyword_heuristic", priority: 30 },
15336
+ selectionKeywordRules: [
15337
+ { kind: "substring", value: "massage" },
15338
+ { kind: "word", value: "bodywork" },
15339
+ { kind: "phrase", value: "appointment practice" },
15340
+ { kind: "phrase", value: "appointment-first" },
15341
+ { kind: "substring", value: "practitioner" },
15342
+ { kind: "substring", value: "therap" },
15343
+ { kind: "substring", value: "clinic" },
15344
+ { kind: "phrase", value: "wellness practice" }
15345
+ ],
15346
+ tokenRecipes: {
15347
+ palette: "soft-natural",
15348
+ contrast: "standard",
15349
+ radius: "soft",
15350
+ shadow: "subtle",
15351
+ typography: "clean-sans",
15352
+ spacing: "regular",
15353
+ motion: "subtle"
15354
+ },
15355
+ compositionBudget: quietBudget,
15356
+ recommendedHeaderLookIds: ["practical-utility", "clean-base", "centered-calm"],
15357
+ buttonPersonalityChoices: [
15358
+ buttonChoice("pebble"),
15359
+ buttonChoice("soft-pill"),
15360
+ buttonChoice("editorial-link")
15361
+ ],
15362
+ paletteVariantChoices: [
15363
+ paletteChoice("soft-natural-stone"),
15364
+ paletteChoice("soft-natural-sage"),
15365
+ paletteChoice("warm-neutral-clay")
15366
+ ]
15367
+ }),
15368
+ defineCuratedSiteStyle({
15369
+ id: "site-style:personal-retreat-journal",
15370
+ name: "Personal Retreat Journal",
15371
+ description: "Warm, story-led, and readable for solo practitioners with mixed offers.",
15372
+ generationBrief: "Center the practitioner as the guide, then make private sessions, classes, retreats, and resources feel like clear pathways. Keep retreat copy grounded and practical, with enough editorial warmth for longer reading.",
15373
+ siteCreatorSelection: { kind: "site_creator_keyword_heuristic", priority: 40 },
15374
+ selectionKeywordRules: [
15375
+ { kind: "substring", value: "retreat" },
15376
+ { kind: "phrase", value: "solo practitioner" },
15377
+ { kind: "phrase", value: "personal brand" },
15378
+ { kind: "substring", value: "teacher" },
15379
+ { kind: "substring", value: "coach" },
15380
+ { kind: "phrase", value: "retreat resources" },
15381
+ { kind: "substring", value: "journal" }
15382
+ ],
15383
+ tokenRecipes: {
15384
+ palette: "warm-neutral",
15385
+ contrast: "standard",
15386
+ radius: "soft",
15387
+ shadow: "subtle",
15388
+ typography: "serif-editorial",
15389
+ spacing: "airy",
15390
+ motion: "subtle"
15391
+ },
15392
+ compositionBudget: balancedBudget,
15393
+ recommendedHeaderLookIds: ["editorial-line", "centered-calm", "minimal-transparent"],
15394
+ buttonPersonalityChoices: [
15395
+ buttonChoice("editorial-link"),
15396
+ buttonChoice("soft-pill"),
15397
+ buttonChoice("brushed-wash")
15398
+ ],
15399
+ paletteVariantChoices: [
15400
+ paletteChoice("warm-neutral-forest"),
15401
+ paletteChoice("warm-neutral-clay"),
15402
+ paletteChoice("soft-natural-stone")
15403
+ ]
15404
+ }),
15405
+ defineCuratedSiteStyle({
15406
+ id: "site-style:tactile-workshop",
15407
+ name: "Tactile Workshop",
15408
+ description: "Bright, hands-on, and image-led for maker studios, workshops, and creative classes.",
15409
+ generationBrief: "Lead with objects, materials, studio process, and practical booking detail. Keep the tone warm and direct, with useful mess, clear dates, and enough gallery rhythm to feel like a real creative studio.",
15410
+ siteCreatorSelection: { kind: "site_creator_keyword_heuristic", priority: 50 },
15411
+ selectionKeywordRules: [
15412
+ { kind: "substring", value: "ceramic" },
15413
+ { kind: "word", value: "pottery" },
15414
+ { kind: "phrase", value: "maker studio" },
15415
+ { kind: "phrase", value: "craft class" },
15416
+ { kind: "phrase", value: "craft workshop" },
15417
+ { kind: "word", value: "clay" },
15418
+ { kind: "word", value: "kiln" }
15419
+ ],
15420
+ tokenRecipes: {
15421
+ palette: "brand-led",
15422
+ contrast: "standard",
15423
+ radius: "soft",
15424
+ shadow: "subtle",
15425
+ typography: "friendly-sans",
15426
+ spacing: "regular",
15427
+ motion: "subtle"
15428
+ },
15429
+ compositionBudget: balancedBudget,
15430
+ recommendedHeaderLookIds: ["brand-solid", "practical-utility", "clean-base"],
15431
+ recommendedFooterLookIds: ["site-footer-brand-two-band", "footer-muted-grounding"],
15432
+ buttonPersonalityChoices: [
15433
+ buttonChoice("pebble"),
15434
+ buttonChoice("confident-chip"),
15435
+ buttonChoice("ink-stamp"),
15436
+ buttonChoice("editorial-link")
15437
+ ],
15438
+ paletteVariantChoices: [
15439
+ paletteChoice("brand-led-warm"),
15440
+ paletteChoice("brand-led-cool"),
15441
+ paletteChoice("soft-natural-watercolor"),
15442
+ paletteChoice("warm-neutral-clay")
15443
+ ]
15444
+ }),
15308
15445
  defineCuratedSiteStyle({
15309
15446
  id: "site-style:bold-launch",
15310
15447
  name: "Bold Launch",
15311
15448
  description: "High-energy and punchy for launches, campaigns, and creative offers.",
15312
15449
  generationBrief: "Use crisp positioning, bold hero structure, strong calls to action, and confident visual rhythm. Keep it precise, not shouty.",
15313
- selectionKeywords: [
15314
- "launch",
15315
- "campaign",
15316
- "preorder",
15317
- "pre-order",
15318
- "waitlist",
15319
- "drop"
15450
+ siteCreatorSelection: { kind: "site_creator_keyword_heuristic", priority: 10 },
15451
+ selectionKeywordRules: [
15452
+ { kind: "substring", value: "launch" },
15453
+ { kind: "substring", value: "campaign" },
15454
+ { kind: "word", value: "preorder" },
15455
+ { kind: "phrase", value: "pre-order" },
15456
+ { kind: "substring", value: "waitlist" },
15457
+ { kind: "word", value: "drop" }
15320
15458
  ],
15321
15459
  tokenRecipes: {
15322
15460
  palette: "high-contrast",
@@ -15347,15 +15485,6 @@ var init_curatedSiteStyles = __esm({
15347
15485
  name: "South West Twerk School",
15348
15486
  description: "Energetic, editorial, and high-contrast for a branded dance school presence.",
15349
15487
  generationBrief: "Use confident rhythm, bold burgundy-and-gold accents, large editorial intro copy, strong booking routes, and dark feature sections where proof or forms need emphasis.",
15350
- selectionKeywords: [
15351
- "dance",
15352
- "classes",
15353
- "workshop",
15354
- "school",
15355
- "movement",
15356
- "performance",
15357
- "community"
15358
- ],
15359
15488
  tokenRecipes: {
15360
15489
  palette: "brand-led",
15361
15490
  contrast: "maximum",
@@ -15541,6 +15670,34 @@ var init_modern_minimal = __esm({
15541
15670
  }
15542
15671
  });
15543
15672
 
15673
+ // ../theme-core/src/palette/generateShades.ts
15674
+ var init_generateShades = __esm({
15675
+ "../theme-core/src/palette/generateShades.ts"() {
15676
+ "use strict";
15677
+ init_colorConversion();
15678
+ }
15679
+ });
15680
+
15681
+ // ../theme-core/src/palette/neutralScale.ts
15682
+ var init_neutralScale = __esm({
15683
+ "../theme-core/src/palette/neutralScale.ts"() {
15684
+ "use strict";
15685
+ init_colorConversion();
15686
+ }
15687
+ });
15688
+
15689
+ // ../theme-core/src/palette/expandPalette.ts
15690
+ var init_expandPalette = __esm({
15691
+ "../theme-core/src/palette/expandPalette.ts"() {
15692
+ "use strict";
15693
+ init_generateShades();
15694
+ init_neutralScale();
15695
+ init_colorConversion();
15696
+ init_textColor();
15697
+ init_onColor();
15698
+ }
15699
+ });
15700
+
15544
15701
  // ../theme-core/src/site-styles/rawStyleFields.ts
15545
15702
  var themeV2RuntimeStyleFieldNames, themeV2BlockSpecificRawStyleFieldNames, themeV2NormalEditorRawStyleFieldNames, themeV2NormalEditorRawStyleFieldNameSet;
15546
15703
  var init_rawStyleFields = __esm({
@@ -15724,35 +15881,31 @@ var init_runtimeCompiler = __esm({
15724
15881
  "use strict";
15725
15882
  init_schema2();
15726
15883
  init_modern_minimal();
15884
+ init_expandPalette();
15727
15885
  init_personalities();
15728
15886
  init_variants();
15729
15887
  init_designState();
15730
15888
  init_types9();
15889
+ init_accessibleSurfaces();
15731
15890
  defaultDesignRuntimeRules = defineDesignRuntimeRules({
15732
15891
  sectionSurfaces: {
15733
15892
  base: {},
15734
15893
  "muted-band": {
15735
15894
  background: {
15736
15895
  type: "color",
15737
- color: "muted",
15738
- textColor: "text",
15739
- headingColor: "text"
15896
+ color: "muted"
15740
15897
  }
15741
15898
  },
15742
15899
  "accent-band": {
15743
15900
  background: {
15744
15901
  type: "color",
15745
- color: "primary",
15746
- textColor: "primaryForeground",
15747
- headingColor: "primaryForeground"
15902
+ color: "primary"
15748
15903
  }
15749
15904
  },
15750
15905
  "brand-depth-band": {
15751
15906
  background: {
15752
15907
  type: "color",
15753
- color: "primary-800",
15754
- textColor: "primaryForeground",
15755
- headingColor: "primaryForeground"
15908
+ color: "primary-800"
15756
15909
  }
15757
15910
  },
15758
15911
  "hero-image": {
@@ -16218,6 +16371,7 @@ var init_tokenRecipes = __esm({
16218
16371
  var init_site_styles = __esm({
16219
16372
  "../theme-core/src/site-styles/index.ts"() {
16220
16373
  "use strict";
16374
+ init_accessibleSurfaces();
16221
16375
  init_appearancePresets();
16222
16376
  init_blockFlow();
16223
16377
  init_compositionBudget();
@@ -17051,6 +17205,7 @@ var init_validation_constants = __esm({
17051
17205
  "date.formatShort",
17052
17206
  "array.length",
17053
17207
  "value.jsonArray",
17208
+ "value.csv",
17054
17209
  "array.marqueeLoop",
17055
17210
  // Layout (layout.ts)
17056
17211
  "layout.maxWidthClass",
@@ -23830,7 +23985,12 @@ var init_event_calendar = __esm({
23830
23985
  // Pass filter params if configured
23831
23986
  kind: { $bind: { from: "content.kind" } },
23832
23987
  eventSurface: { $bind: { from: "content.eventSurface" } },
23833
- eventPresets: { $bind: { from: "content.filterEventPresets" } },
23988
+ eventPresets: {
23989
+ $bind: {
23990
+ from: "content.filterEventPresets",
23991
+ transforms: [{ id: "value.csv" }]
23992
+ }
23993
+ },
23834
23994
  scheduleScope: { $bind: { from: "content.scheduleScope" } },
23835
23995
  categoryIds: { $bind: { from: "content.filterCategoryIds" } },
23836
23996
  staffMemberId: { $bind: { from: "content.filterStaffMemberId" } },
@@ -24305,7 +24465,12 @@ var init_event_listing = __esm({
24305
24465
  detailLevel: "listing",
24306
24466
  kind: { $bind: { from: "content.kind" } },
24307
24467
  eventSurface: { $bind: { from: "content.eventSurface" } },
24308
- eventPresets: { $bind: { from: "content.filterEventPresets" } },
24468
+ eventPresets: {
24469
+ $bind: {
24470
+ from: "content.filterEventPresets",
24471
+ transforms: [{ id: "value.csv" }]
24472
+ }
24473
+ },
24309
24474
  scheduleScope: { $bind: { from: "content.scheduleScope" } }
24310
24475
  },
24311
24476
  mode: "server"
@@ -48062,33 +48227,6 @@ var init_registry_client = __esm({
48062
48227
  }
48063
48228
  });
48064
48229
 
48065
- // ../theme-core/src/palette/generateShades.ts
48066
- var init_generateShades = __esm({
48067
- "../theme-core/src/palette/generateShades.ts"() {
48068
- "use strict";
48069
- init_colorConversion();
48070
- }
48071
- });
48072
-
48073
- // ../theme-core/src/palette/neutralScale.ts
48074
- var init_neutralScale = __esm({
48075
- "../theme-core/src/palette/neutralScale.ts"() {
48076
- "use strict";
48077
- init_colorConversion();
48078
- }
48079
- });
48080
-
48081
- // ../theme-core/src/palette/expandPalette.ts
48082
- var init_expandPalette = __esm({
48083
- "../theme-core/src/palette/expandPalette.ts"() {
48084
- "use strict";
48085
- init_generateShades();
48086
- init_neutralScale();
48087
- init_colorConversion();
48088
- init_textColor();
48089
- }
48090
- });
48091
-
48092
48230
  // ../theme-core/src/runtime/fontFamily.ts
48093
48231
  var init_fontFamily = __esm({
48094
48232
  "../theme-core/src/runtime/fontFamily.ts"() {
@@ -50507,6 +50645,9 @@ init_textColor();
50507
50645
  // ../theme-core/src/palette/utils/legibility.ts
50508
50646
  init_contrast2();
50509
50647
 
50648
+ // ../theme-core/src/palette/utils/index.ts
50649
+ init_onColor();
50650
+
50510
50651
  // ../theme-core/src/mock-themes/components/PaletteCard.tsx
50511
50652
  init_expandPalette();
50512
50653