@bubo-squared/ui-framework 0.2.24 → 0.2.26

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.d.cts CHANGED
@@ -135,7 +135,7 @@ declare const badgeVariants: (props?: ({
135
135
  } & class_variance_authority_types.ClassProp) | undefined) => string;
136
136
  type BadgeVariant = "primary" | "secondary" | "informal" | "success" | "warning" | "error" | "disabled" | "active";
137
137
  type BadgeSize = "sm" | "md" | "lg" | "xl";
138
- interface BadgeProps extends VariantProps<typeof badgeVariants> {
138
+ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
139
139
  asChild?: boolean;
140
140
  label: React$1.ReactNode;
141
141
  value?: React$1.ReactNode;
@@ -162,7 +162,7 @@ declare const BadgeDigit: React$1.ForwardRefExoticComponent<BadgeDigitProps & Re
162
162
  declare const badgeDotVariants: (props?: ({
163
163
  status?: "error" | "disabled" | "informal" | "warning" | "success/online" | null | undefined;
164
164
  } & class_variance_authority_types.ClassProp) | undefined) => string;
165
- interface BadgeDotProps extends VariantProps<typeof badgeDotVariants> {
165
+ interface BadgeDotProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeDotVariants> {
166
166
  className?: string;
167
167
  }
168
168
  declare const BadgeDot: React$1.FC<BadgeDotProps>;
@@ -240,8 +240,10 @@ interface ProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "ch
240
240
  hint?: React$1.ReactNode;
241
241
  /** Optional accessible label for the progressbar (string-only). */
242
242
  ariaLabel?: string;
243
- /** Controls whether the progress percentage label is rendered. */
244
- showProgressLabel?: boolean;
243
+ /** If true, the progress percentage label will not be rendered. */
244
+ hideProgressLabel?: boolean;
245
+ /** If true, the bar turns success color only when value reaches 100%. */
246
+ successBarColorOnComplete?: boolean;
245
247
  /** If true, the hint will not be rendered even if provided. */
246
248
  hideHint?: boolean;
247
249
  status?: ProgressStatus;
package/dist/index.d.ts CHANGED
@@ -135,7 +135,7 @@ declare const badgeVariants: (props?: ({
135
135
  } & class_variance_authority_types.ClassProp) | undefined) => string;
136
136
  type BadgeVariant = "primary" | "secondary" | "informal" | "success" | "warning" | "error" | "disabled" | "active";
137
137
  type BadgeSize = "sm" | "md" | "lg" | "xl";
138
- interface BadgeProps extends VariantProps<typeof badgeVariants> {
138
+ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
139
139
  asChild?: boolean;
140
140
  label: React$1.ReactNode;
141
141
  value?: React$1.ReactNode;
@@ -162,7 +162,7 @@ declare const BadgeDigit: React$1.ForwardRefExoticComponent<BadgeDigitProps & Re
162
162
  declare const badgeDotVariants: (props?: ({
163
163
  status?: "error" | "disabled" | "informal" | "warning" | "success/online" | null | undefined;
164
164
  } & class_variance_authority_types.ClassProp) | undefined) => string;
165
- interface BadgeDotProps extends VariantProps<typeof badgeDotVariants> {
165
+ interface BadgeDotProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeDotVariants> {
166
166
  className?: string;
167
167
  }
168
168
  declare const BadgeDot: React$1.FC<BadgeDotProps>;
@@ -240,8 +240,10 @@ interface ProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "ch
240
240
  hint?: React$1.ReactNode;
241
241
  /** Optional accessible label for the progressbar (string-only). */
242
242
  ariaLabel?: string;
243
- /** Controls whether the progress percentage label is rendered. */
244
- showProgressLabel?: boolean;
243
+ /** If true, the progress percentage label will not be rendered. */
244
+ hideProgressLabel?: boolean;
245
+ /** If true, the bar turns success color only when value reaches 100%. */
246
+ successBarColorOnComplete?: boolean;
245
247
  /** If true, the hint will not be rendered even if provided. */
246
248
  hideHint?: boolean;
247
249
  status?: ProgressStatus;
package/dist/index.js CHANGED
@@ -296,7 +296,7 @@ var IconButtonGroup = (props) => {
296
296
  "aria-label": item.ariaLabel,
297
297
  disabled: item.disabled,
298
298
  className: cn(
299
- "rounded-none border-1 border-(--border-secondary) text-primary ",
299
+ "rounded-none border-1 border-secondary text-primary ",
300
300
  index === 0 && "rounded-l-6",
301
301
  index === items.length - 1 && "rounded-r-6",
302
302
  index > 0 && "-ml-px"
@@ -473,7 +473,7 @@ var Accordion = React6.forwardRef(
473
473
  AccordionPrimitive.Item,
474
474
  {
475
475
  value: "item",
476
- className: cn(bordered ? "border rounded-4" : "border-b", "border-(--border-secondary) px-4"),
476
+ className: cn(bordered ? "border rounded-4" : "border-b", "border-secondary px-4"),
477
477
  children: [
478
478
  /* @__PURE__ */ jsx8(AccordionPrimitive.Header, { className: "flex", children: /* @__PURE__ */ jsxs4(
479
479
  AccordionPrimitive.Trigger,
@@ -507,7 +507,7 @@ import { cva as cva6 } from "class-variance-authority";
507
507
  import { UserIcon } from "@bubo-squared/icons";
508
508
  import { jsx as jsx9, jsxs as jsxs5 } from "react/jsx-runtime";
509
509
  var avatarVariants = cva6(
510
- "relative inline-flex items-center justify-center rounded-full border-(--border-secondary) border-1 bg-(--background-primary) text-primary overflow-hidden hover:border-(--focus-secondary) focus-visible:border-(--focus-primary) focus-visible:outline-none",
510
+ "relative inline-flex items-center justify-center rounded-full border-secondary border-1 bg-(--background-primary) text-primary overflow-hidden hover:border-(--focus-secondary) focus-visible:border-(--focus-primary) focus-visible:outline-none",
511
511
  {
512
512
  variants: {
513
513
  size: {
@@ -656,24 +656,24 @@ import { Slot as Slot5 } from "@radix-ui/react-slot";
656
656
  import { cva as cva7 } from "class-variance-authority";
657
657
  import { Fragment, jsx as jsx11, jsxs as jsxs6 } from "react/jsx-runtime";
658
658
  var badgeVariants = cva7(
659
- "inline-flex items-center justify-center rounded-4 leading-none whitespace-nowrap gap-1 px-1 py-0",
659
+ "inline-flex items-center justify-center rounded-4 leading-none whitespace-nowrap gap-1 py-0",
660
660
  {
661
661
  variants: {
662
662
  size: {
663
- sm: "px-1 paragraph-sm",
664
- md: "px-1 paragraph-md",
665
- lg: "px-1.5 subtitle",
666
- xl: "px-2 h6-title"
663
+ sm: "px-1.5 paragraph-sm",
664
+ md: "px-2 paragraph-md",
665
+ lg: "px-2 subtitle",
666
+ xl: "px-2.5 h6-title"
667
667
  },
668
668
  variant: {
669
669
  primary: "bg-(--background-secondary) text-primary",
670
- secondary: "bg-(--background-primary) border-1 border-(--border-primary) text-primary",
670
+ secondary: "bg-(--background-primary) border-1 border-primary text-primary",
671
671
  active: "bg-ac-lilac text-badge-black",
672
672
  informal: "bg-ac-neon-blue text-badge-black",
673
673
  success: "bg-ac-neon-green text-badge-black",
674
674
  warning: "bg-ac-light-orange text-badge-black",
675
675
  error: "bg-s-error-300 text-badge-black",
676
- disabled: "bg-(--background-primary-disabled) border-1 border-(--border-primary-disabled) text-primary-disabled",
676
+ disabled: "bg-(--background-primary-disabled) border-1 border-primary-disabled text-primary-disabled",
677
677
  "double-default": "bg-(--background-secondary) text-primary",
678
678
  "double-current": "bg-color-ac-lilac text-badge-black"
679
679
  }
@@ -728,12 +728,12 @@ var badgeDigitVariants = cva8(
728
728
  },
729
729
  variant: {
730
730
  primary: "bg-(--background-brand)",
731
- secondary: "bg-(--background-primary) border-1 border-(--border-secondary) text-(--color-secondary)",
731
+ secondary: "bg-(--background-primary) border-1 border-secondary text-primary",
732
732
  informal: "bg-(--background-informal)",
733
733
  success: "bg-(--background-success)",
734
734
  warning: "bg-(--background-warning)",
735
735
  error: "bg-(--background-error)",
736
- disabled: "bg-(--background-primary) border-1 border-(--border-primary-disabled) text-primary-disabled"
736
+ disabled: "bg-(--background-primary) border-1 border-primary-disabled text-primary-disabled"
737
737
  }
738
738
  },
739
739
  defaultVariants: {
@@ -1071,7 +1071,8 @@ var Progress = React15.forwardRef(
1071
1071
  label,
1072
1072
  hint,
1073
1073
  ariaLabel,
1074
- showProgressLabel = true,
1074
+ hideProgressLabel = false,
1075
+ successBarColorOnComplete = false,
1075
1076
  hideHint,
1076
1077
  size = "lg",
1077
1078
  status = "default",
@@ -1087,7 +1088,7 @@ var Progress = React15.forwardRef(
1087
1088
  Field,
1088
1089
  {
1089
1090
  label,
1090
- labelRight: showProgressLabel && label != null ? /* @__PURE__ */ jsx17("span", { className: "footnote text-(--color-secondary)", children: percentageLabel }) : void 0,
1091
+ labelRight: !hideProgressLabel && label != null ? /* @__PURE__ */ jsx17("span", { className: "footnote text-(--color-secondary)", children: percentageLabel }) : void 0,
1091
1092
  hint,
1092
1093
  hideHint,
1093
1094
  status,
@@ -1115,7 +1116,8 @@ var Progress = React15.forwardRef(
1115
1116
  "div",
1116
1117
  {
1117
1118
  className: cn(
1118
- "bg-(--chart-brand) h-full",
1119
+ "h-full",
1120
+ successBarColorOnComplete && clamped === 100 ? "bg-(--color-success)" : "bg-(--chart-brand)",
1119
1121
  size === "lg" ? "rounded-4" : size === "md" ? "rounded-2" : "rounded-[1px]"
1120
1122
  ),
1121
1123
  style: { width: `${clamped}%` }
@@ -1208,7 +1210,7 @@ import { Slot as Slot6 } from "@radix-ui/react-slot";
1208
1210
  import { cva as cva11 } from "class-variance-authority";
1209
1211
  import { jsx as jsx19, jsxs as jsxs11 } from "react/jsx-runtime";
1210
1212
  var tagVariants = cva11(
1211
- "inline-flex flex-row items-center justify-center rounded-6 gap-2 px-3 overflow-hidden border-1 border-(--border-secondary) bg-(--background-neutral) focus:border-(--border-brand) focus-ring-primary ",
1213
+ "inline-flex flex-row items-center justify-center rounded-6 gap-2 px-3 overflow-hidden border-1 border-secondary bg-(--background-neutral) focus:border-brand focus-ring-primary ",
1212
1214
  {
1213
1215
  variants: {
1214
1216
  size: {
@@ -1221,7 +1223,7 @@ var tagVariants = cva11(
1221
1223
  }
1222
1224
  }
1223
1225
  );
1224
- var disabledTag = "pointer-events-none border-(--border-secondary-disabled) bg-(--background-neutral-disabled) text-primary-disabled";
1226
+ var disabledTag = "pointer-events-none border-secondary-disabled bg-(--background-neutral-disabled) text-primary-disabled";
1225
1227
  var iconClasses = "flex items-center justify-center w-5 h-5 [&>*]:w-5 [&>*]:h-5 shrink-0 text-primary";
1226
1228
  var Tag = React17.forwardRef(
1227
1229
  (props, ref) => {
@@ -1268,7 +1270,7 @@ import { ChevronRightIcon } from "@bubo-squared/icons";
1268
1270
 
1269
1271
  // src/components/ui/dropdown-styles.ts
1270
1272
  import { cva as cva12 } from "class-variance-authority";
1271
- var dropdownSurfaceClass = "z-50 rounded-4 border border-(--border-secondary-hover) bg-(--background-neutral) shadow-card-md";
1273
+ var dropdownSurfaceClass = "z-50 rounded-4 border border-secondary-hover bg-(--background-neutral) shadow-card-md";
1272
1274
  var dropdownScrollClass = "max-h-79 overflow-y-auto dropdown-scrollbar";
1273
1275
  var dropdownRowVariants = cva12(
1274
1276
  "flex w-full items-center gap-2 pl-(--space-8) pr-(--space-16) text-left text-primary cursor-pointer hover:bg-(--background-secondary)",
@@ -1529,15 +1531,15 @@ var Checkbox = React20.forwardRef(({ label, className, ...props }, forwardedRef)
1529
1531
  {
1530
1532
  ref: forwardedRef,
1531
1533
  className: cn(
1532
- "group flex h-5 w-5 items-center justify-center rounded-2 border border-(--border-secondary) bg-(--background-neutral) text-primary-inverse",
1534
+ "group flex h-5 w-5 items-center justify-center rounded-2 border border-secondary bg-(--background-neutral) text-primary-inverse",
1533
1535
  "data-[state=checked]:bg-(--background-brand) data-[state=checked]:text-button-white data-[state=checked]:border-none",
1534
1536
  "data-[state=indeterminate]:bg-(--background-brand) data-[state=indeterminate]:text-button-white data-[state=indeterminate]:border-none",
1535
1537
  "data-[state=checked]:hover:bg-(--background-brand-hover) data-[state=indeterminate]:hover:bg-(--background-brand-hover)",
1536
- "focus-visible:border-(--border-brand)",
1538
+ "focus-visible:border-brand",
1537
1539
  "disabled:bg-(--background-primary-disabled) disabled:border-none disabled:text-(--icon-primary-disabled)",
1538
1540
  "data-[state=checked]:disabled:bg-(--background-primary-disabled) data-[state=checked]:disabled:border-none data-[state=checked]:disabled:text-(--icon-primary-disabled)",
1539
1541
  "data-[state=indeterminate]:disabled:bg-(--background-primary-disabled) data-[state=indeterminate]:disabled:border-none data-[state=indeterminate]:disabled:text-(--icon-primary-disabled)",
1540
- "focus-ring-primary hover:cursor-pointer hover:border-(--border-secondary-hover)",
1542
+ "focus-ring-primary hover:cursor-pointer hover:border-secondary-hover",
1541
1543
  className
1542
1544
  ),
1543
1545
  ...props,
@@ -1561,7 +1563,7 @@ import * as React21 from "react";
1561
1563
  import { cva as cva13 } from "class-variance-authority";
1562
1564
  import { jsx as jsx23 } from "react/jsx-runtime";
1563
1565
  var inputShellVariants = cva13(
1564
- "group flex w-full items-center rounded-4 border bg-(--background-primary) text-left cursor-text border-(--border-secondary)",
1566
+ "group flex w-full items-center rounded-4 border bg-(--background-primary) text-left cursor-text border-secondary",
1565
1567
  {
1566
1568
  variants: {
1567
1569
  size: {
@@ -1576,7 +1578,7 @@ var inputShellVariants = cva13(
1576
1578
  error: "input-error"
1577
1579
  },
1578
1580
  disabled: {
1579
- true: "bg-(--background-primary-disabled) border-(--border-secondary-disabled) text-primary-disabled cursor-default"
1581
+ true: "bg-(--background-primary-disabled) border-secondary-disabled text-primary-disabled cursor-default"
1580
1582
  }
1581
1583
  },
1582
1584
  defaultVariants: {
@@ -2735,7 +2737,7 @@ function ScrollBar({
2735
2737
  // src/components/Inputs/PhoneInput.tsx
2736
2738
  import { cva as cva18 } from "class-variance-authority";
2737
2739
  import { jsx as jsx33, jsxs as jsxs21 } from "react/jsx-runtime";
2738
- var inputBase = "h-full rounded-4 border-(--border-secondary) bg-(--background-primary) hover:border-(--border-secondary-hover)";
2740
+ var inputBase = "h-full rounded-4 border-secondary bg-(--background-primary) hover:border-secondary-hover";
2739
2741
  var sizeBase = cva18(
2740
2742
  "flex w-full",
2741
2743
  {
@@ -2758,7 +2760,7 @@ var inputTextVariants2 = cva18("", {
2758
2760
  xl: "h6-title"
2759
2761
  },
2760
2762
  disabled: {
2761
- true: "text-primary-disabled border-(--border-secondary-disabled)"
2763
+ true: "text-primary-disabled border-secondary-disabled"
2762
2764
  }
2763
2765
  },
2764
2766
  defaultVariants: {
@@ -3087,24 +3089,24 @@ var RadioGroup = React32.forwardRef((props, forwardedRef) => {
3087
3089
  className: cn(
3088
3090
  "flex items-center justify-center shrink-0 h-5 w-5 rounded-full border bg-(--background-primary) transition-all",
3089
3091
  // 1: enabled, unchecked, unfocused, unhovered
3090
- "group-data-[state=unchecked]:border-(--border-secondary)",
3092
+ "group-data-[state=unchecked]:border-secondary",
3091
3093
  // 2: enabled, checked, unfocused, unhovered
3092
- "group-data-[state=checked]:border-(--border-brand)",
3094
+ "group-data-[state=checked]:border-brand",
3093
3095
  // 3: enabled, unchecked, hovered, unfocused
3094
- "group-data-[state=unchecked]:group-hover:border-(--border-secondary-hover)",
3096
+ "group-data-[state=unchecked]:group-hover:border-secondary-hover",
3095
3097
  // 4: enabled, checked, hovered, unfocused
3096
- "group-data-[state=checked]:group-hover:border-(--border-brand-hover)",
3098
+ "group-data-[state=checked]:group-hover:border-brand-hover",
3097
3099
  "group-data-[state=checked]:group-hover:shadow-[0_0_0_var(--focus-ring-spread)_var(--focus-secondary)]",
3098
3100
  // 5: enabled, unchecked, focused (override 1/3)
3099
- "group-data-[state=unchecked]:group-focus-visible:border-(--border-secondary-hover)",
3101
+ "group-data-[state=unchecked]:group-focus-visible:border-secondary-hover",
3100
3102
  // 6: enabled, checked, focused (override 2/4)
3101
- "group-data-[state=checked]:group-focus-visible:border-(--border-brand-focus)",
3103
+ "group-data-[state=checked]:group-focus-visible:border-brand-focus",
3102
3104
  "group-data-[state=checked]:group-focus-visible:shadow-[0_0_0_var(--focus-ring-spread)_var(--focus-primary)]",
3103
3105
  // 7: disabled, unchecked (override everything above)
3104
3106
  "group-[&[data-disabled][data-state=unchecked]]:border-none",
3105
3107
  "group-[&[data-disabled][data-state=unchecked]]:bg-(--background-primary-disabled)",
3106
3108
  // 8: disabled, checked (override everything above)
3107
- "group-[&[data-disabled][data-state=checked]]:border-(--border-primary-disabled)",
3109
+ "group-[&[data-disabled][data-state=checked]]:border-primary-disabled",
3108
3110
  "group-[&[data-disabled][data-state=checked]]:bg-(--background-primary-disabled)"
3109
3111
  ),
3110
3112
  children: /* @__PURE__ */ jsx34(
@@ -3824,8 +3826,8 @@ var TextArea = React36.forwardRef((props, forwardedRef) => {
3824
3826
  const textareaId = id ?? generatedId;
3825
3827
  const statusBorderClass = {
3826
3828
  default: "",
3827
- success: "border-(--border-success)",
3828
- error: "border-(--border-error)"
3829
+ success: "border-success",
3830
+ error: "border-error"
3829
3831
  };
3830
3832
  const statusShellClass = {
3831
3833
  default: "input-default",
@@ -3871,9 +3873,9 @@ var TextArea = React36.forwardRef((props, forwardedRef) => {
3871
3873
  {
3872
3874
  className: cn(
3873
3875
  "relative flex w-full rounded-4 border bg-(--background-primary) cursor-text",
3874
- "border-(--border-secondary)",
3876
+ "border-secondary",
3875
3877
  statusShellClass[status],
3876
- disabled && "bg-(--background-primary-disabled) border-(--border-secondary-disabled) cursor-default",
3878
+ disabled && "bg-(--background-primary-disabled) border-secondary-disabled cursor-default",
3877
3879
  statusBorderClass[status],
3878
3880
  className
3879
3881
  ),
@@ -4121,16 +4123,16 @@ var Toggle = React38.forwardRef((props, forwardedRef) => {
4121
4123
  // Knob position
4122
4124
  "justify-start peer-checked:justify-end",
4123
4125
  // 1: enabled, unchecked, unhovered, unfocused
4124
- "border-(--border-secondary)",
4126
+ "border-secondary",
4125
4127
  // 3: enabled, unchecked, hovered, unfocused
4126
- "hover:border-(--border-secondary-hover)",
4128
+ "hover:border-secondary-hover",
4127
4129
  // 2: enabled, checked, unhovered, unfocused
4128
- "peer-checked:border-(--border-brand)",
4130
+ "peer-checked:border-brand",
4129
4131
  // 4: enabled, checked, hovered, unfocused
4130
- "peer-checked:hover:border-(--border-brand-hover)",
4132
+ "peer-checked:hover:border-brand-hover",
4131
4133
  "peer-checked:hover:shadow-[0_0_0_var(--focus-ring-spread)_var(--focus-secondary)]",
4132
4134
  // 5: enabled, unchecked, unhovered, focused
4133
- "peer-focus-visible:border-(--border-brand-focus)",
4135
+ "peer-focus-visible:border-brand-focus",
4134
4136
  // 6: enabled, checked, unhovered, focused
4135
4137
  "peer-checked:peer-focus-visible:bg-(--background-brand-focus)",
4136
4138
  "peer-checked:peer-focus-visible:shadow-[0_0_0_var(--focus-ring-spread)_var(--focus-primary)]",
@@ -4139,7 +4141,7 @@ var Toggle = React38.forwardRef((props, forwardedRef) => {
4139
4141
  "peer-disabled:border-none",
4140
4142
  "peer-disabled:shadow-none",
4141
4143
  // 8: disabled, checked (override)
4142
- "peer-disabled:peer-checked:border-(--border-primary-disabled)",
4144
+ "peer-disabled:peer-checked:border-primary-disabled",
4143
4145
  // Disable hover when disabled
4144
4146
  "peer-disabled:pointer-events-none",
4145
4147
  // Knob on (enabled)
@@ -4198,7 +4200,7 @@ var WebsiteInput = React39.forwardRef((props, forwardedRef) => {
4198
4200
  const baseClass = cn(
4199
4201
  "[&>span]:w-[unset] hover:bg-[unset]",
4200
4202
  !disabled && "[&:not(:focus-within):hover]:shadow-[0_0_0_var(--focus-ring-spread)_var(--background-secondary-hover)]",
4201
- disabled && "bg-[unset] hover:shadow-none hover:border-(--border-secondary-disabled) border-(--border-secondary-disabled)",
4203
+ disabled && "bg-[unset] hover:shadow-none hover:border-secondary-disabled border-secondary-disabled",
4202
4204
  spanHeightClass
4203
4205
  );
4204
4206
  const addonTextClass = cn(
@@ -4209,9 +4211,9 @@ var WebsiteInput = React39.forwardRef((props, forwardedRef) => {
4209
4211
  const baseAddonClass = cn(
4210
4212
  "flex items-center gap-2 px-2 h-full",
4211
4213
  // layout + padding
4212
- "border-(--border-secondary)",
4214
+ "border-secondary",
4213
4215
  // divider color
4214
- disabled && "border-(--border-secondary-disabled) hover:border-(--border-secondary-disabled)",
4216
+ disabled && "border-secondary-disabled hover:border-secondary-disabled",
4215
4217
  isLeading ? "border-r" : "border-l"
4216
4218
  );
4217
4219
  const iconWrapperClass = cn(
@@ -4474,7 +4476,7 @@ var Breadcrumbs = React43.forwardRef(
4474
4476
  DropdownMenuContent,
4475
4477
  {
4476
4478
  align: "start",
4477
- className: "bg-(--background-neutral) border-(--border-secondary-hover) shadow-card-md rounded-4",
4479
+ className: "bg-(--background-neutral) border-secondary-hover shadow-card-md rounded-4",
4478
4480
  children: /* @__PURE__ */ jsx45(DropdownMenuGroup, { children: hiddenItems.map((hidden, hiddenIndex) => {
4479
4481
  const hiddenKey = React43.isValidElement(hidden) && hidden.key != null ? String(hidden.key) : `hidden-${hiddenIndex}`;
4480
4482
  if (React43.isValidElement(hidden)) {