@ship-it-ui/ui 0.0.2 → 0.0.3

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.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { ClassValue } from 'clsx';
2
2
  export { ClassValue } from 'clsx';
3
3
  import * as react from 'react';
4
- import { useEffect, KeyboardEvent, RefObject, ButtonHTMLAttributes, ReactNode, HTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, AnchorHTMLAttributes, Ref, FC, SVGAttributes } from 'react';
4
+ import { useEffect, KeyboardEvent, RefObject, ButtonHTMLAttributes, ReactNode, HTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, AnchorHTMLAttributes, Ref, LabelHTMLAttributes, FC, SVGAttributes } from 'react';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
6
6
  import { VariantProps } from 'class-variance-authority';
7
7
  import * as RadixCheckbox from '@radix-ui/react-checkbox';
@@ -1170,6 +1170,28 @@ interface DotsProps extends Omit<HTMLAttributes<HTMLElement>, 'onChange'> {
1170
1170
  }
1171
1171
  declare const Dots: react.ForwardRefExoticComponent<DotsProps & react.RefAttributes<HTMLElement>>;
1172
1172
 
1173
+ /**
1174
+ * Dropzone — drag-and-drop file capture surface with a click-to-browse
1175
+ * fallback. Manages its own drag-over state and forwards file drops to
1176
+ * `onFiles`. Native `<input type="file">` covers keyboard / a11y.
1177
+ */
1178
+ interface DropzoneProps extends Omit<LabelHTMLAttributes<HTMLLabelElement>, 'onDrop' | 'onDragOver' | 'onDragLeave' | 'title'> {
1179
+ /** Fired with the dropped or selected files. */
1180
+ onFiles?: (files: File[]) => void;
1181
+ /** Limit accepted MIME types or extensions. Forwarded to the hidden input + filtered on drop. */
1182
+ accept?: string;
1183
+ /** Allow multiple files. Default true. */
1184
+ multiple?: boolean;
1185
+ /** Heading text. Default "Drop files to ingest". */
1186
+ title?: ReactNode;
1187
+ /** Subtitle / hint text rendered below the title. */
1188
+ description?: ReactNode;
1189
+ /** Glyph at the top of the surface. Default `↥`. */
1190
+ icon?: ReactNode;
1191
+ disabled?: boolean;
1192
+ }
1193
+ declare const Dropzone: react.ForwardRefExoticComponent<DropzoneProps & react.RefAttributes<HTMLLabelElement>>;
1194
+
1173
1195
  /**
1174
1196
  * EmptyState — placeholder for empty lists, no-results states, and error
1175
1197
  * surfaces. A 48×48 icon plate sits above a title + description and an
@@ -1244,6 +1266,61 @@ interface MenubarItemProps extends RadixMenubar.MenubarItemProps {
1244
1266
  declare const MenubarItem: react.ForwardRefExoticComponent<MenubarItemProps & react.RefAttributes<HTMLDivElement>>;
1245
1267
  declare const MenubarSeparator: react.ForwardRefExoticComponent<RadixMenubar.MenubarSeparatorProps & react.RefAttributes<HTMLDivElement>>;
1246
1268
 
1269
+ /**
1270
+ * NavBar — primary app navigation. The same component renders either as a
1271
+ * horizontal top bar (`orientation="horizontal"`) or as a vertical side rail
1272
+ * (`orientation="vertical"`); both layouts are driven by the same `items`
1273
+ * tree. Items can carry nested `children` to produce dropdowns on
1274
+ * horizontal and expand-collapse groups on vertical. Below `md` the bar
1275
+ * collapses to a hamburger that opens a Drawer rendering the items
1276
+ * vertically (set `responsive={false}` to opt out).
1277
+ *
1278
+ * Active state can be controlled (`value` + `onValueChange`) or uncontrolled
1279
+ * (`defaultValue`). Items with an `href` render as anchors; otherwise as
1280
+ * buttons that fire `onValueChange`.
1281
+ */
1282
+ interface NavBarItem {
1283
+ /** Stable identifier — what `value` / `onValueChange` reference. */
1284
+ id: string;
1285
+ label: ReactNode;
1286
+ /** Optional left-of-label icon node. */
1287
+ icon?: ReactNode;
1288
+ /** When set, item renders as an `<a>`; otherwise as a `<button>`. */
1289
+ href?: string;
1290
+ /** Trailing badge text. */
1291
+ badge?: ReactNode;
1292
+ disabled?: boolean;
1293
+ /** Nested items — dropdowns on horizontal, expand-groups on vertical. */
1294
+ children?: NavBarItem[];
1295
+ }
1296
+ type NavBarOrientation = 'horizontal' | 'vertical';
1297
+ interface NavBarProps extends Omit<HTMLAttributes<HTMLElement>, 'defaultValue' | 'title'> {
1298
+ /** Layout direction. Default `'horizontal'`. */
1299
+ orientation?: NavBarOrientation;
1300
+ /** Item tree driving the bar. */
1301
+ items: NavBarItem[];
1302
+ /**
1303
+ * Brand / logo slot rendered at the start. When `responsive` is `true`,
1304
+ * `brand` also seeds the mobile Drawer's accessible name, so it should
1305
+ * include text — e.g. `<><Logo /> ShipIt</>` rather than `<Logo />` alone.
1306
+ * Falls back to `'Navigation'` when omitted.
1307
+ */
1308
+ brand?: ReactNode;
1309
+ /** Trailing slot for secondary actions (avatar, settings, theme toggle, …). */
1310
+ actions?: ReactNode;
1311
+ /** Controlled active item id. */
1312
+ value?: string;
1313
+ /** Uncontrolled initial active item id. */
1314
+ defaultValue?: string;
1315
+ /** Fired when an item is activated. */
1316
+ onValueChange?: (id: string) => void;
1317
+ /** Pixel width of the vertical rail. Default 240. */
1318
+ width?: number;
1319
+ /** Collapse to a hamburger drawer below `md`. Default `true`. */
1320
+ responsive?: boolean;
1321
+ }
1322
+ declare const NavBar: react.ForwardRefExoticComponent<NavBarProps & react.RefAttributes<HTMLElement>>;
1323
+
1247
1324
  /**
1248
1325
  * Pagination — page selector for paginated lists/tables. Renders prev/next
1249
1326
  * arrows plus a compact range of numbered pages. Use `siblings` to control how
@@ -1344,8 +1421,27 @@ declare const NavItem: react.ForwardRefExoticComponent<NavItemProps & react.RefA
1344
1421
  interface NavSectionProps extends HTMLAttributes<HTMLDivElement> {
1345
1422
  /** Eyebrow heading. Rendered uppercase, mono, dim. */
