@ship-it-ui/ui 0.0.5 → 0.0.7

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
@@ -291,6 +291,55 @@ interface FieldProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
291
291
  */
292
292
  declare function Field({ label, hint, error, required, className, children, ...props }: FieldProps): react_jsx_runtime.JSX.Element;
293
293
 
294
+ /**
295
+ * Display-to-input rename primitive. Renders `value` as a static element until
296
+ * activated (default: double-click or Enter on the focused display), at which
297
+ * point it swaps to a focused `<input>` with the text pre-selected. Enter
298
+ * commits, Escape cancels, blur commits when `commitOnBlur` (default `true`).
299
+ *
300
+ * Reuses {@link useControllableState} so consumers can mirror the editing
301
+ * state externally (useful when the parent wants to open the editor
302
+ * programmatically — e.g., right-click → Rename).
303
+ */
304
+ declare const displayStyles: (props?: ({
305
+ size?: "sm" | "md" | "lg" | null | undefined;
306
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
307
+ type AsElement = 'span' | 'div' | 'h1' | 'h2' | 'h3';
308
+ type Activation = 'dblclick' | 'click';
309
+ interface InlineEditProps extends Omit<HTMLAttributes<HTMLElement>, 'onChange' | 'children' | 'role'>, VariantProps<typeof displayStyles> {
310
+ /** Current label value. */
311
+ value: string;
312
+ /** Fired with the committed value. */
313
+ onValueChange: (next: string) => void;
314
+ /** Display element. Default 'span'. Use 'h1'-'h3' for headings. */
315
+ as?: AsElement;
316
+ /** Activation gesture besides the always-on Enter-on-focus. Default 'dblclick'. */
317
+ activate?: Activation;
318
+ /** Commit (vs cancel) on blur. Default `true`. */
319
+ commitOnBlur?: boolean;
320
+ /** Returns an error message on rejection, or `null` on success. */
321
+ validate?: (next: string) => string | null;
322
+ /** Shown when `value` is empty in display mode. */
323
+ placeholder?: string;
324
+ /** Disables activation and applies a muted style. */
325
+ disabled?: boolean;
326
+ /** Controlled editing flag. */
327
+ editing?: boolean;
328
+ /** Fired when the editing flag changes (uncontrolled mode or external open). */
329
+ onEditingChange?: (next: boolean) => void;
330
+ /** Extra className on the `<input>` in edit mode. */
331
+ inputClassName?: string;
332
+ /** Accessible label for the display element. Default `Edit {value}`. */
333
+ 'aria-label'?: string;
334
+ }
335
+ interface InlineEditHandle {
336
+ /** Programmatically enter edit mode and focus the input. */
337
+ edit: () => void;
338
+ /** Cancel any pending edit and return to display mode. */
339
+ cancel: () => void;
340
+ }
341
+ declare const InlineEdit: react.ForwardRefExoticComponent<InlineEditProps & react.RefAttributes<InlineEditHandle>>;
342
+
294
343
  declare const inputWrapperStyles: (props?: ({
295
344
  size?: "sm" | "md" | "lg" | null | undefined;
296
345
  tone?: "default" | "err" | null | undefined;
@@ -919,16 +968,27 @@ declare const ToastCard: react.ForwardRefExoticComponent<ToastCardProps & react.
919
968
  /**
920
969
  * Tooltip — small, transient label that appears on hover/focus.
921
970
  *
922
- * Wrap your app once in `<TooltipProvider>` (Radix's provider) for shared delay
923
- * configuration; a single tooltip can be used standalone via `<Tooltip>` shorthand.
971
+ * Two surfaces:
972
+ *
973
+ * - `<SimpleTooltip content="…">` is the one-liner. Pass a `content` prop and a
974
+ * single trigger child; it bundles its own `TooltipProvider`. Use this for
975
+ * ad-hoc tooltips on icon buttons and standalone widgets.
976
+ * - `<Tooltip>` is the Radix root for composition. Pair it with
977
+ * `<TooltipTrigger>` and `<TooltipContent>` and wrap your subtree in a
978
+ * shared `<TooltipProvider>` when you have many tooltips that should share
979
+ * delay configuration (lists, toolbars, command palettes).
980
+ *
981
+ * Naming follows the rest of this library (`Dialog`, `Popover`, …): the root
982
+ * component takes the unqualified name; convenience helpers carry a
983
+ * qualifying prefix.
924
984
  */
925
985
  declare const TooltipProvider: react.FC<RadixTooltip.TooltipProviderProps>;
926
- declare const TooltipRoot: react.FC<RadixTooltip.TooltipProps>;
986
+ declare const Tooltip: react.FC<RadixTooltip.TooltipProps>;
927
987
  declare const TooltipTrigger: react.ForwardRefExoticComponent<RadixTooltip.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
928
988
  declare const TooltipPortal: react.FC<RadixTooltip.TooltipPortalProps>;
929
989
  declare const TooltipArrow: react.ForwardRefExoticComponent<RadixTooltip.TooltipArrowProps & react.RefAttributes<SVGSVGElement>>;
930
990
  declare const TooltipContent: react.ForwardRefExoticComponent<RadixTooltip.TooltipContentProps & react.RefAttributes<HTMLDivElement>>;
931
- interface TooltipProps {
991
+ interface SimpleTooltipProps {
932
992
  /** Tooltip text/content. */
933
993
  content: ReactNode;
934
994
  /** Trigger element — usually a Button or IconButton. */
@@ -939,10 +999,11 @@ interface TooltipProps {
939
999
  delayDuration?: number;
940
1000
  }
941
1001
  /**
942
- * One-liner tooltip wrapper. Wraps a trigger child with the full Radix stack.
943
- * For composition (multiple triggers in a list), use the lower-level exports.
1002
+ * One-liner tooltip bundles its own `TooltipProvider`. For composition
1003
+ * (multiple triggers in a list, shared delay config), use the lower-level
1004
+ * `Tooltip` + `TooltipTrigger` + `TooltipContent` primitives.
944
1005
  */
945
- declare function Tooltip({ content, children, side, delayDuration }: TooltipProps): react_jsx_runtime.JSX.Element;
1006
+ declare function SimpleTooltip({ content, children, side, delayDuration, }: SimpleTooltipProps): react_jsx_runtime.JSX.Element;
946
1007
 
947
1008
  /**
948
1009
  * Alert — inline messaging block. Four tones (accent / ok / warn / err) with a
@@ -2017,4 +2078,4 @@ interface WizardDialogProps {
2017
2078
  }
2018
2079
  declare const WizardDialog: react.ForwardRefExoticComponent<WizardDialogProps & react.RefAttributes<HTMLDivElement>>;
2019
2080
 
2020
- export { type ActivityActor, type ActivityEvent, ActivityTimeline, type ActivityTimelineProps, 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, type FilterFacet, type FilterFacetOption, FilterPanel, type FilterPanelProps, type FilterPanelValue, HealthScore, type HealthScoreBreakdownEntry, type HealthScoreProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, Input, type InputProps, Kbd, type KbdProps, LargeTitle, type LargeTitleProps, 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, OnboardingChecklist, type OnboardingChecklistProps, type OnboardingItem, type OnboardingItemStatus, Pagination, type PaginationProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, Progress, type ProgressProps, PullToRefresh, type PullToRefreshProps, type PullToRefreshState, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, ScrollArea, type ScrollAreaProps, type ScrollAreaType, 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, TabBar, type TabBarItem, type TabBarProps, 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, type WizardContext, WizardDialog, type WizardDialogProps, type WizardStep, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, formatRelative, iconButtonStyles, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };
2081
+ export { type ActivityActor, type ActivityEvent, ActivityTimeline, type ActivityTimelineProps, 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, type FilterFacet, type FilterFacetOption, FilterPanel, type FilterPanelProps, type FilterPanelValue, HealthScore, type HealthScoreBreakdownEntry, type HealthScoreProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, InlineEdit, type InlineEditHandle, type InlineEditProps, Input, type InputProps, Kbd, type KbdProps, LargeTitle, type LargeTitleProps, 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, OnboardingChecklist, type OnboardingChecklistProps, type OnboardingItem, type OnboardingItemStatus, Pagination, type PaginationProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, Progress, type ProgressProps, PullToRefresh, type PullToRefreshProps, type PullToRefreshState, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, ScrollArea, type ScrollAreaProps, type ScrollAreaType, SearchInput, type SearchInputProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectTrigger, SelectValue, Sheet, type SheetProps, Sidebar, type SidebarProps, SimpleTooltip, type SimpleTooltipProps, 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, TabBar, type TabBarItem, type TabBarProps, 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, TooltipProvider, TooltipTrigger, Topbar, type TopbarProps, Tree, type TreeItem, type TreeProps, type UseControllableStateProps, type UseKeyboardListOptions, type UseKeyboardListResult, type WizardContext, WizardDialog, type WizardDialogProps, type WizardStep, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, formatRelative, iconButtonStyles, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };
package/dist/index.d.ts CHANGED
@@ -291,6 +291,55 @@ interface FieldProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
291
291
  */
292
292
  declare function Field({ label, hint, error, required, className, children, ...props }: FieldProps): react_jsx_runtime.JSX.Element;
293
293
 
294
+ /**
295
+ * Display-to-input rename primitive. Renders `value` as a static element until
296
+ * activated (default: double-click or Enter on the focused display), at which
297
+ * point it swaps to a focused `<input>` with the text pre-selected. Enter
298
+ * commits, Escape cancels, blur commits when `commitOnBlur` (default `true`).
299
+ *
300
+ * Reuses {@link useControllableState} so consumers can mirror the editing
301
+ * state externally (useful when the parent wants to open the editor
302
+ * programmatically — e.g., right-click → Rename).
303
+ */
304
+ declare const displayStyles: (props?: ({
305
+ size?: "sm" | "md" | "lg" | null | undefined;
306
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
307
+ type AsElement = 'span' | 'div' | 'h1' | 'h2' | 'h3';
308
+ type Activation = 'dblclick' | 'click';
309
+ interface InlineEditProps extends Omit<HTMLAttributes<HTMLElement>, 'onChange' | 'children' | 'role'>, VariantProps<typeof displayStyles> {
310
+ /** Current label value. */
311
+ value: string;
312
+ /** Fired with the committed value. */
313
+ onValueChange: (next: string) => void;
314
+ /** Display element. Default 'span'. Use 'h1'-'h3' for headings. */
315
+ as?: AsElement;
316
+ /** Activation gesture besides the always-on Enter-on-focus. Default 'dblclick'. */
317
+ activate?: Activation;
318
+ /** Commit (vs cancel) on blur. Default `true`. */
319
+ commitOnBlur?: boolean;
320
+ /** Returns an error message on rejection, or `null` on success. */
321
+ validate?: (next: string) => string | null;
322
+ /** Shown when `value` is empty in display mode. */
323
+ placeholder?: string;
324
+ /** Disables activation and applies a muted style. */
325
+ disabled?: boolean;
326
+ /** Controlled editing flag. */
327
+ editing?: boolean;
328
+ /** Fired when the editing flag changes (uncontrolled mode or external open). */
329
+ onEditingChange?: (next: boolean) => void;
330
+ /** Extra className on the `<input>` in edit mode. */
331
+ inputClassName?: string;
332
+ /** Accessible label for the display element. Default `Edit {value}`. */
333
+ 'aria-label'?: string;
334
+ }
335
+ interface InlineEditHandle {
336
+ /** Programmatically enter edit mode and focus the input. */
337
+ edit: () => void;
338
+ /** Cancel any pending edit and return to display mode. */
339
+ cancel: () => void;
340
+ }
341
+ declare const InlineEdit: react.ForwardRefExoticComponent<InlineEditProps & react.RefAttributes<InlineEditHandle>>;
342
+
294
343
  declare const inputWrapperStyles: (props?: ({
295
344
  size?: "sm" | "md" | "lg" | null | undefined;
296
345
  tone?: "default" | "err" | null | undefined;
@@ -919,16 +968,27 @@ declare const ToastCard: react.ForwardRefExoticComponent<ToastCardProps & react.
919
968
  /**
920
969
  * Tooltip — small, transient label that appears on hover/focus.
921
970
  *
922
- * Wrap your app once in `<TooltipProvider>` (Radix's provider) for shared delay
923
- * configuration; a single tooltip can be used standalone via `<Tooltip>` shorthand.
971
+ * Two surfaces:
972
+ *
973
+ * - `<SimpleTooltip content="…">` is the one-liner. Pass a `content` prop and a
974
+ * single trigger child; it bundles its own `TooltipProvider`. Use this for
975
+ * ad-hoc tooltips on icon buttons and standalone widgets.
976
+ * - `<Tooltip>` is the Radix root for composition. Pair it with
977
+ * `<TooltipTrigger>` and `<TooltipContent>` and wrap your subtree in a
978
+ * shared `<TooltipProvider>` when you have many tooltips that should share
979
+ * delay configuration (lists, toolbars, command palettes).
980
+ *
981
+ * Naming follows the rest of this library (`Dialog`, `Popover`, …): the root
982
+ * component takes the unqualified name; convenience helpers carry a
983
+ * qualifying prefix.
924
984
  */
925
985
  declare const TooltipProvider: react.FC<RadixTooltip.TooltipProviderProps>;
926
- declare const TooltipRoot: react.FC<RadixTooltip.TooltipProps>;
986
+ declare const Tooltip: react.FC<RadixTooltip.TooltipProps>;
927
987
  declare const TooltipTrigger: react.ForwardRefExoticComponent<RadixTooltip.TooltipTriggerProps & react.RefAttributes<HTMLButtonElement>>;
928
988
  declare const TooltipPortal: react.FC<RadixTooltip.TooltipPortalProps>;
929
989
  declare const TooltipArrow: react.ForwardRefExoticComponent<RadixTooltip.TooltipArrowProps & react.RefAttributes<SVGSVGElement>>;
930
990
  declare const TooltipContent: react.ForwardRefExoticComponent<RadixTooltip.TooltipContentProps & react.RefAttributes<HTMLDivElement>>;
931
- interface TooltipProps {
991
+ interface SimpleTooltipProps {
932
992
  /** Tooltip text/content. */
933
993
  content: ReactNode;
934
994
  /** Trigger element — usually a Button or IconButton. */
@@ -939,10 +999,11 @@ interface TooltipProps {
939
999
  delayDuration?: number;
940
1000
  }
941
1001
  /**
942
- * One-liner tooltip wrapper. Wraps a trigger child with the full Radix stack.
943
- * For composition (multiple triggers in a list), use the lower-level exports.
1002
+ * One-liner tooltip bundles its own `TooltipProvider`. For composition
1003
+ * (multiple triggers in a list, shared delay config), use the lower-level
1004
+ * `Tooltip` + `TooltipTrigger` + `TooltipContent` primitives.
944
1005
  */
945
- declare function Tooltip({ content, children, side, delayDuration }: TooltipProps): react_jsx_runtime.JSX.Element;
1006
+ declare function SimpleTooltip({ content, children, side, delayDuration, }: SimpleTooltipProps): react_jsx_runtime.JSX.Element;
946
1007
 
947
1008
  /**
948
1009
  * Alert — inline messaging block. Four tones (accent / ok / warn / err) with a
@@ -2017,4 +2078,4 @@ interface WizardDialogProps {
2017
2078
  }
2018
2079
  declare const WizardDialog: react.ForwardRefExoticComponent<WizardDialogProps & react.RefAttributes<HTMLDivElement>>;
2019
2080
 
2020
- export { type ActivityActor, type ActivityEvent, ActivityTimeline, type ActivityTimelineProps, 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, type FilterFacet, type FilterFacetOption, FilterPanel, type FilterPanelProps, type FilterPanelValue, HealthScore, type HealthScoreBreakdownEntry, type HealthScoreProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, Input, type InputProps, Kbd, type KbdProps, LargeTitle, type LargeTitleProps, 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, OnboardingChecklist, type OnboardingChecklistProps, type OnboardingItem, type OnboardingItemStatus, Pagination, type PaginationProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, Progress, type ProgressProps, PullToRefresh, type PullToRefreshProps, type PullToRefreshState, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, ScrollArea, type ScrollAreaProps, type ScrollAreaType, 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, TabBar, type TabBarItem, type TabBarProps, 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, type WizardContext, WizardDialog, type WizardDialogProps, type WizardStep, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, formatRelative, iconButtonStyles, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };
2081
+ export { type ActivityActor, type ActivityEvent, ActivityTimeline, type ActivityTimelineProps, 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, type FilterFacet, type FilterFacetOption, FilterPanel, type FilterPanelProps, type FilterPanelValue, HealthScore, type HealthScoreBreakdownEntry, type HealthScoreProps, HoverCard, HoverCardContent, HoverCardPortal, type HoverCardProps, HoverCardRoot, HoverCardTrigger, IconButton, type IconButtonProps, InlineEdit, type InlineEditHandle, type InlineEditProps, Input, type InputProps, Kbd, type KbdProps, LargeTitle, type LargeTitleProps, 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, OnboardingChecklist, type OnboardingChecklistProps, type OnboardingItem, type OnboardingItemStatus, Pagination, type PaginationProps, Popover, PopoverAnchor, PopoverArrow, PopoverClose, PopoverContent, PopoverPortal, PopoverRoot, PopoverTrigger, Progress, type ProgressProps, PullToRefresh, type PullToRefreshProps, type PullToRefreshState, RadialProgress, type RadialProgressProps, type RadialTone, Radio, RadioGroup, type RadioGroupProps, type RadioProps, ScrollArea, type ScrollAreaProps, type ScrollAreaType, SearchInput, type SearchInputProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectTrigger, SelectValue, Sheet, type SheetProps, Sidebar, type SidebarProps, SimpleTooltip, type SimpleTooltipProps, 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, TabBar, type TabBarItem, type TabBarProps, 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, TooltipProvider, TooltipTrigger, Topbar, type TopbarProps, Tree, type TreeItem, type TreeProps, type UseControllableStateProps, type UseKeyboardListOptions, type UseKeyboardListResult, type WizardContext, WizardDialog, type WizardDialogProps, type WizardStep, badgeStyles, buttonStyles, cardStyles, cn, filterCommandItems, formatRelative, iconButtonStyles, useControllableState, useDisclosure, useEscape, useIsomorphicLayoutEffect, useKeyboardList, useOutsideClick, useTheme, useToast };