@the12company/ui 0.1.3 → 0.1.6
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/README.md +13 -0
- package/dist/index.d.ts +121 -16
- package/dist/index.js +537 -49
- package/dist/index.js.map +1 -1
- package/package.json +46 -15
- package/src/tokens/utilities.css +32 -0
package/README.md
CHANGED
|
@@ -183,6 +183,7 @@ Requires `npm login` (or a local auth token). The GitHub `NPM_TOKEN` secret is o
|
|
|
183
183
|
packages/ui/
|
|
184
184
|
├── src/
|
|
185
185
|
│ ├── components/ # primitives + chrome + PageHeader, ChartCard, …
|
|
186
|
+
│ │ └── auth/ # AuthShell, AuthCard, Aurora, EmailInput, PasswordInput, …
|
|
186
187
|
│ ├── hooks/
|
|
187
188
|
│ ├── lib/ # cn, pagination helpers
|
|
188
189
|
│ ├── tokens/
|
|
@@ -191,6 +192,18 @@ packages/ui/
|
|
|
191
192
|
└── README.md
|
|
192
193
|
```
|
|
193
194
|
|
|
195
|
+
You can group related components in folders (e.g. `components/auth/`). Export them from a folder `index.ts` and from the package root `src/index.ts` so consumers can still do:
|
|
196
|
+
|
|
197
|
+
```tsx
|
|
198
|
+
import { EmailInput, PasswordInput } from "@the12company/ui";
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
In this monorepo (Vite/TS aliases), deep imports also work:
|
|
202
|
+
|
|
203
|
+
```tsx
|
|
204
|
+
import { EmailInput } from "@the12company/ui/components/auth";
|
|
205
|
+
```
|
|
206
|
+
|
|
194
207
|
---
|
|
195
208
|
|
|
196
209
|
## Tips
|
package/dist/index.d.ts
CHANGED
|
@@ -20,7 +20,6 @@ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
|
20
20
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
21
21
|
import { DialogProps } from '@radix-ui/react-dialog';
|
|
22
22
|
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
23
|
-
import * as vaul from 'vaul';
|
|
24
23
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
25
24
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
26
25
|
import * as react_hook_form from 'react-hook-form';
|
|
@@ -169,6 +168,105 @@ declare function AppChromeSidebar({ header, children, footer, collapsible, class
|
|
|
169
168
|
|
|
170
169
|
declare const AspectRatio: React$1.ForwardRefExoticComponent<AspectRatioPrimitive.AspectRatioProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
171
170
|
|
|
171
|
+
type AuroraProps = {
|
|
172
|
+
/** Exactly three hex colors for the horizontal ramp (fewer/more are normalized). */
|
|
173
|
+
colorStops?: [string, string, string] | string[];
|
|
174
|
+
amplitude?: number;
|
|
175
|
+
blend?: number;
|
|
176
|
+
/** Override animation clock (ms); default uses `requestAnimationFrame` time. */
|
|
177
|
+
time?: number;
|
|
178
|
+
speed?: number;
|
|
179
|
+
};
|
|
180
|
+
/** Full-bleed WebGL aurora background (requires peer `ogl`). */
|
|
181
|
+
declare function Aurora(props: AuroraProps): React$1.JSX.Element;
|
|
182
|
+
|
|
183
|
+
declare const authBannerVariants: (props?: ({
|
|
184
|
+
variant?: "destructive" | "success" | null | undefined;
|
|
185
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
186
|
+
type AuthBannerProps = React$1.HTMLAttributes<HTMLDivElement> & VariantProps<typeof authBannerVariants> & {
|
|
187
|
+
/** Override the default status icon. */
|
|
188
|
+
icon?: React$1.ReactNode;
|
|
189
|
+
};
|
|
190
|
+
declare const AuthBanner: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
|
|
191
|
+
variant?: "destructive" | "success" | null | undefined;
|
|
192
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string> & {
|
|
193
|
+
/** Override the default status icon. */
|
|
194
|
+
icon?: React$1.ReactNode;
|
|
195
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
196
|
+
|
|
197
|
+
type AuthBrandProps = React$1.HTMLAttributes<HTMLElement> & {
|
|
198
|
+
/** Product mark (e.g. `<img />` or logo component). */
|
|
199
|
+
logo: React$1.ReactNode;
|
|
200
|
+
title: React$1.ReactNode;
|
|
201
|
+
description?: React$1.ReactNode;
|
|
202
|
+
shadow?: boolean;
|
|
203
|
+
};
|
|
204
|
+
/**
|
|
205
|
+
* Centered product brand block above the auth card.
|
|
206
|
+
*/
|
|
207
|
+
declare const AuthBrand: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & {
|
|
208
|
+
/** Product mark (e.g. `<img />` or logo component). */
|
|
209
|
+
logo: React$1.ReactNode;
|
|
210
|
+
title: React$1.ReactNode;
|
|
211
|
+
description?: React$1.ReactNode;
|
|
212
|
+
shadow?: boolean;
|
|
213
|
+
} & React$1.RefAttributes<HTMLElement>>;
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Glass auth surface. Prefer this over `Card` for login/register —
|
|
217
|
+
* stock `Card` uses border + `bg-card` and different radius/padding.
|
|
218
|
+
*/
|
|
219
|
+
declare const AuthCard: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
220
|
+
declare const AuthCardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
221
|
+
declare const AuthCardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
222
|
+
declare const AuthCardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
223
|
+
|
|
224
|
+
type AuthFieldErrorProps = React$1.HTMLAttributes<HTMLParagraphElement>;
|
|
225
|
+
/** Inline field validation message under auth inputs. */
|
|
226
|
+
declare const AuthFieldError: React$1.ForwardRefExoticComponent<AuthFieldErrorProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
227
|
+
|
|
228
|
+
type AuthFooterProps = React$1.HTMLAttributes<HTMLParagraphElement>;
|
|
229
|
+
/** Muted footer line under the auth card (e.g. “Já tem conta? Entrar”). */
|
|
230
|
+
declare const AuthFooter: React$1.ForwardRefExoticComponent<AuthFooterProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
231
|
+
type AuthFooterLinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
232
|
+
asChild?: boolean;
|
|
233
|
+
};
|
|
234
|
+
/** Link style for auth footer CTAs — needs `.hover-underline` from utilities.css. */
|
|
235
|
+
declare const AuthFooterLink: React$1.ForwardRefExoticComponent<React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
236
|
+
asChild?: boolean;
|
|
237
|
+
} & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
238
|
+
|
|
239
|
+
type AuthShellProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
240
|
+
/** Full-bleed background (e.g. `<Aurora />`). */
|
|
241
|
+
background?: React$1.ReactNode;
|
|
242
|
+
/** Classes for the background layer (opacity, etc.). */
|
|
243
|
+
backgroundClassName?: string;
|
|
244
|
+
};
|
|
245
|
+
/**
|
|
246
|
+
* Full-viewport auth page shell: centered column over an optional animated background.
|
|
247
|
+
*/
|
|
248
|
+
declare const AuthShell: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & {
|
|
249
|
+
/** Full-bleed background (e.g. `<Aurora />`). */
|
|
250
|
+
background?: React$1.ReactNode;
|
|
251
|
+
/** Classes for the background layer (opacity, etc.). */
|
|
252
|
+
backgroundClassName?: string;
|
|
253
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
254
|
+
|
|
255
|
+
declare const inputVariants: (props?: ({
|
|
256
|
+
variant?: "default" | "outline" | null | undefined;
|
|
257
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
258
|
+
type InputProps = React$1.ComponentProps<"input"> & VariantProps<typeof inputVariants>;
|
|
259
|
+
declare const Input: React$1.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
260
|
+
|
|
261
|
+
type EmailInputProps = Omit<InputProps, "type">;
|
|
262
|
+
declare const EmailInput: React$1.ForwardRefExoticComponent<Omit<EmailInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
263
|
+
|
|
264
|
+
type PasswordInputProps = Omit<InputProps, "type"> & {
|
|
265
|
+
/** Initial visibility of the password text. */
|
|
266
|
+
defaultVisible?: boolean;
|
|
267
|
+
};
|
|
268
|
+
declare const PasswordInput: React$1.ForwardRefExoticComponent<Omit<PasswordInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
269
|
+
|
|
172
270
|
declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
173
271
|
declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
174
272
|
declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
@@ -440,14 +538,25 @@ declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitiv
|
|
|
440
538
|
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
441
539
|
|
|
442
540
|
declare const Drawer: {
|
|
443
|
-
({ shouldScaleBackground, ...props }: React$1.
|
|
541
|
+
({ shouldScaleBackground, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Root>): React$1.JSX.Element;
|
|
444
542
|
displayName: string;
|
|
445
543
|
};
|
|
446
|
-
declare
|
|
447
|
-
declare
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
declare
|
|
544
|
+
declare function DrawerTrigger({ ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Trigger>): React$1.JSX.Element;
|
|
545
|
+
declare namespace DrawerTrigger {
|
|
546
|
+
var displayName: string;
|
|
547
|
+
}
|
|
548
|
+
declare function DrawerPortal({ ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Portal>): React$1.JSX.Element;
|
|
549
|
+
declare namespace DrawerPortal {
|
|
550
|
+
var displayName: string;
|
|
551
|
+
}
|
|
552
|
+
declare function DrawerClose({ ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Close>): React$1.JSX.Element;
|
|
553
|
+
declare namespace DrawerClose {
|
|
554
|
+
var displayName: string;
|
|
555
|
+
}
|
|
556
|
+
type DrawerOverlayProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
557
|
+
declare const DrawerOverlay: React$1.ForwardRefExoticComponent<DrawerOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
558
|
+
type DrawerContentProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
559
|
+
declare const DrawerContent: React$1.ForwardRefExoticComponent<DrawerContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
451
560
|
declare const DrawerHeader: {
|
|
452
561
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
453
562
|
displayName: string;
|
|
@@ -456,8 +565,10 @@ declare const DrawerFooter: {
|
|
|
456
565
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
|
|
457
566
|
displayName: string;
|
|
458
567
|
};
|
|
459
|
-
|
|
460
|
-
declare const
|
|
568
|
+
type DrawerTitleProps = React$1.HTMLAttributes<HTMLHeadingElement>;
|
|
569
|
+
declare const DrawerTitle: React$1.ForwardRefExoticComponent<DrawerTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
570
|
+
type DrawerDescriptionProps = React$1.HTMLAttributes<HTMLParagraphElement>;
|
|
571
|
+
declare const DrawerDescription: React$1.ForwardRefExoticComponent<DrawerDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
461
572
|
|
|
462
573
|
type DropdownTriggerProps = Omit<ComponentProps<typeof Button>, "variant"> & {
|
|
463
574
|
open: boolean;
|
|
@@ -515,12 +626,6 @@ declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
|
|
|
515
626
|
declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
516
627
|
declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
517
628
|
|
|
518
|
-
declare const inputVariants: (props?: ({
|
|
519
|
-
variant?: "default" | "outline" | null | undefined;
|
|
520
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
521
|
-
type InputProps = React$1.ComponentProps<"input"> & VariantProps<typeof inputVariants>;
|
|
522
|
-
declare const Input: React$1.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
523
|
-
|
|
524
629
|
declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
525
630
|
value?: string;
|
|
526
631
|
onChange?: (newValue: string) => unknown;
|
|
@@ -927,4 +1032,4 @@ type VisiblePage = number | "ellipsis";
|
|
|
927
1032
|
declare function buildVisiblePages(current: number, totalPages: number): VisiblePage[];
|
|
928
1033
|
declare function buildRangeLabel(page: number, pageSize: number, total: number, itemLabel?: string, formatTotal?: (n: number) => string): string;
|
|
929
1034
|
|
|
930
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppChromeBrand, type AppChromeBrandProps, AppChromeHeader, type AppChromeHeaderProps, AppChromeSidebar, type AppChromeSidebarProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartCard, type ChartCardProps, 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, Dropdown, 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, type InputProps, Label, ListingPagination, type ListingPaginationProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PageHeader, type PageHeaderProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchableSelect, type SearchableSelectItem, type SearchableSelectLoadResult, type SearchableSelectProps, 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 SonnerToaster, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type VisiblePage, badgeVariants, buildRangeLabel, buildVisiblePages, buttonVariants, cn, inputVariants, navigationMenuTriggerStyle, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|
|
1035
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppChromeBrand, type AppChromeBrandProps, AppChromeHeader, type AppChromeHeaderProps, AppChromeSidebar, type AppChromeSidebarProps, AspectRatio, Aurora, type AuroraProps, AuthBanner, type AuthBannerProps, AuthBrand, type AuthBrandProps, AuthCard, AuthCardDescription, AuthCardHeader, AuthCardTitle, AuthFieldError, type AuthFieldErrorProps, AuthFooter, AuthFooterLink, type AuthFooterLinkProps, type AuthFooterProps, AuthShell, type AuthShellProps, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartCard, type ChartCardProps, 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, Dropdown, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailInput, type EmailInputProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, ListingPagination, type ListingPaginationProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PageHeader, type PageHeaderProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PasswordInput, type PasswordInputProps, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchableSelect, type SearchableSelectItem, type SearchableSelectLoadResult, type SearchableSelectProps, 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 SonnerToaster, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type VisiblePage, authBannerVariants, badgeVariants, buildRangeLabel, buildVisiblePages, buttonVariants, cn, inputVariants, navigationMenuTriggerStyle, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|