@szum-tech/design-system 3.19.2 → 3.20.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/components/index.cjs +1 -1
- package/dist/components/index.d.cts +108 -14
- package/dist/components/index.d.ts +108 -14
- package/dist/components/index.js +1 -1
- package/package.json +2 -1
|
@@ -8,6 +8,7 @@ import { ToasterProps as ToasterProps$1 } from 'sonner';
|
|
|
8
8
|
export { toast } from 'sonner';
|
|
9
9
|
import { UseInViewOptions, MotionProps } from 'motion/react';
|
|
10
10
|
import { DragEndEvent, DragStartEvent, Modifiers, DraggableSyntheticListeners, DragOverlay, UniqueIdentifier } from '@dnd-kit/core';
|
|
11
|
+
import { Combobox as Combobox$1 } from '@base-ui/react';
|
|
11
12
|
|
|
12
13
|
type AlertDialogProps = React.ComponentProps<typeof AlertDialog$1.Root>;
|
|
13
14
|
declare function AlertDialog(props: AlertDialogProps): react_jsx_runtime.JSX.Element;
|
|
@@ -58,7 +59,7 @@ type AvatarFallbackProps = React.ComponentProps<typeof Avatar$1.Fallback>;
|
|
|
58
59
|
declare function AvatarFallback({ className, ...props }: AvatarFallbackProps): react_jsx_runtime.JSX.Element;
|
|
59
60
|
|
|
60
61
|
declare const badgeVariants: (props?: {
|
|
61
|
-
variant?: "
|
|
62
|
+
variant?: "outline" | "secondary" | "error" | "primary" | "success" | "warning";
|
|
62
63
|
} & class_variance_authority_types.ClassProp) => string;
|
|
63
64
|
|
|
64
65
|
type BadgeVariantsProps = VariantProps<typeof badgeVariants>;
|
|
@@ -95,10 +96,6 @@ type ButtonProps = React.ComponentProps<"button"> & {
|
|
|
95
96
|
* Defines button content
|
|
96
97
|
*/
|
|
97
98
|
children?: React.ReactNode;
|
|
98
|
-
/**
|
|
99
|
-
* Disabled button
|
|
100
|
-
*/
|
|
101
|
-
disabled?: boolean;
|
|
102
99
|
/**
|
|
103
100
|
* Defines left icon
|
|
104
101
|
*/
|
|
@@ -120,8 +117,8 @@ type ButtonProps = React.ComponentProps<"button"> & {
|
|
|
120
117
|
declare function Button({ asChild, variant, disabled, fullWidth, loadingPosition: loadingPositionProp, children, type, loading, size, endIcon, startIcon, className, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
121
118
|
|
|
122
119
|
declare const buttonVariants: (props?: {
|
|
123
|
-
variant?: "link" | "default" | "
|
|
124
|
-
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg";
|
|
120
|
+
variant?: "link" | "default" | "outline" | "secondary" | "ghost" | "error";
|
|
121
|
+
size?: "default" | "sm" | "xs" | "lg" | "icon-xs" | "icon-sm" | "icon" | "icon-lg";
|
|
125
122
|
fullWidth?: boolean;
|
|
126
123
|
} & class_variance_authority_types.ClassProp) => string;
|
|
127
124
|
|
|
@@ -313,7 +310,7 @@ type DialogContentProps = React.ComponentProps<typeof Dialog$1.Content> & {
|
|
|
313
310
|
declare function DialogContent({ className, children, width, showCloseButton, ...props }: DialogContentProps): react_jsx_runtime.JSX.Element;
|
|
314
311
|
|
|
315
312
|
declare const dialogContentVariants: (props?: {
|
|
316
|
-
width?: "sm" | "
|
|
313
|
+
width?: "sm" | "xs" | "lg" | "md" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "full";
|
|
317
314
|
} & class_variance_authority_types.ClassProp) => string;
|
|
318
315
|
|
|
319
316
|
type DialogContentCvaProps = VariantProps<typeof dialogContentVariants>;
|
|
@@ -393,6 +390,48 @@ type HeaderProps = React.ComponentProps<"header"> & {
|
|
|
393
390
|
};
|
|
394
391
|
declare function Header({ children, variant, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
395
392
|
|
|
393
|
+
type InputGroupProps = React.ComponentProps<"div"> & {
|
|
394
|
+
invalid?: boolean;
|
|
395
|
+
};
|
|
396
|
+
declare function InputGroup({ className, invalid, ...props }: InputGroupProps): react_jsx_runtime.JSX.Element;
|
|
397
|
+
|
|
398
|
+
declare const inputGroupAddonVariants: (props?: {
|
|
399
|
+
align?: "inline-start" | "inline-end" | "block-end" | "block-start";
|
|
400
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
401
|
+
|
|
402
|
+
declare const inputGroupButtonVariants: (props?: {
|
|
403
|
+
size?: "sm" | "xs" | "icon-xs" | "icon-sm";
|
|
404
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
405
|
+
|
|
406
|
+
type InputGroupAddonVariantsProps = VariantProps<typeof inputGroupAddonVariants>;
|
|
407
|
+
type InputGroupAddonAlignType = NonNullable<InputGroupAddonVariantsProps["align"]>;
|
|
408
|
+
type InputGroupButtonVariantsProps = VariantProps<typeof inputGroupButtonVariants>;
|
|
409
|
+
type InputGroupButtonSizeType = NonNullable<InputGroupButtonVariantsProps["size"]>;
|
|
410
|
+
|
|
411
|
+
type InputGroupAddonProps = React.ComponentProps<"div"> & {
|
|
412
|
+
align?: InputGroupAddonAlignType;
|
|
413
|
+
};
|
|
414
|
+
declare function InputGroupAddon({ className, align, ...props }: InputGroupAddonProps): react_jsx_runtime.JSX.Element;
|
|
415
|
+
|
|
416
|
+
type InputGroupButtonProps = Omit<React.ComponentProps<typeof Button>, "size"> & {
|
|
417
|
+
size?: InputGroupButtonSizeType;
|
|
418
|
+
};
|
|
419
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: InputGroupButtonProps): react_jsx_runtime.JSX.Element;
|
|
420
|
+
|
|
421
|
+
type InputGroupInputProps = React.ComponentProps<typeof Input>;
|
|
422
|
+
declare function InputGroupInput({ className, ...props }: InputGroupInputProps): react_jsx_runtime.JSX.Element;
|
|
423
|
+
|
|
424
|
+
type InputGroupTextProps = React.ComponentProps<"span">;
|
|
425
|
+
declare function InputGroupText({ className, ...props }: InputGroupTextProps): react_jsx_runtime.JSX.Element;
|
|
426
|
+
|
|
427
|
+
type TextareaProps = React.ComponentProps<"textarea"> & {
|
|
428
|
+
invalid?: boolean;
|
|
429
|
+
};
|
|
430
|
+
declare function Textarea({ className, invalid, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
|
|
431
|
+
|
|
432
|
+
type InputGroupTextareaProps = React.ComponentProps<typeof Textarea>;
|
|
433
|
+
declare function InputGroupTextarea({ className, ...props }: InputGroupTextareaProps): react_jsx_runtime.JSX.Element;
|
|
434
|
+
|
|
396
435
|
type ItemProps = React.ComponentProps<"div"> & {
|
|
397
436
|
asChild?: boolean;
|
|
398
437
|
variant?: ItemVariantType;
|
|
@@ -747,11 +786,6 @@ declare function TabsTrigger({ className, ...props }: TabsTriggerProps): react_j
|
|
|
747
786
|
type TabsContentProps = React.ComponentProps<typeof Tabs$1.Content>;
|
|
748
787
|
declare function TabsContent({ className, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element;
|
|
749
788
|
|
|
750
|
-
type TextareaProps = React.ComponentProps<"textarea"> & {
|
|
751
|
-
invalid?: boolean;
|
|
752
|
-
};
|
|
753
|
-
declare function Textarea({ className, invalid, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
|
|
754
|
-
|
|
755
789
|
type TimelineProps = React.ComponentProps<"div"> & {
|
|
756
790
|
asChild?: boolean;
|
|
757
791
|
dir?: TimelineDirection;
|
|
@@ -1669,4 +1703,64 @@ declare function PaginationNext({ className, text, ...props }: PaginationNextPro
|
|
|
1669
1703
|
type PaginationEllipsisProps = React.ComponentProps<"span">;
|
|
1670
1704
|
declare function PaginationEllipsis({ className, ...props }: PaginationEllipsisProps): react_jsx_runtime.JSX.Element;
|
|
1671
1705
|
|
|
1672
|
-
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, type AlertDialogContentSize, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogMedia, type AlertDialogMediaProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, type ButtonSizeType, type ButtonVariantType, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, type ColorFormat, ColorPicker, ColorPickerAlphaSlider, type ColorPickerAlphaSliderProps, ColorPickerArea, type ColorPickerAreaProps, ColorPickerContent, type ColorPickerContentProps, type ColorPickerContextValue, ColorPickerEyeDropper, type ColorPickerEyeDropperProps, ColorPickerFormatSelect, type ColorPickerFormatSelectProps, ColorPickerHueSlider, type ColorPickerHueSliderProps, ColorPickerInput, type ColorPickerInputProps, type ColorPickerProps, ColorPickerSwatch, type ColorPickerSwatchProps, ColorPickerTrigger, type ColorPickerTriggerProps, ColorSwatch, type ColorSwatchProps, type ColorSwatchSize, type ColorValue, CountingNumber, type CountingNumberProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, type DialogContentWidth, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, type Direction$2 as Direction, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuItemVariant, type DropdownMenuItemVariantType, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, Empty, EmptyContent, type EmptyContentProps, EmptyDescription, type EmptyDescriptionProps, EmptyHeader, type EmptyHeaderProps, EmptyMedia, type EmptyMediaProps, type EmptyProps, EmptyTitle, type EmptyTitleProps, type EyeDropper, Field, FieldContent, type FieldContentProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldLegendProps, type FieldProps, FieldSeparator, type FieldSeparatorProps, FieldSet, type FieldSetProps, FieldTitle, type FieldTitleProps, type FileState, FileUpload, FileUploadClear, type FileUploadClearProps, type FileUploadContextValue, FileUploadDropzone, type FileUploadDropzoneProps, FileUploadItem, type FileUploadItemContextValue, FileUploadItemDelete, type FileUploadItemDeleteProps, FileUploadItemMetadata, type FileUploadItemMetadataProps, FileUploadItemPreview, type FileUploadItemPreviewProps, FileUploadItemProgress, type FileUploadItemProgressProps, type FileUploadItemProps, FileUploadList, type FileUploadListOrientationType, type FileUploadListProps, type FileUploadProps, type FileUploadStoreState, FileUploadTrigger, type FileUploadTriggerProps, type FileUploadUploadOptions, type HSVColorValue, Header, type HeaderProps, Input, type InputProps, Item, ItemActions, type ItemActionsProps, ItemContent, type ItemContentProps, ItemDescription, type ItemDescriptionProps, type ItemElement, ItemFooter, type ItemFooterProps, ItemGroup, type ItemGroupProps, ItemHeader, type ItemHeaderProps, ItemMedia, type ItemMediaProps, type ItemMediaVariantType, type ItemProps, ItemSeparator, type ItemSeparatorProps, type ItemSizeType, ItemTitle, type ItemTitleProps, type ItemVariantType, Label, type LabelProps, Marquee, type MarqueeProps, Masonry, type MasonryCache, type MasonryCacheConstructor, type MasonryCacheKey, type MasonryElement, type MasonryIntervalTree, MasonryItem, type MasonryItemElement, type MasonryItemProps, type MasonryListNode, type MasonryPositioner, type MasonryPositionerItem, type MasonryProps, type MasonryTree, type MasonryTreeNode, type NodeColor, type NodeOperation, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, type PopoverProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, Separator, type SeparatorProps, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentSide, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, type SheetProps, type SheetContentSide as SheetSide, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, Sidebar, type SidebarCollapsible, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, type SidebarMenuButtonSizeType, type SidebarMenuButtonVariantType, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, type SidebarMenuSubButtonSize, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarSide, SidebarTrigger, type SidebarTriggerProps, type SidebarVariant, Skeleton, type SkeletonProps, Sortable, SortableItem, SortableItemHandle, type SortableItemHandleProps, type SortableItemProps, SortableOverlay, type SortableOverlayProps, type SortableProps, Spinner, type SpinnerProps, Status, StatusIndicator, type StatusIndicatorProps, StatusLabel, type StatusLabelProps, type StatusProps, type StatusVariant, type StepIndicators, Stepper, StepperActivationMode, StepperContent, type StepperContentProps, StepperDataState, StepperDescription, type StepperDescriptionProps, type StepperDirection, StepperFocusIntent, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, StepperNav, type StepperNavProps, StepperNavigationDirection, StepperNextTrigger, type StepperNextTriggerProps, StepperOrientation, StepperPanel, type StepperPanelProps, StepperPrevTrigger, type StepperPrevTriggerProps, type StepperProps, StepperTitle, type StepperTitleProps, StepperTrigger, type StepperTriggerElement, type StepperTriggerProps, Switch, type SwitchProps, type SwitchSizeType, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsListVariantType, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDescription, type TimelineDescriptionProps, type TimelineDirection, TimelineDot, type TimelineDotProps, TimelineHeader, type TimelineHeaderProps, TimelineItem, type TimelineItemElement, type TimelineItemProps, type TimelineOrientation, type TimelineProps, type TimelineStatus, TimelineTime, type TimelineTimeProps, TimelineTitle, type TimelineTitleProps, type TimelineVariant, Toaster, type ToasterProps, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupOrientationType, type ToggleGroupProps, type ToggleProps, type ToggleSize, type ToggleVariant, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, TypingText, type TypingTextAnimationVariant, type TypingTextProps, WordRotate, type WordRotateAnimationStyle, type WordRotateProps, useColorPickerStore, useFileUploadContext, useFileUploadItemContext, useFileUploadStore, useSidebar, useSidebarContext, useSortableItemContext, useStepperContext, useStepperFocusContext, useStepperItemContext };
|
|
1706
|
+
type KbdProps = React.ComponentProps<"kbd">;
|
|
1707
|
+
declare function Kbd({ className, ...props }: KbdProps): react_jsx_runtime.JSX.Element;
|
|
1708
|
+
|
|
1709
|
+
type KbdGroup = React.ComponentProps<"div">;
|
|
1710
|
+
declare function KbdGroup({ className, ...props }: KbdGroup): react_jsx_runtime.JSX.Element;
|
|
1711
|
+
|
|
1712
|
+
type ComboboxProps = React.ComponentProps<typeof Combobox$1.Root>;
|
|
1713
|
+
declare const Combobox: typeof Combobox$1.Root;
|
|
1714
|
+
declare function useComboboxAnchor(): React.RefObject<HTMLDivElement>;
|
|
1715
|
+
|
|
1716
|
+
type ComboboxValueProps = Combobox$1.Value.Props;
|
|
1717
|
+
declare function ComboboxValue({ ...props }: ComboboxValueProps): react_jsx_runtime.JSX.Element;
|
|
1718
|
+
|
|
1719
|
+
type ComboboxTriggerProps = Combobox$1.Trigger.Props;
|
|
1720
|
+
declare function ComboboxTrigger({ className, children, ...props }: ComboboxTriggerProps): react_jsx_runtime.JSX.Element;
|
|
1721
|
+
|
|
1722
|
+
type ComboboxClearProps = Combobox$1.Clear.Props;
|
|
1723
|
+
declare function ComboboxClear({ className, ...props }: ComboboxClearProps): react_jsx_runtime.JSX.Element;
|
|
1724
|
+
|
|
1725
|
+
type ComboboxInputProps = Combobox$1.Input.Props & {
|
|
1726
|
+
showTrigger?: boolean;
|
|
1727
|
+
showClear?: boolean;
|
|
1728
|
+
};
|
|
1729
|
+
declare function ComboboxInput({ className, children, disabled, showTrigger, showClear, ...props }: ComboboxInputProps): react_jsx_runtime.JSX.Element;
|
|
1730
|
+
|
|
1731
|
+
type ComboboxContentProps = Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">;
|
|
1732
|
+
declare function ComboboxContent({ className, side, sideOffset, align, alignOffset, anchor, ...props }: ComboboxContentProps): react_jsx_runtime.JSX.Element;
|
|
1733
|
+
|
|
1734
|
+
type ComboboxListProps = Combobox$1.List.Props;
|
|
1735
|
+
declare function ComboboxList({ className, ...props }: ComboboxListProps): react_jsx_runtime.JSX.Element;
|
|
1736
|
+
|
|
1737
|
+
type ComboboxItemProps = Combobox$1.Item.Props;
|
|
1738
|
+
declare function ComboboxItem({ className, children, ...props }: ComboboxItemProps): react_jsx_runtime.JSX.Element;
|
|
1739
|
+
|
|
1740
|
+
type ComboboxGroupProps = Combobox$1.Group.Props;
|
|
1741
|
+
declare function ComboboxGroup({ className, ...props }: ComboboxGroupProps): react_jsx_runtime.JSX.Element;
|
|
1742
|
+
|
|
1743
|
+
type ComboboxLabelProps = Combobox$1.GroupLabel.Props;
|
|
1744
|
+
declare function ComboboxLabel({ className, ...props }: ComboboxLabelProps): react_jsx_runtime.JSX.Element;
|
|
1745
|
+
|
|
1746
|
+
type ComboboxCollectionProps = Combobox$1.Collection.Props;
|
|
1747
|
+
declare function ComboboxCollection({ ...props }: ComboboxCollectionProps): react_jsx_runtime.JSX.Element;
|
|
1748
|
+
|
|
1749
|
+
type ComboboxEmptyProps = Combobox$1.Empty.Props;
|
|
1750
|
+
declare function ComboboxEmpty({ className, ...props }: ComboboxEmptyProps): react_jsx_runtime.JSX.Element;
|
|
1751
|
+
|
|
1752
|
+
type ComboboxSeparatorProps = Combobox$1.Separator.Props;
|
|
1753
|
+
declare function ComboboxSeparator({ className, ...props }: ComboboxSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
1754
|
+
|
|
1755
|
+
type ComboboxChipsProps = React.ComponentPropsWithRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props;
|
|
1756
|
+
declare function ComboboxChips({ className, ...props }: ComboboxChipsProps): react_jsx_runtime.JSX.Element;
|
|
1757
|
+
|
|
1758
|
+
type ComboboxChipProps = Combobox$1.Chip.Props & {
|
|
1759
|
+
showRemove?: boolean;
|
|
1760
|
+
};
|
|
1761
|
+
declare function ComboboxChip({ className, children, showRemove, ...props }: ComboboxChipProps): react_jsx_runtime.JSX.Element;
|
|
1762
|
+
|
|
1763
|
+
type ComboboxChipsInputProps = Combobox$1.Input.Props;
|
|
1764
|
+
declare function ComboboxChipsInput({ className, ...props }: ComboboxChipsInputProps): react_jsx_runtime.JSX.Element;
|
|
1765
|
+
|
|
1766
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, type AlertDialogContentSize, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogMedia, type AlertDialogMediaProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, type ButtonSizeType, type ButtonVariantType, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, type ColorFormat, ColorPicker, ColorPickerAlphaSlider, type ColorPickerAlphaSliderProps, ColorPickerArea, type ColorPickerAreaProps, ColorPickerContent, type ColorPickerContentProps, type ColorPickerContextValue, ColorPickerEyeDropper, type ColorPickerEyeDropperProps, ColorPickerFormatSelect, type ColorPickerFormatSelectProps, ColorPickerHueSlider, type ColorPickerHueSliderProps, ColorPickerInput, type ColorPickerInputProps, type ColorPickerProps, ColorPickerSwatch, type ColorPickerSwatchProps, ColorPickerTrigger, type ColorPickerTriggerProps, ColorSwatch, type ColorSwatchProps, type ColorSwatchSize, type ColorValue, Combobox, ComboboxChip, type ComboboxChipProps, ComboboxChips, ComboboxChipsInput, type ComboboxChipsInputProps, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxCollection, type ComboboxCollectionProps, ComboboxContent, type ComboboxContentProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, type ComboboxGroupProps, ComboboxInput, type ComboboxInputProps, ComboboxItem, type ComboboxItemProps, ComboboxLabel, type ComboboxLabelProps, ComboboxList, type ComboboxListProps, type ComboboxProps, ComboboxSeparator, type ComboboxSeparatorProps, ComboboxTrigger, type ComboboxTriggerProps, ComboboxValue, type ComboboxValueProps, CountingNumber, type CountingNumberProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, type DialogContentWidth, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, type Direction$2 as Direction, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuItemVariant, type DropdownMenuItemVariantType, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, Empty, EmptyContent, type EmptyContentProps, EmptyDescription, type EmptyDescriptionProps, EmptyHeader, type EmptyHeaderProps, EmptyMedia, type EmptyMediaProps, type EmptyProps, EmptyTitle, type EmptyTitleProps, type EyeDropper, Field, FieldContent, type FieldContentProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldLegendProps, type FieldProps, FieldSeparator, type FieldSeparatorProps, FieldSet, type FieldSetProps, FieldTitle, type FieldTitleProps, type FileState, FileUpload, FileUploadClear, type FileUploadClearProps, type FileUploadContextValue, FileUploadDropzone, type FileUploadDropzoneProps, FileUploadItem, type FileUploadItemContextValue, FileUploadItemDelete, type FileUploadItemDeleteProps, FileUploadItemMetadata, type FileUploadItemMetadataProps, FileUploadItemPreview, type FileUploadItemPreviewProps, FileUploadItemProgress, type FileUploadItemProgressProps, type FileUploadItemProps, FileUploadList, type FileUploadListOrientationType, type FileUploadListProps, type FileUploadProps, type FileUploadStoreState, FileUploadTrigger, type FileUploadTriggerProps, type FileUploadUploadOptions, type HSVColorValue, Header, type HeaderProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonAlignType, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSizeType, InputGroupInput, type InputGroupInputProps, type InputGroupProps, InputGroupText, type InputGroupTextProps, InputGroupTextarea, type InputGroupTextareaProps, type InputProps, Item, ItemActions, type ItemActionsProps, ItemContent, type ItemContentProps, ItemDescription, type ItemDescriptionProps, type ItemElement, ItemFooter, type ItemFooterProps, ItemGroup, type ItemGroupProps, ItemHeader, type ItemHeaderProps, ItemMedia, type ItemMediaProps, type ItemMediaVariantType, type ItemProps, ItemSeparator, type ItemSeparatorProps, type ItemSizeType, ItemTitle, type ItemTitleProps, type ItemVariantType, Kbd, KbdGroup, type KbdProps, Label, type LabelProps, Marquee, type MarqueeProps, Masonry, type MasonryCache, type MasonryCacheConstructor, type MasonryCacheKey, type MasonryElement, type MasonryIntervalTree, MasonryItem, type MasonryItemElement, type MasonryItemProps, type MasonryListNode, type MasonryPositioner, type MasonryPositionerItem, type MasonryProps, type MasonryTree, type MasonryTreeNode, type NodeColor, type NodeOperation, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, type PopoverProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, Separator, type SeparatorProps, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentSide, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, type SheetProps, type SheetContentSide as SheetSide, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, Sidebar, type SidebarCollapsible, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, type SidebarMenuButtonSizeType, type SidebarMenuButtonVariantType, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, type SidebarMenuSubButtonSize, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarSide, SidebarTrigger, type SidebarTriggerProps, type SidebarVariant, Skeleton, type SkeletonProps, Sortable, SortableItem, SortableItemHandle, type SortableItemHandleProps, type SortableItemProps, SortableOverlay, type SortableOverlayProps, type SortableProps, Spinner, type SpinnerProps, Status, StatusIndicator, type StatusIndicatorProps, StatusLabel, type StatusLabelProps, type StatusProps, type StatusVariant, type StepIndicators, Stepper, StepperActivationMode, StepperContent, type StepperContentProps, StepperDataState, StepperDescription, type StepperDescriptionProps, type StepperDirection, StepperFocusIntent, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, StepperNav, type StepperNavProps, StepperNavigationDirection, StepperNextTrigger, type StepperNextTriggerProps, StepperOrientation, StepperPanel, type StepperPanelProps, StepperPrevTrigger, type StepperPrevTriggerProps, type StepperProps, StepperTitle, type StepperTitleProps, StepperTrigger, type StepperTriggerElement, type StepperTriggerProps, Switch, type SwitchProps, type SwitchSizeType, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsListVariantType, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDescription, type TimelineDescriptionProps, type TimelineDirection, TimelineDot, type TimelineDotProps, TimelineHeader, type TimelineHeaderProps, TimelineItem, type TimelineItemElement, type TimelineItemProps, type TimelineOrientation, type TimelineProps, type TimelineStatus, TimelineTime, type TimelineTimeProps, TimelineTitle, type TimelineTitleProps, type TimelineVariant, Toaster, type ToasterProps, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupOrientationType, type ToggleGroupProps, type ToggleProps, type ToggleSize, type ToggleVariant, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, TypingText, type TypingTextAnimationVariant, type TypingTextProps, WordRotate, type WordRotateAnimationStyle, type WordRotateProps, useColorPickerStore, useComboboxAnchor, useFileUploadContext, useFileUploadItemContext, useFileUploadStore, useSidebar, useSidebarContext, useSortableItemContext, useStepperContext, useStepperFocusContext, useStepperItemContext };
|
|
@@ -8,6 +8,7 @@ import { ToasterProps as ToasterProps$1 } from 'sonner';
|
|
|
8
8
|
export { toast } from 'sonner';
|
|
9
9
|
import { UseInViewOptions, MotionProps } from 'motion/react';
|
|
10
10
|
import { DragEndEvent, DragStartEvent, Modifiers, DraggableSyntheticListeners, DragOverlay, UniqueIdentifier } from '@dnd-kit/core';
|
|
11
|
+
import { Combobox as Combobox$1 } from '@base-ui/react';
|
|
11
12
|
|
|
12
13
|
type AlertDialogProps = React.ComponentProps<typeof AlertDialog$1.Root>;
|
|
13
14
|
declare function AlertDialog(props: AlertDialogProps): react_jsx_runtime.JSX.Element;
|
|
@@ -58,7 +59,7 @@ type AvatarFallbackProps = React.ComponentProps<typeof Avatar$1.Fallback>;
|
|
|
58
59
|
declare function AvatarFallback({ className, ...props }: AvatarFallbackProps): react_jsx_runtime.JSX.Element;
|
|
59
60
|
|
|
60
61
|
declare const badgeVariants: (props?: {
|
|
61
|
-
variant?: "
|
|
62
|
+
variant?: "outline" | "secondary" | "error" | "primary" | "success" | "warning";
|
|
62
63
|
} & class_variance_authority_types.ClassProp) => string;
|
|
63
64
|
|
|
64
65
|
type BadgeVariantsProps = VariantProps<typeof badgeVariants>;
|
|
@@ -95,10 +96,6 @@ type ButtonProps = React.ComponentProps<"button"> & {
|
|
|
95
96
|
* Defines button content
|
|
96
97
|
*/
|
|
97
98
|
children?: React.ReactNode;
|
|
98
|
-
/**
|
|
99
|
-
* Disabled button
|
|
100
|
-
*/
|
|
101
|
-
disabled?: boolean;
|
|
102
99
|
/**
|
|
103
100
|
* Defines left icon
|
|
104
101
|
*/
|
|
@@ -120,8 +117,8 @@ type ButtonProps = React.ComponentProps<"button"> & {
|
|
|
120
117
|
declare function Button({ asChild, variant, disabled, fullWidth, loadingPosition: loadingPositionProp, children, type, loading, size, endIcon, startIcon, className, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
121
118
|
|
|
122
119
|
declare const buttonVariants: (props?: {
|
|
123
|
-
variant?: "link" | "default" | "
|
|
124
|
-
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg";
|
|
120
|
+
variant?: "link" | "default" | "outline" | "secondary" | "ghost" | "error";
|
|
121
|
+
size?: "default" | "sm" | "xs" | "lg" | "icon-xs" | "icon-sm" | "icon" | "icon-lg";
|
|
125
122
|
fullWidth?: boolean;
|
|
126
123
|
} & class_variance_authority_types.ClassProp) => string;
|
|
127
124
|
|
|
@@ -313,7 +310,7 @@ type DialogContentProps = React.ComponentProps<typeof Dialog$1.Content> & {
|
|
|
313
310
|
declare function DialogContent({ className, children, width, showCloseButton, ...props }: DialogContentProps): react_jsx_runtime.JSX.Element;
|
|
314
311
|
|
|
315
312
|
declare const dialogContentVariants: (props?: {
|
|
316
|
-
width?: "sm" | "
|
|
313
|
+
width?: "sm" | "xs" | "lg" | "md" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "full";
|
|
317
314
|
} & class_variance_authority_types.ClassProp) => string;
|
|
318
315
|
|
|
319
316
|
type DialogContentCvaProps = VariantProps<typeof dialogContentVariants>;
|
|
@@ -393,6 +390,48 @@ type HeaderProps = React.ComponentProps<"header"> & {
|
|
|
393
390
|
};
|
|
394
391
|
declare function Header({ children, variant, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
395
392
|
|
|
393
|
+
type InputGroupProps = React.ComponentProps<"div"> & {
|
|
394
|
+
invalid?: boolean;
|
|
395
|
+
};
|
|
396
|
+
declare function InputGroup({ className, invalid, ...props }: InputGroupProps): react_jsx_runtime.JSX.Element;
|
|
397
|
+
|
|
398
|
+
declare const inputGroupAddonVariants: (props?: {
|
|
399
|
+
align?: "inline-start" | "inline-end" | "block-end" | "block-start";
|
|
400
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
401
|
+
|
|
402
|
+
declare const inputGroupButtonVariants: (props?: {
|
|
403
|
+
size?: "sm" | "xs" | "icon-xs" | "icon-sm";
|
|
404
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
405
|
+
|
|
406
|
+
type InputGroupAddonVariantsProps = VariantProps<typeof inputGroupAddonVariants>;
|
|
407
|
+
type InputGroupAddonAlignType = NonNullable<InputGroupAddonVariantsProps["align"]>;
|
|
408
|
+
type InputGroupButtonVariantsProps = VariantProps<typeof inputGroupButtonVariants>;
|
|
409
|
+
type InputGroupButtonSizeType = NonNullable<InputGroupButtonVariantsProps["size"]>;
|
|
410
|
+
|
|
411
|
+
type InputGroupAddonProps = React.ComponentProps<"div"> & {
|
|
412
|
+
align?: InputGroupAddonAlignType;
|
|
413
|
+
};
|
|
414
|
+
declare function InputGroupAddon({ className, align, ...props }: InputGroupAddonProps): react_jsx_runtime.JSX.Element;
|
|
415
|
+
|
|
416
|
+
type InputGroupButtonProps = Omit<React.ComponentProps<typeof Button>, "size"> & {
|
|
417
|
+
size?: InputGroupButtonSizeType;
|
|
418
|
+
};
|
|
419
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: InputGroupButtonProps): react_jsx_runtime.JSX.Element;
|
|
420
|
+
|
|
421
|
+
type InputGroupInputProps = React.ComponentProps<typeof Input>;
|
|
422
|
+
declare function InputGroupInput({ className, ...props }: InputGroupInputProps): react_jsx_runtime.JSX.Element;
|
|
423
|
+
|
|
424
|
+
type InputGroupTextProps = React.ComponentProps<"span">;
|
|
425
|
+
declare function InputGroupText({ className, ...props }: InputGroupTextProps): react_jsx_runtime.JSX.Element;
|
|
426
|
+
|
|
427
|
+
type TextareaProps = React.ComponentProps<"textarea"> & {
|
|
428
|
+
invalid?: boolean;
|
|
429
|
+
};
|
|
430
|
+
declare function Textarea({ className, invalid, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
|
|
431
|
+
|
|
432
|
+
type InputGroupTextareaProps = React.ComponentProps<typeof Textarea>;
|
|
433
|
+
declare function InputGroupTextarea({ className, ...props }: InputGroupTextareaProps): react_jsx_runtime.JSX.Element;
|
|
434
|
+
|
|
396
435
|
type ItemProps = React.ComponentProps<"div"> & {
|
|
397
436
|
asChild?: boolean;
|
|
398
437
|
variant?: ItemVariantType;
|
|
@@ -747,11 +786,6 @@ declare function TabsTrigger({ className, ...props }: TabsTriggerProps): react_j
|
|
|
747
786
|
type TabsContentProps = React.ComponentProps<typeof Tabs$1.Content>;
|
|
748
787
|
declare function TabsContent({ className, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element;
|
|
749
788
|
|
|
750
|
-
type TextareaProps = React.ComponentProps<"textarea"> & {
|
|
751
|
-
invalid?: boolean;
|
|
752
|
-
};
|
|
753
|
-
declare function Textarea({ className, invalid, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
|
|
754
|
-
|
|
755
789
|
type TimelineProps = React.ComponentProps<"div"> & {
|
|
756
790
|
asChild?: boolean;
|
|
757
791
|
dir?: TimelineDirection;
|
|
@@ -1669,4 +1703,64 @@ declare function PaginationNext({ className, text, ...props }: PaginationNextPro
|
|
|
1669
1703
|
type PaginationEllipsisProps = React.ComponentProps<"span">;
|
|
1670
1704
|
declare function PaginationEllipsis({ className, ...props }: PaginationEllipsisProps): react_jsx_runtime.JSX.Element;
|
|
1671
1705
|
|
|
1672
|
-
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, type AlertDialogContentSize, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogMedia, type AlertDialogMediaProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, type ButtonSizeType, type ButtonVariantType, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, type ColorFormat, ColorPicker, ColorPickerAlphaSlider, type ColorPickerAlphaSliderProps, ColorPickerArea, type ColorPickerAreaProps, ColorPickerContent, type ColorPickerContentProps, type ColorPickerContextValue, ColorPickerEyeDropper, type ColorPickerEyeDropperProps, ColorPickerFormatSelect, type ColorPickerFormatSelectProps, ColorPickerHueSlider, type ColorPickerHueSliderProps, ColorPickerInput, type ColorPickerInputProps, type ColorPickerProps, ColorPickerSwatch, type ColorPickerSwatchProps, ColorPickerTrigger, type ColorPickerTriggerProps, ColorSwatch, type ColorSwatchProps, type ColorSwatchSize, type ColorValue, CountingNumber, type CountingNumberProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, type DialogContentWidth, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, type Direction$2 as Direction, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuItemVariant, type DropdownMenuItemVariantType, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, Empty, EmptyContent, type EmptyContentProps, EmptyDescription, type EmptyDescriptionProps, EmptyHeader, type EmptyHeaderProps, EmptyMedia, type EmptyMediaProps, type EmptyProps, EmptyTitle, type EmptyTitleProps, type EyeDropper, Field, FieldContent, type FieldContentProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldLegendProps, type FieldProps, FieldSeparator, type FieldSeparatorProps, FieldSet, type FieldSetProps, FieldTitle, type FieldTitleProps, type FileState, FileUpload, FileUploadClear, type FileUploadClearProps, type FileUploadContextValue, FileUploadDropzone, type FileUploadDropzoneProps, FileUploadItem, type FileUploadItemContextValue, FileUploadItemDelete, type FileUploadItemDeleteProps, FileUploadItemMetadata, type FileUploadItemMetadataProps, FileUploadItemPreview, type FileUploadItemPreviewProps, FileUploadItemProgress, type FileUploadItemProgressProps, type FileUploadItemProps, FileUploadList, type FileUploadListOrientationType, type FileUploadListProps, type FileUploadProps, type FileUploadStoreState, FileUploadTrigger, type FileUploadTriggerProps, type FileUploadUploadOptions, type HSVColorValue, Header, type HeaderProps, Input, type InputProps, Item, ItemActions, type ItemActionsProps, ItemContent, type ItemContentProps, ItemDescription, type ItemDescriptionProps, type ItemElement, ItemFooter, type ItemFooterProps, ItemGroup, type ItemGroupProps, ItemHeader, type ItemHeaderProps, ItemMedia, type ItemMediaProps, type ItemMediaVariantType, type ItemProps, ItemSeparator, type ItemSeparatorProps, type ItemSizeType, ItemTitle, type ItemTitleProps, type ItemVariantType, Label, type LabelProps, Marquee, type MarqueeProps, Masonry, type MasonryCache, type MasonryCacheConstructor, type MasonryCacheKey, type MasonryElement, type MasonryIntervalTree, MasonryItem, type MasonryItemElement, type MasonryItemProps, type MasonryListNode, type MasonryPositioner, type MasonryPositionerItem, type MasonryProps, type MasonryTree, type MasonryTreeNode, type NodeColor, type NodeOperation, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, type PopoverProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, Separator, type SeparatorProps, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentSide, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, type SheetProps, type SheetContentSide as SheetSide, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, Sidebar, type SidebarCollapsible, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, type SidebarMenuButtonSizeType, type SidebarMenuButtonVariantType, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, type SidebarMenuSubButtonSize, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarSide, SidebarTrigger, type SidebarTriggerProps, type SidebarVariant, Skeleton, type SkeletonProps, Sortable, SortableItem, SortableItemHandle, type SortableItemHandleProps, type SortableItemProps, SortableOverlay, type SortableOverlayProps, type SortableProps, Spinner, type SpinnerProps, Status, StatusIndicator, type StatusIndicatorProps, StatusLabel, type StatusLabelProps, type StatusProps, type StatusVariant, type StepIndicators, Stepper, StepperActivationMode, StepperContent, type StepperContentProps, StepperDataState, StepperDescription, type StepperDescriptionProps, type StepperDirection, StepperFocusIntent, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, StepperNav, type StepperNavProps, StepperNavigationDirection, StepperNextTrigger, type StepperNextTriggerProps, StepperOrientation, StepperPanel, type StepperPanelProps, StepperPrevTrigger, type StepperPrevTriggerProps, type StepperProps, StepperTitle, type StepperTitleProps, StepperTrigger, type StepperTriggerElement, type StepperTriggerProps, Switch, type SwitchProps, type SwitchSizeType, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsListVariantType, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDescription, type TimelineDescriptionProps, type TimelineDirection, TimelineDot, type TimelineDotProps, TimelineHeader, type TimelineHeaderProps, TimelineItem, type TimelineItemElement, type TimelineItemProps, type TimelineOrientation, type TimelineProps, type TimelineStatus, TimelineTime, type TimelineTimeProps, TimelineTitle, type TimelineTitleProps, type TimelineVariant, Toaster, type ToasterProps, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupOrientationType, type ToggleGroupProps, type ToggleProps, type ToggleSize, type ToggleVariant, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, TypingText, type TypingTextAnimationVariant, type TypingTextProps, WordRotate, type WordRotateAnimationStyle, type WordRotateProps, useColorPickerStore, useFileUploadContext, useFileUploadItemContext, useFileUploadStore, useSidebar, useSidebarContext, useSortableItemContext, useStepperContext, useStepperFocusContext, useStepperItemContext };
|
|
1706
|
+
type KbdProps = React.ComponentProps<"kbd">;
|
|
1707
|
+
declare function Kbd({ className, ...props }: KbdProps): react_jsx_runtime.JSX.Element;
|
|
1708
|
+
|
|
1709
|
+
type KbdGroup = React.ComponentProps<"div">;
|
|
1710
|
+
declare function KbdGroup({ className, ...props }: KbdGroup): react_jsx_runtime.JSX.Element;
|
|
1711
|
+
|
|
1712
|
+
type ComboboxProps = React.ComponentProps<typeof Combobox$1.Root>;
|
|
1713
|
+
declare const Combobox: typeof Combobox$1.Root;
|
|
1714
|
+
declare function useComboboxAnchor(): React.RefObject<HTMLDivElement>;
|
|
1715
|
+
|
|
1716
|
+
type ComboboxValueProps = Combobox$1.Value.Props;
|
|
1717
|
+
declare function ComboboxValue({ ...props }: ComboboxValueProps): react_jsx_runtime.JSX.Element;
|
|
1718
|
+
|
|
1719
|
+
type ComboboxTriggerProps = Combobox$1.Trigger.Props;
|
|
1720
|
+
declare function ComboboxTrigger({ className, children, ...props }: ComboboxTriggerProps): react_jsx_runtime.JSX.Element;
|
|
1721
|
+
|
|
1722
|
+
type ComboboxClearProps = Combobox$1.Clear.Props;
|
|
1723
|
+
declare function ComboboxClear({ className, ...props }: ComboboxClearProps): react_jsx_runtime.JSX.Element;
|
|
1724
|
+
|
|
1725
|
+
type ComboboxInputProps = Combobox$1.Input.Props & {
|
|
1726
|
+
showTrigger?: boolean;
|
|
1727
|
+
showClear?: boolean;
|
|
1728
|
+
};
|
|
1729
|
+
declare function ComboboxInput({ className, children, disabled, showTrigger, showClear, ...props }: ComboboxInputProps): react_jsx_runtime.JSX.Element;
|
|
1730
|
+
|
|
1731
|
+
type ComboboxContentProps = Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">;
|
|
1732
|
+
declare function ComboboxContent({ className, side, sideOffset, align, alignOffset, anchor, ...props }: ComboboxContentProps): react_jsx_runtime.JSX.Element;
|
|
1733
|
+
|
|
1734
|
+
type ComboboxListProps = Combobox$1.List.Props;
|
|
1735
|
+
declare function ComboboxList({ className, ...props }: ComboboxListProps): react_jsx_runtime.JSX.Element;
|
|
1736
|
+
|
|
1737
|
+
type ComboboxItemProps = Combobox$1.Item.Props;
|
|
1738
|
+
declare function ComboboxItem({ className, children, ...props }: ComboboxItemProps): react_jsx_runtime.JSX.Element;
|
|
1739
|
+
|
|
1740
|
+
type ComboboxGroupProps = Combobox$1.Group.Props;
|
|
1741
|
+
declare function ComboboxGroup({ className, ...props }: ComboboxGroupProps): react_jsx_runtime.JSX.Element;
|
|
1742
|
+
|
|
1743
|
+
type ComboboxLabelProps = Combobox$1.GroupLabel.Props;
|
|
1744
|
+
declare function ComboboxLabel({ className, ...props }: ComboboxLabelProps): react_jsx_runtime.JSX.Element;
|
|
1745
|
+
|
|
1746
|
+
type ComboboxCollectionProps = Combobox$1.Collection.Props;
|
|
1747
|
+
declare function ComboboxCollection({ ...props }: ComboboxCollectionProps): react_jsx_runtime.JSX.Element;
|
|
1748
|
+
|
|
1749
|
+
type ComboboxEmptyProps = Combobox$1.Empty.Props;
|
|
1750
|
+
declare function ComboboxEmpty({ className, ...props }: ComboboxEmptyProps): react_jsx_runtime.JSX.Element;
|
|
1751
|
+
|
|
1752
|
+
type ComboboxSeparatorProps = Combobox$1.Separator.Props;
|
|
1753
|
+
declare function ComboboxSeparator({ className, ...props }: ComboboxSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
1754
|
+
|
|
1755
|
+
type ComboboxChipsProps = React.ComponentPropsWithRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props;
|
|
1756
|
+
declare function ComboboxChips({ className, ...props }: ComboboxChipsProps): react_jsx_runtime.JSX.Element;
|
|
1757
|
+
|
|
1758
|
+
type ComboboxChipProps = Combobox$1.Chip.Props & {
|
|
1759
|
+
showRemove?: boolean;
|
|
1760
|
+
};
|
|
1761
|
+
declare function ComboboxChip({ className, children, showRemove, ...props }: ComboboxChipProps): react_jsx_runtime.JSX.Element;
|
|
1762
|
+
|
|
1763
|
+
type ComboboxChipsInputProps = Combobox$1.Input.Props;
|
|
1764
|
+
declare function ComboboxChipsInput({ className, ...props }: ComboboxChipsInputProps): react_jsx_runtime.JSX.Element;
|
|
1765
|
+
|
|
1766
|
+
export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, type AlertDialogContentSize, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogMedia, type AlertDialogMediaProps, type AlertDialogProps, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertDialogTriggerProps, type AlertProps, AlertTitle, type AlertTitleProps, type AlertVariant, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, BadgeButton, type BadgeButtonProps, BadgeDot, type BadgeDotProps, type BadgeProps, type BadgeVariant, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, type ButtonSizeType, type ButtonVariantType, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, type ColorFormat, ColorPicker, ColorPickerAlphaSlider, type ColorPickerAlphaSliderProps, ColorPickerArea, type ColorPickerAreaProps, ColorPickerContent, type ColorPickerContentProps, type ColorPickerContextValue, ColorPickerEyeDropper, type ColorPickerEyeDropperProps, ColorPickerFormatSelect, type ColorPickerFormatSelectProps, ColorPickerHueSlider, type ColorPickerHueSliderProps, ColorPickerInput, type ColorPickerInputProps, type ColorPickerProps, ColorPickerSwatch, type ColorPickerSwatchProps, ColorPickerTrigger, type ColorPickerTriggerProps, ColorSwatch, type ColorSwatchProps, type ColorSwatchSize, type ColorValue, Combobox, ComboboxChip, type ComboboxChipProps, ComboboxChips, ComboboxChipsInput, type ComboboxChipsInputProps, type ComboboxChipsProps, ComboboxClear, type ComboboxClearProps, ComboboxCollection, type ComboboxCollectionProps, ComboboxContent, type ComboboxContentProps, ComboboxEmpty, type ComboboxEmptyProps, ComboboxGroup, type ComboboxGroupProps, ComboboxInput, type ComboboxInputProps, ComboboxItem, type ComboboxItemProps, ComboboxLabel, type ComboboxLabelProps, ComboboxList, type ComboboxListProps, type ComboboxProps, ComboboxSeparator, type ComboboxSeparatorProps, ComboboxTrigger, type ComboboxTriggerProps, ComboboxValue, type ComboboxValueProps, CountingNumber, type CountingNumberProps, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, type DialogContentWidth, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, type Direction$2 as Direction, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, type DropdownMenuGroupProps, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuItemVariant, type DropdownMenuItemVariantType, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, DropdownMenuRadioGroup, type DropdownMenuRadioGroupProps, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, type DropdownMenuSubProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type DropdownMenuTriggerProps, Empty, EmptyContent, type EmptyContentProps, EmptyDescription, type EmptyDescriptionProps, EmptyHeader, type EmptyHeaderProps, EmptyMedia, type EmptyMediaProps, type EmptyProps, EmptyTitle, type EmptyTitleProps, type EyeDropper, Field, FieldContent, type FieldContentProps, FieldDescription, type FieldDescriptionProps, FieldError, type FieldErrorProps, FieldGroup, type FieldGroupProps, FieldLabel, type FieldLabelProps, FieldLegend, type FieldLegendProps, type FieldProps, FieldSeparator, type FieldSeparatorProps, FieldSet, type FieldSetProps, FieldTitle, type FieldTitleProps, type FileState, FileUpload, FileUploadClear, type FileUploadClearProps, type FileUploadContextValue, FileUploadDropzone, type FileUploadDropzoneProps, FileUploadItem, type FileUploadItemContextValue, FileUploadItemDelete, type FileUploadItemDeleteProps, FileUploadItemMetadata, type FileUploadItemMetadataProps, FileUploadItemPreview, type FileUploadItemPreviewProps, FileUploadItemProgress, type FileUploadItemProgressProps, type FileUploadItemProps, FileUploadList, type FileUploadListOrientationType, type FileUploadListProps, type FileUploadProps, type FileUploadStoreState, FileUploadTrigger, type FileUploadTriggerProps, type FileUploadUploadOptions, type HSVColorValue, Header, type HeaderProps, Input, InputGroup, InputGroupAddon, type InputGroupAddonAlignType, type InputGroupAddonProps, InputGroupButton, type InputGroupButtonProps, type InputGroupButtonSizeType, InputGroupInput, type InputGroupInputProps, type InputGroupProps, InputGroupText, type InputGroupTextProps, InputGroupTextarea, type InputGroupTextareaProps, type InputProps, Item, ItemActions, type ItemActionsProps, ItemContent, type ItemContentProps, ItemDescription, type ItemDescriptionProps, type ItemElement, ItemFooter, type ItemFooterProps, ItemGroup, type ItemGroupProps, ItemHeader, type ItemHeaderProps, ItemMedia, type ItemMediaProps, type ItemMediaVariantType, type ItemProps, ItemSeparator, type ItemSeparatorProps, type ItemSizeType, ItemTitle, type ItemTitleProps, type ItemVariantType, Kbd, KbdGroup, type KbdProps, Label, type LabelProps, Marquee, type MarqueeProps, Masonry, type MasonryCache, type MasonryCacheConstructor, type MasonryCacheKey, type MasonryElement, type MasonryIntervalTree, MasonryItem, type MasonryItemElement, type MasonryItemProps, type MasonryListNode, type MasonryPositioner, type MasonryPositionerItem, type MasonryProps, type MasonryTree, type MasonryTreeNode, type NodeColor, type NodeOperation, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, Popover, PopoverAnchor, type PopoverAnchorProps, PopoverContent, type PopoverContentProps, PopoverDescription, type PopoverDescriptionProps, PopoverHeader, type PopoverHeaderProps, type PopoverProps, PopoverTitle, type PopoverTitleProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps, Select, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectItem, type SelectItemProps, SelectLabel, type SelectLabelProps, type SelectProps, SelectSeparator, type SelectSeparatorProps, Separator, type SeparatorProps, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentSide, SheetDescription, type SheetDescriptionProps, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, type SheetProps, type SheetContentSide as SheetSide, SheetTitle, type SheetTitleProps, SheetTrigger, type SheetTriggerProps, Sidebar, type SidebarCollapsible, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupAction, type SidebarGroupActionProps, SidebarGroupContent, type SidebarGroupContentProps, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarInput, type SidebarInputProps, SidebarInset, type SidebarInsetProps, SidebarMenu, SidebarMenuAction, type SidebarMenuActionProps, SidebarMenuBadge, type SidebarMenuBadgeProps, SidebarMenuButton, type SidebarMenuButtonProps, type SidebarMenuButtonSizeType, type SidebarMenuButtonVariantType, SidebarMenuItem, type SidebarMenuItemProps, type SidebarMenuProps, SidebarMenuSkeleton, type SidebarMenuSkeletonProps, SidebarMenuSub, SidebarMenuSubButton, type SidebarMenuSubButtonProps, type SidebarMenuSubButtonSize, SidebarMenuSubItem, type SidebarMenuSubItemProps, type SidebarMenuSubProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarRail, type SidebarRailProps, SidebarSeparator, type SidebarSeparatorProps, type SidebarSide, SidebarTrigger, type SidebarTriggerProps, type SidebarVariant, Skeleton, type SkeletonProps, Sortable, SortableItem, SortableItemHandle, type SortableItemHandleProps, type SortableItemProps, SortableOverlay, type SortableOverlayProps, type SortableProps, Spinner, type SpinnerProps, Status, StatusIndicator, type StatusIndicatorProps, StatusLabel, type StatusLabelProps, type StatusProps, type StatusVariant, type StepIndicators, Stepper, StepperActivationMode, StepperContent, type StepperContentProps, StepperDataState, StepperDescription, type StepperDescriptionProps, type StepperDirection, StepperFocusIntent, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, StepperNav, type StepperNavProps, StepperNavigationDirection, StepperNextTrigger, type StepperNextTriggerProps, StepperOrientation, StepperPanel, type StepperPanelProps, StepperPrevTrigger, type StepperPrevTriggerProps, type StepperProps, StepperTitle, type StepperTitleProps, StepperTrigger, type StepperTriggerElement, type StepperTriggerProps, Switch, type SwitchProps, type SwitchSizeType, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsListVariantType, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, Timeline, TimelineConnector, type TimelineConnectorProps, TimelineContent, type TimelineContentProps, TimelineDescription, type TimelineDescriptionProps, type TimelineDirection, TimelineDot, type TimelineDotProps, TimelineHeader, type TimelineHeaderProps, TimelineItem, type TimelineItemElement, type TimelineItemProps, type TimelineOrientation, type TimelineProps, type TimelineStatus, TimelineTime, type TimelineTimeProps, TimelineTitle, type TimelineTitleProps, type TimelineVariant, Toaster, type ToasterProps, Toggle, ToggleGroup, ToggleGroupItem, type ToggleGroupItemProps, type ToggleGroupOrientationType, type ToggleGroupProps, type ToggleProps, type ToggleSize, type ToggleVariant, Tooltip, TooltipContent, type TooltipContentProps, type TooltipProps, TooltipTrigger, type TooltipTriggerProps, TypingText, type TypingTextAnimationVariant, type TypingTextProps, WordRotate, type WordRotateAnimationStyle, type WordRotateProps, useColorPickerStore, useComboboxAnchor, useFileUploadContext, useFileUploadItemContext, useFileUploadStore, useSidebar, useSidebarContext, useSortableItemContext, useStepperContext, useStepperFocusContext, useStepperItemContext };
|