@melv1c/ui-kit 1.2.0 → 1.2.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/{chunk-RKE7ZPNV.cjs → chunk-H4O6RXFK.cjs} +26 -2
- package/dist/chunk-H4O6RXFK.cjs.map +1 -0
- package/dist/{chunk-5SGT7Y7J.js → chunk-PWXJ2ONW.js} +26 -2
- package/dist/chunk-PWXJ2ONW.js.map +1 -0
- package/dist/index.cjs +339 -53
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +47 -6
- package/dist/index.d.ts +47 -6
- package/dist/index.js +339 -55
- package/dist/index.js.map +1 -1
- package/dist/locales/index.cjs +7 -7
- package/dist/locales/index.d.cts +24 -0
- package/dist/locales/index.d.ts +24 -0
- package/dist/locales/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-5SGT7Y7J.js.map +0 -1
- package/dist/chunk-RKE7ZPNV.cjs.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -35,6 +35,7 @@ import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
|
35
35
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
36
36
|
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
37
37
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
38
|
+
import * as z from 'zod';
|
|
38
39
|
import { i18n } from 'i18next';
|
|
39
40
|
import { ClassValue } from 'clsx';
|
|
40
41
|
|
|
@@ -437,10 +438,14 @@ declare function ToggleGroup({ className, variant, size, spacing, children, ...p
|
|
|
437
438
|
}): react_jsx_runtime.JSX.Element;
|
|
438
439
|
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
439
440
|
|
|
441
|
+
type LoginFormValues = {
|
|
442
|
+
email: string;
|
|
443
|
+
password: string;
|
|
444
|
+
};
|
|
440
445
|
type LoginProvider = "google" | "github" | "apple" | "microsoft" | "facebook";
|
|
441
446
|
interface LoginFormProps {
|
|
442
|
-
/** Callback when form is submitted with email and password */
|
|
443
|
-
onSubmit?: (email: string, password: string) => void
|
|
447
|
+
/** Callback when form is submitted with email and password. Can throw an error that will be caught and displayed. */
|
|
448
|
+
onSubmit?: (email: string, password: string) => void | Promise<void>;
|
|
444
449
|
/** Callback when a social provider login button is clicked */
|
|
445
450
|
onProviderLogin?: (provider: LoginProvider) => void;
|
|
446
451
|
/** Callback when forgot password link is clicked */
|
|
@@ -457,16 +462,52 @@ interface LoginFormProps {
|
|
|
457
462
|
title?: string;
|
|
458
463
|
/** Custom description for the login form */
|
|
459
464
|
description?: string;
|
|
460
|
-
/**
|
|
461
|
-
|
|
465
|
+
/** Custom validation schema (overrides default and translated schema) */
|
|
466
|
+
schema?: z.ZodType<LoginFormValues>;
|
|
462
467
|
/** Additional class name for the card container */
|
|
463
468
|
className?: string;
|
|
464
469
|
}
|
|
465
|
-
declare function LoginForm({ onSubmit, onProviderLogin, onForgotPassword, onSignUp, providers, showForgotPassword, showSignUp, title, description,
|
|
470
|
+
declare function LoginForm({ onSubmit, onProviderLogin, onForgotPassword, onSignUp, providers, showForgotPassword, showSignUp, title, description, schema, className, }: LoginFormProps): react_jsx_runtime.JSX.Element;
|
|
466
471
|
|
|
467
472
|
declare function NextButton(props: Omit<ComponentProps<typeof Button>, "children">): react_jsx_runtime.JSX.Element;
|
|
468
473
|
declare function PreviousButton(props: Omit<ComponentProps<typeof Button>, "children">): react_jsx_runtime.JSX.Element;
|
|
469
474
|
|
|
475
|
+
interface DateTimePickerProps {
|
|
476
|
+
/**
|
|
477
|
+
* The selected date and time
|
|
478
|
+
*/
|
|
479
|
+
value?: Date;
|
|
480
|
+
/**
|
|
481
|
+
* Callback when the date or time changes
|
|
482
|
+
*/
|
|
483
|
+
onChange?: (date: Date | undefined) => void;
|
|
484
|
+
/**
|
|
485
|
+
* Label for the picker
|
|
486
|
+
*/
|
|
487
|
+
label?: string;
|
|
488
|
+
/**
|
|
489
|
+
* Placeholder text when no date is selected
|
|
490
|
+
*/
|
|
491
|
+
placeholder?: string;
|
|
492
|
+
/**
|
|
493
|
+
* Whether to show the clear button
|
|
494
|
+
*/
|
|
495
|
+
showClear?: boolean;
|
|
496
|
+
/**
|
|
497
|
+
* Disable the picker
|
|
498
|
+
*/
|
|
499
|
+
disabled?: boolean;
|
|
500
|
+
/**
|
|
501
|
+
* Custom className for the container
|
|
502
|
+
*/
|
|
503
|
+
className?: string;
|
|
504
|
+
/**
|
|
505
|
+
* Date time format function
|
|
506
|
+
*/
|
|
507
|
+
formatDateTime?: (date: Date) => string;
|
|
508
|
+
}
|
|
509
|
+
declare function DateTimePicker({ value, onChange, label, placeholder, showClear, disabled, className, formatDateTime, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
510
|
+
|
|
470
511
|
declare const appleIconVariants: (props?: ({
|
|
471
512
|
variant?: "default" | "transparent" | "dark" | "light" | null | undefined;
|
|
472
513
|
shape?: "default" | "square" | "rounded" | null | undefined;
|
|
@@ -570,4 +611,4 @@ declare function TranslationProvider({ i18n, children, fallback, overrides, }: T
|
|
|
570
611
|
|
|
571
612
|
declare function cn(...inputs: ClassValue[]): string;
|
|
572
613
|
|
|
573
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppleIcon, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, 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, 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, FacebookIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GithubIcon, GoogleIcon, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label, LocaleProvider, LoginForm, type LoginFormProps, type LoginProvider, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MicrosoftIcon, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NextButton, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreviousButton, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, type SupportedLanguage, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TranslationProvider, appleIconVariants, badgeVariants, buttonGroupVariants, buttonVariants, cn, facebookIconVariants, githubIconVariants, googleIconVariants, microsoftIconVariants, navigationMenuTriggerStyle, toggleVariants, useFormField, useSidebar };
|
|
614
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppleIcon, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, 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, DateTimePicker, type DateTimePickerProps, 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, FacebookIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GithubIcon, GoogleIcon, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label, LocaleProvider, LoginForm, type LoginFormProps, type LoginFormValues, type LoginProvider, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MicrosoftIcon, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NextButton, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreviousButton, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, type SupportedLanguage, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TranslationProvider, appleIconVariants, badgeVariants, buttonGroupVariants, buttonVariants, cn, facebookIconVariants, githubIconVariants, googleIconVariants, microsoftIconVariants, navigationMenuTriggerStyle, toggleVariants, useFormField, useSidebar };
|
package/dist/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
|
35
35
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
36
36
|
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
37
37
|
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
38
|
+
import * as z from 'zod';
|
|
38
39
|
import { i18n } from 'i18next';
|
|
39
40
|
import { ClassValue } from 'clsx';
|
|
40
41
|
|
|
@@ -437,10 +438,14 @@ declare function ToggleGroup({ className, variant, size, spacing, children, ...p
|
|
|
437
438
|
}): react_jsx_runtime.JSX.Element;
|
|
438
439
|
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
439
440
|
|
|
441
|
+
type LoginFormValues = {
|
|
442
|
+
email: string;
|
|
443
|
+
password: string;
|
|
444
|
+
};
|
|
440
445
|
type LoginProvider = "google" | "github" | "apple" | "microsoft" | "facebook";
|
|
441
446
|
interface LoginFormProps {
|
|
442
|
-
/** Callback when form is submitted with email and password */
|
|
443
|
-
onSubmit?: (email: string, password: string) => void
|
|
447
|
+
/** Callback when form is submitted with email and password. Can throw an error that will be caught and displayed. */
|
|
448
|
+
onSubmit?: (email: string, password: string) => void | Promise<void>;
|
|
444
449
|
/** Callback when a social provider login button is clicked */
|
|
445
450
|
onProviderLogin?: (provider: LoginProvider) => void;
|
|
446
451
|
/** Callback when forgot password link is clicked */
|
|
@@ -457,16 +462,52 @@ interface LoginFormProps {
|
|
|
457
462
|
title?: string;
|
|
458
463
|
/** Custom description for the login form */
|
|
459
464
|
description?: string;
|
|
460
|
-
/**
|
|
461
|
-
|
|
465
|
+
/** Custom validation schema (overrides default and translated schema) */
|
|
466
|
+
schema?: z.ZodType<LoginFormValues>;
|
|
462
467
|
/** Additional class name for the card container */
|
|
463
468
|
className?: string;
|
|
464
469
|
}
|
|
465
|
-
declare function LoginForm({ onSubmit, onProviderLogin, onForgotPassword, onSignUp, providers, showForgotPassword, showSignUp, title, description,
|
|
470
|
+
declare function LoginForm({ onSubmit, onProviderLogin, onForgotPassword, onSignUp, providers, showForgotPassword, showSignUp, title, description, schema, className, }: LoginFormProps): react_jsx_runtime.JSX.Element;
|
|
466
471
|
|
|
467
472
|
declare function NextButton(props: Omit<ComponentProps<typeof Button>, "children">): react_jsx_runtime.JSX.Element;
|
|
468
473
|
declare function PreviousButton(props: Omit<ComponentProps<typeof Button>, "children">): react_jsx_runtime.JSX.Element;
|
|
469
474
|
|
|
475
|
+
interface DateTimePickerProps {
|
|
476
|
+
/**
|
|
477
|
+
* The selected date and time
|
|
478
|
+
*/
|
|
479
|
+
value?: Date;
|
|
480
|
+
/**
|
|
481
|
+
* Callback when the date or time changes
|
|
482
|
+
*/
|
|
483
|
+
onChange?: (date: Date | undefined) => void;
|
|
484
|
+
/**
|
|
485
|
+
* Label for the picker
|
|
486
|
+
*/
|
|
487
|
+
label?: string;
|
|
488
|
+
/**
|
|
489
|
+
* Placeholder text when no date is selected
|
|
490
|
+
*/
|
|
491
|
+
placeholder?: string;
|
|
492
|
+
/**
|
|
493
|
+
* Whether to show the clear button
|
|
494
|
+
*/
|
|
495
|
+
showClear?: boolean;
|
|
496
|
+
/**
|
|
497
|
+
* Disable the picker
|
|
498
|
+
*/
|
|
499
|
+
disabled?: boolean;
|
|
500
|
+
/**
|
|
501
|
+
* Custom className for the container
|
|
502
|
+
*/
|
|
503
|
+
className?: string;
|
|
504
|
+
/**
|
|
505
|
+
* Date time format function
|
|
506
|
+
*/
|
|
507
|
+
formatDateTime?: (date: Date) => string;
|
|
508
|
+
}
|
|
509
|
+
declare function DateTimePicker({ value, onChange, label, placeholder, showClear, disabled, className, formatDateTime, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
|
|
510
|
+
|
|
470
511
|
declare const appleIconVariants: (props?: ({
|
|
471
512
|
variant?: "default" | "transparent" | "dark" | "light" | null | undefined;
|
|
472
513
|
shape?: "default" | "square" | "rounded" | null | undefined;
|
|
@@ -570,4 +611,4 @@ declare function TranslationProvider({ i18n, children, fallback, overrides, }: T
|
|
|
570
611
|
|
|
571
612
|
declare function cn(...inputs: ClassValue[]): string;
|
|
572
613
|
|
|
573
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppleIcon, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, 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, 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, FacebookIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GithubIcon, GoogleIcon, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label, LocaleProvider, LoginForm, type LoginFormProps, type LoginProvider, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MicrosoftIcon, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NextButton, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreviousButton, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, type SupportedLanguage, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TranslationProvider, appleIconVariants, badgeVariants, buttonGroupVariants, buttonVariants, cn, facebookIconVariants, githubIconVariants, googleIconVariants, microsoftIconVariants, navigationMenuTriggerStyle, toggleVariants, useFormField, useSidebar };
|
|
614
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppleIcon, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, 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, DateTimePicker, type DateTimePickerProps, 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, FacebookIcon, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GithubIcon, GoogleIcon, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label, LocaleProvider, LoginForm, type LoginFormProps, type LoginFormValues, type LoginProvider, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MicrosoftIcon, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NextButton, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PreviousButton, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, type SupportedLanguage, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TranslationProvider, appleIconVariants, badgeVariants, buttonGroupVariants, buttonVariants, cn, facebookIconVariants, githubIconVariants, googleIconVariants, microsoftIconVariants, navigationMenuTriggerStyle, toggleVariants, useFormField, useSidebar };
|