@cascivo/react 0.2.0 → 0.3.0

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
@@ -1,15 +1,22 @@
1
1
  import { ErrorBoundary, FocusScope, Portal, RovingOrientation, Signal, SuspenseBoundary } from "@cascivo/core";
2
- import { AnchorHTMLAttributes, ButtonHTMLAttributes, FormHTMLAttributes, HTMLAttributes, InputHTMLAttributes, LabelHTMLAttributes, LiHTMLAttributes, MouseEvent, ReactElement, ReactNode, SelectHTMLAttributes, TextareaHTMLAttributes } from "react";
2
+ import { AnchorHTMLAttributes, ButtonHTMLAttributes, FormHTMLAttributes, HTMLAttributes, ImgHTMLAttributes, InputHTMLAttributes, LabelHTMLAttributes, LiHTMLAttributes, MouseEvent, ReactElement, ReactNode, RefObject, SelectHTMLAttributes, TextareaHTMLAttributes, TimeHTMLAttributes } from "react";
3
3
 
4
4
  interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
5
5
  variant?: 'primary' | 'secondary' | 'ghost' | 'destructive';
6
6
  size?: 'sm' | 'md' | 'lg';
7
7
  loading?: boolean;
8
+ /**
9
+ * Render the single child element instead of a native `<button>` so the button
10
+ * styling lands on, e.g., a real `<a href>` (preserves middle-click / open-in-new-tab).
11
+ * The child owns its own content; the loading spinner is not rendered in this mode.
12
+ */
13
+ asChild?: boolean;
8
14
  }
