@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/providers/index.js
CHANGED
|
@@ -1715,11 +1715,9 @@ var init_Dialog = __esm({
|
|
|
1715
1715
|
// components/core/atoms/Typography.tsx
|
|
1716
1716
|
var Typography_exports = {};
|
|
1717
1717
|
__export(Typography_exports, {
|
|
1718
|
-
Heading: () => Heading,
|
|
1719
|
-
Text: () => Text,
|
|
1720
1718
|
Typography: () => Typography
|
|
1721
1719
|
});
|
|
1722
|
-
var variantStyles2, colorStyles, weightStyles, defaultElements, typographySizeStyles, overflowStyles2, Typography
|
|
1720
|
+
var variantStyles2, colorStyles, weightStyles, defaultElements, typographySizeStyles, overflowStyles2, Typography;
|
|
1723
1721
|
var init_Typography = __esm({
|
|
1724
1722
|
"components/core/atoms/Typography.tsx"() {
|
|
1725
1723
|
init_cn();
|
|
@@ -1830,46 +1828,6 @@ var init_Typography = __esm({
|
|
|
1830
1828
|
);
|
|
1831
1829
|
};
|
|
1832
1830
|
Typography.displayName = "Typography";
|
|
1833
|
-
sizeStyles2 = {
|
|
1834
|
-
xs: "text-xs",
|
|
1835
|
-
sm: "text-sm",
|
|
1836
|
-
md: "text-base",
|
|
1837
|
-
lg: "text-lg",
|
|
1838
|
-
xl: "text-xl",
|
|
1839
|
-
"2xl": "text-2xl",
|
|
1840
|
-
"3xl": "text-3xl"
|
|
1841
|
-
};
|
|
1842
|
-
Heading = ({
|
|
1843
|
-
level = 2,
|
|
1844
|
-
size,
|
|
1845
|
-
className,
|
|
1846
|
-
...props
|
|
1847
|
-
}) => {
|
|
1848
|
-
const variant = `h${level}`;
|
|
1849
|
-
const sizeClass = size ? sizeStyles2[size] : void 0;
|
|
1850
|
-
return /* @__PURE__ */ jsx(
|
|
1851
|
-
Typography,
|
|
1852
|
-
{
|
|
1853
|
-
variant,
|
|
1854
|
-
className: cn(sizeClass, className),
|
|
1855
|
-
...props
|
|
1856
|
-
}
|
|
1857
|
-
);
|
|
1858
|
-
};
|
|
1859
|
-
Heading.displayName = "Heading";
|
|
1860
|
-
Text = ({
|
|
1861
|
-
variant = "body",
|
|
1862
|
-
...props
|
|
1863
|
-
}) => {
|
|
1864
|
-
return /* @__PURE__ */ jsx(
|
|
1865
|
-
Typography,
|
|
1866
|
-
{
|
|
1867
|
-
variant,
|
|
1868
|
-
...props
|
|
1869
|
-
}
|
|
1870
|
-
);
|
|
1871
|
-
};
|
|
1872
|
-
Text.displayName = "Text";
|
|
1873
1831
|
}
|
|
1874
1832
|
});
|
|
1875
1833
|
var Overlay;
|
|
@@ -2311,7 +2269,7 @@ var init_Drawer = __esm({
|
|
|
2311
2269
|
Drawer.displayName = "Drawer";
|
|
2312
2270
|
}
|
|
2313
2271
|
});
|
|
2314
|
-
var variantStyles3,
|
|
2272
|
+
var variantStyles3, sizeStyles2, Badge;
|
|
2315
2273
|
var init_Badge = __esm({
|
|
2316
2274
|
"components/core/atoms/Badge.tsx"() {
|
|
2317
2275
|
init_cn();
|
|
@@ -2348,7 +2306,7 @@ var init_Badge = __esm({
|
|
|
2348
2306
|
"border-[length:var(--border-width-thin)] border-border"
|
|
2349
2307
|
].join(" ")
|
|
2350
2308
|
};
|
|
2351
|
-
|
|
2309
|
+
sizeStyles2 = {
|
|
2352
2310
|
sm: "px-2 py-0.5 text-xs",
|
|
2353
2311
|
md: "px-2.5 py-1 text-sm",
|
|
2354
2312
|
lg: "px-3 py-1.5 text-base"
|
|
@@ -2368,7 +2326,7 @@ var init_Badge = __esm({
|
|
|
2368
2326
|
className: cn(
|
|
2369
2327
|
"inline-flex items-center gap-1 font-bold rounded-sm",
|
|
2370
2328
|
variantStyles3[variant],
|
|
2371
|
-
|
|
2329
|
+
sizeStyles2[size],
|
|
2372
2330
|
onRemove && "pr-1",
|
|
2373
2331
|
className
|
|
2374
2332
|
),
|
|
@@ -3752,7 +3710,7 @@ var init_Card = __esm({
|
|
|
3752
3710
|
CardFooter.displayName = "CardFooter";
|
|
3753
3711
|
}
|
|
3754
3712
|
});
|
|
3755
|
-
var variantStyles5,
|
|
3713
|
+
var variantStyles5, sizeStyles3, iconSizes, FilterPill;
|
|
3756
3714
|
var init_FilterPill = __esm({
|
|
3757
3715
|
"components/core/atoms/FilterPill.tsx"() {
|
|
3758
3716
|
init_cn();
|
|
@@ -3786,7 +3744,7 @@ var init_FilterPill = __esm({
|
|
|
3786
3744
|
"border-[length:var(--border-width-thin)] border-border"
|
|
3787
3745
|
].join(" ")
|
|
3788
3746
|
};
|
|
3789
|
-
|
|
3747
|
+
sizeStyles3 = {
|
|
3790
3748
|
sm: "px-2 py-0.5 text-xs",
|
|
3791
3749
|
md: "px-2.5 py-1 text-sm",
|
|
3792
3750
|
lg: "px-3 py-1.5 text-base"
|
|
@@ -3830,7 +3788,7 @@ var init_FilterPill = __esm({
|
|
|
3830
3788
|
className: cn(
|
|
3831
3789
|
"inline-flex items-center gap-1 font-bold rounded-pill",
|
|
3832
3790
|
variantStyles5[variant],
|
|
3833
|
-
|
|
3791
|
+
sizeStyles3[size],
|
|
3834
3792
|
(onClick || clickEvent) && "cursor-pointer",
|
|
3835
3793
|
className
|
|
3836
3794
|
),
|
|
@@ -3862,12 +3820,12 @@ var init_FilterPill = __esm({
|
|
|
3862
3820
|
FilterPill.displayName = "FilterPill";
|
|
3863
3821
|
}
|
|
3864
3822
|
});
|
|
3865
|
-
var
|
|
3823
|
+
var sizeStyles4, Spinner;
|
|
3866
3824
|
var init_Spinner = __esm({
|
|
3867
3825
|
"components/core/atoms/Spinner.tsx"() {
|
|
3868
3826
|
init_cn();
|
|
3869
3827
|
init_Icon();
|
|
3870
|
-
|
|
3828
|
+
sizeStyles4 = {
|
|
3871
3829
|
xs: "h-3 w-3",
|
|
3872
3830
|
sm: "h-icon-default w-icon-default",
|
|
3873
3831
|
md: "h-6 w-6",
|
|
@@ -3881,7 +3839,7 @@ var init_Spinner = __esm({
|
|
|
3881
3839
|
ref,
|
|
3882
3840
|
className: cn("text-foreground", className),
|
|
3883
3841
|
...props,
|
|
3884
|
-
children: /* @__PURE__ */ jsx(Icon, { name: "loader", className: cn("animate-spin",
|
|
3842
|
+
children: /* @__PURE__ */ jsx(Icon, { name: "loader", className: cn("animate-spin", sizeStyles4[size]) })
|
|
3885
3843
|
}
|
|
3886
3844
|
);
|
|
3887
3845
|
}
|
|
@@ -5185,7 +5143,7 @@ var init_TimeSlotCell = __esm({
|
|
|
5185
5143
|
TimeSlotCell.displayName = "TimeSlotCell";
|
|
5186
5144
|
}
|
|
5187
5145
|
});
|
|
5188
|
-
var statusColors, pulseRingColors,
|
|
5146
|
+
var statusColors, pulseRingColors, sizeStyles5, StatusDot;
|
|
5189
5147
|
var init_StatusDot = __esm({
|
|
5190
5148
|
"components/core/atoms/StatusDot.tsx"() {
|
|
5191
5149
|
init_cn();
|
|
@@ -5205,7 +5163,7 @@ var init_StatusDot = __esm({
|
|
|
5205
5163
|
warning: "ring-warning",
|
|
5206
5164
|
critical: "ring-error"
|
|
5207
5165
|
};
|
|
5208
|
-
|
|
5166
|
+
sizeStyles5 = {
|
|
5209
5167
|
sm: "w-2 h-2",
|
|
5210
5168
|
md: "w-2.5 h-2.5",
|
|
5211
5169
|
lg: "w-3 h-3"
|
|
@@ -5219,7 +5177,7 @@ var init_StatusDot = __esm({
|
|
|
5219
5177
|
className: cn(
|
|
5220
5178
|
"inline-block rounded-full flex-shrink-0",
|
|
5221
5179
|
statusColors[status],
|
|
5222
|
-
|
|
5180
|
+
sizeStyles5[size],
|
|
5223
5181
|
pulse && [
|
|
5224
5182
|
"animate-pulse",
|
|
5225
5183
|
"ring-2 ring-offset-1",
|
|
@@ -5249,12 +5207,12 @@ function resolveColor(dir, invert) {
|
|
|
5249
5207
|
const isGood = invert ? !isPositive : isPositive;
|
|
5250
5208
|
return isGood ? "text-success" : "text-error";
|
|
5251
5209
|
}
|
|
5252
|
-
var
|
|
5210
|
+
var sizeStyles6, iconNameMap, TrendIndicator;
|
|
5253
5211
|
var init_TrendIndicator = __esm({
|
|
5254
5212
|
"components/core/atoms/TrendIndicator.tsx"() {
|
|
5255
5213
|
init_Icon();
|
|
5256
5214
|
init_cn();
|
|
5257
|
-
|
|
5215
|
+
sizeStyles6 = {
|
|
5258
5216
|
sm: { icon: "w-3 h-3", text: "text-xs" },
|
|
5259
5217
|
md: { icon: "w-4 h-4", text: "text-sm" },
|
|
5260
5218
|
lg: { icon: "w-5 h-5", text: "text-base" }
|
|
@@ -5278,7 +5236,7 @@ var init_TrendIndicator = __esm({
|
|
|
5278
5236
|
const dir = resolveDirection(value, direction);
|
|
5279
5237
|
const colorClass = resolveColor(dir, invert);
|
|
5280
5238
|
const iconName = iconNameMap[dir];
|
|
5281
|
-
const styles =
|
|
5239
|
+
const styles = sizeStyles6[size];
|
|
5282
5240
|
const formattedValue = value !== void 0 ? `${value > 0 ? "+" : ""}${value}%` : void 0;
|
|
5283
5241
|
const ariaLabel = label ?? (formattedValue ? `${dir} ${formattedValue}` : dir);
|
|
5284
5242
|
return /* @__PURE__ */ jsxs(
|
|
@@ -6943,7 +6901,7 @@ var init_ControlButton = __esm({
|
|
|
6943
6901
|
}
|
|
6944
6902
|
});
|
|
6945
6903
|
function Sprite({
|
|
6946
|
-
spritesheet,
|
|
6904
|
+
spritesheet = "https://almadar-kflow-assets.web.app/shared/isometric-blocks/Spritesheet/allTiles_sheet.png",
|
|
6947
6905
|
frameWidth,
|
|
6948
6906
|
frameHeight,
|
|
6949
6907
|
frame,
|
|
@@ -7623,7 +7581,7 @@ var init_DamageNumber = __esm({
|
|
|
7623
7581
|
function DialogueBubble({
|
|
7624
7582
|
speaker,
|
|
7625
7583
|
text,
|
|
7626
|
-
portrait,
|
|
7584
|
+
portrait = "https://almadar-kflow-assets.web.app/shared/characters/archetypes/00_base_model.png",
|
|
7627
7585
|
position = "bottom",
|
|
7628
7586
|
className
|
|
7629
7587
|
}) {
|
|
@@ -8598,11 +8556,11 @@ var init_wrapCallbackForEvent = __esm({
|
|
|
8598
8556
|
"runtime/wrapCallbackForEvent.ts"() {
|
|
8599
8557
|
}
|
|
8600
8558
|
});
|
|
8601
|
-
var
|
|
8559
|
+
var sizeStyles7, paddingStyles3, Container;
|
|
8602
8560
|
var init_Container = __esm({
|
|
8603
8561
|
"components/core/molecules/Container.tsx"() {
|
|
8604
8562
|
init_cn();
|
|
8605
|
-
|
|
8563
|
+
sizeStyles7 = {
|
|
8606
8564
|
xs: "max-w-xs",
|
|
8607
8565
|
// 320px
|
|
8608
8566
|
sm: "max-w-screen-sm",
|
|
@@ -8640,7 +8598,7 @@ var init_Container = __esm({
|
|
|
8640
8598
|
{
|
|
8641
8599
|
className: cn(
|
|
8642
8600
|
"w-full",
|
|
8643
|
-
|
|
8601
|
+
sizeStyles7[resolvedSize],
|
|
8644
8602
|
paddingStyles3[padding],
|
|
8645
8603
|
center && "mx-auto",
|
|
8646
8604
|
className
|
|
@@ -10629,6 +10587,7 @@ var init_ComponentPatterns = __esm({
|
|
|
10629
10587
|
init_ProgressBar();
|
|
10630
10588
|
init_Card();
|
|
10631
10589
|
init_Typography();
|
|
10590
|
+
init_cn();
|
|
10632
10591
|
init_Alert();
|
|
10633
10592
|
init_Tooltip();
|
|
10634
10593
|
init_Popover();
|
|
@@ -10964,7 +10923,7 @@ var init_AnimatedCounter = __esm({
|
|
|
10964
10923
|
});
|
|
10965
10924
|
var AuthLayout;
|
|
10966
10925
|
var init_AuthLayout = __esm({
|
|
10967
|
-
"components/
|
|
10926
|
+
"components/marketing/templates/AuthLayout.tsx"() {
|
|
10968
10927
|
"use client";
|
|
10969
10928
|
init_cn();
|
|
10970
10929
|
init_Box();
|
|
@@ -20266,7 +20225,7 @@ var init_Carousel = __esm({
|
|
|
20266
20225
|
});
|
|
20267
20226
|
var CaseStudyOrganism;
|
|
20268
20227
|
var init_CaseStudyOrganism = __esm({
|
|
20269
|
-
"components/
|
|
20228
|
+
"components/marketing/organisms/CaseStudyOrganism.tsx"() {
|
|
20270
20229
|
"use client";
|
|
20271
20230
|
init_cn();
|
|
20272
20231
|
init_useEventBus();
|
|
@@ -22098,7 +22057,7 @@ function CounterMinimal({
|
|
|
22098
22057
|
Button,
|
|
22099
22058
|
{
|
|
22100
22059
|
variant: "secondary",
|
|
22101
|
-
size:
|
|
22060
|
+
size: sizeStyles8[size].button,
|
|
22102
22061
|
onClick: onDecrement,
|
|
22103
22062
|
disabled: resolved.decrementDisabled,
|
|
22104
22063
|
icon: "minus",
|
|
@@ -22110,7 +22069,7 @@ function CounterMinimal({
|
|
|
22110
22069
|
{
|
|
22111
22070
|
variant: "h1",
|
|
22112
22071
|
className: cn(
|
|
22113
|
-
|
|
22072
|
+
sizeStyles8[size].display,
|
|
22114
22073
|
"font-bold tabular-nums min-w-[3ch] text-center"
|
|
22115
22074
|
),
|
|
22116
22075
|
children: resolved.count
|
|
@@ -22120,7 +22079,7 @@ function CounterMinimal({
|
|
|
22120
22079
|
Button,
|
|
22121
22080
|
{
|
|
22122
22081
|
variant: "secondary",
|
|
22123
|
-
size:
|
|
22082
|
+
size: sizeStyles8[size].button,
|
|
22124
22083
|
onClick: onIncrement,
|
|
22125
22084
|
disabled: resolved.incrementDisabled,
|
|
22126
22085
|
icon: "plus",
|
|
@@ -22155,7 +22114,7 @@ function CounterStandard({
|
|
|
22155
22114
|
{
|
|
22156
22115
|
variant: "h1",
|
|
22157
22116
|
className: cn(
|
|
22158
|
-
|
|
22117
|
+
sizeStyles8[size].display,
|
|
22159
22118
|
"font-bold tabular-nums text-primary-600"
|
|
22160
22119
|
),
|
|
22161
22120
|
children: resolved.count
|
|
@@ -22166,7 +22125,7 @@ function CounterStandard({
|
|
|
22166
22125
|
Button,
|
|
22167
22126
|
{
|
|
22168
22127
|
variant: "secondary",
|
|
22169
|
-
size:
|
|
22128
|
+
size: sizeStyles8[size].button,
|
|
22170
22129
|
onClick: onDecrement,
|
|
22171
22130
|
disabled: resolved.decrementDisabled,
|
|
22172
22131
|
icon: "minus"
|
|
@@ -22176,7 +22135,7 @@ function CounterStandard({
|
|
|
22176
22135
|
Button,
|
|
22177
22136
|
{
|
|
22178
22137
|
variant: "primary",
|
|
22179
|
-
size:
|
|
22138
|
+
size: sizeStyles8[size].button,
|
|
22180
22139
|
onClick: onIncrement,
|
|
22181
22140
|
disabled: resolved.incrementDisabled,
|
|
22182
22141
|
icon: "plus"
|
|
@@ -22222,7 +22181,7 @@ function CounterFull({
|
|
|
22222
22181
|
{
|
|
22223
22182
|
variant: "h1",
|
|
22224
22183
|
className: cn(
|
|
22225
|
-
|
|
22184
|
+
sizeStyles8[size].display,
|
|
22226
22185
|
"font-bold tabular-nums text-primary-600"
|
|
22227
22186
|
),
|
|
22228
22187
|
children: resolved.count
|
|
@@ -22235,7 +22194,7 @@ function CounterFull({
|
|
|
22235
22194
|
Button,
|
|
22236
22195
|
{
|
|
22237
22196
|
variant: "secondary",
|
|
22238
|
-
size:
|
|
22197
|
+
size: sizeStyles8[size].button,
|
|
22239
22198
|
onClick: onDecrement,
|
|
22240
22199
|
disabled: resolved.decrementDisabled,
|
|
22241
22200
|
icon: "minus",
|
|
@@ -22246,7 +22205,7 @@ function CounterFull({
|
|
|
22246
22205
|
Button,
|
|
22247
22206
|
{
|
|
22248
22207
|
variant: "primary",
|
|
22249
|
-
size:
|
|
22208
|
+
size: sizeStyles8[size].button,
|
|
22250
22209
|
onClick: onIncrement,
|
|
22251
22210
|
disabled: resolved.incrementDisabled,
|
|
22252
22211
|
icon: "plus",
|
|
@@ -22266,7 +22225,7 @@ function CounterFull({
|
|
|
22266
22225
|
)
|
|
22267
22226
|
] }) });
|
|
22268
22227
|
}
|
|
22269
|
-
var
|
|
22228
|
+
var sizeStyles8, CounterTemplate;
|
|
22270
22229
|
var init_CounterTemplate = __esm({
|
|
22271
22230
|
"components/core/templates/CounterTemplate.tsx"() {
|
|
22272
22231
|
init_cn();
|
|
@@ -22274,7 +22233,7 @@ var init_CounterTemplate = __esm({
|
|
|
22274
22233
|
init_Stack();
|
|
22275
22234
|
init_Typography();
|
|
22276
22235
|
init_Button();
|
|
22277
|
-
|
|
22236
|
+
sizeStyles8 = {
|
|
22278
22237
|
sm: { display: "text-4xl", button: "sm" },
|
|
22279
22238
|
md: { display: "text-6xl", button: "md" },
|
|
22280
22239
|
lg: { display: "text-8xl", button: "lg" }
|
|
@@ -28735,14 +28694,14 @@ function useSafeEventBus5() {
|
|
|
28735
28694
|
} };
|
|
28736
28695
|
}
|
|
28737
28696
|
}
|
|
28738
|
-
var
|
|
28697
|
+
var sizeStyles9, LONG_PRESS_DELAY, LONG_PRESS_INTERVAL, NumberStepper;
|
|
28739
28698
|
var init_NumberStepper = __esm({
|
|
28740
28699
|
"components/core/molecules/NumberStepper.tsx"() {
|
|
28741
28700
|
"use client";
|
|
28742
28701
|
init_cn();
|
|
28743
28702
|
init_Icon();
|
|
28744
28703
|
init_useEventBus();
|
|
28745
|
-
|
|
28704
|
+
sizeStyles9 = {
|
|
28746
28705
|
sm: {
|
|
28747
28706
|
button: "w-7 h-7",
|
|
28748
28707
|
text: "text-sm min-w-[2rem]",
|
|
@@ -28780,7 +28739,7 @@ var init_NumberStepper = __esm({
|
|
|
28780
28739
|
const timeoutRef = useRef(null);
|
|
28781
28740
|
const isAtMin = min !== void 0 && value <= min;
|
|
28782
28741
|
const isAtMax = max !== void 0 && value >= max;
|
|
28783
|
-
const styles =
|
|
28742
|
+
const styles = sizeStyles9[size];
|
|
28784
28743
|
const emitChange = useCallback(
|
|
28785
28744
|
(newValue) => {
|
|
28786
28745
|
const clamped = Math.round(newValue / step) * step;
|
|
@@ -28921,14 +28880,14 @@ function useSafeEventBus6() {
|
|
|
28921
28880
|
} };
|
|
28922
28881
|
}
|
|
28923
28882
|
}
|
|
28924
|
-
var
|
|
28883
|
+
var sizeStyles10, StarRating;
|
|
28925
28884
|
var init_StarRating = __esm({
|
|
28926
28885
|
"components/core/molecules/StarRating.tsx"() {
|
|
28927
28886
|
"use client";
|
|
28928
28887
|
init_cn();
|
|
28929
28888
|
init_Icon();
|
|
28930
28889
|
init_useEventBus();
|
|
28931
|
-
|
|
28890
|
+
sizeStyles10 = {
|
|
28932
28891
|
sm: { star: "w-4 h-4", gap: "gap-0.5" },
|
|
28933
28892
|
md: { star: "w-6 h-6", gap: "gap-1" },
|
|
28934
28893
|
lg: { star: "w-8 h-8", gap: "gap-1.5" }
|
|
@@ -28947,7 +28906,7 @@ var init_StarRating = __esm({
|
|
|
28947
28906
|
}) => {
|
|
28948
28907
|
const [hoverValue, setHoverValue] = useState(null);
|
|
28949
28908
|
const eventBus = useSafeEventBus6();
|
|
28950
|
-
const styles =
|
|
28909
|
+
const styles = sizeStyles10[size];
|
|
28951
28910
|
const displayValue = hoverValue ?? value;
|
|
28952
28911
|
const emitChange = useCallback(
|
|
28953
28912
|
(newValue) => {
|
|
@@ -31874,14 +31833,14 @@ var init_EdgeDecoration = __esm({
|
|
|
31874
31833
|
EdgeDecoration.displayName = "EdgeDecoration";
|
|
31875
31834
|
}
|
|
31876
31835
|
});
|
|
31877
|
-
var
|
|
31836
|
+
var sizeStyles11, VoteStack;
|
|
31878
31837
|
var init_VoteStack = __esm({
|
|
31879
31838
|
"components/core/molecules/VoteStack.tsx"() {
|
|
31880
31839
|
"use client";
|
|
31881
31840
|
init_cn();
|
|
31882
31841
|
init_Icon();
|
|
31883
31842
|
init_useEventBus();
|
|
31884
|
-
|
|
31843
|
+
sizeStyles11 = {
|
|
31885
31844
|
sm: {
|
|
31886
31845
|
button: "w-7 h-7",
|
|
31887
31846
|
text: "text-sm min-w-[2rem]",
|
|
@@ -31909,7 +31868,7 @@ var init_VoteStack = __esm({
|
|
|
31909
31868
|
className,
|
|
31910
31869
|
label
|
|
31911
31870
|
}) => {
|
|
31912
|
-
const styles =
|
|
31871
|
+
const styles = sizeStyles11[size];
|
|
31913
31872
|
const isUp = userVote === "up";
|
|
31914
31873
|
const isDown = userVote === "down";
|
|
31915
31874
|
const eventBus = useEventBus();
|
|
@@ -32177,7 +32136,7 @@ var init_LikertScale = __esm({
|
|
|
32177
32136
|
LikertScale.displayName = "LikertScale";
|
|
32178
32137
|
}
|
|
32179
32138
|
});
|
|
32180
|
-
var DEFAULT_MATRIX_COLUMNS,
|
|
32139
|
+
var DEFAULT_MATRIX_COLUMNS, sizeStyles12, MatrixQuestion;
|
|
32181
32140
|
var init_MatrixQuestion = __esm({
|
|
32182
32141
|
"components/core/molecules/MatrixQuestion.tsx"() {
|
|
32183
32142
|
"use client";
|
|
@@ -32193,7 +32152,7 @@ var init_MatrixQuestion = __esm({
|
|
|
32193
32152
|
{ value: 4, label: "Agree" },
|
|
32194
32153
|
{ value: 5, label: "Strongly Agree" }
|
|
32195
32154
|
];
|
|
32196
|
-
|
|
32155
|
+
sizeStyles12 = {
|
|
32197
32156
|
sm: {
|
|
32198
32157
|
cell: "px-2 py-1.5 text-xs",
|
|
32199
32158
|
radio: "sm",
|
|
@@ -32216,7 +32175,7 @@ var init_MatrixQuestion = __esm({
|
|
|
32216
32175
|
size = "md",
|
|
32217
32176
|
className
|
|
32218
32177
|
}) => {
|
|
32219
|
-
const styles =
|
|
32178
|
+
const styles = sizeStyles12[size];
|
|
32220
32179
|
const safeRows = rows2 ?? [];
|
|
32221
32180
|
const safeValues = values ?? {};
|
|
32222
32181
|
const eventBus = useEventBus();
|
|
@@ -34972,7 +34931,7 @@ var init_GradientDivider = __esm({
|
|
|
34972
34931
|
});
|
|
34973
34932
|
var MarketingFooter;
|
|
34974
34933
|
var init_MarketingFooter = __esm({
|
|
34975
|
-
"components/
|
|
34934
|
+
"components/marketing/molecules/MarketingFooter.tsx"() {
|
|
34976
34935
|
"use client";
|
|
34977
34936
|
init_cn();
|
|
34978
34937
|
init_Box();
|
|
@@ -35042,7 +35001,7 @@ var init_MarketingFooter = __esm({
|
|
|
35042
35001
|
});
|
|
35043
35002
|
var PullQuote;
|
|
35044
35003
|
var init_PullQuote = __esm({
|
|
35045
|
-
"components/
|
|
35004
|
+
"components/marketing/molecules/PullQuote.tsx"() {
|
|
35046
35005
|
"use client";
|
|
35047
35006
|
init_cn();
|
|
35048
35007
|
init_Box();
|
|
@@ -39316,7 +39275,7 @@ var init_FeatureDetailPageTemplate = __esm({
|
|
|
39316
39275
|
});
|
|
39317
39276
|
var FeatureGridOrganism;
|
|
39318
39277
|
var init_FeatureGridOrganism = __esm({
|
|
39319
|
-
"components/
|
|
39278
|
+
"components/marketing/organisms/FeatureGridOrganism.tsx"() {
|
|
39320
39279
|
"use client";
|
|
39321
39280
|
init_cn();
|
|
39322
39281
|
init_useEventBus();
|
|
@@ -40663,7 +40622,7 @@ var init_GenericAppTemplate = __esm({
|
|
|
40663
40622
|
});
|
|
40664
40623
|
var HeroOrganism, _HeroClickInterceptor;
|
|
40665
40624
|
var init_HeroOrganism = __esm({
|
|
40666
|
-
"components/
|
|
40625
|
+
"components/marketing/organisms/HeroOrganism.tsx"() {
|
|
40667
40626
|
"use client";
|
|
40668
40627
|
init_cn();
|
|
40669
40628
|
init_useEventBus();
|
|
@@ -44271,7 +44230,7 @@ var init_SequencerBoard = __esm({
|
|
|
44271
44230
|
});
|
|
44272
44231
|
var ShowcaseOrganism;
|
|
44273
44232
|
var init_ShowcaseOrganism = __esm({
|
|
44274
|
-
"components/
|
|
44233
|
+
"components/marketing/organisms/ShowcaseOrganism.tsx"() {
|
|
44275
44234
|
"use client";
|
|
44276
44235
|
init_cn();
|
|
44277
44236
|
init_useEventBus();
|
|
@@ -45696,7 +45655,7 @@ var init_StatsOrganism = __esm({
|
|
|
45696
45655
|
});
|
|
45697
45656
|
var StepFlowOrganism;
|
|
45698
45657
|
var init_StepFlowOrganism = __esm({
|
|
45699
|
-
"components/
|
|
45658
|
+
"components/marketing/organisms/StepFlowOrganism.tsx"() {
|
|
45700
45659
|
"use client";
|
|
45701
45660
|
init_cn();
|
|
45702
45661
|
init_Stack();
|