@luanthnh/cntt-ui 0.1.10 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +8 -6000
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +42 -4
- package/dist/index.d.ts +42 -4
- package/dist/index.js +8 -5713
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -308,11 +308,11 @@ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }
|
|
|
308
308
|
}): react_jsx_runtime.JSX.Element;
|
|
309
309
|
declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
310
310
|
|
|
311
|
-
interface Props$
|
|
311
|
+
interface Props$2 {
|
|
312
312
|
onFile: (file: File) => void;
|
|
313
313
|
className?: string;
|
|
314
314
|
}
|
|
315
|
-
declare function Dropzone({ onFile, className }: Props$
|
|
315
|
+
declare function Dropzone({ onFile, className }: Props$2): react_jsx_runtime.JSX.Element;
|
|
316
316
|
|
|
317
317
|
interface FormProps<T extends FieldValues> {
|
|
318
318
|
form: UseFormReturn<T, unknown>;
|
|
@@ -343,6 +343,44 @@ declare function FormControl({ ...props }: React$1.ComponentProps<typeof Slot$1>
|
|
|
343
343
|
declare function FormDescription({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
344
344
|
declare function FormMessage({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element | null;
|
|
345
345
|
|
|
346
|
+
interface TextFieldProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'name'> {
|
|
347
|
+
name: TName;
|
|
348
|
+
control: ControllerProps<TFieldValues, TName>['control'];
|
|
349
|
+
label?: string;
|
|
350
|
+
isPassword?: boolean;
|
|
351
|
+
isRequired?: boolean;
|
|
352
|
+
}
|
|
353
|
+
declare function TextField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ label, type, isPassword, isRequired, ...inputProps }: TextFieldProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
|
354
|
+
|
|
355
|
+
interface TextAreaFieldProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> {
|
|
356
|
+
name: TName;
|
|
357
|
+
control: ControllerProps<TFieldValues, TName>['control'];
|
|
358
|
+
label?: string;
|
|
359
|
+
isRequired?: boolean;
|
|
360
|
+
}
|
|
361
|
+
declare function TextAreaField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ label, isRequired, ...textareaProps }: TextAreaFieldProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
|
362
|
+
|
|
363
|
+
interface SelectFieldProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> {
|
|
364
|
+
name: TName;
|
|
365
|
+
control: ControllerProps<TFieldValues, TName>['control'];
|
|
366
|
+
label?: string;
|
|
367
|
+
placeholder?: string;
|
|
368
|
+
options: {
|
|
369
|
+
value: string;
|
|
370
|
+
label: string;
|
|
371
|
+
}[];
|
|
372
|
+
isRequired?: boolean;
|
|
373
|
+
}
|
|
374
|
+
declare function SelectField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ label, placeholder, options, isRequired, ...rest }: SelectFieldProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
|
375
|
+
|
|
376
|
+
interface Props$1<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<React$1.ComponentProps<'button'>, 'name' | 'type' | 'defaultValue'> {
|
|
377
|
+
name: TName;
|
|
378
|
+
control: ControllerProps<TFieldValues, TName>['control'];
|
|
379
|
+
label?: string;
|
|
380
|
+
isRequired?: boolean;
|
|
381
|
+
}
|
|
382
|
+
declare function DateField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ name, control, label, isRequired, ...props }: Props$1<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
|
383
|
+
|
|
346
384
|
declare const hStackVariants: (props?: ({
|
|
347
385
|
justify?: "center" | "left" | "right" | "between" | "around" | "evenly" | null | undefined;
|
|
348
386
|
align?: "center" | "end" | "baseline" | "default" | "start" | null | undefined;
|
|
@@ -653,7 +691,7 @@ type TabsContentProps = TabsContentProps$1;
|
|
|
653
691
|
declare function TabsContent({ className, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element;
|
|
654
692
|
|
|
655
693
|
declare const textVariants: (props?: ({
|
|
656
|
-
size?: "h1" | "h2" | "h3" | "h4" | 16 | 12 | 20 | 24 | 32 | 40 | "cap1" | "cap2" |
|
|
694
|
+
size?: "h1" | "h2" | "h3" | "h4" | 16 | 10 | 12 | 20 | 24 | 32 | 40 | "cap1" | "cap2" | 14 | 18 | 56 | 72 | null | undefined;
|
|
657
695
|
weight?: 100 | 300 | 200 | 400 | 500 | 600 | 700 | 800 | 900 | null | undefined;
|
|
658
696
|
height?: 16 | 20 | 24 | 32 | 40 | 48 | 64 | 14 | 18 | 28 | 80 | null | undefined;
|
|
659
697
|
spacing?: "-1" | "-1.5" | "-2" | null | undefined;
|
|
@@ -690,4 +728,4 @@ interface VStackProps extends VariantProps<typeof vStackVariants>, HTMLMotionPro
|
|
|
690
728
|
}
|
|
691
729
|
declare const VStack: React__default.ForwardRefExoticComponent<Omit<VStackProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
692
730
|
|
|
693
|
-
export { Accordion, AccordionContent, type AccordionContentProps, type AccordionContextType, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemContextType, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnyProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouseMoveTo, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Collapsible, type CollapsibleContextType, CollapsiblePanel, type CollapsiblePanelProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, 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, type DOMMotionProps, 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, Dropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormProps, HStack, type HStackProps, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, Icons, ImageWithFallback, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Marquee, type MarqueeProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoData, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, 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, 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, Slot, type SlotProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, type TabsContentProps, TabsContents, type TabsContentsProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Text, type TextProps, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, type TooltipProps, TooltipProvider, VStack, type VStackProps, type WithAsChild$1 as WithAsChild, badgeVariants, buttonVariants, clamp, hStackVariants, navigationMenuTriggerStyle, toggleVariants, useAccordion, useAccordionItem, useCollapsible, useFormField, useSidebar, vStackVariants };
|
|
731
|
+
export { Accordion, AccordionContent, type AccordionContentProps, type AccordionContextType, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemContextType, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnyProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouseMoveTo, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Collapsible, type CollapsibleContextType, CollapsiblePanel, type CollapsiblePanelProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, 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, type DOMMotionProps, DateField, 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, Dropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormProps, HStack, type HStackProps, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, Icons, ImageWithFallback, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Marquee, type MarqueeProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoData, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectField, type SelectFieldProps, 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, Slot, type SlotProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, type TabsContentProps, TabsContents, type TabsContentsProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Text, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldProps, type TextProps, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, type TooltipProps, TooltipProvider, VStack, type VStackProps, type WithAsChild$1 as WithAsChild, badgeVariants, buttonVariants, clamp, hStackVariants, navigationMenuTriggerStyle, toggleVariants, useAccordion, useAccordionItem, useCollapsible, useFormField, useSidebar, vStackVariants };
|
package/dist/index.d.ts
CHANGED
|
@@ -308,11 +308,11 @@ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }
|
|
|
308
308
|
}): react_jsx_runtime.JSX.Element;
|
|
309
309
|
declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
310
310
|
|
|
311
|
-
interface Props$
|
|
311
|
+
interface Props$2 {
|
|
312
312
|
onFile: (file: File) => void;
|
|
313
313
|
className?: string;
|
|
314
314
|
}
|
|
315
|
-
declare function Dropzone({ onFile, className }: Props$
|
|
315
|
+
declare function Dropzone({ onFile, className }: Props$2): react_jsx_runtime.JSX.Element;
|
|
316
316
|
|
|
317
317
|
interface FormProps<T extends FieldValues> {
|
|
318
318
|
form: UseFormReturn<T, unknown>;
|
|
@@ -343,6 +343,44 @@ declare function FormControl({ ...props }: React$1.ComponentProps<typeof Slot$1>
|
|
|
343
343
|
declare function FormDescription({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
|
|
344
344
|
declare function FormMessage({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element | null;
|
|
345
345
|
|
|
346
|
+
interface TextFieldProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'name'> {
|
|
347
|
+
name: TName;
|
|
348
|
+
control: ControllerProps<TFieldValues, TName>['control'];
|
|
349
|
+
label?: string;
|
|
350
|
+
isPassword?: boolean;
|
|
351
|
+
isRequired?: boolean;
|
|
352
|
+
}
|
|
353
|
+
declare function TextField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ label, type, isPassword, isRequired, ...inputProps }: TextFieldProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
|
354
|
+
|
|
355
|
+
interface TextAreaFieldProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, 'name'> {
|
|
356
|
+
name: TName;
|
|
357
|
+
control: ControllerProps<TFieldValues, TName>['control'];
|
|
358
|
+
label?: string;
|
|
359
|
+
isRequired?: boolean;
|
|
360
|
+
}
|
|
361
|
+
declare function TextAreaField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ label, isRequired, ...textareaProps }: TextAreaFieldProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
|
362
|
+
|
|
363
|
+
interface SelectFieldProps<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> {
|
|
364
|
+
name: TName;
|
|
365
|
+
control: ControllerProps<TFieldValues, TName>['control'];
|
|
366
|
+
label?: string;
|
|
367
|
+
placeholder?: string;
|
|
368
|
+
options: {
|
|
369
|
+
value: string;
|
|
370
|
+
label: string;
|
|
371
|
+
}[];
|
|
372
|
+
isRequired?: boolean;
|
|
373
|
+
}
|
|
374
|
+
declare function SelectField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ label, placeholder, options, isRequired, ...rest }: SelectFieldProps<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
|
375
|
+
|
|
376
|
+
interface Props$1<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>> extends Omit<React$1.ComponentProps<'button'>, 'name' | 'type' | 'defaultValue'> {
|
|
377
|
+
name: TName;
|
|
378
|
+
control: ControllerProps<TFieldValues, TName>['control'];
|
|
379
|
+
label?: string;
|
|
380
|
+
isRequired?: boolean;
|
|
381
|
+
}
|
|
382
|
+
declare function DateField<TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ name, control, label, isRequired, ...props }: Props$1<TFieldValues, TName>): react_jsx_runtime.JSX.Element;
|
|
383
|
+
|
|
346
384
|
declare const hStackVariants: (props?: ({
|
|
347
385
|
justify?: "center" | "left" | "right" | "between" | "around" | "evenly" | null | undefined;
|
|
348
386
|
align?: "center" | "end" | "baseline" | "default" | "start" | null | undefined;
|
|
@@ -653,7 +691,7 @@ type TabsContentProps = TabsContentProps$1;
|
|
|
653
691
|
declare function TabsContent({ className, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element;
|
|
654
692
|
|
|
655
693
|
declare const textVariants: (props?: ({
|
|
656
|
-
size?: "h1" | "h2" | "h3" | "h4" | 16 | 12 | 20 | 24 | 32 | 40 | "cap1" | "cap2" |
|
|
694
|
+
size?: "h1" | "h2" | "h3" | "h4" | 16 | 10 | 12 | 20 | 24 | 32 | 40 | "cap1" | "cap2" | 14 | 18 | 56 | 72 | null | undefined;
|
|
657
695
|
weight?: 100 | 300 | 200 | 400 | 500 | 600 | 700 | 800 | 900 | null | undefined;
|
|
658
696
|
height?: 16 | 20 | 24 | 32 | 40 | 48 | 64 | 14 | 18 | 28 | 80 | null | undefined;
|
|
659
697
|
spacing?: "-1" | "-1.5" | "-2" | null | undefined;
|
|
@@ -690,4 +728,4 @@ interface VStackProps extends VariantProps<typeof vStackVariants>, HTMLMotionPro
|
|
|
690
728
|
}
|
|
691
729
|
declare const VStack: React__default.ForwardRefExoticComponent<Omit<VStackProps, "ref"> & React__default.RefAttributes<HTMLDivElement>>;
|
|
692
730
|
|
|
693
|
-
export { Accordion, AccordionContent, type AccordionContentProps, type AccordionContextType, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemContextType, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnyProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouseMoveTo, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Collapsible, type CollapsibleContextType, CollapsiblePanel, type CollapsiblePanelProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, 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, type DOMMotionProps, 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, Dropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormProps, HStack, type HStackProps, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, Icons, ImageWithFallback, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Marquee, type MarqueeProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoData, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, 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, 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, Slot, type SlotProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, type TabsContentProps, TabsContents, type TabsContentsProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Text, type TextProps, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, type TooltipProps, TooltipProvider, VStack, type VStackProps, type WithAsChild$1 as WithAsChild, badgeVariants, buttonVariants, clamp, hStackVariants, navigationMenuTriggerStyle, toggleVariants, useAccordion, useAccordionItem, useCollapsible, useFormField, useSidebar, vStackVariants };
|
|
731
|
+
export { Accordion, AccordionContent, type AccordionContentProps, type AccordionContextType, AccordionHeader, type AccordionHeaderProps, AccordionItem, type AccordionItemContextType, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnyProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CarouseMoveTo, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Collapsible, type CollapsibleContextType, CollapsiblePanel, type CollapsiblePanelProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, 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, type DOMMotionProps, DateField, 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, Dropzone, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, type FormProps, HStack, type HStackProps, HoverCard, HoverCardContent, HoverCardTrigger, type Icon, Icons, ImageWithFallback, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Marquee, type MarqueeProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoData, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectField, type SelectFieldProps, 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, Slot, type SlotProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, type TabsContentProps, TabsContents, type TabsContentsProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Text, TextAreaField, type TextAreaFieldProps, TextField, type TextFieldProps, type TextProps, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, type TooltipProps, TooltipProvider, VStack, type VStackProps, type WithAsChild$1 as WithAsChild, badgeVariants, buttonVariants, clamp, hStackVariants, navigationMenuTriggerStyle, toggleVariants, useAccordion, useAccordionItem, useCollapsible, useFormField, useSidebar, vStackVariants };
|