1346
1423
  label: ReactNode;
1424
+ /** Optional leading glyph or icon node next to the eyebrow. */
1425
+ icon?: ReactNode;
1347
1426
  /** Optional trailing element next to the heading (e.g., a `+` add affordance). */
1348
1427
  action?: ReactNode;
1428
+ /**
1429
+ * When true, the eyebrow becomes a button that toggles the body. The body
1430
+ * is hidden when closed. Default `false` — the eyebrow stays static.
1431
+ */
1432
+ collapsible?: boolean;
1433
+ /** Uncontrolled initial open state. Default `true`. Ignored when `open` is provided. */
1434
+ defaultOpen?: boolean;
1435
+ /** Controlled open state. */
1436
+ open?: boolean;
1437
+ /** Fires when the open state changes. */
1438
+ onOpenChange?: (open: boolean) => void;
1439
+ /**
1440
+ * Pixel indent applied to the body. Useful when this section nests other
1441
+ * sections — the indent visually anchors children to the eyebrow above.
1442
+ * A subtle left rail is drawn alongside the indent. Default `0`.
1443
+ */
1444
+ indent?: number;
1349
1445
  }
1350
1446
  declare const NavSection: react.ForwardRefExoticComponent<NavSectionProps & react.RefAttributes<HTMLDivElement>>;
