ui-arreya-components 0.1.4 → 0.1.9

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
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var react = require('react');
3
+ var React = require('react');
4
4
  var AlertDialogPrimitive = require('@radix-ui/react-alert-dialog');
5
5
  var clsx = require('clsx');
6
6
  var tailwindMerge = require('tailwind-merge');
@@ -13,6 +13,7 @@ var reactDayPicker = require('react-day-picker');
13
13
  var CheckboxPrimitive = require('@radix-ui/react-checkbox');
14
14
  var cmdk = require('cmdk');
15
15
  var DialogPrimitive = require('@radix-ui/react-dialog');
16
+ var vaul = require('vaul');
16
17
  var DropdownMenuPrimitive = require('@radix-ui/react-dropdown-menu');
17
18
  var reactHookForm = require('react-hook-form');
18
19
  var LabelPrimitive = require('@radix-ui/react-label');
@@ -22,6 +23,7 @@ var ScrollAreaPrimitive = require('@radix-ui/react-scroll-area');
22
23
  var SelectPrimitive = require('@radix-ui/react-select');
23
24
  var SeparatorPrimitive = require('@radix-ui/react-separator');
24
25
  var TooltipPrimitive = require('@radix-ui/react-tooltip');
26
+ var SliderPrimitive = require('@radix-ui/react-slider');
25
27
  var nextThemes = require('next-themes');
26
28
  var sonner = require('sonner');
27
29
  var SwitchPrimitives = require('@radix-ui/react-switch');
@@ -45,6 +47,7 @@ function _interopNamespace(e) {
45
47
  return Object.freeze(n);
46
48
  }
47
49
 
50
+ var React__namespace = /*#__PURE__*/_interopNamespace(React);
48
51
  var AlertDialogPrimitive__namespace = /*#__PURE__*/_interopNamespace(AlertDialogPrimitive);
49
52
  var AvatarPrimitive__namespace = /*#__PURE__*/_interopNamespace(AvatarPrimitive);
50
53
  var CheckboxPrimitive__namespace = /*#__PURE__*/_interopNamespace(CheckboxPrimitive);
@@ -57,6 +60,7 @@ var ScrollAreaPrimitive__namespace = /*#__PURE__*/_interopNamespace(ScrollAreaPr
57
60
  var SelectPrimitive__namespace = /*#__PURE__*/_interopNamespace(SelectPrimitive);
58
61
  var SeparatorPrimitive__namespace = /*#__PURE__*/_interopNamespace(SeparatorPrimitive);
59
62
  var TooltipPrimitive__namespace = /*#__PURE__*/_interopNamespace(TooltipPrimitive);
63
+ var SliderPrimitive__namespace = /*#__PURE__*/_interopNamespace(SliderPrimitive);
60
64
  var SwitchPrimitives__namespace = /*#__PURE__*/_interopNamespace(SwitchPrimitives);
61
65
  var TabsPrimitive__namespace = /*#__PURE__*/_interopNamespace(TabsPrimitive);
62
66
 
@@ -88,7 +92,7 @@ var buttonVariants = classVarianceAuthority.cva(
88
92
  }
89
93
  }
90
94
  );
91
- var Button = react.forwardRef(
95
+ var Button = React.forwardRef(
92
96
  ({ className, variant, size, asChild = false, ...props }, ref) => {
93
97
  const Comp = asChild ? reactSlot.Slot : "button";
94
98
  return /* @__PURE__ */ jsxRuntime.jsx(Comp, { className: cn(buttonVariants({ variant, size, className })), ref, ...props });
@@ -98,7 +102,7 @@ Button.displayName = "Button";
98
102
  var AlertDialog = AlertDialogPrimitive__namespace.Root;
99
103
  var AlertDialogTrigger = AlertDialogPrimitive__namespace.Trigger;
100
104
  var AlertDialogPortal = AlertDialogPrimitive__namespace.Portal;
101
- var AlertDialogOverlay = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
105
+ var AlertDialogOverlay = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
102
106
  AlertDialogPrimitive__namespace.Overlay,
103
107
  {
104
108
  className: cn(
@@ -110,7 +114,7 @@ var AlertDialogOverlay = react.forwardRef(({ className, ...props }, ref) => /* @
110
114
  }
111
115
  ));
112
116
  AlertDialogOverlay.displayName = AlertDialogPrimitive__namespace.Overlay.displayName;
113
- var AlertDialogContent = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(AlertDialogPortal, { children: [
117
+ var AlertDialogContent = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(AlertDialogPortal, { children: [
114
118
  /* @__PURE__ */ jsxRuntime.jsx(AlertDialogOverlay, {}),
115
119
  /* @__PURE__ */ jsxRuntime.jsx(
116
120
  AlertDialogPrimitive__namespace.Content,
@@ -129,13 +133,13 @@ var AlertDialogHeader = ({ className, ...props }) => /* @__PURE__ */ jsxRuntime.
129
133
  AlertDialogHeader.displayName = "AlertDialogHeader";
130
134
  var AlertDialogFooter = ({ className, ...props }) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", className), ...props });
131
135
  AlertDialogFooter.displayName = "AlertDialogFooter";
132
- var AlertDialogTitle = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AlertDialogPrimitive__namespace.Title, { ref, className: cn("text-lg font-semibold", className), ...props }));
136
+ var AlertDialogTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AlertDialogPrimitive__namespace.Title, { ref, className: cn("text-lg font-semibold", className), ...props }));
133
137
  AlertDialogTitle.displayName = AlertDialogPrimitive__namespace.Title.displayName;
134
- var AlertDialogDescription = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AlertDialogPrimitive__namespace.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
138
+ var AlertDialogDescription = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AlertDialogPrimitive__namespace.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
135
139
  AlertDialogDescription.displayName = AlertDialogPrimitive__namespace.Description.displayName;
136
- var AlertDialogAction = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AlertDialogPrimitive__namespace.Action, { ref, className: cn(buttonVariants(), className), ...props }));
140
+ var AlertDialogAction = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AlertDialogPrimitive__namespace.Action, { ref, className: cn(buttonVariants(), className), ...props }));
137
141
  AlertDialogAction.displayName = AlertDialogPrimitive__namespace.Action.displayName;
138
- var AlertDialogCancel = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
142
+ var AlertDialogCancel = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
139
143
  AlertDialogPrimitive__namespace.Cancel,
140
144
  {
141
145
  ref,
@@ -158,19 +162,19 @@ var alertVariants = classVarianceAuthority.cva(
158
162
  }
159
163
  }
160
164
  );
161
- var Alert = react.forwardRef(
165
+ var Alert = React.forwardRef(
162
166
  ({ className, variant, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, role: "alert", className: cn(alertVariants({ variant }), className), ...props })
163
167
  );
164
168
  Alert.displayName = "Alert";
165
- var AlertTitle = react.forwardRef(
169
+ var AlertTitle = React.forwardRef(
166
170
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("h5", { ref, className: cn("mb-1 font-medium leading-none tracking-tight", className), ...props })
167
171
  );
168
172
  AlertTitle.displayName = "AlertTitle";
169
- var AlertDescription = react.forwardRef(
173
+ var AlertDescription = React.forwardRef(
170
174
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("text-sm [&_p]:leading-relaxed", className), ...props })
171
175
  );
172
176
  AlertDescription.displayName = "AlertDescription";
173
- var Avatar = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
177
+ var Avatar = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
174
178
  AvatarPrimitive__namespace.Root,
175
179
  {
176
180
  ref,
@@ -179,9 +183,9 @@ var Avatar = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
179
183
  }
180
184
  ));
181
185
  Avatar.displayName = AvatarPrimitive__namespace.Root.displayName;
182
- var AvatarImage = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AvatarPrimitive__namespace.Image, { ref, className: cn("aspect-square h-full w-full", className), ...props }));
186
+ var AvatarImage = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(AvatarPrimitive__namespace.Image, { ref, className: cn("aspect-square h-full w-full", className), ...props }));
183
187
  AvatarImage.displayName = AvatarPrimitive__namespace.Image.displayName;
184
- var AvatarFallback = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
188
+ var AvatarFallback = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
185
189
  AvatarPrimitive__namespace.Fallback,
186
190
  {
187
191
  ref,
@@ -206,13 +210,13 @@ var badgeVariants = classVarianceAuthority.cva(
206
210
  }
207
211
  }
208
212
  );
209
- var Badge = react.forwardRef(({ className, variant, ...props }, ref) => {
213
+ var Badge = React.forwardRef(({ className, variant, ...props }, ref) => {
210
214
  return /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn(badgeVariants({ variant }), className), ...props });
211
215
  });
212
216
  Badge.displayName = "Badge";
213
- var Breadcrumb = react.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("nav", { ref, "aria-label": "breadcrumb", ...props }));
217
+ var Breadcrumb = React.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("nav", { ref, "aria-label": "breadcrumb", ...props }));
214
218
  Breadcrumb.displayName = "Breadcrumb";
215
- var BreadcrumbList = react.forwardRef(
219
+ var BreadcrumbList = React.forwardRef(
216
220
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
217
221
  "ol",
218
222
  {
@@ -226,16 +230,16 @@ var BreadcrumbList = react.forwardRef(
226
230
  )
227
231
  );
228
232
  BreadcrumbList.displayName = "BreadcrumbList";
229
- var BreadcrumbItem = react.forwardRef(
233
+ var BreadcrumbItem = React.forwardRef(
230
234
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, className: cn("inline-flex items-center gap-1.5", className), ...props })
231
235
  );
232
236
  BreadcrumbItem.displayName = "BreadcrumbItem";
233
- var BreadcrumbLink = react.forwardRef(({ asChild, className, ...props }, ref) => {
237
+ var BreadcrumbLink = React.forwardRef(({ asChild, className, ...props }, ref) => {
234
238
  const Comp = asChild ? reactSlot.Slot : "a";
235
239
  return /* @__PURE__ */ jsxRuntime.jsx(Comp, { ref, className: cn("transition-colors hover:text-foreground", className), ...props });
236
240
  });
237
241
  BreadcrumbLink.displayName = "BreadcrumbLink";
238
- var BreadcrumbPage = react.forwardRef(
242
+ var BreadcrumbPage = React.forwardRef(
239
243
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
240
244
  "span",
241
245
  {
@@ -311,21 +315,21 @@ function Calendar({ className, classNames, showOutsideDays = true, ...props }) {
311
315
  );
312
316
  }
313
317
  Calendar.displayName = "Calendar";
314
- var Card = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("rounded-xl border bg-card text-card-foreground shadow", className), ...props }));
318
+ var Card = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("rounded-xl border bg-card text-card-foreground shadow", className), ...props }));
315
319
  Card.displayName = "Card";
316
- var CardHeader = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("flex flex-col space-y-1.5 p-6", className), ...props }));
320
+ var CardHeader = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("flex flex-col space-y-1.5 p-6", className), ...props }));
317
321
  CardHeader.displayName = "CardHeader";
318
- var CardTitle = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("font-semibold leading-none tracking-tight", className), ...props }));
322
+ var CardTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("font-semibold leading-none tracking-tight", className), ...props }));
319
323
  CardTitle.displayName = "CardTitle";
320
- var CardDescription = react.forwardRef(
324
+ var CardDescription = React.forwardRef(
321
325
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("text-sm text-muted-foreground", className), ...props })
322
326
  );
323
327
  CardDescription.displayName = "CardDescription";
324
- var CardContent = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
328
+ var CardContent = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
325
329
  CardContent.displayName = "CardContent";
326
- var CardFooter = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("flex items-center p-6 pt-0", className), ...props }));
330
+ var CardFooter = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("flex items-center p-6 pt-0", className), ...props }));
327
331
  CardFooter.displayName = "CardFooter";
328
- var Checkbox = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
332
+ var Checkbox = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
329
333
  CheckboxPrimitive__namespace.Root,
