@webstacks/ui 0.3.0 → 0.3.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.js CHANGED
@@ -153,7 +153,7 @@ var AccordionItem = React3.forwardRef(({ className, ...props }, ref) => /* @__PU
153
153
  AccordionPrimitive.Item,
154
154
  {
155
155
  ref,
156
- className: cn("border-b", className),
156
+ className: cn("border-b border-border", className),
157
157
  ...props
158
158
  }
159
159
  ));
@@ -163,7 +163,7 @@ var AccordionTrigger = React3.forwardRef(({ className, children, ...props }, ref
163
163
  {
164
164
  ref,
165
165
  className: cn(
166
- "flex flex-1 items-center justify-between py-4 text-sm font-medium transition-all hover:underline text-left [&[data-state=open]>svg]:rotate-180",
166
+ "flex flex-1 items-center justify-between py-4 text-sm transition-all hover:underline text-left [&[data-state=open]>svg]:rotate-180",
167
167
  className
168
168
  ),
169
169
  ...props,
@@ -217,7 +217,7 @@ var AlertTitle = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE_
217
217
  "h5",
218
218
  {
219
219
  ref,
220
- className: cn("mb-1 font-medium leading-none tracking-tight", className),
220
+ className: cn("mb-1 leading-none tracking-tight", className),
221
221
  ...props
222
222
  }
223
223
  ));
@@ -242,7 +242,7 @@ import { Slot } from "@radix-ui/react-slot";
242
242
  import { cva as cva2 } from "class-variance-authority";
243
243
  import { jsx as jsx3 } from "react/jsx-runtime";
244
244
  var buttonVariants = cva2(
245
- "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-full text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
245
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-full text-sm transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
246
246
  {
247
247
  variants: {
248
248
  variant: {
@@ -345,7 +345,7 @@ var AlertDialogTitle = React6.forwardRef(({ className, ...props }, ref) => /* @_
345
345
  AlertDialogPrimitive.Title,
346
346
  {
347
347
  ref,
348
- className: cn("text-lg font-semibold", className),
348
+ className: cn("text-lg ", className),
349
349
  ...props
350
350
  }
351
351
  ));
@@ -428,7 +428,7 @@ AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName;
428
428
  import { cva as cva3 } from "class-variance-authority";
429
429
  import { jsx as jsx6 } from "react/jsx-runtime";
430
430
  var badgeVariants = cva3(
431
- "inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
431
+ "inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
432
432
  {
433
433
  variants: {
434
434
  variant: {
@@ -1362,7 +1362,7 @@ function Calendar({
1362
1362
  defaultClassNames.month_caption
1363
1363
  ),
1364
1364
  dropdowns: cn(
1365
- "flex h-[--cell-size] w-full items-center justify-center gap-1.5 text-sm font-medium",
1365
+ "flex h-[--cell-size] w-full items-center justify-center gap-1.5 text-sm",
1366
1366
  defaultClassNames.dropdowns
1367
1367
  ),
1368
1368
  dropdown_root: cn(
@@ -1374,7 +1374,7 @@ function Calendar({
1374
1374
  defaultClassNames.dropdown
1375
1375
  ),
1376
1376
  caption_label: cn(
1377
- "select-none font-medium",
1377
+ "select-none",
1378
1378
  captionLayout === "label" ? "text-sm" : "[&>svg]:text-muted-foreground flex h-8 items-center gap-1 rounded-md pl-2 pr-1 text-sm [&>svg]:size-3.5",
1379
1379
  defaultClassNames.caption_label
1380
1380
  ),
@@ -1495,7 +1495,7 @@ var Card = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
1495
1495
  {
1496
1496
  ref,
1497
1497
  className: cn(
1498
- "rounded-xl border bg-card text-card-foreground shadow",
1498
+ "border border-border bg-card text-card-foreground overflow-hidden",
1499
1499
  className
1500
1500
  ),
1501
1501
  ...props
@@ -1515,7 +1515,7 @@ var CardTitle = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE_
1515
1515
  "div",
1516
1516
  {
1517
1517
  ref,
1518
- className: cn("font-semibold leading-none tracking-tight", className),
1518
+ className: cn("leading-none tracking-tight", className),
1519
1519
  ...props
1520
1520
  }
1521
1521
  ));
@@ -1814,12 +1814,12 @@ var ChartTooltipContent = React17.forwardRef(
1814
1814
  const itemConfig = getPayloadConfigFromPayload(config, item, key);
1815
1815
  const value = !labelKey && typeof label === "string" ? config[label]?.label || label : itemConfig?.label;
1816
1816
  if (labelFormatter) {
1817
- return /* @__PURE__ */ jsx16("div", { className: cn("font-medium", labelClassName), children: labelFormatter(value, payload) });
1817
+ return /* @__PURE__ */ jsx16("div", { className: cn(labelClassName), children: labelFormatter(value, payload) });
1818
1818
  }