1351
1447
 
@@ -1513,4 +1609,4 @@ interface TreeProps extends Omit<HTMLAttributes<HTMLUListElement>, 'onSelect'> {
1513
1609
  }
1514
1610
  declare const Tree: react.ForwardRefExoticComponent<TreeProps & react.RefAttributes<HTMLUListElement>>;
1515
1611
 
1516
- export { Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, type AlertDialogProps, AlertDialogRoot, AlertDialogTrigger, type AlertProps, type AlertTone, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, type BannerTone, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, type CalendarProps, Card, CardLink, type CardLinkProps, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipProps, Combobox, type ComboboxOption, type ComboboxProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, ContextMenu, ContextMenuContent, ContextMenuItem, type ContextMenuItemProps, ContextMenuPortal, ContextMenuRoot, ContextMenuSeparator, ContextMenuTrigger, Crumb, type CrumbProps, DataTable, type DataTableColumn, type DataTableProps, type DataTableSort, DatePicker, type DatePickerProps, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogOverlay, DialogPortal, type DialogProps, DialogRoot, DialogTrigger, Dots, type DotsProps, Drawer, type DrawerProps, type DrawerSide, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRoot, DropdownMenuTrigger, EmptyState, type EmptyStateProps, FAB, type FABProps, Field, type FieldProps, FileChip, type FileChipProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, Input, type InputProps, Kbd, type KbdProps, MenuCheckboxItem, MenuItem, type MenuItemProps, MenuSeparator, Menubar, MenubarContent, MenubarItem, type MenubarItemProps, MenubarMenu, MenubarSeparator, MenubarTrigger, NavItem, type NavItemProps, NavSection, type NavSectionProps, type NormalizedOption, OTP, type OTPHandle, type OTPProps, Pagination, type PaginationProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, Progress, type ProgressProps, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, SearchInput, type SearchInputProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectTrigger, SelectValue, Sheet, type SheetProps, Sidebar, type SidebarProps, Skeleton, SkeletonGroup, type SkeletonGroupProps, type SkeletonProps, Slider, type SliderProps, Sparkline, type SparklineProps, Spinner, type SpinnerProps, SplitButton, type SplitButtonProps, StatCard, type StatCardProps, type StatTrend, StatusDot, type StatusDotProps, type StatusState, type StepState, Stepper, type StepperProps, type StepperStep, Switch, type SwitchProps, Tab, type TabProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsVariantProps, Tag, type TagProps, Textarea, type TextareaProps, type Theme, Timeline, type TimelineEvent, type TimelineEventTone, TimelineItem, type TimelineItemProps, type TimelineProps, ToastCard, type ToastInput, ToastProvider, type ToastVariant, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, Topbar, type TopbarProps, Tree, type TreeItem, type TreeProps, type UseControllableStateProps, type UseKeyboardListOptions, type UseKeyboardListResult, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, iconButtonStyles, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };
1612
+ export { Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, type AlertDialogProps, AlertDialogRoot, AlertDialogTrigger, type AlertProps, type AlertTone, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, type BannerTone, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, type CalendarProps, Card, CardLink, type CardLinkProps, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipProps, Combobox, type ComboboxOption, type ComboboxProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, ContextMenu, ContextMenuContent, ContextMenuItem, type ContextMenuItemProps, ContextMenuPortal, ContextMenuRoot, ContextMenuSeparator, ContextMenuTrigger, Crumb, type CrumbProps, DataTable, type DataTableColumn, type DataTableProps, type DataTableSort, DatePicker, type DatePickerProps, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogOverlay, DialogPortal, type DialogProps, DialogRoot, DialogTrigger, Dots, type DotsProps, Drawer, type DrawerProps, type DrawerSide, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRoot, DropdownMenuTrigger, Dropzone, type DropzoneProps, EmptyState, type EmptyStateProps, FAB, type FABProps, Field, type FieldProps, FileChip, type FileChipProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, Input, type InputProps, Kbd, type KbdProps, MenuCheckboxItem, MenuItem, type MenuItemProps, MenuSeparator, Menubar, MenubarContent, MenubarItem, type MenubarItemProps, MenubarMenu, MenubarSeparator, MenubarTrigger, NavBar, type NavBarItem, type NavBarOrientation, type NavBarProps, NavItem, type NavItemProps, NavSection, type NavSectionProps, type NormalizedOption, OTP, type OTPHandle, type OTPProps, Pagination, type PaginationProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, Progress, type ProgressProps, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, SearchInput, type SearchInputProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectTrigger, SelectValue, Sheet, type SheetProps, Sidebar, type SidebarProps, Skeleton, SkeletonGroup, type SkeletonGroupProps, type SkeletonProps, Slider, type SliderProps, Sparkline, type SparklineProps, Spinner, type SpinnerProps, SplitButton, type SplitButtonProps, StatCard, type StatCardProps, type StatTrend, StatusDot, type StatusDotProps, type StatusState, type StepState, Stepper, type StepperProps, type StepperStep, Switch, type SwitchProps, Tab, type TabProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsVariantProps, Tag, type TagProps, Textarea, type TextareaProps, type Theme, Timeline, type TimelineEvent, type TimelineEventTone, TimelineItem, type TimelineItemProps, type TimelineProps, ToastCard, type ToastInput, ToastProvider, type ToastVariant, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, Topbar, type TopbarProps, Tree, type TreeItem, type TreeProps, type UseControllableStateProps, type UseKeyboardListOptions, type UseKeyboardListResult, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, iconButtonStyles, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { ClassValue } from 'clsx';
2
2
  export { ClassValue } from 'clsx';
3
3
  import * as react from 'react';
4
- import { useEffect, KeyboardEvent, RefObject, ButtonHTMLAttributes, ReactNode, HTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, AnchorHTMLAttributes, Ref, FC, SVGAttributes } from 'react';
4
+ import { useEffect, KeyboardEvent, RefObject, ButtonHTMLAttributes, ReactNode, HTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, AnchorHTMLAttributes, Ref, LabelHTMLAttributes, FC, SVGAttributes } from 'react';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
6
6
  import { VariantProps } from 'class-variance-authority';
7
7
  import * as RadixCheckbox from '@radix-ui/react-checkbox';
@@ -1170,6 +1170,28 @@ interface DotsProps extends Omit<HTMLAttributes<HTMLElement>, 'onChange'> {
1170
1170
  }
1171
1171
  declare const Dots: react.ForwardRefExoticComponent<DotsProps & react.RefAttributes<HTMLElement>>;
1172
1172
 
1173
+ /**
1174
+ * Dropzone — drag-and-drop file capture surface with a click-to-browse
1175
+ * fallback. Manages its own drag-over state and forwards file drops to
1176
+ * `onFiles`. Native `<input type="file">` covers keyboard / a11y.
1177
+ */
1178
+ interface DropzoneProps extends Omit<LabelHTMLAttributes<HTMLLabelElement>, 'onDrop' | 'onDragOver' | 'onDragLeave' | 'title'> {
1179
+ /** Fired with the dropped or selected files. */
1180
+ onFiles?: (files: File[]) => void;
1181
+ /** Limit accepted MIME types or extensions. Forwarded to the hidden input + filtered on drop. */
1182
+ accept?: string;
1183
+ /** Allow multiple files. Default true. */
1184
+ multiple?: boolean;
1185
+ /** Heading text. Default "Drop files to ingest". */
1186
+ title?: ReactNode;
1187
+ /** Subtitle / hint text rendered below the title. */
1188
+ description?: ReactNode;
1189
+ /** Glyph at the top of the surface. Default `↥`. */
1190
+ icon?: ReactNode;
1191
+ disabled?: boolean;
1192
+ }
1193
+ declare const Dropzone: react.ForwardRefExoticComponent<DropzoneProps & react.RefAttributes<HTMLLabelElement>>;
1194
+
1173
1195
  /**
1174
1196
  * EmptyState — placeholder for empty lists, no-results states, and error
1175
1197
  * surfaces. A 48×48 icon plate sits above a title + description and an
@@ -1244,6 +1266,61 @@ interface MenubarItemProps extends RadixMenubar.MenubarItemProps {
1244
1266
  declare const MenubarItem: react.ForwardRefExoticComponent<MenubarItemProps & react.RefAttributes<HTMLDivElement>>;
1245
1267
  declare const MenubarSeparator: react.ForwardRefExoticComponent<RadixMenubar.MenubarSeparatorProps & react.RefAttributes<HTMLDivElement>>;
1246
1268
 
1269
+ /**
1270
+ * NavBar — primary app navigation. The same component renders either as a
1271
+ * horizontal top bar (`orientation="horizontal"`) or as a vertical side rail
1272
+ * (`orientation="vertical"`); both layouts are driven by the same `items`
1273
+ * tree. Items can carry nested `children` to produce dropdowns on
1274
+ * horizontal and expand-collapse groups on vertical. Below `md` the bar
1275
+ * collapses to a hamburger that opens a Drawer rendering the items
1276
+ * vertically (set `responsive={false}` to opt out).
1277
+ *
1278
+ * Active state can be controlled (`value` + `onValueChange`) or uncontrolled
1279
+ * (`defaultValue`). Items with an `href` render as anchors; otherwise as
1280
+ * buttons that fire `onValueChange`.
1281
+ */
1282
+ interface NavBarItem {
1283
+ /** Stable identifier — what `value` / `onValueChange` reference. */
1284
+ id: string;
1285
+ label: ReactNode;
1286
+ /** Optional left-of-label icon node. */
1287
+ icon?: ReactNode;
1288
+ /** When set, item renders as an `<a>`; otherwise as a `<button>`. */
1289
+ href?: string;
1290
+ /** Trailing badge text. */
1291
+ badge?: ReactNode;
1292
+ disabled?: boolean;
1293
+ /** Nested items — dropdowns on horizontal, expand-groups on vertical. */
1294
+ children?: NavBarItem[];
1295
+ }
1296
+ type NavBarOrientation = 'horizontal' | 'vertical';
1297
+ interface NavBarProps extends Omit<HTMLAttributes<HTMLElement>, 'defaultValue' | 'title'> {
1298
+ /** Layout direction. Default `'horizontal'`. */
1299
+ orientation?: NavBarOrientation;
1300
+ /** Item tree driving the bar. */
1301
+ items: NavBarItem[];
1302
+ /**
1303
+ * Brand / logo slot rendered at the start. When `responsive` is `true`,
1304
+ * `brand` also seeds the mobile Drawer's accessible name, so it should
1305
+ * include text — e.g. `<><Logo /> ShipIt</>` rather than `<Logo />` alone.
1306
+ * Falls back to `'Navigation'` when omitted.
1307
+ */
1308
+ brand?: ReactNode;
1309
+ /** Trailing slot for secondary actions (avatar, settings, theme toggle, …). */
1310
+ actions?: ReactNode;
1311
+ /** Controlled active item id. */
1312
+ value?: string;
1313
+ /** Uncontrolled initial active item id. */
1314
+ defaultValue?: string;
1315
+ /** Fired when an item is activated. */
1316
+ onValueChange?: (id: string) => void;
1317
+ /** Pixel width of the vertical rail. Default 240. */
1318
+ width?: number;
1319
+ /** Collapse to a hamburger drawer below `md`. Default `true`. */
1320
+ responsive?: boolean;
1321
+ }
1322
+ declare const NavBar: react.ForwardRefExoticComponent<NavBarProps & react.RefAttributes<HTMLElement>>;
1323
+
1247
1324
  /**
1248
1325
  * Pagination — page selector for paginated lists/tables. Renders prev/next
1249
1326
  * arrows plus a compact range of numbered pages. Use `siblings` to control how
@@ -1344,8 +1421,27 @@ declare const NavItem: react.ForwardRefExoticComponent<NavItemProps & react.RefA
1344
1421
  interface NavSectionProps extends HTMLAttributes<HTMLDivElement> {
1345
1422
  /** Eyebrow heading. Rendered uppercase, mono, dim. */
1346
1423
  label: ReactNode;
1424
+ /** Optional leading glyph or icon node next to the eyebrow. */
1425
+ icon?: ReactNode;
1347
1426
  /** Optional trailing element next to the heading (e.g., a `+` add affordance). */
1348
1427
  action?: ReactNode;
1428
+ /**
1429
+ * When true, the eyebrow becomes a button that toggles the body. The body
1430
+ * is hidden when closed. Default `false` — the eyebrow stays static.
1431
+ */
1432
+ collapsible?: boolean;
1433
+ /** Uncontrolled initial open state. Default `true`. Ignored when `open` is provided. */
1434
+ defaultOpen?: boolean;
1435
+ /** Controlled open state. */
1436
+ open?: boolean;
1437
+ /** Fires when the open state changes. */
1438
+ onOpenChange?: (open: boolean) => void;
1439
+ /**
1440
+ * Pixel indent applied to the body. Useful when this section nests other
1441
+ * sections — the indent visually anchors children to the eyebrow above.
1442
+ * A subtle left rail is drawn alongside the indent. Default `0`.
1443
+ */
1444
+ indent?: number;
1349
1445
  }
