@webstacks/ui 0.3.1 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -54,6 +54,7 @@ __export(index_exports, {
54
54
  AvatarFallback: () => AvatarFallback,
55
55
  AvatarImage: () => AvatarImage,
56
56
  Badge: () => Badge,
57
+ BaseStyles: () => BaseStyles,
57
58
  Box: () => Box,
58
59
  Breadcrumb: () => Breadcrumb,
59
60
  BreadcrumbEllipsis: () => BreadcrumbEllipsis,
@@ -207,6 +208,7 @@ __export(index_exports, {
207
208
  ResizablePanelGroup: () => ResizablePanelGroup,
208
209
  ScrollArea: () => ScrollArea,
209
210
  ScrollBar: () => ScrollBar,
211
+ Section: () => Section,
210
212
  Select: () => Select,
211
213
  SelectContent: () => SelectContent,
212
214
  SelectGroup: () => SelectGroup,
@@ -293,6 +295,7 @@ __export(index_exports, {
293
295
  gridVariants: () => gridVariants,
294
296
  headingVariants: () => headingVariants,
295
297
  navigationMenuTriggerStyle: () => navigationMenuTriggerStyle,
298
+ sectionVariants: () => sectionVariants,
296
299
  stackVariants: () => stackVariants,
297
300
  textVariants: () => textVariants,
298
301
  toast: () => toast,
@@ -304,6 +307,39 @@ __export(index_exports, {
304
307
  });
305
308
  module.exports = __toCommonJS(index_exports);
306
309
 
310
+ // src/components/base-styles.tsx
311
+ var React = __toESM(require("react"), 1);
312
+ var import_jsx_runtime = require("react/jsx-runtime");
313
+ function BaseStyles({ children, colorMode = "light" }) {
314
+ const [resolvedMode, setResolvedMode] = React.useState(
315
+ colorMode === "auto" ? "light" : colorMode
316
+ );
317
+ React.useEffect(() => {
318
+ if (colorMode !== "auto") {
319
+ setResolvedMode(colorMode);
320
+ return;
321
+ }
322
+ const mq = window.matchMedia("(prefers-color-scheme: dark)");
323
+ setResolvedMode(mq.matches ? "dark" : "light");
324
+ const handler = (e) => {
325
+ setResolvedMode(e.matches ? "dark" : "light");
326
+ };
327
+ mq.addEventListener("change", handler);
328
+ return () => mq.removeEventListener("change", handler);
329
+ }, [colorMode]);
330
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
331
+ "div",
332
+ {
333
+ className: resolvedMode === "dark" ? "dark" : "",
334
+ "data-color-mode": colorMode,
335
+ "data-light-theme": "light",
336
+ "data-dark-theme": "dark",
337
+ style: { colorScheme: resolvedMode },
338
+ children
339
+ }
340
+ );
341
+ }
342
+
307
343
  // src/lib/utils.ts
308
344
  var import_clsx = require("clsx");
309
345
  var import_tailwind_merge = require("tailwind-merge");
@@ -312,11 +348,11 @@ function cn(...inputs) {
312
348
  }
313
349
 
314
350
  // src/hooks/use-mobile.tsx
315
- var React = __toESM(require("react"), 1);
351
+ var React2 = __toESM(require("react"), 1);
316
352
  var MOBILE_BREAKPOINT = 768;
317
353
  function useIsMobile() {
318
- const [isMobile, setIsMobile] = React.useState(void 0);
319
- React.useEffect(() => {
354
+ const [isMobile, setIsMobile] = React2.useState(void 0);
355
+ React2.useEffect(() => {
320
356
  const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`);
321
357
  const onChange = () => {
322
358
  setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
@@ -329,7 +365,7 @@ function useIsMobile() {
329
365
  }
330
366
 
331
367
  // src/hooks/use-toast.ts
332
- var React2 = __toESM(require("react"), 1);
368
+ var React3 = __toESM(require("react"), 1);
333
369
  var TOAST_LIMIT = 1;
334
370
  var TOAST_REMOVE_DELAY = 1e6;
335
371
  var count = 0;
@@ -430,8 +466,8 @@ function toast({ ...props }) {
430
466
  };
431
467
  }
432
468
  function useToast() {
433
- const [state, setState] = React2.useState(memoryState);
434
- React2.useEffect(() => {
469
+ const [state, setState] = React3.useState(memoryState);
470
+ React3.useEffect(() => {
435
471
  listeners.push(setState);
436
472
  return () => {
437
473
  const index = listeners.indexOf(setState);
@@ -448,12 +484,12 @@ function useToast() {
448
484
  }
449
485
 
450
486
  // src/components/ui/accordion.tsx
451
- var React3 = __toESM(require("react"), 1);
487
+ var React4 = __toESM(require("react"), 1);
452
488
  var AccordionPrimitive = __toESM(require("@radix-ui/react-accordion"), 1);
453
489
  var import_lucide_react = require("lucide-react");
454
- var import_jsx_runtime = require("react/jsx-runtime");
490
+ var import_jsx_runtime2 = require("react/jsx-runtime");
455
491
  var Accordion = AccordionPrimitive.Root;
456
- var AccordionItem = React3.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
492
+ var AccordionItem = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
457
493
  AccordionPrimitive.Item,
458
494
  {
459
495
  ref,
@@ -462,7 +498,7 @@ var AccordionItem = React3.forwardRef(({ className, ...props }, ref) => /* @__PU
462
498
  }
463
499
  ));
464
500
  AccordionItem.displayName = "AccordionItem";
465
- var AccordionTrigger = React3.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(AccordionPrimitive.Header, { className: "flex", children: /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
501
+ var AccordionTrigger = React4.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(AccordionPrimitive.Header, { className: "flex", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsxs)(
466
502
  AccordionPrimitive.Trigger,
467
503
  {
468
504
  ref,
@@ -473,26 +509,26 @@ var AccordionTrigger = React3.forwardRef(({ className, children, ...props }, ref
473
509
  ...props,
474
510
  children: [
475
511
  children,
476
- /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.ChevronDown, { className: "h-4 w-4 shrink-0 text-muted-foreground transition-transform duration-200" })
512
+ /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_lucide_react.ChevronDown, { className: "h-4 w-4 shrink-0 text-muted-foreground transition-transform duration-200" })
477
513
  ]
478
514
  }
479
515
  ) }));
480
516
  AccordionTrigger.displayName = AccordionPrimitive.Trigger.displayName;
481
- var AccordionContent = React3.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
517
+ var AccordionContent = React4.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
482
518
  AccordionPrimitive.Content,
483
519
  {
484
520
  ref,
485
521
  className: "overflow-hidden text-sm data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
486
522
  ...props,
487
- children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { className: cn("pb-4 pt-0", className), children })
523
+ children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("div", { className: cn("pb-4 pt-0", className), children })
488
524
  }
489
525
  ));
490
526
  AccordionContent.displayName = AccordionPrimitive.Content.displayName;
491
527
 
492
528
  // src/components/ui/alert.tsx
493
- var React4 = __toESM(require("react"), 1);
529
+ var React5 = __toESM(require("react"), 1);
494
530
  var import_class_variance_authority = require("class-variance-authority");
495
- var import_jsx_runtime2 = require("react/jsx-runtime");
531
+ var import_jsx_runtime3 = require("react/jsx-runtime");
496
532
  var alertVariants = (0, import_class_variance_authority.cva)(
497
533
  "relative w-full rounded-lg border px-4 py-3 text-sm [&>svg+div]:translate-y-[-3px] [&>svg]:absolute [&>svg]:left-4 [&>svg]:top-4 [&>svg]:text-foreground [&>svg~*]:pl-7",
498
534
  {
@@ -507,7 +543,7 @@ var alertVariants = (0, import_class_variance_authority.cva)(
507
543
  }
508
544
  }
509
545
  );
510
- var Alert = React4.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
546
+ var Alert = React5.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
511
547
  "div",
512
548
  {
513
549
  ref,
@@ -517,7 +553,7 @@ var Alert = React4.forwardRef(({ className, variant, ...props }, ref) => /* @__P
517
553
  }
518
554
  ));
519
555
  Alert.displayName = "Alert";
520
- var AlertTitle = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
556
+ var AlertTitle = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
521
557
  "h5",
522
558
  {
523
559
  ref,
@@ -526,7 +562,7 @@ var AlertTitle = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE_
526
562
  }
527
563
  ));
528
564
  AlertTitle.displayName = "AlertTitle";
529
- var AlertDescription = React4.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(
565
+ var AlertDescription = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
530
566
  "div",
531
567
  {
532
568
  ref,
@@ -537,14 +573,14 @@ var AlertDescription = React4.forwardRef(({ className, ...props }, ref) => /* @_
537
573
  AlertDescription.displayName = "AlertDescription";
538
574
 
539
575
  // src/components/ui/alert-dialog.tsx
540
- var React6 = __toESM(require("react"), 1);
576
+ var React7 = __toESM(require("react"), 1);
541
577
  var AlertDialogPrimitive = __toESM(require("@radix-ui/react-alert-dialog"), 1);
542
578
 
543
579
  // src/components/ui/button.tsx
544
- var React5 = __toESM(require("react"), 1);
580
+ var React6 = __toESM(require("react"), 1);
545
581
  var import_react_slot = require("@radix-ui/react-slot");
546
582
  var import_class_variance_authority2 = require("class-variance-authority");
547
- var import_jsx_runtime3 = require("react/jsx-runtime");
583
+ var import_jsx_runtime4 = require("react/jsx-runtime");
548
584
  var buttonVariants = (0, import_class_variance_authority2.cva)(
549
585
  "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-full text-sm transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
550
586
  {
@@ -570,10 +606,10 @@ var buttonVariants = (0, import_class_variance_authority2.cva)(
570
606
  }
571
607
  }
572
608
  );
573
- var Button = React5.forwardRef(
609
+ var Button = React6.forwardRef(
574
610
  ({ className, variant, size, asChild = false, ...props }, ref) => {
575
611
  const Comp = asChild ? import_react_slot.Slot : "button";
576
- return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
612
+ return /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
577
613
  Comp,
578
614
  {
579
615
  className: cn(buttonVariants({ variant, size, className })),
@@ -586,11 +622,11 @@ var Button = React5.forwardRef(
586
622
  Button.displayName = "Button";
587
623
 
588
624
  // src/components/ui/alert-dialog.tsx
589
- var import_jsx_runtime4 = require("react/jsx-runtime");
625
+ var import_jsx_runtime5 = require("react/jsx-runtime");
590
626
  var AlertDialog = AlertDialogPrimitive.Root;
591
627
  var AlertDialogTrigger = AlertDialogPrimitive.Trigger;
592
628
  var AlertDialogPortal = AlertDialogPrimitive.Portal;
593
- var AlertDialogOverlay = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
629
+ var AlertDialogOverlay = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
594
630
  AlertDialogPrimitive.Overlay,
595
631
  {
596
632
  className: cn(
@@ -602,9 +638,9 @@ var AlertDialogOverlay = React6.forwardRef(({ className, ...props }, ref) => /*
602
638
  }
603
639
  ));
604
640
  AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName;
605
- var AlertDialogContent = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(AlertDialogPortal, { children: [
606
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(AlertDialogOverlay, {}),
607
- /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
641
+ var AlertDialogContent = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsxs)(AlertDialogPortal, { children: [
642
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(AlertDialogOverlay, {}),
643
+ /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
608
644
  AlertDialogPrimitive.Content,
609
645
  {
610
646
  ref,
@@ -620,7 +656,7 @@ AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName;
620
656
  var AlertDialogHeader = ({
621
657
  className,
622
658
  ...props
623
- }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
659
+ }) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
624
660
  "div",
625
661
  {
626
662
  className: cn(
@@ -634,7 +670,7 @@ AlertDialogHeader.displayName = "AlertDialogHeader";
634
670
  var AlertDialogFooter = ({
635
671
  className,
636
672
  ...props
637
- }) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
673
+ }) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
638
674
  "div",
639
675
  {
640
676
  className: cn(
@@ -645,7 +681,7 @@ var AlertDialogFooter = ({
645
681
  }
646
682
  );
647
683
  AlertDialogFooter.displayName = "AlertDialogFooter";
648
- var AlertDialogTitle = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
684
+ var AlertDialogTitle = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
649
685
  AlertDialogPrimitive.Title,
650
686
  {
651
687
  ref,
@@ -654,7 +690,7 @@ var AlertDialogTitle = React6.forwardRef(({ className, ...props }, ref) => /* @_
654
690
  }
655
691
  ));
656
692
  AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName;
657
- var AlertDialogDescription = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
693
+ var AlertDialogDescription = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
658
694
  AlertDialogPrimitive.Description,
659
695
  {
660
696
  ref,
@@ -663,7 +699,7 @@ var AlertDialogDescription = React6.forwardRef(({ className, ...props }, ref) =>
663
699
  }
664
700
  ));
665
701
  AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName;
666
- var AlertDialogAction = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
702
+ var AlertDialogAction = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
667
703
  AlertDialogPrimitive.Action,
668
704
  {
669
705
  ref,
@@ -672,7 +708,7 @@ var AlertDialogAction = React6.forwardRef(({ className, ...props }, ref) => /* @
672
708
  }
673
709
  ));
674
710
  AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName;
675
- var AlertDialogCancel = React6.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
711
+ var AlertDialogCancel = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
676
712
  AlertDialogPrimitive.Cancel,
677
713
  {
678
714
  ref,
@@ -691,10 +727,10 @@ var AspectRatioPrimitive = __toESM(require("@radix-ui/react-aspect-ratio"), 1);
691
727
  var AspectRatio = AspectRatioPrimitive.Root;
692
728
 
693
729
  // src/components/ui/avatar.tsx
694
- var React7 = __toESM(require("react"), 1);
730
+ var React8 = __toESM(require("react"), 1);
695
731
  var AvatarPrimitive = __toESM(require("@radix-ui/react-avatar"), 1);
696
- var import_jsx_runtime5 = require("react/jsx-runtime");
697
- var Avatar = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
732
+ var import_jsx_runtime6 = require("react/jsx-runtime");
733
+ var Avatar = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
698
734
  AvatarPrimitive.Root,
699
735
  {
700
736
  ref,
@@ -706,7 +742,7 @@ var Avatar = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
706
742
  }
707
743
  ));
708
744
  Avatar.displayName = AvatarPrimitive.Root.displayName;
709
- var AvatarImage = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
745
+ var AvatarImage = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
710
746
  AvatarPrimitive.Image,
711
747
  {
712
748
  ref,
@@ -715,7 +751,7 @@ var AvatarImage = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE
715
751
  }
716
752
  ));
717
753
  AvatarImage.displayName = AvatarPrimitive.Image.displayName;
718
- var AvatarFallback = React7.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime5.jsx)(
754
+ var AvatarFallback = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
719
755
  AvatarPrimitive.Fallback,
720
756
  {
721
757
  ref,
@@ -730,7 +766,7 @@ AvatarFallback.displayName = AvatarPrimitive.Fallback.displayName;
730
766
 
731
767
  // src/components/ui/badge.tsx
732
768
  var import_class_variance_authority3 = require("class-variance-authority");
733
- var import_jsx_runtime6 = require("react/jsx-runtime");
769
+ var import_jsx_runtime7 = require("react/jsx-runtime");
734
770
  var badgeVariants = (0, import_class_variance_authority3.cva)(
735
771
  "inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
736
772
  {
@@ -748,17 +784,17 @@ var badgeVariants = (0, import_class_variance_authority3.cva)(
748
784
  }
749
785
  );
750
786
  function Badge({ className, variant, ...props }) {
751
- return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)("div", { className: cn(badgeVariants({ variant }), className), ...props });
787
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { className: cn(badgeVariants({ variant }), className), ...props });
752
788
  }
753
789
 
754
790
  // src/components/ui/breadcrumb.tsx
755
- var React8 = __toESM(require("react"), 1);
791
+ var React9 = __toESM(require("react"), 1);
756
792
  var import_react_slot2 = require("@radix-ui/react-slot");
757
793
  var import_lucide_react2 = require("lucide-react");
758
- var import_jsx_runtime7 = require("react/jsx-runtime");
759
- var Breadcrumb = React8.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("nav", { ref, "aria-label": "breadcrumb", ...props }));
794
+ var import_jsx_runtime8 = require("react/jsx-runtime");
795
+ var Breadcrumb = React9.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("nav", { ref, "aria-label": "breadcrumb", ...props }));
760
796
  Breadcrumb.displayName = "Breadcrumb";
761
- var BreadcrumbList = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
797
+ var BreadcrumbList = React9.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
762
798
  "ol",
763
799
  {
764
800
  ref,
@@ -770,7 +806,7 @@ var BreadcrumbList = React8.forwardRef(({ className, ...props }, ref) => /* @__P
770
806
  }
771
807
  ));
772
808
  BreadcrumbList.displayName = "BreadcrumbList";
773
- var BreadcrumbItem = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
809
+ var BreadcrumbItem = React9.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
774
810
  "li",
775
811
  {
776
812
  ref,
@@ -779,9 +815,9 @@ var BreadcrumbItem = React8.forwardRef(({ className, ...props }, ref) => /* @__P
779
815
  }
780
816
  ));
781
817
  BreadcrumbItem.displayName = "BreadcrumbItem";
782
- var BreadcrumbLink = React8.forwardRef(({ asChild, className, ...props }, ref) => {
818
+ var BreadcrumbLink = React9.forwardRef(({ asChild, className, ...props }, ref) => {
783
819
  const Comp = asChild ? import_react_slot2.Slot : "a";
784
- return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
820
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
785
821
  Comp,
786
822
  {
787
823
  ref,
@@ -791,7 +827,7 @@ var BreadcrumbLink = React8.forwardRef(({ asChild, className, ...props }, ref) =
791
827
  );
792
828
  });
793
829
  BreadcrumbLink.displayName = "BreadcrumbLink";
794
- var BreadcrumbPage = React8.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
830
+ var BreadcrumbPage = React9.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
795
831
  "span",
796
832
  {
797
833
  ref,
@@ -807,21 +843,21 @@ var BreadcrumbSeparator = ({
807
843
  children,
808
844
  className,
809
845
  ...props
810
- }) => /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
846
+ }) => /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
811
847
  "li",
812
848
  {
813
849
  role: "presentation",
814
850
  "aria-hidden": "true",
815
851
  className: cn("[&>svg]:w-3.5 [&>svg]:h-3.5", className),
816
852
  ...props,
817
- children: children ?? /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_lucide_react2.ChevronRight, {})
853
+ children: children ?? /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_lucide_react2.ChevronRight, {})
818
854
  }
819
855
  );
820
856
  BreadcrumbSeparator.displayName = "BreadcrumbSeparator";
821
857
  var BreadcrumbEllipsis = ({
822
858
  className,
823
859
  ...props
824
- }) => /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)(
860
+ }) => /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
825
861
  "span",
826
862
  {
827
863
  role: "presentation",
@@ -829,17 +865,17 @@ var BreadcrumbEllipsis = ({
829
865
  className: cn("flex h-9 w-9 items-center justify-center", className),
830
866
  ...props,
831
867
  children: [
832
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(import_lucide_react2.MoreHorizontal, { className: "h-4 w-4" }),
833
- /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: "sr-only", children: "More" })
868
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_lucide_react2.MoreHorizontal, { className: "h-4 w-4" }),
869
+ /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { className: "sr-only", children: "More" })
834
870
  ]
835
871
  }
836
872
  );
837
873
  BreadcrumbEllipsis.displayName = "BreadcrumbElipssis";
838
874
 
839
875
  // src/components/ui/box.tsx
840
- var React9 = __toESM(require("react"), 1);
876
+ var React10 = __toESM(require("react"), 1);
841
877
  var import_class_variance_authority4 = require("class-variance-authority");
842
- var import_jsx_runtime8 = require("react/jsx-runtime");
878
+ var import_jsx_runtime9 = require("react/jsx-runtime");
843
879
  var boxVariants = (0, import_class_variance_authority4.cva)("", {
844
880
  variants: {
845
881
  padding: {
@@ -1009,7 +1045,7 @@ function resolveResponsiveClasses(prop, value) {
1009
1045
  }
1010
1046
  return classes;
1011
1047
  }
1012
- var Box = React9.forwardRef(
1048
+ var Box = React10.forwardRef(
1013
1049
  ({
1014
1050
  as: Comp = "div",
1015
1051
  className,
@@ -1049,7 +1085,7 @@ var Box = React9.forwardRef(
1049
1085
  ...resolveResponsiveClasses("marginStart", marginStart),
1050
1086
  ...resolveResponsiveClasses("marginEnd", marginEnd)
1051
1087
  ];
1052
- return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
1088
+ return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
1053
1089
  Comp,
1054
1090
  {
1055
1091
  ref,
@@ -1066,9 +1102,9 @@ var Box = React9.forwardRef(
1066
1102
  Box.displayName = "Box";
1067
1103
 
1068
1104
  // src/components/ui/grid.tsx
1069
- var React10 = __toESM(require("react"), 1);
1105
+ var React11 = __toESM(require("react"), 1);
1070
1106
  var import_class_variance_authority5 = require("class-variance-authority");
1071
- var import_jsx_runtime9 = require("react/jsx-runtime");
1107
+ var import_jsx_runtime10 = require("react/jsx-runtime");
1072
1108
  var gridVariants = (0, import_class_variance_authority5.cva)("grid", {
1073
1109
  variants: {
1074
1110
  columns: {
@@ -1139,7 +1175,7 @@ var columnMap = {
1139
1175
  11: "grid-cols-11",
1140
1176
  12: "grid-cols-12"
1141
1177
  };
1142
- var Grid = React10.forwardRef(
1178
+ var Grid = React11.forwardRef(
1143
1179
  ({ as: Comp = "div", className, columns = 12, gap, gapX, gapY, align, justify, ...props }, ref) => {
1144
1180
  let columnClasses;
1145
1181
  if (typeof columns === "number") {
@@ -1151,7 +1187,7 @@ var Grid = React10.forwardRef(
1151
1187
  if (columns.wide) classes.push(`lg:${columnMap[columns.wide]}`);
1152
1188
  columnClasses = classes.join(" ");
1153
1189
  }
1154
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
1190
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1155
1191
  Comp,
1156
1192
  {
1157
1193
  ref,
@@ -1213,7 +1249,7 @@ var spanMap = {
1213
1249
  11: "col-span-11",
1214
1250
  12: "col-span-12"
1215
1251
  };
1216
- var GridColumn = React10.forwardRef(
1252
+ var GridColumn = React11.forwardRef(
1217
1253
  ({ as: Comp = "div", className, span, start, ...props }, ref) => {
1218
1254
  let spanClasses;
1219
1255
  if (typeof span === "number") {
@@ -1227,7 +1263,7 @@ var GridColumn = React10.forwardRef(
1227
1263
  } else {
1228
1264
  spanClasses = "";
1229
1265
  }
1230
- return /* @__PURE__ */ (0, import_jsx_runtime9.jsx)(
1266
+ return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1231
1267
  Comp,
1232
1268
  {
1233
1269
  ref,
@@ -1244,9 +1280,9 @@ var GridColumn = React10.forwardRef(
1244
1280
  GridColumn.displayName = "GridColumn";
1245
1281
 
1246
1282
  // src/components/ui/heading.tsx
1247
- var React11 = __toESM(require("react"), 1);
1283
+ var React12 = __toESM(require("react"), 1);
1248
1284
  var import_class_variance_authority6 = require("class-variance-authority");
1249
- var import_jsx_runtime10 = require("react/jsx-runtime");
1285
+ var import_jsx_runtime11 = require("react/jsx-runtime");
1250
1286
  var headingVariants = (0, import_class_variance_authority6.cva)("font-heading scroll-m-24", {
1251
1287
  variants: {
1252
1288
  size: {
@@ -1331,7 +1367,7 @@ function resolveResponsive(value, map) {
1331
1367
  }
1332
1368
  return classes;
1333
1369
  }
1334
- var Heading = React11.forwardRef(
1370
+ var Heading = React12.forwardRef(
1335
1371
  ({ as: Tag = "h2", className, size = 2, weight, stretch, letterSpacing, align, variant, ...props }, ref) => {
1336
1372
  const isResponsiveSize = typeof size === "object";
1337
1373
  const isResponsiveWeight = typeof weight === "object";
@@ -1339,7 +1375,7 @@ var Heading = React11.forwardRef(
1339
1375
  ...isResponsiveSize ? resolveResponsive(size, sizeMap) : [],
1340
1376
  ...isResponsiveWeight ? resolveResponsive(weight, weightMap) : []
1341
1377
  ];
1342
- return /* @__PURE__ */ (0, import_jsx_runtime10.jsx)(
1378
+ return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1343
1379
  Tag,
1344
1380
  {
1345
1381
  ref,
@@ -1364,9 +1400,9 @@ var Heading = React11.forwardRef(
1364
1400
  Heading.displayName = "Heading";
1365
1401
 
1366
1402
  // src/components/ui/text.tsx
1367
- var React12 = __toESM(require("react"), 1);
1403
+ var React13 = __toESM(require("react"), 1);
1368
1404
  var import_class_variance_authority7 = require("class-variance-authority");
1369
- var import_jsx_runtime11 = require("react/jsx-runtime");
1405
+ var import_jsx_runtime12 = require("react/jsx-runtime");
1370
1406
  var textVariants = (0, import_class_variance_authority7.cva)("font-body", {
1371
1407
  variants: {
1372
1408
  size: {
@@ -1437,7 +1473,7 @@ function resolveResponsive2(value, map) {
1437
1473
  }
1438
1474
  return classes;
1439
1475
  }
1440
- var Text = React12.forwardRef(
1476
+ var Text = React13.forwardRef(
1441
1477
  ({ as: Comp = "p", className, size = 400, weight, align, variant, ...props }, ref) => {
1442
1478
  const isResponsiveSize = typeof size === "object";
1443
1479
  const isResponsiveWeight = typeof weight === "object";
@@ -1445,7 +1481,7 @@ var Text = React12.forwardRef(
1445
1481
  ...isResponsiveSize ? resolveResponsive2(size, sizeMap2) : [],
1446
1482
  ...isResponsiveWeight ? resolveResponsive2(weight, weightMap2) : []
1447
1483
  ];
1448
- return /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
1484
+ return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1449
1485
  Comp,
1450
1486
  {
1451
1487
  ref,
@@ -1467,11 +1503,160 @@ var Text = React12.forwardRef(
1467
1503
  );
1468
1504
  Text.displayName = "Text";
1469
1505
 
1470
- // src/components/ui/stack.tsx
1471
- var React13 = __toESM(require("react"), 1);
1506
+ // src/components/ui/section.tsx
1507
+ var React14 = __toESM(require("react"), 1);
1472
1508
  var import_class_variance_authority8 = require("class-variance-authority");
1473
- var import_jsx_runtime12 = require("react/jsx-runtime");
1474
- var stackVariants = (0, import_class_variance_authority8.cva)("flex", {
1509
+ var import_jsx_runtime13 = require("react/jsx-runtime");
1510
+ var paddingStartVariants = {
1511
+ none: "pt-0",
1512
+ condensed: "pt-6 md:pt-8",
1513
+ normal: "pt-12 md:pt-16 lg:pt-20",
1514
+ spacious: "pt-16 md:pt-24 lg:pt-32"
1515
+ };
1516
+ var paddingEndVariants = {
1517
+ none: "pb-0",
1518
+ condensed: "pb-6 md:pb-8",
1519
+ normal: "pb-12 md:pb-16 lg:pb-20",
1520
+ spacious: "pb-16 md:pb-24 lg:pb-32"
1521
+ };
1522
+ var backgroundColorVariants = {
1523
+ default: "bg-background",
1524
+ subtle: "bg-muted",
1525
+ inset: "bg-accent"
1526
+ };
1527
+ var sectionVariants = (0, import_class_variance_authority8.cva)("relative w-full", {
1528
+ variants: {
1529
+ rounded: {
1530
+ true: "rounded-xl overflow-hidden",
1531
+ false: ""
1532
+ }
1533
+ },
1534
+ defaultVariants: {
1535
+ rounded: false
1536
+ }
1537
+ });
1538
+ var responsivePrefixes4 = { narrow: "", regular: "md:", wide: "lg:" };
1539
+ function resolveResponsivePadding(prop, map, fallback) {
1540
+ if (!prop) return map[fallback] || "";
1541
+ if (typeof prop === "string") return map[prop] || "";
1542
+ const classes = [];
1543
+ for (const [bp, prefix] of Object.entries(responsivePrefixes4)) {
1544
+ const val = prop[bp];
1545
+ if (val && map[val]) {
1546
+ const base = map[val];
1547
+ if (prefix === "") {
1548
+ classes.push(base);
1549
+ } else {
1550
+ const parts = base.split(" ");
1551
+ for (const part of parts) {
1552
+ if (prefix === "md:" && part.startsWith("md:")) {
1553
+ classes.push(part);
1554
+ } else if (prefix === "lg:" && part.startsWith("lg:")) {
1555
+ classes.push(part);
1556
+ } else if (prefix === "" && !part.includes(":")) {
1557
+ classes.push(part);
1558
+ }
1559
+ }
1560
+ }
1561
+ }
1562
+ }
1563
+ return classes.join(" ");
1564
+ }
1565
+ var Section = React14.forwardRef(
1566
+ ({
1567
+ as: Tag = "section",
1568
+ className,
1569
+ children,
1570
+ paddingBlockStart = "normal",
1571
+ paddingBlockEnd = "normal",
1572
+ backgroundColor,
1573
+ backgroundImageSrc,
1574
+ backgroundImageSize = "cover",
1575
+ backgroundImagePosition = "50%",
1576
+ rounded,
1577
+ fullWidth = false,
1578
+ sectionTitle,
1579
+ containerClassName,
1580
+ style,
1581
+ ...props
1582
+ }, ref) => {
1583
+ const paddingStartClasses = resolveResponsivePadding(
1584
+ paddingBlockStart,
1585
+ paddingStartVariants,
1586
+ "normal"
1587
+ );
1588
+ const paddingEndClasses = resolveResponsivePadding(
1589
+ paddingBlockEnd,
1590
+ paddingEndVariants,
1591
+ "normal"
1592
+ );
1593
+ let bgColorClass = "";
1594
+ let bgColorStyle;
1595
+ if (backgroundColor) {
1596
+ if (typeof backgroundColor === "string") {
1597
+ const mapped = backgroundColorVariants[backgroundColor];
1598
+ if (mapped) {
1599
+ bgColorClass = mapped;
1600
+ } else {
1601
+ bgColorStyle = { backgroundColor };
1602
+ }
1603
+ }
1604
+ }
1605
+ let bgImageStyle;
1606
+ if (backgroundImageSrc) {
1607
+ const srcs = Array.isArray(backgroundImageSrc) ? backgroundImageSrc : [backgroundImageSrc];
1608
+ const bgImages = srcs.map((src) => `url(${src})`).join(", ");
1609
+ const bgSizes = Array.isArray(backgroundImageSrc) ? srcs.map(() => backgroundImageSize).join(", ") : backgroundImageSize;
1610
+ const bgPositions = Array.isArray(backgroundImageSrc) ? srcs.map(() => backgroundImagePosition).join(", ") : backgroundImagePosition;
1611
+ bgImageStyle = {
1612
+ backgroundImage: bgImages,
1613
+ backgroundSize: bgSizes,
1614
+ backgroundPosition: bgPositions,
1615
+ backgroundRepeat: "no-repeat"
1616
+ };
1617
+ }
1618
+ const combinedStyle = {
1619
+ ...bgColorStyle,
1620
+ ...bgImageStyle,
1621
+ ...style
1622
+ };
1623
+ return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1624
+ Tag,
1625
+ {
1626
+ ref,
1627
+ className: cn(
1628
+ sectionVariants({ rounded }),
1629
+ paddingStartClasses,
1630
+ paddingEndClasses,
1631
+ bgColorClass,
1632
+ className
1633
+ ),
1634
+ style: Object.keys(combinedStyle).length > 0 ? combinedStyle : void 0,
1635
+ ...props,
1636
+ children: /* @__PURE__ */ (0, import_jsx_runtime13.jsxs)(
1637
+ "div",
1638
+ {
1639
+ className: cn(
1640
+ fullWidth ? "w-full" : "max-w-7xl mx-auto px-6",
1641
+ containerClassName
1642
+ ),
1643
+ children: [
1644
+ sectionTitle && /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("h2", { className: "text-2xl text-foreground border-b border-border pb-2 mb-4", children: sectionTitle }),
1645
+ children
1646
+ ]
1647
+ }
1648
+ )
1649
+ }
1650
+ );
1651
+ }
1652
+ );
1653
+ Section.displayName = "Section";
1654
+
1655
+ // src/components/ui/stack.tsx
1656
+ var React15 = __toESM(require("react"), 1);
1657
+ var import_class_variance_authority9 = require("class-variance-authority");
1658
+ var import_jsx_runtime14 = require("react/jsx-runtime");
1659
+ var stackVariants = (0, import_class_variance_authority9.cva)("flex", {
1475
1660
  variants: {
1476
1661
  direction: {
1477
1662
  horizontal: "flex-row",
@@ -1557,7 +1742,7 @@ function resolveResponsive3(value, map) {
1557
1742
  }
1558
1743
  return classes;
1559
1744
  }
1560
- var Stack = React13.forwardRef(
1745
+ var Stack = React15.forwardRef(
1561
1746
  ({
1562
1747
  as: Comp = "div",
1563
1748
  className,
@@ -1579,7 +1764,7 @@ var Stack = React13.forwardRef(
1579
1764
  const isResponsiveGap = typeof gap === "object";
1580
1765
  const isResponsiveAlign = typeof align === "object";
1581
1766
  const isResponsiveJustify = typeof justify === "object";
1582
- return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
1767
+ return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1583
1768
  Comp,
1584
1769
  {
1585
1770
  ref,
@@ -1606,10 +1791,10 @@ var Stack = React13.forwardRef(
1606
1791
  Stack.displayName = "Stack";
1607
1792
 
1608
1793
  // src/components/ui/calendar.tsx
1609
- var React14 = __toESM(require("react"), 1);
1794
+ var React16 = __toESM(require("react"), 1);
1610
1795
  var import_lucide_react3 = require("lucide-react");
1611
1796
  var import_react_day_picker = require("react-day-picker");
1612
- var import_jsx_runtime13 = require("react/jsx-runtime");
1797
+ var import_jsx_runtime15 = require("react/jsx-runtime");
1613
1798
  function Calendar({
1614
1799
  className,
1615
1800
  classNames,
@@ -1621,7 +1806,7 @@ function Calendar({
1621
1806
  ...props
1622
1807
  }) {
1623
1808
  const defaultClassNames = (0, import_react_day_picker.getDefaultClassNames)();
1624
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1809
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1625
1810
  import_react_day_picker.DayPicker,
1626
1811
  {
1627
1812
  showOutsideDays,
@@ -1720,7 +1905,7 @@ function Calendar({
1720
1905
  },
1721
1906
  components: {
1722
1907
  Root: ({ className: className2, rootRef, ...props2 }) => {
1723
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1908
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1724
1909
  "div",
1725
1910
  {
1726
1911
  "data-slot": "calendar",
@@ -1732,10 +1917,10 @@ function Calendar({
1732
1917
  },
1733
1918
  Chevron: ({ className: className2, orientation, ...props2 }) => {
1734
1919
  if (orientation === "left") {
1735
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_lucide_react3.ChevronLeftIcon, { className: cn("size-4", className2), ...props2 });
1920
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_lucide_react3.ChevronLeftIcon, { className: cn("size-4", className2), ...props2 });
1736
1921
  }
1737
1922
  if (orientation === "right") {
1738
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1923
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1739
1924
  import_lucide_react3.ChevronRightIcon,
1740
1925
  {
1741
1926
  className: cn("size-4", className2),
@@ -1743,11 +1928,11 @@ function Calendar({
1743
1928
  }
1744
1929
  );
1745
1930
  }
1746
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(import_lucide_react3.ChevronDownIcon, { className: cn("size-4", className2), ...props2 });
1931
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_lucide_react3.ChevronDownIcon, { className: cn("size-4", className2), ...props2 });
1747
1932
  },
1748
1933
  DayButton: CalendarDayButton,
1749
1934
  WeekNumber: ({ children, ...props2 }) => {
1750
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("td", { ...props2, children: /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "flex size-[--cell-size] items-center justify-center text-center", children }) });
1935
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("td", { ...props2, children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { className: "flex size-[--cell-size] items-center justify-center text-center", children }) });
1751
1936
  },
1752
1937
  ...components
1753
1938
  },
@@ -1762,11 +1947,11 @@ function CalendarDayButton({
1762
1947
  ...props
1763
1948
  }) {
1764
1949
  const defaultClassNames = (0, import_react_day_picker.getDefaultClassNames)();
1765
- const ref = React14.useRef(null);
1766
- React14.useEffect(() => {
1950
+ const ref = React16.useRef(null);
1951
+ React16.useEffect(() => {
1767
1952
  if (modifiers.focused) ref.current?.focus();
1768
1953
  }, [modifiers.focused]);
1769
- return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
1954
+ return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
1770
1955
  Button,
1771
1956
  {
1772
1957
  ref,
@@ -1788,9 +1973,9 @@ function CalendarDayButton({
1788
1973
  }
1789
1974
 
1790
1975
  // src/components/ui/card.tsx
1791
- var React15 = __toESM(require("react"), 1);
1792
- var import_jsx_runtime14 = require("react/jsx-runtime");
1793
- var Card = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1976
+ var React17 = __toESM(require("react"), 1);
1977
+ var import_jsx_runtime16 = require("react/jsx-runtime");
1978
+ var Card = React17.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1794
1979
  "div",
1795
1980
  {
1796
1981
  ref,
@@ -1802,7 +1987,7 @@ var Card = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
1802
1987
  }
1803
1988
  ));
1804
1989
  Card.displayName = "Card";
1805
- var CardHeader = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1990
+ var CardHeader = React17.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1806
1991
  "div",
1807
1992
  {
1808
1993
  ref,
@@ -1811,7 +1996,7 @@ var CardHeader = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE
1811
1996
  }
1812
1997
  ));
1813
1998
  CardHeader.displayName = "CardHeader";
1814
- var CardTitle = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
1999
+ var CardTitle = React17.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1815
2000
  "div",
1816
2001
  {
1817
2002
  ref,
@@ -1820,7 +2005,7 @@ var CardTitle = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE_
1820
2005
  }
1821
2006
  ));
1822
2007
  CardTitle.displayName = "CardTitle";
1823
- var CardDescription = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2008
+ var CardDescription = React17.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1824
2009
  "div",
1825
2010
  {
1826
2011
  ref,
@@ -1829,9 +2014,9 @@ var CardDescription = React15.forwardRef(({ className, ...props }, ref) => /* @_
1829
2014
  }
1830
2015
  ));
1831
2016
  CardDescription.displayName = "CardDescription";
1832
- var CardContent = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)("div", { ref, className: cn("p-6 pt-0", className), ...props }));
2017
+ var CardContent = React17.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { ref, className: cn("p-6 pt-0", className), ...props }));
1833
2018
  CardContent.displayName = "CardContent";
1834
- var CardFooter = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
2019
+ var CardFooter = React17.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
1835
2020
  "div",
1836
2021
  {
1837
2022
  ref,
@@ -1842,19 +2027,19 @@ var CardFooter = React15.forwardRef(({ className, ...props }, ref) => /* @__PURE
1842
2027
  CardFooter.displayName = "CardFooter";
1843
2028
 
1844
2029
  // src/components/ui/carousel.tsx
1845
- var React16 = __toESM(require("react"), 1);
2030
+ var React18 = __toESM(require("react"), 1);
1846
2031
  var import_embla_carousel_react = __toESM(require("embla-carousel-react"), 1);
1847
2032
  var import_lucide_react4 = require("lucide-react");
1848
- var import_jsx_runtime15 = require("react/jsx-runtime");
1849
- var CarouselContext = React16.createContext(null);
2033
+ var import_jsx_runtime17 = require("react/jsx-runtime");
2034
+ var CarouselContext = React18.createContext(null);
1850
2035
  function useCarousel() {
1851
- const context = React16.useContext(CarouselContext);
2036
+ const context = React18.useContext(CarouselContext);
1852
2037
  if (!context) {
1853
2038
  throw new Error("useCarousel must be used within a <Carousel />");
1854
2039
  }
1855
2040
  return context;
1856
2041
  }
1857
- var Carousel = React16.forwardRef(
2042
+ var Carousel = React18.forwardRef(
1858
2043
  ({
1859
2044
  orientation = "horizontal",
1860
2045
  opts,
@@ -1871,22 +2056,22 @@ var Carousel = React16.forwardRef(
1871
2056
  },
1872
2057
  plugins
1873
2058
  );
1874
- const [canScrollPrev, setCanScrollPrev] = React16.useState(false);
1875
- const [canScrollNext, setCanScrollNext] = React16.useState(false);
1876
- const onSelect = React16.useCallback((api2) => {
2059
+ const [canScrollPrev, setCanScrollPrev] = React18.useState(false);
2060
+ const [canScrollNext, setCanScrollNext] = React18.useState(false);
2061
+ const onSelect = React18.useCallback((api2) => {
1877
2062
  if (!api2) {
1878
2063
  return;
1879
2064
  }
1880
2065
  setCanScrollPrev(api2.canScrollPrev());
1881
2066
  setCanScrollNext(api2.canScrollNext());
1882
2067
  }, []);
1883
- const scrollPrev = React16.useCallback(() => {
2068
+ const scrollPrev = React18.useCallback(() => {
1884
2069
  api?.scrollPrev();
1885
2070
  }, [api]);
1886
- const scrollNext = React16.useCallback(() => {
2071
+ const scrollNext = React18.useCallback(() => {
1887
2072
  api?.scrollNext();
1888
2073
  }, [api]);
1889
- const handleKeyDown = React16.useCallback(
2074
+ const handleKeyDown = React18.useCallback(
1890
2075
  (event) => {
1891
2076
  if (event.key === "ArrowLeft") {
1892
2077
  event.preventDefault();
@@ -1898,13 +2083,13 @@ var Carousel = React16.forwardRef(
1898
2083
  },
1899
2084
  [scrollPrev, scrollNext]
1900
2085
  );
1901
- React16.useEffect(() => {
2086
+ React18.useEffect(() => {
1902
2087
  if (!api || !setApi) {
1903
2088
  return;
1904
2089
  }
1905
2090
  setApi(api);
1906
2091
  }, [api, setApi]);
1907
- React16.useEffect(() => {
2092
+ React18.useEffect(() => {
1908
2093
  if (!api) {
1909
2094
  return;
1910
2095
  }
@@ -1915,7 +2100,7 @@ var Carousel = React16.forwardRef(
1915
2100
  api?.off("select", onSelect);
1916
2101
  };
1917
2102
  }, [api, onSelect]);
1918
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2103
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1919
2104
  CarouselContext.Provider,
1920
2105
  {
1921
2106
  value: {
@@ -1928,7 +2113,7 @@ var Carousel = React16.forwardRef(
1928
2113
  canScrollPrev,
1929
2114
  canScrollNext
1930
2115
  },
1931
- children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2116
+ children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1932
2117
  "div",
1933
2118
  {
1934
2119
  ref,
@@ -1945,9 +2130,9 @@ var Carousel = React16.forwardRef(
1945
2130
  }
1946
2131
  );
1947
2132
  Carousel.displayName = "Carousel";
1948
- var CarouselContent = React16.forwardRef(({ className, ...props }, ref) => {
2133
+ var CarouselContent = React18.forwardRef(({ className, ...props }, ref) => {
1949
2134
  const { carouselRef, orientation } = useCarousel();
1950
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("div", { ref: carouselRef, className: "overflow-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2135
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("div", { ref: carouselRef, className: "overflow-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1951
2136
  "div",
1952
2137
  {
1953
2138
  ref,
@@ -1961,9 +2146,9 @@ var CarouselContent = React16.forwardRef(({ className, ...props }, ref) => {
1961
2146
  ) });
1962
2147
  });
1963
2148
  CarouselContent.displayName = "CarouselContent";
1964
- var CarouselItem = React16.forwardRef(({ className, ...props }, ref) => {
2149
+ var CarouselItem = React18.forwardRef(({ className, ...props }, ref) => {
1965
2150
  const { orientation } = useCarousel();
1966
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
2151
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
1967
2152
  "div",
1968
2153
  {
1969
2154
  ref,
@@ -1979,9 +2164,9 @@ var CarouselItem = React16.forwardRef(({ className, ...props }, ref) => {
1979
2164
  );
1980
2165
  });
1981
2166
  CarouselItem.displayName = "CarouselItem";
1982
- var CarouselPrevious = React16.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
2167
+ var CarouselPrevious = React18.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
1983
2168
  const { orientation, scrollPrev, canScrollPrev } = useCarousel();
1984
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
2169
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
1985
2170
  Button,
1986
2171
  {
1987
2172
  ref,
@@ -1996,16 +2181,16 @@ var CarouselPrevious = React16.forwardRef(({ className, variant = "outline", siz
1996
2181
  onClick: scrollPrev,
1997
2182
  ...props,
1998
2183
  children: [
1999
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_lucide_react4.ArrowLeft, { className: "h-4 w-4" }),
2000
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "sr-only", children: "Previous slide" })
2184
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_lucide_react4.ArrowLeft, { className: "h-4 w-4" }),
2185
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "sr-only", children: "Previous slide" })
2001
2186
  ]
2002
2187
  }
2003
2188
  );
2004
2189
  });
2005
2190
  CarouselPrevious.displayName = "CarouselPrevious";
2006
- var CarouselNext = React16.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
2191
+ var CarouselNext = React18.forwardRef(({ className, variant = "outline", size = "icon", ...props }, ref) => {
2007
2192
  const { orientation, scrollNext, canScrollNext } = useCarousel();
2008
- return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)(
2193
+ return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
2009
2194
  Button,
2010
2195
  {
2011
2196
  ref,
@@ -2020,8 +2205,8 @@ var CarouselNext = React16.forwardRef(({ className, variant = "outline", size =
2020
2205
  onClick: scrollNext,
2021
2206
  ...props,
2022
2207
  children: [
2023
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)(import_lucide_react4.ArrowRight, { className: "h-4 w-4" }),
2024
- /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: "sr-only", children: "Next slide" })
2208
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_lucide_react4.ArrowRight, { className: "h-4 w-4" }),
2209
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: "sr-only", children: "Next slide" })
2025
2210
  ]
2026
2211
  }
2027
2212
  );
@@ -2029,22 +2214,22 @@ var CarouselNext = React16.forwardRef(({ className, variant = "outline", size =
2029
2214
  CarouselNext.displayName = "CarouselNext";
2030
2215
 
2031
2216
  // src/components/ui/chart.tsx
2032
- var React17 = __toESM(require("react"), 1);
2217
+ var React19 = __toESM(require("react"), 1);
2033
2218
  var RechartsPrimitive = __toESM(require("recharts"), 1);
2034
- var import_jsx_runtime16 = require("react/jsx-runtime");
2219
+ var import_jsx_runtime18 = require("react/jsx-runtime");
2035
2220
  var THEMES = { light: "", dark: ".dark" };
2036
- var ChartContext = React17.createContext(null);
2221
+ var ChartContext = React19.createContext(null);
2037
2222
  function useChart() {
2038
- const context = React17.useContext(ChartContext);
2223
+ const context = React19.useContext(ChartContext);
2039
2224
  if (!context) {
2040
2225
  throw new Error("useChart must be used within a <ChartContainer />");
2041
2226
  }
2042
2227
  return context;
2043
2228
  }
2044
- var ChartContainer = React17.forwardRef(({ id, className, children, config, ...props }, ref) => {
2045
- const uniqueId = React17.useId();
2229
+ var ChartContainer = React19.forwardRef(({ id, className, children, config, ...props }, ref) => {
2230
+ const uniqueId = React19.useId();
2046
2231
  const chartId = `chart-${id || uniqueId.replace(/:/g, "")}`;
2047
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(ChartContext.Provider, { value: { config }, children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
2232
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(ChartContext.Provider, { value: { config }, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2048
2233
  "div",
2049
2234
  {
2050
2235
  "data-chart": chartId,
@@ -2055,8 +2240,8 @@ var ChartContainer = React17.forwardRef(({ id, className, children, config, ...p
2055
2240
  ),
2056
2241
  ...props,
2057
2242
  children: [
2058
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(ChartStyle, { id: chartId, config }),
2059
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(RechartsPrimitive.ResponsiveContainer, { children })
2243
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(ChartStyle, { id: chartId, config }),
2244
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(RechartsPrimitive.ResponsiveContainer, { children })
2060
2245
  ]
2061
2246
  }
2062
2247
  ) });
@@ -2069,7 +2254,7 @@ var ChartStyle = ({ id, config }) => {
2069
2254
  if (!colorConfig.length) {
2070
2255
  return null;
2071
2256
  }
2072
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
2257
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2073
2258
  "style",
2074
2259
  {
2075
2260
  dangerouslySetInnerHTML: {
@@ -2088,7 +2273,7 @@ ${colorConfig.map(([key, itemConfig]) => {
2088
2273
  );
2089
2274
  };
2090
2275
  var ChartTooltip = RechartsPrimitive.Tooltip;
2091
- var ChartTooltipContent = React17.forwardRef(
2276
+ var ChartTooltipContent = React19.forwardRef(
2092
2277
  ({
2093
2278
  active,
2094
2279
  payload,
@@ -2105,7 +2290,7 @@ var ChartTooltipContent = React17.forwardRef(
2105
2290
  labelKey
2106
2291
  }, ref) => {
2107
2292
  const { config } = useChart();
2108
- const tooltipLabel = React17.useMemo(() => {
2293
+ const tooltipLabel = React19.useMemo(() => {
2109
2294
  if (hideLabel || !payload?.length) {
2110
2295
  return null;
2111
2296
  }
@@ -2114,12 +2299,12 @@ var ChartTooltipContent = React17.forwardRef(
2114
2299
  const itemConfig = getPayloadConfigFromPayload(config, item, key);
2115
2300
  const value = !labelKey && typeof label === "string" ? config[label]?.label || label : itemConfig?.label;
2116
2301
  if (labelFormatter) {
2117
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: cn(labelClassName), children: labelFormatter(value, payload) });
2302
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: cn(labelClassName), children: labelFormatter(value, payload) });
2118
2303
  }
2119
2304
  if (!value) {
2120
2305
  return null;
2121
2306
  }
2122
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: cn(labelClassName), children: value });
2307
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: cn(labelClassName), children: value });
2123
2308
  }, [
2124
2309
  label,
2125
2310
  labelFormatter,
@@ -2133,7 +2318,7 @@ var ChartTooltipContent = React17.forwardRef(
2133
2318
  return null;
2134
2319
  }
2135
2320
  const nestLabel = payload.length === 1 && indicator !== "dot";
2136
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
2321
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2137
2322
  "div",
2138
2323
  {
2139
2324
  ref,
@@ -2143,19 +2328,19 @@ var ChartTooltipContent = React17.forwardRef(
2143
2328
  ),
2144
2329
  children: [
2145
2330
  !nestLabel ? tooltipLabel : null,
2146
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "grid gap-1.5", children: payload.filter((item) => item.type !== "none").map((item, index) => {
2331
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", { className: "grid gap-1.5", children: payload.filter((item) => item.type !== "none").map((item, index) => {
2147
2332
  const key = `${nameKey || item.name || item.dataKey || "value"}`;
2148
2333
  const itemConfig = getPayloadConfigFromPayload(config, item, key);
2149
2334
  const indicatorColor = color || item.payload.fill || item.color;
2150
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
2335
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2151
2336
  "div",
2152
2337
  {
2153
2338
  className: cn(
2154
2339
  "flex w-full flex-wrap items-stretch gap-2 [&>svg]:h-2.5 [&>svg]:w-2.5 [&>svg]:text-muted-foreground",
2155
2340
  indicator === "dot" && "items-center"
2156
2341
  ),
2157
- children: formatter && item?.value !== void 0 && item.name ? formatter(item.value, item.name, item, index, item.payload) : /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(import_jsx_runtime16.Fragment, { children: [
2158
- itemConfig?.icon ? /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(itemConfig.icon, {}) : !hideIndicator && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
2342
+ children: formatter && item?.value !== void 0 && item.name ? formatter(item.value, item.name, item, index, item.payload) : /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(import_jsx_runtime18.Fragment, { children: [
2343
+ itemConfig?.icon ? /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(itemConfig.icon, {}) : !hideIndicator && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2159
2344
  "div",
2160
2345
  {
2161
2346
  className: cn(
@@ -2173,7 +2358,7 @@ var ChartTooltipContent = React17.forwardRef(
2173
2358
  }
2174
2359
  }
2175
2360
  ),
2176
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
2361
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2177
2362
  "div",
2178
2363
  {
2179
2364
  className: cn(
@@ -2181,11 +2366,11 @@ var ChartTooltipContent = React17.forwardRef(
2181
2366
  nestLabel ? "items-end" : "items-center"
2182
2367
  ),
2183
2368
  children: [
2184
- /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "grid gap-1.5", children: [
2369
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "grid gap-1.5", children: [
2185
2370
  nestLabel ? tooltipLabel : null,
2186
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "text-muted-foreground", children: itemConfig?.label || item.name })
2371
+ /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "text-muted-foreground", children: itemConfig?.label || item.name })
2187
2372
  ] }),
2188
- item.value && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { className: "font-mono tabular-nums text-foreground", children: item.value.toLocaleString() })
2373
+ item.value && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "font-mono tabular-nums text-foreground", children: item.value.toLocaleString() })
2189
2374
  ]
2190
2375
  }
2191
2376
  )
@@ -2201,13 +2386,13 @@ var ChartTooltipContent = React17.forwardRef(
2201
2386
  );
2202
2387
  ChartTooltipContent.displayName = "ChartTooltip";
2203
2388
  var ChartLegend = RechartsPrimitive.Legend;
2204
- var ChartLegendContent = React17.forwardRef(
2389
+ var ChartLegendContent = React19.forwardRef(
2205
2390
  ({ className, hideIcon = false, payload, verticalAlign = "bottom", nameKey }, ref) => {
2206
2391
  const { config } = useChart();
2207
2392
  if (!payload?.length) {
2208
2393
  return null;
2209
2394
  }
2210
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
2395
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2211
2396
  "div",
2212
2397
  {
2213
2398
  ref,
@@ -2219,14 +2404,14 @@ var ChartLegendContent = React17.forwardRef(
2219
2404
  children: payload.filter((item) => item.type !== "none").map((item) => {
2220
2405
  const key = `${nameKey || item.dataKey || "value"}`;
2221
2406
  const itemConfig = getPayloadConfigFromPayload(config, item, key);
2222
- return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
2407
+ return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2223
2408
  "div",
2224
2409
  {
2225
2410
  className: cn(
2226
2411
  "flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-muted-foreground"
2227
2412
  ),
2228
2413
  children: [
2229
- itemConfig?.icon && !hideIcon ? /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(itemConfig.icon, {}) : /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
2414
+ itemConfig?.icon && !hideIcon ? /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(itemConfig.icon, {}) : /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2230
2415
  "div",
2231
2416
  {
2232
2417
  className: "h-2 w-2 shrink-0 rounded-[2px]",
@@ -2261,11 +2446,11 @@ function getPayloadConfigFromPayload(config, payload, key) {
2261
2446
  }
2262
2447
 
2263
2448
  // src/components/ui/checkbox.tsx
2264
- var React18 = __toESM(require("react"), 1);
2449
+ var React20 = __toESM(require("react"), 1);
2265
2450
  var CheckboxPrimitive = __toESM(require("@radix-ui/react-checkbox"), 1);
2266
2451
  var import_lucide_react5 = require("lucide-react");
2267
- var import_jsx_runtime17 = require("react/jsx-runtime");
2268
- var Checkbox = React18.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
2452
+ var import_jsx_runtime19 = require("react/jsx-runtime");
2453
+ var Checkbox = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2269
2454
  CheckboxPrimitive.Root,
2270
2455
  {
2271
2456
  ref,
@@ -2274,11 +2459,11 @@ var Checkbox = React18.forwardRef(({ className, ...props }, ref) => /* @__PURE__
2274
2459
  className
2275
2460
  ),
2276
2461
  ...props,
2277
- children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
2462
+ children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2278
2463
  CheckboxPrimitive.Indicator,
2279
2464
  {
2280
2465
  className: cn("grid place-content-center text-current"),
2281
- children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(import_lucide_react5.Check, { className: "h-4 w-4" })
2466
+ children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_lucide_react5.Check, { className: "h-4 w-4" })
2282
2467
  }
2283
2468
  )
2284
2469
  }
@@ -2292,20 +2477,20 @@ var CollapsibleTrigger2 = CollapsiblePrimitive.CollapsibleTrigger;
2292
2477
  var CollapsibleContent2 = CollapsiblePrimitive.CollapsibleContent;
2293
2478
 
2294
2479
  // src/components/ui/command.tsx
2295
- var React20 = __toESM(require("react"), 1);
2480
+ var React22 = __toESM(require("react"), 1);
2296
2481
  var import_cmdk = require("cmdk");
2297
2482
  var import_lucide_react7 = require("lucide-react");
2298
2483
 
2299
2484
  // src/components/ui/dialog.tsx
2300
- var React19 = __toESM(require("react"), 1);
2485
+ var React21 = __toESM(require("react"), 1);
2301
2486
  var DialogPrimitive = __toESM(require("@radix-ui/react-dialog"), 1);
2302
2487
  var import_lucide_react6 = require("lucide-react");
2303
- var import_jsx_runtime18 = require("react/jsx-runtime");
2488
+ var import_jsx_runtime20 = require("react/jsx-runtime");
2304
2489
  var Dialog = DialogPrimitive.Root;
2305
2490
  var DialogTrigger = DialogPrimitive.Trigger;
2306
2491
  var DialogPortal = DialogPrimitive.Portal;
2307
2492
  var DialogClose = DialogPrimitive.Close;
2308
- var DialogOverlay = React19.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2493
+ var DialogOverlay = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2309
2494
  DialogPrimitive.Overlay,
2310
2495
  {
2311
2496
  ref,
@@ -2317,9 +2502,9 @@ var DialogOverlay = React19.forwardRef(({ className, ...props }, ref) => /* @__P
2317
2502
  }
2318
2503
  ));
2319
2504
  DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
2320
- var DialogContent = React19.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(DialogPortal, { children: [
2321
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(DialogOverlay, {}),
2322
- /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
2505
+ var DialogContent = React21.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(DialogPortal, { children: [
2506
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(DialogOverlay, {}),
2507
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2323
2508
  DialogPrimitive.Content,
2324
2509
  {
2325
2510
  ref,
@@ -2330,9 +2515,9 @@ var DialogContent = React19.forwardRef(({ className, children, ...props }, ref)
2330
2515
  ...props,
2331
2516
  children: [
2332
2517
  children,
2333
- /* @__PURE__ */ (0, import_jsx_runtime18.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: [
2334
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(import_lucide_react6.X, { className: "h-4 w-4" }),
2335
- /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: "sr-only", children: "Close" })
2518
+ /* @__PURE__ */ (0, import_jsx_runtime20.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: [
2519
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_lucide_react6.X, { className: "h-4 w-4" }),
2520
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "sr-only", children: "Close" })
2336
2521
  ] })
2337
2522
  ]
2338
2523
  }
@@ -2342,7 +2527,7 @@ DialogContent.displayName = DialogPrimitive.Content.displayName;
2342
2527
  var DialogHeader = ({
2343
2528
  className,
2344
2529
  ...props
2345
- }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2530
+ }) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2346
2531
  "div",
2347
2532
  {
2348
2533
  className: cn(
@@ -2356,7 +2541,7 @@ DialogHeader.displayName = "DialogHeader";
2356
2541
  var DialogFooter = ({
2357
2542
  className,
2358
2543
  ...props
2359
- }) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2544
+ }) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2360
2545
  "div",
2361
2546
  {
2362
2547
  className: cn(
@@ -2367,7 +2552,7 @@ var DialogFooter = ({
2367
2552
  }
2368
2553
  );
2369
2554
  DialogFooter.displayName = "DialogFooter";
2370
- var DialogTitle = React19.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2555
+ var DialogTitle = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2371
2556
  DialogPrimitive.Title,
2372
2557
  {
2373
2558
  ref,
@@ -2379,7 +2564,7 @@ var DialogTitle = React19.forwardRef(({ className, ...props }, ref) => /* @__PUR
2379
2564
  }
2380
2565
  ));
2381
2566
  DialogTitle.displayName = DialogPrimitive.Title.displayName;
2382
- var DialogDescription = React19.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
2567
+ var DialogDescription = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2383
2568
  DialogPrimitive.Description,
2384
2569
  {
2385
2570
  ref,
@@ -2390,8 +2575,8 @@ var DialogDescription = React19.forwardRef(({ className, ...props }, ref) => /*
2390
2575
  DialogDescription.displayName = DialogPrimitive.Description.displayName;
2391
2576
 
2392
2577
  // src/components/ui/command.tsx
2393
- var import_jsx_runtime19 = require("react/jsx-runtime");
2394
- var Command = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2578
+ var import_jsx_runtime21 = require("react/jsx-runtime");
2579
+ var Command = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2395
2580
  import_cmdk.Command,
2396
2581
  {
2397
2582
  ref,
@@ -2404,11 +2589,11 @@ var Command = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__
2404
2589
  ));
2405
2590
  Command.displayName = import_cmdk.Command.displayName;
2406
2591
  var CommandDialog = ({ children, ...props }) => {
2407
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Dialog, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(DialogContent, { className: "overflow-hidden p-0", children: /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(Command, { className: "[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5", children }) }) });
2592
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(Dialog, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(DialogContent, { className: "overflow-hidden p-0", children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(Command, { className: "[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5", children }) }) });
2408
2593
  };
2409
- var CommandInput = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsxs)("div", { className: "flex items-center border-b border-border px-3", "cmdk-input-wrapper": "", children: [
2410
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(import_lucide_react7.Search, { className: "mr-2 h-4 w-4 shrink-0 opacity-50" }),
2411
- /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2594
+ var CommandInput = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { className: "flex items-center border-b border-border px-3", "cmdk-input-wrapper": "", children: [
2595
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(import_lucide_react7.Search, { className: "mr-2 h-4 w-4 shrink-0 opacity-50" }),
2596
+ /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2412
2597
  import_cmdk.Command.Input,
2413
2598
  {
2414
2599
  ref,
@@ -2421,7 +2606,7 @@ var CommandInput = React20.forwardRef(({ className, ...props }, ref) => /* @__PU
2421
2606
  )
2422
2607
  ] }));
2423
2608
  CommandInput.displayName = import_cmdk.Command.Input.displayName;
2424
- var CommandList = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2609
+ var CommandList = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2425
2610
  import_cmdk.Command.List,
2426
2611
  {
2427
2612
  ref,
@@ -2430,7 +2615,7 @@ var CommandList = React20.forwardRef(({ className, ...props }, ref) => /* @__PUR
2430
2615
  }
2431
2616
  ));
2432
2617
  CommandList.displayName = import_cmdk.Command.List.displayName;
2433
- var CommandEmpty = React20.forwardRef((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2618
+ var CommandEmpty = React22.forwardRef((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2434
2619
  import_cmdk.Command.Empty,
2435
2620
  {
2436
2621
  ref,
@@ -2439,7 +2624,7 @@ var CommandEmpty = React20.forwardRef((props, ref) => /* @__PURE__ */ (0, import
2439
2624
  }
2440
2625
  ));
2441
2626
  CommandEmpty.displayName = import_cmdk.Command.Empty.displayName;
2442
- var CommandGroup = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2627
+ var CommandGroup = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2443
2628
  import_cmdk.Command.Group,
2444
2629
  {
2445
2630
  ref,
@@ -2451,7 +2636,7 @@ var CommandGroup = React20.forwardRef(({ className, ...props }, ref) => /* @__PU
2451
2636
  }
2452
2637
  ));
2453
2638
  CommandGroup.displayName = import_cmdk.Command.Group.displayName;
2454
- var CommandSeparator = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2639
+ var CommandSeparator = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2455
2640
  import_cmdk.Command.Separator,
2456
2641
  {
2457
2642
  ref,
@@ -2460,7 +2645,7 @@ var CommandSeparator = React20.forwardRef(({ className, ...props }, ref) => /* @
2460
2645
  }
2461
2646
  ));
2462
2647
  CommandSeparator.displayName = import_cmdk.Command.Separator.displayName;
2463
- var CommandItem = React20.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2648
+ var CommandItem = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2464
2649
  import_cmdk.Command.Item,
2465
2650
  {
2466
2651
  ref,
@@ -2476,7 +2661,7 @@ var CommandShortcut = ({
2476
2661
  className,
2477
2662
  ...props
2478
2663
  }) => {
2479
- return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
2664
+ return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2480
2665
  "span",
2481
2666
  {
2482
2667
  className: cn(
@@ -2490,17 +2675,17 @@ var CommandShortcut = ({
2490
2675
  CommandShortcut.displayName = "CommandShortcut";
2491
2676
 
2492
2677
  // src/components/ui/context-menu.tsx
2493
- var React21 = __toESM(require("react"), 1);
2678
+ var React23 = __toESM(require("react"), 1);
2494
2679
  var ContextMenuPrimitive = __toESM(require("@radix-ui/react-context-menu"), 1);
2495
2680
  var import_lucide_react8 = require("lucide-react");
2496
- var import_jsx_runtime20 = require("react/jsx-runtime");
2681
+ var import_jsx_runtime22 = require("react/jsx-runtime");
2497
2682
  var ContextMenu = ContextMenuPrimitive.Root;
2498
2683
  var ContextMenuTrigger = ContextMenuPrimitive.Trigger;
2499
2684
  var ContextMenuGroup = ContextMenuPrimitive.Group;
2500
2685
  var ContextMenuPortal = ContextMenuPrimitive.Portal;
2501
2686
  var ContextMenuSub = ContextMenuPrimitive.Sub;
2502
2687
  var ContextMenuRadioGroup = ContextMenuPrimitive.RadioGroup;
2503
- var ContextMenuSubTrigger = React21.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2688
+ var ContextMenuSubTrigger = React23.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
2504
2689
  ContextMenuPrimitive.SubTrigger,
2505
2690
  {
2506
2691
  ref,
@@ -2512,12 +2697,12 @@ var ContextMenuSubTrigger = React21.forwardRef(({ className, inset, children, ..
2512
2697
  ...props,
2513
2698
  children: [
2514
2699
  children,
2515
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_lucide_react8.ChevronRight, { className: "ml-auto h-4 w-4" })
2700
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_lucide_react8.ChevronRight, { className: "ml-auto h-4 w-4" })
2516
2701
  ]
2517
2702
  }
2518
2703
  ));
2519
2704
  ContextMenuSubTrigger.displayName = ContextMenuPrimitive.SubTrigger.displayName;
2520
- var ContextMenuSubContent = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2705
+ var ContextMenuSubContent = React23.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2521
2706
  ContextMenuPrimitive.SubContent,
2522
2707
  {
2523
2708
  ref,
@@ -2529,7 +2714,7 @@ var ContextMenuSubContent = React21.forwardRef(({ className, ...props }, ref) =>
2529
2714
  }
2530
2715
  ));
2531
2716
  ContextMenuSubContent.displayName = ContextMenuPrimitive.SubContent.displayName;
2532
- var ContextMenuContent = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(ContextMenuPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2717
+ var ContextMenuContent = React23.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(ContextMenuPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2533
2718
  ContextMenuPrimitive.Content,
2534
2719
  {
2535
2720
  ref,
@@ -2541,7 +2726,7 @@ var ContextMenuContent = React21.forwardRef(({ className, ...props }, ref) => /*
2541
2726
  }
2542
2727
  ) }));
2543
2728
  ContextMenuContent.displayName = ContextMenuPrimitive.Content.displayName;
2544
- var ContextMenuItem = React21.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2729
+ var ContextMenuItem = React23.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2545
2730
  ContextMenuPrimitive.Item,
2546
2731
  {
2547
2732
  ref,
@@ -2554,7 +2739,7 @@ var ContextMenuItem = React21.forwardRef(({ className, inset, ...props }, ref) =
2554
2739
  }
2555
2740
  ));
2556
2741
  ContextMenuItem.displayName = ContextMenuPrimitive.Item.displayName;
2557
- var ContextMenuCheckboxItem = React21.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2742
+ var ContextMenuCheckboxItem = React23.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
2558
2743
  ContextMenuPrimitive.CheckboxItem,
2559
2744
  {
2560
2745
  ref,
@@ -2565,13 +2750,13 @@ var ContextMenuCheckboxItem = React21.forwardRef(({ className, children, checked
2565
2750
  checked,
2566
2751
  ...props,
2567
2752
  children: [
2568
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(ContextMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_lucide_react8.Check, { className: "h-4 w-4" }) }) }),
2753
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(ContextMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_lucide_react8.Check, { className: "h-4 w-4" }) }) }),
2569
2754
  children
2570
2755
  ]
2571
2756
  }
2572
2757
  ));
2573
2758
  ContextMenuCheckboxItem.displayName = ContextMenuPrimitive.CheckboxItem.displayName;
2574
- var ContextMenuRadioItem = React21.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
2759
+ var ContextMenuRadioItem = React23.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
2575
2760
  ContextMenuPrimitive.RadioItem,
2576
2761
  {
2577
2762
  ref,
@@ -2581,13 +2766,13 @@ var ContextMenuRadioItem = React21.forwardRef(({ className, children, ...props }
2581
2766
  ),
2582
2767
  ...props,
2583
2768
  children: [
2584
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(ContextMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_lucide_react8.Circle, { className: "h-4 w-4 fill-current" }) }) }),
2769
+ /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(ContextMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_lucide_react8.Circle, { className: "h-4 w-4 fill-current" }) }) }),
2585
2770
  children
2586
2771
  ]
2587
2772
  }
2588
2773
  ));
2589
2774
  ContextMenuRadioItem.displayName = ContextMenuPrimitive.RadioItem.displayName;
2590
- var ContextMenuLabel = React21.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2775
+ var ContextMenuLabel = React23.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2591
2776
  ContextMenuPrimitive.Label,
2592
2777
  {
2593
2778
  ref,
@@ -2600,7 +2785,7 @@ var ContextMenuLabel = React21.forwardRef(({ className, inset, ...props }, ref)
2600
2785
  }
2601
2786
  ));
2602
2787
  ContextMenuLabel.displayName = ContextMenuPrimitive.Label.displayName;
2603
- var ContextMenuSeparator = React21.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2788
+ var ContextMenuSeparator = React23.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2604
2789
  ContextMenuPrimitive.Separator,
2605
2790
  {
2606
2791
  ref,
@@ -2613,7 +2798,7 @@ var ContextMenuShortcut = ({
2613
2798
  className,
2614
2799
  ...props
2615
2800
  }) => {
2616
- return /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
2801
+ return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2617
2802
  "span",
2618
2803
  {
2619
2804
  className: cn(
@@ -2627,13 +2812,13 @@ var ContextMenuShortcut = ({
2627
2812
  ContextMenuShortcut.displayName = "ContextMenuShortcut";
2628
2813
 
2629
2814
  // src/components/ui/drawer.tsx
2630
- var React22 = __toESM(require("react"), 1);
2815
+ var React24 = __toESM(require("react"), 1);
2631
2816
  var import_vaul = require("vaul");
2632
- var import_jsx_runtime21 = require("react/jsx-runtime");
2817
+ var import_jsx_runtime23 = require("react/jsx-runtime");
2633
2818
  var Drawer = ({
2634
2819
  shouldScaleBackground = true,
2635
2820
  ...props
2636
- }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2821
+ }) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2637
2822
  import_vaul.Drawer.Root,
2638
2823
  {
2639
2824
  shouldScaleBackground,
@@ -2644,7 +2829,7 @@ Drawer.displayName = "Drawer";
2644
2829
  var DrawerTrigger = import_vaul.Drawer.Trigger;
2645
2830
  var DrawerPortal = import_vaul.Drawer.Portal;
2646
2831
  var DrawerClose = import_vaul.Drawer.Close;
2647
- var DrawerOverlay = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2832
+ var DrawerOverlay = React24.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2648
2833
  import_vaul.Drawer.Overlay,
2649
2834
  {
2650
2835
  ref,
@@ -2653,9 +2838,9 @@ var DrawerOverlay = React22.forwardRef(({ className, ...props }, ref) => /* @__P
2653
2838
  }
2654
2839
  ));
2655
2840
  DrawerOverlay.displayName = import_vaul.Drawer.Overlay.displayName;
2656
- var DrawerContent = React22.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(DrawerPortal, { children: [
2657
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(DrawerOverlay, {}),
2658
- /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
2841
+ var DrawerContent = React24.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(DrawerPortal, { children: [
2842
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(DrawerOverlay, {}),
2843
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
2659
2844
  import_vaul.Drawer.Content,
2660
2845
  {
2661
2846
  ref,
@@ -2665,7 +2850,7 @@ var DrawerContent = React22.forwardRef(({ className, children, ...props }, ref)
2665
2850
  ),
2666
2851
  ...props,
2667
2852
  children: [
2668
- /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { className: "mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted" }),
2853
+ /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("div", { className: "mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted" }),
2669
2854
  children
2670
2855
  ]
2671
2856
  }
@@ -2675,7 +2860,7 @@ DrawerContent.displayName = "DrawerContent";
2675
2860
  var DrawerHeader = ({
2676
2861
  className,
2677
2862
  ...props
2678
- }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2863
+ }) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2679
2864
  "div",
2680
2865
  {
2681
2866
  className: cn("grid gap-1.5 p-4 text-center sm:text-left", className),
@@ -2686,7 +2871,7 @@ DrawerHeader.displayName = "DrawerHeader";
2686
2871
  var DrawerFooter = ({
2687
2872
  className,
2688
2873
  ...props
2689
- }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2874
+ }) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2690
2875
  "div",
2691
2876
  {
2692
2877
  className: cn("mt-auto flex flex-col gap-2 p-4", className),
@@ -2694,7 +2879,7 @@ var DrawerFooter = ({
2694
2879
  }
2695
2880
  );
2696
2881
  DrawerFooter.displayName = "DrawerFooter";
2697
- var DrawerTitle = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2882
+ var DrawerTitle = React24.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2698
2883
  import_vaul.Drawer.Title,
2699
2884
  {
2700
2885
  ref,
@@ -2706,7 +2891,7 @@ var DrawerTitle = React22.forwardRef(({ className, ...props }, ref) => /* @__PUR
2706
2891
  }
2707
2892
  ));
2708
2893
  DrawerTitle.displayName = import_vaul.Drawer.Title.displayName;
2709
- var DrawerDescription = React22.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
2894
+ var DrawerDescription = React24.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
2710
2895
  import_vaul.Drawer.Description,
2711
2896
  {
2712
2897
  ref,
@@ -2717,17 +2902,17 @@ var DrawerDescription = React22.forwardRef(({ className, ...props }, ref) => /*
2717
2902
  DrawerDescription.displayName = import_vaul.Drawer.Description.displayName;
2718
2903
 
2719
2904
  // src/components/ui/dropdown-menu.tsx
2720
- var React23 = __toESM(require("react"), 1);
2905
+ var React25 = __toESM(require("react"), 1);
2721
2906
  var DropdownMenuPrimitive = __toESM(require("@radix-ui/react-dropdown-menu"), 1);
2722
2907
  var import_lucide_react9 = require("lucide-react");
2723
- var import_jsx_runtime22 = require("react/jsx-runtime");
2908
+ var import_jsx_runtime24 = require("react/jsx-runtime");
2724
2909
  var DropdownMenu = DropdownMenuPrimitive.Root;
2725
2910
  var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
2726
2911
  var DropdownMenuGroup = DropdownMenuPrimitive.Group;
2727
2912
  var DropdownMenuPortal = DropdownMenuPrimitive.Portal;
2728
2913
  var DropdownMenuSub = DropdownMenuPrimitive.Sub;
2729
2914
  var DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
2730
- var DropdownMenuSubTrigger = React23.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
2915
+ var DropdownMenuSubTrigger = React25.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
2731
2916
  DropdownMenuPrimitive.SubTrigger,
2732
2917
  {
2733
2918
  ref,
@@ -2739,12 +2924,12 @@ var DropdownMenuSubTrigger = React23.forwardRef(({ className, inset, children, .
2739
2924
  ...props,
2740
2925
  children: [
2741
2926
  children,
2742
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_lucide_react9.ChevronRight, { className: "ml-auto" })
2927
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_lucide_react9.ChevronRight, { className: "ml-auto" })
2743
2928
  ]
2744
2929
  }
2745
2930
  ));
2746
2931
  DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive.SubTrigger.displayName;
2747
- var DropdownMenuSubContent = React23.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2932
+ var DropdownMenuSubContent = React25.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2748
2933
  DropdownMenuPrimitive.SubContent,
2749
2934
  {
2750
2935
  ref,
@@ -2756,7 +2941,7 @@ var DropdownMenuSubContent = React23.forwardRef(({ className, ...props }, ref) =
2756
2941
  }
2757
2942
  ));
2758
2943
  DropdownMenuSubContent.displayName = DropdownMenuPrimitive.SubContent.displayName;
2759
- var DropdownMenuContent = React23.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2944
+ var DropdownMenuContent = React25.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(DropdownMenuPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2760
2945
  DropdownMenuPrimitive.Content,
2761
2946
  {
2762
2947
  ref,
@@ -2770,7 +2955,7 @@ var DropdownMenuContent = React23.forwardRef(({ className, sideOffset = 4, ...pr
2770
2955
  }
2771
2956
  ) }));
2772
2957
  DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
2773
- var DropdownMenuItem = React23.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
2958
+ var DropdownMenuItem = React25.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2774
2959
  DropdownMenuPrimitive.Item,
2775
2960
  {
2776
2961
  ref,
@@ -2783,7 +2968,7 @@ var DropdownMenuItem = React23.forwardRef(({ className, inset, ...props }, ref)
2783
2968
  }
2784
2969
  ));
2785
2970
  DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
2786
- var DropdownMenuCheckboxItem = React23.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
2971
+ var DropdownMenuCheckboxItem = React25.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
2787
2972
  DropdownMenuPrimitive.CheckboxItem,
2788
2973
  {
2789
2974
  ref,
@@ -2794,13 +2979,13 @@ var DropdownMenuCheckboxItem = React23.forwardRef(({ className, children, checke
2794
2979
  checked,
2795
2980
  ...props,
2796
2981
  children: [
2797
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(DropdownMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_lucide_react9.Check, { className: "h-4 w-4" }) }) }),
2982
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(DropdownMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_lucide_react9.Check, { className: "h-4 w-4" }) }) }),
2798
2983
  children
2799
2984
  ]
2800
2985
  }
2801
2986
  ));
2802
2987
  DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive.CheckboxItem.displayName;
2803
- var DropdownMenuRadioItem = React23.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
2988
+ var DropdownMenuRadioItem = React25.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
2804
2989
  DropdownMenuPrimitive.RadioItem,
2805
2990
  {
2806
2991
  ref,
@@ -2810,13 +2995,13 @@ var DropdownMenuRadioItem = React23.forwardRef(({ className, children, ...props
2810
2995
  ),
2811
2996
  ...props,
2812
2997
  children: [
2813
- /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(DropdownMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(import_lucide_react9.Circle, { className: "h-2 w-2 fill-current" }) }) }),
2998
+ /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(DropdownMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_lucide_react9.Circle, { className: "h-2 w-2 fill-current" }) }) }),
2814
2999
  children
2815
3000
  ]
2816
3001
  }
2817
3002
  ));
2818
3003
  DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
2819
- var DropdownMenuLabel = React23.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
3004
+ var DropdownMenuLabel = React25.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2820
3005
  DropdownMenuPrimitive.Label,
2821
3006
  {
2822
3007
  ref,
@@ -2829,7 +3014,7 @@ var DropdownMenuLabel = React23.forwardRef(({ className, inset, ...props }, ref)
2829
3014
  }
2830
3015
  ));
2831
3016
  DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
2832
- var DropdownMenuSeparator = React23.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
3017
+ var DropdownMenuSeparator = React25.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2833
3018
  DropdownMenuPrimitive.Separator,
2834
3019
  {
2835
3020
  ref,
@@ -2842,7 +3027,7 @@ var DropdownMenuShortcut = ({
2842
3027
  className,
2843
3028
  ...props
2844
3029
  }) => {
2845
- return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
3030
+ return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
2846
3031
  "span",
2847
3032
  {
2848
3033
  className: cn("ml-auto text-xs tracking-widest opacity-60", className),
@@ -2853,19 +3038,19 @@ var DropdownMenuShortcut = ({
2853
3038
  DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
2854
3039
 
2855
3040
  // src/components/ui/form.tsx
2856
- var React25 = __toESM(require("react"), 1);
3041
+ var React27 = __toESM(require("react"), 1);
2857
3042
  var import_react_slot3 = require("@radix-ui/react-slot");
2858
3043
  var import_react_hook_form = require("react-hook-form");
2859
3044
 
2860
3045
  // src/components/ui/label.tsx
2861
- var React24 = __toESM(require("react"), 1);
3046
+ var React26 = __toESM(require("react"), 1);
2862
3047
  var LabelPrimitive = __toESM(require("@radix-ui/react-label"), 1);
2863
- var import_class_variance_authority9 = require("class-variance-authority");
2864
- var import_jsx_runtime23 = require("react/jsx-runtime");
2865
- var labelVariants = (0, import_class_variance_authority9.cva)(
3048
+ var import_class_variance_authority10 = require("class-variance-authority");
3049
+ var import_jsx_runtime25 = require("react/jsx-runtime");
3050
+ var labelVariants = (0, import_class_variance_authority10.cva)(
2866
3051
  "text-sm leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
2867
3052
  );
2868
- var Label3 = React24.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
3053
+ var Label3 = React26.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
2869
3054
  LabelPrimitive.Root,
2870
3055
  {
2871
3056
  ref,
@@ -2876,17 +3061,17 @@ var Label3 = React24.forwardRef(({ className, ...props }, ref) => /* @__PURE__ *
2876
3061
  Label3.displayName = LabelPrimitive.Root.displayName;
2877
3062
 
2878
3063
  // src/components/ui/form.tsx
2879
- var import_jsx_runtime24 = require("react/jsx-runtime");
3064
+ var import_jsx_runtime26 = require("react/jsx-runtime");
2880
3065
  var Form = import_react_hook_form.FormProvider;
2881
- var FormFieldContext = React25.createContext(null);
3066
+ var FormFieldContext = React27.createContext(null);
2882
3067
  var FormField = ({
2883
3068
  ...props
2884
3069
  }) => {
2885
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(import_react_hook_form.Controller, { ...props }) });
3070
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(import_react_hook_form.Controller, { ...props }) });
2886
3071
  };
2887
3072
  var useFormField = () => {
2888
- const fieldContext = React25.useContext(FormFieldContext);
2889
- const itemContext = React25.useContext(FormItemContext);
3073
+ const fieldContext = React27.useContext(FormFieldContext);
3074
+ const itemContext = React27.useContext(FormItemContext);
2890
3075
  const { getFieldState, formState } = (0, import_react_hook_form.useFormContext)();
2891
3076
  if (!fieldContext) {
2892
3077
  throw new Error("useFormField should be used within <FormField>");
@@ -2905,15 +3090,15 @@ var useFormField = () => {
2905
3090
  ...fieldState
2906
3091
  };
2907
3092
  };
2908
- var FormItemContext = React25.createContext(null);
2909
- var FormItem = React25.forwardRef(({ className, ...props }, ref) => {
2910
- const id = React25.useId();
2911
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { ref, className: cn("space-y-2", className), ...props }) });
3093
+ var FormItemContext = React27.createContext(null);
3094
+ var FormItem = React27.forwardRef(({ className, ...props }, ref) => {
3095
+ const id = React27.useId();
3096
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("div", { ref, className: cn("space-y-2", className), ...props }) });
2912
3097
  });
2913
3098
  FormItem.displayName = "FormItem";
2914
- var FormLabel = React25.forwardRef(({ className, ...props }, ref) => {
3099
+ var FormLabel = React27.forwardRef(({ className, ...props }, ref) => {
2915
3100
  const { error, formItemId } = useFormField();
2916
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
3101
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2917
3102
  Label3,
2918
3103
  {
2919
3104
  ref,
@@ -2924,9 +3109,9 @@ var FormLabel = React25.forwardRef(({ className, ...props }, ref) => {
2924
3109
  );
2925
3110
  });
2926
3111
  FormLabel.displayName = "FormLabel";
2927
- var FormControl = React25.forwardRef(({ ...props }, ref) => {
3112
+ var FormControl = React27.forwardRef(({ ...props }, ref) => {
2928
3113
  const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
2929
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
3114
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2930
3115
  import_react_slot3.Slot,
2931
3116
  {
2932
3117
  ref,
@@ -2938,9 +3123,9 @@ var FormControl = React25.forwardRef(({ ...props }, ref) => {
2938
3123
  );
2939
3124
  });
2940
3125
  FormControl.displayName = "FormControl";
2941
- var FormDescription = React25.forwardRef(({ className, ...props }, ref) => {
3126
+ var FormDescription = React27.forwardRef(({ className, ...props }, ref) => {
2942
3127
  const { formDescriptionId } = useFormField();
2943
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
3128
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2944
3129
  "p",
2945
3130
  {
2946
3131
  ref,
@@ -2951,13 +3136,13 @@ var FormDescription = React25.forwardRef(({ className, ...props }, ref) => {
2951
3136
  );
2952
3137
  });
2953
3138
  FormDescription.displayName = "FormDescription";
2954
- var FormMessage = React25.forwardRef(({ className, children, ...props }, ref) => {
3139
+ var FormMessage = React27.forwardRef(({ className, children, ...props }, ref) => {
2955
3140
  const { error, formMessageId } = useFormField();
2956
3141
  const body = error ? String(error?.message ?? "") : children;
2957
3142
  if (!body) {
2958
3143
  return null;
2959
3144
  }
2960
- return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
3145
+ return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
2961
3146
  "p",
2962
3147
  {
2963
3148
  ref,
@@ -2971,12 +3156,12 @@ var FormMessage = React25.forwardRef(({ className, children, ...props }, ref) =>
2971
3156
  FormMessage.displayName = "FormMessage";
2972
3157
 
2973
3158
  // src/components/ui/hover-card.tsx
2974
- var React26 = __toESM(require("react"), 1);
3159
+ var React28 = __toESM(require("react"), 1);
2975
3160
  var HoverCardPrimitive = __toESM(require("@radix-ui/react-hover-card"), 1);
2976
- var import_jsx_runtime25 = require("react/jsx-runtime");
3161
+ var import_jsx_runtime27 = require("react/jsx-runtime");
2977
3162
  var HoverCard = HoverCardPrimitive.Root;
2978
3163
  var HoverCardTrigger = HoverCardPrimitive.Trigger;
2979
- var HoverCardContent = React26.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
3164
+ var HoverCardContent = React28.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
2980
3165
  HoverCardPrimitive.Content,
2981
3166
  {
2982
3167
  ref,
@@ -2992,11 +3177,11 @@ var HoverCardContent = React26.forwardRef(({ className, align = "center", sideOf
2992
3177
  HoverCardContent.displayName = HoverCardPrimitive.Content.displayName;
2993
3178
 
2994
3179
  // src/components/ui/input.tsx
2995
- var React27 = __toESM(require("react"), 1);
2996
- var import_jsx_runtime26 = require("react/jsx-runtime");
2997
- var Input = React27.forwardRef(
3180
+ var React29 = __toESM(require("react"), 1);
3181
+ var import_jsx_runtime28 = require("react/jsx-runtime");
3182
+ var Input = React29.forwardRef(
2998
3183
  ({ className, type, ...props }, ref) => {
2999
- return /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
3184
+ return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3000
3185
  "input",
3001
3186
  {
3002
3187
  type,
@@ -3013,11 +3198,11 @@ var Input = React27.forwardRef(
3013
3198
  Input.displayName = "Input";
3014
3199
 
3015
3200
  // src/components/ui/input-otp.tsx
3016
- var React28 = __toESM(require("react"), 1);
3201
+ var React30 = __toESM(require("react"), 1);
3017
3202
  var import_input_otp = require("input-otp");
3018
3203
  var import_lucide_react10 = require("lucide-react");
3019
- var import_jsx_runtime27 = require("react/jsx-runtime");
3020
- var InputOTP = React28.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
3204
+ var import_jsx_runtime29 = require("react/jsx-runtime");
3205
+ var InputOTP = React30.forwardRef(({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
3021
3206
  import_input_otp.OTPInput,
3022
3207
  {
3023
3208
  ref,
@@ -3030,12 +3215,12 @@ var InputOTP = React28.forwardRef(({ className, containerClassName, ...props },
3030
3215
  }
3031
3216
  ));
3032
3217
  InputOTP.displayName = "InputOTP";
3033
- var InputOTPGroup = React28.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { ref, className: cn("flex items-center", className), ...props }));
3218
+ var InputOTPGroup = React30.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { ref, className: cn("flex items-center", className), ...props }));
3034
3219
  InputOTPGroup.displayName = "InputOTPGroup";
3035
- var InputOTPSlot = React28.forwardRef(({ index, className, ...props }, ref) => {
3036
- const inputOTPContext = React28.useContext(import_input_otp.OTPInputContext);
3220
+ var InputOTPSlot = React30.forwardRef(({ index, className, ...props }, ref) => {
3221
+ const inputOTPContext = React30.useContext(import_input_otp.OTPInputContext);
3037
3222
  const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
3038
- return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
3223
+ return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
3039
3224
  "div",
3040
3225
  {
3041
3226
  ref,
@@ -3047,46 +3232,46 @@ var InputOTPSlot = React28.forwardRef(({ index, className, ...props }, ref) => {
3047
3232
  ...props,
3048
3233
  children: [
3049
3234
  char,
3050
- hasFakeCaret && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "pointer-events-none absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: "h-4 w-px animate-caret-blink bg-foreground duration-1000" }) })
3235
+ hasFakeCaret && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "pointer-events-none absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "h-4 w-px animate-caret-blink bg-foreground duration-1000" }) })
3051
3236
  ]
3052
3237
  }
3053
3238
  );
3054
3239
  });
3055
3240
  InputOTPSlot.displayName = "InputOTPSlot";
3056
- var InputOTPSeparator = React28.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { ref, role: "separator", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(import_lucide_react10.Minus, {}) }));
3241
+ var InputOTPSeparator = React30.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { ref, role: "separator", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(import_lucide_react10.Minus, {}) }));
3057
3242
  InputOTPSeparator.displayName = "InputOTPSeparator";
3058
3243
 
3059
3244
  // src/components/ui/menubar.tsx
3060
- var React29 = __toESM(require("react"), 1);
3245
+ var React31 = __toESM(require("react"), 1);
3061
3246
  var MenubarPrimitive = __toESM(require("@radix-ui/react-menubar"), 1);
3062
3247
  var import_lucide_react11 = require("lucide-react");
3063
- var import_jsx_runtime28 = require("react/jsx-runtime");
3248
+ var import_jsx_runtime30 = require("react/jsx-runtime");
3064
3249
  function MenubarMenu({
3065
3250
  ...props
3066
3251
  }) {
3067
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(MenubarPrimitive.Menu, { ...props });
3252
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MenubarPrimitive.Menu, { ...props });
3068
3253
  }
3069
3254
  function MenubarGroup({
3070
3255
  ...props
3071
3256
  }) {
3072
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(MenubarPrimitive.Group, { ...props });
3257
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MenubarPrimitive.Group, { ...props });
3073
3258
  }
3074
3259
  function MenubarPortal({
3075
3260
  ...props
3076
3261
  }) {
3077
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(MenubarPrimitive.Portal, { ...props });
3262
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MenubarPrimitive.Portal, { ...props });
3078
3263
  }
3079
3264
  function MenubarRadioGroup({
3080
3265
  ...props
3081
3266
  }) {
3082
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(MenubarPrimitive.RadioGroup, { ...props });
3267
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MenubarPrimitive.RadioGroup, { ...props });
3083
3268
  }
3084
3269
  function MenubarSub({
3085
3270
  ...props
3086
3271
  }) {
3087
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(MenubarPrimitive.Sub, { "data-slot": "menubar-sub", ...props });
3272
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MenubarPrimitive.Sub, { "data-slot": "menubar-sub", ...props });
3088
3273
  }
3089
- var Menubar = React29.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3274
+ var Menubar = React31.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3090
3275
  MenubarPrimitive.Root,
3091
3276
  {
3092
3277
  ref,
@@ -3098,7 +3283,7 @@ var Menubar = React29.forwardRef(({ className, ...props }, ref) => /* @__PURE__
3098
3283
  }
3099
3284
  ));
3100
3285
  Menubar.displayName = MenubarPrimitive.Root.displayName;
3101
- var MenubarTrigger = React29.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3286
+ var MenubarTrigger = React31.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3102
3287
  MenubarPrimitive.Trigger,
3103
3288
  {
3104
3289
  ref,
@@ -3110,7 +3295,7 @@ var MenubarTrigger = React29.forwardRef(({ className, ...props }, ref) => /* @__
3110
3295
  }
3111
3296
  ));
3112
3297
  MenubarTrigger.displayName = MenubarPrimitive.Trigger.displayName;
3113
- var MenubarSubTrigger = React29.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
3298
+ var MenubarSubTrigger = React31.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
3114
3299
  MenubarPrimitive.SubTrigger,
3115
3300
  {
3116
3301
  ref,
@@ -3122,12 +3307,12 @@ var MenubarSubTrigger = React29.forwardRef(({ className, inset, children, ...pro
3122
3307
  ...props,
3123
3308
  children: [
3124
3309
  children,
3125
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_lucide_react11.ChevronRight, { className: "ml-auto h-4 w-4" })
3310
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(import_lucide_react11.ChevronRight, { className: "ml-auto h-4 w-4" })
3126
3311
  ]
3127
3312
  }
3128
3313
  ));
3129
3314
  MenubarSubTrigger.displayName = MenubarPrimitive.SubTrigger.displayName;
3130
- var MenubarSubContent = React29.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3315
+ var MenubarSubContent = React31.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3131
3316
  MenubarPrimitive.SubContent,
3132
3317
  {
3133
3318
  ref,
@@ -3139,8 +3324,8 @@ var MenubarSubContent = React29.forwardRef(({ className, ...props }, ref) => /*
3139
3324
  }
3140
3325
  ));
3141
3326
  MenubarSubContent.displayName = MenubarPrimitive.SubContent.displayName;
3142
- var MenubarContent = React29.forwardRef(
3143
- ({ className, align = "start", alignOffset = -4, sideOffset = 8, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(MenubarPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3327
+ var MenubarContent = React31.forwardRef(
3328
+ ({ className, align = "start", alignOffset = -4, sideOffset = 8, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MenubarPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3144
3329
  MenubarPrimitive.Content,
3145
3330
  {
3146
3331
  ref,
@@ -3156,7 +3341,7 @@ var MenubarContent = React29.forwardRef(
3156
3341
  ) })
3157
3342
  );
3158
3343
  MenubarContent.displayName = MenubarPrimitive.Content.displayName;
3159
- var MenubarItem = React29.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3344
+ var MenubarItem = React31.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3160
3345
  MenubarPrimitive.Item,
3161
3346
  {
3162
3347
  ref,
@@ -3169,7 +3354,7 @@ var MenubarItem = React29.forwardRef(({ className, inset, ...props }, ref) => /*
3169
3354
  }
3170
3355
  ));
3171
3356
  MenubarItem.displayName = MenubarPrimitive.Item.displayName;
3172
- var MenubarCheckboxItem = React29.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
3357
+ var MenubarCheckboxItem = React31.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
3173
3358
  MenubarPrimitive.CheckboxItem,
3174
3359
  {
3175
3360
  ref,
@@ -3180,13 +3365,13 @@ var MenubarCheckboxItem = React29.forwardRef(({ className, children, checked, ..
3180
3365
  checked,
3181
3366
  ...props,
3182
3367
  children: [
3183
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(MenubarPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_lucide_react11.Check, { className: "h-4 w-4" }) }) }),
3368
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MenubarPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(import_lucide_react11.Check, { className: "h-4 w-4" }) }) }),
3184
3369
  children
3185
3370
  ]
3186
3371
  }
3187
3372
  ));
3188
3373
  MenubarCheckboxItem.displayName = MenubarPrimitive.CheckboxItem.displayName;
3189
- var MenubarRadioItem = React29.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
3374
+ var MenubarRadioItem = React31.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
3190
3375
  MenubarPrimitive.RadioItem,
3191
3376
  {
3192
3377
  ref,
@@ -3196,13 +3381,13 @@ var MenubarRadioItem = React29.forwardRef(({ className, children, ...props }, re
3196
3381
  ),
3197
3382
  ...props,
3198
3383
  children: [
3199
- /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(MenubarPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_lucide_react11.Circle, { className: "h-4 w-4 fill-current" }) }) }),
3384
+ /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(MenubarPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(import_lucide_react11.Circle, { className: "h-4 w-4 fill-current" }) }) }),
3200
3385
  children
3201
3386
  ]
3202
3387
  }
3203
3388
  ));
3204
3389
  MenubarRadioItem.displayName = MenubarPrimitive.RadioItem.displayName;
3205
- var MenubarLabel = React29.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3390
+ var MenubarLabel = React31.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3206
3391
  MenubarPrimitive.Label,
3207
3392
  {
3208
3393
  ref,
@@ -3215,7 +3400,7 @@ var MenubarLabel = React29.forwardRef(({ className, inset, ...props }, ref) => /
3215
3400
  }
3216
3401
  ));
3217
3402
  MenubarLabel.displayName = MenubarPrimitive.Label.displayName;
3218
- var MenubarSeparator = React29.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3403
+ var MenubarSeparator = React31.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3219
3404
  MenubarPrimitive.Separator,
3220
3405
  {
3221
3406
  ref,
@@ -3228,7 +3413,7 @@ var MenubarShortcut = ({
3228
3413
  className,
3229
3414
  ...props
3230
3415
  }) => {
3231
- return /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
3416
+ return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3232
3417
  "span",
3233
3418
  {
3234
3419
  className: cn(
@@ -3242,12 +3427,12 @@ var MenubarShortcut = ({
3242
3427
  MenubarShortcut.displayname = "MenubarShortcut";
3243
3428
 
3244
3429
  // src/components/ui/navigation-menu.tsx
3245
- var React30 = __toESM(require("react"), 1);
3430
+ var React32 = __toESM(require("react"), 1);
3246
3431
  var NavigationMenuPrimitive = __toESM(require("@radix-ui/react-navigation-menu"), 1);
3247
- var import_class_variance_authority10 = require("class-variance-authority");
3432
+ var import_class_variance_authority11 = require("class-variance-authority");
3248
3433
  var import_lucide_react12 = require("lucide-react");
3249
- var import_jsx_runtime29 = require("react/jsx-runtime");
3250
- var NavigationMenu = React30.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
3434
+ var import_jsx_runtime31 = require("react/jsx-runtime");
3435
+ var NavigationMenu = React32.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
3251
3436
  NavigationMenuPrimitive.Root,
3252
3437
  {
3253
3438
  ref,
@@ -3258,12 +3443,12 @@ var NavigationMenu = React30.forwardRef(({ className, children, ...props }, ref)
3258
3443
  ...props,
3259
3444
  children: [
3260
3445
  children,
3261
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(NavigationMenuViewport, {})
3446
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(NavigationMenuViewport, {})
3262
3447
  ]
3263
3448
  }
3264
3449
  ));
3265
3450
  NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName;
3266
- var NavigationMenuList = React30.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
3451
+ var NavigationMenuList = React32.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3267
3452
  NavigationMenuPrimitive.List,
3268
3453
  {
3269
3454
  ref,
@@ -3276,10 +3461,10 @@ var NavigationMenuList = React30.forwardRef(({ className, ...props }, ref) => /*
3276
3461
  ));
3277
3462
  NavigationMenuList.displayName = NavigationMenuPrimitive.List.displayName;
3278
3463
  var NavigationMenuItem = NavigationMenuPrimitive.Item;
3279
- var navigationMenuTriggerStyle = (0, import_class_variance_authority10.cva)(
3464
+ var navigationMenuTriggerStyle = (0, import_class_variance_authority11.cva)(
3280
3465
  "group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"
3281
3466
  );
3282
- var NavigationMenuTrigger = React30.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
3467
+ var NavigationMenuTrigger = React32.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
3283
3468
  NavigationMenuPrimitive.Trigger,
3284
3469
  {
3285
3470
  ref,
@@ -3288,7 +3473,7 @@ var NavigationMenuTrigger = React30.forwardRef(({ className, children, ...props
3288
3473
  children: [
3289
3474
  children,
3290
3475
  " ",
3291
- /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
3476
+ /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3292
3477
  import_lucide_react12.ChevronDown,
3293
3478
  {
3294
3479
  className: "relative top-[1px] ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180",
@@ -3299,7 +3484,7 @@ var NavigationMenuTrigger = React30.forwardRef(({ className, children, ...props
3299
3484
  }
3300
3485
  ));
3301
3486
  NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName;
3302
- var NavigationMenuContent = React30.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
3487
+ var NavigationMenuContent = React32.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3303
3488
  NavigationMenuPrimitive.Content,
3304
3489
  {
3305
3490
  ref,
@@ -3312,7 +3497,7 @@ var NavigationMenuContent = React30.forwardRef(({ className, ...props }, ref) =>
3312
3497
  ));
3313
3498
  NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName;
3314
3499
  var NavigationMenuLink = NavigationMenuPrimitive.Link;
3315
- var NavigationMenuViewport = React30.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
3500
+ var NavigationMenuViewport = React32.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3316
3501
  NavigationMenuPrimitive.Viewport,
3317
3502
  {
3318
3503
  className: cn(
@@ -3324,7 +3509,7 @@ var NavigationMenuViewport = React30.forwardRef(({ className, ...props }, ref) =
3324
3509
  }
3325
3510
  ) }));
3326
3511
  NavigationMenuViewport.displayName = NavigationMenuPrimitive.Viewport.displayName;
3327
- var NavigationMenuIndicator = React30.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
3512
+ var NavigationMenuIndicator = React32.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3328
3513
  NavigationMenuPrimitive.Indicator,
3329
3514
  {
3330
3515
  ref,
@@ -3333,16 +3518,16 @@ var NavigationMenuIndicator = React30.forwardRef(({ className, ...props }, ref)
3333
3518
  className
3334
3519
  ),
3335
3520
  ...props,
3336
- children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md" })
3521
+ children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: "relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md" })
3337
3522
  }
3338
3523
  ));
3339
3524
  NavigationMenuIndicator.displayName = NavigationMenuPrimitive.Indicator.displayName;
3340
3525
 
3341
3526
  // src/components/ui/pagination.tsx
3342
- var React31 = __toESM(require("react"), 1);
3527
+ var React33 = __toESM(require("react"), 1);
3343
3528
  var import_lucide_react13 = require("lucide-react");
3344
- var import_jsx_runtime30 = require("react/jsx-runtime");
3345
- var Pagination = ({ className, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3529
+ var import_jsx_runtime32 = require("react/jsx-runtime");
3530
+ var Pagination = ({ className, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3346
3531
  "nav",
3347
3532
  {
3348
3533
  role: "navigation",
@@ -3352,7 +3537,7 @@ var Pagination = ({ className, ...props }) => /* @__PURE__ */ (0, import_jsx_run
3352
3537
  }
3353
3538
  );
3354
3539
  Pagination.displayName = "Pagination";
3355
- var PaginationContent = React31.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3540
+ var PaginationContent = React33.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3356
3541
  "ul",
3357
3542
  {
3358
3543
  ref,
@@ -3361,14 +3546,14 @@ var PaginationContent = React31.forwardRef(({ className, ...props }, ref) => /*
3361
3546
  }
3362
3547
  ));
3363
3548
  PaginationContent.displayName = "PaginationContent";
3364
- var PaginationItem = React31.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("li", { ref, className: cn("", className), ...props }));
3549
+ var PaginationItem = React33.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("li", { ref, className: cn("", className), ...props }));
3365
3550
  PaginationItem.displayName = "PaginationItem";
3366
3551
  var PaginationLink = ({
3367
3552
  className,
3368
3553
  isActive,
3369
3554
  size = "icon",
3370
3555
  ...props
3371
- }) => /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(
3556
+ }) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3372
3557
  "a",
3373
3558
  {
3374
3559
  "aria-current": isActive ? "page" : void 0,
@@ -3386,7 +3571,7 @@ PaginationLink.displayName = "PaginationLink";
3386
3571
  var PaginationPrevious = ({
3387
3572
  className,
3388
3573
  ...props
3389
- }) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
3574
+ }) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
3390
3575
  PaginationLink,
3391
3576
  {
3392
3577
  "aria-label": "Go to previous page",
@@ -3394,8 +3579,8 @@ var PaginationPrevious = ({
3394
3579
  className: cn("gap-1 pl-2.5", className),
3395
3580
  ...props,
3396
3581
  children: [
3397
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(import_lucide_react13.ChevronLeft, { className: "h-4 w-4" }),
3398
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { children: "Previous" })
3582
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_lucide_react13.ChevronLeft, { className: "h-4 w-4" }),
3583
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { children: "Previous" })
3399
3584
  ]
3400
3585
  }
3401
3586
  );
@@ -3403,7 +3588,7 @@ PaginationPrevious.displayName = "PaginationPrevious";
3403
3588
  var PaginationNext = ({
3404
3589
  className,
3405
3590
  ...props
3406
- }) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
3591
+ }) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
3407
3592
  PaginationLink,
3408
3593
  {
3409
3594
  "aria-label": "Go to next page",
@@ -3411,8 +3596,8 @@ var PaginationNext = ({
3411
3596
  className: cn("gap-1 pr-2.5", className),
3412
3597
  ...props,
3413
3598
  children: [
3414
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { children: "Next" }),
3415
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(import_lucide_react13.ChevronRight, { className: "h-4 w-4" })
3599
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { children: "Next" }),
3600
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_lucide_react13.ChevronRight, { className: "h-4 w-4" })
3416
3601
  ]
3417
3602
  }
3418
3603
  );
@@ -3420,28 +3605,28 @@ PaginationNext.displayName = "PaginationNext";
3420
3605
  var PaginationEllipsis = ({
3421
3606
  className,
3422
3607
  ...props
3423
- }) => /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
3608
+ }) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
3424
3609
  "span",
3425
3610
  {
3426
3611
  "aria-hidden": true,
3427
3612
  className: cn("flex h-9 w-9 items-center justify-center", className),
3428
3613
  ...props,
3429
3614
  children: [
3430
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(import_lucide_react13.MoreHorizontal, { className: "h-4 w-4" }),
3431
- /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: "sr-only", children: "More pages" })
3615
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_lucide_react13.MoreHorizontal, { className: "h-4 w-4" }),
3616
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("span", { className: "sr-only", children: "More pages" })
3432
3617
  ]
3433
3618
  }
3434
3619
  );
3435
3620
  PaginationEllipsis.displayName = "PaginationEllipsis";
3436
3621
 
3437
3622
  // src/components/ui/popover.tsx
3438
- var React32 = __toESM(require("react"), 1);
3623
+ var React34 = __toESM(require("react"), 1);
3439
3624
  var PopoverPrimitive = __toESM(require("@radix-ui/react-popover"), 1);
3440
- var import_jsx_runtime31 = require("react/jsx-runtime");
3625
+ var import_jsx_runtime33 = require("react/jsx-runtime");
3441
3626
  var Popover = PopoverPrimitive.Root;
3442
3627
  var PopoverTrigger = PopoverPrimitive.Trigger;
3443
3628
  var PopoverAnchor = PopoverPrimitive.Anchor;
3444
- var PopoverContent = React32.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
3629
+ var PopoverContent = React34.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
3445
3630
  PopoverPrimitive.Content,
3446
3631
  {
3447
3632
  ref,
@@ -3457,10 +3642,10 @@ var PopoverContent = React32.forwardRef(({ className, align = "center", sideOffs
3457
3642
  PopoverContent.displayName = PopoverPrimitive.Content.displayName;
3458
3643
 
3459
3644
  // src/components/ui/progress.tsx
3460
- var React33 = __toESM(require("react"), 1);
3645
+ var React35 = __toESM(require("react"), 1);
3461
3646
  var ProgressPrimitive = __toESM(require("@radix-ui/react-progress"), 1);
3462
- var import_jsx_runtime32 = require("react/jsx-runtime");
3463
- var Progress = React33.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3647
+ var import_jsx_runtime34 = require("react/jsx-runtime");
3648
+ var Progress = React35.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
3464
3649
  ProgressPrimitive.Root,
3465
3650
  {
3466
3651
  ref,
@@ -3469,7 +3654,7 @@ var Progress = React33.forwardRef(({ className, value, ...props }, ref) => /* @_
3469
3654
  className
3470
3655
  ),
3471
3656
  ...props,
3472
- children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3657
+ children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
3473
3658
  ProgressPrimitive.Indicator,
3474
3659
  {
3475
3660
  className: "h-full w-full flex-1 bg-primary transition-all",
@@ -3481,12 +3666,12 @@ var Progress = React33.forwardRef(({ className, value, ...props }, ref) => /* @_
3481
3666
  Progress.displayName = ProgressPrimitive.Root.displayName;
3482
3667
 
3483
3668
  // src/components/ui/radio-group.tsx
3484
- var React34 = __toESM(require("react"), 1);
3669
+ var React36 = __toESM(require("react"), 1);
3485
3670
  var RadioGroupPrimitive = __toESM(require("@radix-ui/react-radio-group"), 1);
3486
3671
  var import_lucide_react14 = require("lucide-react");
3487
- var import_jsx_runtime33 = require("react/jsx-runtime");
3488
- var RadioGroup4 = React34.forwardRef(({ className, ...props }, ref) => {
3489
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
3672
+ var import_jsx_runtime35 = require("react/jsx-runtime");
3673
+ var RadioGroup4 = React36.forwardRef(({ className, ...props }, ref) => {
3674
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3490
3675
  RadioGroupPrimitive.Root,
3491
3676
  {
3492
3677
  className: cn("grid gap-2", className),
@@ -3496,8 +3681,8 @@ var RadioGroup4 = React34.forwardRef(({ className, ...props }, ref) => {
3496
3681
  );
3497
3682
  });
3498
3683
  RadioGroup4.displayName = RadioGroupPrimitive.Root.displayName;
3499
- var RadioGroupItem = React34.forwardRef(({ className, ...props }, ref) => {
3500
- return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
3684
+ var RadioGroupItem = React36.forwardRef(({ className, ...props }, ref) => {
3685
+ return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3501
3686
  RadioGroupPrimitive.Item,
3502
3687
  {
3503
3688
  ref,
@@ -3506,7 +3691,7 @@ var RadioGroupItem = React34.forwardRef(({ className, ...props }, ref) => {
3506
3691
  className
3507
3692
  ),
3508
3693
  ...props,
3509
- children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(RadioGroupPrimitive.Indicator, { className: "flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_lucide_react14.Circle, { className: "h-3.5 w-3.5 fill-primary" }) })
3694
+ children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(RadioGroupPrimitive.Indicator, { className: "flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(import_lucide_react14.Circle, { className: "h-3.5 w-3.5 fill-primary" }) })
3510
3695
  }
3511
3696
  );
3512
3697
  });
@@ -3515,11 +3700,11 @@ RadioGroupItem.displayName = RadioGroupPrimitive.Item.displayName;
3515
3700
  // src/components/ui/resizable.tsx
3516
3701
  var import_lucide_react15 = require("lucide-react");
3517
3702
  var import_react_resizable_panels = require("react-resizable-panels");
3518
- var import_jsx_runtime34 = require("react/jsx-runtime");
3703
+ var import_jsx_runtime36 = require("react/jsx-runtime");
3519
3704
  var ResizablePanelGroup = ({
3520
3705
  className,
3521
3706
  ...props
3522
- }) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
3707
+ }) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
3523
3708
  import_react_resizable_panels.Group,
3524
3709
  {
3525
3710
  className: cn(
@@ -3534,7 +3719,7 @@ var ResizableHandle = ({
3534
3719
  withHandle,
3535
3720
  className,
3536
3721
  ...props
3537
- }) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
3722
+ }) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
3538
3723
  import_react_resizable_panels.Separator,
3539
3724
  {
3540
3725
  className: cn(
@@ -3542,29 +3727,29 @@ var ResizableHandle = ({
3542
3727
  className
3543
3728
  ),
3544
3729
  ...props,
3545
- children: withHandle && /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: "z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border", children: /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(import_lucide_react15.GripVertical, { className: "h-2.5 w-2.5" }) })
3730
+ children: withHandle && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: "z-10 flex h-4 w-3 items-center justify-center rounded-sm border bg-border", children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(import_lucide_react15.GripVertical, { className: "h-2.5 w-2.5" }) })
3546
3731
  }
3547
3732
  );
3548
3733
 
3549
3734
  // src/components/ui/scroll-area.tsx
3550
- var React35 = __toESM(require("react"), 1);
3735
+ var React37 = __toESM(require("react"), 1);
3551
3736
  var ScrollAreaPrimitive = __toESM(require("@radix-ui/react-scroll-area"), 1);
3552
- var import_jsx_runtime35 = require("react/jsx-runtime");
3553
- var ScrollArea = React35.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
3737
+ var import_jsx_runtime37 = require("react/jsx-runtime");
3738
+ var ScrollArea = React37.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
3554
3739
  ScrollAreaPrimitive.Root,
3555
3740
  {
3556
3741
  ref,
3557
3742
  className: cn("relative overflow-hidden", className),
3558
3743
  ...props,
3559
3744
  children: [
3560
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(ScrollAreaPrimitive.Viewport, { className: "h-full w-full rounded-[inherit]", children }),
3561
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(ScrollBar, {}),
3562
- /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(ScrollAreaPrimitive.Corner, {})
3745
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(ScrollAreaPrimitive.Viewport, { className: "h-full w-full rounded-[inherit]", children }),
3746
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(ScrollBar, {}),
3747
+ /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(ScrollAreaPrimitive.Corner, {})
3563
3748
  ]
3564
3749
  }
3565
3750
  ));
3566
3751
  ScrollArea.displayName = ScrollAreaPrimitive.Root.displayName;
3567
- var ScrollBar = React35.forwardRef(({ className, orientation = "vertical", ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
3752
+ var ScrollBar = React37.forwardRef(({ className, orientation = "vertical", ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
3568
3753
  ScrollAreaPrimitive.ScrollAreaScrollbar,
3569
3754
  {
3570
3755
  ref,
@@ -3576,20 +3761,20 @@ var ScrollBar = React35.forwardRef(({ className, orientation = "vertical", ...pr
3576
3761
  className
3577
3762
  ),
3578
3763
  ...props,
3579
- children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(ScrollAreaPrimitive.ScrollAreaThumb, { className: "relative flex-1 rounded-full bg-border" })
3764
+ children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(ScrollAreaPrimitive.ScrollAreaThumb, { className: "relative flex-1 rounded-full bg-border" })
3580
3765
  }
3581
3766
  ));
3582
3767
  ScrollBar.displayName = ScrollAreaPrimitive.ScrollAreaScrollbar.displayName;
3583
3768
 
3584
3769
  // src/components/ui/select.tsx
3585
- var React36 = __toESM(require("react"), 1);
3770
+ var React38 = __toESM(require("react"), 1);
3586
3771
  var SelectPrimitive = __toESM(require("@radix-ui/react-select"), 1);
3587
3772
  var import_lucide_react16 = require("lucide-react");
3588
- var import_jsx_runtime36 = require("react/jsx-runtime");
3773
+ var import_jsx_runtime38 = require("react/jsx-runtime");
3589
3774
  var Select = SelectPrimitive.Root;
3590
3775
  var SelectGroup = SelectPrimitive.Group;
3591
3776
  var SelectValue = SelectPrimitive.Value;
3592
- var SelectTrigger = React36.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
3777
+ var SelectTrigger = React38.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
3593
3778
  SelectPrimitive.Trigger,
3594
3779
  {
3595
3780
  ref,
@@ -3600,12 +3785,12 @@ var SelectTrigger = React36.forwardRef(({ className, children, ...props }, ref)
3600
3785
  ...props,
3601
3786
  children: [
3602
3787
  children,
3603
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(import_lucide_react16.ChevronDown, { className: "h-4 w-4 opacity-50" }) })
3788
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_lucide_react16.ChevronDown, { className: "h-4 w-4 opacity-50" }) })
3604
3789
  ]
3605
3790
  }
3606
3791
  ));
3607
3792
  SelectTrigger.displayName = SelectPrimitive.Trigger.displayName;
3608
- var SelectScrollUpButton = React36.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
3793
+ var SelectScrollUpButton = React38.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3609
3794
  SelectPrimitive.ScrollUpButton,
3610
3795
  {
3611
3796
  ref,
@@ -3614,11 +3799,11 @@ var SelectScrollUpButton = React36.forwardRef(({ className, ...props }, ref) =>
3614
3799
  className
3615
3800
  ),
3616
3801
  ...props,
3617
- children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(import_lucide_react16.ChevronUp, { className: "h-4 w-4" })
3802
+ children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_lucide_react16.ChevronUp, { className: "h-4 w-4" })
3618
3803
  }
3619
3804
  ));
3620
3805
  SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName;
3621
- var SelectScrollDownButton = React36.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
3806
+ var SelectScrollDownButton = React38.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3622
3807
  SelectPrimitive.ScrollDownButton,
3623
3808
  {
3624
3809
  ref,
@@ -3627,11 +3812,11 @@ var SelectScrollDownButton = React36.forwardRef(({ className, ...props }, ref) =
3627
3812
  className
3628
3813
  ),
3629
3814
  ...props,
3630
- children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(import_lucide_react16.ChevronDown, { className: "h-4 w-4" })
3815
+ children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_lucide_react16.ChevronDown, { className: "h-4 w-4" })
3631
3816
  }
3632
3817
  ));
3633
3818
  SelectScrollDownButton.displayName = SelectPrimitive.ScrollDownButton.displayName;
3634
- var SelectContent = React36.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(SelectPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
3819
+ var SelectContent = React38.forwardRef(({ className, children, position = "popper", ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(SelectPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
3635
3820
  SelectPrimitive.Content,
3636
3821
  {
3637
3822
  ref,
@@ -3643,8 +3828,8 @@ var SelectContent = React36.forwardRef(({ className, children, position = "poppe
3643
3828
  position,
3644
3829
  ...props,
3645
3830
  children: [
3646
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(SelectScrollUpButton, {}),
3647
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
3831
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(SelectScrollUpButton, {}),
3832
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3648
3833
  SelectPrimitive.Viewport,
3649
3834
  {
3650
3835
  className: cn(
@@ -3654,12 +3839,12 @@ var SelectContent = React36.forwardRef(({ className, children, position = "poppe
3654
3839
  children
3655
3840
  }
3656
3841
  ),
3657
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(SelectScrollDownButton, {})
3842
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(SelectScrollDownButton, {})
3658
3843
  ]
3659
3844
  }
3660
3845
  ) }));
3661
3846
  SelectContent.displayName = SelectPrimitive.Content.displayName;
3662
- var SelectLabel = React36.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
3847
+ var SelectLabel = React38.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3663
3848
  SelectPrimitive.Label,
3664
3849
  {
3665
3850
  ref,
@@ -3668,7 +3853,7 @@ var SelectLabel = React36.forwardRef(({ className, ...props }, ref) => /* @__PUR
3668
3853
  }
3669
3854
  ));
3670
3855
  SelectLabel.displayName = SelectPrimitive.Label.displayName;
3671
- var SelectItem = React36.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
3856
+ var SelectItem = React38.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
3672
3857
  SelectPrimitive.Item,
3673
3858
  {
3674
3859
  ref,
@@ -3678,13 +3863,13 @@ var SelectItem = React36.forwardRef(({ className, children, ...props }, ref) =>
3678
3863
  ),
3679
3864
  ...props,
3680
3865
  children: [
3681
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("span", { className: "absolute right-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(SelectPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(import_lucide_react16.Check, { className: "h-4 w-4" }) }) }),
3682
- /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(SelectPrimitive.ItemText, { children })
3866
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("span", { className: "absolute right-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(SelectPrimitive.ItemIndicator, { children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_lucide_react16.Check, { className: "h-4 w-4" }) }) }),
3867
+ /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(SelectPrimitive.ItemText, { children })
3683
3868
  ]
3684
3869
  }
3685
3870
  ));
3686
3871
  SelectItem.displayName = SelectPrimitive.Item.displayName;
3687
- var SelectSeparator = React36.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
3872
+ var SelectSeparator = React38.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3688
3873
  SelectPrimitive.Separator,
3689
3874
  {
3690
3875
  ref,
@@ -3695,11 +3880,11 @@ var SelectSeparator = React36.forwardRef(({ className, ...props }, ref) => /* @_
3695
3880
  SelectSeparator.displayName = SelectPrimitive.Separator.displayName;
3696
3881
 
3697
3882
  // src/components/ui/separator.tsx
3698
- var React37 = __toESM(require("react"), 1);
3883
+ var React39 = __toESM(require("react"), 1);
3699
3884
  var SeparatorPrimitive = __toESM(require("@radix-ui/react-separator"), 1);
3700
- var import_jsx_runtime37 = require("react/jsx-runtime");
3701
- var Separator6 = React37.forwardRef(
3702
- ({ className, orientation = "horizontal", decorative = true, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
3885
+ var import_jsx_runtime39 = require("react/jsx-runtime");
3886
+ var Separator6 = React39.forwardRef(
3887
+ ({ className, orientation = "horizontal", decorative = true, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
3703
3888
  SeparatorPrimitive.Root,
3704
3889
  {
3705
3890
  ref,
@@ -3717,16 +3902,16 @@ var Separator6 = React37.forwardRef(
3717
3902
  Separator6.displayName = SeparatorPrimitive.Root.displayName;
3718
3903
 
3719
3904
  // src/components/ui/sheet.tsx
3720
- var React38 = __toESM(require("react"), 1);
3905
+ var React40 = __toESM(require("react"), 1);
3721
3906
  var SheetPrimitive = __toESM(require("@radix-ui/react-dialog"), 1);
3722
- var import_class_variance_authority11 = require("class-variance-authority");
3907
+ var import_class_variance_authority12 = require("class-variance-authority");
3723
3908
  var import_lucide_react17 = require("lucide-react");
3724
- var import_jsx_runtime38 = require("react/jsx-runtime");
3909
+ var import_jsx_runtime40 = require("react/jsx-runtime");
3725
3910
  var Sheet = SheetPrimitive.Root;
3726
3911
  var SheetTrigger = SheetPrimitive.Trigger;
3727
3912
  var SheetClose = SheetPrimitive.Close;
3728
3913
  var SheetPortal = SheetPrimitive.Portal;
3729
- var SheetOverlay = React38.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3914
+ var SheetOverlay = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
3730
3915
  SheetPrimitive.Overlay,
3731
3916
  {
3732
3917
  className: cn(
@@ -3738,7 +3923,7 @@ var SheetOverlay = React38.forwardRef(({ className, ...props }, ref) => /* @__PU
3738
3923
  }
3739
3924
  ));
3740
3925
  SheetOverlay.displayName = SheetPrimitive.Overlay.displayName;
3741
- var sheetVariants = (0, import_class_variance_authority11.cva)(
3926
+ var sheetVariants = (0, import_class_variance_authority12.cva)(
3742
3927
  "fixed z-50 gap-4 bg-background p-6 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500 data-[state=open]:animate-in data-[state=closed]:animate-out",
3743
3928
  {
3744
3929
  variants: {
@@ -3754,18 +3939,18 @@ var sheetVariants = (0, import_class_variance_authority11.cva)(
3754
3939
  }
3755
3940
  }
3756
3941
  );
3757
- var SheetContent = React38.forwardRef(({ side = "right", className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(SheetPortal, { children: [
3758
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(SheetOverlay, {}),
3759
- /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
3942
+ var SheetContent = React40.forwardRef(({ side = "right", className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(SheetPortal, { children: [
3943
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(SheetOverlay, {}),
3944
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
3760
3945
  SheetPrimitive.Content,
3761
3946
  {
3762
3947
  ref,
3763
3948
  className: cn(sheetVariants({ side }), className),
3764
3949
  ...props,
3765
3950
  children: [
3766
- /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(SheetPrimitive.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-secondary", children: [
3767
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_lucide_react17.X, { className: "h-4 w-4" }),
3768
- /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("span", { className: "sr-only", children: "Close" })
3951
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(SheetPrimitive.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-secondary", children: [
3952
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_lucide_react17.X, { className: "h-4 w-4" }),
3953
+ /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: "sr-only", children: "Close" })
3769
3954
  ] }),
3770
3955
  children
3771
3956
  ]
@@ -3776,7 +3961,7 @@ SheetContent.displayName = SheetPrimitive.Content.displayName;
3776
3961
  var SheetHeader = ({
3777
3962
  className,
3778
3963
  ...props
3779
- }) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3964
+ }) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
3780
3965
  "div",
3781
3966
  {
3782
3967
  className: cn(
@@ -3790,7 +3975,7 @@ SheetHeader.displayName = "SheetHeader";
3790
3975
  var SheetFooter = ({
3791
3976
  className,
3792
3977
  ...props
3793
- }) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3978
+ }) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
3794
3979
  "div",
3795
3980
  {
3796
3981
  className: cn(
@@ -3801,7 +3986,7 @@ var SheetFooter = ({
3801
3986
  }
3802
3987
  );
3803
3988
  SheetFooter.displayName = "SheetFooter";
3804
- var SheetTitle = React38.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3989
+ var SheetTitle = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
3805
3990
  SheetPrimitive.Title,
3806
3991
  {
3807
3992
  ref,
@@ -3810,7 +3995,7 @@ var SheetTitle = React38.forwardRef(({ className, ...props }, ref) => /* @__PURE
3810
3995
  }
3811
3996
  ));
3812
3997
  SheetTitle.displayName = SheetPrimitive.Title.displayName;
3813
- var SheetDescription = React38.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
3998
+ var SheetDescription = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
3814
3999
  SheetPrimitive.Description,
3815
4000
  {
3816
4001
  ref,
@@ -3821,18 +4006,18 @@ var SheetDescription = React38.forwardRef(({ className, ...props }, ref) => /* @
3821
4006
  SheetDescription.displayName = SheetPrimitive.Description.displayName;
3822
4007
 
3823
4008
  // src/components/ui/sidebar.tsx
3824
- var React40 = __toESM(require("react"), 1);
4009
+ var React42 = __toESM(require("react"), 1);
3825
4010
  var import_react_slot4 = require("@radix-ui/react-slot");
3826
- var import_class_variance_authority12 = require("class-variance-authority");
4011
+ var import_class_variance_authority13 = require("class-variance-authority");
3827
4012
  var import_lucide_react18 = require("lucide-react");
3828
4013
 
3829
4014
  // src/components/ui/skeleton.tsx
3830
- var import_jsx_runtime39 = require("react/jsx-runtime");
4015
+ var import_jsx_runtime41 = require("react/jsx-runtime");
3831
4016
  function Skeleton({
3832
4017
  className,
3833
4018
  ...props
3834
4019
  }) {
3835
- return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
4020
+ return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
3836
4021
  "div",
3837
4022
  {
3838
4023
  className: cn("animate-pulse rounded-md bg-primary/10", className),
@@ -3842,13 +4027,13 @@ function Skeleton({
3842
4027
  }
3843
4028
 
3844
4029
  // src/components/ui/tooltip.tsx
3845
- var React39 = __toESM(require("react"), 1);
4030
+ var React41 = __toESM(require("react"), 1);
3846
4031
  var TooltipPrimitive = __toESM(require("@radix-ui/react-tooltip"), 1);
3847
- var import_jsx_runtime40 = require("react/jsx-runtime");
4032
+ var import_jsx_runtime42 = require("react/jsx-runtime");
3848
4033
  var TooltipProvider = TooltipPrimitive.Provider;
3849
4034
  var Tooltip2 = TooltipPrimitive.Root;
3850
4035
  var TooltipTrigger = TooltipPrimitive.Trigger;
3851
- var TooltipContent = React39.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(TooltipPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
4036
+ var TooltipContent = React41.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(TooltipPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
3852
4037
  TooltipPrimitive.Content,
3853
4038
  {
3854
4039
  ref,
@@ -3863,22 +4048,22 @@ var TooltipContent = React39.forwardRef(({ className, sideOffset = 4, ...props }
3863
4048
  TooltipContent.displayName = TooltipPrimitive.Content.displayName;
3864
4049
 
3865
4050
  // src/components/ui/sidebar.tsx
3866
- var import_jsx_runtime41 = require("react/jsx-runtime");
4051
+ var import_jsx_runtime43 = require("react/jsx-runtime");
3867
4052
  var SIDEBAR_COOKIE_NAME = "sidebar_state";
3868
4053
  var SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7;
3869
4054
  var SIDEBAR_WIDTH = "16rem";
3870
4055
  var SIDEBAR_WIDTH_MOBILE = "18rem";
3871
4056
  var SIDEBAR_WIDTH_ICON = "3rem";
3872
4057
  var SIDEBAR_KEYBOARD_SHORTCUT = "b";
3873
- var SidebarContext = React40.createContext(null);
4058
+ var SidebarContext = React42.createContext(null);
3874
4059
  function useSidebar() {
3875
- const context = React40.useContext(SidebarContext);
4060
+ const context = React42.useContext(SidebarContext);
3876
4061
  if (!context) {
3877
4062
  throw new Error("useSidebar must be used within a SidebarProvider.");
3878
4063
  }
3879
4064
  return context;
3880
4065
  }
3881
- var SidebarProvider = React40.forwardRef(
4066
+ var SidebarProvider = React42.forwardRef(
3882
4067
  ({
3883
4068
  defaultOpen = true,
3884
4069
  open: openProp,
@@ -3889,10 +4074,10 @@ var SidebarProvider = React40.forwardRef(
3889
4074
  ...props
3890
4075
  }, ref) => {
3891
4076
  const isMobile = useIsMobile();
3892
- const [openMobile, setOpenMobile] = React40.useState(false);
3893
- const [_open, _setOpen] = React40.useState(defaultOpen);
4077
+ const [openMobile, setOpenMobile] = React42.useState(false);
4078
+ const [_open, _setOpen] = React42.useState(defaultOpen);
3894
4079
  const open = openProp ?? _open;
3895
- const setOpen = React40.useCallback(
4080
+ const setOpen = React42.useCallback(
3896
4081
  (value) => {
3897
4082
  const openState = typeof value === "function" ? value(open) : value;
3898
4083
  if (setOpenProp) {
@@ -3904,10 +4089,10 @@ var SidebarProvider = React40.forwardRef(
3904
4089
  },
3905
4090
  [setOpenProp, open]
3906
4091
  );
3907
- const toggleSidebar = React40.useCallback(() => {
4092
+ const toggleSidebar = React42.useCallback(() => {
3908
4093
  return isMobile ? setOpenMobile((open2) => !open2) : setOpen((open2) => !open2);
3909
4094
  }, [isMobile, setOpen, setOpenMobile]);
3910
- React40.useEffect(() => {
4095
+ React42.useEffect(() => {
3911
4096
  const handleKeyDown = (event) => {
3912
4097
  if (event.key === SIDEBAR_KEYBOARD_SHORTCUT && (event.metaKey || event.ctrlKey)) {
3913
4098
  event.preventDefault();
@@ -3918,7 +4103,7 @@ var SidebarProvider = React40.forwardRef(
3918
4103
  return () => window.removeEventListener("keydown", handleKeyDown);
3919
4104
  }, [toggleSidebar]);
3920
4105
  const state = open ? "expanded" : "collapsed";
3921
- const contextValue = React40.useMemo(
4106
+ const contextValue = React42.useMemo(
3922
4107
  () => ({
3923
4108
  state,
3924
4109
  open,
@@ -3930,7 +4115,7 @@ var SidebarProvider = React40.forwardRef(
3930
4115
  }),
3931
4116
  [state, open, setOpen, isMobile, openMobile, setOpenMobile, toggleSidebar]
3932
4117
  );
3933
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(SidebarContext.Provider, { value: contextValue, children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(TooltipProvider, { delayDuration: 0, children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4118
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(SidebarContext.Provider, { value: contextValue, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(TooltipProvider, { delayDuration: 0, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
3934
4119
  "div",
3935
4120
  {
3936
4121
  style: {
@@ -3950,7 +4135,7 @@ var SidebarProvider = React40.forwardRef(
3950
4135
  }
3951
4136
  );
3952
4137
  SidebarProvider.displayName = "SidebarProvider";
3953
- var Sidebar = React40.forwardRef(
4138
+ var Sidebar = React42.forwardRef(
3954
4139
  ({
3955
4140
  side = "left",
3956
4141
  variant = "sidebar",
@@ -3961,7 +4146,7 @@ var Sidebar = React40.forwardRef(
3961
4146
  }, ref) => {
3962
4147
  const { isMobile, state, openMobile, setOpenMobile } = useSidebar();
3963
4148
  if (collapsible === "none") {
3964
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4149
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
3965
4150
  "div",
3966
4151
  {
3967
4152
  className: cn(
@@ -3975,7 +4160,7 @@ var Sidebar = React40.forwardRef(
3975
4160
  );
3976
4161
  }
3977
4162
  if (isMobile) {
3978
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(Sheet, { open: openMobile, onOpenChange: setOpenMobile, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
4163
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Sheet, { open: openMobile, onOpenChange: setOpenMobile, ...props, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
3979
4164
  SheetContent,
3980
4165
  {
3981
4166
  "data-sidebar": "sidebar",
@@ -3986,16 +4171,16 @@ var Sidebar = React40.forwardRef(
3986
4171
  },
3987
4172
  side,
3988
4173
  children: [
3989
- /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(SheetHeader, { className: "sr-only", children: [
3990
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(SheetTitle, { children: "Sidebar" }),
3991
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(SheetDescription, { children: "Displays the mobile sidebar." })
4174
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(SheetHeader, { className: "sr-only", children: [
4175
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(SheetTitle, { children: "Sidebar" }),
4176
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(SheetDescription, { children: "Displays the mobile sidebar." })
3992
4177
  ] }),
3993
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { className: "flex h-full w-full flex-col", children })
4178
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: "flex h-full w-full flex-col", children })
3994
4179
  ]
3995
4180
  }
3996
4181
  ) });
3997
4182
  }
3998
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
4183
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
3999
4184
  "div",
4000
4185
  {
4001
4186
  ref,
@@ -4005,7 +4190,7 @@ var Sidebar = React40.forwardRef(
4005
4190
  "data-variant": variant,
4006
4191
  "data-side": side,
4007
4192
  children: [
4008
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4193
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4009
4194
  "div",
4010
4195
  {
4011
4196
  className: cn(
@@ -4016,7 +4201,7 @@ var Sidebar = React40.forwardRef(
4016
4201
  )
4017
4202
  }
4018
4203
  ),
4019
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4204
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4020
4205
  "div",
4021
4206
  {
4022
4207
  className: cn(
@@ -4027,7 +4212,7 @@ var Sidebar = React40.forwardRef(
4027
4212
  className
4028
4213
  ),
4029
4214
  ...props,
4030
- children: /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4215
+ children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4031
4216
  "div",
4032
4217
  {
4033
4218
  "data-sidebar": "sidebar",
@@ -4043,9 +4228,9 @@ var Sidebar = React40.forwardRef(
4043
4228
  }
4044
4229
  );
4045
4230
  Sidebar.displayName = "Sidebar";
4046
- var SidebarTrigger = React40.forwardRef(({ className, onClick, ...props }, ref) => {
4231
+ var SidebarTrigger = React42.forwardRef(({ className, onClick, ...props }, ref) => {
4047
4232
  const { toggleSidebar } = useSidebar();
4048
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
4233
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
4049
4234
  Button,
4050
4235
  {
4051
4236
  ref,
@@ -4059,16 +4244,16 @@ var SidebarTrigger = React40.forwardRef(({ className, onClick, ...props }, ref)
4059
4244
  },
4060
4245
  ...props,
4061
4246
  children: [
4062
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(import_lucide_react18.PanelLeft, {}),
4063
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("span", { className: "sr-only", children: "Toggle Sidebar" })
4247
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(import_lucide_react18.PanelLeft, {}),
4248
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("span", { className: "sr-only", children: "Toggle Sidebar" })
4064
4249
  ]
4065
4250
  }
4066
4251
  );
4067
4252
  });
4068
4253
  SidebarTrigger.displayName = "SidebarTrigger";
4069
- var SidebarRail = React40.forwardRef(({ className, ...props }, ref) => {
4254
+ var SidebarRail = React42.forwardRef(({ className, ...props }, ref) => {
4070
4255
  const { toggleSidebar } = useSidebar();
4071
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4256
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4072
4257
  "button",
4073
4258
  {
4074
4259
  ref,
@@ -4091,8 +4276,8 @@ var SidebarRail = React40.forwardRef(({ className, ...props }, ref) => {
4091
4276
  );
4092
4277
  });
4093
4278
  SidebarRail.displayName = "SidebarRail";
4094
- var SidebarInset = React40.forwardRef(({ className, ...props }, ref) => {
4095
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4279
+ var SidebarInset = React42.forwardRef(({ className, ...props }, ref) => {
4280
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4096
4281
  "main",
4097
4282
  {
4098
4283
  ref,
@@ -4106,8 +4291,8 @@ var SidebarInset = React40.forwardRef(({ className, ...props }, ref) => {
4106
4291
  );
4107
4292
  });
4108
4293
  SidebarInset.displayName = "SidebarInset";
4109
- var SidebarInput = React40.forwardRef(({ className, ...props }, ref) => {
4110
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4294
+ var SidebarInput = React42.forwardRef(({ className, ...props }, ref) => {
4295
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4111
4296
  Input,
4112
4297
  {
4113
4298
  ref,
@@ -4121,8 +4306,8 @@ var SidebarInput = React40.forwardRef(({ className, ...props }, ref) => {
4121
4306
  );
4122
4307
  });
4123
4308
  SidebarInput.displayName = "SidebarInput";
4124
- var SidebarHeader = React40.forwardRef(({ className, ...props }, ref) => {
4125
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4309
+ var SidebarHeader = React42.forwardRef(({ className, ...props }, ref) => {
4310
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4126
4311
  "div",
4127
4312
  {
4128
4313
  ref,
@@ -4133,8 +4318,8 @@ var SidebarHeader = React40.forwardRef(({ className, ...props }, ref) => {
4133
4318
  );
4134
4319
  });
4135
4320
  SidebarHeader.displayName = "SidebarHeader";
4136
- var SidebarFooter = React40.forwardRef(({ className, ...props }, ref) => {
4137
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4321
+ var SidebarFooter = React42.forwardRef(({ className, ...props }, ref) => {
4322
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4138
4323
  "div",
4139
4324
  {
4140
4325
  ref,
@@ -4145,8 +4330,8 @@ var SidebarFooter = React40.forwardRef(({ className, ...props }, ref) => {
4145
4330
  );
4146
4331
  });
4147
4332
  SidebarFooter.displayName = "SidebarFooter";
4148
- var SidebarSeparator = React40.forwardRef(({ className, ...props }, ref) => {
4149
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4333
+ var SidebarSeparator = React42.forwardRef(({ className, ...props }, ref) => {
4334
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4150
4335
  Separator6,
4151
4336
  {
4152
4337
  ref,
@@ -4157,8 +4342,8 @@ var SidebarSeparator = React40.forwardRef(({ className, ...props }, ref) => {
4157
4342
  );
4158
4343
  });
4159
4344
  SidebarSeparator.displayName = "SidebarSeparator";
4160
- var SidebarContent = React40.forwardRef(({ className, ...props }, ref) => {
4161
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4345
+ var SidebarContent = React42.forwardRef(({ className, ...props }, ref) => {
4346
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4162
4347
  "div",
4163
4348
  {
4164
4349
  ref,
@@ -4172,8 +4357,8 @@ var SidebarContent = React40.forwardRef(({ className, ...props }, ref) => {
4172
4357
  );
4173
4358
  });
4174
4359
  SidebarContent.displayName = "SidebarContent";
4175
- var SidebarGroup = React40.forwardRef(({ className, ...props }, ref) => {
4176
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4360
+ var SidebarGroup = React42.forwardRef(({ className, ...props }, ref) => {
4361
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4177
4362
  "div",
4178
4363
  {
4179
4364
  ref,
@@ -4184,9 +4369,9 @@ var SidebarGroup = React40.forwardRef(({ className, ...props }, ref) => {
4184
4369
  );
4185
4370
  });
4186
4371
  SidebarGroup.displayName = "SidebarGroup";
4187
- var SidebarGroupLabel = React40.forwardRef(({ className, asChild = false, ...props }, ref) => {
4372
+ var SidebarGroupLabel = React42.forwardRef(({ className, asChild = false, ...props }, ref) => {
4188
4373
  const Comp = asChild ? import_react_slot4.Slot : "div";
4189
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4374
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4190
4375
  Comp,
4191
4376
  {
4192
4377
  ref,
@@ -4201,9 +4386,9 @@ var SidebarGroupLabel = React40.forwardRef(({ className, asChild = false, ...pro
4201
4386
  );
4202
4387
  });
4203
4388
  SidebarGroupLabel.displayName = "SidebarGroupLabel";
4204
- var SidebarGroupAction = React40.forwardRef(({ className, asChild = false, ...props }, ref) => {
4389
+ var SidebarGroupAction = React42.forwardRef(({ className, asChild = false, ...props }, ref) => {
4205
4390
  const Comp = asChild ? import_react_slot4.Slot : "button";
4206
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4391
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4207
4392
  Comp,
4208
4393
  {
4209
4394
  ref,
@@ -4220,7 +4405,7 @@ var SidebarGroupAction = React40.forwardRef(({ className, asChild = false, ...pr
4220
4405
  );
4221
4406
  });
4222
4407
  SidebarGroupAction.displayName = "SidebarGroupAction";
4223
- var SidebarGroupContent = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4408
+ var SidebarGroupContent = React42.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4224
4409
  "div",
4225
4410
  {
4226
4411
  ref,
@@ -4230,7 +4415,7 @@ var SidebarGroupContent = React40.forwardRef(({ className, ...props }, ref) => /
4230
4415
  }
4231
4416
  ));
4232
4417
  SidebarGroupContent.displayName = "SidebarGroupContent";
4233
- var SidebarMenu = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4418
+ var SidebarMenu = React42.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4234
4419
  "ul",
4235
4420
  {
4236
4421
  ref,
@@ -4240,7 +4425,7 @@ var SidebarMenu = React40.forwardRef(({ className, ...props }, ref) => /* @__PUR
4240
4425
  }
4241
4426
  ));
4242
4427
  SidebarMenu.displayName = "SidebarMenu";
4243
- var SidebarMenuItem = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4428
+ var SidebarMenuItem = React42.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4244
4429
  "li",
4245
4430
  {
4246
4431
  ref,
@@ -4250,7 +4435,7 @@ var SidebarMenuItem = React40.forwardRef(({ className, ...props }, ref) => /* @_
4250
4435
  }
4251
4436
  ));
4252
4437
  SidebarMenuItem.displayName = "SidebarMenuItem";
4253
- var sidebarMenuButtonVariants = (0, import_class_variance_authority12.cva)(
4438
+ var sidebarMenuButtonVariants = (0, import_class_variance_authority13.cva)(
4254
4439
  "peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",
4255
4440
  {
4256
4441
  variants: {
@@ -4270,7 +4455,7 @@ var sidebarMenuButtonVariants = (0, import_class_variance_authority12.cva)(
4270
4455
  }
4271
4456
  }
4272
4457
  );
4273
- var SidebarMenuButton = React40.forwardRef(
4458
+ var SidebarMenuButton = React42.forwardRef(
4274
4459
  ({
4275
4460
  asChild = false,
4276
4461
  isActive = false,
@@ -4282,7 +4467,7 @@ var SidebarMenuButton = React40.forwardRef(
4282
4467
  }, ref) => {
4283
4468
  const Comp = asChild ? import_react_slot4.Slot : "button";
4284
4469
  const { isMobile, state } = useSidebar();
4285
- const button = /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4470
+ const button = /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4286
4471
  Comp,
4287
4472
  {
4288
4473
  ref,
@@ -4301,9 +4486,9 @@ var SidebarMenuButton = React40.forwardRef(
4301
4486
  children: tooltip
4302
4487
  };
4303
4488
  }
4304
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(Tooltip2, { children: [
4305
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(TooltipTrigger, { asChild: true, children: button }),
4306
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4489
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(Tooltip2, { children: [
4490
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(TooltipTrigger, { asChild: true, children: button }),
4491
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4307
4492
  TooltipContent,
4308
4493
  {
4309
4494
  side: "right",
@@ -4316,9 +4501,9 @@ var SidebarMenuButton = React40.forwardRef(
4316
4501
  }
4317
4502
  );
4318
4503
  SidebarMenuButton.displayName = "SidebarMenuButton";
4319
- var SidebarMenuAction = React40.forwardRef(({ className, asChild = false, showOnHover = false, ...props }, ref) => {
4504
+ var SidebarMenuAction = React42.forwardRef(({ className, asChild = false, showOnHover = false, ...props }, ref) => {
4320
4505
  const Comp = asChild ? import_react_slot4.Slot : "button";
4321
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4506
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4322
4507
  Comp,
4323
4508
  {
4324
4509
  ref,
@@ -4339,7 +4524,7 @@ var SidebarMenuAction = React40.forwardRef(({ className, asChild = false, showOn
4339
4524
  );
4340
4525
  });
4341
4526
  SidebarMenuAction.displayName = "SidebarMenuAction";
4342
- var SidebarMenuBadge = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4527
+ var SidebarMenuBadge = React42.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4343
4528
  "div",
4344
4529
  {
4345
4530
  ref,
@@ -4357,11 +4542,11 @@ var SidebarMenuBadge = React40.forwardRef(({ className, ...props }, ref) => /* @
4357
4542
  }
4358
4543
  ));
4359
4544
  SidebarMenuBadge.displayName = "SidebarMenuBadge";
4360
- var SidebarMenuSkeleton = React40.forwardRef(({ className, showIcon = false, ...props }, ref) => {
4361
- const width = React40.useMemo(() => {
4545
+ var SidebarMenuSkeleton = React42.forwardRef(({ className, showIcon = false, ...props }, ref) => {
4546
+ const width = React42.useMemo(() => {
4362
4547
  return `${Math.floor(Math.random() * 40) + 50}%`;
4363
4548
  }, []);
4364
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
4549
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
4365
4550
  "div",
4366
4551
  {
4367
4552
  ref,
@@ -4369,14 +4554,14 @@ var SidebarMenuSkeleton = React40.forwardRef(({ className, showIcon = false, ...
4369
4554
  className: cn("flex h-8 items-center gap-2 rounded-md px-2", className),
4370
4555
  ...props,
4371
4556
  children: [
4372
- showIcon && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4557
+ showIcon && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4373
4558
  Skeleton,
4374
4559
  {
4375
4560
  className: "size-4 rounded-md",
4376
4561
  "data-sidebar": "menu-skeleton-icon"
4377
4562
  }
4378
4563
  ),
4379
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4564
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4380
4565
  Skeleton,
4381
4566
  {
4382
4567
  className: "h-4 max-w-[--skeleton-width] flex-1",
@@ -4391,7 +4576,7 @@ var SidebarMenuSkeleton = React40.forwardRef(({ className, showIcon = false, ...
4391
4576
  );
4392
4577
  });
4393
4578
  SidebarMenuSkeleton.displayName = "SidebarMenuSkeleton";
4394
- var SidebarMenuSub = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4579
+ var SidebarMenuSub = React42.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4395
4580
  "ul",
4396
4581
  {
4397
4582
  ref,
@@ -4405,11 +4590,11 @@ var SidebarMenuSub = React40.forwardRef(({ className, ...props }, ref) => /* @__
4405
4590
  }
4406
4591
  ));
4407
4592
  SidebarMenuSub.displayName = "SidebarMenuSub";
4408
- var SidebarMenuSubItem = React40.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("li", { ref, ...props }));
4593
+ var SidebarMenuSubItem = React42.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("li", { ref, ...props }));
4409
4594
  SidebarMenuSubItem.displayName = "SidebarMenuSubItem";
4410
- var SidebarMenuSubButton = React40.forwardRef(({ asChild = false, size = "md", isActive, className, ...props }, ref) => {
4595
+ var SidebarMenuSubButton = React42.forwardRef(({ asChild = false, size = "md", isActive, className, ...props }, ref) => {
4411
4596
  const Comp = asChild ? import_react_slot4.Slot : "a";
4412
- return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
4597
+ return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4413
4598
  Comp,
4414
4599
  {
4415
4600
  ref,
@@ -4431,10 +4616,10 @@ var SidebarMenuSubButton = React40.forwardRef(({ asChild = false, size = "md", i
4431
4616
  SidebarMenuSubButton.displayName = "SidebarMenuSubButton";
4432
4617
 
4433
4618
  // src/components/ui/slider.tsx
4434
- var React41 = __toESM(require("react"), 1);
4619
+ var React43 = __toESM(require("react"), 1);
4435
4620
  var SliderPrimitive = __toESM(require("@radix-ui/react-slider"), 1);
4436
- var import_jsx_runtime42 = require("react/jsx-runtime");
4437
- var Slider = React41.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
4621
+ var import_jsx_runtime44 = require("react/jsx-runtime");
4622
+ var Slider = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
4438
4623
  SliderPrimitive.Root,
4439
4624
  {
4440
4625
  ref,
@@ -4444,8 +4629,8 @@ var Slider = React41.forwardRef(({ className, ...props }, ref) => /* @__PURE__ *
4444
4629
  ),
4445
4630
  ...props,
4446
4631
  children: [
4447
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(SliderPrimitive.Track, { className: "relative h-1.5 w-full grow overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(SliderPrimitive.Range, { className: "absolute h-full bg-primary" }) }),
4448
- /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(SliderPrimitive.Thumb, { className: "block h-4 w-4 rounded-full border border-primary/50 bg-background shadow transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50" })
4632
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(SliderPrimitive.Track, { className: "relative h-1.5 w-full grow overflow-hidden rounded-full bg-primary/20", children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(SliderPrimitive.Range, { className: "absolute h-full bg-primary" }) }),
4633
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(SliderPrimitive.Thumb, { className: "block h-4 w-4 rounded-full border border-primary/50 bg-background shadow transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50" })
4449
4634
  ]
4450
4635
  }
4451
4636
  ));
@@ -4454,10 +4639,10 @@ Slider.displayName = SliderPrimitive.Root.displayName;
4454
4639
  // src/components/ui/sonner.tsx
4455
4640
  var import_next_themes = require("next-themes");
4456
4641
  var import_sonner = require("sonner");
4457
- var import_jsx_runtime43 = require("react/jsx-runtime");
4642
+ var import_jsx_runtime45 = require("react/jsx-runtime");
4458
4643
  var Toaster = ({ ...props }) => {
4459
4644
  const { theme = "system" } = (0, import_next_themes.useTheme)();
4460
- return /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
4645
+ return /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4461
4646
  import_sonner.Toaster,
4462
4647
  {
4463
4648
  theme,
@@ -4476,10 +4661,10 @@ var Toaster = ({ ...props }) => {
4476
4661
  };
4477
4662
 
4478
4663
  // src/components/ui/switch.tsx
4479
- var React42 = __toESM(require("react"), 1);
4664
+ var React44 = __toESM(require("react"), 1);
4480
4665
  var SwitchPrimitives = __toESM(require("@radix-ui/react-switch"), 1);
4481
- var import_jsx_runtime44 = require("react/jsx-runtime");
4482
- var Switch = React42.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4666
+ var import_jsx_runtime46 = require("react/jsx-runtime");
4667
+ var Switch = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4483
4668
  SwitchPrimitives.Root,
4484
4669
  {
4485
4670
  className: cn(
@@ -4488,7 +4673,7 @@ var Switch = React42.forwardRef(({ className, ...props }, ref) => /* @__PURE__ *
4488
4673
  ),
4489
4674
  ...props,
4490
4675
  ref,
4491
- children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
4676
+ children: /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4492
4677
  SwitchPrimitives.Thumb,
4493
4678
  {
4494
4679
  className: cn(
@@ -4501,9 +4686,9 @@ var Switch = React42.forwardRef(({ className, ...props }, ref) => /* @__PURE__ *
4501
4686
  Switch.displayName = SwitchPrimitives.Root.displayName;
4502
4687
 
4503
4688
  // src/components/ui/table.tsx
4504
- var React43 = __toESM(require("react"), 1);
4505
- var import_jsx_runtime45 = require("react/jsx-runtime");
4506
- var Table = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4689
+ var React45 = __toESM(require("react"), 1);
4690
+ var import_jsx_runtime47 = require("react/jsx-runtime");
4691
+ var Table = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
4507
4692
  "table",
4508
4693
  {
4509
4694
  ref,
@@ -4512,9 +4697,9 @@ var Table = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
4512
4697
  }
4513
4698
  ) }));
4514
4699
  Table.displayName = "Table";
4515
- var TableHeader = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("thead", { ref, className: cn("[&_tr]:border-b [&_tr]:border-border", className), ...props }));
4700
+ var TableHeader = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("thead", { ref, className: cn("[&_tr]:border-b [&_tr]:border-border", className), ...props }));
4516
4701
  TableHeader.displayName = "TableHeader";
4517
- var TableBody = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4702
+ var TableBody = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
4518
4703
  "tbody",
4519
4704
  {
4520
4705
  ref,
@@ -4523,7 +4708,7 @@ var TableBody = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE_
4523
4708
  }
4524
4709
  ));
4525
4710
  TableBody.displayName = "TableBody";
4526
- var TableFooter = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4711
+ var TableFooter = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
4527
4712
  "tfoot",
4528
4713
  {
4529
4714
  ref,
@@ -4535,7 +4720,7 @@ var TableFooter = React43.forwardRef(({ className, ...props }, ref) => /* @__PUR
4535
4720
  }
4536
4721
  ));
4537
4722
  TableFooter.displayName = "TableFooter";
4538
- var TableRow = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4723
+ var TableRow = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
4539
4724
  "tr",
4540
4725
  {
4541
4726
  ref,
@@ -4547,7 +4732,7 @@ var TableRow = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__
4547
4732
  }
4548
4733
  ));
4549
4734
  TableRow.displayName = "TableRow";
4550
- var TableHead = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4735
+ var TableHead = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
4551
4736
  "th",
4552
4737
  {
4553
4738
  ref,
@@ -4559,7 +4744,7 @@ var TableHead = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE_
4559
4744
  }
4560
4745
  ));
4561
4746
  TableHead.displayName = "TableHead";
4562
- var TableCell = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4747
+ var TableCell = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
4563
4748
  "td",
4564
4749
  {
4565
4750
  ref,
@@ -4571,7 +4756,7 @@ var TableCell = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE_
4571
4756
  }
4572
4757
  ));
4573
4758
  TableCell.displayName = "TableCell";
4574
- var TableCaption = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)(
4759
+ var TableCaption = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
4575
4760
  "caption",
4576
4761
  {
4577
4762
  ref,
@@ -4582,11 +4767,11 @@ var TableCaption = React43.forwardRef(({ className, ...props }, ref) => /* @__PU
4582
4767
  TableCaption.displayName = "TableCaption";
4583
4768
 
4584
4769
  // src/components/ui/tabs.tsx
4585
- var React44 = __toESM(require("react"), 1);
4770
+ var React46 = __toESM(require("react"), 1);
4586
4771
  var TabsPrimitive = __toESM(require("@radix-ui/react-tabs"), 1);
4587
- var import_jsx_runtime46 = require("react/jsx-runtime");
4772
+ var import_jsx_runtime48 = require("react/jsx-runtime");
4588
4773
  var Tabs = TabsPrimitive.Root;
4589
- var TabsList = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4774
+ var TabsList = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
4590
4775
  TabsPrimitive.List,
4591
4776
  {
4592
4777
  ref,
@@ -4598,7 +4783,7 @@ var TabsList = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__
4598
4783
  }
4599
4784
  ));
4600
4785
  TabsList.displayName = TabsPrimitive.List.displayName;
4601
- var TabsTrigger = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4786
+ var TabsTrigger = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
4602
4787
  TabsPrimitive.Trigger,
4603
4788
  {
4604
4789
  ref,
@@ -4610,7 +4795,7 @@ var TabsTrigger = React44.forwardRef(({ className, ...props }, ref) => /* @__PUR
4610
4795
  }
4611
4796
  ));
4612
4797
  TabsTrigger.displayName = TabsPrimitive.Trigger.displayName;
4613
- var TabsContent = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
4798
+ var TabsContent = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
4614
4799
  TabsPrimitive.Content,
4615
4800
  {
4616
4801
  ref,
@@ -4624,10 +4809,10 @@ var TabsContent = React44.forwardRef(({ className, ...props }, ref) => /* @__PUR
4624
4809
  TabsContent.displayName = TabsPrimitive.Content.displayName;
4625
4810
 
4626
4811
  // src/components/ui/textarea.tsx
4627
- var React45 = __toESM(require("react"), 1);
4628
- var import_jsx_runtime47 = require("react/jsx-runtime");
4629
- var Textarea = React45.forwardRef(({ className, ...props }, ref) => {
4630
- return /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
4812
+ var React47 = __toESM(require("react"), 1);
4813
+ var import_jsx_runtime49 = require("react/jsx-runtime");
4814
+ var Textarea = React47.forwardRef(({ className, ...props }, ref) => {
4815
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
4631
4816
  "textarea",
4632
4817
  {
4633
4818
  className: cn(
@@ -4642,13 +4827,13 @@ var Textarea = React45.forwardRef(({ className, ...props }, ref) => {
4642
4827
  Textarea.displayName = "Textarea";
4643
4828
 
4644
4829
  // src/components/ui/toast.tsx
4645
- var React46 = __toESM(require("react"), 1);
4830
+ var React48 = __toESM(require("react"), 1);
4646
4831
  var ToastPrimitives = __toESM(require("@radix-ui/react-toast"), 1);
4647
- var import_class_variance_authority13 = require("class-variance-authority");
4832
+ var import_class_variance_authority14 = require("class-variance-authority");
4648
4833
  var import_lucide_react19 = require("lucide-react");
4649
- var import_jsx_runtime48 = require("react/jsx-runtime");
4834
+ var import_jsx_runtime50 = require("react/jsx-runtime");
4650
4835
  var ToastProvider = ToastPrimitives.Provider;
4651
- var ToastViewport = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
4836
+ var ToastViewport = React48.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4652
4837
  ToastPrimitives.Viewport,
4653
4838
  {
4654
4839
  ref,
@@ -4660,7 +4845,7 @@ var ToastViewport = React46.forwardRef(({ className, ...props }, ref) => /* @__P
4660
4845
  }
4661
4846
  ));
4662
4847
  ToastViewport.displayName = ToastPrimitives.Viewport.displayName;
4663
- var toastVariants = (0, import_class_variance_authority13.cva)(
4848
+ var toastVariants = (0, import_class_variance_authority14.cva)(
4664
4849
  "group pointer-events-auto relative flex w-full items-center justify-between space-x-2 overflow-hidden rounded-md border p-4 pr-6 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",
4665
4850
  {
4666
4851
  variants: {
@@ -4674,8 +4859,8 @@ var toastVariants = (0, import_class_variance_authority13.cva)(
4674
4859
  }
4675
4860
  }
4676
4861
  );
4677
- var Toast = React46.forwardRef(({ className, variant, ...props }, ref) => {
4678
- return /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
4862
+ var Toast = React48.forwardRef(({ className, variant, ...props }, ref) => {
4863
+ return /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4679
4864
  ToastPrimitives.Root,
4680
4865
  {
4681
4866
  ref,
@@ -4685,7 +4870,7 @@ var Toast = React46.forwardRef(({ className, variant, ...props }, ref) => {
4685
4870
  );
4686
4871
  });
4687
4872
  Toast.displayName = ToastPrimitives.Root.displayName;
4688
- var ToastAction = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
4873
+ var ToastAction = React48.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4689
4874
  ToastPrimitives.Action,
4690
4875
  {
4691
4876
  ref,
@@ -4697,7 +4882,7 @@ var ToastAction = React46.forwardRef(({ className, ...props }, ref) => /* @__PUR
4697
4882
  }
4698
4883
  ));
4699
4884
  ToastAction.displayName = ToastPrimitives.Action.displayName;
4700
- var ToastClose = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
4885
+ var ToastClose = React48.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4701
4886
  ToastPrimitives.Close,
4702
4887
  {
4703
4888
  ref,
@@ -4707,11 +4892,11 @@ var ToastClose = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE
4707
4892
  ),
4708
4893
  "toast-close": "",
4709
4894
  ...props,
4710
- children: /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_lucide_react19.X, { className: "h-4 w-4" })
4895
+ children: /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(import_lucide_react19.X, { className: "h-4 w-4" })
4711
4896
  }
4712
4897
  ));
4713
4898
  ToastClose.displayName = ToastPrimitives.Close.displayName;
4714
- var ToastTitle = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
4899
+ var ToastTitle = React48.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4715
4900
  ToastPrimitives.Title,
4716
4901
  {
4717
4902
  ref,
@@ -4720,7 +4905,7 @@ var ToastTitle = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE
4720
4905
  }
4721
4906
  ));
4722
4907
  ToastTitle.displayName = ToastPrimitives.Title.displayName;
4723
- var ToastDescription = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(
4908
+ var ToastDescription = React48.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4724
4909
  ToastPrimitives.Description,
4725
4910
  {
4726
4911
  ref,
@@ -4731,30 +4916,30 @@ var ToastDescription = React46.forwardRef(({ className, ...props }, ref) => /* @
4731
4916
  ToastDescription.displayName = ToastPrimitives.Description.displayName;
4732
4917
 
4733
4918
  // src/components/ui/toaster.tsx
4734
- var import_jsx_runtime49 = require("react/jsx-runtime");
4919
+ var import_jsx_runtime51 = require("react/jsx-runtime");
4735
4920
  function Toaster2() {
4736
4921
  const { toasts } = useToast();
4737
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(ToastProvider, { children: [
4922
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(ToastProvider, { children: [
4738
4923
  toasts.map(function({ id, title, description, action, ...props }) {
4739
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(Toast, { ...props, children: [
4740
- /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "grid gap-1", children: [
4741
- title && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(ToastTitle, { children: title }),
4742
- description && /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(ToastDescription, { children: description })
4924
+ return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(Toast, { ...props, children: [
4925
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)("div", { className: "grid gap-1", children: [
4926
+ title && /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(ToastTitle, { children: title }),
4927
+ description && /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(ToastDescription, { children: description })
4743
4928
  ] }),
4744
4929
  action,
4745
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(ToastClose, {})
4930
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(ToastClose, {})
4746
4931
  ] }, id);
4747
4932
  }),
4748
- /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(ToastViewport, {})
4933
+ /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(ToastViewport, {})
4749
4934
  ] });
4750
4935
  }
4751
4936
 
4752
4937
  // src/components/ui/toggle.tsx
4753
- var React47 = __toESM(require("react"), 1);
4938
+ var React49 = __toESM(require("react"), 1);
4754
4939
  var TogglePrimitive = __toESM(require("@radix-ui/react-toggle"), 1);
4755
- var import_class_variance_authority14 = require("class-variance-authority");
4756
- var import_jsx_runtime50 = require("react/jsx-runtime");
4757
- var toggleVariants = (0, import_class_variance_authority14.cva)(
4940
+ var import_class_variance_authority15 = require("class-variance-authority");
4941
+ var import_jsx_runtime52 = require("react/jsx-runtime");
4942
+ var toggleVariants = (0, import_class_variance_authority15.cva)(
4758
4943
  "inline-flex items-center justify-center gap-2 rounded-md text-sm transition-colors hover:bg-muted hover:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
4759
4944
  {
4760
4945
  variants: {
@@ -4774,7 +4959,7 @@ var toggleVariants = (0, import_class_variance_authority14.cva)(
4774
4959
  }
4775
4960
  }
4776
4961
  );
4777
- var Toggle = React47.forwardRef(({ className, variant, size, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime50.jsx)(
4962
+ var Toggle = React49.forwardRef(({ className, variant, size, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime52.jsx)(
4778
4963
  TogglePrimitive.Root,
4779
4964
  {
4780
4965
  ref,
@@ -4785,26 +4970,26 @@ var Toggle = React47.forwardRef(({ className, variant, size, ...props }, ref) =>
4785
4970
  Toggle.displayName = TogglePrimitive.Root.displayName;
4786
4971
 
4787
4972
  // src/components/ui/toggle-group.tsx
4788
- var React48 = __toESM(require("react"), 1);
4973
+ var React50 = __toESM(require("react"), 1);
4789
4974
  var ToggleGroupPrimitive = __toESM(require("@radix-ui/react-toggle-group"), 1);
4790
- var import_jsx_runtime51 = require("react/jsx-runtime");
4791
- var ToggleGroupContext = React48.createContext({
4975
+ var import_jsx_runtime53 = require("react/jsx-runtime");
4976
+ var ToggleGroupContext = React50.createContext({
4792
4977
  size: "default",
4793
4978
  variant: "default"
4794
4979
  });
4795
- var ToggleGroup = React48.forwardRef(({ className, variant, size, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4980
+ var ToggleGroup = React50.forwardRef(({ className, variant, size, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4796
4981
  ToggleGroupPrimitive.Root,
4797
4982
  {
4798
4983
  ref,
4799
4984
  className: cn("flex items-center justify-center gap-1", className),
4800
4985
  ...props,
4801
- children: /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(ToggleGroupContext.Provider, { value: { variant, size }, children })
4986
+ children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(ToggleGroupContext.Provider, { value: { variant, size }, children })
4802
4987
  }
4803
4988
  ));
4804
4989
  ToggleGroup.displayName = ToggleGroupPrimitive.Root.displayName;
4805
- var ToggleGroupItem = React48.forwardRef(({ className, children, variant, size, ...props }, ref) => {
4806
- const context = React48.useContext(ToggleGroupContext);
4807
- return /* @__PURE__ */ (0, import_jsx_runtime51.jsx)(
4990
+ var ToggleGroupItem = React50.forwardRef(({ className, children, variant, size, ...props }, ref) => {
4991
+ const context = React50.useContext(ToggleGroupContext);
4992
+ return /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
4808
4993
  ToggleGroupPrimitive.Item,
4809
4994
  {
4810
4995
  ref,
@@ -4846,6 +5031,7 @@ ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
4846
5031
  AvatarFallback,
4847
5032
  AvatarImage,
4848
5033
  Badge,
5034
+ BaseStyles,
4849
5035
  Box,
4850
5036
  Breadcrumb,
4851
5037
  BreadcrumbEllipsis,
@@ -4999,6 +5185,7 @@ ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
4999
5185
  ResizablePanelGroup,
5000
5186
  ScrollArea,
5001
5187
  ScrollBar,
5188
+ Section,
5002
5189
  Select,
5003
5190
  SelectContent,
5004
5191
  SelectGroup,
@@ -5085,6 +5272,7 @@ ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
5085
5272
  gridVariants,
5086
5273
  headingVariants,
5087
5274
  navigationMenuTriggerStyle,
5275
+ sectionVariants,
5088
5276
  stackVariants,
5089
5277
  textVariants,
5090
5278
  toast,