@almadar/ui 5.24.0 → 5.25.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.
Files changed (31) hide show
  1. package/dist/avl/index.cjs +56 -97
  2. package/dist/avl/index.js +56 -97
  3. package/dist/components/core/atoms/Typography.d.ts +0 -18
  4. package/dist/components/core/atoms/index.d.ts +1 -1
  5. package/dist/components/core/molecules/PropertyInspector.d.ts +3 -2
  6. package/dist/components/core/molecules/index.d.ts +2 -2
  7. package/dist/components/core/organisms/ComponentPatterns.d.ts +0 -3
  8. package/dist/components/core/organisms/index.d.ts +5 -5
  9. package/dist/components/core/templates/index.d.ts +1 -1
  10. package/dist/components/game/atoms/DialogueBubble.d.ts +2 -1
  11. package/dist/components/game/atoms/Sprite.d.ts +2 -2
  12. package/dist/components/index.cjs +50 -95
  13. package/dist/components/index.js +51 -96
  14. package/dist/components/{core → marketing}/organisms/CaseStudyOrganism.d.ts +1 -1
  15. package/dist/components/{core → marketing}/organisms/FeatureGridOrganism.d.ts +1 -1
  16. package/dist/components/{core → marketing}/organisms/HeroOrganism.d.ts +1 -1
  17. package/dist/components/{core → marketing}/organisms/ShowcaseOrganism.d.ts +1 -1
  18. package/dist/components/{core → marketing}/organisms/StepFlowOrganism.d.ts +1 -1
  19. package/dist/docs/index.cjs +2 -2
  20. package/dist/docs/index.js +2 -2
  21. package/dist/marketing/index.cjs +4 -4
  22. package/dist/marketing/index.d.ts +4 -4
  23. package/dist/marketing/index.js +4 -4
  24. package/dist/providers/index.cjs +53 -94
  25. package/dist/providers/index.js +53 -94
  26. package/dist/runtime/index.cjs +53 -94
  27. package/dist/runtime/index.js +53 -94
  28. package/package.json +2 -2
  29. /package/dist/components/{core → marketing}/molecules/MarketingFooter.d.ts +0 -0
  30. /package/dist/components/{core → marketing}/molecules/PullQuote.d.ts +0 -0
  31. /package/dist/components/{core → marketing}/templates/AuthLayout.d.ts +0 -0