1350
1446
  declare const NavSection: react.ForwardRefExoticComponent<NavSectionProps & react.RefAttributes<HTMLDivElement>>;
1351
1447
 
@@ -1513,4 +1609,4 @@ interface TreeProps extends Omit<HTMLAttributes<HTMLUListElement>, 'onSelect'> {
1513
1609
  }
1514
1610
  declare const Tree: react.ForwardRefExoticComponent<TreeProps & react.RefAttributes<HTMLUListElement>>;
1515
1611
 
1516
- export { Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, type AlertDialogProps, AlertDialogRoot, AlertDialogTrigger, type AlertProps, type AlertTone, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, type BannerTone, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, type CalendarProps, Card, CardLink, type CardLinkProps, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipProps, Combobox, type ComboboxOption, type ComboboxProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, ContextMenu, ContextMenuContent, ContextMenuItem, type ContextMenuItemProps, ContextMenuPortal, ContextMenuRoot, ContextMenuSeparator, ContextMenuTrigger, Crumb, type CrumbProps, DataTable, type DataTableColumn, type DataTableProps, type DataTableSort, DatePicker, type DatePickerProps, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogOverlay, DialogPortal, type DialogProps, DialogRoot, DialogTrigger, Dots, type DotsProps, Drawer, type DrawerProps, type DrawerSide, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRoot, DropdownMenuTrigger, EmptyState, type EmptyStateProps, FAB, type FABProps, Field, type FieldProps, FileChip, type FileChipProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, Input, type InputProps, Kbd, type KbdProps, MenuCheckboxItem, MenuItem, type MenuItemProps, MenuSeparator, Menubar, MenubarContent, MenubarItem, type MenubarItemProps, MenubarMenu, MenubarSeparator, MenubarTrigger, NavItem, type NavItemProps, NavSection, type NavSectionProps, type NormalizedOption, OTP, type OTPHandle, type OTPProps, Pagination, type PaginationProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, Progress, type ProgressProps, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, SearchInput, type SearchInputProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectTrigger, SelectValue, Sheet, type SheetProps, Sidebar, type SidebarProps, Skeleton, SkeletonGroup, type SkeletonGroupProps, type SkeletonProps, Slider, type SliderProps, Sparkline, type SparklineProps, Spinner, type SpinnerProps, SplitButton, type SplitButtonProps, StatCard, type StatCardProps, type StatTrend, StatusDot, type StatusDotProps, type StatusState, type StepState, Stepper, type StepperProps, type StepperStep, Switch, type SwitchProps, Tab, type TabProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsVariantProps, Tag, type TagProps, Textarea, type TextareaProps, type Theme, Timeline, type TimelineEvent, type TimelineEventTone, TimelineItem, type TimelineItemProps, type TimelineProps, ToastCard, type ToastInput, ToastProvider, type ToastVariant, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, Topbar, type TopbarProps, Tree, type TreeItem, type TreeProps, type UseControllableStateProps, type UseKeyboardListOptions, type UseKeyboardListResult, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, iconButtonStyles, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };
1612
+ export { Alert, AlertDialog, AlertDialogAction, AlertDialogCancel, type AlertDialogProps, AlertDialogRoot, AlertDialogTrigger, type AlertProps, type AlertTone, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, type AvatarSize, type AvatarStatus, Badge, type BadgeProps, Banner, type BannerProps, type BannerTone, Breadcrumbs, type BreadcrumbsProps, Button, ButtonGroup, type ButtonGroupProps, type ButtonProps, Calendar, type CalendarProps, Card, CardLink, type CardLinkProps, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipProps, Combobox, type ComboboxOption, type ComboboxProps, CommandPalette, type CommandPaletteGroup, type CommandPaletteItem, type CommandPaletteProps, ContextMenu, ContextMenuContent, ContextMenuItem, type ContextMenuItemProps, ContextMenuPortal, ContextMenuRoot, ContextMenuSeparator, ContextMenuTrigger, Crumb, type CrumbProps, DataTable, type DataTableColumn, type DataTableProps, type DataTableSort, DatePicker, type DatePickerProps, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogOverlay, DialogPortal, type DialogProps, DialogRoot, DialogTrigger, Dots, type DotsProps, Drawer, type DrawerProps, type DrawerSide, DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRoot, DropdownMenuTrigger, Dropzone, type DropzoneProps, EmptyState, type EmptyStateProps, FAB, type FABProps, Field, type FieldProps, FileChip, type FileChipProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, Input, type InputProps, Kbd, type KbdProps, MenuCheckboxItem, MenuItem, type MenuItemProps, MenuSeparator, Menubar, MenubarContent, MenubarItem, type MenubarItemProps, MenubarMenu, MenubarSeparator, MenubarTrigger, NavBar, type NavBarItem, type NavBarOrientation, type NavBarProps, NavItem, type NavItemProps, NavSection, type NavSectionProps, type NormalizedOption, OTP, type OTPHandle, type OTPProps, Pagination, type PaginationProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, Progress, type ProgressProps, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, SearchInput, type SearchInputProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectTrigger, SelectValue, Sheet, type SheetProps, Sidebar, type SidebarProps, Skeleton, SkeletonGroup, type SkeletonGroupProps, type SkeletonProps, Slider, type SliderProps, Sparkline, type SparklineProps, Spinner, type SpinnerProps, SplitButton, type SplitButtonProps, StatCard, type StatCardProps, type StatTrend, StatusDot, type StatusDotProps, type StatusState, type StepState, Stepper, type StepperProps, type StepperStep, Switch, type SwitchProps, Tab, type TabProps, Tabs, TabsContent, TabsList, type TabsProps, type TabsVariantProps, Tag, type TagProps, Textarea, type TextareaProps, type Theme, Timeline, type TimelineEvent, type TimelineEventTone, TimelineItem, type TimelineItemProps, type TimelineProps, ToastCard, type ToastInput, ToastProvider, type ToastVariant, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, Topbar, type TopbarProps, Tree, type TreeItem, type TreeProps, type UseControllableStateProps, type UseKeyboardListOptions, type UseKeyboardListResult, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, iconButtonStyles, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };