@webstacks/ui 0.2.0 → 0.3.0
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 +1232 -439
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +150 -1
- package/dist/index.d.ts +150 -1
- package/dist/index.js +1196 -415
- package/dist/index.js.map +1 -1
- package/package.json +11 -4
- package/src/fonts/Saans Bold.otf +0 -0
- package/src/fonts/Saans Light.otf +0 -0
- package/src/fonts/Saans Medium.otf +0 -0
- package/src/fonts/Saans Regular.otf +0 -0
- package/src/fonts/Saans SemiBold.otf +0 -0
- package/src/fonts/TT_Interphases_Pro_Mono_Bold.ttf +0 -0
- package/src/fonts/TT_Interphases_Pro_Mono_Bold_Italic.ttf +0 -0
- package/src/fonts/TT_Interphases_Pro_Mono_Italic.ttf +0 -0
- package/src/fonts/TT_Interphases_Pro_Mono_Regular.ttf +0 -0
- package/src/styles/color.css +240 -0
- package/src/styles/fonts.css +95 -0
- package/src/styles/globals.css +9 -0
- package/src/styles/tokens.css +243 -0
- package/src/styles/typography.css +61 -0
package/dist/index.d.cts
CHANGED
|
@@ -140,6 +140,52 @@ declare const BreadcrumbEllipsis: {
|
|
|
140
140
|
displayName: string;
|
|
141
141
|
};
|
|
142
142
|
|
|
143
|
+
declare const boxVariants: (props?: ({
|
|
144
|
+
padding?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
145
|
+
paddingX?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
146
|
+
paddingY?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
147
|
+
paddingTop?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
148
|
+
paddingBottom?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
149
|
+
paddingStart?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
150
|
+
paddingEnd?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
151
|
+
margin?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
152
|
+
marginX?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
153
|
+
marginY?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
154
|
+
marginTop?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
155
|
+
marginBottom?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
156
|
+
marginStart?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
157
|
+
marginEnd?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
158
|
+
backgroundColor?: "default" | "subtle" | "inset" | null | undefined;
|
|
159
|
+
borderStyle?: "none" | "solid" | "dashed" | null | undefined;
|
|
160
|
+
borderRadius?: "small" | "none" | "medium" | "large" | "xlarge" | "full" | null | undefined;
|
|
161
|
+
borderColor?: "muted" | "default" | "subtle" | null | undefined;
|
|
162
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
163
|
+
type SpacingValue = "none" | "condensed" | "normal" | "spacious" | "extra-spacious";
|
|
164
|
+
type MarginValue = SpacingValue | "auto";
|
|
165
|
+
interface ResponsiveProp$3<T> {
|
|
166
|
+
narrow?: T;
|
|
167
|
+
regular?: T;
|
|
168
|
+
wide?: T;
|
|
169
|
+
}
|
|
170
|
+
interface BoxProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "color">, Omit<VariantProps<typeof boxVariants>, "padding" | "paddingX" | "paddingY" | "paddingTop" | "paddingBottom" | "paddingStart" | "paddingEnd" | "margin" | "marginX" | "marginY" | "marginTop" | "marginBottom" | "marginStart" | "marginEnd"> {
|
|
171
|
+
as?: React$1.ElementType;
|
|
172
|
+
padding?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
173
|
+
paddingX?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
174
|
+
paddingY?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
175
|
+
paddingTop?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
176
|
+
paddingBottom?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
177
|
+
paddingStart?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
178
|
+
paddingEnd?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
179
|
+
margin?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
180
|
+
marginX?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
181
|
+
marginY?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
182
|
+
marginTop?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
183
|
+
marginBottom?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
184
|
+
marginStart?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
185
|
+
marginEnd?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
186
|
+
}
|
|
187
|
+
declare const Box: React$1.ForwardRefExoticComponent<BoxProps & React$1.RefAttributes<HTMLElement>>;
|
|
188
|
+
|
|
143
189
|
declare const buttonVariants: (props?: ({
|
|
144
190
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
145
191
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
@@ -149,6 +195,109 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
|
|
|
149
195
|
}
|
|
150
196
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
151
197
|
|
|
198
|
+
declare const gridVariants: (props?: ({
|
|
199
|
+
columns?: 2 | 1 | 12 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | null | undefined;
|
|
200
|
+
gap?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
201
|
+
gapX?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
202
|
+
gapY?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
203
|
+
align?: "center" | "start" | "end" | "baseline" | "stretch" | null | undefined;
|
|
204
|
+
justify?: "center" | "start" | "end" | "stretch" | null | undefined;
|
|
205
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
206
|
+
type ColumnValue = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
207
|
+
interface ResponsiveColumns {
|
|
208
|
+
narrow?: ColumnValue;
|
|
209
|
+
regular?: ColumnValue;
|
|
210
|
+
wide?: ColumnValue;
|
|
211
|
+
}
|
|
212
|
+
interface GridProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "columns">, Omit<VariantProps<typeof gridVariants>, "columns"> {
|
|
213
|
+
as?: React$1.ElementType;
|
|
214
|
+
columns?: ColumnValue | ResponsiveColumns;
|
|
215
|
+
}
|
|
216
|
+
declare const Grid: React$1.ForwardRefExoticComponent<GridProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
217
|
+
declare const gridColumnVariants: (props?: ({
|
|
218
|
+
span?: 2 | 1 | 12 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | null | undefined;
|
|
219
|
+
start?: 2 | 1 | 12 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | null | undefined;
|
|
220
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
221
|
+
type SpanValue = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
222
|
+
interface ResponsiveSpan {
|
|
223
|
+
narrow?: SpanValue;
|
|
224
|
+
regular?: SpanValue;
|
|
225
|
+
wide?: SpanValue;
|
|
226
|
+
}
|
|
227
|
+
interface GridColumnProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "start">, Omit<VariantProps<typeof gridColumnVariants>, "span" | "start"> {
|
|
228
|
+
as?: React$1.ElementType;
|
|
229
|
+
span?: SpanValue | ResponsiveSpan;
|
|
230
|
+
start?: VariantProps<typeof gridColumnVariants>["start"];
|
|
231
|
+
}
|
|
232
|
+
declare const GridColumn: React$1.ForwardRefExoticComponent<GridColumnProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
233
|
+
|
|
234
|
+
declare const headingVariants: (props?: ({
|
|
235
|
+
size?: 2 | 1 | "display" | 3 | 4 | 5 | 6 | "subhead-large" | "subhead-medium" | null | undefined;
|
|
236
|
+
weight?: "bold" | "normal" | "medium" | "heavy" | "extrabold" | "semibold" | "light" | "extralight" | null | undefined;
|
|
237
|
+
stretch?: "condensed" | "normal" | "expanded" | null | undefined;
|
|
238
|
+
letterSpacing?: "none" | "condensed" | "normal" | null | undefined;
|
|
239
|
+
align?: "center" | "start" | "end" | null | undefined;
|
|
240
|
+
variant?: "muted" | "default" | null | undefined;
|
|
241
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
242
|
+
type HeadingTag = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
243
|
+
type HeadingSize = "display" | 1 | 2 | 3 | 4 | 5 | 6 | "subhead-large" | "subhead-medium";
|
|
244
|
+
interface ResponsiveProp$2<T> {
|
|
245
|
+
narrow?: T;
|
|
246
|
+
regular?: T;
|
|
247
|
+
wide?: T;
|
|
248
|
+
}
|
|
249
|
+
interface HeadingProps extends Omit<React$1.HTMLAttributes<HTMLHeadingElement>, "color">, Omit<VariantProps<typeof headingVariants>, "size" | "weight"> {
|
|
250
|
+
as?: HeadingTag;
|
|
251
|
+
size?: HeadingSize | ResponsiveProp$2<HeadingSize>;
|
|
252
|
+
weight?: VariantProps<typeof headingVariants>["weight"] | ResponsiveProp$2<NonNullable<VariantProps<typeof headingVariants>["weight"]>>;
|
|
253
|
+
}
|
|
254
|
+
declare const Heading: React$1.ForwardRefExoticComponent<HeadingProps & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
255
|
+
|
|
256
|
+
declare const textVariants: (props?: ({
|
|
257
|
+
size?: 400 | 100 | 200 | 300 | 500 | 600 | 700 | null | undefined;
|
|
258
|
+
variant?: "muted" | "default" | null | undefined;
|
|
259
|
+
weight?: "bold" | "normal" | "medium" | "heavy" | "extrabold" | "semibold" | "light" | "extralight" | null | undefined;
|
|
260
|
+
align?: "center" | "start" | "end" | null | undefined;
|
|
261
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
262
|
+
type TextSize = 100 | 200 | 300 | 400 | 500 | 600 | 700;
|
|
263
|
+
interface ResponsiveProp$1<T> {
|
|
264
|
+
narrow?: T;
|
|
265
|
+
regular?: T;
|
|
266
|
+
wide?: T;
|
|
267
|
+
}
|
|
268
|
+
interface TextProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "color">, Omit<VariantProps<typeof textVariants>, "size" | "weight"> {
|
|
269
|
+
as?: React$1.ElementType;
|
|
270
|
+
size?: TextSize | ResponsiveProp$1<TextSize>;
|
|
271
|
+
weight?: VariantProps<typeof textVariants>["weight"] | ResponsiveProp$1<NonNullable<VariantProps<typeof textVariants>["weight"]>>;
|
|
272
|
+
}
|
|
273
|
+
declare const Text: React$1.ForwardRefExoticComponent<TextProps & React$1.RefAttributes<HTMLElement>>;
|
|
274
|
+
|
|
275
|
+
declare const stackVariants: (props?: ({
|
|
276
|
+
direction?: "horizontal" | "vertical" | null | undefined;
|
|
277
|
+
gap?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
278
|
+
align?: "center" | "start" | "end" | "baseline" | "stretch" | null | undefined;
|
|
279
|
+
justify?: "center" | "start" | "end" | "space-between" | "space-around" | "space-evenly" | null | undefined;
|
|
280
|
+
wrap?: boolean | null | undefined;
|
|
281
|
+
padding?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
282
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
283
|
+
type DirectionValue = "horizontal" | "vertical";
|
|
284
|
+
type GapValue = "none" | "condensed" | "normal" | "spacious" | "extra-spacious";
|
|
285
|
+
type AlignValue = "start" | "center" | "end" | "stretch" | "baseline";
|
|
286
|
+
type JustifyValue = "start" | "center" | "end" | "space-between" | "space-around" | "space-evenly";
|
|
287
|
+
interface ResponsiveProp<T> {
|
|
288
|
+
narrow?: T;
|
|
289
|
+
regular?: T;
|
|
290
|
+
wide?: T;
|
|
291
|
+
}
|
|
292
|
+
interface StackProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "dir">, Omit<VariantProps<typeof stackVariants>, "direction" | "gap" | "align" | "justify"> {
|
|
293
|
+
as?: React$1.ElementType;
|
|
294
|
+
direction?: DirectionValue | ResponsiveProp<DirectionValue>;
|
|
295
|
+
gap?: GapValue | ResponsiveProp<GapValue>;
|
|
296
|
+
align?: AlignValue | ResponsiveProp<AlignValue>;
|
|
297
|
+
justify?: JustifyValue | ResponsiveProp<JustifyValue>;
|
|
298
|
+
}
|
|
299
|
+
declare const Stack: React$1.ForwardRefExoticComponent<StackProps & React$1.RefAttributes<HTMLElement>>;
|
|
300
|
+
|
|
152
301
|
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
|
|
153
302
|
buttonVariant?: React$1.ComponentProps<typeof Button>["variant"];
|
|
154
303
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -697,4 +846,4 @@ declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGrou
|
|
|
697
846
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
698
847
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
699
848
|
|
|
700
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, 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, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, 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, SheetOverlay, SheetPortal, 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, Toaster$1 as Sonner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, 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, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|
|
849
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, 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, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridColumn, type GridColumnProps, type GridProps, Heading, type HeadingProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, 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, SheetOverlay, SheetPortal, 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, Toaster$1 as Sonner, Stack, type StackProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Text, type TextProps, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, boxVariants, buttonVariants, cn, gridColumnVariants, gridVariants, headingVariants, navigationMenuTriggerStyle, stackVariants, textVariants, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -140,6 +140,52 @@ declare const BreadcrumbEllipsis: {
|
|
|
140
140
|
displayName: string;
|
|
141
141
|
};
|
|
142
142
|
|
|
143
|
+
declare const boxVariants: (props?: ({
|
|
144
|
+
padding?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
145
|
+
paddingX?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
146
|
+
paddingY?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
147
|
+
paddingTop?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
148
|
+
paddingBottom?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
149
|
+
paddingStart?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
150
|
+
paddingEnd?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
151
|
+
margin?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
152
|
+
marginX?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
153
|
+
marginY?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
154
|
+
marginTop?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
155
|
+
marginBottom?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
156
|
+
marginStart?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
157
|
+
marginEnd?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
158
|
+
backgroundColor?: "default" | "subtle" | "inset" | null | undefined;
|
|
159
|
+
borderStyle?: "none" | "solid" | "dashed" | null | undefined;
|
|
160
|
+
borderRadius?: "small" | "none" | "medium" | "large" | "xlarge" | "full" | null | undefined;
|
|
161
|
+
borderColor?: "muted" | "default" | "subtle" | null | undefined;
|
|
162
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
163
|
+
type SpacingValue = "none" | "condensed" | "normal" | "spacious" | "extra-spacious";
|
|
164
|
+
type MarginValue = SpacingValue | "auto";
|
|
165
|
+
interface ResponsiveProp$3<T> {
|
|
166
|
+
narrow?: T;
|
|
167
|
+
regular?: T;
|
|
168
|
+
wide?: T;
|
|
169
|
+
}
|
|
170
|
+
interface BoxProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "color">, Omit<VariantProps<typeof boxVariants>, "padding" | "paddingX" | "paddingY" | "paddingTop" | "paddingBottom" | "paddingStart" | "paddingEnd" | "margin" | "marginX" | "marginY" | "marginTop" | "marginBottom" | "marginStart" | "marginEnd"> {
|
|
171
|
+
as?: React$1.ElementType;
|
|
172
|
+
padding?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
173
|
+
paddingX?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
174
|
+
paddingY?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
175
|
+
paddingTop?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
176
|
+
paddingBottom?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
177
|
+
paddingStart?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
178
|
+
paddingEnd?: SpacingValue | ResponsiveProp$3<SpacingValue>;
|
|
179
|
+
margin?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
180
|
+
marginX?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
181
|
+
marginY?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
182
|
+
marginTop?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
183
|
+
marginBottom?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
184
|
+
marginStart?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
185
|
+
marginEnd?: MarginValue | ResponsiveProp$3<MarginValue>;
|
|
186
|
+
}
|
|
187
|
+
declare const Box: React$1.ForwardRefExoticComponent<BoxProps & React$1.RefAttributes<HTMLElement>>;
|
|
188
|
+
|
|
143
189
|
declare const buttonVariants: (props?: ({
|
|
144
190
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
145
191
|
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
@@ -149,6 +195,109 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
|
|
|
149
195
|
}
|
|
150
196
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
151
197
|
|
|
198
|
+
declare const gridVariants: (props?: ({
|
|
199
|
+
columns?: 2 | 1 | 12 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | null | undefined;
|
|
200
|
+
gap?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
201
|
+
gapX?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
202
|
+
gapY?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
203
|
+
align?: "center" | "start" | "end" | "baseline" | "stretch" | null | undefined;
|
|
204
|
+
justify?: "center" | "start" | "end" | "stretch" | null | undefined;
|
|
205
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
206
|
+
type ColumnValue = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
207
|
+
interface ResponsiveColumns {
|
|
208
|
+
narrow?: ColumnValue;
|
|
209
|
+
regular?: ColumnValue;
|
|
210
|
+
wide?: ColumnValue;
|
|
211
|
+
}
|
|
212
|
+
interface GridProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "columns">, Omit<VariantProps<typeof gridVariants>, "columns"> {
|
|
213
|
+
as?: React$1.ElementType;
|
|
214
|
+
columns?: ColumnValue | ResponsiveColumns;
|
|
215
|
+
}
|
|
216
|
+
declare const Grid: React$1.ForwardRefExoticComponent<GridProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
217
|
+
declare const gridColumnVariants: (props?: ({
|
|
218
|
+
span?: 2 | 1 | 12 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | null | undefined;
|
|
219
|
+
start?: 2 | 1 | 12 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | null | undefined;
|
|
220
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
221
|
+
type SpanValue = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
|
|
222
|
+
interface ResponsiveSpan {
|
|
223
|
+
narrow?: SpanValue;
|
|
224
|
+
regular?: SpanValue;
|
|
225
|
+
wide?: SpanValue;
|
|
226
|
+
}
|
|
227
|
+
interface GridColumnProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "start">, Omit<VariantProps<typeof gridColumnVariants>, "span" | "start"> {
|
|
228
|
+
as?: React$1.ElementType;
|
|
229
|
+
span?: SpanValue | ResponsiveSpan;
|
|
230
|
+
start?: VariantProps<typeof gridColumnVariants>["start"];
|
|
231
|
+
}
|
|
232
|
+
declare const GridColumn: React$1.ForwardRefExoticComponent<GridColumnProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
233
|
+
|
|
234
|
+
declare const headingVariants: (props?: ({
|
|
235
|
+
size?: 2 | 1 | "display" | 3 | 4 | 5 | 6 | "subhead-large" | "subhead-medium" | null | undefined;
|
|
236
|
+
weight?: "bold" | "normal" | "medium" | "heavy" | "extrabold" | "semibold" | "light" | "extralight" | null | undefined;
|
|
237
|
+
stretch?: "condensed" | "normal" | "expanded" | null | undefined;
|
|
238
|
+
letterSpacing?: "none" | "condensed" | "normal" | null | undefined;
|
|
239
|
+
align?: "center" | "start" | "end" | null | undefined;
|
|
240
|
+
variant?: "muted" | "default" | null | undefined;
|
|
241
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
242
|
+
type HeadingTag = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
243
|
+
type HeadingSize = "display" | 1 | 2 | 3 | 4 | 5 | 6 | "subhead-large" | "subhead-medium";
|
|
244
|
+
interface ResponsiveProp$2<T> {
|
|
245
|
+
narrow?: T;
|
|
246
|
+
regular?: T;
|
|
247
|
+
wide?: T;
|
|
248
|
+
}
|
|
249
|
+
interface HeadingProps extends Omit<React$1.HTMLAttributes<HTMLHeadingElement>, "color">, Omit<VariantProps<typeof headingVariants>, "size" | "weight"> {
|
|
250
|
+
as?: HeadingTag;
|
|
251
|
+
size?: HeadingSize | ResponsiveProp$2<HeadingSize>;
|
|
252
|
+
weight?: VariantProps<typeof headingVariants>["weight"] | ResponsiveProp$2<NonNullable<VariantProps<typeof headingVariants>["weight"]>>;
|
|
253
|
+
}
|
|
254
|
+
declare const Heading: React$1.ForwardRefExoticComponent<HeadingProps & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
255
|
+
|
|
256
|
+
declare const textVariants: (props?: ({
|
|
257
|
+
size?: 400 | 100 | 200 | 300 | 500 | 600 | 700 | null | undefined;
|
|
258
|
+
variant?: "muted" | "default" | null | undefined;
|
|
259
|
+
weight?: "bold" | "normal" | "medium" | "heavy" | "extrabold" | "semibold" | "light" | "extralight" | null | undefined;
|
|
260
|
+
align?: "center" | "start" | "end" | null | undefined;
|
|
261
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
262
|
+
type TextSize = 100 | 200 | 300 | 400 | 500 | 600 | 700;
|
|
263
|
+
interface ResponsiveProp$1<T> {
|
|
264
|
+
narrow?: T;
|
|
265
|
+
regular?: T;
|
|
266
|
+
wide?: T;
|
|
267
|
+
}
|
|
268
|
+
interface TextProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "color">, Omit<VariantProps<typeof textVariants>, "size" | "weight"> {
|
|
269
|
+
as?: React$1.ElementType;
|
|
270
|
+
size?: TextSize | ResponsiveProp$1<TextSize>;
|
|
271
|
+
weight?: VariantProps<typeof textVariants>["weight"] | ResponsiveProp$1<NonNullable<VariantProps<typeof textVariants>["weight"]>>;
|
|
272
|
+
}
|
|
273
|
+
declare const Text: React$1.ForwardRefExoticComponent<TextProps & React$1.RefAttributes<HTMLElement>>;
|
|
274
|
+
|
|
275
|
+
declare const stackVariants: (props?: ({
|
|
276
|
+
direction?: "horizontal" | "vertical" | null | undefined;
|
|
277
|
+
gap?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
278
|
+
align?: "center" | "start" | "end" | "baseline" | "stretch" | null | undefined;
|
|
279
|
+
justify?: "center" | "start" | "end" | "space-between" | "space-around" | "space-evenly" | null | undefined;
|
|
280
|
+
wrap?: boolean | null | undefined;
|
|
281
|
+
padding?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
|
|
282
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
283
|
+
type DirectionValue = "horizontal" | "vertical";
|
|
284
|
+
type GapValue = "none" | "condensed" | "normal" | "spacious" | "extra-spacious";
|
|
285
|
+
type AlignValue = "start" | "center" | "end" | "stretch" | "baseline";
|
|
286
|
+
type JustifyValue = "start" | "center" | "end" | "space-between" | "space-around" | "space-evenly";
|
|
287
|
+
interface ResponsiveProp<T> {
|
|
288
|
+
narrow?: T;
|
|
289
|
+
regular?: T;
|
|
290
|
+
wide?: T;
|
|
291
|
+
}
|
|
292
|
+
interface StackProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "dir">, Omit<VariantProps<typeof stackVariants>, "direction" | "gap" | "align" | "justify"> {
|
|
293
|
+
as?: React$1.ElementType;
|
|
294
|
+
direction?: DirectionValue | ResponsiveProp<DirectionValue>;
|
|
295
|
+
gap?: GapValue | ResponsiveProp<GapValue>;
|
|
296
|
+
align?: AlignValue | ResponsiveProp<AlignValue>;
|
|
297
|
+
justify?: JustifyValue | ResponsiveProp<JustifyValue>;
|
|
298
|
+
}
|
|
299
|
+
declare const Stack: React$1.ForwardRefExoticComponent<StackProps & React$1.RefAttributes<HTMLElement>>;
|
|
300
|
+
|
|
152
301
|
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
|
|
153
302
|
buttonVariant?: React$1.ComponentProps<typeof Button>["variant"];
|
|
154
303
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -697,4 +846,4 @@ declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGrou
|
|
|
697
846
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
698
847
|
} & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
699
848
|
|
|
700
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, 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, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, 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, SheetOverlay, SheetPortal, 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, Toaster$1 as Sonner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, 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, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|
|
849
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, 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, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridColumn, type GridColumnProps, type GridProps, Heading, type HeadingProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, 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, SheetOverlay, SheetPortal, 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, Toaster$1 as Sonner, Stack, type StackProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Text, type TextProps, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, boxVariants, buttonVariants, cn, gridColumnVariants, gridVariants, headingVariants, navigationMenuTriggerStyle, stackVariants, textVariants, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|