330
334
  {
331
335
  ref,
@@ -342,7 +346,7 @@ var Dialog = DialogPrimitive__namespace.Root;
342
346
  var DialogTrigger = DialogPrimitive__namespace.Trigger;
343
347
  var DialogPortal = DialogPrimitive__namespace.Portal;
344
348
  var DialogClose = DialogPrimitive__namespace.Close;
345
- var DialogOverlay = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
349
+ var DialogOverlay = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
346
350
  DialogPrimitive__namespace.Overlay,
347
351
  {
348
352
  ref,
@@ -354,7 +358,7 @@ var DialogOverlay = react.forwardRef(({ className, ...props }, ref) => /* @__PUR
354
358
  }
355
359
  ));
356
360
  DialogOverlay.displayName = DialogPrimitive__namespace.Overlay.displayName;
357
- var DialogContent = react.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
361
+ var DialogContent = React.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DialogPortal, { children: [
358
362
  /* @__PURE__ */ jsxRuntime.jsx(DialogOverlay, {}),
359
363
  /* @__PURE__ */ jsxRuntime.jsxs(
360
364
  DialogPrimitive__namespace.Content,
@@ -380,7 +384,7 @@ var DialogHeader = ({ className, ...props }) => /* @__PURE__ */ jsxRuntime.jsx("
380
384
  DialogHeader.displayName = "DialogHeader";
381
385
  var DialogFooter = ({ className, ...props }) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", className), ...props });
382
386
  DialogFooter.displayName = "DialogFooter";
383
- var DialogTitle = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
387
+ var DialogTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
384
388
  DialogPrimitive__namespace.Title,
385
389
  {
386
390
  ref,
@@ -389,9 +393,9 @@ var DialogTitle = react.forwardRef(({ className, ...props }, ref) => /* @__PURE_
389
393
  }
390
394
  ));
391
395
  DialogTitle.displayName = DialogPrimitive__namespace.Title.displayName;
392
- var DialogDescription = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
396
+ var DialogDescription = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
393
397
  DialogDescription.displayName = DialogPrimitive__namespace.Description.displayName;
394
- var Command = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
398
+ var Command = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
395
399
  cmdk.Command,
396
400
  {
397
401
  ref,
@@ -406,7 +410,7 @@ Command.displayName = cmdk.Command.displayName;
406
410
  var CommandDialog = ({ children, ...props }) => {
407
411
  return /* @__PURE__ */ jsxRuntime.jsx(Dialog, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx(DialogContent, { className: "overflow-hidden p-0", children: /* @__PURE__ */ jsxRuntime.jsx(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 }) }) });
408
412
  };
409
- var CommandInput = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center border-b px-3", children: [
413
+ var CommandInput = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center border-b px-3", children: [
410
414
  /* @__PURE__ */ jsxRuntime.jsx(lucideReact.Search, { className: "mr-2 h-4 w-4 shrink-0 opacity-50" }),
411
415
  /* @__PURE__ */ jsxRuntime.jsx(
412
416
  cmdk.Command.Input,
@@ -421,7 +425,7 @@ var CommandInput = react.forwardRef(({ className, ...props }, ref) => /* @__PURE
421
425
  )
422
426
  ] }));
423
427
  CommandInput.displayName = cmdk.Command.Input.displayName;
424
- var CommandList = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
428
+ var CommandList = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
425
429
  cmdk.Command.List,
426
430
  {
427
431
  ref,
@@ -430,9 +434,9 @@ var CommandList = react.forwardRef(({ className, ...props }, ref) => /* @__PURE_
430
434
  }
431
435
  ));
432
436
  CommandList.displayName = cmdk.Command.List.displayName;
433
- var CommandEmpty = react.forwardRef((props, ref) => /* @__PURE__ */ jsxRuntime.jsx(cmdk.Command.Empty, { ref, className: "py-6 text-center text-sm", ...props }));
437
+ var CommandEmpty = React.forwardRef((props, ref) => /* @__PURE__ */ jsxRuntime.jsx(cmdk.Command.Empty, { ref, className: "py-6 text-center text-sm", ...props }));
434
438
  CommandEmpty.displayName = cmdk.Command.Empty.displayName;
435
- var CommandGroup = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
439
+ var CommandGroup = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
436
440
  cmdk.Command.Group,
437
441
  {
438
442
  ref,
@@ -444,9 +448,9 @@ var CommandGroup = react.forwardRef(({ className, ...props }, ref) => /* @__PURE
444
448
  }
445
449
  ));
446
450
  CommandGroup.displayName = cmdk.Command.Group.displayName;
447
- var CommandSeparator = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(cmdk.Command.Separator, { ref, className: cn("-mx-1 h-px bg-border", className), ...props }));
451
+ var CommandSeparator = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(cmdk.Command.Separator, { ref, className: cn("-mx-1 h-px bg-border", className), ...props }));
448
452
  CommandSeparator.displayName = cmdk.Command.Separator.displayName;
449
- var CommandItem = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
453
+ var CommandItem = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
450
454
  cmdk.Command.Item,
451
455
  {
452
456
  ref,
@@ -462,13 +466,54 @@ var CommandShortcut = ({ className, ...props }) => {
462
466
  return /* @__PURE__ */ jsxRuntime.jsx("span", { className: cn("ml-auto text-xs tracking-widest text-muted-foreground", className), ...props });
463
467
  };
464
468
  CommandShortcut.displayName = "CommandShortcut";
469
+ var Drawer = ({ shouldScaleBackground = true, ...props }) => /* @__PURE__ */ jsxRuntime.jsx(vaul.Drawer.Root, { shouldScaleBackground, ...props });
470
+ Drawer.displayName = "Drawer";
471
+ var DrawerTrigger = vaul.Drawer.Trigger;
472
+ var DrawerPortal = vaul.Drawer.Portal;
473
+ var DrawerClose = vaul.Drawer.Close;
474
+ var DrawerOverlay = React__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(vaul.Drawer.Overlay, { ref, className: cn("fixed inset-0 z-50 bg-black/80", className), ...props }));
475
+ DrawerOverlay.displayName = vaul.Drawer.Overlay.displayName;
476
+ var DrawerContent = React__namespace.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DrawerPortal, { children: [
477
+ /* @__PURE__ */ jsxRuntime.jsx(DrawerOverlay, {}),
478
+ /* @__PURE__ */ jsxRuntime.jsxs(
479
+ vaul.Drawer.Content,
480
+ {
481
+ ref,
482
+ className: cn(
483
+ "fixed inset-x-0 bottom-0 z-50 mt-24 flex h-auto flex-col rounded-t-[10px] border bg-background",
484
+ className
485
+ ),
486
+ ...props,
487
+ children: [
488
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted" }),
489
+ children
490
+ ]
491
+ }
492
+ )
493
+ ] }));
494
+ DrawerContent.displayName = "DrawerContent";
495
+ var DrawerHeader = ({ className, ...props }) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("grid gap-1.5 p-4 text-center sm:text-left", className), ...props });
496
+ DrawerHeader.displayName = "DrawerHeader";
497
+ var DrawerFooter = ({ className, ...props }) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("mt-auto flex flex-col gap-2 p-4", className), ...props });
498
+ DrawerFooter.displayName = "DrawerFooter";
499
+ var DrawerTitle = React__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
500
+ vaul.Drawer.Title,
501
+ {
502
+ ref,
503
+ className: cn("text-lg font-semibold leading-none tracking-tight", className),
504
+ ...props
505
+ }
506
+ ));
507
+ DrawerTitle.displayName = vaul.Drawer.Title.displayName;
508
+ var DrawerDescription = React__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(vaul.Drawer.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
509
+ DrawerDescription.displayName = vaul.Drawer.Description.displayName;
465
510
  var DropdownMenu = DropdownMenuPrimitive__namespace.Root;
466
511
  var DropdownMenuTrigger = DropdownMenuPrimitive__namespace.Trigger;
467
512
  var DropdownMenuGroup = DropdownMenuPrimitive__namespace.Group;
468
513
  var DropdownMenuPortal = DropdownMenuPrimitive__namespace.Portal;
469
514
  var DropdownMenuSub = DropdownMenuPrimitive__namespace.Sub;
470
515
  var DropdownMenuRadioGroup = DropdownMenuPrimitive__namespace.RadioGroup;
471
- var DropdownMenuSubTrigger = react.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
516
+ var DropdownMenuSubTrigger = React.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
472
517
  DropdownMenuPrimitive__namespace.SubTrigger,
473
518
  {
474
519
  ref,
@@ -485,7 +530,7 @@ var DropdownMenuSubTrigger = react.forwardRef(({ className, inset, children, ...
485
530
  }
486
531
  ));
487
532
  DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive__namespace.SubTrigger.displayName;
488
- var DropdownMenuSubContent = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
533
+ var DropdownMenuSubContent = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
489
534
  DropdownMenuPrimitive__namespace.SubContent,
490
535
  {
491
536
  ref,
@@ -497,7 +542,7 @@ var DropdownMenuSubContent = react.forwardRef(({ className, ...props }, ref) =>
497
542
  }
498
543
  ));
499
544
  DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
500
- var DropdownMenuContent = react.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
545
+ var DropdownMenuContent = React.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
501
546
  DropdownMenuPrimitive__namespace.Content,
502
547
  {
503
548
  ref,
@@ -511,7 +556,7 @@ var DropdownMenuContent = react.forwardRef(({ className, sideOffset = 4, ...prop
511
556
  }
512
557
  ) }));
513
558
  DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
514
- var DropdownMenuItem = react.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
559
+ var DropdownMenuItem = React.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
515
560
  DropdownMenuPrimitive__namespace.Item,
516
561
  {
517
562
  ref,
@@ -524,7 +569,7 @@ var DropdownMenuItem = react.forwardRef(({ className, inset, ...props }, ref) =>
524
569
  }
525
570
  ));
526
571
  DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
