@cascivo/react 0.2.0 → 0.2.1
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/README.md +8 -1
- package/dist/cascivo.css +1 -1
- package/dist/index.d.ts +211 -4
- package/dist/index.js +3155 -2232
- package/package.json +3 -3
- package/readme.body.md +8 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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';
|
|
@@ -86,6 +86,8 @@ interface ModalProps {
|
|
|
86
86
|
children?: ReactNode;
|
|
87
87
|
className?: string;
|
|
88
88
|
size?: 'sm' | 'md' | 'lg';
|
|
89
|
+
/** Allow dragging the dialog by its header (opt-in; CSS translate, no animation library). */
|
|
90
|
+
draggable?: boolean;
|
|
89
91
|
}
|
|
90
92
|
declare function Modal({
|
|
91
93
|
open,
|
|
@@ -94,7 +96,8 @@ declare function Modal({
|
|
|
94
96
|
description,
|
|
95
97
|
children,
|
|
96
98
|
className,
|
|
97
|
-
size
|
|
99
|
+
size,
|
|
100
|
+
draggable
|
|
98
101
|
}: ModalProps): import("react").JSX.Element;
|
|
99
102
|
interface SpinnerProps extends HTMLAttributes<HTMLSpanElement> {
|
|
100
103
|
size?: 'sm' | 'md' | 'lg';
|
|
@@ -154,6 +157,82 @@ declare function Avatar({
|
|
|
154
157
|
className,
|
|
155
158
|
...props
|
|
156
159
|
}: AvatarProps): import("react").JSX.Element;
|
|
160
|
+
interface AvatarGroupLabels {
|
|
161
|
+
/** Accessible label for the +N overflow chip. */
|
|
162
|
+
more?: (count: number) => string;
|
|
163
|
+
}
|
|
164
|
+
interface AvatarGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
165
|
+
/** Cap the number of visible avatars; the rest collapse into a +N chip. */
|
|
166
|
+
max?: number;
|
|
167
|
+
/** Override the total count used for the +N chip (when more exist than rendered). */
|
|
168
|
+
total?: number;
|
|
169
|
+
/** Overlap amount. */
|
|
170
|
+
spacing?: 'sm' | 'md' | 'lg';
|
|
171
|
+
/** Wrap into a grid instead of an overlapping row. */
|
|
172
|
+
isGrid?: boolean;
|
|
173
|
+
labels?: AvatarGroupLabels;
|
|
174
|
+
/** The <Avatar> children. */
|
|
175
|
+
children?: ReactNode;
|
|
176
|
+
}
|
|
177
|
+
/** Overlapping stack of avatars with a `max` cap and an i18n-labelled +N overflow chip. */
|
|
178
|
+
declare function AvatarGroup({
|
|
179
|
+
max,
|
|
180
|
+
total,
|
|
181
|
+
spacing,
|
|
182
|
+
isGrid,
|
|
183
|
+
labels,
|
|
184
|
+
className,
|
|
185
|
+
children,
|
|
186
|
+
...rest
|
|
187
|
+
}: AvatarGroupProps): import("react").JSX.Element;
|
|
188
|
+
interface UserProps extends HTMLAttributes<HTMLDivElement> {
|
|
189
|
+
/** Primary identity label (name). */
|
|
190
|
+
name: ReactNode;
|
|
191
|
+
/** Secondary line (email, role, …). */
|
|
192
|
+
description?: ReactNode;
|
|
193
|
+
/** Forwarded to the composed <Avatar>. */
|
|
194
|
+
avatarProps?: AvatarProps;
|
|
195
|
+
/** Optional trailing action slot (e.g. a menu button). */
|
|
196
|
+
children?: ReactNode;
|
|
197
|
+
}
|
|
198
|
+
/** Identity composite: an Avatar with a name + optional description and trailing action. */
|
|
199
|
+
declare function User({
|
|
200
|
+
name,
|
|
201
|
+
description,
|
|
202
|
+
avatarProps,
|
|
203
|
+
className,
|
|
204
|
+
children,
|
|
205
|
+
...rest
|
|
206
|
+
}: UserProps): import("react").JSX.Element;
|
|
207
|
+
interface ImageProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, 'placeholder'> {
|
|
208
|
+
src?: string;
|
|
209
|
+
alt?: string;
|
|
210
|
+
/** Image shown if `src` fails to load. Without it, a neutral fallback box renders. */
|
|
211
|
+
fallbackSrc?: string;
|
|
212
|
+
width?: string | number;
|
|
213
|
+
height?: string | number;
|
|
214
|
+
radius?: 'none' | 'sm' | 'md' | 'lg' | 'full';
|
|
215
|
+
/** Hover-zoom the image (reduced-motion-safe). */
|
|
216
|
+
zoom?: boolean;
|
|
217
|
+
/** Render a bare <img> with no wrapper, placeholder, or zoom (HeroUI parity). */
|
|
218
|
+
removeWrapper?: boolean;
|
|
219
|
+
/** Show a blurred placeholder while loading. */
|
|
220
|
+
isBlurred?: boolean;
|
|
221
|
+
}
|
|
222
|
+
declare function Image({
|
|
223
|
+
src,
|
|
224
|
+
alt,
|
|
225
|
+
fallbackSrc,
|
|
226
|
+
width,
|
|
227
|
+
height,
|
|
228
|
+
radius,
|
|
229
|
+
zoom,
|
|
230
|
+
removeWrapper,
|
|
231
|
+
isBlurred,
|
|
232
|
+
className,
|
|
233
|
+
style,
|
|
234
|
+
...rest
|
|
235
|
+
}: ImageProps): import("react").JSX.Element;
|
|
157
236
|
interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
158
237
|
label?: string;
|
|
159
238
|
hint?: string;
|
|
@@ -418,6 +497,45 @@ declare function Breadcrumb({
|
|
|
418
497
|
className,
|
|
419
498
|
ariaLabel
|
|
420
499
|
}: BreadcrumbProps): import("react").JSX.Element;
|
|
500
|
+
interface TocItem {
|
|
501
|
+
/** id of the heading/section this entry links to (without the leading `#`) */
|
|
502
|
+
id: string;
|
|
503
|
+
label: string;
|
|
504
|
+
/** heading level (2 = h2, 3 = h3 …); drives indentation. Defaults to 2. */
|
|
505
|
+
level?: number;
|
|
506
|
+
}
|
|
507
|
+
interface TocProps {
|
|
508
|
+
items: TocItem[];
|
|
509
|
+
/**
|
|
510
|
+
* Controlled active item id. When set, the component reflects this value and
|
|
511
|
+
* does not run its own scroll-spy. Leave undefined for built-in scroll-spy.
|
|
512
|
+
*/
|
|
513
|
+
activeId?: string;
|
|
514
|
+
onActiveChange?: (id: string) => void;
|
|
515
|
+
/** Override the built-in nav landmark label. */
|
|
516
|
+
labels?: {
|
|
517
|
+
nav?: string;
|
|
518
|
+
};
|
|
519
|
+
className?: string;
|
|
520
|
+
}
|
|
521
|
+
declare function Toc({
|
|
522
|
+
items,
|
|
523
|
+
activeId,
|
|
524
|
+
onActiveChange,
|
|
525
|
+
labels,
|
|
526
|
+
className
|
|
527
|
+
}: TocProps): import("react").JSX.Element;
|
|
528
|
+
interface UseTocFromRegionOptions {
|
|
529
|
+
/** CSS selector for the headings to collect. Defaults to `h2, h3, h4`. */
|
|
530
|
+
selector?: string;
|
|
531
|
+
}
|
|
532
|
+
/**
|
|
533
|
+
* Opt-in convenience: derive a `TocItem[]` signal from the headings inside a
|
|
534
|
+
* container. Headings must have an `id`. Feed the result to `<Toc items={…} />`.
|
|
535
|
+
* The controlled `items` API on `Toc` remains the primary, testable surface;
|
|
536
|
+
* this helper only builds the list.
|
|
537
|
+
*/
|
|
538
|
+
declare function useTocFromRegion(ref: RefObject<HTMLElement | null>, options?: UseTocFromRegionOptions): Signal<TocItem[]>;
|
|
421
539
|
interface HeaderLink {
|
|
422
540
|
label: string;
|
|
423
541
|
href: string;
|
|
@@ -1151,6 +1269,34 @@ declare function ContextMenuItem({
|
|
|
1151
1269
|
onSelect,
|
|
1152
1270
|
disabled
|
|
1153
1271
|
}: ContextMenuItemProps): import("react").JSX.Element;
|
|
1272
|
+
interface ComparisonProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> {
|
|
1273
|
+
/** The base layer, fully visible underneath. */
|
|
1274
|
+
after: ReactNode;
|
|
1275
|
+
/** The top layer, revealed from the start edge up to `position`. */
|
|
1276
|
+
before: ReactNode;
|
|
1277
|
+
/** Divider position as a percentage 0–100. Controlled when provided. */
|
|
1278
|
+
position?: number;
|
|
1279
|
+
/** Initial divider position for uncontrolled use. Default 50. */
|
|
1280
|
+
defaultPosition?: number;
|
|
1281
|
+
onPositionChange?: (position: number) => void;
|
|
1282
|
+
orientation?: 'horizontal' | 'vertical';
|
|
1283
|
+
/** Percentage the Arrow keys move the divider. Default 5. */
|
|
1284
|
+
keyboardStep?: number;
|
|
1285
|
+
/** Accessible label for the divider slider. */
|
|
1286
|
+
label?: string;
|
|
1287
|
+
}
|
|
1288
|
+
declare function Comparison({
|
|
1289
|
+
after,
|
|
1290
|
+
before,
|
|
1291
|
+
position,
|
|
1292
|
+
defaultPosition,
|
|
1293
|
+
onPositionChange,
|
|
1294
|
+
orientation,
|
|
1295
|
+
keyboardStep,
|
|
1296
|
+
label,
|
|
1297
|
+
className,
|
|
1298
|
+
...props
|
|
1299
|
+
}: ComparisonProps): import("react").JSX.Element;
|
|
1154
1300
|
interface HoverCardProps {
|
|
1155
1301
|
children: ReactNode;
|
|
1156
1302
|
openDelay?: number;
|
|
@@ -1666,6 +1812,61 @@ declare function Prose({
|
|
|
1666
1812
|
children,
|
|
1667
1813
|
...props
|
|
1668
1814
|
}: ProseProps): import("react").JSX.Element;
|
|
1815
|
+
/**
|
|
1816
|
+
* Minimal QR Code encoder (byte mode, versions 1–40, EC levels L/M/Q/H).
|
|
1817
|
+
*
|
|
1818
|
+
* Vendored as owned source to keep `@cascivo` free of runtime dependencies.
|
|
1819
|
+
* Algorithm and lookup tables adapted from Project Nayuki's "QR Code generator
|
|
1820
|
+
* library" (MIT License, https://www.nayuki.io/page/qr-code-generator-library),
|
|
1821
|
+
* trimmed to byte-mode segments with automatic version and mask selection.
|
|
1822
|
+
*/
|
|
1823
|
+
type ErrorCorrection = 'L' | 'M' | 'Q' | 'H';
|
|
1824
|
+
interface QrCodeProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
1825
|
+
/** The text or URL to encode. */
|
|
1826
|
+
value: string;
|
|
1827
|
+
/** Rendered size in pixels (width and height). Default 128. */
|
|
1828
|
+
size?: number;
|
|
1829
|
+
/** Error-correction level. Higher tolerates more damage but holds less data. Default 'M'. */
|
|
1830
|
+
errorCorrection?: ErrorCorrection;
|
|
1831
|
+
/** CSS length rounding the code's corners (applied to the container). */
|
|
1832
|
+
radius?: string;
|
|
1833
|
+
/** Module color. Default `currentColor` so the code inherits text color. */
|
|
1834
|
+
fill?: string;
|
|
1835
|
+
/** Background color behind the modules. Default `transparent`. */
|
|
1836
|
+
background?: string;
|
|
1837
|
+
/** Accessible label. Defaults to the i18n built-in "QR code". */
|
|
1838
|
+
label?: string;
|
|
1839
|
+
}
|
|
1840
|
+
declare function QrCode({
|
|
1841
|
+
value,
|
|
1842
|
+
size,
|
|
1843
|
+
errorCorrection,
|
|
1844
|
+
radius,
|
|
1845
|
+
fill,
|
|
1846
|
+
background,
|
|
1847
|
+
label,
|
|
1848
|
+
className,
|
|
1849
|
+
style,
|
|
1850
|
+
...props
|
|
1851
|
+
}: QrCodeProps): import("react").JSX.Element | null;
|
|
1852
|
+
interface RelativeTimeProps extends Omit<TimeHTMLAttributes<HTMLTimeElement>, 'dateTime'> {
|
|
1853
|
+
/** The instant to describe relative to now. */
|
|
1854
|
+
date: Date | number | string;
|
|
1855
|
+
/** Auto-update as time passes. Default true. */
|
|
1856
|
+
sync?: boolean;
|
|
1857
|
+
/** Override "now" (ms since epoch). Mainly for deterministic tests; disables the interval. */
|
|
1858
|
+
now?: number;
|
|
1859
|
+
/** Passed through to Intl.RelativeTimeFormat (e.g. `{ numeric: 'auto' }`). */
|
|
1860
|
+
format?: Intl.RelativeTimeFormatOptions;
|
|
1861
|
+
}
|
|
1862
|
+
declare function RelativeTime({
|
|
1863
|
+
date,
|
|
1864
|
+
sync,
|
|
1865
|
+
now: nowProp,
|
|
1866
|
+
format,
|
|
1867
|
+
className,
|
|
1868
|
+
...props
|
|
1869
|
+
}: RelativeTimeProps): import("react").JSX.Element;
|
|
1669
1870
|
interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
|
|
1670
1871
|
/** Renders into the child element (Slot composition) instead of a native `<label>`. */
|
|
1671
1872
|
asChild?: boolean;
|
|
@@ -1830,12 +2031,15 @@ interface ScrollAreaProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
1830
2031
|
width?: string;
|
|
1831
2032
|
/** Which axes may scroll. */
|
|
1832
2033
|
orientation?: 'vertical' | 'horizontal' | 'both';
|
|
2034
|
+
/** Edge affordance: box-shadow (default), a mask-image fade (HeroUI ScrollShadow), or none. */
|
|
2035
|
+
edges?: 'shadow' | 'mask' | 'none';
|
|
1833
2036
|
children?: ReactNode;
|
|
1834
2037
|
}
|
|
1835
2038
|
declare function ScrollArea({
|
|
1836
2039
|
height,
|
|
1837
2040
|
width,
|
|
1838
2041
|
orientation,
|
|
2042
|
+
edges,
|
|
1839
2043
|
className,
|
|
1840
2044
|
style,
|
|
1841
2045
|
children,
|
|
@@ -2334,6 +2538,8 @@ interface DrawerProps {
|
|
|
2334
2538
|
close?: string;
|
|
2335
2539
|
};
|
|
2336
2540
|
className?: string;
|
|
2541
|
+
/** Allow dragging the header toward its edge to dismiss (opt-in; CSS translate, no animation library). */
|
|
2542
|
+
swipeToDismiss?: boolean;
|
|
2337
2543
|
}
|
|
2338
2544
|
/**
|
|
2339
2545
|
* Edge-anchored panel. Unlike Sheet's gesture-driven sheet, Drawer is a plain dialog surface that
|
|
@@ -2351,7 +2557,8 @@ declare function Drawer({
|
|
|
2351
2557
|
description,
|
|
2352
2558
|
children,
|
|
2353
2559
|
labels,
|
|
2354
|
-
className
|
|
2560
|
+
className,
|
|
2561
|
+
swipeToDismiss
|
|
2355
2562
|
}: DrawerProps): import("react").JSX.Element;
|
|
2356
2563
|
interface NativeSelectOption {
|
|
2357
2564
|
value: string;
|
|
@@ -2616,4 +2823,4 @@ declare function Swap({
|
|
|
2616
2823
|
className,
|
|
2617
2824
|
...aria
|
|
2618
2825
|
}: 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 };
|
|
2826
|
+
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 };
|