@appolabs/ui 0.1.7 → 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,9 +1,9 @@
1
1
  import { clsx } from 'clsx';
2
2
  import { twMerge } from 'tailwind-merge';
3
- import * as React39 from 'react';
4
- import React39__default from 'react';
3
+ import * as React40 from 'react';
4
+ import React40__default from 'react';
5
5
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
6
- import { ChevronDown, ArrowLeft, ArrowRight, Check, X, Search, ChevronRight, Circle, Dot, ChevronUp, PanelLeft, MoreHorizontal, ChevronLeft, GripVertical } from 'lucide-react';
6
+ import { ChevronDown, X, ArrowLeft, ArrowRight, Check, Search, ChevronRight, Circle, Dot, ChevronUp, PanelLeft, MoreHorizontal, ChevronLeft, GripVertical } from 'lucide-react';
7
7
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
8
8
  import { cva } from 'class-variance-authority';
9
9
  import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
@@ -46,8 +46,8 @@ function cn(...inputs) {
46
46
  }
47
47
  var MOBILE_BREAKPOINT = 768;
48
48
  function useIsMobile() {
49
- const [isMobile, setIsMobile] = React39.useState(void 0);
50
- React39.useEffect(() => {
49
+ const [isMobile, setIsMobile] = React40.useState(void 0);
50
+ React40.useEffect(() => {
51
51
  const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`);
52
52
  const onChange = () => {
53
53
  setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
@@ -158,8 +158,8 @@ function toast({ ...props }) {
158
158
  };
159
159
  }
160
160
  function useToast() {
161
- const [state, setState] = React39.useState(memoryState);
162
- React39.useEffect(() => {
161
+ const [state, setState] = React40.useState(memoryState);
162
+ React40.useEffect(() => {
163
163
  listeners.push(setState);
164
164
  return () => {
165
165
  const index = listeners.indexOf(setState);
@@ -175,7 +175,7 @@ function useToast() {
175
175
  };
176
176
  }
177
177
  var Accordion = AccordionPrimitive.Root;
178
- var AccordionItem = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
178
+ var AccordionItem = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
179
179
  AccordionPrimitive.Item,
180
180
  {
181
181
  ref,
@@ -184,7 +184,7 @@ var AccordionItem = React39.forwardRef(({ className, ...props }, ref) => /* @__P
184
184
  }
185
185
  ));
186
186
  AccordionItem.displayName = "AccordionItem";
187
- var AccordionTrigger = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(AccordionPrimitive.Header, { className: "flex", children: /* @__PURE__ */ jsxs(
187
+ var AccordionTrigger = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(AccordionPrimitive.Header, { className: "flex", children: /* @__PURE__ */ jsxs(
188
188
  AccordionPrimitive.Trigger,
189
189
  {
190
190
  ref,
@@ -200,7 +200,7 @@ var AccordionTrigger = React39.forwardRef(({ className, children, ...props }, re
200
200
  }
201
201
  ) }));
202
202
  AccordionTrigger.displayName = AccordionPrimitive.Trigger.displayName;
203
- var AccordionContent = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
203
+ var AccordionContent = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsx(
204
204
  AccordionPrimitive.Content,
205
205
  {
206
206
  ref,
@@ -224,7 +224,7 @@ var alertVariants = cva(
224
224
  }
225
225
  }
226
226
  );
227
- var Alert = React39.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ jsx(
227
+ var Alert = React40.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ jsx(
228
228
  "div",
229
229
  {
230
230
  ref,
@@ -234,7 +234,7 @@ var Alert = React39.forwardRef(({ className, variant, ...props }, ref) => /* @__
234
234
  }
235
235
  ));
236
236
  Alert.displayName = "Alert";
237
- var AlertTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
237
+ var AlertTitle = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
238
238
  "h5",
239
239
  {
240
240
  ref,
@@ -243,7 +243,7 @@ var AlertTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE
243
243
  }
244
244
  ));
245
245
  AlertTitle.displayName = "AlertTitle";
246
- var AlertDescription = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
246
+ var AlertDescription = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
247
247
  "div",
248
248
  {
249
249
  ref,
@@ -277,7 +277,7 @@ var buttonVariants = cva(
277
277
  }
278
278
  }
279
279
  );
280
- var Button = React39.forwardRef(
280
+ var Button = React40.forwardRef(
281
281
  ({ className, variant, size, asChild = false, disabled, ...props }, ref) => {
282
282
  const Comp = asChild ? Slot : "button";
283
283
  return /* @__PURE__ */ jsx(
@@ -296,7 +296,7 @@ Button.displayName = "Button";
296
296
  var AlertDialog = AlertDialogPrimitive.Root;
297
297
  var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
298
298
  var AlertDialogPortal = AlertDialogPrimitive.Portal;
299
- var AlertDialogOverlay = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
299
+ var AlertDialogOverlay = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
300
300
  AlertDialogPrimitive.Overlay,
301
301
  {
302
302
  className: cn(
@@ -308,7 +308,7 @@ var AlertDialogOverlay = React39.forwardRef(({ className, ...props }, ref) => /*
308
308
  }
309
309
  ));
310
310
  AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
311
- var AlertDialogContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs(AlertDialogPortal, { children: [
311
+ var AlertDialogContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs(AlertDialogPortal, { children: [
312
312
  /* @__PURE__ */ jsx(AlertDialogOverlay, {}),
313
313
  /* @__PURE__ */ jsx(
314
314
  AlertDialogPrimitive.Content,
@@ -351,7 +351,7 @@ var AlertDialogFooter = ({
351
351
  }
352
352
  );
353
353
  AlertDialogFooter.displayName = "AlertDialogFooter";
354
- var AlertDialogTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
354
+ var AlertDialogTitle = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
355
355
  AlertDialogPrimitive.Title,
356
356
  {
357
357
  ref,
@@ -360,7 +360,7 @@ var AlertDialogTitle = React39.forwardRef(({ className, ...props }, ref) => /* @
360
360
  }
361
361
  ));
362
362
  AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
363
- var AlertDialogDescription = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
363
+ var AlertDialogDescription = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
364
364
  AlertDialogPrimitive.Description,
365
365
  {
366
366
  ref,
@@ -369,7 +369,7 @@ var AlertDialogDescription = React39.forwardRef(({ className, ...props }, ref) =
369
369
  }
370
370
  ));
371
371
  AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
372
- var AlertDialogAction = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
372
+ var AlertDialogAction = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
373
373
  AlertDialogPrimitive.Action,
374
374
  {
375
375
  ref,
@@ -378,7 +378,7 @@ var AlertDialogAction = React39.forwardRef(({ className, ...props }, ref) => /*
378
378
  }
379
379
  ));
380
380
  AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
381
- var AlertDialogCancel = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
381
+ var AlertDialogCancel = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
382
382
  AlertDialogPrimitive.Cancel,
383
383
  {
384
384
  ref,
@@ -391,7 +391,7 @@ var AlertDialogCancel = React39.forwardRef(({ className, ...props }, ref) => /*
391
391
  }
392
392
  ));
393
393
  AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName;
394
- var AnimatedBackground = React39.forwardRef(
394
+ var AnimatedBackground = React40.forwardRef(
395
395
  ({ className, variant = "default", showOrbs = true, showGrid = false, children, ...props }, ref) => {
396
396
  const isDashboard = variant === "dashboard";
397
397
  return /* @__PURE__ */ jsxs(
@@ -449,7 +449,7 @@ var AnimatedBackground = React39.forwardRef(
449
449
  }
450
450
  );
451
451
  AnimatedBackground.displayName = "AnimatedBackground";
452
- var GradientOrb = React39.forwardRef(
452
+ var GradientOrb = React40.forwardRef(
453
453
  ({
454
454
  className,
455
455
  color = "blue",
@@ -504,7 +504,7 @@ var GradientOrb = React39.forwardRef(
504
504
  );
505
505
  GradientOrb.displayName = "GradientOrb";
506
506
  var AspectRatio = AspectRatioPrimitive.Root;
507
- var Avatar = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
507
+ var Avatar = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
508
508
  AvatarPrimitive.Root,
509
509
  {
510
510
  ref,
@@ -516,7 +516,7 @@ var Avatar = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ *
516
516
  }
517
517
  ));
518
518
  Avatar.displayName = AvatarPrimitive.Root.displayName;
519
- var AvatarImage = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
519
+ var AvatarImage = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
520
520
  AvatarPrimitive.Image,
521
521
  {
522
522
  ref,
@@ -525,7 +525,7 @@ var AvatarImage = React39.forwardRef(({ className, ...props }, ref) => /* @__PUR
525
525
  }
526
526
  ));
527
527
  AvatarImage.displayName = AvatarPrimitive.Image.displayName;
528
- var AvatarFallback = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
528
+ var AvatarFallback = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
529
529
  AvatarPrimitive.Fallback,
530
530
  {
531
531
  ref,
@@ -556,9 +556,144 @@ var badgeVariants = cva(
556
556
  function Badge({ className, variant, ...props }) {
557
557
  return /* @__PURE__ */ jsx("div", { className: cn(badgeVariants({ variant }), className), ...props });
558
558
  }
559
- var Breadcrumb = React39.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsx("nav", { ref, "aria-label": "breadcrumb", ...props }));
559
+ var bannerVariants = cva(
560
+ "rounded-xl border p-4",
561
+ {
562
+ variants: {
563
+ variant: {
564
+ info: "border-blue-200 bg-blue-50 dark:border-blue-900/50 dark:bg-blue-900/20",
565
+ warning: "border-amber-200 bg-amber-50 dark:border-amber-900/50 dark:bg-amber-900/20",
566
+ destructive: "border-red-200 bg-red-50 dark:border-red-900/50 dark:bg-red-900/20",
567
+ success: "border-emerald-200 bg-emerald-50 dark:border-emerald-900/50 dark:bg-emerald-900/20"
568
+ }
569
+ },
570
+ defaultVariants: {
571
+ variant: "info"
572
+ }
573
+ }
574
+ );
575
+ var bannerIconVariants = cva(
576
+ "mt-0.5 h-5 w-5 flex-shrink-0",
577
+ {
578
+ variants: {
579
+ variant: {
580
+ info: "text-blue-600 dark:text-blue-400",
581
+ warning: "text-amber-600 dark:text-amber-400",
582
+ destructive: "text-red-600 dark:text-red-400",
583
+ success: "text-emerald-600 dark:text-emerald-400"
584
+ }
585
+ },
586
+ defaultVariants: {
587
+ variant: "info"
588
+ }
589
+ }
590
+ );
591
+ var bannerTitleVariants = cva(
592
+ "font-medium",
593
+ {
594
+ variants: {
595
+ variant: {
596
+ info: "text-blue-900 dark:text-blue-100",
597
+ warning: "text-amber-900 dark:text-amber-100",
598
+ destructive: "text-red-900 dark:text-red-100",
599
+ success: "text-emerald-900 dark:text-emerald-100"
600
+ }
601
+ },
602
+ defaultVariants: {
603
+ variant: "info"
604
+ }
605
+ }
606
+ );
607
+ var bannerDescriptionVariants = cva(
608
+ "mt-1 text-sm",
609
+ {
610
+ variants: {
611
+ variant: {
612
+ info: "text-blue-700 dark:text-blue-300",
613
+ warning: "text-amber-700 dark:text-amber-300",
614
+ destructive: "text-red-700 dark:text-red-300",
615
+ success: "text-emerald-700 dark:text-emerald-300"
616
+ }
617
+ },
618
+ defaultVariants: {
619
+ variant: "info"
620
+ }
621
+ }
622
+ );
623
+ var bannerDismissVariants = cva(
624
+ "h-8 w-8 inline-flex items-center justify-center rounded-md transition-colors",
625
+ {
626
+ variants: {
627
+ variant: {
628
+ info: "text-blue-700 hover:text-blue-900 hover:bg-blue-100 dark:text-blue-300 dark:hover:text-blue-100 dark:hover:bg-blue-800/50",
629
+ warning: "text-amber-700 hover:text-amber-900 hover:bg-amber-100 dark:text-amber-300 dark:hover:text-amber-100 dark:hover:bg-amber-800/50",
630
+ destructive: "text-red-700 hover:text-red-900 hover:bg-red-100 dark:text-red-300 dark:hover:text-red-100 dark:hover:bg-red-800/50",
631
+ success: "text-emerald-700 hover:text-emerald-900 hover:bg-emerald-100 dark:text-emerald-300 dark:hover:text-emerald-100 dark:hover:bg-emerald-800/50"
632
+ }
633
+ },
634
+ defaultVariants: {
635
+ variant: "info"
636
+ }
637
+ }
638
+ );
639
+ var Banner = React40.forwardRef(
640
+ ({ className, variant, icon, onDismiss, children, ...props }, ref) => /* @__PURE__ */ jsx(
641
+ "div",
642
+ {
643
+ ref,
644
+ role: "status",
645
+ className: cn(bannerVariants({ variant }), className),
646
+ ...props,
647
+ children: /* @__PURE__ */ jsxs("div", { className: "flex items-start gap-3", children: [
648
+ icon && /* @__PURE__ */ jsx("div", { className: cn(bannerIconVariants({ variant })), children: icon }),
649
+ /* @__PURE__ */ jsx("div", { className: "flex-1 min-w-0", children }),
650
+ onDismiss && /* @__PURE__ */ jsxs(
651
+ "button",
652
+ {
653
+ type: "button",
654
+ onClick: onDismiss,
655
+ className: cn(bannerDismissVariants({ variant }), "flex-shrink-0"),
656
+ children: [
657
+ /* @__PURE__ */ jsx(X, { className: "h-4 w-4" }),
658
+ /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Dismiss" })
659
+ ]
660
+ }
661
+ )
662
+ ] })
663
+ }
664
+ )
665
+ );
666
+ Banner.displayName = "Banner";
667
+ var BannerTitle = React40.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ jsx(
668
+ "p",
669
+ {
670
+ ref,
671
+ className: cn(bannerTitleVariants({ variant }), className),
672
+ ...props
673
+ }
674
+ ));
675
+ BannerTitle.displayName = "BannerTitle";
676
+ var BannerDescription = React40.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ jsx(
677
+ "p",
678
+ {
679
+ ref,
680
+ className: cn(bannerDescriptionVariants({ variant }), className),
681
+ ...props
682
+ }
683
+ ));
684
+ BannerDescription.displayName = "BannerDescription";
685
+ var BannerActions = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
686
+ "div",
687
+ {
688
+ ref,
689
+ className: cn("mt-3 flex flex-wrap items-center gap-2", className),
690
+ ...props
691
+ }
692
+ ));
693
+ BannerActions.displayName = "BannerActions";
694
+ var Breadcrumb = React40.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsx("nav", { ref, "aria-label": "breadcrumb", ...props }));
560
695
  Breadcrumb.displayName = "Breadcrumb";
561
- var BreadcrumbList = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
696
+ var BreadcrumbList = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
562
697
  "ol",
563
698
  {
564
699
  ref,
@@ -570,7 +705,7 @@ var BreadcrumbList = React39.forwardRef(({ className, ...props }, ref) => /* @__
570
705
  }
571
706
  ));
572
707
  BreadcrumbList.displayName = "BreadcrumbList";
573
- var BreadcrumbItem = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
708
+ var BreadcrumbItem = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
574
709
  "li",
575
710
  {
576
711
  ref,
@@ -579,7 +714,7 @@ var BreadcrumbItem = React39.forwardRef(({ className, ...props }, ref) => /* @__
579
714
  }
580
715
  ));
581
716
  BreadcrumbItem.displayName = "BreadcrumbItem";
582
- var BreadcrumbLink = React39.forwardRef(({ asChild, className, ...props }, ref) => {
717
+ var BreadcrumbLink = React40.forwardRef(({ asChild, className, ...props }, ref) => {
583
718
  const Comp = asChild ? Slot : "a";
584
719
  return /* @__PURE__ */ jsx(
585
720
  Comp,
@@ -591,7 +726,7 @@ var BreadcrumbLink = React39.forwardRef(({ asChild, className, ...props }, ref)
591
726
  );
592
727
  });
593
728
  BreadcrumbLink.displayName = "BreadcrumbLink";
594
- var BreadcrumbPage = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
729
+ var BreadcrumbPage = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
595
730
  "span",
596
731
  {
597
732
  ref,
@@ -687,7 +822,7 @@ function Calendar({
687
822
  );
688
823
  }
689
824
  Calendar.displayName = "Calendar";
690
- var Card = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
825
+ var Card = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
691
826
  "div",
692
827
  {
693
828
  ref,
@@ -699,7 +834,7 @@ var Card = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
699
834
  }
700
835
  ));
701
836
  Card.displayName = "Card";
702
- var CardHeader = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
837
+ var CardHeader = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
703
838
  "div",
704
839
  {
705
840
  ref,
@@ -708,7 +843,7 @@ var CardHeader = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE
708
843
  }
709
844
  ));
710
845
  CardHeader.displayName = "CardHeader";
711
- var CardTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
846
+ var CardTitle = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
712
847
  "h3",
713
848
  {
714
849
  ref,
@@ -720,7 +855,7 @@ var CardTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE_
720
855
  }
721
856
  ));
722
857
  CardTitle.displayName = "CardTitle";
723
- var CardDescription = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
858
+ var CardDescription = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
724
859
  "p",
725
860
  {
726
861
  ref,
@@ -729,9 +864,9 @@ var CardDescription = React39.forwardRef(({ className, ...props }, ref) => /* @_
729
864
  }
730
865
  ));
731
866
  CardDescription.displayName = "CardDescription";
732
- var CardContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("flex-1 p-6 pt-0", className), ...props }));
867
+ var CardContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("flex-1 p-6 pt-0", className), ...props }));
733
868
  CardContent.displayName = "CardContent";
734
- var CardFooter = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
869
+ var CardFooter = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
735
870
  "div",
736
871
  {
737
872
  ref,
@@ -740,15 +875,15 @@ var CardFooter = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE
740
875
  }
741
876
  ));
742
877
  CardFooter.displayName = "CardFooter";
743
- var CarouselContext = React39.createContext(null);
878
+ var CarouselContext = React40.createContext(null);
744
879
  function useCarousel() {
745
- const context = React39.useContext(CarouselContext);
880
+ const context = React40.useContext(CarouselContext);
746
881
  if (!context) {
747
882
  throw new Error("useCarousel must be used within a <Carousel />");
748
883
  }
749
884
  return context;
750
885
  }
751
- var Carousel = React39.forwardRef(
886
+ var Carousel = React40.forwardRef(
752
887
  ({
753
888
  orientation = "horizontal",
754
889
  opts,
@@ -765,22 +900,22 @@ var Carousel = React39.forwardRef(
765
900
  },
766
901
  plugins
767
902
  );
768
- const [canScrollPrev, setCanScrollPrev] = React39.useState(false);
769
- const [canScrollNext, setCanScrollNext] = React39.useState(false);
770
- const onSelect = React39.useCallback((api2) => {
903
+ const [canScrollPrev, setCanScrollPrev] = React40.useState(false);
904
+ const [canScrollNext, setCanScrollNext] = React40.useState(false);
905
+ const onSelect = React40.useCallback((api2) => {
771
906
  if (!api2) {
772
907
  return;
773
908
  }
774
909
  setCanScrollPrev(api2.canScrollPrev());
775
910
  setCanScrollNext(api2.canScrollNext());
776
911
  }, []);
777
- const scrollPrev = React39.useCallback(() => {
912
+ const scrollPrev = React40.useCallback(() => {
778
913
  api?.scrollPrev();
779
914
  }, [api]);
780
- const scrollNext = React39.useCallback(() => {
915
+ const scrollNext = React40.useCallback(() => {
781
916
  api?.scrollNext();
782
917
  }, [api]);
783
- const handleKeyDown = React39.useCallback(
918
+ const handleKeyDown = React40.useCallback(
784
919
  (event) => {
785
920
  if (event.key === "ArrowLeft") {
786
921
  event.preventDefault();
@@ -792,13 +927,13 @@ var Carousel = React39.forwardRef(
792
927
  },
793
928
  [scrollPrev, scrollNext]
794
929
  );
795
- React39.useEffect(() => {
930
+ React40.useEffect(() => {
796
931
  if (!api || !setApi) {
797
932
  return;
798
933
  }
799
934
  setApi(api);
800
935
  }, [api, setApi]);
801
- React39.useEffect(() => {
936
+ React40.useEffect(() => {
802
937
  if (!api) {
803
938
  return;
804
939
  }
@@ -839,7 +974,7 @@ var Carousel = React39.forwardRef(
839
974
  }
840
975
  );
841
976
  Carousel.displayName = "Carousel";
842
- var CarouselContent = React39.forwardRef(({ className, ...props }, ref) => {
977
+ var CarouselContent = React40.forwardRef(({ className, ...props }, ref) => {
843
978
  const { carouselRef, orientation } = useCarousel();
844
979
  return /* @__PURE__ */ jsx("div", { ref: carouselRef, className: "overflow-hidden", children: /* @__PURE__ */ jsx(
845
980
  "div",
@@ -855,7 +990,7 @@ var CarouselContent = React39.forwardRef(({ className, ...props }, ref) => {
855
990
  ) });
856
991
  });
857
992
  CarouselContent.displayName = "CarouselContent";
858
- var CarouselItem = React39.forwardRef(({ className, ...props }, ref) => {
993
+ var CarouselItem = React40.forwardRef(({ className, ...props }, ref) => {
859
994
  const { orientation } = useCarousel();
860
995
  return /* @__PURE__ */ jsx(
861
996
  "div",
@@ -873,7 +1008,7 @@ var CarouselItem = React39.forwardRef(({ className, ...props }, ref) => {
873
1008
  );
874
1009
  });
875
1010
  CarouselItem.displayName = "CarouselItem";
876
- var CarouselPrevious = React39.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
1011
+ var CarouselPrevious = React40.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
877
1012
  const { orientation, scrollPrev, canScrollPrev } = useCarousel();
878
1013
  return /* @__PURE__ */ jsxs(
879
1014
  Button,
@@ -897,7 +1032,7 @@ var CarouselPrevious = React39.forwardRef(({ className, variant = "outline", siz
897
1032
  );
898
1033
  });
899
1034
  CarouselPrevious.displayName = "CarouselPrevious";
900
- var CarouselNext = React39.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
1035
+ var CarouselNext = React40.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
901
1036
  const { orientation, scrollNext, canScrollNext } = useCarousel();
902
1037
  return /* @__PURE__ */ jsxs(
903
1038
  Button,
@@ -922,16 +1057,16 @@ var CarouselNext = React39.forwardRef(({ className, variant = "outline", size =
922
1057
  });
923
1058
  CarouselNext.displayName = "CarouselNext";
924
1059
  var THEMES = { light: "", dark: ".dark" };
925
- var ChartContext = React39.createContext(null);
1060
+ var ChartContext = React40.createContext(null);
926
1061
  function useChart() {
927
- const context = React39.useContext(ChartContext);
1062
+ const context = React40.useContext(ChartContext);
928
1063
  if (!context) {
929
1064
  throw new Error("useChart must be used within a <ChartContainer />");
930
1065
  }
931
1066
  return context;
932
1067
  }
933
- var ChartContainer = React39.forwardRef(({ id, className, children, config, ...props }, ref) => {
934
- const uniqueId = React39.useId();
1068
+ var ChartContainer = React40.forwardRef(({ id, className, children, config, ...props }, ref) => {
1069
+ const uniqueId = React40.useId();
935
1070
  const chartId = `chart-${id || uniqueId.replace(/:/g, "")}`;
936
1071
  return /* @__PURE__ */ jsx(ChartContext.Provider, { value: { config }, children: /* @__PURE__ */ jsxs(
937
1072
  "div",
@@ -977,7 +1112,7 @@ ${colorConfig.map(([key, itemConfig]) => {
977
1112
  );
978
1113
  };
979
1114
  var ChartTooltip = RechartsPrimitive.Tooltip;
980
- var ChartTooltipContent = React39.forwardRef(
1115
+ var ChartTooltipContent = React40.forwardRef(
981
1116
  ({
982
1117
  active,
983
1118
  payload,
@@ -994,7 +1129,7 @@ var ChartTooltipContent = React39.forwardRef(
994
1129
  labelKey
995
1130
  }, ref) => {
996
1131
  const { config } = useChart();
997
- const tooltipLabel = React39.useMemo(() => {
1132
+ const tooltipLabel = React40.useMemo(() => {
998
1133
  if (hideLabel || !payload?.length) {
999
1134
  return null;
1000
1135
  }
@@ -1090,7 +1225,7 @@ var ChartTooltipContent = React39.forwardRef(
1090
1225
  );
1091
1226
  ChartTooltipContent.displayName = "ChartTooltip";
1092
1227
  var ChartLegend = RechartsPrimitive.Legend;
1093
- var ChartLegendContent = React39.forwardRef(
1228
+ var ChartLegendContent = React40.forwardRef(
1094
1229
  ({ className, hideIcon = false, payload, verticalAlign = "bottom", nameKey }, ref) => {
1095
1230
  const { config } = useChart();
1096
1231
  if (!payload?.length) {
@@ -1148,7 +1283,7 @@ function getPayloadConfigFromPayload(config, payload, key) {
1148
1283
  }
1149
1284
  return configLabelKey in config ? config[configLabelKey] : config[key];
1150
1285
  }
1151
- var Checkbox = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1286
+ var Checkbox = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1152
1287
  CheckboxPrimitive.Root,
1153
1288
  {
1154
1289
  ref,
@@ -1174,7 +1309,7 @@ var Dialog = DialogPrimitive.Root;
1174
1309
  var DialogTrigger = DialogPrimitive.Trigger;
1175
1310
  var DialogPortal = DialogPrimitive.Portal;
1176
1311
  var DialogClose = DialogPrimitive.Close;
1177
- var DialogOverlay = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1312
+ var DialogOverlay = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1178
1313
  DialogPrimitive.Overlay,
1179
1314
  {
1180
1315
  ref,
@@ -1186,8 +1321,8 @@ var DialogOverlay = React39.forwardRef(({ className, ...props }, ref) => /* @__P
1186
1321
  }
1187
1322
  ));
1188
1323
  DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
1189
- var DialogContent = React39.forwardRef(({ className, children, onCloseComplete, onAnimationEnd, ...props }, ref) => {
1190
- const handleAnimationEnd = React39.useCallback(
1324
+ var DialogContent = React40.forwardRef(({ className, children, onCloseComplete, onAnimationEnd, ...props }, ref) => {
1325
+ const handleAnimationEnd = React40.useCallback(
1191
1326
  (e) => {
1192
1327
  onAnimationEnd?.(e);
1193
1328
  if (e.currentTarget.getAttribute("data-state") === "closed") {
@@ -1198,23 +1333,17 @@ var DialogContent = React39.forwardRef(({ className, children, onCloseComplete,
1198
1333
  );
1199
1334
  return /* @__PURE__ */ jsxs(DialogPortal, { children: [
1200
1335
  /* @__PURE__ */ jsx(DialogOverlay, {}),
1201
- /* @__PURE__ */ jsxs(
1336
+ /* @__PURE__ */ jsx(
1202
1337
  DialogPrimitive.Content,
1203
1338
  {
1204
1339
  ref,
1205
1340
  className: cn(
1206
- "fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
1341
+ "fixed left-[50%] top-[50%] z-50 flex max-h-[85vh] w-full max-w-lg translate-x-[-50%] translate-y-[-50%] flex-col gap-4 border bg-background shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
1207
1342
  className
1208
1343
  ),
1209
1344
  onAnimationEnd: handleAnimationEnd,
1210
1345
  ...props,
1211
- children: [
1212
- children,
1213
- /* @__PURE__ */ jsxs(DialogPrimitive.Close, { className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground", children: [
1214
- /* @__PURE__ */ jsx(X, { className: "h-4 w-4" }),
1215
- /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Close" })
1216
- ] })
1217
- ]
1346
+ children
1218
1347
  }
1219
1348
  )
1220
1349
  ] });
@@ -1227,13 +1356,27 @@ var DialogHeader = ({
1227
1356
  "div",
1228
1357
  {
1229
1358
  className: cn(
1230
- "flex flex-col space-y-1.5 text-center sm:text-left",
1359
+ "flex flex-shrink-0 flex-col space-y-1.5 px-6 pt-6 text-center sm:text-left",
1231
1360
  className
1232
1361
  ),
1233
1362
  ...props
1234
1363
  }
1235
1364
  );
1236
1365
  DialogHeader.displayName = "DialogHeader";
1366
+ var DialogBody = ({
1367
+ className,
1368
+ ...props
1369
+ }) => /* @__PURE__ */ jsx(
1370
+ "div",
1371
+ {
1372
+ className: cn(
1373
+ "flex-1 overflow-y-auto px-6",
1374
+ className
1375
+ ),
1376
+ ...props
1377
+ }
1378
+ );
1379
+ DialogBody.displayName = "DialogBody";
1237
1380
  var DialogFooter = ({
1238
1381
  className,
1239
1382
  ...props
@@ -1241,14 +1384,14 @@ var DialogFooter = ({
1241
1384
  "div",
1242
1385
  {
1243
1386
  className: cn(
1244
- "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
1387
+ "flex flex-shrink-0 flex-col-reverse gap-2 px-6 pb-6 sm:flex-row sm:justify-end",
1245
1388
  className
1246
1389
  ),
1247
1390
  ...props
1248
1391
  }
1249
1392
  );
1250
1393
  DialogFooter.displayName = "DialogFooter";
1251
- var DialogTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1394
+ var DialogTitle = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1252
1395
  DialogPrimitive.Title,
1253
1396
  {
1254
1397
  ref,
@@ -1260,7 +1403,7 @@ var DialogTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PUR
1260
1403
  }
1261
1404
  ));
1262
1405
  DialogTitle.displayName = DialogPrimitive.Title.displayName;
1263
- var DialogDescription = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1406
+ var DialogDescription = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1264
1407
  DialogPrimitive.Description,
1265
1408
  {
1266
1409
  ref,
@@ -1269,7 +1412,7 @@ var DialogDescription = React39.forwardRef(({ className, ...props }, ref) => /*
1269
1412
  }
1270
1413
  ));
1271
1414
  DialogDescription.displayName = DialogPrimitive.Description.displayName;
1272
- var Command = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1415
+ var Command = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1273
1416
  Command$1,
1274
1417
  {
1275
1418
  ref,
@@ -1290,7 +1433,7 @@ var CommandDialog = ({ children, ...props }) => {
1290
1433
  }
1291
1434
  ) }) });
1292
1435
  };
1293
- var CommandInput = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs("div", { className: "flex items-center border-b px-3", "cmdk-input-wrapper": "", children: [
1436
+ var CommandInput = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs("div", { className: "flex items-center border-b px-3", "cmdk-input-wrapper": "", children: [
1294
1437
  /* @__PURE__ */ jsx(Search, { className: "mr-2 h-4 w-4 shrink-0 opacity-50" }),
1295
1438
  /* @__PURE__ */ jsx(
1296
1439
  Command$1.Input,
@@ -1305,7 +1448,7 @@ var CommandInput = React39.forwardRef(({ className, ...props }, ref) => /* @__PU
1305
1448
  )
1306
1449
  ] }));
1307
1450
  CommandInput.displayName = Command$1.Input.displayName;
1308
- var CommandList = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1451
+ var CommandList = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1309
1452
  Command$1.List,
1310
1453
  {
1311
1454
  ref,
@@ -1314,7 +1457,7 @@ var CommandList = React39.forwardRef(({ className, ...props }, ref) => /* @__PUR
1314
1457
  }
1315
1458
  ));
1316
1459
  CommandList.displayName = Command$1.List.displayName;
1317
- var CommandEmpty = React39.forwardRef((props, ref) => /* @__PURE__ */ jsx(
1460
+ var CommandEmpty = React40.forwardRef((props, ref) => /* @__PURE__ */ jsx(
1318
1461
  Command$1.Empty,
1319
1462
  {
1320
1463
  ref,
@@ -1323,7 +1466,7 @@ var CommandEmpty = React39.forwardRef((props, ref) => /* @__PURE__ */ jsx(
1323
1466
  }
1324
1467
  ));
1325
1468
  CommandEmpty.displayName = Command$1.Empty.displayName;
1326
- var CommandGroup = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1469
+ var CommandGroup = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1327
1470
  Command$1.Group,
1328
1471
  {
1329
1472
  ref,
@@ -1335,7 +1478,7 @@ var CommandGroup = React39.forwardRef(({ className, ...props }, ref) => /* @__PU
1335
1478
  }
1336
1479
  ));
1337
1480
  CommandGroup.displayName = Command$1.Group.displayName;
1338
- var CommandSeparator = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1481
+ var CommandSeparator = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1339
1482
  Command$1.Separator,
1340
1483
  {
1341
1484
  ref,
@@ -1344,7 +1487,7 @@ var CommandSeparator = React39.forwardRef(({ className, ...props }, ref) => /* @
1344
1487
  }
1345
1488
  ));
1346
1489
  CommandSeparator.displayName = Command$1.Separator.displayName;
1347
- var CommandItem = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1490
+ var CommandItem = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1348
1491
  Command$1.Item,
1349
1492
  {
1350
1493
  ref,
@@ -1378,7 +1521,7 @@ var ContextMenuGroup = ContextMenuPrimitive.Group;
1378
1521
  var ContextMenuPortal = ContextMenuPrimitive.Portal;
1379
1522
  var ContextMenuSub = ContextMenuPrimitive.Sub;
1380
1523
  var ContextMenuRadioGroup = ContextMenuPrimitive.RadioGroup;
1381
- var ContextMenuSubTrigger = React39.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
1524
+ var ContextMenuSubTrigger = React40.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
1382
1525
  ContextMenuPrimitive.SubTrigger,
1383
1526
  {
1384
1527
  ref,
@@ -1395,7 +1538,7 @@ var ContextMenuSubTrigger = React39.forwardRef(({ className, inset, children, ..
1395
1538
  }
1396
1539
  ));
1397
1540
  ContextMenuSubTrigger.displayName = ContextMenuPrimitive.SubTrigger.displayName;
1398
- var ContextMenuSubContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1541
+ var ContextMenuSubContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1399
1542
  ContextMenuPrimitive.SubContent,
1400
1543
  {
1401
1544
  ref,
@@ -1407,7 +1550,7 @@ var ContextMenuSubContent = React39.forwardRef(({ className, ...props }, ref) =>
1407
1550
  }
1408
1551
  ));
1409
1552
  ContextMenuSubContent.displayName = ContextMenuPrimitive.SubContent.displayName;
1410
- var ContextMenuContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(ContextMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
1553
+ var ContextMenuContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(ContextMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
1411
1554
  ContextMenuPrimitive.Content,
1412
1555
  {
1413
1556
  ref,
@@ -1419,7 +1562,7 @@ var ContextMenuContent = React39.forwardRef(({ className, ...props }, ref) => /*
1419
1562
  }
1420
1563
  ) }));
1421
1564
  ContextMenuContent.displayName = ContextMenuPrimitive.Content.displayName;
1422
- var ContextMenuItem = React39.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
1565
+ var ContextMenuItem = React40.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
1423
1566
  ContextMenuPrimitive.Item,
1424
1567
  {
1425
1568
  ref,
@@ -1432,7 +1575,7 @@ var ContextMenuItem = React39.forwardRef(({ className, inset, ...props }, ref) =
1432
1575
  }
1433
1576
  ));
1434
1577
  ContextMenuItem.displayName = ContextMenuPrimitive.Item.displayName;
1435
- var ContextMenuCheckboxItem = React39.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
1578
+ var ContextMenuCheckboxItem = React40.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
1436
1579
  ContextMenuPrimitive.CheckboxItem,
1437
1580
  {
1438
1581
  ref,
@@ -1449,7 +1592,7 @@ var ContextMenuCheckboxItem = React39.forwardRef(({ className, children, checked
1449
1592
  }
1450
1593
  ));
1451
1594
  ContextMenuCheckboxItem.displayName = ContextMenuPrimitive.CheckboxItem.displayName;
1452
- var ContextMenuRadioItem = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
1595
+ var ContextMenuRadioItem = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
1453
1596
  ContextMenuPrimitive.RadioItem,
1454
1597
  {
1455
1598
  ref,
@@ -1465,7 +1608,7 @@ var ContextMenuRadioItem = React39.forwardRef(({ className, children, ...props }
1465
1608
  }
1466
1609
  ));
1467
1610
  ContextMenuRadioItem.displayName = ContextMenuPrimitive.RadioItem.displayName;
1468
- var ContextMenuLabel = React39.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
1611
+ var ContextMenuLabel = React40.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
1469
1612
  ContextMenuPrimitive.Label,
1470
1613
  {
1471
1614
  ref,
@@ -1478,7 +1621,7 @@ var ContextMenuLabel = React39.forwardRef(({ className, inset, ...props }, ref)
1478
1621
  }
1479
1622
  ));
1480
1623
  ContextMenuLabel.displayName = ContextMenuPrimitive.Label.displayName;
1481
- var ContextMenuSeparator = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1624
+ var ContextMenuSeparator = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1482
1625
  ContextMenuPrimitive.Separator,
1483
1626
  {
1484
1627
  ref,
@@ -1517,7 +1660,7 @@ Drawer.displayName = "Drawer";
1517
1660
  var DrawerTrigger = Drawer$1.Trigger;
1518
1661
  var DrawerPortal = Drawer$1.Portal;
1519
1662
  var DrawerClose = Drawer$1.Close;
1520
- var DrawerOverlay = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1663
+ var DrawerOverlay = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1521
1664
  Drawer$1.Overlay,
1522
1665
  {
1523
1666
  ref,
@@ -1526,7 +1669,7 @@ var DrawerOverlay = React39.forwardRef(({ className, ...props }, ref) => /* @__P
1526
1669
  }
1527
1670
  ));
1528
1671
  DrawerOverlay.displayName = Drawer$1.Overlay.displayName;
1529
- var DrawerContent = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(DrawerPortal, { children: [
1672
+ var DrawerContent = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(DrawerPortal, { children: [
1530
1673
  /* @__PURE__ */ jsx(DrawerOverlay, {}),
1531
1674
  /* @__PURE__ */ jsxs(
1532
1675
  Drawer$1.Content,
@@ -1567,7 +1710,7 @@ var DrawerFooter = ({
1567
1710
  }
1568
1711
  );
1569
1712
  DrawerFooter.displayName = "DrawerFooter";
1570
- var DrawerTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1713
+ var DrawerTitle = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1571
1714
  Drawer$1.Title,
1572
1715
  {
1573
1716
  ref,
@@ -1579,7 +1722,7 @@ var DrawerTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PUR
1579
1722
  }
1580
1723
  ));
1581
1724
  DrawerTitle.displayName = Drawer$1.Title.displayName;
1582
- var DrawerDescription = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1725
+ var DrawerDescription = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1583
1726
  Drawer$1.Description,
1584
1727
  {
1585
1728
  ref,
@@ -1594,7 +1737,7 @@ var DropdownMenuGroup = DropdownMenuPrimitive.Group;
1594
1737
  var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
1595
1738
  var DropdownMenuSub = DropdownMenuPrimitive.Sub;
1596
1739
  var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
1597
- var DropdownMenuSubTrigger = React39.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
1740
+ var DropdownMenuSubTrigger = React40.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
1598
1741
  DropdownMenuPrimitive.SubTrigger,
1599
1742
  {
1600
1743
  ref,
@@ -1611,7 +1754,7 @@ var DropdownMenuSubTrigger = React39.forwardRef(({ className, inset, children, .
1611
1754
  }
1612
1755
  ));
1613
1756
  DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
1614
- var DropdownMenuSubContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1757
+ var DropdownMenuSubContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1615
1758
  DropdownMenuPrimitive.SubContent,
1616
1759
  {
1617
1760
  ref,
@@ -1623,7 +1766,7 @@ var DropdownMenuSubContent = React39.forwardRef(({ className, ...props }, ref) =
1623
1766
  }
1624
1767
  ));
1625
1768
  DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
1626
- var DropdownMenuContent = React39.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
1769
+ var DropdownMenuContent = React40.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ jsx(
1627
1770
  DropdownMenuPrimitive.Content,
1628
1771
  {
1629
1772
  ref,
@@ -1636,7 +1779,7 @@ var DropdownMenuContent = React39.forwardRef(({ className, sideOffset = 4, ...pr
1636
1779
  }
1637
1780
  ) }));
1638
1781
  DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
1639
- var DropdownMenuItem = React39.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
1782
+ var DropdownMenuItem = React40.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
1640
1783
  DropdownMenuPrimitive.Item,
1641
1784
  {
1642
1785
  ref,
@@ -1649,7 +1792,7 @@ var DropdownMenuItem = React39.forwardRef(({ className, inset, ...props }, ref)
1649
1792
  }
1650
1793
  ));
1651
1794
  DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
1652
- var DropdownMenuCheckboxItem = React39.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
1795
+ var DropdownMenuCheckboxItem = React40.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
1653
1796
  DropdownMenuPrimitive.CheckboxItem,
1654
1797
  {
1655
1798
  ref,
@@ -1666,7 +1809,7 @@ var DropdownMenuCheckboxItem = React39.forwardRef(({ className, children, checke
1666
1809
  }
1667
1810
  ));
1668
1811
  DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
1669
- var DropdownMenuRadioItem = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
1812
+ var DropdownMenuRadioItem = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
1670
1813
  DropdownMenuPrimitive.RadioItem,
1671
1814
  {
1672
1815
  ref,
@@ -1682,7 +1825,7 @@ var DropdownMenuRadioItem = React39.forwardRef(({ className, children, ...props
1682
1825
  }
1683
1826
  ));
1684
1827
  DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
1685
- var DropdownMenuLabel = React39.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
1828
+ var DropdownMenuLabel = React40.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
1686
1829
  DropdownMenuPrimitive.Label,
1687
1830
  {
1688
1831
  ref,
@@ -1695,7 +1838,7 @@ var DropdownMenuLabel = React39.forwardRef(({ className, inset, ...props }, ref)
1695
1838
  }
1696
1839
  ));
1697
1840
  DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
1698
- var DropdownMenuSeparator = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1841
+ var DropdownMenuSeparator = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1699
1842
  DropdownMenuPrimitive.Separator,
1700
1843
  {
1701
1844
  ref,
@@ -1720,7 +1863,7 @@ DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
1720
1863
  var labelVariants = cva(
1721
1864
  "text-base font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
1722
1865
  );
1723
- var Label3 = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1866
+ var Label3 = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1724
1867
  LabelPrimitive.Root,
1725
1868
  {
1726
1869
  ref,
@@ -1730,7 +1873,7 @@ var Label3 = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ *
1730
1873
  ));
1731
1874
  Label3.displayName = LabelPrimitive.Root.displayName;
1732
1875
  var Form = FormProvider;
1733
- var FormFieldContext = React39.createContext(
1876
+ var FormFieldContext = React40.createContext(
1734
1877
  {}
1735
1878
  );
1736
1879
  var FormField = ({
@@ -1739,8 +1882,8 @@ var FormField = ({
1739
1882
  return /* @__PURE__ */ jsx(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ jsx(Controller, { ...props }) });
1740
1883
  };
1741
1884
  var useFormField = () => {
1742
- const fieldContext = React39.useContext(FormFieldContext);
1743
- const itemContext = React39.useContext(FormItemContext);
1885
+ const fieldContext = React40.useContext(FormFieldContext);
1886
+ const itemContext = React40.useContext(FormItemContext);
1744
1887
  const { getFieldState, formState } = useFormContext();
1745
1888
  const fieldState = getFieldState(fieldContext.name, formState);
1746
1889
  if (!fieldContext) {
@@ -1756,15 +1899,15 @@ var useFormField = () => {
1756
1899
  ...fieldState
1757
1900
  };
1758
1901
  };
1759
- var FormItemContext = React39.createContext(
1902
+ var FormItemContext = React40.createContext(
1760
1903
  {}
1761
1904
  );
1762
- var FormItem = React39.forwardRef(({ className, ...props }, ref) => {
1763
- const id = React39.useId();
1905
+ var FormItem = React40.forwardRef(({ className, ...props }, ref) => {
1906
+ const id = React40.useId();
1764
1907
  return /* @__PURE__ */ jsx(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ jsx("div", { ref, className: cn("space-y-2", className), ...props }) });
1765
1908
  });
1766
1909
  FormItem.displayName = "FormItem";
1767
- var FormLabel = React39.forwardRef(({ className, ...props }, ref) => {
1910
+ var FormLabel = React40.forwardRef(({ className, ...props }, ref) => {
1768
1911
  const { error, formItemId } = useFormField();
1769
1912
  return /* @__PURE__ */ jsx(
1770
1913
  Label3,
@@ -1777,7 +1920,7 @@ var FormLabel = React39.forwardRef(({ className, ...props }, ref) => {
1777
1920
  );
1778
1921
  });
1779
1922
  FormLabel.displayName = "FormLabel";
1780
- var FormControl = React39.forwardRef(({ ...props }, ref) => {
1923
+ var FormControl = React40.forwardRef(({ ...props }, ref) => {
1781
1924
  const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
1782
1925
  return /* @__PURE__ */ jsx(
1783
1926
  Slot,
@@ -1791,7 +1934,7 @@ var FormControl = React39.forwardRef(({ ...props }, ref) => {
1791
1934
  );
1792
1935
  });
1793
1936
  FormControl.displayName = "FormControl";
1794
- var FormDescription = React39.forwardRef(({ className, ...props }, ref) => {
1937
+ var FormDescription = React40.forwardRef(({ className, ...props }, ref) => {
1795
1938
  const { formDescriptionId } = useFormField();
1796
1939
  return /* @__PURE__ */ jsx(
1797
1940
  "p",
@@ -1804,7 +1947,7 @@ var FormDescription = React39.forwardRef(({ className, ...props }, ref) => {
1804
1947
  );
1805
1948
  });
1806
1949
  FormDescription.displayName = "FormDescription";
1807
- var FormMessage = React39.forwardRef(({ className, children, ...props }, ref) => {
1950
+ var FormMessage = React40.forwardRef(({ className, children, ...props }, ref) => {
1808
1951
  const { error, formMessageId } = useFormField();
1809
1952
  const body = error ? String(error?.message) : children;
1810
1953
  if (!body) {
@@ -1863,7 +2006,7 @@ var glassCardVariants = cva(
1863
2006
  }
1864
2007
  }
1865
2008
  );
1866
- var GlassCard = React39.forwardRef(
2009
+ var GlassCard = React40.forwardRef(
1867
2010
  ({ className, variant, padding, ...props }, ref) => /* @__PURE__ */ jsx(
1868
2011
  "div",
1869
2012
  {
@@ -1874,7 +2017,7 @@ var GlassCard = React39.forwardRef(
1874
2017
  )
1875
2018
  );
1876
2019
  GlassCard.displayName = "GlassCard";
1877
- var GlassCardHeader = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2020
+ var GlassCardHeader = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1878
2021
  "div",
1879
2022
  {
1880
2023
  ref,
@@ -1883,7 +2026,7 @@ var GlassCardHeader = React39.forwardRef(({ className, ...props }, ref) => /* @_
1883
2026
  }
1884
2027
  ));
1885
2028
  GlassCardHeader.displayName = "GlassCardHeader";
1886
- var GlassCardTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2029
+ var GlassCardTitle = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1887
2030
  "h3",
1888
2031
  {
1889
2032
  ref,
@@ -1895,7 +2038,7 @@ var GlassCardTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__
1895
2038
  }
1896
2039
  ));
1897
2040
  GlassCardTitle.displayName = "GlassCardTitle";
1898
- var GlassCardDescription = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2041
+ var GlassCardDescription = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1899
2042
  "p",
1900
2043
  {
1901
2044
  ref,
@@ -1904,9 +2047,9 @@ var GlassCardDescription = React39.forwardRef(({ className, ...props }, ref) =>
1904
2047
  }
1905
2048
  ));
1906
2049
  GlassCardDescription.displayName = "GlassCardDescription";
1907
- var GlassCardContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
2050
+ var GlassCardContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
1908
2051
  GlassCardContent.displayName = "GlassCardContent";
1909
- var GlassCardFooter = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2052
+ var GlassCardFooter = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
1910
2053
  "div",
1911
2054
  {
1912
2055
  ref,
@@ -1942,7 +2085,7 @@ var glassHeaderVariants = cva(
1942
2085
  }
1943
2086
  }
1944
2087
  );
1945
- var GlassHeader = React39.forwardRef(
2088
+ var GlassHeader = React40.forwardRef(
1946
2089
  ({ className, variant, sticky, padding, as: Component = "header", ...props }, ref) => {
1947
2090
  return /* @__PURE__ */ jsx(
1948
2091
  Component,
@@ -1978,7 +2121,7 @@ var glassOverlayVariants = cva(
1978
2121
  }
1979
2122
  }
1980
2123
  );
1981
- var GlassOverlay = React39.forwardRef(
2124
+ var GlassOverlay = React40.forwardRef(
1982
2125
  ({ className, variant, blur, open = true, onClose, ...props }, ref) => {
1983
2126
  if (!open) return null;
1984
2127
  return /* @__PURE__ */ jsx(
@@ -2030,7 +2173,7 @@ var glassTabVariants = cva(
2030
2173
  }
2031
2174
  }
2032
2175
  );
2033
- var GlassTabs = React39.forwardRef(
2176
+ var GlassTabs = React40.forwardRef(
2034
2177
  ({ className, tabs, activeTab, onTabChange, size, ...props }, ref) => {
2035
2178
  return /* @__PURE__ */ jsx(
2036
2179
  "div",
@@ -2070,7 +2213,7 @@ var GlassTabs = React39.forwardRef(
2070
2213
  GlassTabs.displayName = "GlassTabs";
2071
2214
  var HoverCard = HoverCardPrimitive.Root;
2072
2215
  var HoverCardTrigger = HoverCardPrimitive.Trigger;
2073
- var HoverCardContent = React39.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(
2216
+ var HoverCardContent = React40.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(
2074
2217
  HoverCardPrimitive.Content,
2075
2218
  {
2076
2219
  ref,
@@ -2106,7 +2249,7 @@ var inputVariants = cva(
2106
2249
  }
2107
2250
  }
2108
2251
  );
2109
- var Input = React39.forwardRef(
2252
+ var Input = React40.forwardRef(
2110
2253
  ({ className, type, variant, ...props }, ref) => {
2111
2254
  return /* @__PURE__ */ jsx(
2112
2255
  "input",
@@ -2120,7 +2263,7 @@ var Input = React39.forwardRef(
2120
2263
  }
2121
2264
  );
2122
2265
  Input.displayName = "Input";
2123
- var InputOTP = React39.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsx(
2266
+ var InputOTP = React40.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ jsx(
2124
2267
  OTPInput,
2125
2268
  {
2126
2269
  ref,
@@ -2133,10 +2276,10 @@ var InputOTP = React39.forwardRef(({ className, containerClassName, ...props },
2133
2276
  }
2134
2277
  ));
2135
2278
  InputOTP.displayName = "InputOTP";
2136
- var InputOTPGroup = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("flex items-center", className), ...props }));
2279
+ var InputOTPGroup = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("flex items-center", className), ...props }));
2137
2280
  InputOTPGroup.displayName = "InputOTPGroup";
2138
- var InputOTPSlot = React39.forwardRef(({ index, className, ...props }, ref) => {
2139
- const inputOTPContext = React39.useContext(OTPInputContext);
2281
+ var InputOTPSlot = React40.forwardRef(({ index, className, ...props }, ref) => {
2282
+ const inputOTPContext = React40.useContext(OTPInputContext);
2140
2283
  const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
2141
2284
  return /* @__PURE__ */ jsxs(
2142
2285
  "div",
@@ -2156,7 +2299,7 @@ var InputOTPSlot = React39.forwardRef(({ index, className, ...props }, ref) => {
2156
2299
  );
2157
2300
  });
2158
2301
  InputOTPSlot.displayName = "InputOTPSlot";
2159
- var InputOTPSeparator = React39.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, role: "separator", ...props, children: /* @__PURE__ */ jsx(Dot, {}) }));
2302
+ var InputOTPSeparator = React40.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, role: "separator", ...props, children: /* @__PURE__ */ jsx(Dot, {}) }));
2160
2303
  InputOTPSeparator.displayName = "InputOTPSeparator";
2161
2304
  var sizes = {
2162
2305
  sm: { height: 24 },
@@ -2191,7 +2334,7 @@ var MenubarGroup = MenubarPrimitive.Group;
2191
2334
  var MenubarPortal = MenubarPrimitive.Portal;
2192
2335
  var MenubarSub = MenubarPrimitive.Sub;
2193
2336
  var MenubarRadioGroup = MenubarPrimitive.RadioGroup;
2194
- var Menubar = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2337
+ var Menubar = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2195
2338
  MenubarPrimitive.Root,
2196
2339
  {
2197
2340
  ref,
@@ -2203,7 +2346,7 @@ var Menubar = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__
2203
2346
  }
2204
2347
  ));
2205
2348
  Menubar.displayName = MenubarPrimitive.Root.displayName;
2206
- var MenubarTrigger = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2349
+ var MenubarTrigger = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2207
2350
  MenubarPrimitive.Trigger,
2208
2351
  {
2209
2352
  ref,
@@ -2215,7 +2358,7 @@ var MenubarTrigger = React39.forwardRef(({ className, ...props }, ref) => /* @__
2215
2358
  }
2216
2359
  ));
2217
2360
  MenubarTrigger.displayName = MenubarPrimitive.Trigger.displayName;
2218
- var MenubarSubTrigger = React39.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2361
+ var MenubarSubTrigger = React40.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2219
2362
  MenubarPrimitive.SubTrigger,
2220
2363
  {
2221
2364
  ref,
@@ -2232,7 +2375,7 @@ var MenubarSubTrigger = React39.forwardRef(({ className, inset, children, ...pro
2232
2375
  }
2233
2376
  ));
2234
2377
  MenubarSubTrigger.displayName = MenubarPrimitive.SubTrigger.displayName;
2235
- var MenubarSubContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2378
+ var MenubarSubContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2236
2379
  MenubarPrimitive.SubContent,
2237
2380
  {
2238
2381
  ref,
@@ -2244,7 +2387,7 @@ var MenubarSubContent = React39.forwardRef(({ className, ...props }, ref) => /*
2244
2387
  }
2245
2388
  ));
2246
2389
  MenubarSubContent.displayName = MenubarPrimitive.SubContent.displayName;
2247
- var MenubarContent = React39.forwardRef(
2390
+ var MenubarContent = React40.forwardRef(
2248
2391
  ({ className, align = "start", alignOffset = -4, sideOffset = 8, ...props }, ref) => /* @__PURE__ */ jsx(MenubarPrimitive.Portal, { children: /* @__PURE__ */ jsx(
2249
2392
  MenubarPrimitive.Content,
2250
2393
  {
@@ -2261,7 +2404,7 @@ var MenubarContent = React39.forwardRef(
2261
2404
  ) })
2262
2405
  );
2263
2406
  MenubarContent.displayName = MenubarPrimitive.Content.displayName;
2264
- var MenubarItem = React39.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
2407
+ var MenubarItem = React40.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
2265
2408
  MenubarPrimitive.Item,
2266
2409
  {
2267
2410
  ref,
@@ -2274,7 +2417,7 @@ var MenubarItem = React39.forwardRef(({ className, inset, ...props }, ref) => /*
2274
2417
  }
2275
2418
  ));
2276
2419
  MenubarItem.displayName = MenubarPrimitive.Item.displayName;
2277
- var MenubarCheckboxItem = React39.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
2420
+ var MenubarCheckboxItem = React40.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ jsxs(
2278
2421
  MenubarPrimitive.CheckboxItem,
2279
2422
  {
2280
2423
  ref,
@@ -2291,7 +2434,7 @@ var MenubarCheckboxItem = React39.forwardRef(({ className, children, checked, ..
2291
2434
  }
2292
2435
  ));
2293
2436
  MenubarCheckboxItem.displayName = MenubarPrimitive.CheckboxItem.displayName;
2294
- var MenubarRadioItem = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2437
+ var MenubarRadioItem = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2295
2438
  MenubarPrimitive.RadioItem,
2296
2439
  {
2297
2440
  ref,
@@ -2307,7 +2450,7 @@ var MenubarRadioItem = React39.forwardRef(({ className, children, ...props }, re
2307
2450
  }
2308
2451
  ));
2309
2452
  MenubarRadioItem.displayName = MenubarPrimitive.RadioItem.displayName;
2310
- var MenubarLabel = React39.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
2453
+ var MenubarLabel = React40.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ jsx(
2311
2454
  MenubarPrimitive.Label,
2312
2455
  {
2313
2456
  ref,
@@ -2320,7 +2463,7 @@ var MenubarLabel = React39.forwardRef(({ className, inset, ...props }, ref) => /
2320
2463
  }
2321
2464
  ));
2322
2465
  MenubarLabel.displayName = MenubarPrimitive.Label.displayName;
2323
- var MenubarSeparator = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2466
+ var MenubarSeparator = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2324
2467
  MenubarPrimitive.Separator,
2325
2468
  {
2326
2469
  ref,
@@ -2345,7 +2488,7 @@ var MenubarShortcut = ({
2345
2488
  );
2346
2489
  };
2347
2490
  MenubarShortcut.displayname = "MenubarShortcut";
2348
- var NavigationMenu = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2491
+ var NavigationMenu = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2349
2492
  NavigationMenuPrimitive.Root,
2350
2493
  {
2351
2494
  ref,
@@ -2361,7 +2504,7 @@ var NavigationMenu = React39.forwardRef(({ className, children, ...props }, ref)
2361
2504
  }
2362
2505
  ));
2363
2506
  NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName;
2364
- var NavigationMenuList = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2507
+ var NavigationMenuList = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2365
2508
  NavigationMenuPrimitive.List,
2366
2509
  {
2367
2510
  ref,
@@ -2377,7 +2520,7 @@ var NavigationMenuItem = NavigationMenuPrimitive.Item;
2377
2520
  var navigationMenuTriggerStyle = cva(
2378
2521
  "group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-base 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-[active]:bg-accent/50 data-[state=open]:bg-accent/50"
2379
2522
  );
2380
- var NavigationMenuTrigger = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2523
+ var NavigationMenuTrigger = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2381
2524
  NavigationMenuPrimitive.Trigger,
2382
2525
  {
2383
2526
  ref,
@@ -2397,7 +2540,7 @@ var NavigationMenuTrigger = React39.forwardRef(({ className, children, ...props
2397
2540
  }
2398
2541
  ));
2399
2542
  NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName;
2400
- var NavigationMenuContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2543
+ var NavigationMenuContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2401
2544
  NavigationMenuPrimitive.Content,
2402
2545
  {
2403
2546
  ref,
@@ -2410,7 +2553,7 @@ var NavigationMenuContent = React39.forwardRef(({ className, ...props }, ref) =>
2410
2553
  ));
2411
2554
  NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName;
2412
2555
  var NavigationMenuLink = NavigationMenuPrimitive.Link;
2413
- var NavigationMenuViewport = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ jsx(
2556
+ var NavigationMenuViewport = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ jsx(
2414
2557
  NavigationMenuPrimitive.Viewport,
2415
2558
  {
2416
2559
  className: cn(
@@ -2422,7 +2565,7 @@ var NavigationMenuViewport = React39.forwardRef(({ className, ...props }, ref) =
2422
2565
  }
2423
2566
  ) }));
2424
2567
  NavigationMenuViewport.displayName = NavigationMenuPrimitive.Viewport.displayName;
2425
- var NavigationMenuIndicator = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2568
+ var NavigationMenuIndicator = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2426
2569
  NavigationMenuPrimitive.Indicator,
2427
2570
  {
2428
2571
  ref,
@@ -2508,7 +2651,7 @@ function Pagination({
2508
2651
  children: /* @__PURE__ */ jsx(ChevronLeft, { className: "h-4 w-4" })
2509
2652
  }
2510
2653
  ),
2511
- getVisiblePages().map((page, index) => /* @__PURE__ */ jsx(React39__default.Fragment, { children: page === "ellipsis" ? /* @__PURE__ */ jsx("div", { className: "flex h-9 w-9 items-center justify-center", children: /* @__PURE__ */ jsx(MoreHorizontal, { className: "h-4 w-4 text-gray-400" }) }) : /* @__PURE__ */ jsx(
2654
+ getVisiblePages().map((page, index) => /* @__PURE__ */ jsx(React40__default.Fragment, { children: page === "ellipsis" ? /* @__PURE__ */ jsx("div", { className: "flex h-9 w-9 items-center justify-center", children: /* @__PURE__ */ jsx(MoreHorizontal, { className: "h-4 w-4 text-gray-400" }) }) : /* @__PURE__ */ jsx(
2512
2655
  Button,
2513
2656
  {
2514
2657
  variant: currentPage === page ? "default" : "outline",
@@ -2534,7 +2677,7 @@ function Pagination({
2534
2677
  }
2535
2678
  var Popover = PopoverPrimitive.Root;
2536
2679
  var PopoverTrigger = PopoverPrimitive.Trigger;
2537
- var PopoverContent = React39.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx(
2680
+ var PopoverContent = React40.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(PopoverPrimitive.Portal, { children: /* @__PURE__ */ jsx(
2538
2681
  PopoverPrimitive.Content,
2539
2682
  {
2540
2683
  ref,
@@ -2548,7 +2691,7 @@ var PopoverContent = React39.forwardRef(({ className, align = "center", sideOffs
2548
2691
  }
2549
2692
  ) }));
2550
2693
  PopoverContent.displayName = PopoverPrimitive.Content.displayName;
2551
- var Progress = React39.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsx(
2694
+ var Progress = React40.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsx(
2552
2695
  ProgressPrimitive.Root,
2553
2696
  {
2554
2697
  ref,
@@ -2567,7 +2710,7 @@ var Progress = React39.forwardRef(({ className, value, ...props }, ref) => /* @_
2567
2710
  }
2568
2711
  ));
2569
2712
  Progress.displayName = ProgressPrimitive.Root.displayName;
2570
- var RadioGroup4 = React39.forwardRef(({ className, ...props }, ref) => {
2713
+ var RadioGroup4 = React40.forwardRef(({ className, ...props }, ref) => {
2571
2714
  return /* @__PURE__ */ jsx(
2572
2715
  RadioGroupPrimitive.Root,
2573
2716
  {
@@ -2578,7 +2721,7 @@ var RadioGroup4 = React39.forwardRef(({ className, ...props }, ref) => {
2578
2721
  );
2579
2722
  });
2580
2723
  RadioGroup4.displayName = RadioGroupPrimitive.Root.displayName;
2581
- var RadioGroupItem = React39.forwardRef(({ className, ...props }, ref) => {
2724
+ var RadioGroupItem = React40.forwardRef(({ className, ...props }, ref) => {
2582
2725
  return /* @__PURE__ */ jsx(
2583
2726
  RadioGroupPrimitive.Item,
2584
2727
  {
@@ -2622,7 +2765,7 @@ var ResizableHandle = ({
2622
2765
  children: withHandle && /* @__PURE__ */ jsx("div", { className: "z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border", children: /* @__PURE__ */ jsx(GripVertical, { className: "h-2.5 w-2.5" }) })
2623
2766
  }
2624
2767
  );
2625
- var ScrollArea = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2768
+ var ScrollArea = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2626
2769
  ScrollAreaPrimitive.Root,
2627
2770
  {
2628
2771
  ref,
@@ -2636,7 +2779,7 @@ var ScrollArea = React39.forwardRef(({ className, children, ...props }, ref) =>
2636
2779
  }
2637
2780
  ));
2638
2781
  ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
2639
- var ScrollBar = React39.forwardRef(({ className, orientation = "vertical", ...props }, ref) => /* @__PURE__ */ jsx(
2782
+ var ScrollBar = React40.forwardRef(({ className, orientation = "vertical", ...props }, ref) => /* @__PURE__ */ jsx(
2640
2783
  ScrollAreaPrimitive.ScrollAreaScrollbar,
2641
2784
  {
2642
2785
  ref,
@@ -2655,7 +2798,7 @@ ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
2655
2798
  var Select = SelectPrimitive.Root;
2656
2799
  var SelectGroup = SelectPrimitive.Group;
2657
2800
  var SelectValue = SelectPrimitive.Value;
2658
- var SelectTrigger = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2801
+ var SelectTrigger = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2659
2802
  SelectPrimitive.Trigger,
2660
2803
  {
2661
2804
  ref,
@@ -2671,7 +2814,7 @@ var SelectTrigger = React39.forwardRef(({ className, children, ...props }, ref)
2671
2814
  }
2672
2815
  ));
2673
2816
  SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
2674
- var SelectScrollUpButton = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2817
+ var SelectScrollUpButton = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2675
2818
  SelectPrimitive.ScrollUpButton,
2676
2819
  {
2677
2820
  ref,
@@ -2684,7 +2827,7 @@ var SelectScrollUpButton = React39.forwardRef(({ className, ...props }, ref) =>
2684
2827
  }
2685
2828
  ));
2686
2829
  SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
2687
- var SelectScrollDownButton = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2830
+ var SelectScrollDownButton = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2688
2831
  SelectPrimitive.ScrollDownButton,
2689
2832
  {
2690
2833
  ref,
@@ -2697,7 +2840,7 @@ var SelectScrollDownButton = React39.forwardRef(({ className, ...props }, ref) =
2697
2840
  }
2698
2841
  ));
2699
2842
  SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
2700
- var SelectContent = React39.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsx(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsxs(
2843
+ var SelectContent = React40.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ jsx(SelectPrimitive.Portal, { children: /* @__PURE__ */ jsxs(
2701
2844
  SelectPrimitive.Content,
2702
2845
  {
2703
2846
  ref,
@@ -2725,7 +2868,7 @@ var SelectContent = React39.forwardRef(({ className, children, position = "poppe
2725
2868
  }
2726
2869
  ) }));
2727
2870
  SelectContent.displayName = SelectPrimitive.Content.displayName;
2728
- var SelectLabel = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2871
+ var SelectLabel = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2729
2872
  SelectPrimitive.Label,
2730
2873
  {
2731
2874
  ref,
@@ -2734,7 +2877,7 @@ var SelectLabel = React39.forwardRef(({ className, ...props }, ref) => /* @__PUR
2734
2877
  }
2735
2878
  ));
2736
2879
  SelectLabel.displayName = SelectPrimitive.Label.displayName;
2737
- var SelectItem = React39.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2880
+ var SelectItem = React40.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ jsxs(
2738
2881
  SelectPrimitive.Item,
2739
2882
  {
2740
2883
  ref,
@@ -2750,7 +2893,7 @@ var SelectItem = React39.forwardRef(({ className, children, ...props }, ref) =>
2750
2893
  }
2751
2894
  ));
2752
2895
  SelectItem.displayName = SelectPrimitive.Item.displayName;
2753
- var SelectSeparator = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2896
+ var SelectSeparator = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2754
2897
  SelectPrimitive.Separator,
2755
2898
  {
2756
2899
  ref,
@@ -2770,7 +2913,7 @@ var separatorVariants = cva("shrink-0", {
2770
2913
  variant: "default"
2771
2914
  }
2772
2915
  });
2773
- var Separator5 = React39.forwardRef(
2916
+ var Separator5 = React40.forwardRef(
2774
2917
  ({ className, orientation = "horizontal", variant, decorative = true, ...props }, ref) => /* @__PURE__ */ jsx(
2775
2918
  SeparatorPrimitive.Root,
2776
2919
  {
@@ -2791,7 +2934,7 @@ var Sheet = DialogPrimitive.Root;
2791
2934
  var SheetTrigger = DialogPrimitive.Trigger;
2792
2935
  var SheetClose = DialogPrimitive.Close;
2793
2936
  var SheetPortal = DialogPrimitive.Portal;
2794
- var SheetOverlay = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2937
+ var SheetOverlay = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2795
2938
  DialogPrimitive.Overlay,
2796
2939
  {
2797
2940
  className: cn(
@@ -2819,27 +2962,15 @@ var sheetVariants = cva(
2819
2962
  }
2820
2963
  }
2821
2964
  );
2822
- var SheetContent = React39.forwardRef(({ side = "right", className, children, ...props }, ref) => /* @__PURE__ */ jsxs(SheetPortal, { children: [
2965
+ var SheetContent = React40.forwardRef(({ side = "right", className, children, ...props }, ref) => /* @__PURE__ */ jsxs(SheetPortal, { children: [
2823
2966
  /* @__PURE__ */ jsx(SheetOverlay, {}),
2824
- /* @__PURE__ */ jsxs(
2967
+ /* @__PURE__ */ jsx(
2825
2968
  DialogPrimitive.Content,
2826
2969
  {
2827
2970
  ref,
2828
2971
  className: cn(sheetVariants({ side }), className),
2829
2972
  ...props,
2830
- children: [
2831
- children,
2832
- /* @__PURE__ */ jsxs(
2833
- DialogPrimitive.Close,
2834
- {
2835
- className: "absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-secondary",
2836
- children: [
2837
- /* @__PURE__ */ jsx(X, { className: "h-4 w-4" }),
2838
- /* @__PURE__ */ jsx("span", { className: "sr-only", children: "Close" })
2839
- ]
2840
- }
2841
- )
2842
- ]
2973
+ children
2843
2974
  }
2844
2975
  )
2845
2976
  ] }));
@@ -2872,7 +3003,7 @@ var SheetFooter = ({
2872
3003
  }
2873
3004
  );
2874
3005
  SheetFooter.displayName = "SheetFooter";
2875
- var SheetTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3006
+ var SheetTitle = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2876
3007
  DialogPrimitive.Title,
2877
3008
  {
2878
3009
  ref,
@@ -2881,7 +3012,7 @@ var SheetTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE
2881
3012
  }
2882
3013
  ));
2883
3014
  SheetTitle.displayName = DialogPrimitive.Title.displayName;
2884
- var SheetDescription = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3015
+ var SheetDescription = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
2885
3016
  DialogPrimitive.Description,
2886
3017
  {
2887
3018
  ref,
@@ -2902,11 +3033,11 @@ function Skeleton({
2902
3033
  }
2903
3034
  );
2904
3035
  }
2905
- var TooltipProvider = React39.forwardRef(({ delayDuration = 0, ...props }, _ref) => /* @__PURE__ */ jsx(TooltipPrimitive.Provider, { delayDuration, ...props }));
3036
+ var TooltipProvider = React40.forwardRef(({ delayDuration = 0, ...props }, _ref) => /* @__PURE__ */ jsx(TooltipPrimitive.Provider, { delayDuration, ...props }));
2906
3037
  TooltipProvider.displayName = "TooltipProvider";
2907
- var TooltipContext = React39.createContext(null);
3038
+ var TooltipContext = React40.createContext(null);
2908
3039
  var Tooltip2 = ({ children, open, onOpenChange, ...props }) => {
2909
- const [clickedOpen, setClickedOpen] = React39.useState(false);
3040
+ const [clickedOpen, setClickedOpen] = React40.useState(false);
2910
3041
  const isControlled = open !== void 0;
2911
3042
  const isOpen = isControlled ? open : clickedOpen || void 0;
2912
3043
  const handleOpenChange = (newOpen) => {
@@ -2915,7 +3046,7 @@ var Tooltip2 = ({ children, open, onOpenChange, ...props }) => {
2915
3046
  }
2916
3047
  onOpenChange?.(newOpen);
2917
3048
  };
2918
- React39.useEffect(() => {
3049
+ React40.useEffect(() => {
2919
3050
  if (!clickedOpen) return;
2920
3051
  const handleClickOutside = () => {
2921
3052
  setClickedOpen(false);
@@ -2938,8 +3069,8 @@ var Tooltip2 = ({ children, open, onOpenChange, ...props }) => {
2938
3069
  }
2939
3070
  ) });
2940
3071
  };
2941
- var TooltipTrigger = React39.forwardRef(({ onClick, ...props }, ref) => {
2942
- const context = React39.useContext(TooltipContext);
3072
+ var TooltipTrigger = React40.forwardRef(({ onClick, ...props }, ref) => {
3073
+ const context = React40.useContext(TooltipContext);
2943
3074
  const handleClick = (e) => {
2944
3075
  if (context) {
2945
3076
  e.stopPropagation();
@@ -2950,7 +3081,7 @@ var TooltipTrigger = React39.forwardRef(({ onClick, ...props }, ref) => {
2950
3081
  return /* @__PURE__ */ jsx(TooltipPrimitive.Trigger, { ref, onClick: handleClick, ...props });
2951
3082
  });
2952
3083
  TooltipTrigger.displayName = "TooltipTrigger";
2953
- var TooltipContent = React39.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(
3084
+ var TooltipContent = React40.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ jsx(
2954
3085
  TooltipPrimitive.Content,
2955
3086
  {
2956
3087
  ref,
@@ -2969,15 +3100,15 @@ var SIDEBAR_WIDTH = "16rem";
2969
3100
  var SIDEBAR_WIDTH_MOBILE = "18rem";
2970
3101
  var SIDEBAR_WIDTH_ICON = "3rem";
2971
3102
  var SIDEBAR_KEYBOARD_SHORTCUT = "b";
2972
- var SidebarContext = React39.createContext(null);
3103
+ var SidebarContext = React40.createContext(null);
2973
3104
  function useSidebar() {
2974
- const context = React39.useContext(SidebarContext);
3105
+ const context = React40.useContext(SidebarContext);
2975
3106
  if (!context) {
2976
3107
  throw new Error("useSidebar must be used within a SidebarProvider.");
2977
3108
  }
2978
3109
  return context;
2979
3110
  }
2980
- var SidebarProvider = React39.forwardRef(
3111
+ var SidebarProvider = React40.forwardRef(
2981
3112
  ({
2982
3113
  defaultOpen = true,
2983
3114
  open: openProp,
@@ -2988,10 +3119,10 @@ var SidebarProvider = React39.forwardRef(
2988
3119
  ...props
2989
3120
  }, ref) => {
2990
3121
  const isMobile = useIsMobile();
2991
- const [openMobile, setOpenMobile] = React39.useState(false);
2992
- const [_open, _setOpen] = React39.useState(defaultOpen);
3122
+ const [openMobile, setOpenMobile] = React40.useState(false);
3123
+ const [_open, _setOpen] = React40.useState(defaultOpen);
2993
3124
  const open = openProp ?? _open;
2994
- const setOpen = React39.useCallback(
3125
+ const setOpen = React40.useCallback(
2995
3126
  (value) => {
2996
3127
  if (setOpenProp) {
2997
3128
  return setOpenProp?.(
@@ -3003,10 +3134,10 @@ var SidebarProvider = React39.forwardRef(
3003
3134
  },
3004
3135
  [setOpenProp, open]
3005
3136
  );
3006
- const toggleSidebar = React39.useCallback(() => {
3137
+ const toggleSidebar = React40.useCallback(() => {
3007
3138
  return isMobile ? setOpenMobile((open2) => !open2) : setOpen((open2) => !open2);
3008
3139
  }, [isMobile, setOpen, setOpenMobile]);
3009
- React39.useEffect(() => {
3140
+ React40.useEffect(() => {
3010
3141
  const handleKeyDown = (event) => {
3011
3142
  if (event.key === SIDEBAR_KEYBOARD_SHORTCUT && (event.metaKey || event.ctrlKey)) {
3012
3143
  event.preventDefault();
@@ -3017,7 +3148,7 @@ var SidebarProvider = React39.forwardRef(
3017
3148
  return () => window.removeEventListener("keydown", handleKeyDown);
3018
3149
  }, [toggleSidebar]);
3019
3150
  const state = open ? "expanded" : "collapsed";
3020
- const contextValue = React39.useMemo(
3151
+ const contextValue = React40.useMemo(
3021
3152
  () => ({
3022
3153
  state,
3023
3154
  open,
@@ -3049,7 +3180,7 @@ var SidebarProvider = React39.forwardRef(
3049
3180
  }
3050
3181
  );
3051
3182
  SidebarProvider.displayName = "SidebarProvider";
3052
- var Sidebar = React39.forwardRef(
3183
+ var Sidebar = React40.forwardRef(
3053
3184
  ({
3054
3185
  side = "left",
3055
3186
  variant = "sidebar",
@@ -3136,7 +3267,7 @@ var Sidebar = React39.forwardRef(
3136
3267
  }
3137
3268
  );
3138
3269
  Sidebar.displayName = "Sidebar";
3139
- var SidebarTrigger = React39.forwardRef(({ className, onClick, ...props }, ref) => {
3270
+ var SidebarTrigger = React40.forwardRef(({ className, onClick, ...props }, ref) => {
3140
3271
  const { toggleSidebar } = useSidebar();
3141
3272
  return /* @__PURE__ */ jsxs(
3142
3273
  Button,
@@ -3159,7 +3290,7 @@ var SidebarTrigger = React39.forwardRef(({ className, onClick, ...props }, ref)
3159
3290
  );
3160
3291
  });
3161
3292
  SidebarTrigger.displayName = "SidebarTrigger";
3162
- var SidebarRail = React39.forwardRef(({ className, ...props }, ref) => {
3293
+ var SidebarRail = React40.forwardRef(({ className, ...props }, ref) => {
3163
3294
  const { toggleSidebar } = useSidebar();
3164
3295
  return /* @__PURE__ */ jsx(
3165
3296
  "button",
@@ -3184,7 +3315,7 @@ var SidebarRail = React39.forwardRef(({ className, ...props }, ref) => {
3184
3315
  );
3185
3316
  });
3186
3317
  SidebarRail.displayName = "SidebarRail";
3187
- var SidebarInset = React39.forwardRef(({ className, ...props }, ref) => {
3318
+ var SidebarInset = React40.forwardRef(({ className, ...props }, ref) => {
3188
3319
  return /* @__PURE__ */ jsx(
3189
3320
  "main",
3190
3321
  {
@@ -3199,7 +3330,7 @@ var SidebarInset = React39.forwardRef(({ className, ...props }, ref) => {
3199
3330
  );
3200
3331
  });
3201
3332
  SidebarInset.displayName = "SidebarInset";
3202
- var SidebarInput = React39.forwardRef(({ className, ...props }, ref) => {
3333
+ var SidebarInput = React40.forwardRef(({ className, ...props }, ref) => {
3203
3334
  return /* @__PURE__ */ jsx(
3204
3335
  Input,
3205
3336
  {
@@ -3214,7 +3345,7 @@ var SidebarInput = React39.forwardRef(({ className, ...props }, ref) => {
3214
3345
  );
3215
3346
  });
3216
3347
  SidebarInput.displayName = "SidebarInput";
3217
- var SidebarHeader = React39.forwardRef(({ className, ...props }, ref) => {
3348
+ var SidebarHeader = React40.forwardRef(({ className, ...props }, ref) => {
3218
3349
  return /* @__PURE__ */ jsx(
3219
3350
  "div",
3220
3351
  {
@@ -3226,7 +3357,7 @@ var SidebarHeader = React39.forwardRef(({ className, ...props }, ref) => {
3226
3357
  );
3227
3358
  });
3228
3359
  SidebarHeader.displayName = "SidebarHeader";
3229
- var SidebarFooter = React39.forwardRef(({ className, ...props }, ref) => {
3360
+ var SidebarFooter = React40.forwardRef(({ className, ...props }, ref) => {
3230
3361
  return /* @__PURE__ */ jsx(
3231
3362
  "div",
3232
3363
  {
@@ -3238,7 +3369,7 @@ var SidebarFooter = React39.forwardRef(({ className, ...props }, ref) => {
3238
3369
  );
3239
3370
  });
3240
3371
  SidebarFooter.displayName = "SidebarFooter";
3241
- var SidebarSeparator = React39.forwardRef(({ className, ...props }, ref) => {
3372
+ var SidebarSeparator = React40.forwardRef(({ className, ...props }, ref) => {
3242
3373
  return /* @__PURE__ */ jsx(
3243
3374
  Separator5,
3244
3375
  {
@@ -3250,7 +3381,7 @@ var SidebarSeparator = React39.forwardRef(({ className, ...props }, ref) => {
3250
3381
  );
3251
3382
  });
3252
3383
  SidebarSeparator.displayName = "SidebarSeparator";
3253
- var SidebarContent = React39.forwardRef(({ className, ...props }, ref) => {
3384
+ var SidebarContent = React40.forwardRef(({ className, ...props }, ref) => {
3254
3385
  return /* @__PURE__ */ jsx(
3255
3386
  "div",
3256
3387
  {
@@ -3265,7 +3396,7 @@ var SidebarContent = React39.forwardRef(({ className, ...props }, ref) => {
3265
3396
  );
3266
3397
  });
3267
3398
  SidebarContent.displayName = "SidebarContent";
3268
- var SidebarGroup = React39.forwardRef(({ className, ...props }, ref) => {
3399
+ var SidebarGroup = React40.forwardRef(({ className, ...props }, ref) => {
3269
3400
  return /* @__PURE__ */ jsx(
3270
3401
  "div",
3271
3402
  {
@@ -3277,7 +3408,7 @@ var SidebarGroup = React39.forwardRef(({ className, ...props }, ref) => {
3277
3408
  );
3278
3409
  });
3279
3410
  SidebarGroup.displayName = "SidebarGroup";
3280
- var SidebarGroupLabel = React39.forwardRef(({ className, asChild = false, ...props }, ref) => {
3411
+ var SidebarGroupLabel = React40.forwardRef(({ className, asChild = false, ...props }, ref) => {
3281
3412
  const Comp = asChild ? Slot : "div";
3282
3413
  return /* @__PURE__ */ jsx(
3283
3414
  Comp,
@@ -3294,7 +3425,7 @@ var SidebarGroupLabel = React39.forwardRef(({ className, asChild = false, ...pro
3294
3425
  );
3295
3426
  });
3296
3427
  SidebarGroupLabel.displayName = "SidebarGroupLabel";
3297
- var SidebarGroupAction = React39.forwardRef(({ className, asChild = false, ...props }, ref) => {
3428
+ var SidebarGroupAction = React40.forwardRef(({ className, asChild = false, ...props }, ref) => {
3298
3429
  const Comp = asChild ? Slot : "button";
3299
3430
  return /* @__PURE__ */ jsx(
3300
3431
  Comp,
@@ -3313,7 +3444,7 @@ var SidebarGroupAction = React39.forwardRef(({ className, asChild = false, ...pr
3313
3444
  );
3314
3445
  });
3315
3446
  SidebarGroupAction.displayName = "SidebarGroupAction";
3316
- var SidebarGroupContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3447
+ var SidebarGroupContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3317
3448
  "div",
3318
3449
  {
3319
3450
  ref,
@@ -3323,7 +3454,7 @@ var SidebarGroupContent = React39.forwardRef(({ className, ...props }, ref) => /
3323
3454
  }
3324
3455
  ));
3325
3456
  SidebarGroupContent.displayName = "SidebarGroupContent";
3326
- var SidebarMenu = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3457
+ var SidebarMenu = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3327
3458
  "ul",
3328
3459
  {
3329
3460
  ref,
@@ -3333,7 +3464,7 @@ var SidebarMenu = React39.forwardRef(({ className, ...props }, ref) => /* @__PUR
3333
3464
  }
3334
3465
  ));
3335
3466
  SidebarMenu.displayName = "SidebarMenu";
3336
- var SidebarMenuItem = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3467
+ var SidebarMenuItem = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3337
3468
  "li",
3338
3469
  {
3339
3470
  ref,
@@ -3363,7 +3494,7 @@ var sidebarMenuButtonVariants = cva(
3363
3494
  }
3364
3495
  }
3365
3496
  );
3366
- var SidebarMenuButton = React39.forwardRef(
3497
+ var SidebarMenuButton = React40.forwardRef(
3367
3498
  ({
3368
3499
  asChild = false,
3369
3500
  isActive = false,
@@ -3409,7 +3540,7 @@ var SidebarMenuButton = React39.forwardRef(
3409
3540
  }
3410
3541
  );
3411
3542
  SidebarMenuButton.displayName = "SidebarMenuButton";
3412
- var SidebarMenuAction = React39.forwardRef(({ className, asChild = false, showOnHover = false, ...props }, ref) => {
3543
+ var SidebarMenuAction = React40.forwardRef(({ className, asChild = false, showOnHover = false, ...props }, ref) => {
3413
3544
  const Comp = asChild ? Slot : "button";
3414
3545
  return /* @__PURE__ */ jsx(
3415
3546
  Comp,
@@ -3432,7 +3563,7 @@ var SidebarMenuAction = React39.forwardRef(({ className, asChild = false, showOn
3432
3563
  );
3433
3564
  });
3434
3565
  SidebarMenuAction.displayName = "SidebarMenuAction";
3435
- var SidebarMenuBadge = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3566
+ var SidebarMenuBadge = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3436
3567
  "div",
3437
3568
  {
3438
3569
  ref,
@@ -3450,8 +3581,8 @@ var SidebarMenuBadge = React39.forwardRef(({ className, ...props }, ref) => /* @
3450
3581
  }
3451
3582
  ));
3452
3583
  SidebarMenuBadge.displayName = "SidebarMenuBadge";
3453
- var SidebarMenuSkeleton = React39.forwardRef(({ className, showIcon = false, ...props }, ref) => {
3454
- const width = React39.useMemo(() => {
3584
+ var SidebarMenuSkeleton = React40.forwardRef(({ className, showIcon = false, ...props }, ref) => {
3585
+ const width = React40.useMemo(() => {
3455
3586
  return `${Math.floor(Math.random() * 40) + 50}%`;
3456
3587
  }, []);
3457
3588
  return /* @__PURE__ */ jsxs(
@@ -3484,7 +3615,7 @@ var SidebarMenuSkeleton = React39.forwardRef(({ className, showIcon = false, ...
3484
3615
  );
3485
3616
  });
3486
3617
  SidebarMenuSkeleton.displayName = "SidebarMenuSkeleton";
3487
- var SidebarMenuSub = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3618
+ var SidebarMenuSub = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3488
3619
  "ul",
3489
3620
  {
3490
3621
  ref,
@@ -3498,9 +3629,9 @@ var SidebarMenuSub = React39.forwardRef(({ className, ...props }, ref) => /* @__
3498
3629
  }
3499
3630
  ));
3500
3631
  SidebarMenuSub.displayName = "SidebarMenuSub";
3501
- var SidebarMenuSubItem = React39.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsx("li", { ref, ...props }));
3632
+ var SidebarMenuSubItem = React40.forwardRef(({ ...props }, ref) => /* @__PURE__ */ jsx("li", { ref, ...props }));
3502
3633
  SidebarMenuSubItem.displayName = "SidebarMenuSubItem";
3503
- var SidebarMenuSubButton = React39.forwardRef(({ asChild = false, size = "md", isActive, className, ...props }, ref) => {
3634
+ var SidebarMenuSubButton = React40.forwardRef(({ asChild = false, size = "md", isActive, className, ...props }, ref) => {
3504
3635
  const Comp = asChild ? Slot : "a";
3505
3636
  return /* @__PURE__ */ jsx(
3506
3637
  Comp,
@@ -3539,7 +3670,7 @@ function SimpleTabs({ tabs, activeTab, onTabChange }) {
3539
3670
  );
3540
3671
  }) });
3541
3672
  }
3542
- var Slider = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs(
3673
+ var Slider = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsxs(
3543
3674
  SliderPrimitive.Root,
3544
3675
  {
3545
3676
  ref,
@@ -3630,7 +3761,7 @@ function StatusBadge({
3630
3761
  }
3631
3762
  );
3632
3763
  }
3633
- var Switch = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3764
+ var Switch = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3634
3765
  SwitchPrimitives.Root,
3635
3766
  {
3636
3767
  className: cn(
@@ -3650,7 +3781,7 @@ var Switch = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ *
3650
3781
  }
3651
3782
  ));
3652
3783
  Switch.displayName = SwitchPrimitives.Root.displayName;
3653
- var Table = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ jsx(
3784
+ var Table = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ jsx(
3654
3785
  "table",
3655
3786
  {
3656
3787
  ref,
@@ -3659,9 +3790,9 @@ var Table = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
3659
3790
  }
3660
3791
  ) }));
3661
3792
  Table.displayName = "Table";
3662
- var TableHeader = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("thead", { ref, className: cn("[&_tr]:border-b", className), ...props }));
3793
+ var TableHeader = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("thead", { ref, className: cn("[&_tr]:border-b", className), ...props }));
3663
3794
  TableHeader.displayName = "TableHeader";
3664
- var TableBody = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3795
+ var TableBody = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3665
3796
  "tbody",
3666
3797
  {
3667
3798
  ref,
@@ -3670,7 +3801,7 @@ var TableBody = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE_
3670
3801
  }
3671
3802
  ));
3672
3803
  TableBody.displayName = "TableBody";
3673
- var TableFooter = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3804
+ var TableFooter = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3674
3805
  "tfoot",
3675
3806
  {
3676
3807
  ref,
@@ -3682,7 +3813,7 @@ var TableFooter = React39.forwardRef(({ className, ...props }, ref) => /* @__PUR
3682
3813
  }
3683
3814
  ));
3684
3815
  TableFooter.displayName = "TableFooter";
3685
- var TableRow = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3816
+ var TableRow = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3686
3817
  "tr",
3687
3818
  {
3688
3819
  ref,
@@ -3694,7 +3825,7 @@ var TableRow = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__
3694
3825
  }
3695
3826
  ));
3696
3827
  TableRow.displayName = "TableRow";
3697
- var TableHead = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3828
+ var TableHead = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3698
3829
  "th",
3699
3830
  {
3700
3831
  ref,
@@ -3706,7 +3837,7 @@ var TableHead = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE_
3706
3837
  }
3707
3838
  ));
3708
3839
  TableHead.displayName = "TableHead";
3709
- var TableCell = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3840
+ var TableCell = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3710
3841
  "td",
3711
3842
  {
3712
3843
  ref,
@@ -3715,7 +3846,7 @@ var TableCell = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE_
3715
3846
  }
3716
3847
  ));
3717
3848
  TableCell.displayName = "TableCell";
3718
- var TableCaption = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3849
+ var TableCaption = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3719
3850
  "caption",
3720
3851
  {
3721
3852
  ref,
@@ -3725,7 +3856,7 @@ var TableCaption = React39.forwardRef(({ className, ...props }, ref) => /* @__PU
3725
3856
  ));
3726
3857
  TableCaption.displayName = "TableCaption";
3727
3858
  var Tabs = TabsPrimitive.Root;
3728
- var TabsList = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: "overflow-x-auto pb-1 hide-scrollbar", children: /* @__PURE__ */ jsx(
3859
+ var TabsList = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { className: "overflow-x-auto pb-1 hide-scrollbar", children: /* @__PURE__ */ jsx(
3729
3860
  TabsPrimitive.List,
3730
3861
  {
3731
3862
  ref,
@@ -3737,7 +3868,7 @@ var TabsList = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__
3737
3868
  }
3738
3869
  ) }));
3739
3870
  TabsList.displayName = TabsPrimitive.List.displayName;
3740
- var TabsTrigger = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3871
+ var TabsTrigger = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3741
3872
  TabsPrimitive.Trigger,
3742
3873
  {
3743
3874
  ref,
@@ -3749,7 +3880,7 @@ var TabsTrigger = React39.forwardRef(({ className, ...props }, ref) => /* @__PUR
3749
3880
  }
3750
3881
  ));
3751
3882
  TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
3752
- var TabsContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3883
+ var TabsContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3753
3884
  TabsPrimitive.Content,
3754
3885
  {
3755
3886
  ref,
@@ -3761,7 +3892,7 @@ var TabsContent = React39.forwardRef(({ className, ...props }, ref) => /* @__PUR
3761
3892
  }
3762
3893
  ));
3763
3894
  TabsContent.displayName = TabsPrimitive.Content.displayName;
3764
- var Textarea = React39.forwardRef(
3895
+ var Textarea = React40.forwardRef(
3765
3896
  ({ className, ...props }, ref) => {
3766
3897
  return /* @__PURE__ */ jsx(
3767
3898
  "textarea",
@@ -3778,12 +3909,12 @@ var Textarea = React39.forwardRef(
3778
3909
  );
3779
3910
  Textarea.displayName = "Textarea";
3780
3911
  var ToastProvider = ToastPrimitives.Provider;
3781
- var ToastViewport = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3912
+ var ToastViewport = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3782
3913
  ToastPrimitives.Viewport,
3783
3914
  {
3784
3915
  ref,
3785
3916
  className: cn(
3786
- "fixed top-0 z-[9999] flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col md:max-w-[420px]",
3917
+ "fixed top-0 z-[9999] flex max-h-screen w-full flex-col-reverse px-4 pt-[max(1rem,env(safe-area-inset-top))] pb-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col sm:pt-4 sm:pb-[max(1rem,env(safe-area-inset-bottom))] sm:pr-[max(1rem,env(safe-area-inset-right))] md:max-w-[420px]",
3787
3918
  className
3788
3919
  ),
3789
3920
  ...props
@@ -3791,12 +3922,12 @@ var ToastViewport = React39.forwardRef(({ className, ...props }, ref) => /* @__P
3791
3922
  ));
3792
3923
  ToastViewport.displayName = ToastPrimitives.Viewport.displayName;
3793
3924
  var toastVariants = cva(
3794
- "group pointer-events-auto relative flex w-full items-center justify-between space-x-4 overflow-hidden rounded-md border p-6 pr-8 shadow-lg transition-all data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",
3925
+ "group pointer-events-auto relative flex w-full items-center justify-between space-x-4 overflow-hidden rounded-2xl border p-4 pr-8 shadow-glass backdrop-blur-glass transition-all duration-300 data-[swipe=cancel]:translate-x-0 data-[swipe=end]:translate-x-[var(--radix-toast-swipe-end-x)] data-[swipe=move]:translate-x-[var(--radix-toast-swipe-move-x)] data-[swipe=move]:transition-none data-[state=open]:animate-in data-[state=closed]:animate-out data-[swipe=end]:animate-out data-[state=closed]:fade-out-80 data-[state=closed]:slide-out-to-right-full data-[state=open]:slide-in-from-top-full data-[state=open]:sm:slide-in-from-bottom-full",
3795
3926
  {
3796
3927
  variants: {
3797
3928
  variant: {
3798
- default: "border bg-background text-foreground",
3799
- destructive: "destructive group border-destructive bg-destructive text-destructive-foreground"
3929
+ default: "bg-glass border-glass-border text-glass-foreground",
3930
+ destructive: "destructive group bg-destructive/90 border-destructive/50 text-destructive-foreground backdrop-blur-glass-strong"
3800
3931
  }
3801
3932
  },
3802
3933
  defaultVariants: {
@@ -3804,7 +3935,7 @@ var toastVariants = cva(
3804
3935
  }
3805
3936
  }
3806
3937
  );
3807
- var Toast = React39.forwardRef(({ className, variant, ...props }, ref) => {
3938
+ var Toast = React40.forwardRef(({ className, variant, ...props }, ref) => {
3808
3939
  return /* @__PURE__ */ jsx(
3809
3940
  ToastPrimitives.Root,
3810
3941
  {
@@ -3815,24 +3946,24 @@ var Toast = React39.forwardRef(({ className, variant, ...props }, ref) => {
3815
3946
  );
3816
3947
  });
3817
3948
  Toast.displayName = ToastPrimitives.Root.displayName;
3818
- var ToastAction = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3949
+ var ToastAction = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3819
3950
  ToastPrimitives.Action,
3820
3951
  {
3821
3952
  ref,
3822
3953
  className: cn(
3823
- "inline-flex h-8 shrink-0 items-center justify-center rounded-md border bg-transparent px-3 text-base font-medium ring-offset-background transition-colors hover:bg-secondary focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 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",
3954
+ "inline-flex h-8 shrink-0 items-center justify-center rounded-lg border border-glass-border bg-glass-subtle px-3 text-sm font-medium text-glass-foreground transition-all duration-200 hover:bg-glass-elevated focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 group-[.destructive]:border-destructive-foreground/30 group-[.destructive]:text-destructive-foreground group-[.destructive]:hover:bg-destructive-foreground/10 group-[.destructive]:focus:ring-destructive",
3824
3955
  className
3825
3956
  ),
3826
3957
  ...props
3827
3958
  }
3828
3959
  ));
3829
3960
  ToastAction.displayName = ToastPrimitives.Action.displayName;
3830
- var ToastClose = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3961
+ var ToastClose = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3831
3962
  ToastPrimitives.Close,
3832
3963
  {
3833
3964
  ref,
3834
3965
  className: cn(
3835
- "absolute right-2 top-2 rounded-md p-1 text-foreground/50 opacity-0 transition-opacity hover:text-foreground focus:opacity-100 focus:outline-none focus:ring-2 group-hover:opacity-100 group-[.destructive]:text-red-300 group-[.destructive]:hover:text-red-50 group-[.destructive]:focus:ring-red-400 group-[.destructive]:focus:ring-offset-red-600",
3966
+ "absolute right-2 top-2 rounded-lg p-1 text-glass-foreground-muted opacity-0 transition-all duration-200 hover:text-glass-foreground focus:opacity-100 focus:outline-none focus:ring-2 group-hover:opacity-100 group-[.destructive]:text-destructive-foreground/70 group-[.destructive]:hover:text-destructive-foreground group-[.destructive]:focus:ring-destructive",
3836
3967
  className
3837
3968
  ),
3838
3969
  "toast-close": "",
@@ -3841,20 +3972,20 @@ var ToastClose = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE
3841
3972
  }
3842
3973
  ));
3843
3974
  ToastClose.displayName = ToastPrimitives.Close.displayName;
3844
- var ToastTitle = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3975
+ var ToastTitle = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3845
3976
  ToastPrimitives.Title,
3846
3977
  {
3847
3978
  ref,
3848
- className: cn("text-base font-semibold", className),
3979
+ className: cn("text-sm font-semibold", className),
3849
3980
  ...props
3850
3981
  }
3851
3982
  ));
3852
3983
  ToastTitle.displayName = ToastPrimitives.Title.displayName;
3853
- var ToastDescription = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3984
+ var ToastDescription = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
3854
3985
  ToastPrimitives.Description,
3855
3986
  {
3856
3987
  ref,
3857
- className: cn("text-base opacity-90", className),
3988
+ className: cn("text-sm text-glass-foreground-muted group-[.destructive]:text-destructive-foreground/90", className),
3858
3989
  ...props
3859
3990
  }
3860
3991
  ));
@@ -3895,7 +4026,7 @@ var toggleVariants = cva(
3895
4026
  }
3896
4027
  }
3897
4028
  );
3898
- var Toggle = React39.forwardRef(({ className, variant, size, ...props }, ref) => /* @__PURE__ */ jsx(
4029
+ var Toggle = React40.forwardRef(({ className, variant, size, ...props }, ref) => /* @__PURE__ */ jsx(
3899
4030
  TogglePrimitive.Root,
3900
4031
  {
3901
4032
  ref,
@@ -3904,11 +4035,11 @@ var Toggle = React39.forwardRef(({ className, variant, size, ...props }, ref) =>
3904
4035
  }
3905
4036
  ));
3906
4037
  Toggle.displayName = TogglePrimitive.Root.displayName;
3907
- var ToggleGroupContext = React39.createContext({
4038
+ var ToggleGroupContext = React40.createContext({
3908
4039
  size: "default",
3909
4040
  variant: "default"
3910
4041
  });
3911
- var ToggleGroup = React39.forwardRef(({ className, variant, size, children, ...props }, ref) => /* @__PURE__ */ jsx(
4042
+ var ToggleGroup = React40.forwardRef(({ className, variant, size, children, ...props }, ref) => /* @__PURE__ */ jsx(
3912
4043
  ToggleGroupPrimitive.Root,
3913
4044
  {
3914
4045
  ref,
@@ -3918,8 +4049,8 @@ var ToggleGroup = React39.forwardRef(({ className, variant, size, children, ...p
3918
4049
  }
3919
4050
  ));
3920
4051
  ToggleGroup.displayName = ToggleGroupPrimitive.Root.displayName;
3921
- var ToggleGroupItem = React39.forwardRef(({ className, children, variant, size, ...props }, ref) => {
3922
- const context = React39.useContext(ToggleGroupContext);
4052
+ var ToggleGroupItem = React40.forwardRef(({ className, children, variant, size, ...props }, ref) => {
4053
+ const context = React40.useContext(ToggleGroupContext);
3923
4054
  return /* @__PURE__ */ jsx(
3924
4055
  ToggleGroupPrimitive.Item,
3925
4056
  {
@@ -3938,6 +4069,6 @@ var ToggleGroupItem = React39.forwardRef(({ className, children, variant, size,
3938
4069
  });
3939
4070
  ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
3940
4071
 
3941
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnimatedBackground, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GlassCard, GlassCardContent, GlassCardDescription, GlassCardFooter, GlassCardHeader, GlassCardTitle, GlassHeader, GlassOverlay, GlassTabs, GradientOrb, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label3 as Label, Logo, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup4 as RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator5 as Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleTabs, Skeleton, Slider, StatusBadge, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, glassCardVariants, glassHeaderVariants, glassOverlayVariants, glassTabVariants, glassTabsContainerVariants, inputVariants, navigationMenuTriggerStyle, separatorVariants, statusBadgeVariants, statusLabels, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
4072
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AnimatedBackground, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Banner, BannerActions, BannerDescription, BannerTitle, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GlassCard, GlassCardContent, GlassCardDescription, GlassCardFooter, GlassCardHeader, GlassCardTitle, GlassHeader, GlassOverlay, GlassTabs, GradientOrb, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label3 as Label, Logo, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup4 as RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator5 as Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleTabs, Skeleton, Slider, StatusBadge, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, bannerVariants, buttonVariants, cn, glassCardVariants, glassHeaderVariants, glassOverlayVariants, glassTabVariants, glassTabsContainerVariants, inputVariants, navigationMenuTriggerStyle, separatorVariants, statusBadgeVariants, statusLabels, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
3942
4073
  //# sourceMappingURL=index.js.map
3943
4074
  //# sourceMappingURL=index.js.map