@@ -1764,11 +1764,9 @@ var init_Dialog = __esm({
1764
1764
  // components/core/atoms/Typography.tsx
1765
1765
  var Typography_exports = {};
1766
1766
  __export(Typography_exports, {
1767
- Heading: () => Heading,
1768
- Text: () => Text,
1769
1767
  Typography: () => Typography
1770
1768
  });
1771
- var variantStyles2, colorStyles, weightStyles, defaultElements, typographySizeStyles, overflowStyles2, Typography, sizeStyles2, Heading, Text;
1769
+ var variantStyles2, colorStyles, weightStyles, defaultElements, typographySizeStyles, overflowStyles2, Typography;
1772
1770
  var init_Typography = __esm({
1773
1771
  "components/core/atoms/Typography.tsx"() {
1774
1772
  init_cn();
@@ -1879,46 +1877,6 @@ var init_Typography = __esm({
1879
1877
  );
1880
1878
  };
1881
1879
  Typography.displayName = "Typography";
1882
- sizeStyles2 = {
1883
- xs: "text-xs",
1884
- sm: "text-sm",
1885
- md: "text-base",
1886
- lg: "text-lg",
1887
- xl: "text-xl",
1888
- "2xl": "text-2xl",
1889
- "3xl": "text-3xl"
1890
- };
1891
- Heading = ({
1892
- level = 2,
1893
- size,
1894
- className,
1895
- ...props
1896
- }) => {
1897
- const variant = `h${level}`;
1898
- const sizeClass = size ? sizeStyles2[size] : void 0;
1899
- return /* @__PURE__ */ jsxRuntime.jsx(
1900
- Typography,
1901
- {
1902
- variant,
1903
- className: cn(sizeClass, className),
1904
- ...props
1905
- }
1906
- );
1907
- };
1908
- Heading.displayName = "Heading";
1909
- Text = ({
1910
- variant = "body",
1911
- ...props
1912
- }) => {
1913
- return /* @__PURE__ */ jsxRuntime.jsx(
1914
- Typography,
1915
- {
1916
- variant,
1917
- ...props
1918
- }
1919
- );
1920
- };
1921
- Text.displayName = "Text";
1922
1880
  }
1923
1881
  });
1924
1882
  var Overlay;
@@ -2360,7 +2318,7 @@ var init_Drawer = __esm({
2360
2318
  Drawer.displayName = "Drawer";
2361
2319
  }
2362
2320
  });
2363
- var variantStyles3, sizeStyles3, Badge;
2321
+ var variantStyles3, sizeStyles2, Badge;
2364
2322
  var init_Badge = __esm({
2365
2323
  "components/core/atoms/Badge.tsx"() {
2366
2324
  init_cn();
@@ -2397,7 +2355,7 @@ var init_Badge = __esm({
2397
2355
  "border-[length:var(--border-width-thin)] border-border"
2398
2356
  ].join(" ")
2399
2357
  };
2400
- sizeStyles3 = {
2358
+ sizeStyles2 = {
2401
2359
  sm: "px-2 py-0.5 text-xs",
2402
2360
  md: "px-2.5 py-1 text-sm",
2403
2361
  lg: "px-3 py-1.5 text-base"
@@ -2417,7 +2375,7 @@ var init_Badge = __esm({
2417
2375
  className: cn(
2418
2376
  "inline-flex items-center gap-1 font-bold rounded-sm",
2419
2377
  variantStyles3[variant],
2420
- sizeStyles3[size],
2378
+ sizeStyles2[size],
2421
2379
  onRemove && "pr-1",
2422
2380
  className
2423
2381
  ),
@@ -3801,7 +3759,7 @@ var init_Card = __esm({
3801
3759
  CardFooter.displayName = "CardFooter";
3802
3760
  }
3803
3761
  });
3804
- var variantStyles5, sizeStyles4, iconSizes, FilterPill;
3762
+ var variantStyles5, sizeStyles3, iconSizes, FilterPill;
3805
3763
  var init_FilterPill = __esm({
3806
3764
  "components/core/atoms/FilterPill.tsx"() {
3807
3765
  init_cn();
@@ -3835,7 +3793,7 @@ var init_FilterPill = __esm({
3835
3793
  "border-[length:var(--border-width-thin)] border-border"
3836
3794
  ].join(" ")
3837
3795
  };
3838
- sizeStyles4 = {
3796
+ sizeStyles3 = {
3839
3797
  sm: "px-2 py-0.5 text-xs",
3840
3798
  md: "px-2.5 py-1 text-sm",
3841
3799
  lg: "px-3 py-1.5 text-base"
@@ -3879,7 +3837,7 @@ var init_FilterPill = __esm({
3879
3837
  className: cn(
3880
3838
  "inline-flex items-center gap-1 font-bold rounded-pill",
3881
3839
  variantStyles5[variant],
3882
- sizeStyles4[size],
3840
+ sizeStyles3[size],
3883
3841
  (onClick || clickEvent) && "cursor-pointer",
3884
3842
  className
3885
3843
  ),
@@ -3911,12 +3869,12 @@ var init_FilterPill = __esm({
3911
3869
  FilterPill.displayName = "FilterPill";
3912
3870
  }
3913
3871
  });
3914
- var sizeStyles5, Spinner;
3872
+ var sizeStyles4, Spinner;
3915
3873
  var init_Spinner = __esm({
3916
3874
  "components/core/atoms/Spinner.tsx"() {
3917
3875
  init_cn();
3918
3876
  init_Icon();
3919
- sizeStyles5 = {
3877
+ sizeStyles4 = {
3920
3878
  xs: "h-3 w-3",
3921
3879
  sm: "h-icon-default w-icon-default",
3922
3880
  md: "h-6 w-6",
@@ -3930,7 +3888,7 @@ var init_Spinner = __esm({
3930
3888
  ref,
3931
3889
  className: cn("text-foreground", className),
3932
3890
  ...props,
3933
- children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "loader", className: cn("animate-spin", sizeStyles5[size]) })
3891
+ children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "loader", className: cn("animate-spin", sizeStyles4[size]) })
3934
3892
  }
3935
3893
  );
3936
3894
  }
@@ -5234,7 +5192,7 @@ var init_TimeSlotCell = __esm({
5234
5192
  TimeSlotCell.displayName = "TimeSlotCell";
5235
5193
  }
5236
5194
  });
5237
- var statusColors, pulseRingColors, sizeStyles6, StatusDot;
5195
+ var statusColors, pulseRingColors, sizeStyles5, StatusDot;
5238
5196
  var init_StatusDot = __esm({
5239
5197
  "components/core/atoms/StatusDot.tsx"() {
5240
5198
  init_cn();
@@ -5254,7 +5212,7 @@ var init_StatusDot = __esm({
5254
5212
  warning: "ring-warning",
5255
5213
  critical: "ring-error"
5256
5214
  };
5257
- sizeStyles6 = {
5215
+ sizeStyles5 = {
5258
5216
  sm: "w-2 h-2",
5259
5217
  md: "w-2.5 h-2.5",
5260
5218
  lg: "w-3 h-3"
@@ -5268,7 +5226,7 @@ var init_StatusDot = __esm({
5268
5226
  className: cn(
5269
5227
  "inline-block rounded-full flex-shrink-0",
5270
5228
  statusColors[status],
5271
- sizeStyles6[size],
5229
+ sizeStyles5[size],
5272
5230
  pulse && [
5273
5231
  "animate-pulse",
5274
5232
  "ring-2 ring-offset-1",
@@ -5298,12 +5256,12 @@ function resolveColor(dir, invert) {
5298
5256
  const isGood = invert ? !isPositive : isPositive;
5299
5257
  return isGood ? "text-success" : "text-error";
5300
5258
  }
5301
- var sizeStyles7, iconNameMap, TrendIndicator;
5259
+ var sizeStyles6, iconNameMap, TrendIndicator;
5302
5260
  var init_TrendIndicator = __esm({
5303
5261
  "components/core/atoms/TrendIndicator.tsx"() {
5304
5262
  init_Icon();
5305
5263
  init_cn();
5306
- sizeStyles7 = {
5264
+ sizeStyles6 = {
5307
5265
  sm: { icon: "w-3 h-3", text: "text-xs" },
5308
5266
  md: { icon: "w-4 h-4", text: "text-sm" },
5309
5267
  lg: { icon: "w-5 h-5", text: "text-base" }
@@ -5327,7 +5285,7 @@ var init_TrendIndicator = __esm({
5327
5285
  const dir = resolveDirection(value, direction);
5328
5286
  const colorClass = resolveColor(dir, invert);
5329
5287
  const iconName = iconNameMap[dir];
5330
- const styles = sizeStyles7[size];
5288
+ const styles = sizeStyles6[size];
5331
5289
  const formattedValue = value !== void 0 ? `${value > 0 ? "+" : ""}${value}%` : void 0;
5332
5290
  const ariaLabel = label ?? (formattedValue ? `${dir} ${formattedValue}` : dir);
5333
5291
  return /* @__PURE__ */ jsxRuntime.jsxs(
@@ -6992,7 +6950,7 @@ var init_ControlButton = __esm({
6992
6950
  }
6993
6951
  });
6994
6952
  function Sprite({
6995
- spritesheet,
6953
+ spritesheet = "https://almadar-kflow-assets.web.app/shared/isometric-blocks/Spritesheet/allTiles_sheet.png",
6996
6954
  frameWidth,
6997
6955
  frameHeight,
6998
6956
  frame,
@@ -7672,7 +7630,7 @@ var init_DamageNumber = __esm({
7672
7630
  function DialogueBubble({
7673
7631
  speaker,
7674
7632
  text,
7675
- portrait,
7633
+ portrait = "https://almadar-kflow-assets.web.app/shared/characters/archetypes/00_base_model.png",
7676
7634
  position = "bottom",
7677
7635
  className
7678
7636
  }) {
@@ -8647,11 +8605,11 @@ var init_wrapCallbackForEvent = __esm({
8647
8605
  "runtime/wrapCallbackForEvent.ts"() {
8648
8606
  }
8649
8607
  });
8650
- var sizeStyles8, paddingStyles3, Container;
8608
+ var sizeStyles7, paddingStyles3, Container;
8651
8609
  var init_Container = __esm({
8652
8610
  "components/core/molecules/Container.tsx"() {
8653
8611
  init_cn();
8654
- sizeStyles8 = {
8612
+ sizeStyles7 = {
8655
8613
  xs: "max-w-xs",
8656
8614
  // 320px
8657
8615
  sm: "max-w-screen-sm",
@@ -8689,7 +8647,7 @@ var init_Container = __esm({
8689
8647
  {
8690
8648
  className: cn(
8691
8649
  "w-full",
8692
- sizeStyles8[resolvedSize],
8650
+ sizeStyles7[resolvedSize],
8693
8651
  paddingStyles3[padding],
8694
8652
  center && "mx-auto",
8695
8653
  className
@@ -10678,6 +10636,7 @@ var init_ComponentPatterns = __esm({
10678
10636
  init_ProgressBar();
10679
10637
  init_Card();
10680
10638
  init_Typography();
10639
+ init_cn();
10681
10640
  init_Alert();
10682
10641
  init_Tooltip();
10683
10642
  init_Popover();
@@ -11013,7 +10972,7 @@ var init_AnimatedCounter = __esm({
11013
10972
  });
11014
10973
  var AuthLayout;
11015
10974
  var init_AuthLayout = __esm({
11016
- "components/core/templates/AuthLayout.tsx"() {
10975
+ "components/marketing/templates/AuthLayout.tsx"() {
11017
10976
  "use client";
11018
10977
  init_cn();
11019
10978
  init_Box();
@@ -20315,7 +20274,7 @@ var init_Carousel = __esm({
20315
20274
  });
20316
20275
  var CaseStudyOrganism;
20317
20276
  var init_CaseStudyOrganism = __esm({
20318
- "components/core/organisms/CaseStudyOrganism.tsx"() {
20277
+ "components/marketing/organisms/CaseStudyOrganism.tsx"() {
20319
20278
  "use client";
20320
20279
  init_cn();
20321
20280
  init_useEventBus();
@@ -22147,7 +22106,7 @@ function CounterMinimal({
22147
22106
  Button,
22148
22107
  {
22149
22108
  variant: "secondary",
22150
- size: sizeStyles9[size].button,
22109
+ size: sizeStyles8[size].button,
22151
22110
  onClick: onDecrement,
22152
22111
  disabled: resolved.decrementDisabled,
22153
22112
  icon: "minus",
@@ -22159,7 +22118,7 @@ function CounterMinimal({
22159
22118
  {
22160
22119
  variant: "h1",
22161
22120
  className: cn(
22162
- sizeStyles9[size].display,
22121
+ sizeStyles8[size].display,
22163
22122
  "font-bold tabular-nums min-w-[3ch] text-center"
22164
22123
  ),
22165
22124
  children: resolved.count
@@ -22169,7 +22128,7 @@ function CounterMinimal({
22169
22128
  Button,
22170
22129
  {
22171
22130
  variant: "secondary",
22172
- size: sizeStyles9[size].button,
22131
+ size: sizeStyles8[size].button,
22173
22132
  onClick: onIncrement,
22174
22133
  disabled: resolved.incrementDisabled,
22175
22134
  icon: "plus",
@@ -22204,7 +22163,7 @@ function CounterStandard({
22204
22163
  {
22205
22164
  variant: "h1",
22206
22165
  className: cn(
22207
- sizeStyles9[size].display,
22166
+ sizeStyles8[size].display,
22208
22167
  "font-bold tabular-nums text-primary-600"
22209
22168
  ),
22210
22169
  children: resolved.count
@@ -22215,7 +22174,7 @@ function CounterStandard({
22215
22174
  Button,
22216
22175
  {
22217
22176
  variant: "secondary",
22218
- size: sizeStyles9[size].button,
22177
+ size: sizeStyles8[size].button,
22219
22178
  onClick: onDecrement,
22220
22179
  disabled: resolved.decrementDisabled,
22221
22180
  icon: "minus"
@@ -22225,7 +22184,7 @@ function CounterStandard({
22225
22184
  Button,
22226
22185
  {
22227
22186
  variant: "primary",
22228
- size: sizeStyles9[size].button,
22187
+ size: sizeStyles8[size].button,
22229
22188
  onClick: onIncrement,
22230
22189
  disabled: resolved.incrementDisabled,
22231
22190
  icon: "plus"
@@ -22271,7 +22230,7 @@ function CounterFull({
22271
22230
  {
22272
22231
  variant: "h1",
22273
22232
  className: cn(
22274
- sizeStyles9[size].display,
22233
+ sizeStyles8[size].display,
22275
22234
  "font-bold tabular-nums text-primary-600"
22276
22235
  ),
22277
22236
  children: resolved.count
@@ -22284,7 +22243,7 @@ function CounterFull({
22284
22243
  Button,
22285
22244
  {
22286
22245
  variant: "secondary",
22287
- size: sizeStyles9[size].button,
22246
+ size: sizeStyles8[size].button,
22288
22247
  onClick: onDecrement,
22289
22248
  disabled: resolved.decrementDisabled,
22290
22249
  icon: "minus",
@@ -22295,7 +22254,7 @@ function CounterFull({
22295
22254
  Button,
22296
22255
  {
22297
22256
  variant: "primary",
22298
- size: sizeStyles9[size].button,
22257
+ size: sizeStyles8[size].button,
22299
22258
  onClick: onIncrement,
22300
22259
  disabled: resolved.incrementDisabled,
22301
22260
  icon: "plus",
@@ -22315,7 +22274,7 @@ function CounterFull({
22315
22274
  )
22316
22275
  ] }) });
22317
22276
  }
22318
- var sizeStyles9, CounterTemplate;
22277
+ var sizeStyles8, CounterTemplate;
22319
22278
  var init_CounterTemplate = __esm({
22320
22279
  "components/core/templates/CounterTemplate.tsx"() {
22321
22280
  init_cn();
@@ -22323,7 +22282,7 @@ var init_CounterTemplate = __esm({
22323
22282
  init_Stack();
22324
22283
  init_Typography();
22325
22284
  init_Button();
22326
- sizeStyles9 = {
22285
+ sizeStyles8 = {
22327
22286
  sm: { display: "text-4xl", button: "sm" },
22328
22287
  md: { display: "text-6xl", button: "md" },
22329
22288
  lg: { display: "text-8xl", button: "lg" }
@@ -28784,14 +28743,14 @@ function useSafeEventBus5() {
28784
28743
  } };
28785
28744
  }
28786
28745
  }
28787
- var sizeStyles10, LONG_PRESS_DELAY, LONG_PRESS_INTERVAL, NumberStepper;
28746
+ var sizeStyles9, LONG_PRESS_DELAY, LONG_PRESS_INTERVAL, NumberStepper;
28788
28747
  var init_NumberStepper = __esm({
28789
28748
  "components/core/molecules/NumberStepper.tsx"() {
28790
28749
  "use client";
28791
28750
  init_cn();
28792
28751
  init_Icon();
28793
28752
  init_useEventBus();
28794
- sizeStyles10 = {
28753
+ sizeStyles9 = {
28795
28754
  sm: {
28796
28755
  button: "w-7 h-7",
28797
28756
  text: "text-sm min-w-[2rem]",
@@ -28829,7 +28788,7 @@ var init_NumberStepper = __esm({
28829
28788
  const timeoutRef = React87.useRef(null);
28830
28789
  const isAtMin = min !== void 0 && value <= min;
28831
28790
  const isAtMax = max !== void 0 && value >= max;
28832
- const styles = sizeStyles10[size];
28791
+ const styles = sizeStyles9[size];
28833
28792
  const emitChange = React87.useCallback(
28834
28793
  (newValue) => {
28835
28794
  const clamped = Math.round(newValue / step) * step;
@@ -28970,14 +28929,14 @@ function useSafeEventBus6() {
28970
28929
  } };
28971
28930
  }
28972
28931
  }
28973
- var sizeStyles11, StarRating;
28932
+ var sizeStyles10, StarRating;
28974
28933
  var init_StarRating = __esm({
28975
28934
  "components/core/molecules/StarRating.tsx"() {
28976
28935
  "use client";
28977
28936
  init_cn();
28978
28937
  init_Icon();
28979
28938
  init_useEventBus();
28980
- sizeStyles11 = {
28939
+ sizeStyles10 = {
28981
28940
  sm: { star: "w-4 h-4", gap: "gap-0.5" },
28982
28941
  md: { star: "w-6 h-6", gap: "gap-1" },
28983
28942
  lg: { star: "w-8 h-8", gap: "gap-1.5" }
@@ -28996,7 +28955,7 @@ var init_StarRating = __esm({
28996
28955
  }) => {
28997
28956
  const [hoverValue, setHoverValue] = React87.useState(null);
28998
28957
  const eventBus = useSafeEventBus6();
28999
- const styles = sizeStyles11[size];
28958
+ const styles = sizeStyles10[size];
29000
28959
  const displayValue = hoverValue ?? value;
29001
28960
  const emitChange = React87.useCallback(
29002
28961
  (newValue) => {
@@ -31923,14 +31882,14 @@ var init_EdgeDecoration = __esm({
31923
31882
  EdgeDecoration.displayName = "EdgeDecoration";
31924
31883
  }
31925
31884
  });
31926
- var sizeStyles12, VoteStack;
31885
+ var sizeStyles11, VoteStack;
31927
31886
  var init_VoteStack = __esm({
31928
31887
  "components/core/molecules/VoteStack.tsx"() {
31929
31888
  "use client";
31930
31889
  init_cn();
31931
31890
  init_Icon();
31932
31891
  init_useEventBus();
31933
- sizeStyles12 = {
31892
+ sizeStyles11 = {
31934
31893
  sm: {
31935
31894
  button: "w-7 h-7",
31936
31895
  text: "text-sm min-w-[2rem]",
@@ -31958,7 +31917,7 @@ var init_VoteStack = __esm({
31958
31917
  className,
31959
31918
  label
31960
31919
  }) => {
31961
- const styles = sizeStyles12[size];
31920
+ const styles = sizeStyles11[size];
31962
31921
  const isUp = userVote === "up";
31963
31922
  const isDown = userVote === "down";
31964
31923
  const eventBus = useEventBus();
@@ -32226,7 +32185,7 @@ var init_LikertScale = __esm({
32226
32185
  LikertScale.displayName = "LikertScale";
32227
32186
  }
32228
32187
  });
32229
- var DEFAULT_MATRIX_COLUMNS, sizeStyles13, MatrixQuestion;
32188
+ var DEFAULT_MATRIX_COLUMNS, sizeStyles12, MatrixQuestion;
32230
32189
  var init_MatrixQuestion = __esm({
32231
32190
  "components/core/molecules/MatrixQuestion.tsx"() {
32232
32191
  "use client";
@@ -32242,7 +32201,7 @@ var init_MatrixQuestion = __esm({
32242
32201
  { value: 4, label: "Agree" },
32243
32202
  { value: 5, label: "Strongly Agree" }
32244
32203
  ];
32245
- sizeStyles13 = {
32204
+ sizeStyles12 = {
32246
32205
  sm: {
32247
32206
  cell: "px-2 py-1.5 text-xs",
32248
32207
  radio: "sm",
@@ -32265,7 +32224,7 @@ var init_MatrixQuestion = __esm({
32265
32224
  size = "md",
32266
32225
  className
32267
32226
  }) => {
32268
- const styles = sizeStyles13[size];
32227
+ const styles = sizeStyles12[size];
32269
32228
  const safeRows = rows2 ?? [];
32270
32229
  const safeValues = values ?? {};
32271
32230
  const eventBus = useEventBus();
@@ -35021,7 +34980,7 @@ var init_GradientDivider = __esm({
35021
34980
  });
35022
34981
  var MarketingFooter;
35023
34982
  var init_MarketingFooter = __esm({
35024
- "components/core/molecules/MarketingFooter.tsx"() {
34983
+ "components/marketing/molecules/MarketingFooter.tsx"() {
35025
34984
  "use client";
35026
34985
  init_cn();
35027
34986
  init_Box();
@@ -35091,7 +35050,7 @@ var init_MarketingFooter = __esm({
35091
35050
  });
35092
35051
  var PullQuote;
35093
35052
  var init_PullQuote = __esm({
35094
- "components/core/molecules/PullQuote.tsx"() {
35053
+ "components/marketing/molecules/PullQuote.tsx"() {
35095
35054
  "use client";
35096
35055
  init_cn();
35097
35056
  init_Box();
@@ -39365,7 +39324,7 @@ var init_FeatureDetailPageTemplate = __esm({
39365
39324
  });
39366
39325
  var FeatureGridOrganism;
39367
39326
  var init_FeatureGridOrganism = __esm({
39368
- "components/core/organisms/FeatureGridOrganism.tsx"() {
39327
+ "components/marketing/organisms/FeatureGridOrganism.tsx"() {
39369
39328
  "use client";
39370
39329
  init_cn();
39371
39330
  init_useEventBus();
@@ -40712,7 +40671,7 @@ var init_GenericAppTemplate = __esm({
40712
40671
  });
40713
40672
  var HeroOrganism, _HeroClickInterceptor;
40714
40673
  var init_HeroOrganism = __esm({
40715
- "components/core/organisms/HeroOrganism.tsx"() {
40674
+ "components/marketing/organisms/HeroOrganism.tsx"() {
40716
40675
  "use client";
40717
40676
  init_cn();
40718
40677
  init_useEventBus();
@@ -44320,7 +44279,7 @@ var init_SequencerBoard = __esm({
44320
44279
  });
44321
44280
  var ShowcaseOrganism;
44322
44281
  var init_ShowcaseOrganism = __esm({
44323
- "components/core/organisms/ShowcaseOrganism.tsx"() {
44282
+ "components/marketing/organisms/ShowcaseOrganism.tsx"() {
44324
44283
  "use client";
44325
44284
  init_cn();
44326
44285
  init_useEventBus();
@@ -45745,7 +45704,7 @@ var init_StatsOrganism = __esm({
45745
45704
  });
45746
45705
  var StepFlowOrganism;
45747
45706
  var init_StepFlowOrganism = __esm({
45748
- "components/core/organisms/StepFlowOrganism.tsx"() {
45707
+ "components/marketing/organisms/StepFlowOrganism.tsx"() {
45749
45708
  "use client";
45750
45709
  init_cn();
45751
45710
  init_Stack();