adminium 1.0.6 → 1.0.8

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.cts CHANGED
@@ -3,13 +3,13 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
3
3
  import * as React$1 from 'react';
4
4
  import { ReactNode, CSSProperties, HTMLAttributes, RefObject } from 'react';
5
5
  import { VariantProps } from 'class-variance-authority';
6
- import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Popover as Popover$1, Avatar as Avatar$1, Accordion as Accordion$1, Collapsible as Collapsible$1, Tabs as Tabs$1, ContextMenu as ContextMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, Slider as Slider$1, Switch as Switch$1, ScrollArea as ScrollArea$1, AspectRatio as AspectRatio$1, Select as Select$1, Progress as Progress$1, NavigationMenu as NavigationMenu$1 } from 'radix-ui';
6
+ import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Popover as Popover$1, Tooltip as Tooltip$1, Avatar as Avatar$1, Accordion as Accordion$1, Collapsible as Collapsible$1, Tabs as Tabs$1, ContextMenu as ContextMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, Slider as Slider$1, Switch as Switch$1, ScrollArea as ScrollArea$1, AspectRatio as AspectRatio$1, Select as Select$1, Progress as Progress$1, NavigationMenu as NavigationMenu$1 } from 'radix-ui';
7
7
  import { LucideIcon } from 'lucide-react';
8
8
  import { Drawer as Drawer$1 } from 'vaul';
9
9
  import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
10
10
  import { Command as Command$1 } from 'cmdk';
11
11
  import * as RechartsPrimitive from 'recharts';
12
- import { RowData, Table, SortingState, ColumnFiltersState, Row, Cell, Column, HeaderGroup, Header } from '@tanstack/react-table';
12
+ import { RowData, Table as Table$1, SortingState, ColumnFiltersState, Row, Cell, Column, HeaderGroup, Header } from '@tanstack/react-table';
13
13
  import { DragEndEvent, UniqueIdentifier } from '@dnd-kit/core';
14
14
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
15
15
  import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
