@beweco/aurora-ui 0.5.0 → 0.6.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/index.cjs.js CHANGED
@@ -615,7 +615,7 @@ var AuraAutocomplete = function (_a) {
615
615
  var resolvedIcon = icon === undefined ? DEFAULT_ICON : icon;
616
616
  var hasIcon = resolvedIcon != null;
617
617
  var endContent = hasIcon ? (jsxRuntime.jsx("span", { className: ICON_WRAPPER_CLASSNAME, children: resolvedIcon })) : null;
618
- return (jsxRuntime.jsxs("div", { children: [label && (jsxRuntime.jsx("label", { htmlFor: autoId, className: "block mb-2 text-tiny text-default-600", children: label })), jsxRuntime.jsx(react.Autocomplete, __assign({}, props, { id: autoId, label: undefined, labelPlacement: "outside", variant: variant, size: size, radius: radius, endContent: endContent, classNames: __assign({ base: "[&_[data-slot=input-wrapper][data-focus=true]]:!border-primary-500", popoverContent: "[&_li[data-hover=true]]:!bg-primary-50 [&_li[data-hover=true]]:!text-default-600 [&_li]:!text-default-500" }, (hasIcon && { selectorButton: "!hidden" })) }))] }));
618
+ return (jsxRuntime.jsxs("div", { children: [label && (jsxRuntime.jsx("label", { htmlFor: autoId, className: "block mb-2 text-tiny text-default-600", children: label })), jsxRuntime.jsx(react.Autocomplete, __assign({}, props, { id: autoId, label: undefined, labelPlacement: "outside", variant: variant, size: size, radius: radius, endContent: endContent, classNames: __assign({ base: "[&_[data-slot=input-wrapper][data-focus=true]]:!border-primary-500", popoverContent: "aura-popover-content [&_li[data-hover=true]]:!bg-primary-50 [&_li[data-hover=true]]:!text-default-600 [&_li]:!text-default-500" }, (hasIcon && { selectorButton: "!hidden" })) }))] }));
619
619
  };
620
620
 
