@onesaz/ui 0.4.0 → 0.4.2

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
@@ -428,34 +428,45 @@ declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttribu
428
428
  declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
429
429
  declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
430
430
 
431
+ type BadgeColor = 'default' | 'success' | 'warning' | 'error' | 'destructive';
432
+ type BadgeVariant = 'contained' | 'outlined' | 'text';
431
433
  interface BadgeProps extends React.HTMLAttributes<HTMLDivElement> {
432
- variant?: 'default' | 'secondary' | 'destructive' | 'outline' | 'success' | 'warning' | 'info';
434
+ color?: BadgeColor;
435
+ variant?: BadgeVariant;
433
436
  }
434
437
  declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLDivElement>>;
435
438
 
436
- interface ChipProps extends React.HTMLAttributes<HTMLDivElement> {
439
+ type ChipColor = 'default' | 'success' | 'warning' | 'error' | 'destructive';
440
+ type ChipVariant = 'filled' | 'outlined';
441
+ type ChipSize = 'small' | 'medium';
442
+ interface ChipProps extends React.HTMLAttributes<HTMLElement> {
437
443
  /** The text content of the chip */
438
444
  label?: string;
439
445
  /** Visual style variant */
440
- variant?: 'filled' | 'outlined';
446
+ variant?: ChipVariant;
441
447
  /** Color scheme */
442
- color?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
448
+ color?: ChipColor;
443
449
  /** Size of the chip */
444
- size?: 'small' | 'medium';
450
+ size?: ChipSize;
445
451
  /** Icon element displayed before the label */
446
452
  icon?: React.ReactNode;
447
453
  /** Avatar element displayed before the label */
448
454
  avatar?: React.ReactNode;
449
- /** If provided, renders a delete icon and calls this on click */
450
- onDelete?: (event: React.MouseEvent) => void;
455
+ /** If provided, renders a delete icon and calls this on click.
456
+ * Also triggered by pressing Delete or Backspace when the chip is focused. */
457
+ onDelete?: (event: React.SyntheticEvent) => void;
451
458
  /** Custom delete icon */
452
459
  deleteIcon?: React.ReactNode;
453
- /** Whether the chip is clickable */
460
+ /** Makes the chip act as a button (adds role, cursor, keyboard support) */
454
461
  clickable?: boolean;
455
462
  /** Whether the chip is disabled */
456
463
  disabled?: boolean;
464
+ /** Render as a link chip — sets the underlying element to <a> */
465
+ href?: string;
466
+ /** HTML element or React component to render as. Overrides href-based inference. */
467
+ component?: React.ElementType;
457
468
  }
458
- declare const Chip: React.ForwardRefExoticComponent<ChipProps & React.RefAttributes<HTMLDivElement>>;
469
+ declare const Chip: React.ForwardRefExoticComponent<ChipProps & React.RefAttributes<HTMLElement>>;
459
470
 
460
471
  interface SeparatorProps extends React.HTMLAttributes<HTMLDivElement> {
461
472
  orientation?: 'horizontal' | 'vertical';
@@ -560,20 +571,21 @@ interface SpinnerProps extends React.HTMLAttributes<HTMLDivElement> {
560
571
  }
561
572
  declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<HTMLDivElement>>;
562
573
 
574
+ type AlertVariant = 'default' | 'success' | 'warning' | 'error';
563
575
  interface AlertProps extends React.HTMLAttributes<HTMLDivElement> {
564
- variant?: "default" | "info" | "success" | "warning" | "error" | "destructive";
565
- duration?: number | null;
576
+ variant?: AlertVariant;
577
+ /** Renders a close button; called when clicked. */
566
578
  onClose?: () => void;
579
+ /** Override the default icon. Pass `null` to hide it. */
580
+ icon?: React.ReactNode | null;
567
581
  }
568
- declare const Alert: React.FC<AlertProps>;
569
582
  interface AlertTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
570
- hasDescription?: boolean;
571
- variant?: string;
572
583
  }
573
- declare const AlertTitle: React.FC<AlertTitleProps>;
574
584
  interface AlertDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
575
585
  }
576
- declare const AlertDescription: React.FC<AlertDescriptionProps>;
586
+ declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
587
+ declare const AlertTitle: React.ForwardRefExoticComponent<AlertTitleProps & React.RefAttributes<HTMLHeadingElement>>;
588
+ declare const AlertDescription: React.ForwardRefExoticComponent<AlertDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
577
589
 
578
590
  declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
579
591
  declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -1681,6 +1693,82 @@ declare const DropdownMenuShortcut: {
1681
1693
  displayName: string;
1682
1694
  };
1683
1695
 
1696
+ interface BackdropProps extends React.HTMLAttributes<HTMLDivElement> {
1697
+ /** Whether the backdrop is visible */
1698
+ open: boolean;
1699
+ /** Makes the backdrop fully transparent — still captures clicks/events */
1700
+ invisible?: boolean;
1701
+ /** Duration of the fade transition in ms @default 225 */
1702
+ transitionDuration?: number;
1703
+ /** Keep the element in the DOM when closed (avoids remount cost) @default false */
1704
+ keepMounted?: boolean;
1705
+ /** Render inline instead of in a portal @default false */
1706
+ disablePortal?: boolean;
1707
+ /** Lock body scroll when open @default true */
1708
+ disableScrollLock?: boolean;
1709
+ }
1710
+ declare const Backdrop: React.ForwardRefExoticComponent<BackdropProps & React.RefAttributes<HTMLDivElement>>;
1711
+
1712
+ type SnackbarCloseReason = 'timeout' | 'clickaway' | 'escapeKeyDown';
1713
+ interface SnackbarOrigin {
1714
+ vertical: 'top' | 'bottom';
1715
+ horizontal: 'left' | 'center' | 'right';
1716
+ }
1717
+ interface SnackbarContentProps extends React.HTMLAttributes<HTMLDivElement> {
1718
+ message?: React.ReactNode;
1719
+ action?: React.ReactNode;
1720
+ }
1721
+ declare const SnackbarContent: React.ForwardRefExoticComponent<SnackbarContentProps & React.RefAttributes<HTMLDivElement>>;
1722
+ interface SnackbarProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onClose'> {
1723
+ /** Whether the snackbar is visible */
1724
+ open: boolean;
1725
+ /** Simple text/node — used when no children provided */
1726
+ message?: React.ReactNode;
1727
+ /** Action element rendered inside SnackbarContent */
1728
+ action?: React.ReactNode;
1729
+ /** Ms before auto-close. null to disable. @default 6000 */
1730
+ autoHideDuration?: number | null;
1731
+ /** Fired when the snackbar wants to close */
1732
+ onClose?: (event: React.SyntheticEvent | Event | null, reason: SnackbarCloseReason) => void;
1733
+ /** Position on screen @default { vertical: 'bottom', horizontal: 'left' } */
1734
+ anchorOrigin?: SnackbarOrigin;
1735
+ /** Transition duration in ms @default 225 */
1736
+ transitionDuration?: number;
1737
+ /** Don't pause timer when window loses focus */
1738
+ disableWindowBlurListener?: boolean;
1739
+ /** Render inline instead of in a portal */
1740
+ disablePortal?: boolean;
1741
+ /** Use <Alert> or any custom content */
1742
+ children?: React.ReactNode;
1743
+ }
1744
+ declare const Snackbar: React.ForwardRefExoticComponent<SnackbarProps & React.RefAttributes<HTMLDivElement>>;
1745
+ interface EnqueueOptions {
1746
+ /** Wraps the message in an <Alert> with this variant */
1747
+ variant?: AlertVariant;
1748
+ autoHideDuration?: number | null;
1749
+ anchorOrigin?: SnackbarOrigin;
1750
+ /** Action rendered inside plain SnackbarContent (ignored when variant is set) */
1751
+ action?: React.ReactNode;
1752
+ onClose?: () => void;
1753
+ }
1754
+ interface SnackbarContextValue {
1755
+ enqueueSnackbar: (message: React.ReactNode, options?: EnqueueOptions) => string;
1756
+ closeSnackbar: (key: string) => void;
1757
+ }
1758
+ interface SnackbarProviderProps {
1759
+ children: React.ReactNode;
1760
+ /** Default anchor position @default { vertical: 'bottom', horizontal: 'left' } */
1761
+ anchorOrigin?: SnackbarOrigin;
1762
+ /** Default auto-hide duration in ms @default 5000 */
1763
+ autoHideDuration?: number | null;
1764
+ /** Max snackbars shown at once @default 3 */
1765
+ maxSnack?: number;
1766
+ /** Transition duration in ms @default 225 */
1767
+ transitionDuration?: number;
1768
+ }
1769
+ declare function SnackbarProvider({ children, anchorOrigin, autoHideDuration, maxSnack, transitionDuration, }: SnackbarProviderProps): react_jsx_runtime.JSX.Element;
1770
+ declare const useSnackbar: () => SnackbarContextValue;
1771
+
1684
1772
  declare const Drawer: React.FC<DialogPrimitive.DialogProps>;
