@the12company/ui 0.1.3 → 0.1.5

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 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,103 @@ 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
+ };
203
+ /**
204
+ * Centered product brand block above the auth card.
205
+ */
206
+ declare const AuthBrand: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLElement> & {
207
+ /** Product mark (e.g. `<img />` or logo component). */
208
+ logo: React$1.ReactNode;
209
+ title: React$1.ReactNode;
210
+ description?: React$1.ReactNode;
211
+ } & React$1.RefAttributes<HTMLElement>>;
212
+
213
+ /**
214
+ * Glass auth surface. Prefer this over `Card` for login/register —
215
+ * stock `Card` uses border + `bg-card` and different radius/padding.
216
+ */
217
+ declare const AuthCard: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
218
+ declare const AuthCardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
219
+ declare const AuthCardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLHeadingElement>>;
220
+ declare const AuthCardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
221
+
222
+ type AuthFieldErrorProps = React$1.HTMLAttributes<HTMLParagraphElement>;
223
+ /** Inline field validation message under auth inputs. */
224
+ declare const AuthFieldError: React$1.ForwardRefExoticComponent<AuthFieldErrorProps & React$1.RefAttributes<HTMLParagraphElement>>;
225
+
226
+ type AuthFooterProps = React$1.HTMLAttributes<HTMLParagraphElement>;
227
+ /** Muted footer line under the auth card (e.g. “Já tem conta? Entrar”). */
228
+ declare const AuthFooter: React$1.ForwardRefExoticComponent<AuthFooterProps & React$1.RefAttributes<HTMLParagraphElement>>;
229
+ type AuthFooterLinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
230
+ asChild?: boolean;
231
+ };
232
+ /** Link style for auth footer CTAs — needs `.hover-underline` from utilities.css. */
233
+ declare const AuthFooterLink: React$1.ForwardRefExoticComponent<React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
234
+ asChild?: boolean;
235
+ } & React$1.RefAttributes<HTMLAnchorElement>>;
236
+
237
+ type AuthShellProps = React$1.HTMLAttributes<HTMLDivElement> & {
238
+ /** Full-bleed background (e.g. `<Aurora />`). */
239
+ background?: React$1.ReactNode;
240
+ /** Classes for the background layer (opacity, etc.). */
241
+ backgroundClassName?: string;
242
+ };
243
+ /**
244
+ * Full-viewport auth page shell: centered column over an optional animated background.
245
+ */
246
+ declare const AuthShell: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & {
247
+ /** Full-bleed background (e.g. `<Aurora />`). */
248
+ background?: React$1.ReactNode;
249
+ /** Classes for the background layer (opacity, etc.). */
250
+ backgroundClassName?: string;
251
+ } & React$1.RefAttributes<HTMLDivElement>>;
252
+
253
+ declare const inputVariants: (props?: ({
254
+ variant?: "default" | "outline" | null | undefined;
255
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
256
+ type InputProps = React$1.ComponentProps<"input"> & VariantProps<typeof inputVariants>;
257
+ declare const Input: React$1.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
258
+
259
+ type EmailInputProps = Omit<InputProps, "type">;
260
+ declare const EmailInput: React$1.ForwardRefExoticComponent<Omit<EmailInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
261
+
262
+ type PasswordInputProps = Omit<InputProps, "type"> & {
263
+ /** Initial visibility of the password text. */
264
+ defaultVisible?: boolean;
265
+ };
266
+ declare const PasswordInput: React$1.ForwardRefExoticComponent<Omit<PasswordInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
267
+
172
268
  declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
173
269
  declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
174
270
  declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
@@ -440,14 +536,25 @@ declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitiv
440
536
  declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
441
537
 
442
538
  declare const Drawer: {
443
- ({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): React$1.JSX.Element;
539
+ ({ shouldScaleBackground, ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Root>): React$1.JSX.Element;
444
540
  displayName: string;
445
541
  };
446
- declare const DrawerTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
447
- declare const DrawerPortal: typeof vaul.Portal;
448
- declare const DrawerClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
449
- declare const DrawerOverlay: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
450
- declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
542
+ declare function DrawerTrigger({ ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Trigger>): React$1.JSX.Element;
543
+ declare namespace DrawerTrigger {
544
+ var displayName: string;
545
+ }
546
+ declare function DrawerPortal({ ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Portal>): React$1.JSX.Element;
547
+ declare namespace DrawerPortal {
548
+ var displayName: string;
549
+ }
550
+ declare function DrawerClose({ ...props }: React$1.ComponentPropsWithoutRef<typeof Drawer$1.Close>): React$1.JSX.Element;
551
+ declare namespace DrawerClose {
552
+ var displayName: string;
553
+ }
554
+ type DrawerOverlayProps = React$1.HTMLAttributes<HTMLDivElement>;
555
+ declare const DrawerOverlay: React$1.ForwardRefExoticComponent<DrawerOverlayProps & React$1.RefAttributes<HTMLDivElement>>;
556
+ type DrawerContentProps = React$1.HTMLAttributes<HTMLDivElement>;
557
+ declare const DrawerContent: React$1.ForwardRefExoticComponent<DrawerContentProps & React$1.RefAttributes<HTMLDivElement>>;
451
558
  declare const DrawerHeader: {
452
559
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
453
560
  displayName: string;
@@ -456,8 +563,10 @@ declare const DrawerFooter: {
456
563
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): React$1.JSX.Element;
457
564
  displayName: string;
458
565
  };
459
- declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
460
- declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
566
+ type DrawerTitleProps = React$1.HTMLAttributes<HTMLHeadingElement>;
567
+ declare const DrawerTitle: React$1.ForwardRefExoticComponent<DrawerTitleProps & React$1.RefAttributes<HTMLHeadingElement>>;
568
+ type DrawerDescriptionProps = React$1.HTMLAttributes<HTMLParagraphElement>;
569
+ declare const DrawerDescription: React$1.ForwardRefExoticComponent<DrawerDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>>;
461
570
 
462
571
  type DropdownTriggerProps = Omit<ComponentProps<typeof Button>, "variant"> & {
463
572
  open: boolean;
@@ -515,12 +624,6 @@ declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
515
624
  declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
516
625
  declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
517
626
 
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
627
  declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
525
628
  value?: string;
526
629
  onChange?: (newValue: string) => unknown;
@@ -927,4 +1030,4 @@ type VisiblePage = number | "ellipsis";
927
1030
  declare function buildVisiblePages(current: number, totalPages: number): VisiblePage[];
928
1031
  declare function buildRangeLabel(page: number, pageSize: number, total: number, itemLabel?: string, formatTotal?: (n: number) => string): string;
929
1032
 
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 };
1033
+ 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 };