527
- var DropdownMenuCheckboxItem = react.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
572
+ var DropdownMenuCheckboxItem = React.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
528
573
  DropdownMenuPrimitive__namespace.CheckboxItem,
529
574
  {
530
575
  ref,
@@ -541,7 +586,7 @@ var DropdownMenuCheckboxItem = react.forwardRef(({ className, children, checked,
541
586
  }
542
587
  ));
543
588
  DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
544
- var DropdownMenuRadioItem = react.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
589
+ var DropdownMenuRadioItem = React.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
545
590
  DropdownMenuPrimitive__namespace.RadioItem,
546
591
  {
547
592
  ref,
@@ -557,7 +602,7 @@ var DropdownMenuRadioItem = react.forwardRef(({ className, children, ...props },
557
602
  }
558
603
  ));
559
604
  DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
560
- var DropdownMenuLabel = react.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
605
+ var DropdownMenuLabel = React.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
561
606
  DropdownMenuPrimitive__namespace.Label,
562
607
  {
563
608
  ref,
@@ -566,25 +611,25 @@ var DropdownMenuLabel = react.forwardRef(({ className, inset, ...props }, ref) =
566
611
  }
567
612
  ));
568
613
  DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
569
- var DropdownMenuSeparator = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Separator, { ref, className: cn("-mx-1 my-1 h-px bg-muted", className), ...props }));
614
+ var DropdownMenuSeparator = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Separator, { ref, className: cn("-mx-1 my-1 h-px bg-muted", className), ...props }));
570
615
  DropdownMenuSeparator.displayName = DropdownMenuPrimitive__namespace.Separator.displayName;
571
616
  var DropdownMenuShortcut = ({ className, ...props }) => {
572
617
  return /* @__PURE__ */ jsxRuntime.jsx("span", { className: cn("ml-auto text-xs tracking-widest opacity-60", className), ...props });
573
618
  };
574
619
  DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
575
620
  var labelVariants = classVarianceAuthority.cva("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70");
576
- var Label2 = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(LabelPrimitive__namespace.Root, { ref, className: cn(labelVariants(), className), ...props }));
621
+ var Label2 = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(LabelPrimitive__namespace.Root, { ref, className: cn(labelVariants(), className), ...props }));
577
622
  Label2.displayName = LabelPrimitive__namespace.Root.displayName;
578
623
  var Form = reactHookForm.FormProvider;
579
- var FormFieldContext = react.createContext({});
624
+ var FormFieldContext = React.createContext({});
580
625
  var FormField = ({
581
626
  ...props
582
627
  }) => {
583
628
  return /* @__PURE__ */ jsxRuntime.jsx(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ jsxRuntime.jsx(reactHookForm.Controller, { ...props }) });
584
629
  };