1685
1773
  declare const DrawerTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
1686
1774
  declare const DrawerClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
@@ -1905,4 +1993,4 @@ declare const RailPanelItem: React.ForwardRefExoticComponent<RailPanelItemProps
1905
1993
 
1906
1994
  declare const Playground: () => react_jsx_runtime.JSX.Element;
1907
1995
 
1908
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, AreaChart, type AreaChartProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, BarChart, type BarChartProps, BottomNavigation, BottomNavigationAction, type BottomNavigationActionProps, type BottomNavigationProps, Box, type BoxProps, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, type CircularProgressProps, type ColumnGroupModel, type ColumnVisibilityModel, Combobox, type ComboboxMultipleProps, type ComboboxOption, type ComboboxProps, type ComboboxSingleProps, DataGrid, type DataGridProps, DataGrid as DataGridV0, DataList, DataListItem, type DataListItemProps, DataListLabel, type DataListLabelProps, type DataListProps, DataListValue, type DataListValueProps, DialogNamespace as Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, type DonutChartProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, DrawerContent, type DrawerContentProps, DrawerDescription, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, FormControl, type FormControlProps, FormGroup, type FormGroupProps, FormHelperText, type FormHelperTextProps, FormLabel, type FormLabelProps, Grid, type GridColDef, type GridProps, type GridRenderCellParams, type GridRenderHeaderParams, type GridRowSelectionModel, type GridSpanParams, type GridValueFormatterParams, type GridValueGetterParams, H1, H2, H3, H4, H5, H6, HStack, IconButton, type IconButtonProps, IconRail, IconRailContent, type IconRailContentProps, IconRailFooter, type IconRailFooterProps, IconRailHeader, type IconRailHeaderProps, IconRailItem, type IconRailItemProps, type IconRailProps, Input, InputAdornment, type InputAdornmentProps, type InputProps, Label, type LabelProps, LineChart, type LineChartProps, LinearProgress, type LinearProgressProps, List, ListDivider, type ListDividerProps, ListItem, ListItemAvatar, type ListItemAvatarProps, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListSubheader, type ListSubheaderProps, MultiProgressDonut, type MultiProgressDonutProps, NativeSelect, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, PackedBubbleChart, type PackedBubbleChartProps, type PackedBubbleDataItem, PaginationNamespace as Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, type PaginationModel, PaginationNext, PaginationPrevious, type PaginationProps, PieChart, type PieChartProps, type PinnedColumnsModel, type PinnedRowsModel, Playground, Progress, ProgressCard, type ProgressCardProps, ProgressDonut, type ProgressDonutProps, type ProgressProps, RadarChart, type RadarChartProps, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RadioProps, RailPanel, RailPanelGroup, type RailPanelGroupProps, RailPanelItem, type RailPanelItemProps, type RailPanelProps, RangeSlider, type RangeSliderProps, ScatterChart, type ScatterChartProps, SelectNamespace as Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarRail, type SidebarRailProps, SidebarSubMenu, type SidebarSubMenuProps, SidebarToggle, type SidebarToggleProps, Skeleton, SkeletonAvatar, type SkeletonAvatarProps, SkeletonCard, type SkeletonCardProps, type SkeletonProps, SkeletonTableRow, type SkeletonTableRowProps, SkeletonText, type SkeletonTextProps, Slider, type SliderProps, Spinner, type SpinnerProps, Stack, type StackProps, Switch, type SwitchProps, TableNamespace as Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Text, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeContext, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipArrow, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TopBar, TopBarBrand, type TopBarBrandProps, TopBarDivider, type TopBarDividerProps, TopBarNav, TopBarNavItem, type TopBarNavItemProps, type TopBarNavProps, type TopBarProps, TopBarSection, type TopBarSectionProps, Typography, type TypographyProps, UnderlineTabsContent, UnderlineTabsList, UnderlineTabsTrigger, type UnderlineTabsTriggerProps, VStack, VerticalTabs, VerticalTabsContent, VerticalTabsGroupLabel, type VerticalTabsGroupLabelProps, VerticalTabsList, VerticalTabsTrigger, type VerticalTabsTriggerProps, VirtualList, type VirtualListProps, cn, useFormControl, useSidebar, useSidebarRail, useTheme };
1996
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, AreaChart, type AreaChartProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Backdrop, type BackdropProps, Badge, type BadgeProps, BarChart, type BarChartProps, BottomNavigation, BottomNavigationAction, type BottomNavigationActionProps, type BottomNavigationProps, Box, type BoxProps, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type CheckboxProps, Chip, type ChipProps, CircularProgress, type CircularProgressProps, type ColumnGroupModel, type ColumnVisibilityModel, Combobox, type ComboboxMultipleProps, type ComboboxOption, type ComboboxProps, type ComboboxSingleProps, DataGrid, type DataGridProps, DataGrid as DataGridV0, DataList, DataListItem, type DataListItemProps, DataListLabel, type DataListLabelProps, type DataListProps, DataListValue, type DataListValueProps, DialogNamespace as Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DonutChart, type DonutChartProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, DrawerContent, type DrawerContentProps, DrawerDescription, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type EnqueueOptions, FormControl, type FormControlProps, FormGroup, type FormGroupProps, FormHelperText, type FormHelperTextProps, FormLabel, type FormLabelProps, Grid, type GridColDef, type GridProps, type GridRenderCellParams, type GridRenderHeaderParams, type GridRowSelectionModel, type GridSpanParams, type GridValueFormatterParams, type GridValueGetterParams, H1, H2, H3, H4, H5, H6, HStack, IconButton, type IconButtonProps, IconRail, IconRailContent, type IconRailContentProps, IconRailFooter, type IconRailFooterProps, IconRailHeader, type IconRailHeaderProps, IconRailItem, type IconRailItemProps, type IconRailProps, Input, InputAdornment, type InputAdornmentProps, type InputProps, Label, type LabelProps, LineChart, type LineChartProps, LinearProgress, type LinearProgressProps, List, ListDivider, type ListDividerProps, ListItem, ListItemAvatar, type ListItemAvatarProps, ListItemButton, type ListItemButtonProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListSubheader, type ListSubheaderProps, MultiProgressDonut, type MultiProgressDonutProps, NativeSelect, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, PackedBubbleChart, type PackedBubbleChartProps, type PackedBubbleDataItem, PaginationNamespace as Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, type PaginationModel, PaginationNext, PaginationPrevious, type PaginationProps, PieChart, type PieChartProps, type PinnedColumnsModel, type PinnedRowsModel, Playground, Progress, ProgressCard, type ProgressCardProps, ProgressDonut, type ProgressDonutProps, type ProgressProps, RadarChart, type RadarChartProps, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RadioProps, RailPanel, RailPanelGroup, type RailPanelGroupProps, RailPanelItem, type RailPanelItemProps, type RailPanelProps, RangeSlider, type RangeSliderProps, ScatterChart, type ScatterChartProps, SelectNamespace as Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarRail, type SidebarRailProps, SidebarSubMenu, type SidebarSubMenuProps, SidebarToggle, type SidebarToggleProps, Skeleton, SkeletonAvatar, type SkeletonAvatarProps, SkeletonCard, type SkeletonCardProps, type SkeletonProps, SkeletonTableRow, type SkeletonTableRowProps, SkeletonText, type SkeletonTextProps, Slider, type SliderProps, Snackbar, type SnackbarCloseReason, SnackbarContent, type SnackbarContentProps, type SnackbarOrigin, type SnackbarProps, SnackbarProvider, type SnackbarProviderProps, Spinner, type SpinnerProps, Stack, type StackProps, Switch, type SwitchProps, TableNamespace as Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Text, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeContext, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipArrow, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TopBar, TopBarBrand, type TopBarBrandProps, TopBarDivider, type TopBarDividerProps, TopBarNav, TopBarNavItem, type TopBarNavItemProps, type TopBarNavProps, type TopBarProps, TopBarSection, type TopBarSectionProps, Typography, type TypographyProps, UnderlineTabsContent, UnderlineTabsList, UnderlineTabsTrigger, type UnderlineTabsTriggerProps, VStack, VerticalTabs, VerticalTabsContent, VerticalTabsGroupLabel, type VerticalTabsGroupLabelProps, VerticalTabsList, VerticalTabsTrigger, type VerticalTabsTriggerProps, VirtualList, type VirtualListProps, cn, useFormControl, useSidebar, useSidebarRail, useSnackbar, useTheme };