1819
1819
  if (!value) {
1820
1820
  return null;
1821
1821
  }
1822
- return /* @__PURE__ */ jsx16("div", { className: cn("font-medium", labelClassName), children: value });
1822
+ return /* @__PURE__ */ jsx16("div", { className: cn(labelClassName), children: value });
1823
1823
  }, [
1824
1824
  label,
1825
1825
  labelFormatter,
@@ -1885,7 +1885,7 @@ var ChartTooltipContent = React17.forwardRef(
1885
1885
  nestLabel ? tooltipLabel : null,
1886
1886
  /* @__PURE__ */ jsx16("span", { className: "text-muted-foreground", children: itemConfig?.label || item.name })
1887
1887
  ] }),
1888
- item.value && /* @__PURE__ */ jsx16("span", { className: "font-mono font-medium tabular-nums text-foreground", children: item.value.toLocaleString() })
1888
+ item.value && /* @__PURE__ */ jsx16("span", { className: "font-mono tabular-nums text-foreground", children: item.value.toLocaleString() })
1889
1889
  ]
1890
1890
  }
1891
1891
  )
@@ -1970,7 +1970,7 @@ var Checkbox = React18.forwardRef(({ className, ...props }, ref) => /* @__PURE__
1970
1970
  {
1971
1971
  ref,
1972
1972
  className: cn(
1973
- "grid place-content-center peer h-4 w-4 shrink-0 rounded-sm border border-primary shadow focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",
1973
+ "grid place-content-center peer h-4 w-4 shrink-0 rounded-sm border border-input focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground",
1974
1974
  className
1975
1975
  ),
1976
1976
  ...props,
@@ -2072,7 +2072,7 @@ var DialogTitle = React19.forwardRef(({ className, ...props }, ref) => /* @__PUR
2072
2072
  {
2073
2073
  ref,
2074
2074
  className: cn(
2075
- "text-lg font-semibold leading-none tracking-tight",
2075
+ "text-lg leading-none tracking-tight",
2076
2076
  className
2077
2077
  ),
2078
2078
  ...props
@@ -2104,9 +2104,9 @@ var Command = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__
2104
2104
  ));
2105
2105
  Command.displayName = CommandPrimitive.displayName;
2106
2106
  var CommandDialog = ({ children, ...props }) => {
2107
- return /* @__PURE__ */ jsx19(Dialog, { ...props, children: /* @__PURE__ */ jsx19(DialogContent, { className: "overflow-hidden p-0", children: /* @__PURE__ */ jsx19(Command, { className: "[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5", children }) }) });
2107
+ return /* @__PURE__ */ jsx19(Dialog, { ...props, children: /* @__PURE__ */ jsx19(DialogContent, { className: "overflow-hidden p-0", children: /* @__PURE__ */ jsx19(Command, { className: "[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5", children }) }) });
2108
2108
  };
