shadcn-ui-react 0.2.0 → 0.2.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/LICENSE +1 -1
- package/dist/index.cjs +17316 -48
- package/dist/index.d.cts +87 -2
- package/dist/index.d.ts +87 -2
- package/dist/index.js +17334 -42
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
+
import React__default, { Dispatch, SetStateAction } from 'react';
|
|
3
4
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
4
5
|
import { VariantProps } from 'class-variance-authority';
|
|
5
6
|
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
@@ -40,6 +41,7 @@ import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
|
40
41
|
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
41
42
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
42
43
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
44
|
+
import { ColumnDef } from '@tanstack/react-table';
|
|
43
45
|
import { ClassValue } from 'clsx';
|
|
44
46
|
|
|
45
47
|
declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -685,6 +687,19 @@ interface NavItem {
|
|
|
685
687
|
label?: string;
|
|
686
688
|
description?: string;
|
|
687
689
|
}
|
|
690
|
+
type HeaderProps = {
|
|
691
|
+
items: NavItem[];
|
|
692
|
+
className?: string;
|
|
693
|
+
classNameContent?: string;
|
|
694
|
+
};
|
|
695
|
+
declare function Header({ items, className, classNameContent }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
696
|
+
|
|
697
|
+
interface DashboardNavProps {
|
|
698
|
+
items: NavItem[];
|
|
699
|
+
setOpen?: Dispatch<SetStateAction<boolean>>;
|
|
700
|
+
isMobileNav?: boolean;
|
|
701
|
+
}
|
|
702
|
+
declare function DashboardNav({ items, setOpen, isMobileNav, }: DashboardNavProps): react_jsx_runtime.JSX.Element;
|
|
688
703
|
|
|
689
704
|
type DataTableSkeletonProps = {
|
|
690
705
|
columnCount: number;
|
|
@@ -693,10 +708,80 @@ type DataTableSkeletonProps = {
|
|
|
693
708
|
filterableColumnCount?: number;
|
|
694
709
|
showViewOptions?: boolean;
|
|
695
710
|
};
|
|
696
|
-
declare function DataTableSkeleton({ columnCount, rowCount, searchableColumnCount, filterableColumnCount, showViewOptions }: DataTableSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
711
|
+
declare function DataTableSkeleton({ columnCount, rowCount, searchableColumnCount, filterableColumnCount, showViewOptions, }: DataTableSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
712
|
+
|
|
713
|
+
interface DataTableProps<TData, TValue> {
|
|
714
|
+
className?: string;
|
|
715
|
+
tableClassName?: string;
|
|
716
|
+
headerClassName?: string;
|
|
717
|
+
bodyClassName?: string;
|
|
718
|
+
rowClassName?: string;
|
|
719
|
+
cellClassName?: string;
|
|
720
|
+
page?: number;
|
|
721
|
+
perPage?: number;
|
|
722
|
+
onPageChange: (page: number) => void;
|
|
723
|
+
onClick: (row: TData) => void;
|
|
724
|
+
columns: ColumnDef<TData, TValue>[];
|
|
725
|
+
data: TData[];
|
|
726
|
+
pageSizeOptions?: number[];
|
|
727
|
+
pageCount: number;
|
|
728
|
+
rowPerPageLabel?: string;
|
|
729
|
+
pageLabel?: string;
|
|
730
|
+
ofLabel?: string;
|
|
731
|
+
emptyData?: React__default.ReactNode;
|
|
732
|
+
}
|
|
733
|
+
declare function DataTable<TData, TValue>({ columns, data, pageCount, page, perPage, pageSizeOptions, rowPerPageLabel, ofLabel, pageLabel, className, emptyData, bodyClassName, cellClassName, headerClassName, rowClassName, tableClassName, onPageChange, onClick, }: DataTableProps<TData, TValue>): react_jsx_runtime.JSX.Element;
|
|
734
|
+
|
|
735
|
+
type TFileUploadProps = {
|
|
736
|
+
label?: string;
|
|
737
|
+
onChange: (value: File[]) => void;
|
|
738
|
+
value: File[];
|
|
739
|
+
className?: string;
|
|
740
|
+
classNameContent?: string;
|
|
741
|
+
};
|
|
742
|
+
declare function FileUpload({ onChange, value, label, className, classNameContent, }: TFileUploadProps): react_jsx_runtime.JSX.Element;
|
|
743
|
+
declare function ImagePreview({ file }: {
|
|
744
|
+
file: File;
|
|
745
|
+
}): react_jsx_runtime.JSX.Element;
|
|
746
|
+
|
|
747
|
+
type THeadingProps = {
|
|
748
|
+
title: string;
|
|
749
|
+
description?: string;
|
|
750
|
+
className?: string;
|
|
751
|
+
};
|
|
752
|
+
declare function Heading({ title, description, className }: THeadingProps): react_jsx_runtime.JSX.Element;
|
|
753
|
+
|
|
754
|
+
type TMobileSidebarProps = {
|
|
755
|
+
items: NavItem[];
|
|
756
|
+
header?: React.ReactNode;
|
|
757
|
+
className?: string;
|
|
758
|
+
setSidebarOpen: Dispatch<SetStateAction<boolean>>;
|
|
759
|
+
sidebarOpen: boolean;
|
|
760
|
+
};
|
|
761
|
+
declare function MobileSidebar({ items, setSidebarOpen, sidebarOpen, header, }: TMobileSidebarProps): react_jsx_runtime.JSX.Element;
|
|
762
|
+
|
|
763
|
+
declare function PageHead({ title }: {
|
|
764
|
+
title?: string;
|
|
765
|
+
}): react_jsx_runtime.JSX.Element;
|
|
766
|
+
|
|
767
|
+
type TPaginationSectionProps = {
|
|
768
|
+
totalPosts: number;
|
|
769
|
+
postsPerPage: number;
|
|
770
|
+
currentPage: number;
|
|
771
|
+
setCurrentPage: (page: number) => void;
|
|
772
|
+
};
|
|
773
|
+
declare function PaginationSection({ totalPosts, postsPerPage, currentPage, setCurrentPage, }: TPaginationSectionProps): react_jsx_runtime.JSX.Element;
|
|
774
|
+
|
|
775
|
+
type SidebarProps = {
|
|
776
|
+
items: NavItem[];
|
|
777
|
+
className?: string;
|
|
778
|
+
};
|
|
779
|
+
declare function Sidebar({ items, className }: SidebarProps): react_jsx_runtime.JSX.Element;
|
|
697
780
|
|
|
698
781
|
declare function ModeToggle(): react_jsx_runtime.JSX.Element;
|
|
699
782
|
|
|
783
|
+
declare function UserNav(): react_jsx_runtime.JSX.Element;
|
|
784
|
+
|
|
700
785
|
declare function cn(...inputs: ClassValue[]): string;
|
|
701
786
|
|
|
702
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertModal, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTableSkeleton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Modal, ModeToggle, type NavItem, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationNextLast, PaginationPrevious, PaginationPreviousLast, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, navigationMenuTriggerStyle, reducer, toast, toggleVariants, useFormField, useToast };
|
|
787
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertModal, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DashboardNav, DataTable, DataTableSkeleton, 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, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Header, Heading, HoverCard, HoverCardContent, HoverCardTrigger, Icons, ImagePreview, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MobileSidebar, Modal, ModeToggle, type NavItem, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PageHead, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationNextLast, PaginationPrevious, PaginationPreviousLast, PaginationSection, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, Skeleton, Slider, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UserNav, badgeVariants, buttonVariants, cn, navigationMenuTriggerStyle, reducer, toast, toggleVariants, useFormField, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
|
+
import React__default, { Dispatch, SetStateAction } from 'react';
|
|
3
4
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
4
5
|
import { VariantProps } from 'class-variance-authority';
|
|
5
6
|
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
@@ -40,6 +41,7 @@ import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
|
40
41
|
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
41
42
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
42
43
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
44
|
+
import { ColumnDef } from '@tanstack/react-table';
|
|
43
45
|
import { ClassValue } from 'clsx';
|
|
44
46
|
|
|
45
47
|
declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -685,6 +687,19 @@ interface NavItem {
|
|
|
685
687
|
label?: string;
|
|
686
688
|
description?: string;
|
|
687
689
|
}
|
|
690
|
+
type HeaderProps = {
|
|
691
|
+
items: NavItem[];
|
|
692
|
+
className?: string;
|
|
693
|
+
classNameContent?: string;
|
|
694
|
+
};
|
|
695
|
+
declare function Header({ items, className, classNameContent }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
696
|
+
|
|
697
|
+
interface DashboardNavProps {
|
|
698
|
+
items: NavItem[];
|
|
699
|
+
setOpen?: Dispatch<SetStateAction<boolean>>;
|
|
700
|
+
isMobileNav?: boolean;
|
|
701
|
+
}
|
|
702
|
+
declare function DashboardNav({ items, setOpen, isMobileNav, }: DashboardNavProps): react_jsx_runtime.JSX.Element;
|
|
688
703
|
|
|
689
704
|
type DataTableSkeletonProps = {
|
|
690
705
|
columnCount: number;
|
|
@@ -693,10 +708,80 @@ type DataTableSkeletonProps = {
|
|
|
693
708
|
filterableColumnCount?: number;
|
|
694
709
|
showViewOptions?: boolean;
|
|
695
710
|
};
|
|
696
|
-
declare function DataTableSkeleton({ columnCount, rowCount, searchableColumnCount, filterableColumnCount, showViewOptions }: DataTableSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
711
|
+
declare function DataTableSkeleton({ columnCount, rowCount, searchableColumnCount, filterableColumnCount, showViewOptions, }: DataTableSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
712
|
+
|
|
713
|
+
interface DataTableProps<TData, TValue> {
|
|
714
|
+
className?: string;
|
|
715
|
+
tableClassName?: string;
|
|
716
|
+
headerClassName?: string;
|
|
717
|
+
bodyClassName?: string;
|
|
718
|
+
rowClassName?: string;
|
|
719
|
+
cellClassName?: string;
|
|
720
|
+
page?: number;
|
|
721
|
+
perPage?: number;
|
|
722
|
+
onPageChange: (page: number) => void;
|
|
723
|
+
onClick: (row: TData) => void;
|
|
724
|
+
columns: ColumnDef<TData, TValue>[];
|
|
725
|
+
data: TData[];
|
|
726
|
+
pageSizeOptions?: number[];
|
|
727
|
+
pageCount: number;
|
|
728
|
+
rowPerPageLabel?: string;
|
|
729
|
+
pageLabel?: string;
|
|
730
|
+
ofLabel?: string;
|
|
731
|
+
emptyData?: React__default.ReactNode;
|
|
732
|
+
}
|
|
733
|
+
declare function DataTable<TData, TValue>({ columns, data, pageCount, page, perPage, pageSizeOptions, rowPerPageLabel, ofLabel, pageLabel, className, emptyData, bodyClassName, cellClassName, headerClassName, rowClassName, tableClassName, onPageChange, onClick, }: DataTableProps<TData, TValue>): react_jsx_runtime.JSX.Element;
|
|
734
|
+
|
|
735
|
+
type TFileUploadProps = {
|
|
736
|
+
label?: string;
|
|
737
|
+
onChange: (value: File[]) => void;
|
|
738
|
+
value: File[];
|
|
739
|
+
className?: string;
|
|
740
|
+
classNameContent?: string;
|
|
741
|
+
};
|
|
742
|
+
declare function FileUpload({ onChange, value, label, className, classNameContent, }: TFileUploadProps): react_jsx_runtime.JSX.Element;
|
|
743
|
+
declare function ImagePreview({ file }: {
|
|
744
|
+
file: File;
|
|
745
|
+
}): react_jsx_runtime.JSX.Element;
|
|
746
|
+
|
|
747
|
+
type THeadingProps = {
|
|
748
|
+
title: string;
|
|
749
|
+
description?: string;
|
|
750
|
+
className?: string;
|
|
751
|
+
};
|
|
752
|
+
declare function Heading({ title, description, className }: THeadingProps): react_jsx_runtime.JSX.Element;
|
|
753
|
+
|
|
754
|
+
type TMobileSidebarProps = {
|
|
755
|
+
items: NavItem[];
|
|
756
|
+
header?: React.ReactNode;
|
|
757
|
+
className?: string;
|
|
758
|
+
setSidebarOpen: Dispatch<SetStateAction<boolean>>;
|
|
759
|
+
sidebarOpen: boolean;
|
|
760
|
+
};
|
|
761
|
+
declare function MobileSidebar({ items, setSidebarOpen, sidebarOpen, header, }: TMobileSidebarProps): react_jsx_runtime.JSX.Element;
|
|
762
|
+
|
|
763
|
+
declare function PageHead({ title }: {
|
|
764
|
+
title?: string;
|
|
765
|
+
}): react_jsx_runtime.JSX.Element;
|
|
766
|
+
|
|
767
|
+
type TPaginationSectionProps = {
|
|
768
|
+
totalPosts: number;
|
|
769
|
+
postsPerPage: number;
|
|
770
|
+
currentPage: number;
|
|
771
|
+
setCurrentPage: (page: number) => void;
|
|
772
|
+
};
|
|
773
|
+
declare function PaginationSection({ totalPosts, postsPerPage, currentPage, setCurrentPage, }: TPaginationSectionProps): react_jsx_runtime.JSX.Element;
|
|
774
|
+
|
|
775
|
+
type SidebarProps = {
|
|
776
|
+
items: NavItem[];
|
|
777
|
+
className?: string;
|
|
778
|
+
};
|
|
779
|
+
declare function Sidebar({ items, className }: SidebarProps): react_jsx_runtime.JSX.Element;
|
|
697
780
|
|
|
698
781
|
declare function ModeToggle(): react_jsx_runtime.JSX.Element;
|
|
699
782
|
|
|
783
|
+
declare function UserNav(): react_jsx_runtime.JSX.Element;
|
|
784
|
+
|
|
700
785
|
declare function cn(...inputs: ClassValue[]): string;
|
|
701
786
|
|
|
702
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertModal, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTableSkeleton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Modal, ModeToggle, type NavItem, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationNextLast, PaginationPrevious, PaginationPreviousLast, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, navigationMenuTriggerStyle, reducer, toast, toggleVariants, useFormField, useToast };
|
|
787
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertModal, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Breadcrumbs, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DashboardNav, DataTable, DataTableSkeleton, 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, FileUpload, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Header, Heading, HoverCard, HoverCardContent, HoverCardTrigger, Icons, ImagePreview, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MobileSidebar, Modal, ModeToggle, type NavItem, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PageHead, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationNextLast, PaginationPrevious, PaginationPreviousLast, PaginationSection, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, Skeleton, Slider, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UserNav, badgeVariants, buttonVariants, cn, navigationMenuTriggerStyle, reducer, toast, toggleVariants, useFormField, useToast };
|