@almadar/ui 4.57.4 → 5.0.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.
- package/dist/avl/index.cjs +270 -69
- package/dist/avl/index.js +270 -69
- package/dist/components/index.cjs +101 -68
- package/dist/components/index.js +101 -68
- package/dist/context/index.cjs +199 -0
- package/dist/context/index.js +199 -0
- package/dist/context/themeTokens.d.ts +1 -1
- package/dist/docs/index.cjs +21 -21
- package/dist/docs/index.js +21 -21
- package/dist/marketing/index.cjs +18 -18
- package/dist/marketing/index.js +18 -18
- package/dist/providers/index.cjs +101 -68
- package/dist/providers/index.js +101 -68
- package/dist/runtime/index.cjs +270 -69
- package/dist/runtime/index.js +270 -69
- package/package.json +2 -2
- package/tailwind-preset.cjs +118 -3
- package/themes/_contract.md +198 -0
- package/themes/almadar-website.css +212 -0
- package/themes/almadar.css +210 -0
- package/themes/arctic.css +210 -0
- package/themes/atelier.css +427 -0
- package/themes/copper.css +210 -0
- package/themes/ember.css +210 -0
- package/themes/forest.css +210 -0
- package/themes/gazette.css +411 -0
- package/themes/index.css +7 -0
- package/themes/kiosk.css +412 -0
- package/themes/lavender.css +210 -0
- package/themes/midnight.css +210 -0
- package/themes/minimalist.css +210 -0
- package/themes/neon.css +210 -0
- package/themes/ocean.css +210 -0
- package/themes/prism.css +406 -0
- package/themes/rose.css +210 -0
- package/themes/sand.css +210 -0
- package/themes/slate.css +210 -0
- package/themes/sunset.css +210 -0
- package/themes/terminal.css +422 -0
- package/themes/trait-wars.css +210 -0
- package/themes/wireframe.css +216 -0
package/dist/docs/index.js
CHANGED
|
@@ -3108,7 +3108,7 @@ var sizeStyles2 = {
|
|
|
3108
3108
|
};
|
|
3109
3109
|
var iconSizeStyles = {
|
|
3110
3110
|
sm: "h-3.5 w-3.5",
|
|
3111
|
-
md: "h-
|
|
3111
|
+
md: "h-icon-default w-icon-default",
|
|
3112
3112
|
lg: "h-5 w-5"
|
|
3113
3113
|
};
|
|
3114
3114
|
function resolveIconProp(value, sizeClass) {
|
|
@@ -3180,7 +3180,7 @@ var Button = React5.forwardRef(
|
|
|
3180
3180
|
...props,
|
|
3181
3181
|
"data-testid": props["data-testid"] ?? (action ? `action-${action}` : void 0),
|
|
3182
3182
|
children: [
|
|
3183
|
-
isLoading ? /* @__PURE__ */ jsx(Loader2, { className: "h-
|
|
3183
|
+
isLoading ? /* @__PURE__ */ jsx(Loader2, { className: "h-icon-default w-icon-default animate-spin" }) : resolvedLeftIcon && /* @__PURE__ */ jsx("span", { className: "flex-shrink-0", children: resolvedLeftIcon }),
|
|
3184
3184
|
children || label,
|
|
3185
3185
|
resolvedRightIcon && !isLoading && /* @__PURE__ */ jsx("span", { className: "flex-shrink-0", children: resolvedRightIcon })
|
|
3186
3186
|
]
|
|
@@ -3193,23 +3193,23 @@ var variantStyles3 = {
|
|
|
3193
3193
|
default: [
|
|
3194
3194
|
"bg-card",
|
|
3195
3195
|
"border-[length:var(--border-width)] border-border",
|
|
3196
|
-
"shadow-
|
|
3196
|
+
"shadow-elevation-card",
|
|
3197
3197
|
"transition-all duration-[var(--transition-normal)]",
|
|
3198
|
-
"hover:shadow-
|
|
3198
|
+
"hover:shadow-elevation-dialog hover:-translate-y-0.5"
|
|
3199
3199
|
].join(" "),
|
|
3200
3200
|
bordered: [
|
|
3201
3201
|
"bg-card",
|
|
3202
3202
|
"border-[length:var(--border-width)] border-border",
|
|
3203
|
-
"shadow-
|
|
3203
|
+
"shadow-elevation-card",
|
|
3204
3204
|
"transition-all duration-[var(--transition-normal)]",
|
|
3205
|
-
"hover:shadow-
|
|
3205
|
+
"hover:shadow-elevation-dialog hover:-translate-y-0.5"
|
|
3206
3206
|
].join(" "),
|
|
3207
3207
|
elevated: [
|
|
3208
3208
|
"bg-card",
|
|
3209
3209
|
"border-[length:var(--border-width)] border-border",
|
|
3210
3210
|
"shadow",
|
|
3211
3211
|
"transition-all duration-[var(--transition-normal)]",
|
|
3212
|
-
"hover:shadow-
|
|
3212
|
+
"hover:shadow-elevation-dialog hover:-translate-y-0.5"
|
|
3213
3213
|
].join(" "),
|
|
3214
3214
|
// Interactive variant with theme-specific hover effects
|
|
3215
3215
|
interactive: [
|
|
@@ -3218,20 +3218,20 @@ var variantStyles3 = {
|
|
|
3218
3218
|
"shadow",
|
|
3219
3219
|
"cursor-pointer",
|
|
3220
3220
|
"transition-all duration-[var(--transition-normal)]",
|
|
3221
|
-
"hover:shadow-
|
|
3221
|
+
"hover:shadow-elevation-dialog"
|
|
3222
3222
|
].join(" ")
|
|
3223
3223
|
};
|
|
3224
3224
|
var paddingStyles2 = {
|
|
3225
3225
|
none: "",
|
|
3226
|
-
sm: "p-
|
|
3227
|
-
md: "p-
|
|
3228
|
-
lg: "p-
|
|
3226
|
+
sm: "p-card-sm",
|
|
3227
|
+
md: "p-card-md",
|
|
3228
|
+
lg: "p-card-lg"
|
|
3229
3229
|
};
|
|
3230
3230
|
var shadowStyles2 = {
|
|
3231
3231
|
none: "shadow-none",
|
|
3232
|
-
sm: "shadow-
|
|
3232
|
+
sm: "shadow-elevation-card",
|
|
3233
3233
|
md: "shadow",
|
|
3234
|
-
lg: "shadow-
|
|
3234
|
+
lg: "shadow-elevation-dialog"
|
|
3235
3235
|
};
|
|
3236
3236
|
var Card = React5.forwardRef(
|
|
3237
3237
|
({
|
|
@@ -3249,7 +3249,7 @@ var Card = React5.forwardRef(
|
|
|
3249
3249
|
{
|
|
3250
3250
|
ref,
|
|
3251
3251
|
className: cn(
|
|
3252
|
-
"rounded-
|
|
3252
|
+
"rounded-container",
|
|
3253
3253
|
"transition-all duration-[var(--transition-normal)]",
|
|
3254
3254
|
variantStyles3[variant],
|
|
3255
3255
|
paddingStyles2[padding],
|
|
@@ -3385,7 +3385,7 @@ var Input = React5.forwardRef(
|
|
|
3385
3385
|
...props
|
|
3386
3386
|
}, ref) => {
|
|
3387
3387
|
const type = inputType || htmlType || "text";
|
|
3388
|
-
const resolvedLeftIcon = leftIcon || IconComponent && /* @__PURE__ */ jsx(IconComponent, { className: "h-
|
|
3388
|
+
const resolvedLeftIcon = leftIcon || IconComponent && /* @__PURE__ */ jsx(IconComponent, { className: "h-icon-default w-icon-default" });
|
|
3389
3389
|
const showClearButton = clearable && value && String(value).length > 0;
|
|
3390
3390
|
const baseClassName = cn(
|
|
3391
3391
|
"block w-full rounded-sm transition-all duration-[var(--transition-fast)]",
|
|
@@ -3417,7 +3417,7 @@ var Input = React5.forwardRef(
|
|
|
3417
3417
|
]
|
|
3418
3418
|
}
|
|
3419
3419
|
),
|
|
3420
|
-
/* @__PURE__ */ jsx("div", { className: "absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none text-muted-foreground", children: /* @__PURE__ */ jsx(ChevronDown, { className: "h-
|
|
3420
|
+
/* @__PURE__ */ jsx("div", { className: "absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none text-muted-foreground", children: /* @__PURE__ */ jsx(ChevronDown, { className: "h-icon-default w-icon-default" }) })
|
|
3421
3421
|
] });
|
|
3422
3422
|
}
|
|
3423
3423
|
if (type === "textarea") {
|
|
@@ -3471,7 +3471,7 @@ var Input = React5.forwardRef(
|
|
|
3471
3471
|
type: "button",
|
|
3472
3472
|
onClick: onClear,
|
|
3473
3473
|
className: "absolute inset-y-0 right-0 pr-3 flex items-center text-muted-foreground hover:text-foreground",
|
|
3474
|
-
children: /* @__PURE__ */ jsx(X, { className: "h-
|
|
3474
|
+
children: /* @__PURE__ */ jsx(X, { className: "h-icon-default w-icon-default" })
|
|
3475
3475
|
}
|
|
3476
3476
|
),
|
|
3477
3477
|
rightIcon && !showClearButton && /* @__PURE__ */ jsx("div", { className: "absolute inset-y-0 right-0 pr-3 flex items-center text-muted-foreground", children: rightIcon })
|
|
@@ -3699,7 +3699,7 @@ function DocCodeBlock({
|
|
|
3699
3699
|
Box,
|
|
3700
3700
|
{
|
|
3701
3701
|
className: cn(
|
|
3702
|
-
"rounded-
|
|
3702
|
+
"rounded-container border border-border overflow-hidden",
|
|
3703
3703
|
className
|
|
3704
3704
|
),
|
|
3705
3705
|
position: "relative",
|
|
@@ -3774,11 +3774,11 @@ function DocCodeBlock({
|
|
|
3774
3774
|
}
|
|
3775
3775
|
var linkCardStyles = [
|
|
3776
3776
|
"border border-border",
|
|
3777
|
-
"rounded-
|
|
3777
|
+
"rounded-container",
|
|
3778
3778
|
"p-4",
|
|
3779
3779
|
"transition-all",
|
|
3780
3780
|
"hover:border-primary",
|
|
3781
|
-
"hover:shadow-
|
|
3781
|
+
"hover:shadow-elevation-dialog",
|
|
3782
3782
|
"no-underline",
|
|
3783
3783
|
"flex-1",
|
|
3784
3784
|
"min-w-0",
|
|
@@ -3977,7 +3977,7 @@ function DocSearch({
|
|
|
3977
3977
|
Box,
|
|
3978
3978
|
{
|
|
3979
3979
|
position: "absolute",
|
|
3980
|
-
className: "top-full left-0 right-0 mt-1 z-50 bg-card border border-border rounded-
|
|
3980
|
+
className: "top-full left-0 right-0 mt-1 z-50 bg-card border border-border rounded-container shadow-elevation-popover max-h-80 overflow-y-auto",
|
|
3981
3981
|
children: /* @__PURE__ */ jsx(VStack, { gap: "none", children: results.map((result, index) => /* @__PURE__ */ jsx(
|
|
3982
3982
|
Box,
|
|
3983
3983
|
{
|
package/dist/marketing/index.cjs
CHANGED
|
@@ -3132,7 +3132,7 @@ var sizeStyles2 = {
|
|
|
3132
3132
|
};
|
|
3133
3133
|
var iconSizeStyles = {
|
|
3134
3134
|
sm: "h-3.5 w-3.5",
|
|
3135
|
-
md: "h-
|
|
3135
|
+
md: "h-icon-default w-icon-default",
|
|
3136
3136
|
lg: "h-5 w-5"
|
|
3137
3137
|
};
|
|
3138
3138
|
function resolveIconProp(value, sizeClass) {
|
|
@@ -3204,7 +3204,7 @@ var Button = React6__default.default.forwardRef(
|
|
|
3204
3204
|
...props,
|
|
3205
3205
|
"data-testid": props["data-testid"] ?? (action ? `action-${action}` : void 0),
|
|
3206
3206
|
children: [
|
|
3207
|
-
isLoading ? /* @__PURE__ */ jsxRuntime.jsx(LucideIcons.Loader2, { className: "h-
|
|
3207
|
+
isLoading ? /* @__PURE__ */ jsxRuntime.jsx(LucideIcons.Loader2, { className: "h-icon-default w-icon-default animate-spin" }) : resolvedLeftIcon && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex-shrink-0", children: resolvedLeftIcon }),
|
|
3208
3208
|
children || label,
|
|
3209
3209
|
resolvedRightIcon && !isLoading && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "flex-shrink-0", children: resolvedRightIcon })
|
|
3210
3210
|
]
|
|
@@ -3300,23 +3300,23 @@ var variantStyles4 = {
|
|
|
3300
3300
|
default: [
|
|
3301
3301
|
"bg-card",
|
|
3302
3302
|
"border-[length:var(--border-width)] border-border",
|
|
3303
|
-
"shadow-
|
|
3303
|
+
"shadow-elevation-card",
|
|
3304
3304
|
"transition-all duration-[var(--transition-normal)]",
|
|
3305
|
-
"hover:shadow-
|
|
3305
|
+
"hover:shadow-elevation-dialog hover:-translate-y-0.5"
|
|
3306
3306
|
].join(" "),
|
|
3307
3307
|
bordered: [
|
|
3308
3308
|
"bg-card",
|
|
3309
3309
|
"border-[length:var(--border-width)] border-border",
|
|
3310
|
-
"shadow-
|
|
3310
|
+
"shadow-elevation-card",
|
|
3311
3311
|
"transition-all duration-[var(--transition-normal)]",
|
|
3312
|
-
"hover:shadow-
|
|
3312
|
+
"hover:shadow-elevation-dialog hover:-translate-y-0.5"
|
|
3313
3313
|
].join(" "),
|
|
3314
3314
|
elevated: [
|
|
3315
3315
|
"bg-card",
|
|
3316
3316
|
"border-[length:var(--border-width)] border-border",
|
|
3317
3317
|
"shadow",
|
|
3318
3318
|
"transition-all duration-[var(--transition-normal)]",
|
|
3319
|
-
"hover:shadow-
|
|
3319
|
+
"hover:shadow-elevation-dialog hover:-translate-y-0.5"
|
|
3320
3320
|
].join(" "),
|
|
3321
3321
|
// Interactive variant with theme-specific hover effects
|
|
3322
3322
|
interactive: [
|
|
@@ -3325,20 +3325,20 @@ var variantStyles4 = {
|
|
|
3325
3325
|
"shadow",
|
|
3326
3326
|
"cursor-pointer",
|
|
3327
3327
|
"transition-all duration-[var(--transition-normal)]",
|
|
3328
|
-
"hover:shadow-
|
|
3328
|
+
"hover:shadow-elevation-dialog"
|
|
3329
3329
|
].join(" ")
|
|
3330
3330
|
};
|
|
3331
3331
|
var paddingStyles2 = {
|
|
3332
3332
|
none: "",
|
|
3333
|
-
sm: "p-
|
|
3334
|
-
md: "p-
|
|
3335
|
-
lg: "p-
|
|
3333
|
+
sm: "p-card-sm",
|
|
3334
|
+
md: "p-card-md",
|
|
3335
|
+
lg: "p-card-lg"
|
|
3336
3336
|
};
|
|
3337
3337
|
var shadowStyles2 = {
|
|
3338
3338
|
none: "shadow-none",
|
|
3339
|
-
sm: "shadow-
|
|
3339
|
+
sm: "shadow-elevation-card",
|
|
3340
3340
|
md: "shadow",
|
|
3341
|
-
lg: "shadow-
|
|
3341
|
+
lg: "shadow-elevation-dialog"
|
|
3342
3342
|
};
|
|
3343
3343
|
var Card = React6__default.default.forwardRef(
|
|
3344
3344
|
({
|
|
@@ -3356,7 +3356,7 @@ var Card = React6__default.default.forwardRef(
|
|
|
3356
3356
|
{
|
|
3357
3357
|
ref,
|
|
3358
3358
|
className: cn(
|
|
3359
|
-
"rounded-
|
|
3359
|
+
"rounded-container",
|
|
3360
3360
|
"transition-all duration-[var(--transition-normal)]",
|
|
3361
3361
|
variantStyles4[variant],
|
|
3362
3362
|
paddingStyles2[padding],
|
|
@@ -3588,7 +3588,7 @@ var InstallBox = ({
|
|
|
3588
3588
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3589
3589
|
Box,
|
|
3590
3590
|
{
|
|
3591
|
-
className: "bg-surface rounded-
|
|
3591
|
+
className: "bg-surface rounded-container border-[length:var(--border-width)] border-border",
|
|
3592
3592
|
padding: "md",
|
|
3593
3593
|
children: /* @__PURE__ */ jsxRuntime.jsxs(Box, { className: "flex items-center gap-3", children: [
|
|
3594
3594
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -3989,7 +3989,7 @@ var PricingCard = ({
|
|
|
3989
3989
|
"hover:-translate-y-1 transition-all",
|
|
3990
3990
|
highlighted && [
|
|
3991
3991
|
"border-[length:2px] border-primary",
|
|
3992
|
-
"shadow-
|
|
3992
|
+
"shadow-elevation-dialog",
|
|
3993
3993
|
"scale-[1.05]",
|
|
3994
3994
|
"ring-2 ring-primary"
|
|
3995
3995
|
],
|
|
@@ -4339,8 +4339,8 @@ var statusClasses = {
|
|
|
4339
4339
|
busy: "bg-error"
|
|
4340
4340
|
};
|
|
4341
4341
|
var badgeSizeClasses = {
|
|
4342
|
-
xs: "w-3 h-3 text-
|
|
4343
|
-
sm: "w-4 h-4 text-
|
|
4342
|
+
xs: "w-3 h-3 text-xs",
|
|
4343
|
+
sm: "w-4 h-4 text-xs",
|
|
4344
4344
|
md: "w-5 h-5 text-xs",
|
|
4345
4345
|
lg: "w-6 h-6 text-sm",
|
|
4346
4346
|
xl: "w-7 h-7 text-base"
|
package/dist/marketing/index.js
CHANGED
|
@@ -3108,7 +3108,7 @@ var sizeStyles2 = {
|
|
|
3108
3108
|
};
|
|
3109
3109
|
var iconSizeStyles = {
|
|
3110
3110
|
sm: "h-3.5 w-3.5",
|
|
3111
|
-
md: "h-
|
|
3111
|
+
md: "h-icon-default w-icon-default",
|
|
3112
3112
|
lg: "h-5 w-5"
|
|
3113
3113
|
};
|
|
3114
3114
|
function resolveIconProp(value, sizeClass) {
|
|
@@ -3180,7 +3180,7 @@ var Button = React6.forwardRef(
|
|
|
3180
3180
|
...props,
|
|
3181
3181
|
"data-testid": props["data-testid"] ?? (action ? `action-${action}` : void 0),
|
|
3182
3182
|
children: [
|
|
3183
|
-
isLoading ? /* @__PURE__ */ jsx(Loader2, { className: "h-
|
|
3183
|
+
isLoading ? /* @__PURE__ */ jsx(Loader2, { className: "h-icon-default w-icon-default animate-spin" }) : resolvedLeftIcon && /* @__PURE__ */ jsx("span", { className: "flex-shrink-0", children: resolvedLeftIcon }),
|
|
3184
3184
|
children || label,
|
|
3185
3185
|
resolvedRightIcon && !isLoading && /* @__PURE__ */ jsx("span", { className: "flex-shrink-0", children: resolvedRightIcon })
|
|
3186
3186
|
]
|
|
@@ -3276,23 +3276,23 @@ var variantStyles4 = {
|
|
|
3276
3276
|
default: [
|
|
3277
3277
|
"bg-card",
|
|
3278
3278
|
"border-[length:var(--border-width)] border-border",
|
|
3279
|
-
"shadow-
|
|
3279
|
+
"shadow-elevation-card",
|
|
3280
3280
|
"transition-all duration-[var(--transition-normal)]",
|
|
3281
|
-
"hover:shadow-
|
|
3281
|
+
"hover:shadow-elevation-dialog hover:-translate-y-0.5"
|
|
3282
3282
|
].join(" "),
|
|
3283
3283
|
bordered: [
|
|
3284
3284
|
"bg-card",
|
|
3285
3285
|
"border-[length:var(--border-width)] border-border",
|
|
3286
|
-
"shadow-
|
|
3286
|
+
"shadow-elevation-card",
|
|
3287
3287
|
"transition-all duration-[var(--transition-normal)]",
|
|
3288
|
-
"hover:shadow-
|
|
3288
|
+
"hover:shadow-elevation-dialog hover:-translate-y-0.5"
|
|
3289
3289
|
].join(" "),
|
|
3290
3290
|
elevated: [
|
|
3291
3291
|
"bg-card",
|
|
3292
3292
|
"border-[length:var(--border-width)] border-border",
|
|
3293
3293
|
"shadow",
|
|
3294
3294
|
"transition-all duration-[var(--transition-normal)]",
|
|
3295
|
-
"hover:shadow-
|
|
3295
|
+
"hover:shadow-elevation-dialog hover:-translate-y-0.5"
|
|
3296
3296
|
].join(" "),
|
|
3297
3297
|
// Interactive variant with theme-specific hover effects
|
|
3298
3298
|
interactive: [
|
|
@@ -3301,20 +3301,20 @@ var variantStyles4 = {
|
|
|
3301
3301
|
"shadow",
|
|
3302
3302
|
"cursor-pointer",
|
|
3303
3303
|
"transition-all duration-[var(--transition-normal)]",
|
|
3304
|
-
"hover:shadow-
|
|
3304
|
+
"hover:shadow-elevation-dialog"
|
|
3305
3305
|
].join(" ")
|
|
3306
3306
|
};
|
|
3307
3307
|
var paddingStyles2 = {
|
|
3308
3308
|
none: "",
|
|
3309
|
-
sm: "p-
|
|
3310
|
-
md: "p-
|
|
3311
|
-
lg: "p-
|
|
3309
|
+
sm: "p-card-sm",
|
|
3310
|
+
md: "p-card-md",
|
|
3311
|
+
lg: "p-card-lg"
|
|
3312
3312
|
};
|
|
3313
3313
|
var shadowStyles2 = {
|
|
3314
3314
|
none: "shadow-none",
|
|
3315
|
-
sm: "shadow-
|
|
3315
|
+
sm: "shadow-elevation-card",
|
|
3316
3316
|
md: "shadow",
|
|
3317
|
-
lg: "shadow-
|
|
3317
|
+
lg: "shadow-elevation-dialog"
|
|
3318
3318
|
};
|
|
3319
3319
|
var Card = React6.forwardRef(
|
|
3320
3320
|
({
|
|
@@ -3332,7 +3332,7 @@ var Card = React6.forwardRef(
|
|
|
3332
3332
|
{
|
|
3333
3333
|
ref,
|
|
3334
3334
|
className: cn(
|
|
3335
|
-
"rounded-
|
|
3335
|
+
"rounded-container",
|
|
3336
3336
|
"transition-all duration-[var(--transition-normal)]",
|
|
3337
3337
|
variantStyles4[variant],
|
|
3338
3338
|
paddingStyles2[padding],
|
|
@@ -3564,7 +3564,7 @@ var InstallBox = ({
|
|
|
3564
3564
|
/* @__PURE__ */ jsx(
|
|
3565
3565
|
Box,
|
|
3566
3566
|
{
|
|
3567
|
-
className: "bg-surface rounded-
|
|
3567
|
+
className: "bg-surface rounded-container border-[length:var(--border-width)] border-border",
|
|
3568
3568
|
padding: "md",
|
|
3569
3569
|
children: /* @__PURE__ */ jsxs(Box, { className: "flex items-center gap-3", children: [
|
|
3570
3570
|
/* @__PURE__ */ jsx(
|
|
@@ -3965,7 +3965,7 @@ var PricingCard = ({
|
|
|
3965
3965
|
"hover:-translate-y-1 transition-all",
|
|
3966
3966
|
highlighted && [
|
|
3967
3967
|
"border-[length:2px] border-primary",
|
|
3968
|
-
"shadow-
|
|
3968
|
+
"shadow-elevation-dialog",
|
|
3969
3969
|
"scale-[1.05]",
|
|
3970
3970
|
"ring-2 ring-primary"
|
|
3971
3971
|
],
|
|
@@ -4315,8 +4315,8 @@ var statusClasses = {
|
|
|
4315
4315
|
busy: "bg-error"
|
|
4316
4316
|
};
|
|
4317
4317
|
var badgeSizeClasses = {
|
|
4318
|
-
xs: "w-3 h-3 text-
|
|
4319
|
-
sm: "w-4 h-4 text-
|
|
4318
|
+
xs: "w-3 h-3 text-xs",
|
|
4319
|
+
sm: "w-4 h-4 text-xs",
|
|
4320
4320
|
md: "w-5 h-5 text-xs",
|
|
4321
4321
|
lg: "w-6 h-6 text-sm",
|
|
4322
4322
|
xl: "w-7 h-7 text-base"
|