duokit-ui 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
2
3
  import * as React$1 from 'react';
3
4
  import { ReactNode } from 'react';
4
- import * as AccordionPrimitive from '@radix-ui/react-accordion';
5
5
  import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
6
6
  import * as class_variance_authority_types from 'class-variance-authority/types';
7
7
  import { VariantProps } from 'class-variance-authority';
@@ -483,249 +483,100 @@ declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrim
483
483
  declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
484
484
  declare function TooltipContent({ className, sideOffset, children, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
485
485
 
486
- /**
487
- * Animation types and configurations
488
- */
489
- interface AnimationConfig$1 {
490
- /** Badge animation type */
491
- badgeAnimation?: "bounce" | "pulse" | "wiggle" | "fade" | "slide" | "none";
492
- /** Popover animation type */
493
- popoverAnimation?: "scale" | "slide" | "fade" | "flip" | "none";
494
- /** Option hover animation type */
495
- optionHoverAnimation?: "highlight" | "scale" | "glow" | "none";
496
- /** Animation duration in seconds */
497
- duration?: number;
498
- /** Animation delay in seconds */
499
- delay?: number;
500
- }
501
- /**
502
- * Variants for the multi-select component to handle different styles.
503
- * Uses class-variance-authority (cva) to define different styles based on "variant" prop.
504
- */
505
- declare const multiSelectVariants$2: (props?: ({
506
- variant?: "default" | "destructive" | "secondary" | "inverted" | null | undefined;
507
- badgeAnimation?: "none" | "bounce" | "pulse" | "wiggle" | "fade" | "slide" | null | undefined;
486
+ declare const multiSelectVariants$1: (props?: ({
487
+ variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
508
488
  } & class_variance_authority_types.ClassProp) | undefined) => string;
509
- /**
510
- * Option interface for MultiSelect component
511
- */
512
- interface MultiSelectOption$1 {
513
- /** The text to display for the option. */
514
- label: string;
515
- /** The unique value associated with the option. */
516
- value: string;
517
- /** Optional icon component to display alongside the option. */
518
- icon?: React$1.ComponentType<{
519
- className?: string;
520
- }>;
521
- /** Whether this option is disabled */
522
- disabled?: boolean;
523
- /** Custom styling for the option */
524
- style?: {
525
- /** Custom badge color */
526
- badgeColor?: string;
527
- /** Custom icon color */
528
- iconColor?: string;
529
- /** Gradient background for badge */
530
- gradient?: string;
531
- };
532
- }
533
- /**
534
- * Group interface for organizing options
535
- */
536
- interface MultiSelectGroup$1 {
537
- /** Group heading */
538
- heading: string;
539
- /** Options in this group */
540
- options: MultiSelectOption$1[];
489
+ interface CalendarDatePickerProps extends React$1.HTMLAttributes<HTMLButtonElement>, VariantProps<typeof multiSelectVariants$1> {
490
+ id?: string;
491
+ className?: string;
492
+ date: DateRange;
493
+ closeOnSelect?: boolean;
494
+ numberOfMonths?: 1 | 2;
495
+ yearsRange?: number;
496
+ onDateSelect: (range: {
497
+ from: Date;
498
+ to: Date;
499
+ }) => void;
541
500
  }
542
- /**
543
- * Props for MultiSelect component
544
- */
545
- interface MultiSelectProps$1 extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "animationConfig">, VariantProps<typeof multiSelectVariants$2> {
546
- /**
547
- * An array of option objects or groups to be displayed in the multi-select component.
548
- */
549
- options: MultiSelectOption$1[] | MultiSelectGroup$1[];
550
- /**
551
- * Callback function triggered when the selected values change.
552
- * Receives an array of the new selected values.
553
- */
554
- onValueChange: (value: string[]) => void;
555
- /** The default selected values when the component mounts. */
556
- defaultValue?: string[];
557
- /**
558
- * Placeholder text to be displayed when no values are selected.
559
- * Optional, defaults to "Select options".
560
- */
561
- placeholder?: string;
501
+ declare const CalendarDatePicker: React$1.ForwardRefExoticComponent<CalendarDatePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
502
+
503
+ interface DataTableProps<TData> {
562
504
  /**
563
- * Animation duration in seconds for the visual effects (e.g., bouncing badges).
564
- * Optional, defaults to 0 (no animation).
505
+ * Table instance from useReactTable
565
506
  */
566
- animation?: number;
507
+ table: Table$1<TData>;
567
508
  /**
568
- * Advanced animation configuration for different component parts.
569
- * Optional, allows fine-tuning of various animation effects.
509
+ * Whether the table is in a loading state
570
510
  */
571
- animationConfig?: AnimationConfig$1;
511
+ isLoading?: boolean;
572
512
  /**
573
- * Maximum number of items to display. Extra selected items will be summarized.
574
- * Optional, defaults to 3.
513
+ * Custom empty state message
575
514
  */
576
- maxCount?: number;
515
+ emptyMessage?: ReactNode;
577
516
  /**
578
- * The modality of the popover. When set to true, interaction with outside elements
579
- * will be disabled and only popover content will be visible to screen readers.
580
- * Optional, defaults to false.
517
+ * Custom loading message
581
518
  */
582
- modalPopover?: boolean;
519
+ loadingMessage?: string;
583
520
  /**
584
- * If true, renders the multi-select component as a child of another component.
585
- * Optional, defaults to false.
521
+ * Children components
586
522
  */
587
- asChild?: boolean;
523
+ children?: ReactNode;
588
524
  /**
589
- * Additional class names to apply custom styles to the multi-select component.
590
- * Optional, can be used to add custom styles.
525
+ * Custom className for the root container
591
526
  */
592
527
  className?: string;
528
+ }
529
+ interface DataTableSearchProps {
593
530
  /**
594
- * If true, disables the select all functionality.
595
- * Optional, defaults to false.
596
- */
597
- hideSelectAll?: boolean;
598
- /**
599
- * If true, shows search functionality in the popover.
600
- * If false, hides the search input completely.
601
- * Optional, defaults to true.
602
- */
603
- searchable?: boolean;
604
- /**
605
- * Custom empty state message when no options match search.
606
- * Optional, defaults to "No results found."
607
- */
608
- emptyIndicator?: React$1.ReactNode;
609
- /**
610
- * If true, allows the component to grow and shrink with its content.
611
- * If false, uses fixed width behavior.
612
- * Optional, defaults to false.
613
- */
614
- autoSize?: boolean;
615
- /**
616
- * If true, shows badges in a single line with horizontal scroll.
617
- * If false, badges wrap to multiple lines.
618
- * Optional, defaults to false.
619
- */
620
- singleLine?: boolean;
621
- /**
622
- * Custom CSS class for the popover content.
623
- * Optional, can be used to customize popover appearance.
624
- */
625
- popoverClassName?: string;
626
- /**
627
- * If true, disables the component completely.
628
- * Optional, defaults to false.
629
- */
630
- disabled?: boolean;
631
- /**
632
- * Responsive configuration for different screen sizes.
633
- * Allows customizing maxCount and other properties based on viewport.
634
- * Can be boolean true for default responsive behavior or an object for custom configuration.
635
- */
636
- responsive?: boolean | {
637
- /** Configuration for mobile devices (< 640px) */
638
- mobile?: {
639
- maxCount?: number;
640
- hideIcons?: boolean;
641
- compactMode?: boolean;
642
- };
643
- /** Configuration for tablet devices (640px - 1024px) */
644
- tablet?: {
645
- maxCount?: number;
646
- hideIcons?: boolean;
647
- compactMode?: boolean;
648
- };
649
- /** Configuration for desktop devices (> 1024px) */
650
- desktop?: {
651
- maxCount?: number;
652
- hideIcons?: boolean;
653
- compactMode?: boolean;
654
- };
655
- };
656
- /**
657
- * Minimum width for the component.
658
- * Optional, defaults to auto-sizing based on content.
659
- * When set, component will not shrink below this width.
660
- */
661
- minWidth?: string;
662
- /**
663
- * Maximum width for the component.
664
- * Optional, defaults to 100% of container.
665
- * Component will not exceed container boundaries.
666
- */
667
- maxWidth?: string;
668
- /**
669
- * If true, automatically removes duplicate options based on their value.
670
- * Optional, defaults to false (shows warning in dev mode instead).
531
+ * Placeholder text for the search input
671
532
  */
672
- deduplicateOptions?: boolean;
533
+ placeholder?: string;
673
534
  /**
674
- * If true, the component will reset its internal state when defaultValue changes.
675
- * Useful for React Hook Form integration and form reset functionality.
676
- * Optional, defaults to true.
535
+ * Debounce delay in milliseconds
677
536
  */
678
- resetOnDefaultValueChange?: boolean;
537
+ debounceMs?: number;
679
538
  /**
680
- * If true, automatically closes the popover after selecting an option.
681
- * Useful for single-selection-like behavior or mobile UX.
682
- * Optional, defaults to false.
539
+ * Custom className
683
540
  */
684
- closeOnSelect?: boolean;
541
+ className?: string;
685
542
  }
686
- /**
687
- * Imperative methods exposed through ref
688
- */
689
- interface MultiSelectRef$1 {
690
- /**
691
- * Programmatically reset the component to its default value
692
- */
693
- reset: () => void;
694
- /**
695
- * Get current selected values
696
- */
697
- getSelectedValues: () => string[];
543
+ interface DataTablePaginationProps {
698
544
  /**
699
- * Set selected values programmatically
545
+ * Show page size selector
700
546
  */
701
- setSelectedValues: (values: string[]) => void;
547
+ showPageSizeSelector?: boolean;
702
548
  /**
703
- * Clear all selected values
549
+ * Available page sizes
704
550
  */
705
- clear: () => void;
551
+ pageSizeOptions?: number[];
706
552
  /**
707
- * Focus the component
553
+ * Custom className
708
554
  */
709
- focus: () => void;
555
+ className?: string;
710
556
  }
711
- declare const MultiSelect: React$1.ForwardRefExoticComponent<MultiSelectProps$1 & React$1.RefAttributes<MultiSelectRef$1>>;
712
557
 
713
- declare const multiSelectVariants$1: (props?: ({
714
- variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
715
- } & class_variance_authority_types.ClassProp) | undefined) => string;
716
- interface CalendarDatePickerProps extends React$1.HTMLAttributes<HTMLButtonElement>, VariantProps<typeof multiSelectVariants$1> {
717
- id?: string;
558
+ declare function DataTableRoot<TData>({ table, isLoading, emptyMessage, loadingMessage, children, className, }: DataTableProps<TData>): react_jsx_runtime.JSX.Element;
559
+ declare function DataTableHeader<TData>(): react_jsx_runtime.JSX.Element;
560
+ declare function DataTableBody<TData>(): react_jsx_runtime.JSX.Element;
561
+ declare function DataTablePagination({ showPageSizeSelector, className, }: DataTablePaginationProps): react_jsx_runtime.JSX.Element;
562
+ declare function DataTableFilters({ children, className, }: {
563
+ children?: React.ReactNode;
718
564
  className?: string;
719
- date: DateRange;
720
- closeOnSelect?: boolean;
721
- numberOfMonths?: 1 | 2;
722
- yearsRange?: number;
723
- onDateSelect: (range: {
724
- from: Date;
725
- to: Date;
726
- }) => void;
727
- }
728
- declare const CalendarDatePicker: React$1.ForwardRefExoticComponent<CalendarDatePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
565
+ }): react_jsx_runtime.JSX.Element;
566
+ declare const DataTable: {
567
+ Root: typeof DataTableRoot;
568
+ Header: typeof DataTableHeader;
569
+ Body: typeof DataTableBody;
570
+ Pagination: typeof DataTablePagination;
571
+ Filters: typeof DataTableFilters;
572
+ };
573
+
574
+ type Condition<Value = unknown> = Value | false | null | undefined | 0 | "";
575
+ declare function If<Value = unknown>({ condition, children, fallback, }: React.PropsWithoutRef<{
576
+ condition: Condition<Value>;
577
+ children: React.ReactNode | ((value: Value) => React.ReactNode);
578
+ fallback?: React.ReactNode;
579
+ }>): react_jsx_runtime.JSX.Element | null;
729
580
 
730
581
  declare const multiSelectVariants: (props?: ({
731
582
  variant?: "default" | "destructive" | "secondary" | "inverted" | null | undefined;
@@ -947,105 +798,11 @@ declare const ClientMultiSelect: React$1.ForwardRefExoticComponent<MultiSelectPr
947
798
 
948
799
  declare const PaginatedMultiSelect: React$1.ForwardRefExoticComponent<MultiSelectProps & PaginationProps & React$1.RefAttributes<MultiSelectRef>>;
949
800
 
950
- interface DataTableProps<TData> {
951
- /**
952
- * Table instance from useReactTable
953
- */
954
- table: Table$1<TData>;
955
- /**
956
- * Whether the table is in a loading state
957
- */
958
- isLoading?: boolean;
959
- /**
960
- * Custom empty state message
961
- */
962
- emptyMessage?: ReactNode;
963
- /**
964
- * Custom loading message
965
- */
966
- loadingMessage?: string;
967
- /**
968
- * Children components
969
- */
970
- children?: ReactNode;
971
- /**
972
- * Custom className for the root container
973
- */
974
- className?: string;
975
- }
976
- interface DataTableSearchProps {
977
- /**
978
- * Placeholder text for the search input
979
- */
980
- placeholder?: string;
981
- /**
982
- * Debounce delay in milliseconds
983
- */
984
- debounceMs?: number;
985
- /**
986
- * Custom className
987
- */
988
- className?: string;
989
- }
990
- interface DataTablePaginationProps {
991
- /**
992
- * Show page size selector
993
- */
994
- showPageSizeSelector?: boolean;
995
- /**
996
- * Available page sizes
997
- */
998
- pageSizeOptions?: number[];
999
- /**
1000
- * Custom className
1001
- */
1002
- className?: string;
1003
- }
1004
-
1005
- declare function DataTableRoot<TData>({ table, isLoading, emptyMessage, loadingMessage, children, className, }: DataTableProps<TData>): react_jsx_runtime.JSX.Element;
1006
- declare function DataTableHeader<TData>(): react_jsx_runtime.JSX.Element;
1007
- declare function DataTableBody<TData>(): react_jsx_runtime.JSX.Element;
1008
- declare function DataTablePagination({ showPageSizeSelector, className, }: DataTablePaginationProps): react_jsx_runtime.JSX.Element;
1009
- declare function DataTableFilters({ children, className, }: {
1010
- children?: React.ReactNode;
1011
- className?: string;
1012
- }): react_jsx_runtime.JSX.Element;
1013
- declare const DataTable: {
1014
- Root: typeof DataTableRoot;
1015
- Header: typeof DataTableHeader;
1016
- Body: typeof DataTableBody;
1017
- Pagination: typeof DataTablePagination;
1018
- Filters: typeof DataTableFilters;
1019
- };
1020
-
1021
- declare function H1({ children, className, }: {
1022
- children: React.ReactNode;
1023
- className?: string;
1024
- }): react_jsx_runtime.JSX.Element;
1025
-
1026
- declare function H2({ children, className, }: {
1027
- children: React.ReactNode;
1028
- className?: string;
1029
- }): react_jsx_runtime.JSX.Element;
1030
-
1031
- declare function H3({ children, className, }: {
1032
- children: React.ReactNode;
1033
- className?: string;
1034
- }): react_jsx_runtime.JSX.Element;
1035
-
1036
- declare function H4({ children, className, }: {
1037
- children: React.ReactNode;
1038
- className?: string;
1039
- }): react_jsx_runtime.JSX.Element;
1040
-
1041
- declare function Paragraph({ children, className, }: {
1042
- children: React.ReactNode;
1043
- className?: string;
1044
- }): react_jsx_runtime.JSX.Element;
1045
-
1046
- declare function Blockquote({ children, className, }: {
1047
- children: React.ReactNode;
801
+ declare function PasswordInput({ value, onChange, className, autoComplete, }: {
802
+ value: string;
803
+ onChange: (value: string) => void;
1048
804
  className?: string;
805
+ autoComplete?: string;
1049
806
  }): react_jsx_runtime.JSX.Element;
1050
807
 
1051
808
  declare const NavigationConfigSchema: z.ZodObject<{
@@ -1287,12 +1044,35 @@ declare const SidebarMenuSubButton: React$1.FC<React$1.ComponentProps<"a"> & {
1287
1044
  isActive?: boolean;
1288
1045
  }>;
1289
1046
 
1290
- type Condition<Value = unknown> = Value | false | null | undefined | 0 | "";
1291
- declare function If<Value = unknown>({ condition, children, fallback, }: React.PropsWithoutRef<{
1292
- condition: Condition<Value>;
1293
- children: React.ReactNode | ((value: Value) => React.ReactNode);
1294
- fallback?: React.ReactNode;
1295
- }>): react_jsx_runtime.JSX.Element | null;
1047
+ declare function Blockquote({ children, className, }: {
1048
+ children: React.ReactNode;
1049
+ className?: string;
1050
+ }): react_jsx_runtime.JSX.Element;
1051
+
1052
+ declare function H1({ children, className, }: {
1053
+ children: React.ReactNode;
1054
+ className?: string;
1055
+ }): react_jsx_runtime.JSX.Element;
1056
+
1057
+ declare function H2({ children, className, }: {
1058
+ children: React.ReactNode;
1059
+ className?: string;
1060
+ }): react_jsx_runtime.JSX.Element;
1061
+
1062
+ declare function H3({ children, className, }: {
1063
+ children: React.ReactNode;
1064
+ className?: string;
1065
+ }): react_jsx_runtime.JSX.Element;
1066
+
1067
+ declare function H4({ children, className, }: {
1068
+ children: React.ReactNode;
1069
+ className?: string;
1070
+ }): react_jsx_runtime.JSX.Element;
1071
+
1072
+ declare function Paragraph({ children, className, }: {
1073
+ children: React.ReactNode;
1074
+ className?: string;
1075
+ }): react_jsx_runtime.JSX.Element;
1296
1076
 
1297
1077
  /**
1298
1078
  * @name isRouteActive
@@ -1318,4 +1098,4 @@ declare function useIsMobile(): boolean;
1318
1098
 
1319
1099
  declare const useToast: () => typeof toast;
1320
1100
 
1321
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnimationConfig$1 as AnimationConfig, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Blockquote, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDatePicker, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ClientMultiSelect, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, type DataTablePaginationProps, type DataTableProps, type DataTableSearchProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, H1, H2, H3, H4, HoverCard, HoverCardContent, HoverCardTrigger, If, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MultiSelect, type MultiSelectGroup$1 as MultiSelectGroup, type MultiSelectOption$1 as MultiSelectOption, type MultiSelectProps$1 as MultiSelectProps, type MultiSelectRef$1 as MultiSelectRef, NavigationConfigSchema, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PaginatedMultiSelect, Paragraph, Popover, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, type SidebarConfig, SidebarContent, SidebarContext, type SidebarContextValue, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, checkIfRouteIsActive, cn, isRouteActive, navigationMenuTriggerStyle, sidebarMenuButtonVariants, tabsListVariants, toggleVariants, useComboboxAnchor, useIsMobile, useSidebar, useToast };
1101
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Blockquote, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDatePicker, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ClientMultiSelect, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, type DataTablePaginationProps, type DataTableProps, type DataTableSearchProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, H1, H2, H3, H4, HoverCard, HoverCardContent, HoverCardTrigger, If, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationConfigSchema, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PaginatedMultiSelect, Paragraph, PasswordInput, Popover, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, type SidebarConfig, SidebarContent, SidebarContext, type SidebarContextValue, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, checkIfRouteIsActive, cn, isRouteActive, navigationMenuTriggerStyle, sidebarMenuButtonVariants, tabsListVariants, toggleVariants, useComboboxAnchor, useIsMobile, useSidebar, useToast };