@olwiba/cn 0.1.25 → 0.1.27

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.d.ts CHANGED
@@ -48,7 +48,7 @@ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
48
48
 
49
49
  declare function cn(...inputs: ClassValue[]): string;
50
50
 
51
- type UIVariant = "playful" | "smooth" | undefined;
51
+ type UIVariant = "playful" | "smooth" | "glass" | undefined;
52
52
  /**
53
53
  * Sets a global default UI variant for all olwibaCN primitives in the tree.
54
54
  * Individual components can still override with an explicit `mode` prop.
@@ -59,7 +59,7 @@ declare function UIVariantProvider({ mode, children, }: {
59
59
  }): react_jsx_runtime.JSX.Element;
60
60
  declare function useUIVariant(): UIVariant;
61
61
 
62
- type AccordionMode = "playful" | "smooth";
62
+ type AccordionMode = "playful" | "smooth" | "glass";
63
63
  type AccordionSize = "sm" | "default";
64
64
  declare const Accordion: React$1.ForwardRefExoticComponent<((Omit<AccordionPrimitive.AccordionSingleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> | Omit<AccordionPrimitive.AccordionMultipleProps & React$1.RefAttributes<HTMLDivElement>, "ref">) & {
65
65
  mode?: AccordionMode;
@@ -120,7 +120,7 @@ declare const badgeVariants: (props?: ({
120
120
  } & class_variance_authority_types.ClassProp) | undefined) => string;
121
121
  interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
122
122
  disabled?: boolean;
123
- mode?: "playful" | "smooth";
123
+ mode?: "playful";
124
124
  }
125
125
  declare function Badge({ className, variant, size, disabled, mode: modeProp, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
126
126
 
@@ -152,7 +152,7 @@ declare const buttonVariants: (props?: ({
152
152
  } & class_variance_authority_types.ClassProp) | undefined) => string;
153
153
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
154
154
  asChild?: boolean;
155
- mode?: "playful" | "smooth";
155
+ mode?: "playful" | "smooth" | "glass";
156
156
  }
157
157
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
158
158
 
@@ -178,7 +178,7 @@ declare function Calendar({ className, classNames, showOutsideDays, captionLayou
178
178
  declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
179
179
 
180
180
  interface CardProps extends React$1.HTMLAttributes<HTMLDivElement> {
181
- mode?: "playful" | "smooth";
181
+ mode?: "playful" | "smooth" | "glass";
182
182
  }
183
183
  declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
184
184
  declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
@@ -197,7 +197,7 @@ type CarouselProps = {
197
197
  plugins?: CarouselPlugin;
198
198
  orientation?: "horizontal" | "vertical";
199
199
  setApi?: (api: CarouselApi) => void;
200
- mode?: "playful" | "smooth";
200
+ mode?: "playful" | "smooth" | "glass";
201
201
  size?: CarouselSize;
202
202
  disabled?: boolean;
203
203
  };
@@ -361,6 +361,7 @@ declare const CommandShortcut: {
361
361
  displayName: string;
362
362
  };
363
363
 
364
+ type ContextMenuMode = "playful" | "smooth";
364
365
  declare const ContextMenu: React$1.FC<ContextMenuPrimitive.ContextMenuProps>;
365
366
  declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & React$1.RefAttributes<HTMLSpanElement>>;
366
367
  declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -370,8 +371,12 @@ declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<ContextMe
370
371
  declare const ContextMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
371
372
  inset?: boolean;
372
373
  } & React$1.RefAttributes<HTMLDivElement>>;
373
- declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
374
- declare const ContextMenuContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
374
+ declare const ContextMenuSubContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
375
+ mode?: ContextMenuMode;
376
+ } & React$1.RefAttributes<HTMLDivElement>>;
377
+ declare const ContextMenuContent: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
378
+ mode?: ContextMenuMode;
379
+ } & React$1.RefAttributes<HTMLDivElement>>;
375
380
  declare const ContextMenuItem: React$1.ForwardRefExoticComponent<Omit<ContextMenuPrimitive.ContextMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
376
381
  inset?: boolean;
377
382
  } & React$1.RefAttributes<HTMLDivElement>>;
@@ -393,7 +398,7 @@ declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.D
393
398
  declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
394
399
  declare const DialogClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
395
400
  declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
396
- type DialogMode = "playful" | "smooth";
401
+ type DialogMode = "playful" | "smooth" | "glass";
397
402
  declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
398
403
  mode?: DialogMode;
399
404
  } & React$1.RefAttributes<HTMLDivElement>>;
@@ -412,14 +417,15 @@ declare const Drawer: {
412
417
  ({ shouldScaleBackground, ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
413
418
  displayName: string;
414
419
  };
415
- declare const DrawerTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
420
+ type ForwardRef<E, P> = React$1.ForwardRefExoticComponent<React$1.PropsWithoutRef<P> & React$1.RefAttributes<E>>;
421
+ declare const DrawerTrigger: typeof Drawer$1.Trigger;
416
422
  declare const DrawerPortal: typeof vaul.Portal;
417
- declare const DrawerClose: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
418
- declare const DrawerOverlay: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
423
+ declare const DrawerClose: typeof Drawer$1.Close;
424
+ declare const DrawerOverlay: ForwardRef<React$1.ElementRef<typeof Drawer$1.Overlay>, React$1.ComponentPropsWithoutRef<typeof Drawer$1.Overlay>>;
419
425
  type DrawerMode = "playful" | "smooth";
420
- declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
426
+ declare const DrawerContent: ForwardRef<React$1.ElementRef<typeof Drawer$1.Content>, React$1.ComponentPropsWithoutRef<typeof Drawer$1.Content> & {
421
427
  mode?: DrawerMode;
422
- } & React$1.RefAttributes<HTMLDivElement>>;
428
+ }>;
423
429
  declare const DrawerHeader: {
424
430
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
425
431
  displayName: string;
@@ -428,8 +434,8 @@ declare const DrawerFooter: {
428
434
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
429
435
  displayName: string;
430
436
  };
431
- declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
432
- declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
437
+ declare const DrawerTitle: ForwardRef<React$1.ElementRef<typeof Drawer$1.Title>, React$1.ComponentPropsWithoutRef<typeof Drawer$1.Title>>;
438
+ declare const DrawerDescription: ForwardRef<React$1.ElementRef<typeof Drawer$1.Description>, React$1.ComponentPropsWithoutRef<typeof Drawer$1.Description>>;
433
439
 
434
440
  type DropdownMenuMode = "playful" | "smooth";
435
441
  declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
@@ -530,11 +536,11 @@ declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCard
530
536
  } & React$1.RefAttributes<HTMLDivElement>>;
531
537
 
532
538
  interface InputProps extends React$1.ComponentProps<"input"> {
533
- mode?: "playful" | "smooth";
539
+ mode?: "playful" | "smooth" | "glass";
534
540
  }
535
541
  declare const Input: React$1.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
536
542
 
537
- declare function InputGroup({ className, mode, disabled, ...props }: React$1.ComponentProps<"div"> & {
543
+ declare function InputGroup({ className, mode: modeProp, disabled, ...props }: React$1.ComponentProps<"div"> & {
538
544
  mode?: UIVariant;
539
545
  disabled?: boolean;
540
546
  }): react_jsx_runtime.JSX.Element;
@@ -615,7 +621,10 @@ declare function ItemActions({ className, ...props }: React$1.ComponentProps<"di
615
621
  declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
616
622
  declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
617
623
 
618
- declare function Kbd({ className, ...props }: React$1.ComponentProps<"kbd">): react_jsx_runtime.JSX.Element;
624
+ interface KbdProps extends React$1.ComponentProps<"kbd"> {
625
+ mode?: "playful" | "smooth";
626
+ }
627
+ declare function Kbd({ className, mode: modeProp, ...props }: KbdProps): react_jsx_runtime.JSX.Element;
619
628
  declare function KbdGroup({ className, ...props }: React$1.ComponentProps<"kbd">): react_jsx_runtime.JSX.Element;
620
629
 
621
630
  type MenubarMode = "playful" | "smooth";
@@ -699,7 +708,7 @@ declare const PaginationEllipsis: {
699
708
  displayName: string;
700
709
  };
701
710
 
702
- type PopoverMode = "playful" | "smooth";
711
+ type PopoverMode = "playful" | "smooth" | "glass";
703
712
  declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
704
713
  declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
705
714
  declare const PopoverAnchor: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -707,12 +716,17 @@ declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrim
707
716
  mode?: PopoverMode;
708
717
  } & React$1.RefAttributes<HTMLDivElement>>;
709
718
 
710
- declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
719
+ interface ProgressProps extends React$1.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> {
711
720
  disabled?: boolean;
712
- } & React$1.RefAttributes<HTMLDivElement>>;
721
+ mode?: "playful" | "smooth";
722
+ }
723
+ declare const Progress: React$1.ForwardRefExoticComponent<ProgressProps & React$1.RefAttributes<HTMLDivElement>>;
713
724
 
725
+ interface RadioGroupItemProps extends React$1.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item> {
726
+ mode?: "playful" | "smooth";
727
+ }
714
728
  declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
715
- declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
729
+ declare const RadioGroupItem: React$1.ForwardRefExoticComponent<RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>>;
716
730
 
717
731
  declare const ResizablePanelGroup: ({ className, orientation, ...props }: React.ComponentProps<typeof Group>) => react_jsx_runtime.JSX.Element;
718
732
  declare const ResizablePanel: typeof Panel;
@@ -766,7 +780,7 @@ declare const SheetFooter: {
766
780
  declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
767
781
  declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
768
782
 
769
- type TooltipMode = "playful" | "smooth";
783
+ type TooltipMode = "playful" | "smooth" | "glass";
770
784
  declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
771
785
  declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
772
786
  declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
@@ -868,7 +882,7 @@ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.Re
868
882
 
869
883
  type ToasterProps = React.ComponentProps<typeof Toaster$1>;
870
884
  type ToasterMode = "playful" | "smooth";
871
- declare const Toaster: ({ mode, className, style, ...props }: ToasterProps & {
885
+ declare const Toaster: ({ mode: modeProp, className, style, ...props }: ToasterProps & {
872
886
  mode?: ToasterMode;
873
887
  }) => react_jsx_runtime.JSX.Element;
874
888
 
@@ -886,6 +900,7 @@ declare function StatusIndicator({ className, dotClassName, color, size, pulse,
886
900
 
887
901
  interface SwitchProps extends React$1.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root> {
888
902
  size?: "sm" | "default" | "lg";
903
+ mode?: "playful" | "smooth";
889
904
  }
890
905
  declare const Switch: React$1.ForwardRefExoticComponent<SwitchProps & React$1.RefAttributes<HTMLButtonElement>>;
891
906
 
@@ -945,10 +960,16 @@ declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGrou
945
960
  interface AsciiTextProps {
946
961
  text?: string;
947
962
  accent?: string;
963
+ accents?: Array<{
964
+ text: string;
965
+ color: string;
966
+ }>;
967
+ shine?: string;
968
+ shineColor?: string;
948
969
  color?: string;
949
970
  accentColor?: string;
950
971
  }
951
- declare function AsciiText({ text, accent, color, accentColor, }: AsciiTextProps): react_jsx_runtime.JSX.Element;
972
+ declare function AsciiText({ text, accent, accents, shine, shineColor, color, accentColor, }: AsciiTextProps): react_jsx_runtime.JSX.Element;
952
973
 
953
974
  declare function useIsMobile(): boolean;
954
975
 
@@ -986,7 +1007,11 @@ declare function ThemeScript(): react_jsx_runtime.JSX.Element;
986
1007
 
987
1008
  interface EnchantedProps extends React$1.HTMLAttributes<HTMLDivElement> {
988
1009
  children: React$1.ReactNode;
1010
+ /** Only show the glints while the wrapper is hovered. */
1011
+ hoverOnly?: boolean;
1012
+ /** Overrides the glint colour (defaults to text-primary). */
1013
+ glintClassName?: string;
989
1014
  }