585
630
  var useFormField = () => {
586
- const fieldContext = react.useContext(FormFieldContext);
587
- const itemContext = react.useContext(FormItemContext);
631
+ const fieldContext = React.useContext(FormFieldContext);
632
+ const itemContext = React.useContext(FormItemContext);
588
633
  const { getFieldState, formState } = reactHookForm.useFormContext();
589
634
  const fieldState = getFieldState(fieldContext.name, formState);
590
635
  if (!fieldContext) {
@@ -600,18 +645,18 @@ var useFormField = () => {
600
645
  ...fieldState
601
646
  };
602
647
  };
603
- var FormItemContext = react.createContext({});
604
- var FormItem = react.forwardRef(({ className, ...props }, ref) => {
605
- const id = react.useId();
648
+ var FormItemContext = React.createContext({});
649
+ var FormItem = React.forwardRef(({ className, ...props }, ref) => {
650
+ const id = React.useId();
606
651
  return /* @__PURE__ */ jsxRuntime.jsx(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsxRuntime.jsx("div", { ref, className: cn("space-y-2", className), ...props }) });
607
652
  });
608
653
  FormItem.displayName = "FormItem";
609
- var FormLabel = react.forwardRef(({ className, ...props }, ref) => {
654
+ var FormLabel = React.forwardRef(({ className, ...props }, ref) => {
610
655
  const { error, formItemId } = useFormField();
611
656
  return /* @__PURE__ */ jsxRuntime.jsx(Label2, { ref, className: cn(error && "text-destructive", className), htmlFor: formItemId, ...props });
612
657
  });
613
658
  FormLabel.displayName = "FormLabel";
614
- var FormControl = react.forwardRef(
659
+ var FormControl = React.forwardRef(
615
660
  ({ ...props }, ref) => {
616
661
  const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
617
662
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -627,14 +672,14 @@ var FormControl = react.forwardRef(
627
672
  }
628
673
  );
629
674
  FormControl.displayName = "FormControl";
630
- var FormDescription = react.forwardRef(
675
+ var FormDescription = React.forwardRef(
631
676
  ({ className, ...props }, ref) => {
632
677
  const { formDescriptionId } = useFormField();
633
678
  return /* @__PURE__ */ jsxRuntime.jsx("p", { ref, id: formDescriptionId, className: cn("text-[0.8rem] text-muted-foreground", className), ...props });
634
679
  }
635
680
  );
636
681
  FormDescription.displayName = "FormDescription";
637
- var FormMessage = react.forwardRef(
682
+ var FormMessage = React.forwardRef(
638
683
  ({ className, children, ...props }, ref) => {
639
684
  const { error, formMessageId } = useFormField();
640
685
  const body = error ? String(error?.message ?? "") : children;
@@ -654,7 +699,7 @@ var FormMessage = react.forwardRef(
654
699
  }
655
700
  );
656
701
  FormMessage.displayName = "FormMessage";
657
- var Input = react.forwardRef(({ className, type, ...props }, ref) => {
702
+ var Input = React.forwardRef(({ className, type, ...props }, ref) => {
658
703
  return /* @__PURE__ */ jsxRuntime.jsx(
659
704
  "input",
660
705
  {
@@ -672,7 +717,7 @@ Input.displayName = "Input";
672
717
  var Popover = PopoverPrimitive__namespace.Root;
673
718
  var PopoverTrigger = PopoverPrimitive__namespace.Trigger;
674
719
  var PopoverAnchor = PopoverPrimitive__namespace.Anchor;
675
- var PopoverContent = react.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PopoverPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
720
+ var PopoverContent = React.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(PopoverPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
676
721
  PopoverPrimitive__namespace.Content,
677
722
  {
678
723
  ref,
@@ -686,7 +731,7 @@ var PopoverContent = react.forwardRef(({ className, align = "center", sideOffset
686
731
  }
687
732
  ) }));
688
733
  PopoverContent.displayName = PopoverPrimitive__namespace.Content.displayName;
689
- var Progress = react.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
734
+ var Progress = React.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
690
735
  ProgressPrimitive__namespace.Root,
691
736
  {
692
737
  ref,
@@ -702,13 +747,13 @@ var Progress = react.forwardRef(({ className, value, ...props }, ref) => /* @__P
702
747
  }
703
748
  ));
704
749
  Progress.displayName = ProgressPrimitive__namespace.Root.displayName;
705
- var ScrollArea = react.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(ScrollAreaPrimitive__namespace.Root, { ref, className: cn("relative overflow-hidden", className), ...props, children: [
750
+ var ScrollArea = React.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(ScrollAreaPrimitive__namespace.Root, { ref, className: cn("relative overflow-hidden", className), ...props, children: [
706
751
  /* @__PURE__ */ jsxRuntime.jsx(ScrollAreaPrimitive__namespace.Viewport, { className: "h-full w-full rounded-[inherit]", children }),
707
752
  /* @__PURE__ */ jsxRuntime.jsx(ScrollBar, {}),
708
753
  /* @__PURE__ */ jsxRuntime.jsx(ScrollAreaPrimitive__namespace.Corner, {})
709
754
  ] }));
710
755
  ScrollArea.displayName = ScrollAreaPrimitive__namespace.Root.displayName;
711
- var ScrollBar = react.forwardRef(({ className, orientation = "vertical", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
756
+ var ScrollBar = React.forwardRef(({ className, orientation = "vertical", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
712
757
  ScrollAreaPrimitive__namespace.ScrollAreaScrollbar,
713
758
  {
714
759
  ref,
@@ -727,7 +772,7 @@ ScrollBar.displayName = ScrollAreaPrimitive__namespace.ScrollAreaScrollbar.displ
727
772
  var Select = SelectPrimitive__namespace.Root;
728
773
  var SelectGroup = SelectPrimitive__namespace.Group;
729
774
  var SelectValue = SelectPrimitive__namespace.Value;
730
- var SelectTrigger = react.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
775
+ var SelectTrigger = React.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
731
776
  SelectPrimitive__namespace.Trigger,
732
777
  {
733
778
  ref,
@@ -743,7 +788,7 @@ var SelectTrigger = react.forwardRef(({ className, children, ...props }, ref) =>
743
788
  }
744
789
  ));
745
790
  SelectTrigger.displayName = SelectPrimitive__namespace.Trigger.displayName;
746
- var SelectScrollUpButton = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
791
+ var SelectScrollUpButton = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
747
792
  SelectPrimitive__namespace.ScrollUpButton,
748
793
  {
749
794
  ref,
@@ -753,7 +798,7 @@ var SelectScrollUpButton = react.forwardRef(({ className, ...props }, ref) => /*
753
798
  }
754
799
  ));
755
800
  SelectScrollUpButton.displayName = SelectPrimitive__namespace.ScrollUpButton.displayName;
756
- var SelectScrollDownButton = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
801
+ var SelectScrollDownButton = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
757
802
  SelectPrimitive__namespace.ScrollDownButton,
758
803
  {
759
804
  ref,
@@ -763,7 +808,7 @@ var SelectScrollDownButton = react.forwardRef(({ className, ...props }, ref) =>
763
808
  }
764
809
  ));
765
810
  SelectScrollDownButton.displayName = SelectPrimitive__namespace.ScrollDownButton.displayName;
766
- var SelectContent = react.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
811
+ var SelectContent = React.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsxs(
767
812
  SelectPrimitive__namespace.Content,
768
813
  {
769
814
  ref,
@@ -791,9 +836,9 @@ var SelectContent = react.forwardRef(({ className, children, position = "popper"
791
836
  }
792
837
  ) }));
793
838
  SelectContent.displayName = SelectPrimitive__namespace.Content.displayName;
794
- var SelectLabel = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Label, { ref, className: cn("px-2 py-1.5 text-sm font-semibold", className), ...props }));
839
+ var SelectLabel = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Label, { ref, className: cn("px-2 py-1.5 text-sm font-semibold", className), ...props }));
795
840
  SelectLabel.displayName = SelectPrimitive__namespace.Label.displayName;
796
- var SelectItem = react.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
841
+ var SelectItem = React.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
797
842
  SelectPrimitive__namespace.Item,
798
843
  {
799
844
  ref,
@@ -809,9 +854,9 @@ var SelectItem = react.forwardRef(({ className, children, ...props }, ref) => /*
809
854
  }
810
855
  ));
811
856
  SelectItem.displayName = SelectPrimitive__namespace.Item.displayName;
812
- var SelectSeparator = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Separator, { ref, className: cn("-mx-1 my-1 h-px bg-muted", className), ...props }));
857
+ var SelectSeparator = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Separator, { ref, className: cn("-mx-1 my-1 h-px bg-muted", className), ...props }));
813
858
  SelectSeparator.displayName = SelectPrimitive__namespace.Separator.displayName;
814
- var Separator3 = react.forwardRef(({ className, orientation = "horizontal", decorative = true, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
859
+ var Separator3 = React.forwardRef(({ className, orientation = "horizontal", decorative = true, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
815
860
  SeparatorPrimitive__namespace.Root,
816
861
  {
817
862
  ref,
@@ -826,7 +871,7 @@ var Sheet = DialogPrimitive__namespace.Root;
826
871
  var SheetTrigger = DialogPrimitive__namespace.Trigger;
827
872
  var SheetClose = DialogPrimitive__namespace.Close;
828
873
  var SheetPortal = DialogPrimitive__namespace.Portal;
829
- var SheetOverlay = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
874
+ var SheetOverlay = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
830
875
  DialogPrimitive__namespace.Overlay,
831
876
  {
832
877
  className: cn(
@@ -854,7 +899,7 @@ var sheetVariants = classVarianceAuthority.cva(
854
899
  }
855
900
  }
856
901
  );
857
- var SheetContent = react.forwardRef(
902
+ var SheetContent = React.forwardRef(
858
903
  ({ side = "right", className, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(SheetPortal, { children: [
859
904
  /* @__PURE__ */ jsxRuntime.jsx(SheetOverlay, {}),
860
905
  /* @__PURE__ */ jsxRuntime.jsxs(DialogPrimitive__namespace.Content, { ref, className: cn(sheetVariants({ side }), className), ...props, children: [
@@ -871,14 +916,14 @@ var SheetHeader = ({ className, ...props }) => /* @__PURE__ */ jsxRuntime.jsx("d
871
916
  SheetHeader.displayName = "SheetHeader";
872
917
  var SheetFooter = ({ className, ...props }) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", className), ...props });
873
918
  SheetFooter.displayName = "SheetFooter";
874
- var SheetTitle = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Title, { ref, className: cn("text-lg font-semibold text-foreground", className), ...props }));
919
+ var SheetTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Title, { ref, className: cn("text-lg font-semibold text-foreground", className), ...props }));
875
920
  SheetTitle.displayName = DialogPrimitive__namespace.Title.displayName;
876
- var SheetDescription = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
921
+ var SheetDescription = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
877
922
  SheetDescription.displayName = DialogPrimitive__namespace.Description.displayName;
878
923
  var MOBILE_BREAKPOINT = 768;
879
924
  function useIsMobile() {
880
- const [isMobile, setIsMobile] = react.useState(void 0);
881
- react.useEffect(() => {
925
+ const [isMobile, setIsMobile] = React.useState(void 0);
926
+ React.useEffect(() => {
882
927
  const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`);
883
928
  const onChange = () => {
884
929
  setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
@@ -895,7 +940,7 @@ function Skeleton({ className, ...props }) {
895
940
  var TooltipProvider = TooltipPrimitive__namespace.Provider;
896
941
  var Tooltip = TooltipPrimitive__namespace.Root;
897
942
  var TooltipTrigger = TooltipPrimitive__namespace.Trigger;
898
- var TooltipContent = react.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
943
+ var TooltipContent = React.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(TooltipPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
899
944
  TooltipPrimitive__namespace.Content,
900
945
  {
901
946
  ref,
@@ -914,20 +959,20 @@ var SIDEBAR_WIDTH = "16rem";
914
959
  var SIDEBAR_WIDTH_MOBILE = "18rem";
915
960
  var SIDEBAR_WIDTH_ICON = "3rem";
916
961
  var SIDEBAR_KEYBOARD_SHORTCUT = "b";
917
- var SidebarContext = react.createContext(null);
962
+ var SidebarContext = React.createContext(null);
918
963
  function useSidebar() {
919
- const context = react.useContext(SidebarContext);
964
+ const context = React.useContext(SidebarContext);
920
965
  if (!context) {
921
966
  throw new Error("useSidebar must be used within a SidebarProvider.");
922
967
  }
923
968
  return context;
924
969
  }
925
- var SidebarProvider = react.forwardRef(({ defaultOpen = true, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }, ref) => {
970
+ var SidebarProvider = React.forwardRef(({ defaultOpen = true, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }, ref) => {
926
971
  const isMobile = useIsMobile();
927
- const [openMobile, setOpenMobile] = react.useState(false);
928
- const [_open, _setOpen] = react.useState(defaultOpen);
972
+ const [openMobile, setOpenMobile] = React.useState(false);
973
+ const [_open, _setOpen] = React.useState(defaultOpen);
929
974
  const open = openProp ?? _open;
930
- const setOpen = react.useCallback(
975
+ const setOpen = React.useCallback(
931
976
  (value) => {
932
977
  const openState = typeof value === "function" ? value(open) : value;
933
978
  if (setOpenProp) {
@@ -939,10 +984,10 @@ var SidebarProvider = react.forwardRef(({ defaultOpen = true, open: openProp, on
939
984
  },
940
985
  [setOpenProp, open]
941
986
  );
942
- const toggleSidebar = react.useCallback(() => {
987
+ const toggleSidebar = React.useCallback(() => {
943
988
  return isMobile ? setOpenMobile((open2) => !open2) : setOpen((open2) => !open2);
944
989
  }, [isMobile, setOpen, setOpenMobile]);
945
- react.useEffect(() => {
990
+ React.useEffect(() => {
946
991
  const handleKeyDown = (event) => {
947
992
  if (event.key === SIDEBAR_KEYBOARD_SHORTCUT && (event.metaKey || event.ctrlKey)) {
948
993
  event.preventDefault();
@@ -953,7 +998,7 @@ var SidebarProvider = react.forwardRef(({ defaultOpen = true, open: openProp, on
953
998
  return () => window.removeEventListener("keydown", handleKeyDown);
954
999
  }, [toggleSidebar]);
955
1000
  const state = open ? "expanded" : "collapsed";
956
- const contextValue = react.useMemo(
1001
+ const contextValue = React.useMemo(
957
1002
  () => ({
958
1003
  state,
959
1004
  open,
@@ -981,7 +1026,7 @@ var SidebarProvider = react.forwardRef(({ defaultOpen = true, open: openProp, on
981
1026
  ) }) });
982
1027
  });
983
1028
  SidebarProvider.displayName = "SidebarProvider";
984
- var Sidebar = react.forwardRef(({ side = "left", variant = "sidebar", collapsible = "offcanvas", className, children, ...props }, ref) => {
1029
+ var Sidebar = React.forwardRef(({ side = "left", variant = "sidebar", collapsible = "offcanvas", className, children, ...props }, ref) => {
985
1030
  const { isMobile, state, openMobile, setOpenMobile } = useSidebar();
986
1031
  if (collapsible === "none") {
987
1032
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -1062,7 +1107,7 @@ var Sidebar = react.forwardRef(({ side = "left", variant = "sidebar", collapsibl
1062
1107
  );
1063
1108
  });
1064
1109
  Sidebar.displayName = "Sidebar";
1065
- var SidebarTrigger = react.forwardRef(
1110
+ var SidebarTrigger = React.forwardRef(
1066
1111
  ({ className, onClick, ...props }, ref) => {
1067
1112
  const { toggleSidebar } = useSidebar();
1068
1113
  return /* @__PURE__ */ jsxRuntime.jsxs(
@@ -1087,7 +1132,7 @@ var SidebarTrigger = react.forwardRef(
1087
1132
  }
1088
1133
  );
1089
1134
  SidebarTrigger.displayName = "SidebarTrigger";
1090
- var SidebarRail = react.forwardRef(({ className, ...props }, ref) => {
1135
+ var SidebarRail = React.forwardRef(({ className, ...props }, ref) => {
1091
1136
  const { toggleSidebar } = useSidebar();
1092
1137
  return /* @__PURE__ */ jsxRuntime.jsx(
1093
1138
  "button",
@@ -1112,7 +1157,7 @@ var SidebarRail = react.forwardRef(({ className, ...props }, ref) => {
1112
1157
  );
1113
1158
  });
1114
1159
  SidebarRail.displayName = "SidebarRail";
1115
- var SidebarInset = react.forwardRef(({ className, ...props }, ref) => {
1160
+ var SidebarInset = React.forwardRef(({ className, ...props }, ref) => {
1116
1161
  return /* @__PURE__ */ jsxRuntime.jsx(
1117
1162
  "main",
1118
1163
  {
@@ -1127,7 +1172,7 @@ var SidebarInset = react.forwardRef(({ className, ...props }, ref) => {
1127
1172
  );
1128
1173
  });
1129
1174
  SidebarInset.displayName = "SidebarInset";
1130
- var SidebarInput = react.forwardRef(
1175
+ var SidebarInput = React.forwardRef(
1131
1176
  ({ className, ...props }, ref) => {
1132
1177
  return /* @__PURE__ */ jsxRuntime.jsx(
1133
1178
  Input,
@@ -1144,15 +1189,15 @@ var SidebarInput = react.forwardRef(
1144
1189
  }
1145
1190
  );
1146
1191
  SidebarInput.displayName = "SidebarInput";
1147
- var SidebarHeader = react.forwardRef(({ className, ...props }, ref) => {
1192
+ var SidebarHeader = React.forwardRef(({ className, ...props }, ref) => {
1148
1193
  return /* @__PURE__ */ jsxRuntime.jsx("div", { ref, "data-sidebar": "header", className: cn("flex flex-col gap-2 p-2", className), ...props });
1149
1194
  });
1150
1195
  SidebarHeader.displayName = "SidebarHeader";
1151
- var SidebarFooter = react.forwardRef(({ className, ...props }, ref) => {
1196
+ var SidebarFooter = React.forwardRef(({ className, ...props }, ref) => {
1152
1197
  return /* @__PURE__ */ jsxRuntime.jsx("div", { ref, "data-sidebar": "footer", className: cn("flex flex-col gap-2 p-2", className), ...props });
1153
1198
  });
1154
1199
  SidebarFooter.displayName = "SidebarFooter";
1155
- var SidebarSeparator = react.forwardRef(
1200
+ var SidebarSeparator = React.forwardRef(
1156
1201
  ({ className, ...props }, ref) => {
1157
1202
  return /* @__PURE__ */ jsxRuntime.jsx(
1158
1203
  Separator3,
@@ -1166,7 +1211,7 @@ var SidebarSeparator = react.forwardRef(
1166
1211
  }
1167
1212
  );
1168
1213
  SidebarSeparator.displayName = "SidebarSeparator";
1169
- var SidebarContent = react.forwardRef(({ className, ...props }, ref) => {
1214
+ var SidebarContent = React.forwardRef(({ className, ...props }, ref) => {
1170
1215
  return /* @__PURE__ */ jsxRuntime.jsx(
1171
1216
  "div",
1172
1217
  {
@@ -1181,7 +1226,7 @@ var SidebarContent = react.forwardRef(({ className, ...props }, ref) => {
1181
1226
  );
1182
1227
  });
1183
1228
  SidebarContent.displayName = "SidebarContent";
1184
- var SidebarGroup = react.forwardRef(({ className, ...props }, ref) => {
1229
+ var SidebarGroup = React.forwardRef(({ className, ...props }, ref) => {
1185
1230
  return /* @__PURE__ */ jsxRuntime.jsx(
1186
1231
  "div",
1187
1232
  {
@@ -1193,7 +1238,7 @@ var SidebarGroup = react.forwardRef(({ className, ...props }, ref) => {
1193
1238
  );
1194
1239
  });
1195
1240
  SidebarGroup.displayName = "SidebarGroup";
1196
- var SidebarGroupLabel = react.forwardRef(
1241
+ var SidebarGroupLabel = React.forwardRef(
1197
1242
  ({ className, asChild = false, ...props }, ref) => {
1198
1243
  const Comp = asChild ? reactSlot.Slot : "div";
1199
1244
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -1212,7 +1257,7 @@ var SidebarGroupLabel = react.forwardRef(
1212
1257
  }
1213
1258
  );
1214
1259
  SidebarGroupLabel.displayName = "SidebarGroupLabel";
1215
- var SidebarGroupAction = react.forwardRef(
1260
+ var SidebarGroupAction = React.forwardRef(
1216
1261
  ({ className, asChild = false, ...props }, ref) => {
1217
1262
  const Comp = asChild ? reactSlot.Slot : "button";
1218
1263
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -1233,11 +1278,11 @@ var SidebarGroupAction = react.forwardRef(
1233
1278
  }
1234
1279
  );
1235
1280
  SidebarGroupAction.displayName = "SidebarGroupAction";
1236
- var SidebarGroupContent = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, "data-sidebar": "group-content", className: cn("w-full text-sm", className), ...props }));
1281
+ var SidebarGroupContent = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { ref, "data-sidebar": "group-content", className: cn("w-full text-sm", className), ...props }));
1237
1282
  SidebarGroupContent.displayName = "SidebarGroupContent";
1238
- var SidebarMenu = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("ul", { ref, "data-sidebar": "menu", className: cn("flex w-full min-w-0 flex-col gap-1", className), ...props }));
1283
+ var SidebarMenu = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("ul", { ref, "data-sidebar": "menu", className: cn("flex w-full min-w-0 flex-col gap-1", className), ...props }));
1239
1284
  SidebarMenu.displayName = "SidebarMenu";
1240
- var SidebarMenuItem = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, "data-sidebar": "menu-item", className: cn("group/menu-item relative", className), ...props }));
1285
+ var SidebarMenuItem = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, "data-sidebar": "menu-item", className: cn("group/menu-item relative", className), ...props }));
1241
1286
  SidebarMenuItem.displayName = "SidebarMenuItem";
1242
1287
  var sidebarMenuButtonVariants = classVarianceAuthority.cva(
1243
1288
  "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",
@@ -1259,7 +1304,7 @@ var sidebarMenuButtonVariants = classVarianceAuthority.cva(
1259
1304
  }
1260
1305
  }
1261
1306
  );
1262
- var SidebarMenuButton = react.forwardRef(({ asChild = false, isActive = false, variant = "default", size = "default", tooltip, className, ...props }, ref) => {
1307
+ var SidebarMenuButton = React.forwardRef(({ asChild = false, isActive = false, variant = "default", size = "default", tooltip, className, ...props }, ref) => {
1263
1308
  const Comp = asChild ? reactSlot.Slot : "button";
1264
1309
  const { isMobile, state } = useSidebar();
1265
1310
  const button = /* @__PURE__ */ jsxRuntime.jsx(
@@ -1287,7 +1332,7 @@ var SidebarMenuButton = react.forwardRef(({ asChild = false, isActive = false, v
1287
1332
  ] });
1288
1333
  });
1289
1334
  SidebarMenuButton.displayName = "SidebarMenuButton";
1290
- var SidebarMenuAction = react.forwardRef(({ className, asChild = false, showOnHover = false, ...props }, ref) => {
1335
+ var SidebarMenuAction = React.forwardRef(({ className, asChild = false, showOnHover = false, ...props }, ref) => {
1291
1336
  const Comp = asChild ? reactSlot.Slot : "button";
1292
1337
  return /* @__PURE__ */ jsxRuntime.jsx(
1293
1338
  Comp,
@@ -1310,7 +1355,7 @@ var SidebarMenuAction = react.forwardRef(({ className, asChild = false, showOnHo
1310
1355
  );
1311
1356
  });
1312
1357
  SidebarMenuAction.displayName = "SidebarMenuAction";
1313
- var SidebarMenuBadge = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1358
+ var SidebarMenuBadge = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1314
1359
  "div",
1315
1360
  {
1316
1361
  ref,
@@ -1328,8 +1373,8 @@ var SidebarMenuBadge = react.forwardRef(({ className, ...props }, ref) => /* @__
1328
1373
  }
1329
1374
  ));
1330
1375
  SidebarMenuBadge.displayName = "SidebarMenuBadge";
1331
- var SidebarMenuSkeleton = react.forwardRef(({ className, showIcon = false, ...props }, ref) => {
1332
- const width = react.useMemo(() => {
1376
+ var SidebarMenuSkeleton = React.forwardRef(({ className, showIcon = false, ...props }, ref) => {
1377
+ const width = React.useMemo(() => {
1333
1378
  return `${Math.floor(Math.random() * 40) + 50}%`;
1334
1379
  }, []);
1335
1380
  return /* @__PURE__ */ jsxRuntime.jsxs(
@@ -1356,7 +1401,7 @@ var SidebarMenuSkeleton = react.forwardRef(({ className, showIcon = false, ...pr
1356
1401
  );
1357
1402
  });
1358
1403
  SidebarMenuSkeleton.displayName = "SidebarMenuSkeleton";
1359
- var SidebarMenuSub = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1404
+ var SidebarMenuSub = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1360
1405
  "ul",
1361
1406
  {
1362
1407
  ref,
@@ -1370,9 +1415,9 @@ var SidebarMenuSub = react.forwardRef(({ className, ...props }, ref) => /* @__PU
1370
1415
  }
1371
1416
  ));
1372
1417
  SidebarMenuSub.displayName = "SidebarMenuSub";
1373
- var SidebarMenuSubItem = react.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, ...props }));
1418
+ var SidebarMenuSubItem = React.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("li", { ref, ...props }));
1374
1419
  SidebarMenuSubItem.displayName = "SidebarMenuSubItem";
1375
- var SidebarMenuSubButton = react.forwardRef(({ asChild = false, size = "md", isActive, className, ...props }, ref) => {
1420
+ var SidebarMenuSubButton = React.forwardRef(({ asChild = false, size = "md", isActive, className, ...props }, ref) => {
1376
1421
  const Comp = asChild ? reactSlot.Slot : "a";
1377
1422
  return /* @__PURE__ */ jsxRuntime.jsx(
1378
1423
  Comp,
@@ -1394,6 +1439,19 @@ var SidebarMenuSubButton = react.forwardRef(({ asChild = false, size = "md", isA
1394
1439
  );
1395
1440
  });
1396
1441
  SidebarMenuSubButton.displayName = "SidebarMenuSubButton";
1442
+ var Slider = React__namespace.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
1443
+ SliderPrimitive__namespace.Root,
1444
+ {
1445
+ ref,
1446
+ className: cn("relative flex w-full touch-none select-none items-center", className),
1447
+ ...props,
1448
+ children: [
1449
+ /* @__PURE__ */ jsxRuntime.jsx(SliderPrimitive__namespace.Track, { className: "relative h-1.5 w-full grow overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ jsxRuntime.jsx(SliderPrimitive__namespace.Range, { className: "absolute h-full bg-primary" }) }),
1450
+ /* @__PURE__ */ jsxRuntime.jsx(SliderPrimitive__namespace.Thumb, { className: "block h-4 w-4 rounded-full border border-primary/50 bg-background shadow transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50" })
1451
+ ]
1452
+ }
1453
+ ));
1454
+ Slider.displayName = SliderPrimitive__namespace.Root.displayName;
1397
1455
  var Toaster = ({ ...props }) => {
1398
1456
  const { theme = "system" } = nextThemes.useTheme();
1399
1457
  return /* @__PURE__ */ jsxRuntime.jsx(
@@ -1413,7 +1471,7 @@ var Toaster = ({ ...props }) => {
1413
1471
  }
1414
1472
  );
1415
1473
  };
1416
- var Switch = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1474
+ var Switch = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1417
1475
  SwitchPrimitives__namespace.Root,
1418
1476
  {
1419
1477
  className: cn(
@@ -1433,21 +1491,21 @@ var Switch = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
1433
1491
  }
1434
1492
  ));
1435
1493
  Switch.displayName = SwitchPrimitives__namespace.Root.displayName;
1436
- var Table = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ jsxRuntime.jsx("table", { ref, className: cn("w-full caption-bottom text-sm", className), ...props }) }));
1494
+ var Table = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ jsxRuntime.jsx("table", { ref, className: cn("w-full caption-bottom text-sm", className), ...props }) }));
1437
1495
  Table.displayName = "Table";
1438
- var TableHeader = react.forwardRef(
1496
+ var TableHeader = React.forwardRef(
1439
1497
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("thead", { ref, className: cn("[&_tr]:border-b", className), ...props })
1440
1498
  );
1441
1499
  TableHeader.displayName = "TableHeader";
1442
- var TableBody = react.forwardRef(
1500
+ var TableBody = React.forwardRef(
1443
1501
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("tbody", { ref, className: cn("[&_tr:last-child]:border-0", className), ...props })
1444
1502
  );
1445
1503
  TableBody.displayName = "TableBody";
1446
- var TableFooter = react.forwardRef(
1504
+ var TableFooter = React.forwardRef(
1447
1505
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("tfoot", { ref, className: cn("border-t bg-muted/50 font-medium [&>tr]:last:border-b-0", className), ...props })
1448
1506
  );
1449
1507
  TableFooter.displayName = "TableFooter";
1450
- var TableRow = react.forwardRef(
1508
+ var TableRow = React.forwardRef(
1451
1509
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1452
1510
  "tr",
1453
1511
  {
@@ -1458,7 +1516,7 @@ var TableRow = react.forwardRef(
1458
1516
  )
1459
1517
  );
1460
1518
  TableRow.displayName = "TableRow";
1461
- var TableHead = react.forwardRef(
1519
+ var TableHead = React.forwardRef(
1462
1520
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1463
1521
  "th",
1464
1522
  {
@@ -1472,7 +1530,7 @@ var TableHead = react.forwardRef(
1472
1530
  )
1473
1531
  );
1474
1532
  TableHead.displayName = "TableHead";
1475
- var TableCell = react.forwardRef(
1533
+ var TableCell = React.forwardRef(
1476
1534
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1477
1535
  "td",
1478
1536
  {
@@ -1483,12 +1541,12 @@ var TableCell = react.forwardRef(
1483
1541
  )
1484
1542
  );
1485
1543
  TableCell.displayName = "TableCell";
1486
- var TableCaption = react.forwardRef(
1544
+ var TableCaption = React.forwardRef(
1487
1545
  ({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx("caption", { ref, className: cn("mt-4 text-sm text-muted-foreground", className), ...props })
1488
1546
  );
1489
1547
  TableCaption.displayName = "TableCaption";
1490
1548
  var Tabs = TabsPrimitive__namespace.Root;
1491
- var TabsList = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1549
+ var TabsList = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1492
1550
  TabsPrimitive__namespace.List,
1493
1551
  {
1494
1552
  ref,
@@ -1500,7 +1558,7 @@ var TabsList = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ *
1500
1558
  }
1501
1559
  ));
1502
1560
  TabsList.displayName = TabsPrimitive__namespace.List.displayName;
1503
- var TabsTrigger = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1561
+ var TabsTrigger = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1504
1562
  TabsPrimitive__namespace.Trigger,
1505
1563
  {
1506
1564
  ref,
@@ -1512,7 +1570,7 @@ var TabsTrigger = react.forwardRef(({ className, ...props }, ref) => /* @__PURE_
1512
1570
  }
1513
1571
  ));
1514
1572
  TabsTrigger.displayName = TabsPrimitive__namespace.Trigger.displayName;
1515
- var TabsContent = react.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1573
+ var TabsContent = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
1516
1574
  TabsPrimitive__namespace.Content,
1517
1575
  {
1518
1576
  ref,
@@ -1578,6 +1636,16 @@ exports.DialogOverlay = DialogOverlay;
1578
1636
  exports.DialogPortal = DialogPortal;
1579
1637
  exports.DialogTitle = DialogTitle;
1580
1638
  exports.DialogTrigger = DialogTrigger;
1639
+ exports.Drawer = Drawer;
1640
+ exports.DrawerClose = DrawerClose;
1641
+ exports.DrawerContent = DrawerContent;
1642
+ exports.DrawerDescription = DrawerDescription;
1643
+ exports.DrawerFooter = DrawerFooter;
1644
+ exports.DrawerHeader = DrawerHeader;
1645
+ exports.DrawerOverlay = DrawerOverlay;
1646
+ exports.DrawerPortal = DrawerPortal;
1647
+ exports.DrawerTitle = DrawerTitle;
1648
+ exports.DrawerTrigger = DrawerTrigger;
1581
1649
  exports.DropdownMenu = DropdownMenu;
1582
1650
  exports.DropdownMenuCheckboxItem = DropdownMenuCheckboxItem;
1583
1651
  exports.DropdownMenuContent = DropdownMenuContent;
@@ -1654,6 +1722,7 @@ exports.SidebarRail = SidebarRail;
1654
1722
  exports.SidebarSeparator = SidebarSeparator;
1655
1723
  exports.SidebarTrigger = SidebarTrigger;
1656
1724
  exports.Skeleton = Skeleton;
1725
+ exports.Slider = Slider;
1657
1726
  exports.Switch = Switch;
1658
1727
  exports.Table = Table;
1659
1728
  exports.TableBody = TableBody;