621
621
  /**
@@ -2490,6 +2490,14 @@ function $458b0a5536c1a7cf$export$40bfa8c7b0832715(value, defaultValue, onChange
2490
2490
  ];
2491
2491
  }
2492
2492
 
2493
+ var VALID_STEP_COLORS$1 = [
2494
+ "primary",
2495
+ "secondary",
2496
+ "success",
2497
+ "warning",
2498
+ "danger",
2499
+ "default",
2500
+ ];
2493
2501
  var defaultTranslations$7 = {
2494
2502
  checkIconTitle: "Check",
2495
2503
  };
@@ -2503,56 +2511,10 @@ var VerticalSteps = React.forwardRef(function (_a, ref) {
2503
2511
  }
2504
2512
  return stepsProp;
2505
2513
  }, [stepsProp]);
2506
- var colors = React.useMemo(function () {
2507
- var _a;
2508
- var colorMappings = {
2509
- primary: [
2510
- "[--step-color:hsl(var(--heroui-primary))]",
2511
- "[--step-fg-color:hsl(var(--heroui-primary-foreground))]",
2512
- ],
2513
- secondary: [
2514
- "[--step-color:hsl(var(--heroui-secondary))]",
2515
- "[--step-fg-color:hsl(var(--heroui-secondary-foreground))]",
2516
- ],
2517
- success: [
2518
- "[--step-color:hsl(var(--heroui-success))]",
2519
- "[--step-fg-color:hsl(var(--heroui-success-foreground))]",
2520
- ],
2521
- warning: [
2522
- "[--step-color:hsl(var(--heroui-warning))]",
2523
- "[--step-fg-color:hsl(var(--heroui-warning-foreground))]",
2524
- ],
2525
- danger: [
2526
- "[--step-color:hsl(var(--heroui-danger))]",
2527
- "[--step-fg-color:hsl(var(--heroui-danger-foreground))]",
2528
- ],
2529
- default: [
2530
- "[--step-color:hsl(var(--heroui-default))]",
2531
- "[--step-fg-color:hsl(var(--heroui-default-foreground))]",
2532
- ],
2533
- };
2534
- var _b = (_a = colorMappings[color]) !== null && _a !== void 0 ? _a : colorMappings.primary, userColor = _b[0], fgColor = _b[1];
2535
- var colorsVars = [
2536
- "[--active-fg-color:var(--step-fg-color)]",
2537
- "[--active-border-color:var(--step-color)]",
2538
- "[--active-color:var(--step-color)]",
2539
- "[--complete-background-color:var(--step-color)]",
2540
- "[--complete-border-color:var(--step-color)]",
2541
- "[--inactive-border-color:hsl(var(--heroui-default-300))]",
2542
- "[--inactive-color:hsl(var(--heroui-default-300))]",
2543
- ];
2544
- if (!(className === null || className === void 0 ? void 0 : className.includes("--step-fg-color"))) {
2545
- colorsVars.unshift(fgColor);
2546
- }
2547
- if (!(className === null || className === void 0 ? void 0 : className.includes("--step-color"))) {
2548
- colorsVars.unshift(userColor);
2549
- }
2550
- if (!(className === null || className === void 0 ? void 0 : className.includes("--inactive-bar-color"))) {
2551
- colorsVars.push("[--inactive-bar-color:hsl(var(--heroui-default-300))]");
2552
- }
2553
- return colorsVars;
2554
- }, [color, className]);
2555
- return (jsxRuntime.jsx("nav", { "aria-label": "Progress", className: "max-w-fit", children: jsxRuntime.jsx("ol", { className: react.cn("flex flex-col gap-y-3", colors, className), children: steps === null || steps === void 0 ? void 0 : steps.map(function (step, stepIdx) {
2514
+ var stepColor = VALID_STEP_COLORS$1.includes(color)
2515
+ ? color
2516
+ : "primary";
2517
+ return (jsxRuntime.jsx("nav", { "aria-label": "Progress", className: "max-w-fit", children: jsxRuntime.jsx("ol", { "data-step-color": stepColor, className: react.cn("flex flex-col gap-y-3", className), children: steps === null || steps === void 0 ? void 0 : steps.map(function (step, stepIdx) {
2556
2518
  var status = currentStep === stepIdx
2557
2519
  ? "active"
2558
2520
  : step.isCompleted
@@ -2597,11 +2559,6 @@ var VerticalSteps = React.forwardRef(function (_a, ref) {
2597
2559
  });
2598
2560
  VerticalSteps.displayName = "VerticalSteps";
2599
2561
 
2600
- var stepperClasses = react.cn(
2601
- // light
2602
- "[--step-color:hsl(var(--heroui-primary-400))]", "[--active-color:hsl(var(--heroui-primary-400))]", "[--inactive-border-color:hsl(var(--heroui-primary-200))]", "[--inactive-bar-color:hsl(var(--heroui-primary-200))]", "[--inactive-color:hsl(var(--heroui-primary-300))]",
2603
- // dark
2604
- "dark:[--step-color:rgba(255,255,255,0.1)]", "dark:[--active-color:hsl(var(--heroui-foreground-600))]", "dark:[--active-border-color:rgba(255,255,255,0.5)]", "dark:[--inactive-border-color:rgba(255,255,255,0.1)]", "dark:[--inactive-bar-color:rgba(255,255,255,0.1)]", "dark:[--inactive-color:rgba(255,255,255,0.2)]");
2605
2562
  var MultiStepSidebar = React.forwardRef(function (_a, ref) {
2606
2563
  var children = _a.children, className = _a.className, currentPage = _a.currentPage; _a.onBack; _a.onNext; var onChangePage = _a.onChangePage, steps = _a.steps; _a.goBackTranslation; var onClose = _a.onClose, _b = _a.hideInactiveDescriptions, hideInactiveDescriptions = _b === void 0 ? false : _b, props = __rest(_a, ["children", "className", "currentPage", "onBack", "onNext", "onChangePage", "steps", "goBackTranslation", "onClose", "hideInactiveDescriptions"]);
2607
2564
  var handleOverlayClick = function (e) {
@@ -2609,7 +2566,7 @@ var MultiStepSidebar = React.forwardRef(function (_a, ref) {
2609
2566
  onClose === null || onClose === void 0 ? void 0 : onClose();
2610
2567
  }
2611
2568
  };
2612
- return (jsxRuntime.jsx("div", { className: "fixed inset-0 z-50 flex items-center justify-center bg-content3/50 backdrop-blur-sm", onClick: handleOverlayClick, children: jsxRuntime.jsxs("div", __assign({ ref: ref, className: react.cn("relative flex h-full w-full max-w-4xl overflow-hidden rounded-lg bg-background shadow-lg lg:h-auto lg:max-h-[85vh] lg:min-h-[512px]", className) }, props, { children: [jsxRuntime.jsx("div", { className: react.cn("absolute inset-y-0 left-0 hidden w-1/3 flex-col justify-start gap-y-8 overflow-y-auto p-8 md:flex [&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]"), children: jsxRuntime.jsx(VerticalSteps, { className: stepperClasses, color: "primary", currentStep: currentPage, steps: steps, onStepChange: onChangePage, hideInactiveDescriptions: hideInactiveDescriptions }) }), jsxRuntime.jsxs("div", { className: "relative flex w-full flex-col items-center justify-between gap-4 md:ml-[33.333333%] md:w-2/3 md:p-4 min-h-0", children: [jsxRuntime.jsx(Button, { isIconOnly: true, className: "absolute right-4 top-4", size: "sm", variant: "light", color: "default", onPress: onClose, startContent: jsxRuntime.jsx(IconComponent, { className: "text-foreground", icon: "material-symbols:close-rounded", size: "lg" }) }), jsxRuntime.jsx("div", { className: "pt-9 w-10/12 md:hidden", children: jsxRuntime.jsx("div", { className: "flex w-full justify-center", children: jsxRuntime.jsx(StepIndicator, { className: react.cn(stepperClasses), currentStep: currentPage + 1, totalSteps: steps.length }) }) }), jsxRuntime.jsx("div", { className: "flex flex-col flex-1 w-full justify-between p-4 sm:max-w-md md:max-w-lg overflow-y-auto min-h-0 [&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]", children: children })] })] })) }));
2569
+ return (jsxRuntime.jsx("div", { className: "fixed inset-0 z-50 flex items-center justify-center bg-content3/50 backdrop-blur-sm", onClick: handleOverlayClick, children: jsxRuntime.jsxs("div", __assign({ ref: ref, className: react.cn("relative flex h-full w-full max-w-4xl overflow-hidden rounded-lg bg-background shadow-lg lg:h-auto lg:max-h-[85vh] lg:min-h-[512px]", className) }, props, { children: [jsxRuntime.jsx("div", { className: react.cn("absolute inset-y-0 left-0 hidden w-1/3 flex-col justify-start gap-y-8 overflow-y-auto p-8 md:flex [&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]"), children: jsxRuntime.jsx(VerticalSteps, { className: "aura-stepper-theme", color: "primary", currentStep: currentPage, steps: steps, onStepChange: onChangePage, hideInactiveDescriptions: hideInactiveDescriptions }) }), jsxRuntime.jsxs("div", { className: "relative flex w-full flex-col items-center justify-between gap-4 md:ml-[33.333333%] md:w-2/3 md:p-4 min-h-0", children: [jsxRuntime.jsx(Button, { isIconOnly: true, className: "absolute right-4 top-4", size: "sm", variant: "light", color: "default", onPress: onClose, startContent: jsxRuntime.jsx(IconComponent, { className: "text-foreground", icon: "material-symbols:close-rounded", size: "lg" }) }), jsxRuntime.jsx("div", { className: "pt-9 w-10/12 md:hidden", children: jsxRuntime.jsx("div", { className: "flex w-full justify-center", children: jsxRuntime.jsx(StepIndicator, { className: "aura-stepper-theme", currentStep: currentPage + 1, totalSteps: steps.length }) }) }), jsxRuntime.jsx("div", { className: "flex flex-col flex-1 w-full justify-between p-4 sm:max-w-md md:max-w-lg overflow-y-auto min-h-0 [&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]", children: children })] })] })) }));
2613
2570
  });
2614
2571
  MultiStepSidebar.displayName = "MultiStepSidebar";
2615
2572
 
@@ -3272,6 +3229,14 @@ var PromotionalBanner = function (_a) {
3272
3229
  }, variant: "bordered", onClick: handleButtonClick }, buttonProps, { children: finalButtonText })), showCloseButton && (jsxRuntime.jsx("div", { className: "flex flex-1 justify-end", children: jsxRuntime.jsx(react.Button, { isIconOnly: true, "aria-label": t.closeButtonLabel, className: "-m-1", size: "lg", variant: "bordered", onClick: handleClose, children: jsxRuntime.jsx(IconComponent, { "aria-hidden": "true", className: "text-default-500", icon: "lucide:x", size: "md" }) }) }))] }));
3273
3230
  };
3274
3231
 
3232
+ var VALID_STEP_COLORS = [
3233
+ "primary",
3234
+ "secondary",
3235
+ "success",
3236
+ "warning",
3237
+ "danger",
3238
+ "default",
3239
+ ];
3275
3240
  var RowSteps = React.forwardRef(function (_a, ref) {
3276
3241
  var _b = _a.color, color = _b === void 0 ? "primary" : _b, _c = _a.steps, stepsProp = _c === void 0 ? [] : _c, _d = _a.defaultStep, defaultStep = _d === void 0 ? 0 : _d, onStepChange = _a.onStepChange, currentStepProp = _a.currentStep, _e = _a.hideProgressBars, hideProgressBars = _e === void 0 ? false : _e, stepClassName = _a.stepClassName, className = _a.className; _a.translations; var props = __rest(_a, ["color", "steps", "defaultStep", "onStepChange", "currentStep", "hideProgressBars", "stepClassName", "className", "translations"]);
3277
3242
  var _f = $458b0a5536c1a7cf$export$40bfa8c7b0832715(currentStepProp, defaultStep, onStepChange), currentStep = _f[0], setCurrentStep = _f[1];
@@ -3281,56 +3246,10 @@ var RowSteps = React.forwardRef(function (_a, ref) {
3281
3246
  }
3282
3247
  return stepsProp;
3283
3248
  }, [stepsProp]);
3284
- var colors = React.useMemo(function () {
3285
- var _a;
3286
- var colorMappings = {
3287
- primary: [
3288
- "[--step-color:hsl(var(--heroui-primary))]",
3289
- "[--step-fg-color:hsl(var(--heroui-primary-foreground))]",
3290
- ],
3291
- secondary: [
3292
- "[--step-color:hsl(var(--heroui-secondary))]",
3293
- "[--step-fg-color:hsl(var(--heroui-secondary-foreground))]",
3294
- ],
3295
- success: [
3296
- "[--step-color:hsl(var(--heroui-success))]",
3297
- "[--step-fg-color:hsl(var(--heroui-success-foreground))]",
3298
- ],
3299
- warning: [
3300
- "[--step-color:hsl(var(--heroui-warning))]",
3301
- "[--step-fg-color:hsl(var(--heroui-warning-foreground))]",
3302
- ],
3303
- danger: [
3304
- "[--step-color:hsl(var(--heroui-danger))]",
3305
- "[--step-fg-color:hsl(var(--heroui-danger-foreground))]",
3306
- ],
3307
- default: [
3308
- "[--step-color:hsl(var(--heroui-default))]",
3309
- "[--step-fg-color:hsl(var(--heroui-default-foreground))]",
3310
- ],
3311
- };
3312
- var _b = (_a = colorMappings[color]) !== null && _a !== void 0 ? _a : colorMappings.primary, userColor = _b[0], fgColor = _b[1];
3313
- var colorsVars = [
3314
- "[--active-fg-color:var(--step-fg-color)]",
3315
- "[--active-border-color:var(--step-color)]",
3316
- "[--active-color:var(--step-color)]",
3317
- "[--complete-background-color:var(--step-color)]",
3318
- "[--complete-border-color:var(--step-color)]",
3319
- "[--inactive-border-color:hsl(var(--heroui-default-300))]",
3320
- "[--inactive-color:hsl(var(--heroui-default-300))]",
3321
- ];
3322
- if (!(className === null || className === void 0 ? void 0 : className.includes("--step-fg-color"))) {
3323
- colorsVars.unshift(fgColor);
3324
- }
3325
- if (!(className === null || className === void 0 ? void 0 : className.includes("--step-color"))) {
3326
- colorsVars.unshift(userColor);
3327
- }
3328
- if (!(className === null || className === void 0 ? void 0 : className.includes("--inactive-bar-color"))) {
3329
- colorsVars.push("[--inactive-bar-color:hsl(var(--heroui-default-300))]");
3330
- }
3331
- return colorsVars;
3332
- }, [color, className]);
3333
- return (jsxRuntime.jsx("nav", { "aria-label": "Progress", className: "-my-4 max-w-fit overflow-x-auto py-4", children: jsxRuntime.jsx("ol", { className: react.cn("flex flex-row flex-nowrap gap-x-3", colors, className), children: steps === null || steps === void 0 ? void 0 : steps.map(function (step, stepIdx) {
3249
+ var stepColor = VALID_STEP_COLORS.includes(color)
3250
+ ? color
3251
+ : "primary";
3252
+ return (jsxRuntime.jsx("nav", { "aria-label": "Progress", className: "-my-4 max-w-fit overflow-x-auto py-4", children: jsxRuntime.jsx("ol", { "data-step-color": stepColor, className: react.cn("flex flex-row flex-nowrap gap-x-3", className), children: steps === null || steps === void 0 ? void 0 : steps.map(function (step, stepIdx) {
3334
3253
  var status = currentStep === stepIdx
3335
3254
  ? "active"
3336
3255
  : currentStep < stepIdx
@@ -3783,7 +3702,7 @@ var Select = function (_a) {
3783
3702
  return (jsxRuntime.jsx("div", { className: "group", children: jsxRuntime.jsx(react.Select, __assign({}, props, { id: selectId, label: label, labelPlacement: "outside", placeholder: placeholder, variant: variant, size: size, radius: radius, classNames: {
3784
3703
  label: "text-default-600 text-tiny group-data-[filled=true]:text-default-600",
3785
3704
  trigger: "data-[open=true]:!border-primary-500 data-[focus=true]:!border-primary-500 data-[disabled=true]:bg-default-100",
3786
- popoverContent: "[&_[data-focus-visible=true]]:!outline-none [&_[data-selectable=true]:focus]:!bg-primary-50 [&_li]:!text-default-500 [&_li[data-hover=true]]:!text-default-600",
3705
+ popoverContent: "aura-popover-content [&_[data-focus-visible=true]]:!outline-none [&_[data-selectable=true]:focus]:!bg-primary-50 [&_li]:!text-default-500 [&_li[data-hover=true]]:!text-default-600",
3787
3706
  } })) }));
3788
3707
  };
3789
3708
 
package/dist/index.esm.js CHANGED
@@ -616,7 +616,7 @@ var AuraAutocomplete = function (_a) {
616
616
  var resolvedIcon = icon === undefined ? DEFAULT_ICON : icon;
617
617
  var hasIcon = resolvedIcon != null;
618
618
  var endContent = hasIcon ? (jsx("span", { className: ICON_WRAPPER_CLASSNAME, children: resolvedIcon })) : null;
619
- return (jsxs("div", { children: [label && (jsx("label", { htmlFor: autoId, className: "block mb-2 text-tiny text-default-600", children: label })), jsx(Autocomplete, __assign({}, props, { id: autoId, label: undefined, labelPlacement: "outside", variant: variant, size: size, radius: radius, endContent: endContent, classNames: __assign({ base: "[&_[data-slot=input-wrapper][data-focus=true]]:!border-primary-500", popoverContent: "[&_li[data-hover=true]]:!bg-primary-50 [&_li[data-hover=true]]:!text-default-600 [&_li]:!text-default-500" }, (hasIcon && { selectorButton: "!hidden" })) }))] }));
619
+ return (jsxs("div", { children: [label && (jsx("label", { htmlFor: autoId, className: "block mb-2 text-tiny text-default-600", children: label })), jsx(Autocomplete, __assign({}, props, { id: autoId, label: undefined, labelPlacement: "outside", variant: variant, size: size, radius: radius, endContent: endContent, classNames: __assign({ base: "[&_[data-slot=input-wrapper][data-focus=true]]:!border-primary-500", popoverContent: "aura-popover-content [&_li[data-hover=true]]:!bg-primary-50 [&_li[data-hover=true]]:!text-default-600 [&_li]:!text-default-500" }, (hasIcon && { selectorButton: "!hidden" })) }))] }));
620
620
  };
621
621
 
622
622
  /**
@@ -2491,6 +2491,14 @@ function $458b0a5536c1a7cf$export$40bfa8c7b0832715(value, defaultValue, onChange
2491
2491
  ];
2492
2492
  }
2493
2493
 
2494
+ var VALID_STEP_COLORS$1 = [
2495
+ "primary",
2496
+ "secondary",
2497
+ "success",
2498
+ "warning",
2499
+ "danger",
2500
+ "default",
2501
+ ];
2494
2502
  var defaultTranslations$7 = {
2495
2503
  checkIconTitle: "Check",
2496
2504
  };
@@ -2504,56 +2512,10 @@ var VerticalSteps = React.forwardRef(function (_a, ref) {
2504
2512
  }
2505
2513
  return stepsProp;
2506
2514
  }, [stepsProp]);
2507
- var colors = React.useMemo(function () {
2508
- var _a;
2509
- var colorMappings = {
2510
- primary: [
2511
- "[--step-color:hsl(var(--heroui-primary))]",
2512
- "[--step-fg-color:hsl(var(--heroui-primary-foreground))]",
2513
- ],
2514
- secondary: [
2515
- "[--step-color:hsl(var(--heroui-secondary))]",
2516
- "[--step-fg-color:hsl(var(--heroui-secondary-foreground))]",
2517
- ],
2518
- success: [
2519
- "[--step-color:hsl(var(--heroui-success))]",
2520
- "[--step-fg-color:hsl(var(--heroui-success-foreground))]",
2521
- ],
2522
- warning: [
2523
- "[--step-color:hsl(var(--heroui-warning))]",
2524
- "[--step-fg-color:hsl(var(--heroui-warning-foreground))]",
2525
- ],
2526
- danger: [
2527
- "[--step-color:hsl(var(--heroui-danger))]",
2528
- "[--step-fg-color:hsl(var(--heroui-danger-foreground))]",
2529
- ],
2530
- default: [
2531
- "[--step-color:hsl(var(--heroui-default))]",
2532
- "[--step-fg-color:hsl(var(--heroui-default-foreground))]",
2533
- ],
2534
- };
2535
- var _b = (_a = colorMappings[color]) !== null && _a !== void 0 ? _a : colorMappings.primary, userColor = _b[0], fgColor = _b[1];
2536
- var colorsVars = [
2537
- "[--active-fg-color:var(--step-fg-color)]",
2538
- "[--active-border-color:var(--step-color)]",
2539
- "[--active-color:var(--step-color)]",
2540
- "[--complete-background-color:var(--step-color)]",
2541
- "[--complete-border-color:var(--step-color)]",
2542
- "[--inactive-border-color:hsl(var(--heroui-default-300))]",
2543
- "[--inactive-color:hsl(var(--heroui-default-300))]",
2544
- ];
2545
- if (!(className === null || className === void 0 ? void 0 : className.includes("--step-fg-color"))) {
2546
- colorsVars.unshift(fgColor);
2547
- }
2548
- if (!(className === null || className === void 0 ? void 0 : className.includes("--step-color"))) {
2549
- colorsVars.unshift(userColor);
2550
- }
2551
- if (!(className === null || className === void 0 ? void 0 : className.includes("--inactive-bar-color"))) {
2552
- colorsVars.push("[--inactive-bar-color:hsl(var(--heroui-default-300))]");
2553
- }
2554
- return colorsVars;
2555
- }, [color, className]);
2556
- return (jsx("nav", { "aria-label": "Progress", className: "max-w-fit", children: jsx("ol", { className: cn("flex flex-col gap-y-3", colors, className), children: steps === null || steps === void 0 ? void 0 : steps.map(function (step, stepIdx) {
2515
+ var stepColor = VALID_STEP_COLORS$1.includes(color)
2516
+ ? color
2517
+ : "primary";
2518
+ return (jsx("nav", { "aria-label": "Progress", className: "max-w-fit", children: jsx("ol", { "data-step-color": stepColor, className: cn("flex flex-col gap-y-3", className), children: steps === null || steps === void 0 ? void 0 : steps.map(function (step, stepIdx) {
2557
2519
  var status = currentStep === stepIdx
2558
2520
  ? "active"
2559
2521
  : step.isCompleted
@@ -2598,11 +2560,6 @@ var VerticalSteps = React.forwardRef(function (_a, ref) {
2598
2560
  });
2599
2561
  VerticalSteps.displayName = "VerticalSteps";
2600
2562
 
2601
- var stepperClasses = cn(
2602
- // light
2603
- "[--step-color:hsl(var(--heroui-primary-400))]", "[--active-color:hsl(var(--heroui-primary-400))]", "[--inactive-border-color:hsl(var(--heroui-primary-200))]", "[--inactive-bar-color:hsl(var(--heroui-primary-200))]", "[--inactive-color:hsl(var(--heroui-primary-300))]",
2604
- // dark
2605
- "dark:[--step-color:rgba(255,255,255,0.1)]", "dark:[--active-color:hsl(var(--heroui-foreground-600))]", "dark:[--active-border-color:rgba(255,255,255,0.5)]", "dark:[--inactive-border-color:rgba(255,255,255,0.1)]", "dark:[--inactive-bar-color:rgba(255,255,255,0.1)]", "dark:[--inactive-color:rgba(255,255,255,0.2)]");
2606
2563
  var MultiStepSidebar = React.forwardRef(function (_a, ref) {
2607
2564
  var children = _a.children, className = _a.className, currentPage = _a.currentPage; _a.onBack; _a.onNext; var onChangePage = _a.onChangePage, steps = _a.steps; _a.goBackTranslation; var onClose = _a.onClose, _b = _a.hideInactiveDescriptions, hideInactiveDescriptions = _b === void 0 ? false : _b, props = __rest(_a, ["children", "className", "currentPage", "onBack", "onNext", "onChangePage", "steps", "goBackTranslation", "onClose", "hideInactiveDescriptions"]);
2608
2565
  var handleOverlayClick = function (e) {
@@ -2610,7 +2567,7 @@ var MultiStepSidebar = React.forwardRef(function (_a, ref) {
2610
2567
  onClose === null || onClose === void 0 ? void 0 : onClose();
2611
2568
  }
2612
2569
  };
2613
- return (jsx("div", { className: "fixed inset-0 z-50 flex items-center justify-center bg-content3/50 backdrop-blur-sm", onClick: handleOverlayClick, children: jsxs("div", __assign({ ref: ref, className: cn("relative flex h-full w-full max-w-4xl overflow-hidden rounded-lg bg-background shadow-lg lg:h-auto lg:max-h-[85vh] lg:min-h-[512px]", className) }, props, { children: [jsx("div", { className: cn("absolute inset-y-0 left-0 hidden w-1/3 flex-col justify-start gap-y-8 overflow-y-auto p-8 md:flex [&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]"), children: jsx(VerticalSteps, { className: stepperClasses, color: "primary", currentStep: currentPage, steps: steps, onStepChange: onChangePage, hideInactiveDescriptions: hideInactiveDescriptions }) }), jsxs("div", { className: "relative flex w-full flex-col items-center justify-between gap-4 md:ml-[33.333333%] md:w-2/3 md:p-4 min-h-0", children: [jsx(Button, { isIconOnly: true, className: "absolute right-4 top-4", size: "sm", variant: "light", color: "default", onPress: onClose, startContent: jsx(IconComponent, { className: "text-foreground", icon: "material-symbols:close-rounded", size: "lg" }) }), jsx("div", { className: "pt-9 w-10/12 md:hidden", children: jsx("div", { className: "flex w-full justify-center", children: jsx(StepIndicator, { className: cn(stepperClasses), currentStep: currentPage + 1, totalSteps: steps.length }) }) }), jsx("div", { className: "flex flex-col flex-1 w-full justify-between p-4 sm:max-w-md md:max-w-lg overflow-y-auto min-h-0 [&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]", children: children })] })] })) }));
2570
+ return (jsx("div", { className: "fixed inset-0 z-50 flex items-center justify-center bg-content3/50 backdrop-blur-sm", onClick: handleOverlayClick, children: jsxs("div", __assign({ ref: ref, className: cn("relative flex h-full w-full max-w-4xl overflow-hidden rounded-lg bg-background shadow-lg lg:h-auto lg:max-h-[85vh] lg:min-h-[512px]", className) }, props, { children: [jsx("div", { className: cn("absolute inset-y-0 left-0 hidden w-1/3 flex-col justify-start gap-y-8 overflow-y-auto p-8 md:flex [&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]"), children: jsx(VerticalSteps, { className: "aura-stepper-theme", color: "primary", currentStep: currentPage, steps: steps, onStepChange: onChangePage, hideInactiveDescriptions: hideInactiveDescriptions }) }), jsxs("div", { className: "relative flex w-full flex-col items-center justify-between gap-4 md:ml-[33.333333%] md:w-2/3 md:p-4 min-h-0", children: [jsx(Button, { isIconOnly: true, className: "absolute right-4 top-4", size: "sm", variant: "light", color: "default", onPress: onClose, startContent: jsx(IconComponent, { className: "text-foreground", icon: "material-symbols:close-rounded", size: "lg" }) }), jsx("div", { className: "pt-9 w-10/12 md:hidden", children: jsx("div", { className: "flex w-full justify-center", children: jsx(StepIndicator, { className: "aura-stepper-theme", currentStep: currentPage + 1, totalSteps: steps.length }) }) }), jsx("div", { className: "flex flex-col flex-1 w-full justify-between p-4 sm:max-w-md md:max-w-lg overflow-y-auto min-h-0 [&::-webkit-scrollbar]:hidden [-ms-overflow-style:none] [scrollbar-width:none]", children: children })] })] })) }));
2614
2571
  });
2615
2572
  MultiStepSidebar.displayName = "MultiStepSidebar";
2616
2573
 
@@ -3273,6 +3230,14 @@ var PromotionalBanner = function (_a) {
3273
3230
  }, variant: "bordered", onClick: handleButtonClick }, buttonProps, { children: finalButtonText })), showCloseButton && (jsx("div", { className: "flex flex-1 justify-end", children: jsx(Button$1, { isIconOnly: true, "aria-label": t.closeButtonLabel, className: "-m-1", size: "lg", variant: "bordered", onClick: handleClose, children: jsx(IconComponent, { "aria-hidden": "true", className: "text-default-500", icon: "lucide:x", size: "md" }) }) }))] }));
3274
3231
  };
3275
3232
 
3233
+ var VALID_STEP_COLORS = [
3234
+ "primary",
3235
+ "secondary",
3236
+ "success",
3237
+ "warning",
3238
+ "danger",
3239
+ "default",
3240
+ ];
3276
3241
  var RowSteps = React.forwardRef(function (_a, ref) {
3277
3242
  var _b = _a.color, color = _b === void 0 ? "primary" : _b, _c = _a.steps, stepsProp = _c === void 0 ? [] : _c, _d = _a.defaultStep, defaultStep = _d === void 0 ? 0 : _d, onStepChange = _a.onStepChange, currentStepProp = _a.currentStep, _e = _a.hideProgressBars, hideProgressBars = _e === void 0 ? false : _e, stepClassName = _a.stepClassName, className = _a.className; _a.translations; var props = __rest(_a, ["color", "steps", "defaultStep", "onStepChange", "currentStep", "hideProgressBars", "stepClassName", "className", "translations"]);
3278
3243
  var _f = $458b0a5536c1a7cf$export$40bfa8c7b0832715(currentStepProp, defaultStep, onStepChange), currentStep = _f[0], setCurrentStep = _f[1];
@@ -3282,56 +3247,10 @@ var RowSteps = React.forwardRef(function (_a, ref) {
3282
3247
  }
3283
3248
  return stepsProp;
3284
3249
  }, [stepsProp]);
3285
- var colors = React.useMemo(function () {
3286
- var _a;
3287
- var colorMappings = {
3288
- primary: [
3289
- "[--step-color:hsl(var(--heroui-primary))]",
3290
- "[--step-fg-color:hsl(var(--heroui-primary-foreground))]",
3291
- ],
3292
- secondary: [
3293
- "[--step-color:hsl(var(--heroui-secondary))]",
3294
- "[--step-fg-color:hsl(var(--heroui-secondary-foreground))]",
3295
- ],
3296
- success: [
3297
- "[--step-color:hsl(var(--heroui-success))]",
3298
- "[--step-fg-color:hsl(var(--heroui-success-foreground))]",
3299
- ],
3300
- warning: [
3301
- "[--step-color:hsl(var(--heroui-warning))]",
3302
- "[--step-fg-color:hsl(var(--heroui-warning-foreground))]",
3303
- ],
3304
- danger: [
3305
- "[--step-color:hsl(var(--heroui-danger))]",
3306
- "[--step-fg-color:hsl(var(--heroui-danger-foreground))]",
3307
- ],
3308
- default: [
3309
- "[--step-color:hsl(var(--heroui-default))]",
3310
- "[--step-fg-color:hsl(var(--heroui-default-foreground))]",
3311
- ],
3312
- };
3313
- var _b = (_a = colorMappings[color]) !== null && _a !== void 0 ? _a : colorMappings.primary, userColor = _b[0], fgColor = _b[1];
3314
- var colorsVars = [
3315
- "[--active-fg-color:var(--step-fg-color)]",
3316
- "[--active-border-color:var(--step-color)]",
3317
- "[--active-color:var(--step-color)]",
3318
- "[--complete-background-color:var(--step-color)]",
3319
- "[--complete-border-color:var(--step-color)]",
3320
- "[--inactive-border-color:hsl(var(--heroui-default-300))]",
3321
- "[--inactive-color:hsl(var(--heroui-default-300))]",
3322
- ];
3323
- if (!(className === null || className === void 0 ? void 0 : className.includes("--step-fg-color"))) {
3324
- colorsVars.unshift(fgColor);
3325
- }
3326
- if (!(className === null || className === void 0 ? void 0 : className.includes("--step-color"))) {
3327
- colorsVars.unshift(userColor);
3328
- }
3329
- if (!(className === null || className === void 0 ? void 0 : className.includes("--inactive-bar-color"))) {
3330
- colorsVars.push("[--inactive-bar-color:hsl(var(--heroui-default-300))]");
3331
- }
3332
- return colorsVars;
3333
- }, [color, className]);
3334
- return (jsx("nav", { "aria-label": "Progress", className: "-my-4 max-w-fit overflow-x-auto py-4", children: jsx("ol", { className: cn("flex flex-row flex-nowrap gap-x-3", colors, className), children: steps === null || steps === void 0 ? void 0 : steps.map(function (step, stepIdx) {
3250
+ var stepColor = VALID_STEP_COLORS.includes(color)
3251
+ ? color
3252
+ : "primary";
3253
+ return (jsx("nav", { "aria-label": "Progress", className: "-my-4 max-w-fit overflow-x-auto py-4", children: jsx("ol", { "data-step-color": stepColor, className: cn("flex flex-row flex-nowrap gap-x-3", className), children: steps === null || steps === void 0 ? void 0 : steps.map(function (step, stepIdx) {
3335
3254
  var status = currentStep === stepIdx
3336
3255
  ? "active"
3337
3256
  : currentStep < stepIdx
@@ -3784,7 +3703,7 @@ var Select = function (_a) {
3784
3703
  return (jsx("div", { className: "group", children: jsx(Select$1, __assign({}, props, { id: selectId, label: label, labelPlacement: "outside", placeholder: placeholder, variant: variant, size: size, radius: radius, classNames: {
3785
3704
  label: "text-default-600 text-tiny group-data-[filled=true]:text-default-600",
3786
3705
  trigger: "data-[open=true]:!border-primary-500 data-[focus=true]:!border-primary-500 data-[disabled=true]:bg-default-100",
3787
- popoverContent: "[&_[data-focus-visible=true]]:!outline-none [&_[data-selectable=true]:focus]:!bg-primary-50 [&_li]:!text-default-500 [&_li[data-hover=true]]:!text-default-600",
3706
+ popoverContent: "aura-popover-content [&_[data-focus-visible=true]]:!outline-none [&_[data-selectable=true]:focus]:!bg-primary-50 [&_li]:!text-default-500 [&_li[data-hover=true]]:!text-default-600",
3788
3707
  } })) }));
3789
3708
  };
3790
3709
 
@@ -1 +1 @@
1
- {"version":3,"file":"AutoComplete.d.ts","sourceRoot":"","sources":["../../../../src/components/autocomplete/AutoComplete.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAelE;;;;;;;;;GASG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA+C5D,CAAC"}
1
+ {"version":3,"file":"AutoComplete.d.ts","sourceRoot":"","sources":["../../../../src/components/autocomplete/AutoComplete.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAelE;;;;;;;;;GASG;AACH,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA8C5D,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"MultiStepSidebar.d.ts","sourceRoot":"","sources":["../../../../../src/components/multi-step-wizard/_internal/MultiStepSidebar.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAmBtE,eAAO,MAAM,gBAAgB,8FAyF5B,CAAC"}
1
+ {"version":3,"file":"MultiStepSidebar.d.ts","sourceRoot":"","sources":["../../../../../src/components/multi-step-wizard/_internal/MultiStepSidebar.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAEtE,eAAO,MAAM,gBAAgB,8FAyF5B,CAAC"}
@@ -1,3 +1,4 @@
1
+ import "../../styles/step-animations.css";
1
2
  import React from "react";
2
3
  import type { RowStepsProps } from "./RowSteps.types";
3
4
  export declare const RowSteps: React.ForwardRefExoticComponent<RowStepsProps & React.RefAttributes<HTMLButtonElement>>;
@@ -1 +1 @@
1
- {"version":3,"file":"RowSteps.d.ts","sourceRoot":"","sources":["../../../../src/components/row-steps/RowSteps.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAgB,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEpE,eAAO,MAAM,QAAQ,yFA+MpB,CAAC"}
1
+ {"version":3,"file":"RowSteps.d.ts","sourceRoot":"","sources":["../../../../src/components/row-steps/RowSteps.tsx"],"names":[],"mappings":"AAAA,OAAO,kCAAkC,CAAC;AAI1C,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAgB,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAWpE,eAAO,MAAM,QAAQ,yFA8JpB,CAAC"}
@@ -1,3 +1,4 @@
1
+ import "../../styles/step-animations.css";
1
2
  import React from "react";
2
3
  import type { VerticalStepsProps } from "./VerticalSteps.types";
3
4
  export declare const VerticalSteps: React.ForwardRefExoticComponent<VerticalStepsProps & React.RefAttributes<HTMLButtonElement>>;
@@ -1 +1 @@
1
- {"version":3,"file":"VerticalSteps.d.ts","sourceRoot":"","sources":["../../../../src/components/vertical-steps/VerticalSteps.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAEX,kBAAkB,EAElB,MAAM,uBAAuB,CAAC;AAM/B,eAAO,MAAM,aAAa,8FA0OzB,CAAC"}
1
+ {"version":3,"file":"VerticalSteps.d.ts","sourceRoot":"","sources":["../../../../src/components/vertical-steps/VerticalSteps.tsx"],"names":[],"mappings":"AAAA,OAAO,kCAAkC,CAAC;AAI1C,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAEX,kBAAkB,EAElB,MAAM,uBAAuB,CAAC;AAe/B,eAAO,MAAM,aAAa,8FA2LzB,CAAC"}
@@ -1,4 +1,6 @@
1
1
  import "./styles/globals.css";
2
+ import "./styles/step-animations.css";
3
+ import "./styles/dropdown-defenses.css";
2
4
  export * from "@heroui/react";
3
5
  export { Slider } from "@heroui/react";
4
6
  export * from "./components/accordion-list";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beweco/aurora-ui",
3
- "version": "0.5.0",
3
+ "version": "0.6.1",
4
4
  "description": "Bewe Aurora UI Component Library",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",