9
15
  declare function Button({
10
16
  variant,
11
17
  size,
12
18
  loading,
19
+ asChild,
13
20
  className,
14
21
  disabled,
15
22
  children,
@@ -86,6 +93,8 @@ interface ModalProps {
86
93
  children?: ReactNode;
87
94
  className?: string;
88
95
  size?: 'sm' | 'md' | 'lg';
96
+ /** Allow dragging the dialog by its header (opt-in; CSS translate, no animation library). */
97
+ draggable?: boolean;
89
98
  }
90
99
  declare function Modal({
91
100
  open,
@@ -94,7 +103,8 @@ declare function Modal({
94
103
  description,
95
104
  children,
96
105
  className,
97
- size
106
+ size,
107
+ draggable
98
108
  }: ModalProps): import("react").JSX.Element;
99
109
  interface SpinnerProps extends HTMLAttributes<HTMLSpanElement> {
100
110
  size?: 'sm' | 'md' | 'lg';
@@ -154,6 +164,82 @@ declare function Avatar({
154
164
  className,
155
165
  ...props
156
166
  }: AvatarProps): import("react").JSX.Element;
167
+ interface AvatarGroupLabels {
168
+ /** Accessible label for the +N overflow chip. */
169
+ more?: (count: number) => string;
170
+ }
171
+ interface AvatarGroupProps extends HTMLAttributes<HTMLDivElement> {
172
+ /** Cap the number of visible avatars; the rest collapse into a +N chip. */
173
+ max?: number;
174
+ /** Override the total count used for the +N chip (when more exist than rendered). */
175
+ total?: number;
176
+ /** Overlap amount. */
177
+ spacing?: 'sm' | 'md' | 'lg';
178
+ /** Wrap into a grid instead of an overlapping row. */
179
+ isGrid?: boolean;
180
+ labels?: AvatarGroupLabels;
181
+ /** The <Avatar> children. */
182
+ children?: ReactNode;
183
+ }
184
+ /** Overlapping stack of avatars with a `max` cap and an i18n-labelled +N overflow chip. */
185
+ declare function AvatarGroup({
186
+ max,
187
+ total,
188
+ spacing,
189
+ isGrid,
190
+ labels,
191
+ className,
192
+ children,
193
+ ...rest
194
+ }: AvatarGroupProps): import("react").JSX.Element;
195
+ interface UserProps extends HTMLAttributes<HTMLDivElement> {
196
+ /** Primary identity label (name). */
197
+ name: ReactNode;
198
+ /** Secondary line (email, role, …). */
199
+ description?: ReactNode;
200
+ /** Forwarded to the composed <Avatar>. */
201
+ avatarProps?: AvatarProps;
202
+ /** Optional trailing action slot (e.g. a menu button). */
203
+ children?: ReactNode;
204
+ }
205
+ /** Identity composite: an Avatar with a name + optional description and trailing action. */
206
+ declare function User({
207
+ name,
208
+ description,
209
+ avatarProps,
210
+ className,
211
+ children,
212
+ ...rest
213
+ }: UserProps): import("react").JSX.Element;
214
+ interface ImageProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, 'placeholder'> {
215
+ src?: string;
216
+ alt?: string;
217
+ /** Image shown if `src` fails to load. Without it, a neutral fallback box renders. */
218
+ fallbackSrc?: string;
219
+ width?: string | number;
220
+ height?: string | number;
221
+ radius?: 'none' | 'sm' | 'md' | 'lg' | 'full';
222
+ /** Hover-zoom the image (reduced-motion-safe). */
223
+ zoom?: boolean;
224
+ /** Render a bare <img> with no wrapper, placeholder, or zoom (HeroUI parity). */
225
+ removeWrapper?: boolean;
226
+ /** Show a blurred placeholder while loading. */
227
+ isBlurred?: boolean;
228
+ }
229
+ declare function Image({
230
+ src,
231
+ alt,
232
+ fallbackSrc,
233
+ width,
234
+ height,
235
+ radius,
236
+ zoom,
237
+ removeWrapper,
238
+ isBlurred,
239
+ className,
240
+ style,
241
+ ...rest
242
+ }: ImageProps): import("react").JSX.Element;
157
243
  interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
158
244
  label?: string;
159
245
  hint?: string;
@@ -418,6 +504,45 @@ declare function Breadcrumb({
418
504
  className,
419
505
  ariaLabel
420
506
  }: BreadcrumbProps): import("react").JSX.Element;
507
+ interface TocItem {
508
+ /** id of the heading/section this entry links to (without the leading `#`) */
509
+ id: string;
510
+ label: string;
511
+ /** heading level (2 = h2, 3 = h3 …); drives indentation. Defaults to 2. */
512
+ level?: number;
513
+ }
514
+ interface TocProps {
515
+ items: TocItem[];
516
+ /**
517
+ * Controlled active item id. When set, the component reflects this value and
518
+ * does not run its own scroll-spy. Leave undefined for built-in scroll-spy.
519
+ */
520
+ activeId?: string;
521
+ onActiveChange?: (id: string) => void;
522
+ /** Override the built-in nav landmark label. */
523
+ labels?: {
524
+ nav?: string;
525
+ };
526
+ className?: string;
527
+ }
528
+ declare function Toc({
529
+ items,
530
+ activeId,
531
+ onActiveChange,
532
+ labels,
533
+ className
534
+ }: TocProps): import("react").JSX.Element;
535
+ interface UseTocFromRegionOptions {
536
+ /** CSS selector for the headings to collect. Defaults to `h2, h3, h4`. */
537
+ selector?: string;
538
+ }
539
+ /**
540
+ * Opt-in convenience: derive a `TocItem[]` signal from the headings inside a
541
+ * container. Headings must have an `id`. Feed the result to `<Toc items={…} />`.
542
+ * The controlled `items` API on `Toc` remains the primary, testable surface;
543
+ * this helper only builds the list.
544
+ */
545
+ declare function useTocFromRegion(ref: RefObject<HTMLElement | null>, options?: UseTocFromRegionOptions): Signal<TocItem[]>;
421
546
  interface HeaderLink {
422
547
  label: string;
423
548
  href: string;
@@ -1124,7 +1249,8 @@ declare function AlertDialog({
1124
1249
  interface SheetProps {
1125
1250
  open: boolean;
1126
1251
  onClose: () => void;
1127
- title: string;
1252
+ /** Optional heading. Accepts rich nodes; when present it labels the dialog via `aria-labelledby`. */
1253
+ title?: ReactNode;
1128
1254
  children: ReactNode;
1129
1255
  side?: 'start' | 'end' | 'top' | 'bottom';
1130
1256
  }
@@ -1151,6 +1277,34 @@ declare function ContextMenuItem({
1151
1277
  onSelect,
1152
1278
  disabled
1153
1279
  }: ContextMenuItemProps): import("react").JSX.Element;
1280
+ interface ComparisonProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> {
1281
+ /** The base layer, fully visible underneath. */
1282
+ after: ReactNode;
1283
+ /** The top layer, revealed from the start edge up to `position`. */
1284
+ before: ReactNode;
1285
+ /** Divider position as a percentage 0–100. Controlled when provided. */
1286
+ position?: number;
1287
+ /** Initial divider position for uncontrolled use. Default 50. */
1288
+ defaultPosition?: number;
1289
+ onPositionChange?: (position: number) => void;
1290
+ orientation?: 'horizontal' | 'vertical';
1291
+ /** Percentage the Arrow keys move the divider. Default 5. */
1292
+ keyboardStep?: number;
1293
+ /** Accessible label for the divider slider. */
1294
+ label?: string;
1295
+ }
1296
+ declare function Comparison({
1297
+ after,
1298
+ before,
1299
+ position,
1300
+ defaultPosition,
1301
+ onPositionChange,
1302
+ orientation,
1303
+ keyboardStep,
1304
+ label,
1305
+ className,
1306
+ ...props
1307
+ }: ComparisonProps): import("react").JSX.Element;
1154
1308
  interface HoverCardProps {
1155
1309
  children: ReactNode;
1156
1310
  openDelay?: number;
@@ -1666,6 +1820,61 @@ declare function Prose({
1666
1820
  children,
1667
1821
  ...props
1668
1822
  }: ProseProps): import("react").JSX.Element;
1823
+ /**
1824
+ * Minimal QR Code encoder (byte mode, versions 1–40, EC levels L/M/Q/H).
1825
+ *
1826
+ * Vendored as owned source to keep `@cascivo` free of runtime dependencies.
1827
+ * Algorithm and lookup tables adapted from Project Nayuki's "QR Code generator
1828
+ * library" (MIT License, https://www.nayuki.io/page/qr-code-generator-library),
1829
+ * trimmed to byte-mode segments with automatic version and mask selection.
1830
+ */
1831
+ type ErrorCorrection = 'L' | 'M' | 'Q' | 'H';
1832
+ interface QrCodeProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
1833
+ /** The text or URL to encode. */
1834
+ value: string;
1835
+ /** Rendered size in pixels (width and height). Default 128. */
1836
+ size?: number;
1837
+ /** Error-correction level. Higher tolerates more damage but holds less data. Default 'M'. */
1838
+ errorCorrection?: ErrorCorrection;
1839
+ /** CSS length rounding the code's corners (applied to the container). */
1840
+ radius?: string;
1841
+ /** Module color. Default `currentColor` so the code inherits text color. */
1842
+ fill?: string;
1843
+ /** Background color behind the modules. Default `transparent`. */
1844
+ background?: string;
1845
+ /** Accessible label. Defaults to the i18n built-in "QR code". */
1846
+ label?: string;
1847
+ }
1848
+ declare function QrCode({
1849
+ value,
1850
+ size,
1851
+ errorCorrection,
1852
+ radius,
1853
+ fill,
1854
+ background,
1855
+ label,
1856
+ className,
1857
+ style,
1858
+ ...props
1859
+ }: QrCodeProps): import("react").JSX.Element | null;
1860
+ interface RelativeTimeProps extends Omit<TimeHTMLAttributes<HTMLTimeElement>, 'dateTime'> {
1861
+ /** The instant to describe relative to now. */
1862
+ date: Date | number | string;
1863
+ /** Auto-update as time passes. Default true. */
1864
+ sync?: boolean;
1865
+ /** Override "now" (ms since epoch). Mainly for deterministic tests; disables the interval. */
1866
+ now?: number;
1867
+ /** Passed through to Intl.RelativeTimeFormat (e.g. `{ numeric: 'auto' }`). */
1868
+ format?: Intl.RelativeTimeFormatOptions;
1869
+ }
1870
+ declare function RelativeTime({
1871
+ date,
1872
+ sync,
1873
+ now: nowProp,
1874
+ format,
1875
+ className,
1876
+ ...props
1877
+ }: RelativeTimeProps): import("react").JSX.Element;
1669
1878
  interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
1670
1879
  /** Renders into the child element (Slot composition) instead of a native `<label>`. */
1671
1880
  asChild?: boolean;
@@ -1830,12 +2039,15 @@ interface ScrollAreaProps extends HTMLAttributes<HTMLDivElement> {
1830
2039
  width?: string;
1831
2040
  /** Which axes may scroll. */
1832
2041
  orientation?: 'vertical' | 'horizontal' | 'both';
2042
+ /** Edge affordance: box-shadow (default), a mask-image fade (HeroUI ScrollShadow), or none. */
2043
+ edges?: 'shadow' | 'mask' | 'none';
1833
2044
  children?: ReactNode;
1834
2045
  }
1835
2046
  declare function ScrollArea({
1836
2047
  height,
1837
2048
  width,
1838
2049
  orientation,
2050
+ edges,
1839
2051
  className,
1840
2052
  style,
1841
2053
  children,
@@ -2334,6 +2546,8 @@ interface DrawerProps {
2334
2546
  close?: string;
2335
2547
  };
2336
2548
  className?: string;
2549
+ /** Allow dragging the header toward its edge to dismiss (opt-in; CSS translate, no animation library). */
2550
+ swipeToDismiss?: boolean;
2337
2551
  }
2338
2552
  /**
2339
2553
  * Edge-anchored panel. Unlike Sheet's gesture-driven sheet, Drawer is a plain dialog surface that
@@ -2351,7 +2565,8 @@ declare function Drawer({
2351
2565
  description,
2352
2566
  children,
2353
2567
  labels,
2354
- className
2568
+ className,
2569
+ swipeToDismiss
2355
2570
  }: DrawerProps): import("react").JSX.Element;
2356
2571
  interface NativeSelectOption {
2357
2572
  value: string;
@@ -2616,4 +2831,4 @@ declare function Swap({
2616
2831
  className,
2617
2832
  ...aria
2618
2833
  }: SwapProps): import("react").JSX.Element;
2619
- export { Accordion, AccordionContent, AccordionItem, AccordionItemProps, AccordionProps, AccordionTrigger, Alert, AlertDialog, AlertDialogLabels, AlertDialogProps, AlertProps, AppShell, AppShellProps, AspectRatio, AspectRatioProps, Avatar, AvatarProps, Badge, BadgeProps, Blockquote, BlockquoteProps, Breadcrumb, BreadcrumbItem, BreadcrumbProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, Calendar, CalendarLabels, CalendarProps, Card, CardContent, CardContentProps, CardFooter, CardFooterProps, CardHeader, CardHeaderProps, CardProps, CardTitle, CardTitleProps, Carousel, CarouselLabels, CarouselProps, ChatBubble, ChatBubbleProps, ChatBubbleSide, Checkbox, CheckboxCard, CheckboxCardProps, CheckboxProps, Code, type CodeLang, CodeProps, CodeSnippet, CodeSnippetProps, Collapsible, CollapsibleProps, ColorPicker, ColorPickerLabels, ColorPickerProps, Column, Combobox, ComboboxLabels, ComboboxOption, ComboboxProps, CommandGroup, CommandItem, CommandMenu, CommandMenuProps, CommandPage, ContainedList, ContainedListItem, ContainedListItemProps, ContainedListProps, ContextMenu, ContextMenuItem, ContextMenuItemProps, ContextMenuProps, CopyButton, CopyButtonProps, DataList, DataListItem, DataListProps, DataTable, DataTableLabels, DataTableProps, DatePicker, DatePickerLabels, DatePickerProps, DateRange, DateRangePicker, DateRangePickerLabels, DateRangePickerProps, DateRangePreset, Dock, DockItem, DockProps, Drawer, DrawerProps, Dropdown, DropdownItem, DropdownProps, Editable, EditableProps, EmptyState, EmptyStateProps, ErrorBoundary, Field, FieldProps, FileUploader, FileUploaderLabels, FileUploaderProps, Filter, FilterOption, FilterProps, FilterVariant, FocusScope, Form, FormConfig, FormProps, FormStore, Header, HeaderLabels, HeaderLink, HeaderPanel, HeaderPanelLabels, HeaderPanelProps, HeaderProps, Heading, HeadingLevel, HeadingProps, HeadingSize, HoverCard, HoverCardContent, HoverCardContentProps, HoverCardProps, HoverCardTrigger, HoverCardTriggerProps, IconButton, IconButtonProps, Indicator, IndicatorPlacement, IndicatorProps, InlineLoading, InlineLoadingProps, InlineLoadingStatus, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, type InputGroupProps, InputProps, Item, ItemActions, ItemActionsProps, ItemContent, ItemContentProps, ItemDescription, ItemDescriptionProps, ItemMedia, ItemMediaProps, ItemProps, ItemTitle, ItemTitleProps, Join, JoinOrientation, JoinProps, Kbd, KbdProps, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Menu, MenuButton, MenuButtonItem, MenuButtonProps, MenuItem, MenuItemProps, MenuProps, MenuSeparator, MenuTrigger, MenuTriggerProps, Menubar, MenubarItem, MenubarMenu, MenubarProps, Modal, ModalProps, MultiSelect, MultiSelectLabels, MultiSelectOption, MultiSelectProps, NativeSelect, NativeSelectOption, NativeSelectProps, NavigationMenu, NavigationMenuItem, NavigationMenuProps, Notification, NotificationProps, NotificationVariant, NumberInput, NumberInputProps, OtpInput, OtpInputProps, OverflowMenu, OverflowMenuItem, OverflowMenuProps, Pagination, PaginationLabels, PaginationProps, PasswordInput, PasswordInputLabels, PasswordInputProps, Popover, PopoverContent, PopoverContentProps, PopoverProps, PopoverTrigger, PopoverTriggerProps, Portal, Progress, ProgressBar, ProgressBarProps, ProgressCircle, ProgressCircleProps, ProgressIndicator, ProgressIndicatorProps, ProgressProps, ProgressSize, ProgressStep, ProgressVariant, Prose, ProseProps, RadialProgress, RadialProgressProps, RadialProgressSize, RadialProgressVariant, Radio, RadioCard, RadioCardGroup, RadioCardGroupProps, RadioCardProps, RadioGroup, RadioGroupProps, RadioProps, RatingGroup, RatingGroupLabels, RatingGroupProps, Resizable, ResizableProps, ScrollArea, ScrollAreaProps, Search, SearchProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, Select, SelectOption, SelectProps, Separator, SeparatorProps, Sheet, SheetProps, ShellHeader, ShellHeaderAction, ShellHeaderBrand, ShellHeaderLabels, ShellHeaderNavItem, ShellHeaderNavLink, ShellHeaderNavMenu, ShellHeaderNavMenuItem, ShellHeaderProps, SideNav, SideNavGroup, SideNavItem, SideNavProps, SideNavSubItem, Skeleton, SkeletonProps, SkipNavLink, SkipNavLinkProps, SkipNavTarget, SkipNavTargetProps, Slider, SliderProps, SortDirection, SortState, Spinner, SpinnerProps, Stack, StackProps, type StandardSchemaV1, Stat, StatProps, Status, StatusProps, Step, StepState, Steps, StepsProps, StructuredList, StructuredListItem, StructuredListProps, SuspenseBoundary, Swap, SwapMode, SwapProps, Switcher, SwitcherEntry, SwitcherLink, SwitcherProps, Tabs, TabsContent, TabsContentProps, TabsList, TabsProps, TabsTrigger, TabsTriggerProps, Tag$1 as Tag, TagProps, TagsInput, TagsInputProps, Text, TextProps, Textarea, TextareaProps, Tile, TileProps, TimePicker, TimePickerProps, Timeline, TimelineItem, TimelineProps, ToastOptions, ToastProvider, ToastVariant, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupProps, ToggleProps, Toggletip, ToggletipPlacement, ToggletipProps, Tooltip, TooltipProps, TreeNode, TreeView, TreeViewProps, UploaderFile, type UsePopoverOptions, type UsePopoverReturn, VisuallyHidden, VisuallyHiddenProps, createForm, dismissAllToasts, fuzzyScore, treeViewMessages, useForm, usePopover, useToast };
2834
+ export { Accordion, AccordionContent, AccordionItem, AccordionItemProps, AccordionProps, AccordionTrigger, Alert, AlertDialog, AlertDialogLabels, AlertDialogProps, AlertProps, AppShell, AppShellProps, AspectRatio, AspectRatioProps, Avatar, AvatarGroup, AvatarGroupLabels, AvatarGroupProps, AvatarProps, Badge, BadgeProps, Blockquote, BlockquoteProps, Breadcrumb, BreadcrumbItem, BreadcrumbProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, Calendar, CalendarLabels, CalendarProps, Card, CardContent, CardContentProps, CardFooter, CardFooterProps, CardHeader, CardHeaderProps, CardProps, CardTitle, CardTitleProps, Carousel, CarouselLabels, CarouselProps, ChatBubble, ChatBubbleProps, ChatBubbleSide, Checkbox, CheckboxCard, CheckboxCardProps, CheckboxProps, Code, type CodeLang, CodeProps, CodeSnippet, CodeSnippetProps, Collapsible, CollapsibleProps, ColorPicker, ColorPickerLabels, ColorPickerProps, Column, Combobox, ComboboxLabels, ComboboxOption, ComboboxProps, CommandGroup, CommandItem, CommandMenu, CommandMenuProps, CommandPage, Comparison, ComparisonProps, ContainedList, ContainedListItem, ContainedListItemProps, ContainedListProps, ContextMenu, ContextMenuItem, ContextMenuItemProps, ContextMenuProps, CopyButton, CopyButtonProps, DataList, DataListItem, DataListProps, DataTable, DataTableLabels, DataTableProps, DatePicker, DatePickerLabels, DatePickerProps, DateRange, DateRangePicker, DateRangePickerLabels, DateRangePickerProps, DateRangePreset, Dock, DockItem, DockProps, Drawer, DrawerProps, Dropdown, DropdownItem, DropdownProps, Editable, EditableProps, EmptyState, EmptyStateProps, ErrorBoundary, Field, FieldProps, FileUploader, FileUploaderLabels, FileUploaderProps, Filter, FilterOption, FilterProps, FilterVariant, FocusScope, Form, FormConfig, FormProps, FormStore, Header, HeaderLabels, HeaderLink, HeaderPanel, HeaderPanelLabels, HeaderPanelProps, HeaderProps, Heading, HeadingLevel, HeadingProps, HeadingSize, HoverCard, HoverCardContent, HoverCardContentProps, HoverCardProps, HoverCardTrigger, HoverCardTriggerProps, IconButton, IconButtonProps, Image, ImageProps, Indicator, IndicatorPlacement, IndicatorProps, InlineLoading, InlineLoadingProps, InlineLoadingStatus, Input, InputGroup, InputGroupAddon, type InputGroupAddonProps, type InputGroupProps, InputProps, Item, ItemActions, ItemActionsProps, ItemContent, ItemContentProps, ItemDescription, ItemDescriptionProps, ItemMedia, ItemMediaProps, ItemProps, ItemTitle, ItemTitleProps, Join, JoinOrientation, JoinProps, Kbd, KbdProps, Label, LabelProps, Link, LinkProps, List, ListItem, ListItemProps, ListProps, Menu, MenuButton, MenuButtonItem, MenuButtonProps, MenuItem, MenuItemProps, MenuProps, MenuSeparator, MenuTrigger, MenuTriggerProps, Menubar, MenubarItem, MenubarMenu, MenubarProps, Modal, ModalProps, MultiSelect, MultiSelectLabels, MultiSelectOption, MultiSelectProps, NativeSelect, NativeSelectOption, NativeSelectProps, NavigationMenu, NavigationMenuItem, NavigationMenuProps, Notification, NotificationProps, NotificationVariant, NumberInput, NumberInputProps, OtpInput, OtpInputProps, OverflowMenu, OverflowMenuItem, OverflowMenuProps, Pagination, PaginationLabels, PaginationProps, PasswordInput, PasswordInputLabels, PasswordInputProps, Popover, PopoverContent, PopoverContentProps, PopoverProps, PopoverTrigger, PopoverTriggerProps, Portal, Progress, ProgressBar, ProgressBarProps, ProgressCircle, ProgressCircleProps, ProgressIndicator, ProgressIndicatorProps, ProgressProps, ProgressSize, ProgressStep, ProgressVariant, Prose, ProseProps, QrCode, QrCodeProps, RadialProgress, RadialProgressProps, RadialProgressSize, RadialProgressVariant, Radio, RadioCard, RadioCardGroup, RadioCardGroupProps, RadioCardProps, RadioGroup, RadioGroupProps, RadioProps, RatingGroup, RatingGroupLabels, RatingGroupProps, RelativeTime, RelativeTimeProps, Resizable, ResizableProps, ScrollArea, ScrollAreaProps, Search, SearchProps, SegmentedControl, SegmentedControlOption, SegmentedControlProps, Select, SelectOption, SelectProps, Separator, SeparatorProps, Sheet, SheetProps, ShellHeader, ShellHeaderAction, ShellHeaderBrand, ShellHeaderLabels, ShellHeaderNavItem, ShellHeaderNavLink, ShellHeaderNavMenu, ShellHeaderNavMenuItem, ShellHeaderProps, SideNav, SideNavGroup, SideNavItem, SideNavProps, SideNavSubItem, Skeleton, SkeletonProps, SkipNavLink, SkipNavLinkProps, SkipNavTarget, SkipNavTargetProps, Slider, SliderProps, SortDirection, SortState, Spinner, SpinnerProps, Stack, StackProps, type StandardSchemaV1, Stat, StatProps, Status, StatusProps, Step, StepState, Steps, StepsProps, StructuredList, StructuredListItem, StructuredListProps, SuspenseBoundary, Swap, SwapMode, SwapProps, Switcher, SwitcherEntry, SwitcherLink, SwitcherProps, Tabs, TabsContent, TabsContentProps, TabsList, TabsProps, TabsTrigger, TabsTriggerProps, Tag$1 as Tag, TagProps, TagsInput, TagsInputProps, Text, TextProps, Textarea, TextareaProps, Tile, TileProps, TimePicker, TimePickerProps, Timeline, TimelineItem, TimelineProps, ToastOptions, ToastProvider, ToastVariant, Toc, TocItem, TocProps, Toggle, ToggleGroup, ToggleGroupItem, ToggleGroupProps, ToggleProps, Toggletip, ToggletipPlacement, ToggletipProps, Tooltip, TooltipProps, TreeNode, TreeView, TreeViewProps, UploaderFile, type UsePopoverOptions, type UsePopoverReturn, type UseTocFromRegionOptions, User, UserProps, VisuallyHidden, VisuallyHiddenProps, createForm, dismissAllToasts, fuzzyScore, treeViewMessages, useForm, usePopover, useToast, useTocFromRegion };