@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.
- package/dist/avl/index.cjs +56 -97
- package/dist/avl/index.js +56 -97
- package/dist/components/core/atoms/Typography.d.ts +0 -18
- package/dist/components/core/atoms/index.d.ts +1 -1
- package/dist/components/core/molecules/PropertyInspector.d.ts +3 -2
- package/dist/components/core/molecules/index.d.ts +2 -2
- package/dist/components/core/organisms/ComponentPatterns.d.ts +0 -3
- package/dist/components/core/organisms/index.d.ts +5 -5
- package/dist/components/core/templates/index.d.ts +1 -1
- package/dist/components/game/atoms/DialogueBubble.d.ts +2 -1
- package/dist/components/game/atoms/Sprite.d.ts +2 -2
- package/dist/components/index.cjs +50 -95
- package/dist/components/index.js +51 -96
- package/dist/components/{core → marketing}/organisms/CaseStudyOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/FeatureGridOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/HeroOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/ShowcaseOrganism.d.ts +1 -1
- package/dist/components/{core → marketing}/organisms/StepFlowOrganism.d.ts +1 -1
- package/dist/docs/index.cjs +2 -2
- package/dist/docs/index.js +2 -2
- package/dist/marketing/index.cjs +4 -4
- package/dist/marketing/index.d.ts +4 -4
- package/dist/marketing/index.js +4 -4
- package/dist/providers/index.cjs +53 -94
- package/dist/providers/index.js +53 -94
- package/dist/runtime/index.cjs +53 -94
- package/dist/runtime/index.js +53 -94
- package/package.json +2 -2
- /package/dist/components/{core → marketing}/molecules/MarketingFooter.d.ts +0 -0
- /package/dist/components/{core → marketing}/molecules/PullQuote.d.ts +0 -0
- /package/dist/components/{core → marketing}/templates/AuthLayout.d.ts +0 -0
package/dist/runtime/index.cjs
CHANGED
|
@@ -1500,11 +1500,9 @@ var init_Dialog = __esm({
|
|
|
1500
1500
|
// components/core/atoms/Typography.tsx
|
|
1501
1501
|
var Typography_exports = {};
|
|
1502
1502
|
__export(Typography_exports, {
|
|
1503
|
-
Heading: () => Heading,
|
|
1504
|
-
Text: () => Text,
|
|
1505
1503
|
Typography: () => Typography
|
|
1506
1504
|
});
|
|
1507
|
-
var variantStyles2, colorStyles, weightStyles, defaultElements, typographySizeStyles, overflowStyles2, Typography
|
|
1505
|
+
var variantStyles2, colorStyles, weightStyles, defaultElements, typographySizeStyles, overflowStyles2, Typography;
|
|
1508
1506
|
var init_Typography = __esm({
|
|
1509
1507
|
"components/core/atoms/Typography.tsx"() {
|
|
1510
1508
|
init_cn();
|
|
@@ -1615,46 +1613,6 @@ var init_Typography = __esm({
|
|
|
1615
1613
|
);
|
|
1616
1614
|
};
|
|
1617
1615
|
Typography.displayName = "Typography";
|
|
1618
|
-
sizeStyles2 = {
|
|
1619
|
-
xs: "text-xs",
|
|
1620
|
-
sm: "text-sm",
|
|
1621
|
-
md: "text-base",
|
|
1622
|
-
lg: "text-lg",
|
|
1623
|
-
xl: "text-xl",
|
|
1624
|
-
"2xl": "text-2xl",
|
|
1625
|
-
"3xl": "text-3xl"
|
|
1626
|
-
};
|
|
1627
|
-
Heading = ({
|
|
1628
|
-
level = 2,
|
|
1629
|
-
size,
|
|
1630
|
-
className,
|
|
1631
|
-
...props
|
|
1632
|
-
}) => {
|
|
1633
|
-
const variant = `h${level}`;
|
|
1634
|
-
const sizeClass = size ? sizeStyles2[size] : void 0;
|
|
1635
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1636
|
-
Typography,
|
|
1637
|
-
{
|
|
1638
|
-
variant,
|
|
1639
|
-
className: cn(sizeClass, className),
|
|
1640
|
-
...props
|
|
1641
|
-
}
|
|
1642
|
-
);
|
|
1643
|
-
};
|
|
1644
|
-
Heading.displayName = "Heading";
|
|
1645
|
-
Text = ({
|
|
1646
|
-
variant = "body",
|
|
1647
|
-
...props
|
|
1648
|
-
}) => {
|
|
1649
|
-
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
1650
|
-
Typography,
|
|
1651
|
-
{
|
|
1652
|
-
variant,
|
|
1653
|
-
...props
|
|
1654
|
-
}
|
|
1655
|
-
);
|
|
1656
|
-
};
|
|
1657
|
-
Text.displayName = "Text";
|
|
1658
1616
|
}
|
|
1659
1617
|
});
|
|
1660
1618
|
var Overlay;
|
|
@@ -2096,7 +2054,7 @@ var init_Drawer = __esm({
|
|
|
2096
2054
|
Drawer.displayName = "Drawer";
|
|
2097
2055
|
}
|
|
2098
2056
|
});
|
|
2099
|
-
var variantStyles3,
|
|
2057
|
+
var variantStyles3, sizeStyles2, Badge;
|
|
2100
2058
|
var init_Badge = __esm({
|
|
2101
2059
|
"components/core/atoms/Badge.tsx"() {
|
|
2102
2060
|
init_cn();
|
|
@@ -2133,7 +2091,7 @@ var init_Badge = __esm({
|
|
|
2133
2091
|
"border-[length:var(--border-width-thin)] border-border"
|
|
2134
2092
|
].join(" ")
|
|
2135
2093
|
};
|
|
2136
|
-
|
|
2094
|
+
sizeStyles2 = {
|
|
2137
2095
|
sm: "px-2 py-0.5 text-xs",
|
|
2138
2096
|
md: "px-2.5 py-1 text-sm",
|
|
2139
2097
|
lg: "px-3 py-1.5 text-base"
|
|
@@ -2153,7 +2111,7 @@ var init_Badge = __esm({
|
|
|
2153
2111
|
className: cn(
|
|
2154
2112
|
"inline-flex items-center gap-1 font-bold rounded-sm",
|
|
2155
2113
|
variantStyles3[variant],
|
|
2156
|
-
|
|
2114
|
+
sizeStyles2[size],
|
|
2157
2115
|
onRemove && "pr-1",
|
|
2158
2116
|
className
|
|
2159
2117
|
),
|
|
@@ -3537,7 +3495,7 @@ var init_Card = __esm({
|
|
|
3537
3495
|
CardFooter.displayName = "CardFooter";
|
|
3538
3496
|
}
|
|
3539
3497
|
});
|
|
3540
|
-
var variantStyles5,
|
|
3498
|
+
var variantStyles5, sizeStyles3, iconSizes, FilterPill;
|
|
3541
3499
|
var init_FilterPill = __esm({
|
|
3542
3500
|
"components/core/atoms/FilterPill.tsx"() {
|
|
3543
3501
|
init_cn();
|
|
@@ -3571,7 +3529,7 @@ var init_FilterPill = __esm({
|
|
|
3571
3529
|
"border-[length:var(--border-width-thin)] border-border"
|
|
3572
3530
|
].join(" ")
|
|
3573
3531
|
};
|
|
3574
|
-
|
|
3532
|
+
sizeStyles3 = {
|
|
3575
3533
|
sm: "px-2 py-0.5 text-xs",
|
|
3576
3534
|
md: "px-2.5 py-1 text-sm",
|
|
3577
3535
|
lg: "px-3 py-1.5 text-base"
|
|
@@ -3615,7 +3573,7 @@ var init_FilterPill = __esm({
|
|
|
3615
3573
|
className: cn(
|
|
3616
3574
|
"inline-flex items-center gap-1 font-bold rounded-pill",
|
|
3617
3575
|
variantStyles5[variant],
|
|
3618
|
-
|
|
3576
|
+
sizeStyles3[size],
|
|
3619
3577
|
(onClick || clickEvent) && "cursor-pointer",
|
|
3620
3578
|
className
|
|
3621
3579
|
),
|
|
@@ -3647,12 +3605,12 @@ var init_FilterPill = __esm({
|
|
|
3647
3605
|
FilterPill.displayName = "FilterPill";
|
|
3648
3606
|
}
|
|
3649
3607
|
});
|
|
3650
|
-
var
|
|
3608
|
+
var sizeStyles4, Spinner;
|
|
3651
3609
|
var init_Spinner = __esm({
|
|
3652
3610
|
"components/core/atoms/Spinner.tsx"() {
|
|
3653
3611
|
init_cn();
|
|
3654
3612
|
init_Icon();
|
|
3655
|
-
|
|
3613
|
+
sizeStyles4 = {
|
|
3656
3614
|
xs: "h-3 w-3",
|
|
3657
3615
|
sm: "h-icon-default w-icon-default",
|
|
3658
3616
|
md: "h-6 w-6",
|
|
@@ -3666,7 +3624,7 @@ var init_Spinner = __esm({
|
|
|
3666
3624
|
ref,
|
|
3667
3625
|
className: cn("text-foreground", className),
|
|
3668
3626
|
...props,
|
|
3669
|
-
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "loader", className: cn("animate-spin",
|
|
3627
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(Icon, { name: "loader", className: cn("animate-spin", sizeStyles4[size]) })
|
|
3670
3628
|
}
|
|
3671
3629
|
);
|
|
3672
3630
|
}
|
|
@@ -5145,7 +5103,7 @@ var init_TimeSlotCell = __esm({
|
|
|
5145
5103
|
TimeSlotCell.displayName = "TimeSlotCell";
|
|
5146
5104
|
}
|
|
5147
5105
|
});
|
|
5148
|
-
var statusColors, pulseRingColors,
|
|
5106
|
+
var statusColors, pulseRingColors, sizeStyles5, StatusDot;
|
|
5149
5107
|
var init_StatusDot = __esm({
|
|
5150
5108
|
"components/core/atoms/StatusDot.tsx"() {
|
|
5151
5109
|
init_cn();
|
|
@@ -5165,7 +5123,7 @@ var init_StatusDot = __esm({
|
|
|
5165
5123
|
warning: "ring-warning",
|
|
5166
5124
|
critical: "ring-error"
|
|
5167
5125
|
};
|
|
5168
|
-
|
|
5126
|
+
sizeStyles5 = {
|
|
5169
5127
|
sm: "w-2 h-2",
|
|
5170
5128
|
md: "w-2.5 h-2.5",
|
|
5171
5129
|
lg: "w-3 h-3"
|
|
@@ -5179,7 +5137,7 @@ var init_StatusDot = __esm({
|
|
|
5179
5137
|
className: cn(
|
|
5180
5138
|
"inline-block rounded-full flex-shrink-0",
|
|
5181
5139
|
statusColors[status],
|
|
5182
|
-
|
|
5140
|
+
sizeStyles5[size],
|
|
5183
5141
|
pulse && [
|
|
5184
5142
|
"animate-pulse",
|
|
5185
5143
|
"ring-2 ring-offset-1",
|
|
@@ -5209,12 +5167,12 @@ function resolveColor(dir, invert) {
|
|
|
5209
5167
|
const isGood = invert ? !isPositive : isPositive;
|
|
5210
5168
|
return isGood ? "text-success" : "text-error";
|
|
5211
5169
|
}
|
|
5212
|
-
var
|
|
5170
|
+
var sizeStyles6, iconNameMap, TrendIndicator;
|
|
5213
5171
|
var init_TrendIndicator = __esm({
|
|
5214
5172
|
"components/core/atoms/TrendIndicator.tsx"() {
|
|
5215
5173
|
init_Icon();
|
|
5216
5174
|
init_cn();
|
|
5217
|
-
|
|
5175
|
+
sizeStyles6 = {
|
|
5218
5176
|
sm: { icon: "w-3 h-3", text: "text-xs" },
|
|
5219
5177
|
md: { icon: "w-4 h-4", text: "text-sm" },
|
|
5220
5178
|
lg: { icon: "w-5 h-5", text: "text-base" }
|
|
@@ -5238,7 +5196,7 @@ var init_TrendIndicator = __esm({
|
|
|
5238
5196
|
const dir = resolveDirection(value, direction);
|
|
5239
5197
|
const colorClass = resolveColor(dir, invert);
|
|
5240
5198
|
const iconName = iconNameMap[dir];
|
|
5241
|
-
const styles =
|
|
5199
|
+
const styles = sizeStyles6[size];
|
|
5242
5200
|
const formattedValue = value !== void 0 ? `${value > 0 ? "+" : ""}${value}%` : void 0;
|
|
5243
5201
|
const ariaLabel = label ?? (formattedValue ? `${dir} ${formattedValue}` : dir);
|
|
5244
5202
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -6903,7 +6861,7 @@ var init_ControlButton = __esm({
|
|
|
6903
6861
|
}
|
|
6904
6862
|
});
|
|
6905
6863
|
function Sprite({
|
|
6906
|
-
spritesheet,
|
|
6864
|
+
spritesheet = "https://almadar-kflow-assets.web.app/shared/isometric-blocks/Spritesheet/allTiles_sheet.png",
|
|
6907
6865
|
frameWidth,
|
|
6908
6866
|
frameHeight,
|
|
6909
6867
|
frame,
|
|
@@ -7583,7 +7541,7 @@ var init_DamageNumber = __esm({
|
|
|
7583
7541
|
function DialogueBubble({
|
|
7584
7542
|
speaker,
|
|
7585
7543
|
text,
|
|
7586
|
-
portrait,
|
|
7544
|
+
portrait = "https://almadar-kflow-assets.web.app/shared/characters/archetypes/00_base_model.png",
|
|
7587
7545
|
position = "bottom",
|
|
7588
7546
|
className
|
|
7589
7547
|
}) {
|
|
@@ -8202,11 +8160,11 @@ var init_wrapCallbackForEvent = __esm({
|
|
|
8202
8160
|
"runtime/wrapCallbackForEvent.ts"() {
|
|
8203
8161
|
}
|
|
8204
8162
|
});
|
|
8205
|
-
var
|
|
8163
|
+
var sizeStyles7, paddingStyles3, Container;
|
|
8206
8164
|
var init_Container = __esm({
|
|
8207
8165
|
"components/core/molecules/Container.tsx"() {
|
|
8208
8166
|
init_cn();
|
|
8209
|
-
|
|
8167
|
+
sizeStyles7 = {
|
|
8210
8168
|
xs: "max-w-xs",
|
|
8211
8169
|
// 320px
|
|
8212
8170
|
sm: "max-w-screen-sm",
|
|
@@ -8244,7 +8202,7 @@ var init_Container = __esm({
|
|
|
8244
8202
|
{
|
|
8245
8203
|
className: cn(
|
|
8246
8204
|
"w-full",
|
|
8247
|
-
|
|
8205
|
+
sizeStyles7[resolvedSize],
|
|
8248
8206
|
paddingStyles3[padding],
|
|
8249
8207
|
center && "mx-auto",
|
|
8250
8208
|
className
|
|
@@ -10233,6 +10191,7 @@ var init_ComponentPatterns = __esm({
|
|
|
10233
10191
|
init_ProgressBar();
|
|
10234
10192
|
init_Card();
|
|
10235
10193
|
init_Typography();
|
|
10194
|
+
init_cn();
|
|
10236
10195
|
init_Alert();
|
|
10237
10196
|
init_Tooltip();
|
|
10238
10197
|
init_Popover();
|
|
@@ -10568,7 +10527,7 @@ var init_AnimatedCounter = __esm({
|
|
|
10568
10527
|
});
|
|
10569
10528
|
var AuthLayout;
|
|
10570
10529
|
var init_AuthLayout = __esm({
|
|
10571
|
-
"components/
|
|
10530
|
+
"components/marketing/templates/AuthLayout.tsx"() {
|
|
10572
10531
|
"use client";
|
|
10573
10532
|
init_cn();
|
|
10574
10533
|
init_Box();
|
|
@@ -19882,7 +19841,7 @@ var init_Carousel = __esm({
|
|
|
19882
19841
|
});
|
|
19883
19842
|
var CaseStudyOrganism;
|
|
19884
19843
|
var init_CaseStudyOrganism = __esm({
|
|
19885
|
-
"components/
|
|
19844
|
+
"components/marketing/organisms/CaseStudyOrganism.tsx"() {
|
|
19886
19845
|
"use client";
|
|
19887
19846
|
init_cn();
|
|
19888
19847
|
init_useEventBus();
|
|
@@ -21714,7 +21673,7 @@ function CounterMinimal({
|
|
|
21714
21673
|
Button,
|
|
21715
21674
|
{
|
|
21716
21675
|
variant: "secondary",
|
|
21717
|
-
size:
|
|
21676
|
+
size: sizeStyles8[size].button,
|
|
21718
21677
|
onClick: onDecrement,
|
|
21719
21678
|
disabled: resolved.decrementDisabled,
|
|
21720
21679
|
icon: "minus",
|
|
@@ -21726,7 +21685,7 @@ function CounterMinimal({
|
|
|
21726
21685
|
{
|
|
21727
21686
|
variant: "h1",
|
|
21728
21687
|
className: cn(
|
|
21729
|
-
|
|
21688
|
+
sizeStyles8[size].display,
|
|
21730
21689
|
"font-bold tabular-nums min-w-[3ch] text-center"
|
|
21731
21690
|
),
|
|
21732
21691
|
children: resolved.count
|
|
@@ -21736,7 +21695,7 @@ function CounterMinimal({
|
|
|
21736
21695
|
Button,
|
|
21737
21696
|
{
|
|
21738
21697
|
variant: "secondary",
|
|
21739
|
-
size:
|
|
21698
|
+
size: sizeStyles8[size].button,
|
|
21740
21699
|
onClick: onIncrement,
|
|
21741
21700
|
disabled: resolved.incrementDisabled,
|
|
21742
21701
|
icon: "plus",
|
|
@@ -21771,7 +21730,7 @@ function CounterStandard({
|
|
|
21771
21730
|
{
|
|
21772
21731
|
variant: "h1",
|
|
21773
21732
|
className: cn(
|
|
21774
|
-
|
|
21733
|
+
sizeStyles8[size].display,
|
|
21775
21734
|
"font-bold tabular-nums text-primary-600"
|
|
21776
21735
|
),
|
|
21777
21736
|
children: resolved.count
|
|
@@ -21782,7 +21741,7 @@ function CounterStandard({
|
|
|
21782
21741
|
Button,
|
|
21783
21742
|
{
|
|
21784
21743
|
variant: "secondary",
|
|
21785
|
-
size:
|
|
21744
|
+
size: sizeStyles8[size].button,
|
|
21786
21745
|
onClick: onDecrement,
|
|
21787
21746
|
disabled: resolved.decrementDisabled,
|
|
21788
21747
|
icon: "minus"
|
|
@@ -21792,7 +21751,7 @@ function CounterStandard({
|
|
|
21792
21751
|
Button,
|
|
21793
21752
|
{
|
|
21794
21753
|
variant: "primary",
|
|
21795
|
-
size:
|
|
21754
|
+
size: sizeStyles8[size].button,
|
|
21796
21755
|
onClick: onIncrement,
|
|
21797
21756
|
disabled: resolved.incrementDisabled,
|
|
21798
21757
|
icon: "plus"
|
|
@@ -21838,7 +21797,7 @@ function CounterFull({
|
|
|
21838
21797
|
{
|
|
21839
21798
|
variant: "h1",
|
|
21840
21799
|
className: cn(
|
|
21841
|
-
|
|
21800
|
+
sizeStyles8[size].display,
|
|
21842
21801
|
"font-bold tabular-nums text-primary-600"
|
|
21843
21802
|
),
|
|
21844
21803
|
children: resolved.count
|
|
@@ -21851,7 +21810,7 @@ function CounterFull({
|
|
|
21851
21810
|
Button,
|
|
21852
21811
|
{
|
|
21853
21812
|
variant: "secondary",
|
|
21854
|
-
size:
|
|
21813
|
+
size: sizeStyles8[size].button,
|
|
21855
21814
|
onClick: onDecrement,
|
|
21856
21815
|
disabled: resolved.decrementDisabled,
|
|
21857
21816
|
icon: "minus",
|
|
@@ -21862,7 +21821,7 @@ function CounterFull({
|
|
|
21862
21821
|
Button,
|
|
21863
21822
|
{
|
|
21864
21823
|
variant: "primary",
|
|
21865
|
-
size:
|
|
21824
|
+
size: sizeStyles8[size].button,
|
|
21866
21825
|
onClick: onIncrement,
|
|
21867
21826
|
disabled: resolved.incrementDisabled,
|
|
21868
21827
|
icon: "plus",
|
|
@@ -21882,7 +21841,7 @@ function CounterFull({
|
|
|
21882
21841
|
)
|
|
21883
21842
|
] }) });
|
|
21884
21843
|
}
|
|
21885
|
-
var
|
|
21844
|
+
var sizeStyles8, CounterTemplate;
|
|
21886
21845
|
var init_CounterTemplate = __esm({
|
|
21887
21846
|
"components/core/templates/CounterTemplate.tsx"() {
|
|
21888
21847
|
init_cn();
|
|
@@ -21890,7 +21849,7 @@ var init_CounterTemplate = __esm({
|
|
|
21890
21849
|
init_Stack();
|
|
21891
21850
|
init_Typography();
|
|
21892
21851
|
init_Button();
|
|
21893
|
-
|
|
21852
|
+
sizeStyles8 = {
|
|
21894
21853
|
sm: { display: "text-4xl", button: "sm" },
|
|
21895
21854
|
md: { display: "text-6xl", button: "md" },
|
|
21896
21855
|
lg: { display: "text-8xl", button: "lg" }
|
|
@@ -28351,14 +28310,14 @@ function useSafeEventBus5() {
|
|
|
28351
28310
|
} };
|
|
28352
28311
|
}
|
|
28353
28312
|
}
|
|
28354
|
-
var
|
|
28313
|
+
var sizeStyles9, LONG_PRESS_DELAY, LONG_PRESS_INTERVAL, NumberStepper;
|
|
28355
28314
|
var init_NumberStepper = __esm({
|
|
28356
28315
|
"components/core/molecules/NumberStepper.tsx"() {
|
|
28357
28316
|
"use client";
|
|
28358
28317
|
init_cn();
|
|
28359
28318
|
init_Icon();
|
|
28360
28319
|
init_useEventBus();
|
|
28361
|
-
|
|
28320
|
+
sizeStyles9 = {
|
|
28362
28321
|
sm: {
|
|
28363
28322
|
button: "w-7 h-7",
|
|
28364
28323
|
text: "text-sm min-w-[2rem]",
|
|
@@ -28396,7 +28355,7 @@ var init_NumberStepper = __esm({
|
|
|
28396
28355
|
const timeoutRef = React86.useRef(null);
|
|
28397
28356
|
const isAtMin = min !== void 0 && value <= min;
|
|
28398
28357
|
const isAtMax = max !== void 0 && value >= max;
|
|
28399
|
-
const styles =
|
|
28358
|
+
const styles = sizeStyles9[size];
|
|
28400
28359
|
const emitChange = React86.useCallback(
|
|
28401
28360
|
(newValue) => {
|
|
28402
28361
|
const clamped = Math.round(newValue / step) * step;
|
|
@@ -28537,14 +28496,14 @@ function useSafeEventBus6() {
|
|
|
28537
28496
|
} };
|
|
28538
28497
|
}
|
|
28539
28498
|
}
|
|
28540
|
-
var
|
|
28499
|
+
var sizeStyles10, StarRating;
|
|
28541
28500
|
var init_StarRating = __esm({
|
|
28542
28501
|
"components/core/molecules/StarRating.tsx"() {
|
|
28543
28502
|
"use client";
|
|
28544
28503
|
init_cn();
|
|
28545
28504
|
init_Icon();
|
|
28546
28505
|
init_useEventBus();
|
|
28547
|
-
|
|
28506
|
+
sizeStyles10 = {
|
|
28548
28507
|
sm: { star: "w-4 h-4", gap: "gap-0.5" },
|
|
28549
28508
|
md: { star: "w-6 h-6", gap: "gap-1" },
|
|
28550
28509
|
lg: { star: "w-8 h-8", gap: "gap-1.5" }
|
|
@@ -28563,7 +28522,7 @@ var init_StarRating = __esm({
|
|
|
28563
28522
|
}) => {
|
|
28564
28523
|
const [hoverValue, setHoverValue] = React86.useState(null);
|
|
28565
28524
|
const eventBus = useSafeEventBus6();
|
|
28566
|
-
const styles =
|
|
28525
|
+
const styles = sizeStyles10[size];
|
|
28567
28526
|
const displayValue = hoverValue ?? value;
|
|
28568
28527
|
const emitChange = React86.useCallback(
|
|
28569
28528
|
(newValue) => {
|
|
@@ -31490,14 +31449,14 @@ var init_EdgeDecoration = __esm({
|
|
|
31490
31449
|
EdgeDecoration.displayName = "EdgeDecoration";
|
|
31491
31450
|
}
|
|
31492
31451
|
});
|
|
31493
|
-
var
|
|
31452
|
+
var sizeStyles11, VoteStack;
|
|
31494
31453
|
var init_VoteStack = __esm({
|
|
31495
31454
|
"components/core/molecules/VoteStack.tsx"() {
|
|
31496
31455
|
"use client";
|
|
31497
31456
|
init_cn();
|
|
31498
31457
|
init_Icon();
|
|
31499
31458
|
init_useEventBus();
|
|
31500
|
-
|
|
31459
|
+
sizeStyles11 = {
|
|
31501
31460
|
sm: {
|
|
31502
31461
|
button: "w-7 h-7",
|
|
31503
31462
|
text: "text-sm min-w-[2rem]",
|
|
@@ -31525,7 +31484,7 @@ var init_VoteStack = __esm({
|
|
|
31525
31484
|
className,
|
|
31526
31485
|
label
|
|
31527
31486
|
}) => {
|
|
31528
|
-
const styles =
|
|
31487
|
+
const styles = sizeStyles11[size];
|
|
31529
31488
|
const isUp = userVote === "up";
|
|
31530
31489
|
const isDown = userVote === "down";
|
|
31531
31490
|
const eventBus = useEventBus();
|
|
@@ -31793,7 +31752,7 @@ var init_LikertScale = __esm({
|
|
|
31793
31752
|
LikertScale.displayName = "LikertScale";
|
|
31794
31753
|
}
|
|
31795
31754
|
});
|
|
31796
|
-
var DEFAULT_MATRIX_COLUMNS,
|
|
31755
|
+
var DEFAULT_MATRIX_COLUMNS, sizeStyles12, MatrixQuestion;
|
|
31797
31756
|
var init_MatrixQuestion = __esm({
|
|
31798
31757
|
"components/core/molecules/MatrixQuestion.tsx"() {
|
|
31799
31758
|
"use client";
|
|
@@ -31809,7 +31768,7 @@ var init_MatrixQuestion = __esm({
|
|
|
31809
31768
|
{ value: 4, label: "Agree" },
|
|
31810
31769
|
{ value: 5, label: "Strongly Agree" }
|
|
31811
31770
|
];
|
|
31812
|
-
|
|
31771
|
+
sizeStyles12 = {
|
|
31813
31772
|
sm: {
|
|
31814
31773
|
cell: "px-2 py-1.5 text-xs",
|
|
31815
31774
|
radio: "sm",
|
|
@@ -31832,7 +31791,7 @@ var init_MatrixQuestion = __esm({
|
|
|
31832
31791
|
size = "md",
|
|
31833
31792
|
className
|
|
31834
31793
|
}) => {
|
|
31835
|
-
const styles =
|
|
31794
|
+
const styles = sizeStyles12[size];
|
|
31836
31795
|
const safeRows = rows2 ?? [];
|
|
31837
31796
|
const safeValues = values ?? {};
|
|
31838
31797
|
const eventBus = useEventBus();
|
|
@@ -34588,7 +34547,7 @@ var init_GradientDivider = __esm({
|
|
|
34588
34547
|
});
|
|
34589
34548
|
var MarketingFooter;
|
|
34590
34549
|
var init_MarketingFooter = __esm({
|
|
34591
|
-
"components/
|
|
34550
|
+
"components/marketing/molecules/MarketingFooter.tsx"() {
|
|
34592
34551
|
"use client";
|
|
34593
34552
|
init_cn();
|
|
34594
34553
|
init_Box();
|
|
@@ -34658,7 +34617,7 @@ var init_MarketingFooter = __esm({
|
|
|
34658
34617
|
});
|
|
34659
34618
|
var PullQuote;
|
|
34660
34619
|
var init_PullQuote = __esm({
|
|
34661
|
-
"components/
|
|
34620
|
+
"components/marketing/molecules/PullQuote.tsx"() {
|
|
34662
34621
|
"use client";
|
|
34663
34622
|
init_cn();
|
|
34664
34623
|
init_Box();
|
|
@@ -38932,7 +38891,7 @@ var init_FeatureDetailPageTemplate = __esm({
|
|
|
38932
38891
|
});
|
|
38933
38892
|
var FeatureGridOrganism;
|
|
38934
38893
|
var init_FeatureGridOrganism = __esm({
|
|
38935
|
-
"components/
|
|
38894
|
+
"components/marketing/organisms/FeatureGridOrganism.tsx"() {
|
|
38936
38895
|
"use client";
|
|
38937
38896
|
init_cn();
|
|
38938
38897
|
init_useEventBus();
|
|
@@ -40279,7 +40238,7 @@ var init_GenericAppTemplate = __esm({
|
|
|
40279
40238
|
});
|
|
40280
40239
|
var HeroOrganism, _HeroClickInterceptor;
|
|
40281
40240
|
var init_HeroOrganism = __esm({
|
|
40282
|
-
"components/
|
|
40241
|
+
"components/marketing/organisms/HeroOrganism.tsx"() {
|
|
40283
40242
|
"use client";
|
|
40284
40243
|
init_cn();
|
|
40285
40244
|
init_useEventBus();
|
|
@@ -43906,7 +43865,7 @@ var init_SequencerBoard = __esm({
|
|
|
43906
43865
|
});
|
|
43907
43866
|
var ShowcaseOrganism;
|
|
43908
43867
|
var init_ShowcaseOrganism = __esm({
|
|
43909
|
-
"components/
|
|
43868
|
+
"components/marketing/organisms/ShowcaseOrganism.tsx"() {
|
|
43910
43869
|
"use client";
|
|
43911
43870
|
init_cn();
|
|
43912
43871
|
init_useEventBus();
|
|
@@ -45331,7 +45290,7 @@ var init_StatsOrganism = __esm({
|
|
|
45331
45290
|
});
|
|
45332
45291
|
var StepFlowOrganism;
|
|
45333
45292
|
var init_StepFlowOrganism = __esm({
|
|
45334
|
-
"components/
|
|
45293
|
+
"components/marketing/organisms/StepFlowOrganism.tsx"() {
|
|
45335
45294
|
"use client";
|
|
45336
45295
|
init_cn();
|
|
45337
45296
|
init_Stack();
|