990
- declare function Enchanted({ children, className, ...props }: EnchantedProps): react_jsx_runtime.JSX.Element;
1015
+ declare function Enchanted({ children, className, hoverOnly, glintClassName, ...props }: EnchantedProps): react_jsx_runtime.JSX.Element;
991
1016
 
992
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AsciiText, type AsciiTextProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ConfettiOptions, 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, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Enchanted, type EnchantedProps, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, 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, type SliderProps, Spinner, StatusIndicator, type StatusIndicatorProps, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, ThemeScript, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UIVariant, UIVariantProvider, badgeVariants, buttonGroupVariants, buttonVariants, cn, fireConfetti, navigationMenuTriggerStyle, statusIndicatorDotVariants, toggleVariants, useCopyToClipboard, useFormField, useIsMobile, useSidebar, useUIVariant };
1017
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AsciiText, type AsciiTextProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ConfettiOptions, 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, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Enchanted, type EnchantedProps, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, type InputOTPProps, InputOTPSeparator, InputOTPSlot, type InputProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, type KbdProps, 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, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, 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, type SliderProps, Spinner, StatusIndicator, type StatusIndicatorProps, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, ThemeScript, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UIVariant, UIVariantProvider, badgeVariants, buttonGroupVariants, buttonVariants, cn, fireConfetti, navigationMenuTriggerStyle, statusIndicatorDotVariants, toggleVariants, useCopyToClipboard, useFormField, useIsMobile, useSidebar, useUIVariant };