@@ -42,9 +42,18 @@ declare function AlertContent({ className, ...props }: React$1.HTMLAttributes<HT
42
42
  declare const buttonVariantConfig: {
43
43
  readonly variant: {
44
44
  readonly primary: "bg-primary text-primary-foreground hover:bg-primary/90 data-[state=open]:bg-primary/90";
45
- readonly mono: "bg-zinc-950 text-white dark:bg-zinc-300 dark:text-black hover:bg-zinc-950/90 dark:hover:bg-zinc-300/90 data-[state=open]:bg-zinc-950/90 dark:data-[state=open]:bg-zinc-300/90";
45
+ readonly "dark-primary": "bg-foreground/50 text-white border border-white/20 hover:bg-foreground/70 data-[state=open]:bg-background data-[state=open]:text-primary data-[state=open]:border-primary/30 data-[state=open]:hover:bg-background/90";
46
+ readonly "outline-primary": "bg-background text-primary border border-primary/30 hover:bg-background/90";
46
47
  readonly destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90 data-[state=open]:bg-destructive/90";
48
+ readonly "destructive-soft": "bg-red-100 text-red-600 border border-red-500 hover:bg-red-200 data-[state=open]:bg-red-200 dark:bg-red-950 dark:text-red-400 dark:border-red-500 dark:hover:bg-red-900 dark:data-[state=open]:bg-red-900";
49
+ readonly "outline-destructive": "bg-background text-destructive border border-destructive/30 hover:bg-background/90";
47
50
  readonly success: "bg-emerald-500 text-white hover:bg-emerald-600 data-[state=open]:bg-emerald-600";
51
+ readonly "success-soft": "bg-green-100 text-green-600 border border-green-500 hover:bg-green-200 data-[state=open]:bg-green-200 dark:bg-green-950 dark:text-green-400 dark:border-green-500 dark:hover:bg-green-900 dark:data-[state=open]:bg-green-900";
52
+ readonly info: "bg-violet-600 text-white hover:bg-violet-700 data-[state=open]:bg-violet-700";
53
+ readonly "info-soft": "bg-violet-100 text-violet-600 border border-violet-500 hover:bg-violet-200 data-[state=open]:bg-violet-200 dark:bg-violet-950 dark:text-violet-400 dark:border-violet-500 dark:hover:bg-violet-900 dark:data-[state=open]:bg-violet-900";
54
+ readonly warning: "bg-yellow-500 text-white hover:bg-yellow-600 data-[state=open]:bg-yellow-600";
55
+ readonly "warning-soft": "bg-yellow-100 text-yellow-800 border border-yellow-500 hover:bg-yellow-200 data-[state=open]:bg-yellow-200 dark:bg-yellow-950 dark:text-yellow-400 dark:border-yellow-500 dark:hover:bg-yellow-900 dark:data-[state=open]:bg-yellow-900";
56
+ readonly mono: "bg-zinc-950 text-white dark:bg-zinc-300 dark:text-black hover:bg-zinc-950/90 dark:hover:bg-zinc-300/90 data-[state=open]:bg-zinc-950/90 dark:data-[state=open]:bg-zinc-300/90";
48
57
  readonly secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/90 data-[state=open]:bg-secondary/90";
49
58
  readonly outline: "bg-background text-accent-foreground border border-input hover:bg-accent data-[state=open]:bg-accent";
50
59
  readonly dashed: "text-accent-foreground border border-input border-dashed bg-background hover:bg-accent hover:text-accent-foreground data-[state=open]:text-accent-foreground";
@@ -91,7 +100,7 @@ declare const buttonVariantConfig: {
91
100
  };
92
101
  };
93
102
  declare const buttonVariants: (props?: ({
94
- readonly variant?: "ghost" | "outline" | "dashed" | "secondary" | "primary" | "mono" | "destructive" | "inverse" | "foreground" | "success" | "dim" | null | undefined;
103
+ readonly variant?: "ghost" | "outline" | "dashed" | "secondary" | "primary" | "mono" | "destructive" | "destructive-soft" | "dark-primary" | "outline-primary" | "outline-destructive" | "success" | "success-soft" | "info" | "info-soft" | "warning" | "warning-soft" | "inverse" | "foreground" | "dim" | null | undefined;
95
104
  readonly appearance?: "default" | "ghost" | null | undefined;
96
105
  readonly underline?: "dashed" | "solid" | null | undefined;
97
106
  readonly underlined?: "dashed" | "solid" | null | undefined;
@@ -180,6 +189,14 @@ declare function SheetFooter({ className, ...props }: React$1.ComponentProps<'di
180
189
  declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
181
190
  declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
182
191
 
192
+ declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime.JSX.Element;
193
+ declare function Tooltip({ ...props }: React$1.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime.JSX.Element;
194
+ declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof Tooltip$1.Trigger>): react_jsx_runtime.JSX.Element;
195
+ declare const tooltipVariants: (props?: ({
196
+ variant?: "light" | "dark" | null | undefined;
197
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
198
+ declare function TooltipContent({ className, sideOffset, variant, ...props }: React$1.ComponentProps<typeof Tooltip$1.Content> & VariantProps<typeof tooltipVariants>): react_jsx_runtime.JSX.Element;
199
+
183
200
  declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
184
201
  type CommandDialogProps = React$1.ComponentProps<typeof Dialog> & {
185
202
  className?: string;
@@ -295,7 +312,7 @@ type DataGridApiResponse<T> = {
295
312
  };
296
313
  interface DataGridContextProps<TData extends object> {
297
314
  props: DataGridProps<TData>;
298
- table: Table<TData>;
315
+ table: Table$1<TData>;
299
316
  recordCount: number;
300
317
  isLoading: boolean;
301
318
  }
@@ -307,7 +324,7 @@ type DataGridRequestParams = {
307
324
  };
308
325
  interface DataGridProps<TData extends object> {
309
326
  className?: string;
310
- table?: Table<TData>;
327
+ table?: Table$1<TData>;
311
328
  recordCount: number;
312
329
  children?: ReactNode;
313
330
  onRowClick?: (row: TData) => void;
@@ -345,7 +362,7 @@ interface DataGridProps<TData extends object> {
345
362
  }
346
363
  declare function useDataGrid(): DataGridContextProps<any>;
347
364
  declare function DataGridProvider<TData extends object>({ children, table, ...props }: DataGridProps<TData> & {
348
- table: Table<TData>;
365
+ table: Table$1<TData>;
349
366
  }): react_jsx_runtime.JSX.Element;
350
367
  declare function DataGrid<TData extends object>({ children, table, ...props }: DataGridProps<TData>): react_jsx_runtime.JSX.Element;
351
368
  declare function DataGridContainer({ children, className, border, }: {
@@ -435,7 +452,7 @@ interface DataGridPaginationProps {
435
452
  declare function DataGridPagination(props: DataGridPaginationProps): react_jsx_runtime.JSX.Element;
436
453
 
437
454
  declare function DataGridColumnVisibility<TData>({ table, trigger, }: {
438
- table: Table<TData>;
455
+ table: Table$1<TData>;
439
456
  trigger: ReactNode;
440
457
  }): react_jsx_runtime.JSX.Element;
441
458
 
@@ -504,6 +521,15 @@ interface KanbanOverlayProps {
504
521
  }
505
522
  declare function KanbanOverlay({ children, className }: KanbanOverlayProps): react_jsx_runtime.JSX.Element;
506
523
 
524
+ declare function Table({ className, ...props }: React$1.HTMLAttributes<HTMLTableElement>): react_jsx_runtime.JSX.Element;
525
+ declare function TableHeader({ className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement>): react_jsx_runtime.JSX.Element;
526
+ declare function TableBody({ className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement>): react_jsx_runtime.JSX.Element;
527
+ declare function TableFooter({ className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement>): react_jsx_runtime.JSX.Element;
528
+ declare function TableRow({ className, ...props }: React$1.HTMLAttributes<HTMLTableRowElement>): react_jsx_runtime.JSX.Element;
529
+ declare function TableHead({ className, ...props }: React$1.ThHTMLAttributes<HTMLTableCellElement>): react_jsx_runtime.JSX.Element;
530
+ declare function TableCell({ className, ...props }: React$1.TdHTMLAttributes<HTMLTableCellElement>): react_jsx_runtime.JSX.Element;
531
+ declare function TableCaption({ className, ...props }: React$1.HTMLAttributes<HTMLTableCaptionElement>): react_jsx_runtime.JSX.Element;
532
+
507
533
  interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
508
534
  asChild?: boolean;
509
535
  dotClassName?: string;
@@ -1050,4 +1076,4 @@ declare function useMounted(): boolean;
1050
1076
  */
1051
1077
  declare function cn(...inputs: ClassValue[]): string;
1052
1078
 
1053
- export { Accordion, AccordionContent, AccordionItem, AccordionMenu, type AccordionMenuClassNames, AccordionMenuGroup, AccordionMenuIndicator, AccordionMenuItem, AccordionMenuLabel, AccordionMenuSeparator, AccordionMenuSub, AccordionMenuSubContent, AccordionMenuSubTrigger, AccordionTrigger, Alert, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, AlertToolbar, AspectRatio, Avatar, AvatarFallback, AvatarGroup, AvatarGroupItem, AvatarGroupTooltip, AvatarImage, AvatarIndicator, AvatarStatus, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonArrow, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardHeading, CardTable, CardTitle, CardToolbar, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Code, type CodeProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandCheck, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataGrid, type DataGridApiFetchParams, type DataGridApiResponse, DataGridColumnHeader, type DataGridColumnHeaderProps, DataGridColumnVisibility, DataGridContainer, type DataGridContextProps, DataGridPagination, type DataGridPaginationProps, type DataGridProps, DataGridProvider, type DataGridRequestParams, DataGridTable, DataGridTableBase, DataGridTableBody, DataGridTableBodyRow, DataGridTableBodyRowCell, DataGridTableBodyRowExpanded, DataGridTableBodyRowSkeleton, DataGridTableBodyRowSkeletonCell, DataGridTableEmpty, DataGridTableHead, DataGridTableHeadRow, DataGridTableHeadRowCell, DataGridTableHeadRowCellResize, DataGridTableLoader, DataGridTableRowSelect, DataGridTableRowSelectAll, DataGridTableRowSpacer, DateField, DateInput, type DateInputProps, DateSegment, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Input, InputAddon, InputGroup, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, Kanban, KanbanBoard, type KanbanBoardProps, KanbanColumn, KanbanColumnContent, type KanbanColumnContentProps, KanbanColumnHandle, type KanbanColumnHandleProps, type KanbanColumnProps, KanbanItem, KanbanItemHandle, type KanbanItemHandleProps, type KanbanItemProps, type KanbanMoveEvent, KanbanOverlay, type KanbanOverlayProps, type KanbanRootProps, Kbd, Label, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, Popover, PopoverContent, PopoverTrigger, Progress, ProgressCircle, ProgressRadial, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Scrollspy, Select, SelectContent, SelectGroup, SelectIndicator, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, SliderThumb, Spinner, Switch, SwitchIndicator, SwitchWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TimeField, TimelineItem, type TimelineItemProps, Toolbar, ToolbarActions, ToolbarDescription, ToolbarHeading, ToolbarTitle, avatarStatusVariants, badgeVariants, buttonVariantConfig, buttonVariants, cn, codeVariants, containerVariants, dateInputStyles, headings, inputAddonVariants, inputVariants, kbdVariants, labelVariants, navigationMenuTriggerStyle, radioGroupVariants, radioItemVariants, selectTriggerVariants, switchShapes, switchSizes, tabsListVariantConfig, textareaVariants, useChart, useCopyToClipboard, useDataGrid, useIsMobile, useMounted };
1079
+ export { Accordion, AccordionContent, AccordionItem, AccordionMenu, type AccordionMenuClassNames, AccordionMenuGroup, AccordionMenuIndicator, AccordionMenuItem, AccordionMenuLabel, AccordionMenuSeparator, AccordionMenuSub, AccordionMenuSubContent, AccordionMenuSubTrigger, AccordionTrigger, Alert, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, AlertToolbar, AspectRatio, Avatar, AvatarFallback, AvatarGroup, AvatarGroupItem, AvatarGroupTooltip, AvatarImage, AvatarIndicator, AvatarStatus, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonArrow, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardHeading, CardTable, CardTitle, CardToolbar, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Code, type CodeProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandCheck, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataGrid, type DataGridApiFetchParams, type DataGridApiResponse, DataGridColumnHeader, type DataGridColumnHeaderProps, DataGridColumnVisibility, DataGridContainer, type DataGridContextProps, DataGridPagination, type DataGridPaginationProps, type DataGridProps, DataGridProvider, type DataGridRequestParams, DataGridTable, DataGridTableBase, DataGridTableBody, DataGridTableBodyRow, DataGridTableBodyRowCell, DataGridTableBodyRowExpanded, DataGridTableBodyRowSkeleton, DataGridTableBodyRowSkeletonCell, DataGridTableEmpty, DataGridTableHead, DataGridTableHeadRow, DataGridTableHeadRowCell, DataGridTableHeadRowCellResize, DataGridTableLoader, DataGridTableRowSelect, DataGridTableRowSelectAll, DataGridTableRowSpacer, DateField, DateInput, type DateInputProps, DateSegment, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Input, InputAddon, InputGroup, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, Kanban, KanbanBoard, type KanbanBoardProps, KanbanColumn, KanbanColumnContent, type KanbanColumnContentProps, KanbanColumnHandle, type KanbanColumnHandleProps, type KanbanColumnProps, KanbanItem, KanbanItemHandle, type KanbanItemHandleProps, type KanbanItemProps, type KanbanMoveEvent, KanbanOverlay, type KanbanOverlayProps, type KanbanRootProps, Kbd, Label, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, Popover, PopoverContent, PopoverTrigger, Progress, ProgressCircle, ProgressRadial, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Scrollspy, Select, SelectContent, SelectGroup, SelectIndicator, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, SliderThumb, Spinner, Switch, SwitchIndicator, SwitchWrapper, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TimeField, TimelineItem, type TimelineItemProps, Toolbar, ToolbarActions, ToolbarDescription, ToolbarHeading, ToolbarTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, avatarStatusVariants, badgeVariants, buttonVariantConfig, buttonVariants, cn, codeVariants, containerVariants, dateInputStyles, headings, inputAddonVariants, inputVariants, kbdVariants, labelVariants, navigationMenuTriggerStyle, radioGroupVariants, radioItemVariants, selectTriggerVariants, switchShapes, switchSizes, tabsListVariantConfig, textareaVariants, useChart, useCopyToClipboard, useDataGrid, useIsMobile, useMounted };
package/dist/index.d.ts CHANGED
@@ -3,13 +3,13 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
3
3
  import * as React$1 from 'react';
4
4
  import { ReactNode, CSSProperties, HTMLAttributes, RefObject } from 'react';
5
5
  import { VariantProps } from 'class-variance-authority';
6
- import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Popover as Popover$1, Avatar as Avatar$1, Accordion as Accordion$1, Collapsible as Collapsible$1, Tabs as Tabs$1, ContextMenu as ContextMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, Slider as Slider$1, Switch as Switch$1, ScrollArea as ScrollArea$1, AspectRatio as AspectRatio$1, Select as Select$1, Progress as Progress$1, NavigationMenu as NavigationMenu$1 } from 'radix-ui';
6
+ import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Popover as Popover$1, Tooltip as Tooltip$1, Avatar as Avatar$1, Accordion as Accordion$1, Collapsible as Collapsible$1, Tabs as Tabs$1, ContextMenu as ContextMenu$1, Label as Label$1, RadioGroup as RadioGroup$1, Slider as Slider$1, Switch as Switch$1, ScrollArea as ScrollArea$1, AspectRatio as AspectRatio$1, Select as Select$1, Progress as Progress$1, NavigationMenu as NavigationMenu$1 } from 'radix-ui';
7
7
  import { LucideIcon } from 'lucide-react';
8
8
  import { Drawer as Drawer$1 } from 'vaul';
9
9
  import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
10
10
  import { Command as Command$1 } from 'cmdk';
11
11
  import * as RechartsPrimitive from 'recharts';
12
- import { RowData, Table, SortingState, ColumnFiltersState, Row, Cell, Column, HeaderGroup, Header } from '@tanstack/react-table';
12
+ import { RowData, Table as Table$1, SortingState, ColumnFiltersState, Row, Cell, Column, HeaderGroup, Header } from '@tanstack/react-table';
13
13
  import { DragEndEvent, UniqueIdentifier } from '@dnd-kit/core';
14
14
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
15
15
  import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
@@ -42,9 +42,18 @@ declare function AlertContent({ className, ...props }: React$1.HTMLAttributes<HT
42
42
  declare const buttonVariantConfig: {
43
43
  readonly variant: {
44
44
  readonly primary: "bg-primary text-primary-foreground hover:bg-primary/90 data-[state=open]:bg-primary/90";
45
- readonly mono: "bg-zinc-950 text-white dark:bg-zinc-300 dark:text-black hover:bg-zinc-950/90 dark:hover:bg-zinc-300/90 data-[state=open]:bg-zinc-950/90 dark:data-[state=open]:bg-zinc-300/90";
45
+ readonly "dark-primary": "bg-foreground/50 text-white border border-white/20 hover:bg-foreground/70 data-[state=open]:bg-background data-[state=open]:text-primary data-[state=open]:border-primary/30 data-[state=open]:hover:bg-background/90";
46
+ readonly "outline-primary": "bg-background text-primary border border-primary/30 hover:bg-background/90";
46
47
  readonly destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90 data-[state=open]:bg-destructive/90";
48
+ readonly "destructive-soft": "bg-red-100 text-red-600 border border-red-500 hover:bg-red-200 data-[state=open]:bg-red-200 dark:bg-red-950 dark:text-red-400 dark:border-red-500 dark:hover:bg-red-900 dark:data-[state=open]:bg-red-900";
49
+ readonly "outline-destructive": "bg-background text-destructive border border-destructive/30 hover:bg-background/90";
47
50
  readonly success: "bg-emerald-500 text-white hover:bg-emerald-600 data-[state=open]:bg-emerald-600";
51
+ readonly "success-soft": "bg-green-100 text-green-600 border border-green-500 hover:bg-green-200 data-[state=open]:bg-green-200 dark:bg-green-950 dark:text-green-400 dark:border-green-500 dark:hover:bg-green-900 dark:data-[state=open]:bg-green-900";
52
+ readonly info: "bg-violet-600 text-white hover:bg-violet-700 data-[state=open]:bg-violet-700";
53
+ readonly "info-soft": "bg-violet-100 text-violet-600 border border-violet-500 hover:bg-violet-200 data-[state=open]:bg-violet-200 dark:bg-violet-950 dark:text-violet-400 dark:border-violet-500 dark:hover:bg-violet-900 dark:data-[state=open]:bg-violet-900";
54
+ readonly warning: "bg-yellow-500 text-white hover:bg-yellow-600 data-[state=open]:bg-yellow-600";
55
+ readonly "warning-soft": "bg-yellow-100 text-yellow-800 border border-yellow-500 hover:bg-yellow-200 data-[state=open]:bg-yellow-200 dark:bg-yellow-950 dark:text-yellow-400 dark:border-yellow-500 dark:hover:bg-yellow-900 dark:data-[state=open]:bg-yellow-900";
56
+ readonly mono: "bg-zinc-950 text-white dark:bg-zinc-300 dark:text-black hover:bg-zinc-950/90 dark:hover:bg-zinc-300/90 data-[state=open]:bg-zinc-950/90 dark:data-[state=open]:bg-zinc-300/90";
48
57
  readonly secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/90 data-[state=open]:bg-secondary/90";
49
58
  readonly outline: "bg-background text-accent-foreground border border-input hover:bg-accent data-[state=open]:bg-accent";
50
59
  readonly dashed: "text-accent-foreground border border-input border-dashed bg-background hover:bg-accent hover:text-accent-foreground data-[state=open]:text-accent-foreground";
@@ -91,7 +100,7 @@ declare const buttonVariantConfig: {
91
100
  };
92
101
  };
93
102
  declare const buttonVariants: (props?: ({
94
- readonly variant?: "ghost" | "outline" | "dashed" | "secondary" | "primary" | "mono" | "destructive" | "inverse" | "foreground" | "success" | "dim" | null | undefined;
103
+ readonly variant?: "ghost" | "outline" | "dashed" | "secondary" | "primary" | "mono" | "destructive" | "destructive-soft" | "dark-primary" | "outline-primary" | "outline-destructive" | "success" | "success-soft" | "info" | "info-soft" | "warning" | "warning-soft" | "inverse" | "foreground" | "dim" | null | undefined;
95
104
  readonly appearance?: "default" | "ghost" | null | undefined;
96
105
  readonly underline?: "dashed" | "solid" | null | undefined;
97
106
  readonly underlined?: "dashed" | "solid" | null | undefined;
@@ -180,6 +189,14 @@ declare function SheetFooter({ className, ...props }: React$1.ComponentProps<'di
180
189
  declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
181
190
  declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
182
191
 
192
+ declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof Tooltip$1.Provider>): react_jsx_runtime.JSX.Element;
193
+ declare function Tooltip({ ...props }: React$1.ComponentProps<typeof Tooltip$1.Root>): react_jsx_runtime.JSX.Element;
194
+ declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof Tooltip$1.Trigger>): react_jsx_runtime.JSX.Element;
195
+ declare const tooltipVariants: (props?: ({
196
+ variant?: "light" | "dark" | null | undefined;
197
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
198
+ declare function TooltipContent({ className, sideOffset, variant, ...props }: React$1.ComponentProps<typeof Tooltip$1.Content> & VariantProps<typeof tooltipVariants>): react_jsx_runtime.JSX.Element;
199
+
183
200
  declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
184
201
  type CommandDialogProps = React$1.ComponentProps<typeof Dialog> & {
185
202
  className?: string;
@@ -295,7 +312,7 @@ type DataGridApiResponse<T> = {
295
312
  };
296
313
  interface DataGridContextProps<TData extends object> {
297
314
  props: DataGridProps<TData>;
298
- table: Table<TData>;
315
+ table: Table$1<TData>;
299
316
  recordCount: number;
300
317
  isLoading: boolean;
301
318
  }
@@ -307,7 +324,7 @@ type DataGridRequestParams = {
307
324
  };
308
325
  interface DataGridProps<TData extends object> {
309
326
  className?: string;
310
- table?: Table<TData>;
327
+ table?: Table$1<TData>;
311
328
  recordCount: number;
312
329
  children?: ReactNode;
313
330
  onRowClick?: (row: TData) => void;
@@ -345,7 +362,7 @@ interface DataGridProps<TData extends object> {
345
362
  }
346
363
  declare function useDataGrid(): DataGridContextProps<any>;
347
364
  declare function DataGridProvider<TData extends object>({ children, table, ...props }: DataGridProps<TData> & {
348
- table: Table<TData>;
365
+ table: Table$1<TData>;
349
366
  }): react_jsx_runtime.JSX.Element;
350
367
  declare function DataGrid<TData extends object>({ children, table, ...props }: DataGridProps<TData>): react_jsx_runtime.JSX.Element;
351
368
  declare function DataGridContainer({ children, className, border, }: {
@@ -435,7 +452,7 @@ interface DataGridPaginationProps {
435
452
  declare function DataGridPagination(props: DataGridPaginationProps): react_jsx_runtime.JSX.Element;
436
453
 
437
454
  declare function DataGridColumnVisibility<TData>({ table, trigger, }: {
438
- table: Table<TData>;
455
+ table: Table$1<TData>;
439
456
  trigger: ReactNode;
440
457
  }): react_jsx_runtime.JSX.Element;
441
458
 
@@ -504,6 +521,15 @@ interface KanbanOverlayProps {
504
521
  }
505
522
  declare function KanbanOverlay({ children, className }: KanbanOverlayProps): react_jsx_runtime.JSX.Element;
506
523
 
524
+ declare function Table({ className, ...props }: React$1.HTMLAttributes<HTMLTableElement>): react_jsx_runtime.JSX.Element;
525
+ declare function TableHeader({ className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement>): react_jsx_runtime.JSX.Element;
526
+ declare function TableBody({ className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement>): react_jsx_runtime.JSX.Element;
527
+ declare function TableFooter({ className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement>): react_jsx_runtime.JSX.Element;
528
+ declare function TableRow({ className, ...props }: React$1.HTMLAttributes<HTMLTableRowElement>): react_jsx_runtime.JSX.Element;
529
+ declare function TableHead({ className, ...props }: React$1.ThHTMLAttributes<HTMLTableCellElement>): react_jsx_runtime.JSX.Element;
530
+ declare function TableCell({ className, ...props }: React$1.TdHTMLAttributes<HTMLTableCellElement>): react_jsx_runtime.JSX.Element;
531
+ declare function TableCaption({ className, ...props }: React$1.HTMLAttributes<HTMLTableCaptionElement>): react_jsx_runtime.JSX.Element;
532
+
507
533
  interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
508
534
  asChild?: boolean;
509
535
  dotClassName?: string;
@@ -1050,4 +1076,4 @@ declare function useMounted(): boolean;
1050
1076
  */
1051
1077
  declare function cn(...inputs: ClassValue[]): string;
1052
1078
 
1053
- export { Accordion, AccordionContent, AccordionItem, AccordionMenu, type AccordionMenuClassNames, AccordionMenuGroup, AccordionMenuIndicator, AccordionMenuItem, AccordionMenuLabel, AccordionMenuSeparator, AccordionMenuSub, AccordionMenuSubContent, AccordionMenuSubTrigger, AccordionTrigger, Alert, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, AlertToolbar, AspectRatio, Avatar, AvatarFallback, AvatarGroup, AvatarGroupItem, AvatarGroupTooltip, AvatarImage, AvatarIndicator, AvatarStatus, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonArrow, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardHeading, CardTable, CardTitle, CardToolbar, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Code, type CodeProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandCheck, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataGrid, type DataGridApiFetchParams, type DataGridApiResponse, DataGridColumnHeader, type DataGridColumnHeaderProps, DataGridColumnVisibility, DataGridContainer, type DataGridContextProps, DataGridPagination, type DataGridPaginationProps, type DataGridProps, DataGridProvider, type DataGridRequestParams, DataGridTable, DataGridTableBase, DataGridTableBody, DataGridTableBodyRow, DataGridTableBodyRowCell, DataGridTableBodyRowExpanded, DataGridTableBodyRowSkeleton, DataGridTableBodyRowSkeletonCell, DataGridTableEmpty, DataGridTableHead, DataGridTableHeadRow, DataGridTableHeadRowCell, DataGridTableHeadRowCellResize, DataGridTableLoader, DataGridTableRowSelect, DataGridTableRowSelectAll, DataGridTableRowSpacer, DateField, DateInput, type DateInputProps, DateSegment, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Input, InputAddon, InputGroup, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, Kanban, KanbanBoard, type KanbanBoardProps, KanbanColumn, KanbanColumnContent, type KanbanColumnContentProps, KanbanColumnHandle, type KanbanColumnHandleProps, type KanbanColumnProps, KanbanItem, KanbanItemHandle, type KanbanItemHandleProps, type KanbanItemProps, type KanbanMoveEvent, KanbanOverlay, type KanbanOverlayProps, type KanbanRootProps, Kbd, Label, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, Popover, PopoverContent, PopoverTrigger, Progress, ProgressCircle, ProgressRadial, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Scrollspy, Select, SelectContent, SelectGroup, SelectIndicator, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, SliderThumb, Spinner, Switch, SwitchIndicator, SwitchWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TimeField, TimelineItem, type TimelineItemProps, Toolbar, ToolbarActions, ToolbarDescription, ToolbarHeading, ToolbarTitle, avatarStatusVariants, badgeVariants, buttonVariantConfig, buttonVariants, cn, codeVariants, containerVariants, dateInputStyles, headings, inputAddonVariants, inputVariants, kbdVariants, labelVariants, navigationMenuTriggerStyle, radioGroupVariants, radioItemVariants, selectTriggerVariants, switchShapes, switchSizes, tabsListVariantConfig, textareaVariants, useChart, useCopyToClipboard, useDataGrid, useIsMobile, useMounted };
1079
+ export { Accordion, AccordionContent, AccordionItem, AccordionMenu, type AccordionMenuClassNames, AccordionMenuGroup, AccordionMenuIndicator, AccordionMenuItem, AccordionMenuLabel, AccordionMenuSeparator, AccordionMenuSub, AccordionMenuSubContent, AccordionMenuSubTrigger, AccordionTrigger, Alert, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, AlertToolbar, AspectRatio, Avatar, AvatarFallback, AvatarGroup, AvatarGroupItem, AvatarGroupTooltip, AvatarImage, AvatarIndicator, AvatarStatus, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonArrow, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardHeading, CardTable, CardTitle, CardToolbar, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Code, type CodeProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandCheck, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataGrid, type DataGridApiFetchParams, type DataGridApiResponse, DataGridColumnHeader, type DataGridColumnHeaderProps, DataGridColumnVisibility, DataGridContainer, type DataGridContextProps, DataGridPagination, type DataGridPaginationProps, type DataGridProps, DataGridProvider, type DataGridRequestParams, DataGridTable, DataGridTableBase, DataGridTableBody, DataGridTableBodyRow, DataGridTableBodyRowCell, DataGridTableBodyRowExpanded, DataGridTableBodyRowSkeleton, DataGridTableBodyRowSkeletonCell, DataGridTableEmpty, DataGridTableHead, DataGridTableHeadRow, DataGridTableHeadRowCell, DataGridTableHeadRowCellResize, DataGridTableLoader, DataGridTableRowSelect, DataGridTableRowSelectAll, DataGridTableRowSpacer, DateField, DateInput, type DateInputProps, DateSegment, Dialog, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Input, InputAddon, InputGroup, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, Kanban, KanbanBoard, type KanbanBoardProps, KanbanColumn, KanbanColumnContent, type KanbanColumnContentProps, KanbanColumnHandle, type KanbanColumnHandleProps, type KanbanColumnProps, KanbanItem, KanbanItemHandle, type KanbanItemHandleProps, type KanbanItemProps, type KanbanMoveEvent, KanbanOverlay, type KanbanOverlayProps, type KanbanRootProps, Kbd, Label, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, Popover, PopoverContent, PopoverTrigger, Progress, ProgressCircle, ProgressRadial, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Scrollspy, Select, SelectContent, SelectGroup, SelectIndicator, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, SliderThumb, Spinner, Switch, SwitchIndicator, SwitchWrapper, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TimeField, TimelineItem, type TimelineItemProps, Toolbar, ToolbarActions, ToolbarDescription, ToolbarHeading, ToolbarTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, avatarStatusVariants, badgeVariants, buttonVariantConfig, buttonVariants, cn, codeVariants, containerVariants, dateInputStyles, headings, inputAddonVariants, inputVariants, kbdVariants, labelVariants, navigationMenuTriggerStyle, radioGroupVariants, radioItemVariants, selectTriggerVariants, switchShapes, switchSizes, tabsListVariantConfig, textareaVariants, useChart, useCopyToClipboard, useDataGrid, useIsMobile, useMounted };