2109
- var CommandInput = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs7("div", { className: "flex items-center border-b px-3", "cmdk-input-wrapper": "", children: [
2109
+ var CommandInput = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs7("div", { className: "flex items-center border-b border-border px-3", "cmdk-input-wrapper": "", children: [
2110
2110
  /* @__PURE__ */ jsx19(Search, { className: "mr-2 h-4 w-4 shrink-0 opacity-50" }),
2111
2111
  /* @__PURE__ */ jsx19(
2112
2112
  CommandPrimitive.Input,
@@ -2144,7 +2144,7 @@ var CommandGroup = React20.forwardRef(({ className, ...props }, ref) => /* @__PU
2144
2144
  {
2145
2145
  ref,
2146
2146
  className: cn(
2147
- "overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground",
2147
+ "overflow-hidden p-1 text-foreground [&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:py-1.5 [&_[cmdk-group-heading]]:text-xs [&_[cmdk-group-heading]]:text-muted-foreground",
2148
2148
  className
2149
2149
  ),
2150
2150
  ...props
@@ -2292,7 +2292,7 @@ var ContextMenuLabel = React21.forwardRef(({ className, inset, ...props }, ref)
2292
2292
  {
2293
2293
  ref,
2294
2294
  className: cn(
2295
- "px-2 py-1.5 text-sm font-semibold text-foreground",
2295
+ "px-2 py-1.5 text-sm text-foreground",
2296
2296
  inset && "pl-8",
2297
2297
  className
2298
2298
  ),
@@ -2399,7 +2399,7 @@ var DrawerTitle = React22.forwardRef(({ className, ...props }, ref) => /* @__PUR
2399
2399
  {
2400
2400
  ref,
2401
2401
  className: cn(
2402
- "text-lg font-semibold leading-none tracking-tight",
2402
+ "text-lg leading-none tracking-tight",
2403
2403
  className
2404
2404
  ),
2405
2405
  ...props
@@ -2521,7 +2521,7 @@ var DropdownMenuLabel = React23.forwardRef(({ className, inset, ...props }, ref)
2521
2521
  {
2522
2522
  ref,
2523
2523
  className: cn(
2524
- "px-2 py-1.5 text-sm font-semibold",
2524
+ "px-2 py-1.5 text-sm",
2525
2525
  inset && "pl-8",
2526
2526
  className
2527
2527
  ),
@@ -2567,7 +2567,7 @@ import * as LabelPrimitive from "@radix-ui/react-label";
2567
2567
  import { cva as cva9 } from "class-variance-authority";
2568
2568
  import { jsx as jsx23 } from "react/jsx-runtime";
2569
2569
  var labelVariants = cva9(
2570
- "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
2570
+ "text-sm leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
2571
2571
  );
2572
2572
  var Label3 = React24.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx23(
2573
2573
  LabelPrimitive.Root,
@@ -2666,7 +2666,7 @@ var FormMessage = React25.forwardRef(({ className, children, ...props }, ref) =>
2666
2666
  {
2667
2667
  ref,
2668
2668
  id: formMessageId,
2669
- className: cn("text-[0.8rem] font-medium text-destructive", className),
2669
+ className: cn("text-[0.8rem] text-destructive", className),
2670
2670
  ...props,
2671
2671
  children: body
2672
2672
  }
@@ -2705,7 +2705,7 @@ var Input = React27.forwardRef(
2705
2705
  {
2706
2706
  type,
2707
2707
  className: cn(
2708
- "flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
2708
+ "flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
2709
2709
  className
2710
2710
  ),
2711
2711
  ref,
@@ -2807,7 +2807,7 @@ var MenubarTrigger = React29.forwardRef(({ className, ...props }, ref) => /* @__
2807
2807
  {
2808
2808
  ref,
2809
2809
  className: cn(
2810
- "flex cursor-default select-none items-center rounded-sm px-3 py-1 text-sm font-medium outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
2810
+ "flex cursor-default select-none items-center rounded-sm px-3 py-1 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground",
2811
2811
  className
2812
2812
  ),
2813
2813
  ...props
@@ -2911,7 +2911,7 @@ var MenubarLabel = React29.forwardRef(({ className, inset, ...props }, ref) => /
2911
2911
  {
2912
2912
  ref,
2913
2913
  className: cn(
2914
- "px-2 py-1.5 text-sm font-semibold",
2914
+ "px-2 py-1.5 text-sm",
2915
2915
  inset && "pl-8",
2916
2916
  className
2917
2917
  ),
@@ -2981,7 +2981,7 @@ var NavigationMenuList = React30.forwardRef(({ className, ...props }, ref) => /*
2981
2981
  NavigationMenuList.displayName = NavigationMenuPrimitive.List.displayName;
2982
2982
  var NavigationMenuItem = NavigationMenuPrimitive.Item;
2983
2983
  var navigationMenuTriggerStyle = cva10(
2984
- "group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"
2984
+ "group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"
2985
2985
  );
2986
2986
  var NavigationMenuTrigger = React30.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs13(
2987
2987
  NavigationMenuPrimitive.Trigger,
@@ -3206,7 +3206,7 @@ var RadioGroupItem = React34.forwardRef(({ className, ...props }, ref) => {
3206
3206
  {
3207
3207
  ref,
3208
3208
  className: cn(
3209
- "aspect-square h-4 w-4 rounded-full border border-primary text-primary shadow focus:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
3209
+ "aspect-square h-4 w-4 rounded-full border border-input text-primary focus:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
3210
3210
  className
3211
3211
  ),
3212
3212
  ...props,
@@ -3371,7 +3371,7 @@ var SelectLabel = React36.forwardRef(({ className, ...props }, ref) => /* @__PUR
3371
3371
  SelectPrimitive.Label,
3372
3372
  {
3373
3373
  ref,
3374
- className: cn("px-2 py-1.5 text-sm font-semibold", className),
3374
+ className: cn("px-2 py-1.5 text-sm", className),
3375
3375
  ...props
3376
3376
  }
3377
3377
  ));
@@ -3451,10 +3451,10 @@ var sheetVariants = cva11(
3451
3451
  {
3452
3452
  variants: {
3453
3453
  side: {
3454
- top: "inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",
3455
- bottom: "inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",
3456
- left: "inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",
3457
- right: "inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"
3454
+ top: "inset-x-0 top-0 border-b border-border data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",
3455
+ bottom: "inset-x-0 bottom-0 border-t border-border data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",
3456
+ left: "inset-y-0 left-0 h-full w-3/4 border-r border-border data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",
3457
+ right: "inset-y-0 right-0 h-full w-3/4 border-l border-border data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"
3458
3458
  }
3459
3459
  },
3460
3460
  defaultVariants: {
@@ -3513,7 +3513,7 @@ var SheetTitle = React38.forwardRef(({ className, ...props }, ref) => /* @__PURE
3513
3513
  SheetPrimitive.Title,
3514
3514
  {
3515
3515
  ref,
3516
- className: cn("text-lg font-semibold text-foreground", className),
3516
+ className: cn("text-lg text-foreground", className),
3517
3517
  ...props
3518
3518
  }
3519
3519
  ));
@@ -3731,7 +3731,7 @@ var Sidebar = React40.forwardRef(
3731
3731
  "fixed inset-y-0 z-10 hidden h-svh w-[--sidebar-width] transition-[left,right,width] duration-200 ease-linear md:flex",
3732
3732
  side === "left" ? "left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]" : "right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]",
3733
3733
  // Adjust the padding for floating and inset variants.
3734
- variant === "floating" || variant === "inset" ? "p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)]" : "group-data-[collapsible=icon]:w-[--sidebar-width-icon] group-data-[side=left]:border-r group-data-[side=right]:border-l",
3734
+ variant === "floating" || variant === "inset" ? "p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)]" : "group-data-[collapsible=icon]:w-[--sidebar-width-icon] group-data-[side=left]:border-r group-data-[side=left]:border-border group-data-[side=right]:border-l group-data-[side=right]:border-border",
3735
3735
  className
3736
3736
  ),
3737
3737
  ...props,
@@ -3900,7 +3900,7 @@ var SidebarGroupLabel = React40.forwardRef(({ className, asChild = false, ...pro
3900
3900
  ref,
3901
3901
  "data-sidebar": "group-label",
3902
3902
  className: cn(
3903
- "flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium text-sidebar-foreground/70 outline-none ring-sidebar-ring transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0",
3903
+ "flex h-8 shrink-0 items-center rounded-md px-2 text-xs text-sidebar-foreground/70 outline-none ring-sidebar-ring transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0",
3904
3904
  "group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0",
3905
3905
  className
3906
3906
  ),
@@ -3959,7 +3959,7 @@ var SidebarMenuItem = React40.forwardRef(({ className, ...props }, ref) => /* @_
3959
3959
  ));
3960
3960
  SidebarMenuItem.displayName = "SidebarMenuItem";
3961
3961
  var sidebarMenuButtonVariants = cva12(
3962
- "peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",
3962
+ "peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",
3963
3963
  {
3964
3964
  variants: {
3965
3965
  variant: {
@@ -4053,7 +4053,7 @@ var SidebarMenuBadge = React40.forwardRef(({ className, ...props }, ref) => /* @
4053
4053
  ref,
4054
4054
  "data-sidebar": "menu-badge",
4055
4055
  className: cn(
4056
- "pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground",
4056
+ "pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-md px-1 text-xs tabular-nums text-sidebar-foreground",
4057
4057
  "peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground",
4058
4058
  "peer-data-[size=sm]/menu-button:top-1",
4059
4059
  "peer-data-[size=default]/menu-button:top-1.5",
@@ -4220,7 +4220,7 @@ var Table = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
4220
4220
  }
4221
4221
  ) }));
4222
4222
  Table.displayName = "Table";
4223
- var TableHeader = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx45("thead", { ref, className: cn("[&_tr]:border-b", className), ...props }));
4223
+ var TableHeader = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx45("thead", { ref, className: cn("[&_tr]:border-b [&_tr]:border-border", className), ...props }));
4224
4224
  TableHeader.displayName = "TableHeader";
4225
4225
  var TableBody = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx45(
4226
4226
  "tbody",
@@ -4236,7 +4236,7 @@ var TableFooter = React43.forwardRef(({ className, ...props }, ref) => /* @__PUR
4236
4236
  {
4237
4237
  ref,
4238
4238
  className: cn(
4239
- "border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",
4239
+ "border-t border-border bg-muted/50 [&>tr]:last:border-b-0",
4240
4240
  className
4241
4241
  ),
4242
4242
  ...props
@@ -4248,7 +4248,7 @@ var TableRow = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__
4248
4248
  {
4249
4249
  ref,
4250
4250
  className: cn(
4251
- "border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
4251
+ "border-b border-border transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
4252
4252
  className
4253
4253
  ),
4254
4254
  ...props
@@ -4260,7 +4260,7 @@ var TableHead = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE_
4260
4260
  {
4261
4261
  ref,
4262
4262
  className: cn(
4263
- "h-10 px-2 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
4263
+ "h-10 px-2 text-left align-middle text-muted-foreground [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]",
4264
4264
  className
4265
4265
  ),
4266
4266
  ...props
@@ -4311,7 +4311,7 @@ var TabsTrigger = React44.forwardRef(({ className, ...props }, ref) => /* @__PUR
4311
4311
  {
4312
4312
  ref,
4313
4313
  className: cn(
4314
- "inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1 text-sm font-medium ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow",
4314
+ "inline-flex items-center justify-center whitespace-nowrap rounded-md px-3 py-1 text-sm ring-offset-background transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 data-[state=active]:bg-background data-[state=active]:text-foreground data-[state=active]:shadow",
4315
4315
  className
4316
4316
  ),
4317
4317
  ...props
@@ -4398,7 +4398,7 @@ var ToastAction = React46.forwardRef(({ className, ...props }, ref) => /* @__PUR
4398
4398
  {
4399
4399
  ref,
4400
4400
  className: cn(
4401
- "inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-sm font-medium transition-colors hover:bg-secondary focus:outline-none focus:ring-1 focus:ring-ring disabled:pointer-events-none disabled:opacity-50 group-[.destructive]:border-muted/40 group-[.destructive]:hover:border-destructive/30 group-[.destructive]:hover:bg-destructive group-[.destructive]:hover:text-destructive-foreground group-[.destructive]:focus:ring-destructive",
4401
+ "inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-sm transition-colors hover:bg-secondary focus:outline-none focus:ring-1 focus:ring-ring disabled:pointer-events-none disabled:opacity-50 group-[.destructive]:border-muted/40 group-[.destructive]:hover:border-destructive/30 group-[.destructive]:hover:bg-destructive group-[.destructive]:hover:text-destructive-foreground group-[.destructive]:focus:ring-destructive",
4402
4402
  className
4403
4403
  ),
4404
4404
  ...props
@@ -4423,7 +4423,7 @@ var ToastTitle = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE
4423
4423
  ToastPrimitives.Title,
4424
4424
  {
4425
4425
  ref,
4426
- className: cn("text-sm font-semibold [&+div]:text-xs", className),
4426
+ className: cn("text-sm [&+div]:text-xs", className),
4427
4427
  ...props
4428
4428
  }
4429
4429
  ));
@@ -4463,7 +4463,7 @@ import * as TogglePrimitive from "@radix-ui/react-toggle";
4463
4463
  import { cva as cva14 } from "class-variance-authority";
4464
4464
  import { jsx as jsx50 } from "react/jsx-runtime";
4465
4465
  var toggleVariants = cva14(
4466
- "inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
4466
+ "inline-flex items-center justify-center gap-2 rounded-md text-sm transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
4467
4467
  {
4468
4468
  variants: {
4469
4469
  variant: {