@szum-tech/design-system 3.19.3 → 3.21.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/README.md +133 -64
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.cts +132 -18
- package/dist/components/index.d.ts +132 -18
- package/dist/components/index.js +1 -1
- package/package.json +8 -7
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import React__default from 'react';
|
|
4
|
-
import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Popover as Popover$1, Slider, Select as Select$1, Checkbox as Checkbox$1, Dialog as Dialog$1, Label as Label$1,
|
|
4
|
+
import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Separator as Separator$1, Popover as Popover$1, Slider, Select as Select$1, Checkbox as Checkbox$1, Dialog as Dialog$1, Label as Label$1, Progress as Progress$1, Switch as Switch$1, Tabs as Tabs$1, Tooltip as Tooltip$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Accordion as Accordion$1, DropdownMenu as DropdownMenu$1, Collapsible as Collapsible$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1 } from 'radix-ui';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
7
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
|
|
|
@@ -129,6 +126,29 @@ type ButtonCvaProps = VariantProps<typeof buttonVariants>;
|
|
|
129
126
|
type ButtonSizeType = NonNullable<ButtonCvaProps["size"]>;
|
|
130
127
|
type ButtonVariantType = NonNullable<ButtonCvaProps["variant"]>;
|
|
131
128
|
|
|
129
|
+
declare const buttonGroupVariants: (props?: {
|
|
130
|
+
orientation?: "horizontal" | "vertical";
|
|
131
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
132
|
+
|
|
133
|
+
type ButtonGroupCvaProps = VariantProps<typeof buttonGroupVariants>;
|
|
134
|
+
type ButtonGroupOrientationType = NonNullable<ButtonGroupCvaProps["orientation"]>;
|
|
135
|
+
|
|
136
|
+
type ButtonGroupProps = React.ComponentProps<"div"> & {
|
|
137
|
+
orientation?: ButtonGroupOrientationType;
|
|
138
|
+
};
|
|
139
|
+
declare function ButtonGroup({ className, orientation, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
140
|
+
|
|
141
|
+
type ButtonGroupTextProps = React.ComponentProps<"div"> & {
|
|
142
|
+
asChild?: boolean;
|
|
143
|
+
};
|
|
144
|
+
declare function ButtonGroupText({ className, asChild, ...props }: ButtonGroupTextProps): react_jsx_runtime.JSX.Element;
|
|
145
|
+
|
|
146
|
+
type SeparatorProps = React.ComponentProps<typeof Separator$1.Root>;
|
|
147
|
+
declare function Separator({ className, orientation, decorative, ...props }: SeparatorProps): react_jsx_runtime.JSX.Element;
|
|
148
|
+
|
|
149
|
+
type ButtonGroupSeparatorProps = React.ComponentProps<typeof Separator>;
|
|
150
|
+
declare function ButtonGroupSeparator({ className, orientation, ...props }: ButtonGroupSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
151
|
+
|
|
132
152
|
type CardProps = React.ComponentProps<"div">;
|
|
133
153
|
declare function Card({ className, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
134
154
|
|
|
@@ -313,7 +333,7 @@ type DialogContentProps = React.ComponentProps<typeof Dialog$1.Content> & {
|
|
|
313
333
|
declare function DialogContent({ className, children, width, showCloseButton, ...props }: DialogContentProps): react_jsx_runtime.JSX.Element;
|
|
314
334
|
|
|
315
335
|
declare const dialogContentVariants: (props?: {
|
|
316
|
-
width?: "sm" | "
|
|
336
|
+
width?: "sm" | "xs" | "lg" | "md" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "full";
|
|
317
337
|
} & class_variance_authority_types.ClassProp) => string;
|
|
318
338
|
|
|
319
339
|
type DialogContentCvaProps = VariantProps<typeof dialogContentVariants>;
|
|
@@ -393,6 +413,48 @@ type HeaderProps = React.ComponentProps<"header"> & {
|
|
|
393
413
|
};
|
|
394
414
|
declare function Header({ children, variant, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
395
415
|
|
|
416
|
+
type InputGroupProps = React.ComponentProps<"div"> & {
|
|
417
|
+
invalid?: boolean;
|
|
418
|
+
};
|
|
419
|
+
declare function InputGroup({ className, invalid, ...props }: InputGroupProps): react_jsx_runtime.JSX.Element;
|
|
420
|
+
|
|
421
|
+
declare const inputGroupAddonVariants: (props?: {
|
|
422
|
+
align?: "inline-start" | "inline-end" | "block-end" | "block-start";
|
|
423
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
424
|
+
|
|
425
|
+
declare const inputGroupButtonVariants: (props?: {
|
|
426
|
+
size?: "sm" | "xs" | "icon-xs" | "icon-sm";
|
|
427
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
428
|
+
|
|
429
|
+
type InputGroupAddonVariantsProps = VariantProps<typeof inputGroupAddonVariants>;
|
|
430
|
+
type InputGroupAddonAlignType = NonNullable<InputGroupAddonVariantsProps["align"]>;
|
|
431
|
+
type InputGroupButtonVariantsProps = VariantProps<typeof inputGroupButtonVariants>;
|
|
432
|
+
type InputGroupButtonSizeType = NonNullable<InputGroupButtonVariantsProps["size"]>;
|
|
433
|
+
|
|
434
|
+
type InputGroupAddonProps = React.ComponentProps<"div"> & {
|
|
435
|
+
align?: InputGroupAddonAlignType;
|
|
436
|
+
};
|
|
437
|
+
declare function InputGroupAddon({ className, align, ...props }: InputGroupAddonProps): react_jsx_runtime.JSX.Element;
|
|
438
|
+
|
|
439
|
+
type InputGroupButtonProps = Omit<React.ComponentProps<typeof Button>, "size"> & {
|
|
440
|
+
size?: InputGroupButtonSizeType;
|
|
441
|
+
};
|
|
442
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: InputGroupButtonProps): react_jsx_runtime.JSX.Element;
|
|
443
|
+
|
|
444
|
+
type InputGroupInputProps = React.ComponentProps<typeof Input>;
|
|
445
|
+
declare function InputGroupInput({ className, ...props }: InputGroupInputProps): react_jsx_runtime.JSX.Element;
|
|
446
|
+
|
|
447
|
+
type InputGroupTextProps = React.ComponentProps<"span">;
|
|
448
|
+
declare function InputGroupText({ className, ...props }: InputGroupTextProps): react_jsx_runtime.JSX.Element;
|
|
449
|
+
|
|
450
|
+
type TextareaProps = React.ComponentProps<"textarea"> & {
|
|
451
|
+
invalid?: boolean;
|
|
452
|
+
};
|
|
453
|
+
declare function Textarea({ className, invalid, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
|
|
454
|
+
|
|
455
|
+
type InputGroupTextareaProps = React.ComponentProps<typeof Textarea>;
|
|
456
|
+
declare function InputGroupTextarea({ className, ...props }: InputGroupTextareaProps): react_jsx_runtime.JSX.Element;
|
|
457
|
+
|
|
396
458
|
type ItemProps = React.ComponentProps<"div"> & {
|
|
397
459
|
asChild?: boolean;
|
|
398
460
|
variant?: ItemVariantType;
|
|
@@ -442,9 +504,6 @@ declare function ItemHeader({ className, ...props }: ItemHeaderProps): react_jsx
|
|
|
442
504
|
type ItemTitleProps = React.ComponentProps<"div">;
|
|
443
505
|
declare function ItemTitle({ className, ...props }: ItemTitleProps): react_jsx_runtime.JSX.Element;
|
|
444
506
|
|
|
445
|
-
type SeparatorProps = React.ComponentProps<typeof Separator$1.Root>;
|
|
446
|
-
declare function Separator({ className, orientation, decorative, ...props }: SeparatorProps): react_jsx_runtime.JSX.Element;
|
|
447
|
-
|
|
448
507
|
type ItemSeparatorProps = React.ComponentProps<typeof Separator>;
|
|
449
508
|
declare function ItemSeparator({ className, ...props }: ItemSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
450
509
|
|
|
@@ -747,11 +806,6 @@ declare function TabsTrigger({ className, ...props }: TabsTriggerProps): react_j
|
|
|
747
806
|
type TabsContentProps = React.ComponentProps<typeof Tabs$1.Content>;
|
|
748
807
|
declare function TabsContent({ className, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element;
|
|
749
808
|
|
|
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
809
|
type TimelineProps = React.ComponentProps<"div"> & {
|
|
756
810
|
asChild?: boolean;
|
|
757
811
|
dir?: TimelineDirection;
|
|
@@ -1669,4 +1723,64 @@ declare function PaginationNext({ className, text, ...props }: PaginationNextPro
|
|
|
1669
1723
|
type PaginationEllipsisProps = React.ComponentProps<"span">;
|
|
1670
1724
|
declare function PaginationEllipsis({ className, ...props }: PaginationEllipsisProps): react_jsx_runtime.JSX.Element;
|
|
1671
1725
|
|
|
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 };
|
|
1726
|
+
type KbdProps = React.ComponentProps<"kbd">;
|
|
1727
|
+
declare function Kbd({ className, ...props }: KbdProps): react_jsx_runtime.JSX.Element;
|
|
1728
|
+
|
|
1729
|
+
type KbdGroup = React.ComponentProps<"div">;
|
|
1730
|
+
declare function KbdGroup({ className, ...props }: KbdGroup): react_jsx_runtime.JSX.Element;
|
|
1731
|
+
|
|
1732
|
+
type ComboboxProps = React.ComponentProps<typeof Combobox$1.Root>;
|
|
1733
|
+
declare const Combobox: typeof Combobox$1.Root;
|
|
1734
|
+
declare function useComboboxAnchor(): React.RefObject<HTMLDivElement>;
|
|
1735
|
+
|
|
1736
|
+
type ComboboxValueProps = Combobox$1.Value.Props;
|
|
1737
|
+
declare function ComboboxValue({ ...props }: ComboboxValueProps): react_jsx_runtime.JSX.Element;
|
|
1738
|
+
|
|
1739
|
+
type ComboboxTriggerProps = Combobox$1.Trigger.Props;
|
|
1740
|
+
declare function ComboboxTrigger({ className, children, ...props }: ComboboxTriggerProps): react_jsx_runtime.JSX.Element;
|
|
1741
|
+
|
|
1742
|
+
type ComboboxClearProps = Combobox$1.Clear.Props;
|
|
1743
|
+
declare function ComboboxClear({ className, ...props }: ComboboxClearProps): react_jsx_runtime.JSX.Element;
|
|
1744
|
+
|
|
1745
|
+
type ComboboxInputProps = Combobox$1.Input.Props & {
|
|
1746
|
+
showTrigger?: boolean;
|
|
1747
|
+
showClear?: boolean;
|
|
1748
|
+
};
|
|
1749
|
+
declare function ComboboxInput({ className, children, disabled, showTrigger, showClear, ...props }: ComboboxInputProps): react_jsx_runtime.JSX.Element;
|
|
1750
|
+
|
|
1751
|
+
type ComboboxContentProps = Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">;
|
|
1752
|
+
declare function ComboboxContent({ className, side, sideOffset, align, alignOffset, anchor, ...props }: ComboboxContentProps): react_jsx_runtime.JSX.Element;
|
|
1753
|
+
|
|
1754
|
+
type ComboboxListProps = Combobox$1.List.Props;
|
|
1755
|
+
declare function ComboboxList({ className, ...props }: ComboboxListProps): react_jsx_runtime.JSX.Element;
|
|
1756
|
+
|
|
1757
|
+
type ComboboxItemProps = Combobox$1.Item.Props;
|
|
1758
|
+
declare function ComboboxItem({ className, children, ...props }: ComboboxItemProps): react_jsx_runtime.JSX.Element;
|
|
1759
|
+
|
|
1760
|
+
type ComboboxGroupProps = Combobox$1.Group.Props;
|
|
1761
|
+
declare function ComboboxGroup({ className, ...props }: ComboboxGroupProps): react_jsx_runtime.JSX.Element;
|
|
1762
|
+
|
|
1763
|
+
type ComboboxLabelProps = Combobox$1.GroupLabel.Props;
|
|
1764
|
+
declare function ComboboxLabel({ className, ...props }: ComboboxLabelProps): react_jsx_runtime.JSX.Element;
|
|
1765
|
+
|
|
1766
|
+
type ComboboxCollectionProps = Combobox$1.Collection.Props;
|
|
1767
|
+
declare function ComboboxCollection({ ...props }: ComboboxCollectionProps): react_jsx_runtime.JSX.Element;
|
|
1768
|
+
|
|
1769
|
+
type ComboboxEmptyProps = Combobox$1.Empty.Props;
|
|
1770
|
+
declare function ComboboxEmpty({ className, ...props }: ComboboxEmptyProps): react_jsx_runtime.JSX.Element;
|
|
1771
|
+
|
|
1772
|
+
type ComboboxSeparatorProps = Combobox$1.Separator.Props;
|
|
1773
|
+
declare function ComboboxSeparator({ className, ...props }: ComboboxSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
1774
|
+
|
|
1775
|
+
type ComboboxChipsProps = React.ComponentPropsWithRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props;
|
|
1776
|
+
declare function ComboboxChips({ className, ...props }: ComboboxChipsProps): react_jsx_runtime.JSX.Element;
|
|
1777
|
+
|
|
1778
|
+
type ComboboxChipProps = Combobox$1.Chip.Props & {
|
|
1779
|
+
showRemove?: boolean;
|
|
1780
|
+
};
|
|
1781
|
+
declare function ComboboxChip({ className, children, showRemove, ...props }: ComboboxChipProps): react_jsx_runtime.JSX.Element;
|
|
1782
|
+
|
|
1783
|
+
type ComboboxChipsInputProps = Combobox$1.Input.Props;
|
|
1784
|
+
declare function ComboboxChipsInput({ className, ...props }: ComboboxChipsInputProps): react_jsx_runtime.JSX.Element;
|
|
1785
|
+
|
|
1786
|
+
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, ButtonGroup, type ButtonGroupOrientationType, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, 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 };
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import React__default from 'react';
|
|
4
|
-
import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Popover as Popover$1, Slider, Select as Select$1, Checkbox as Checkbox$1, Dialog as Dialog$1, Label as Label$1,
|
|
4
|
+
import { AlertDialog as AlertDialog$1, Avatar as Avatar$1, Separator as Separator$1, Popover as Popover$1, Slider, Select as Select$1, Checkbox as Checkbox$1, Dialog as Dialog$1, Label as Label$1, Progress as Progress$1, Switch as Switch$1, Tabs as Tabs$1, Tooltip as Tooltip$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Accordion as Accordion$1, DropdownMenu as DropdownMenu$1, Collapsible as Collapsible$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1 } from 'radix-ui';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
7
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
|
|
|
@@ -129,6 +126,29 @@ type ButtonCvaProps = VariantProps<typeof buttonVariants>;
|
|
|
129
126
|
type ButtonSizeType = NonNullable<ButtonCvaProps["size"]>;
|
|
130
127
|
type ButtonVariantType = NonNullable<ButtonCvaProps["variant"]>;
|
|
131
128
|
|
|
129
|
+
declare const buttonGroupVariants: (props?: {
|
|
130
|
+
orientation?: "horizontal" | "vertical";
|
|
131
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
132
|
+
|
|
133
|
+
type ButtonGroupCvaProps = VariantProps<typeof buttonGroupVariants>;
|
|
134
|
+
type ButtonGroupOrientationType = NonNullable<ButtonGroupCvaProps["orientation"]>;
|
|
135
|
+
|
|
136
|
+
type ButtonGroupProps = React.ComponentProps<"div"> & {
|
|
137
|
+
orientation?: ButtonGroupOrientationType;
|
|
138
|
+
};
|
|
139
|
+
declare function ButtonGroup({ className, orientation, ...props }: ButtonGroupProps): react_jsx_runtime.JSX.Element;
|
|
140
|
+
|
|
141
|
+
type ButtonGroupTextProps = React.ComponentProps<"div"> & {
|
|
142
|
+
asChild?: boolean;
|
|
143
|
+
};
|
|
144
|
+
declare function ButtonGroupText({ className, asChild, ...props }: ButtonGroupTextProps): react_jsx_runtime.JSX.Element;
|
|
145
|
+
|
|
146
|
+
type SeparatorProps = React.ComponentProps<typeof Separator$1.Root>;
|
|
147
|
+
declare function Separator({ className, orientation, decorative, ...props }: SeparatorProps): react_jsx_runtime.JSX.Element;
|
|
148
|
+
|
|
149
|
+
type ButtonGroupSeparatorProps = React.ComponentProps<typeof Separator>;
|
|
150
|
+
declare function ButtonGroupSeparator({ className, orientation, ...props }: ButtonGroupSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
151
|
+
|
|
132
152
|
type CardProps = React.ComponentProps<"div">;
|
|
133
153
|
declare function Card({ className, ...props }: CardProps): react_jsx_runtime.JSX.Element;
|
|
134
154
|
|
|
@@ -313,7 +333,7 @@ type DialogContentProps = React.ComponentProps<typeof Dialog$1.Content> & {
|
|
|
313
333
|
declare function DialogContent({ className, children, width, showCloseButton, ...props }: DialogContentProps): react_jsx_runtime.JSX.Element;
|
|
314
334
|
|
|
315
335
|
declare const dialogContentVariants: (props?: {
|
|
316
|
-
width?: "sm" | "
|
|
336
|
+
width?: "sm" | "xs" | "lg" | "md" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "full";
|
|
317
337
|
} & class_variance_authority_types.ClassProp) => string;
|
|
318
338
|
|
|
319
339
|
type DialogContentCvaProps = VariantProps<typeof dialogContentVariants>;
|
|
@@ -393,6 +413,48 @@ type HeaderProps = React.ComponentProps<"header"> & {
|
|
|
393
413
|
};
|
|
394
414
|
declare function Header({ children, variant, ...props }: HeaderProps): react_jsx_runtime.JSX.Element;
|
|
395
415
|
|
|
416
|
+
type InputGroupProps = React.ComponentProps<"div"> & {
|
|
417
|
+
invalid?: boolean;
|
|
418
|
+
};
|
|
419
|
+
declare function InputGroup({ className, invalid, ...props }: InputGroupProps): react_jsx_runtime.JSX.Element;
|
|
420
|
+
|
|
421
|
+
declare const inputGroupAddonVariants: (props?: {
|
|
422
|
+
align?: "inline-start" | "inline-end" | "block-end" | "block-start";
|
|
423
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
424
|
+
|
|
425
|
+
declare const inputGroupButtonVariants: (props?: {
|
|
426
|
+
size?: "sm" | "xs" | "icon-xs" | "icon-sm";
|
|
427
|
+
} & class_variance_authority_types.ClassProp) => string;
|
|
428
|
+
|
|
429
|
+
type InputGroupAddonVariantsProps = VariantProps<typeof inputGroupAddonVariants>;
|
|
430
|
+
type InputGroupAddonAlignType = NonNullable<InputGroupAddonVariantsProps["align"]>;
|
|
431
|
+
type InputGroupButtonVariantsProps = VariantProps<typeof inputGroupButtonVariants>;
|
|
432
|
+
type InputGroupButtonSizeType = NonNullable<InputGroupButtonVariantsProps["size"]>;
|
|
433
|
+
|
|
434
|
+
type InputGroupAddonProps = React.ComponentProps<"div"> & {
|
|
435
|
+
align?: InputGroupAddonAlignType;
|
|
436
|
+
};
|
|
437
|
+
declare function InputGroupAddon({ className, align, ...props }: InputGroupAddonProps): react_jsx_runtime.JSX.Element;
|
|
438
|
+
|
|
439
|
+
type InputGroupButtonProps = Omit<React.ComponentProps<typeof Button>, "size"> & {
|
|
440
|
+
size?: InputGroupButtonSizeType;
|
|
441
|
+
};
|
|
442
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: InputGroupButtonProps): react_jsx_runtime.JSX.Element;
|
|
443
|
+
|
|
444
|
+
type InputGroupInputProps = React.ComponentProps<typeof Input>;
|
|
445
|
+
declare function InputGroupInput({ className, ...props }: InputGroupInputProps): react_jsx_runtime.JSX.Element;
|
|
446
|
+
|
|
447
|
+
type InputGroupTextProps = React.ComponentProps<"span">;
|
|
448
|
+
declare function InputGroupText({ className, ...props }: InputGroupTextProps): react_jsx_runtime.JSX.Element;
|
|
449
|
+
|
|
450
|
+
type TextareaProps = React.ComponentProps<"textarea"> & {
|
|
451
|
+
invalid?: boolean;
|
|
452
|
+
};
|
|
453
|
+
declare function Textarea({ className, invalid, ...props }: TextareaProps): react_jsx_runtime.JSX.Element;
|
|
454
|
+
|
|
455
|
+
type InputGroupTextareaProps = React.ComponentProps<typeof Textarea>;
|
|
456
|
+
declare function InputGroupTextarea({ className, ...props }: InputGroupTextareaProps): react_jsx_runtime.JSX.Element;
|
|
457
|
+
|
|
396
458
|
type ItemProps = React.ComponentProps<"div"> & {
|
|
397
459
|
asChild?: boolean;
|
|
398
460
|
variant?: ItemVariantType;
|
|
@@ -442,9 +504,6 @@ declare function ItemHeader({ className, ...props }: ItemHeaderProps): react_jsx
|
|
|
442
504
|
type ItemTitleProps = React.ComponentProps<"div">;
|
|
443
505
|
declare function ItemTitle({ className, ...props }: ItemTitleProps): react_jsx_runtime.JSX.Element;
|
|
444
506
|
|
|
445
|
-
type SeparatorProps = React.ComponentProps<typeof Separator$1.Root>;
|
|
446
|
-
declare function Separator({ className, orientation, decorative, ...props }: SeparatorProps): react_jsx_runtime.JSX.Element;
|
|
447
|
-
|
|
448
507
|
type ItemSeparatorProps = React.ComponentProps<typeof Separator>;
|
|
449
508
|
declare function ItemSeparator({ className, ...props }: ItemSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
450
509
|
|
|
@@ -747,11 +806,6 @@ declare function TabsTrigger({ className, ...props }: TabsTriggerProps): react_j
|
|
|
747
806
|
type TabsContentProps = React.ComponentProps<typeof Tabs$1.Content>;
|
|
748
807
|
declare function TabsContent({ className, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element;
|
|
749
808
|
|
|
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
809
|
type TimelineProps = React.ComponentProps<"div"> & {
|
|
756
810
|
asChild?: boolean;
|
|
757
811
|
dir?: TimelineDirection;
|
|
@@ -1669,4 +1723,64 @@ declare function PaginationNext({ className, text, ...props }: PaginationNextPro
|
|
|
1669
1723
|
type PaginationEllipsisProps = React.ComponentProps<"span">;
|
|
1670
1724
|
declare function PaginationEllipsis({ className, ...props }: PaginationEllipsisProps): react_jsx_runtime.JSX.Element;
|
|
1671
1725
|
|
|
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 };
|
|
1726
|
+
type KbdProps = React.ComponentProps<"kbd">;
|
|
1727
|
+
declare function Kbd({ className, ...props }: KbdProps): react_jsx_runtime.JSX.Element;
|
|
1728
|
+
|
|
1729
|
+
type KbdGroup = React.ComponentProps<"div">;
|
|
1730
|
+
declare function KbdGroup({ className, ...props }: KbdGroup): react_jsx_runtime.JSX.Element;
|
|
1731
|
+
|
|
1732
|
+
type ComboboxProps = React.ComponentProps<typeof Combobox$1.Root>;
|
|
1733
|
+
declare const Combobox: typeof Combobox$1.Root;
|
|
1734
|
+
declare function useComboboxAnchor(): React.RefObject<HTMLDivElement>;
|
|
1735
|
+
|
|
1736
|
+
type ComboboxValueProps = Combobox$1.Value.Props;
|
|
1737
|
+
declare function ComboboxValue({ ...props }: ComboboxValueProps): react_jsx_runtime.JSX.Element;
|
|
1738
|
+
|
|
1739
|
+
type ComboboxTriggerProps = Combobox$1.Trigger.Props;
|
|
1740
|
+
declare function ComboboxTrigger({ className, children, ...props }: ComboboxTriggerProps): react_jsx_runtime.JSX.Element;
|
|
1741
|
+
|
|
1742
|
+
type ComboboxClearProps = Combobox$1.Clear.Props;
|
|
1743
|
+
declare function ComboboxClear({ className, ...props }: ComboboxClearProps): react_jsx_runtime.JSX.Element;
|
|
1744
|
+
|
|
1745
|
+
type ComboboxInputProps = Combobox$1.Input.Props & {
|
|
1746
|
+
showTrigger?: boolean;
|
|
1747
|
+
showClear?: boolean;
|
|
1748
|
+
};
|
|
1749
|
+
declare function ComboboxInput({ className, children, disabled, showTrigger, showClear, ...props }: ComboboxInputProps): react_jsx_runtime.JSX.Element;
|
|
1750
|
+
|
|
1751
|
+
type ComboboxContentProps = Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">;
|
|
1752
|
+
declare function ComboboxContent({ className, side, sideOffset, align, alignOffset, anchor, ...props }: ComboboxContentProps): react_jsx_runtime.JSX.Element;
|
|
1753
|
+
|
|
1754
|
+
type ComboboxListProps = Combobox$1.List.Props;
|
|
1755
|
+
declare function ComboboxList({ className, ...props }: ComboboxListProps): react_jsx_runtime.JSX.Element;
|
|
1756
|
+
|
|
1757
|
+
type ComboboxItemProps = Combobox$1.Item.Props;
|
|
1758
|
+
declare function ComboboxItem({ className, children, ...props }: ComboboxItemProps): react_jsx_runtime.JSX.Element;
|
|
1759
|
+
|
|
1760
|
+
type ComboboxGroupProps = Combobox$1.Group.Props;
|
|
1761
|
+
declare function ComboboxGroup({ className, ...props }: ComboboxGroupProps): react_jsx_runtime.JSX.Element;
|
|
1762
|
+
|
|
1763
|
+
type ComboboxLabelProps = Combobox$1.GroupLabel.Props;
|
|
1764
|
+
declare function ComboboxLabel({ className, ...props }: ComboboxLabelProps): react_jsx_runtime.JSX.Element;
|
|
1765
|
+
|
|
1766
|
+
type ComboboxCollectionProps = Combobox$1.Collection.Props;
|
|
1767
|
+
declare function ComboboxCollection({ ...props }: ComboboxCollectionProps): react_jsx_runtime.JSX.Element;
|
|
1768
|
+
|
|
1769
|
+
type ComboboxEmptyProps = Combobox$1.Empty.Props;
|
|
1770
|
+
declare function ComboboxEmpty({ className, ...props }: ComboboxEmptyProps): react_jsx_runtime.JSX.Element;
|
|
1771
|
+
|
|
1772
|
+
type ComboboxSeparatorProps = Combobox$1.Separator.Props;
|
|
1773
|
+
declare function ComboboxSeparator({ className, ...props }: ComboboxSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
1774
|
+
|
|
1775
|
+
type ComboboxChipsProps = React.ComponentPropsWithRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props;
|
|
1776
|
+
declare function ComboboxChips({ className, ...props }: ComboboxChipsProps): react_jsx_runtime.JSX.Element;
|
|
1777
|
+
|
|
1778
|
+
type ComboboxChipProps = Combobox$1.Chip.Props & {
|
|
1779
|
+
showRemove?: boolean;
|
|
1780
|
+
};
|
|
1781
|
+
declare function ComboboxChip({ className, children, showRemove, ...props }: ComboboxChipProps): react_jsx_runtime.JSX.Element;
|
|
1782
|
+
|
|
1783
|
+
type ComboboxChipsInputProps = Combobox$1.Input.Props;
|
|
1784
|
+
declare function ComboboxChipsInput({ className, ...props }: ComboboxChipsInputProps): react_jsx_runtime.JSX.Element;
|
|
1785
|
+
|
|
1786
|
+
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, ButtonGroup, type ButtonGroupOrientationType, type ButtonGroupProps, ButtonGroupSeparator, type ButtonGroupSeparatorProps, ButtonGroupText, type ButtonGroupTextProps, 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 };
|