duokit-ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +10000 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +1119 -0
- package/dist/index.d.ts +1119 -0
- package/dist/index.js +9659 -0
- package/dist/index.js.map +1 -0
- package/package.json +119 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,1119 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
|
+
import { ReactNode } from 'react';
|
|
4
|
+
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
5
|
+
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
|
6
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
7
|
+
import { VariantProps } from 'class-variance-authority';
|
|
8
|
+
import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
|
|
9
|
+
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
10
|
+
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
11
|
+
import { DayPicker, DayButton, DateRange } from 'react-day-picker';
|
|
12
|
+
import * as RechartsPrimitive from 'recharts';
|
|
13
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
14
|
+
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
15
|
+
import { Combobox as Combobox$1 } from '@base-ui/react';
|
|
16
|
+
import { Command as Command$1 } from 'cmdk';
|
|
17
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
18
|
+
import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
|
|
19
|
+
import { Drawer as Drawer$1 } from 'vaul';
|
|
20
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
21
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
22
|
+
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
23
|
+
import { OTPInput } from 'input-otp';
|
|
24
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
|
25
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
|
26
|
+
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
27
|
+
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
28
|
+
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
29
|
+
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
30
|
+
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
31
|
+
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
32
|
+
import { ToasterProps, toast } from 'sonner';
|
|
33
|
+
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
34
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
35
|
+
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
36
|
+
import * as TogglePrimitive from '@radix-ui/react-toggle';
|
|
37
|
+
import { Table as Table$1 } from '@tanstack/react-table';
|
|
38
|
+
import { ClassValue } from 'clsx';
|
|
39
|
+
|
|
40
|
+
declare function Accordion({ ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
41
|
+
declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
42
|
+
declare function AccordionTrigger({ className, children, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
43
|
+
declare function AccordionContent({ className, children, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
44
|
+
|
|
45
|
+
declare const buttonVariants: (props?: ({
|
|
46
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
47
|
+
size?: "default" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
|
|
48
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
49
|
+
declare function Button({ className, variant, size, asChild, ...props }: React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
50
|
+
asChild?: boolean;
|
|
51
|
+
}): react_jsx_runtime.JSX.Element;
|
|
52
|
+
|
|
53
|
+
declare function AlertDialog({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
54
|
+
declare function AlertDialogTrigger({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
55
|
+
declare function AlertDialogPortal({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
56
|
+
declare function AlertDialogOverlay({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
|
|
57
|
+
declare function AlertDialogContent({ className, size, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Content> & {
|
|
58
|
+
size?: "default" | "sm";
|
|
59
|
+
}): react_jsx_runtime.JSX.Element;
|
|
60
|
+
declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
61
|
+
declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
62
|
+
declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
63
|
+
declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
64
|
+
declare function AlertDialogMedia({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
65
|
+
declare function AlertDialogAction({ className, variant, size, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Action> & Pick<React$1.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime.JSX.Element;
|
|
66
|
+
declare function AlertDialogCancel({ className, variant, size, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Cancel> & Pick<React$1.ComponentProps<typeof Button>, "variant" | "size">): react_jsx_runtime.JSX.Element;
|
|
67
|
+
|
|
68
|
+
declare const alertVariants: (props?: ({
|
|
69
|
+
variant?: "default" | "destructive" | null | undefined;
|
|
70
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
71
|
+
declare function Alert({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof alertVariants>): react_jsx_runtime.JSX.Element;
|
|
72
|
+
declare function AlertTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
73
|
+
declare function AlertDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
74
|
+
|
|
75
|
+
declare function AspectRatio({ ...props }: React.ComponentProps<typeof AspectRatioPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
76
|
+
|
|
77
|
+
declare function Avatar({ className, size, ...props }: React$1.ComponentProps<typeof AvatarPrimitive.Root> & {
|
|
78
|
+
size?: "default" | "sm" | "lg";
|
|
79
|
+
}): react_jsx_runtime.JSX.Element;
|
|
80
|
+
declare function AvatarImage({ className, ...props }: React$1.ComponentProps<typeof AvatarPrimitive.Image>): react_jsx_runtime.JSX.Element;
|
|
81
|
+
declare function AvatarFallback({ className, ...props }: React$1.ComponentProps<typeof AvatarPrimitive.Fallback>): react_jsx_runtime.JSX.Element;
|
|
82
|
+
declare function AvatarBadge({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
83
|
+
declare function AvatarGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
84
|
+
declare function AvatarGroupCount({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
85
|
+
|
|
86
|
+
declare const badgeVariants: (props?: ({
|
|
87
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
88
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
89
|
+
declare function Badge({ className, variant, asChild, ...props }: React$1.ComponentProps<"span"> & VariantProps<typeof badgeVariants> & {
|
|
90
|
+
asChild?: boolean;
|
|
91
|
+
}): react_jsx_runtime.JSX.Element;
|
|
92
|
+
|
|
93
|
+
declare function Breadcrumb({ ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
94
|
+
declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
95
|
+
declare function BreadcrumbItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
96
|
+
declare function BreadcrumbLink({ asChild, className, ...props }: React$1.ComponentProps<"a"> & {
|
|
97
|
+
asChild?: boolean;
|
|
98
|
+
}): react_jsx_runtime.JSX.Element;
|
|
99
|
+
declare function BreadcrumbPage({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
100
|
+
declare function BreadcrumbSeparator({ children, className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
101
|
+
declare function BreadcrumbEllipsis({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
102
|
+
|
|
103
|
+
declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
104
|
+
|
|
105
|
+
declare const buttonGroupVariants: (props?: ({
|
|
106
|
+
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
107
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
108
|
+
declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime.JSX.Element;
|
|
109
|
+
declare function ButtonGroupText({ className, asChild, ...props }: React.ComponentProps<"div"> & {
|
|
110
|
+
asChild?: boolean;
|
|
111
|
+
}): react_jsx_runtime.JSX.Element;
|
|
112
|
+
declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
113
|
+
|
|
114
|
+
declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React$1.ComponentProps<typeof DayPicker> & {
|
|
115
|
+
buttonVariant?: React$1.ComponentProps<typeof Button>["variant"];
|
|
116
|
+
}): react_jsx_runtime.JSX.Element;
|
|
117
|
+
declare function CalendarDayButton({ className, day, modifiers, ...props }: React$1.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
|
|
118
|
+
|
|
119
|
+
declare function Card({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
120
|
+
declare function CardHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
121
|
+
declare function CardTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
122
|
+
declare function CardDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
123
|
+
declare function CardAction({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
124
|
+
declare function CardContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
125
|
+
declare function CardFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
126
|
+
|
|
127
|
+
declare const THEMES: {
|
|
128
|
+
readonly light: "";
|
|
129
|
+
readonly dark: ".dark";
|
|
130
|
+
};
|
|
131
|
+
type ChartConfig = {
|
|
132
|
+
[k in string]: {
|
|
133
|
+
label?: React$1.ReactNode;
|
|
134
|
+
icon?: React$1.ComponentType;
|
|
135
|
+
} & ({
|
|
136
|
+
color?: string;
|
|
137
|
+
theme?: never;
|
|
138
|
+
} | {
|
|
139
|
+
color?: never;
|
|
140
|
+
theme: Record<keyof typeof THEMES, string>;
|
|
141
|
+
});
|
|
142
|
+
};
|
|
143
|
+
declare function ChartContainer({ id, className, children, config, ...props }: React$1.ComponentProps<"div"> & {
|
|
144
|
+
config: ChartConfig;
|
|
145
|
+
children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
146
|
+
}): react_jsx_runtime.JSX.Element;
|
|
147
|
+
declare const ChartStyle: ({ id, config, }: {
|
|
148
|
+
id: string;
|
|
149
|
+
config: ChartConfig;
|
|
150
|
+
}) => react_jsx_runtime.JSX.Element | null;
|
|
151
|
+
declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
|
|
152
|
+
declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React$1.ComponentProps<typeof RechartsPrimitive.Tooltip> & React$1.ComponentProps<"div"> & {
|
|
153
|
+
hideLabel?: boolean;
|
|
154
|
+
hideIndicator?: boolean;
|
|
155
|
+
indicator?: "line" | "dot" | "dashed";
|
|
156
|
+
nameKey?: string;
|
|
157
|
+
labelKey?: string;
|
|
158
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
159
|
+
declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
160
|
+
declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React$1.ComponentProps<"div"> & Pick<RechartsPrimitive.LegendProps, "payload" | "verticalAlign"> & {
|
|
161
|
+
hideIcon?: boolean;
|
|
162
|
+
nameKey?: string;
|
|
163
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
164
|
+
|
|
165
|
+
declare function Checkbox({ className, ...props }: React$1.ComponentProps<typeof CheckboxPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
166
|
+
|
|
167
|
+
declare function Collapsible({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
168
|
+
declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
|
|
169
|
+
declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime.JSX.Element;
|
|
170
|
+
|
|
171
|
+
declare const Combobox: typeof Combobox$1.Root;
|
|
172
|
+
declare function ComboboxValue({ ...props }: Combobox$1.Value.Props): react_jsx_runtime.JSX.Element;
|
|
173
|
+
declare function ComboboxTrigger({ className, children, ...props }: Combobox$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
174
|
+
declare function ComboboxInput({ className, children, disabled, showTrigger, showClear, ...props }: Combobox$1.Input.Props & {
|
|
175
|
+
showTrigger?: boolean;
|
|
176
|
+
showClear?: boolean;
|
|
177
|
+
}): react_jsx_runtime.JSX.Element;
|
|
178
|
+
declare function ComboboxContent({ className, side, sideOffset, align, alignOffset, anchor, ...props }: Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, "side" | "align" | "sideOffset" | "alignOffset" | "anchor">): react_jsx_runtime.JSX.Element;
|
|
179
|
+
declare function ComboboxList({ className, ...props }: Combobox$1.List.Props): react_jsx_runtime.JSX.Element;
|
|
180
|
+
declare function ComboboxItem({ className, children, ...props }: Combobox$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
181
|
+
declare function ComboboxGroup({ className, ...props }: Combobox$1.Group.Props): react_jsx_runtime.JSX.Element;
|
|
182
|
+
declare function ComboboxLabel({ className, ...props }: Combobox$1.GroupLabel.Props): react_jsx_runtime.JSX.Element;
|
|
183
|
+
declare function ComboboxCollection({ ...props }: Combobox$1.Collection.Props): react_jsx_runtime.JSX.Element;
|
|
184
|
+
declare function ComboboxEmpty({ className, ...props }: Combobox$1.Empty.Props): react_jsx_runtime.JSX.Element;
|
|
185
|
+
declare function ComboboxSeparator({ className, ...props }: Combobox$1.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
186
|
+
declare function ComboboxChips({ className, ...props }: React$1.ComponentPropsWithRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props): react_jsx_runtime.JSX.Element;
|
|
187
|
+
declare function ComboboxChip({ className, children, showRemove, ...props }: Combobox$1.Chip.Props & {
|
|
188
|
+
showRemove?: boolean;
|
|
189
|
+
}): react_jsx_runtime.JSX.Element;
|
|
190
|
+
declare function ComboboxChipsInput({ className, children, ...props }: Combobox$1.Input.Props): react_jsx_runtime.JSX.Element;
|
|
191
|
+
declare function useComboboxAnchor(): React$1.RefObject<HTMLDivElement | null>;
|
|
192
|
+
|
|
193
|
+
declare function Dialog({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
194
|
+
declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
195
|
+
declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
196
|
+
declare function DialogClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
197
|
+
declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
|
|
198
|
+
declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
199
|
+
showCloseButton?: boolean;
|
|
200
|
+
}): react_jsx_runtime.JSX.Element;
|
|
201
|
+
declare function DialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
202
|
+
declare function DialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
203
|
+
declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
204
|
+
declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
205
|
+
|
|
206
|
+
declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
|
|
207
|
+
declare function CommandDialog({ title, description, children, className, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog> & {
|
|
208
|
+
title?: string;
|
|
209
|
+
description?: string;
|
|
210
|
+
className?: string;
|
|
211
|
+
showCloseButton?: boolean;
|
|
212
|
+
}): react_jsx_runtime.JSX.Element;
|
|
213
|
+
declare function CommandInput({ className, ...props }: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
|
|
214
|
+
declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
|
|
215
|
+
declare function CommandEmpty({ ...props }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
|
|
216
|
+
declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
|
|
217
|
+
declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
|
|
218
|
+
declare function CommandItem({ className, ...props }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
|
|
219
|
+
declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
220
|
+
|
|
221
|
+
declare function ContextMenu({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
222
|
+
declare function ContextMenuTrigger({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
223
|
+
declare function ContextMenuGroup({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
224
|
+
declare function ContextMenuPortal({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
225
|
+
declare function ContextMenuSub({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
226
|
+
declare function ContextMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
227
|
+
declare function ContextMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.SubTrigger> & {
|
|
228
|
+
inset?: boolean;
|
|
229
|
+
}): react_jsx_runtime.JSX.Element;
|
|
230
|
+
declare function ContextMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
231
|
+
declare function ContextMenuContent({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
232
|
+
declare function ContextMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Item> & {
|
|
233
|
+
inset?: boolean;
|
|
234
|
+
variant?: "default" | "destructive";
|
|
235
|
+
}): react_jsx_runtime.JSX.Element;
|
|
236
|
+
declare function ContextMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
237
|
+
declare function ContextMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
238
|
+
declare function ContextMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Label> & {
|
|
239
|
+
inset?: boolean;
|
|
240
|
+
}): react_jsx_runtime.JSX.Element;
|
|
241
|
+
declare function ContextMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
242
|
+
declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
243
|
+
|
|
244
|
+
declare function Drawer({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
|
|
245
|
+
declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element;
|
|
246
|
+
declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
247
|
+
declare function DrawerClose({ ...props }: React$1.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element;
|
|
248
|
+
declare function DrawerOverlay({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime.JSX.Element;
|
|
249
|
+
declare function DrawerContent({ className, children, ...props }: React$1.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element;
|
|
250
|
+
declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
251
|
+
declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
252
|
+
declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
|
|
253
|
+
declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
|
|
254
|
+
|
|
255
|
+
declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
256
|
+
declare function DropdownMenuPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
257
|
+
declare function DropdownMenuTrigger({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
258
|
+
declare function DropdownMenuContent({ className, sideOffset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
259
|
+
declare function DropdownMenuGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
260
|
+
declare function DropdownMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
|
|
261
|
+
inset?: boolean;
|
|
262
|
+
variant?: "default" | "destructive";
|
|
263
|
+
}): react_jsx_runtime.JSX.Element;
|
|
264
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
265
|
+
declare function DropdownMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
266
|
+
declare function DropdownMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
267
|
+
declare function DropdownMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
268
|
+
inset?: boolean;
|
|
269
|
+
}): react_jsx_runtime.JSX.Element;
|
|
270
|
+
declare function DropdownMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
271
|
+
declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
272
|
+
declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
273
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
274
|
+
inset?: boolean;
|
|
275
|
+
}): react_jsx_runtime.JSX.Element;
|
|
276
|
+
declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
277
|
+
|
|
278
|
+
declare function Empty({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
279
|
+
declare function EmptyHeader({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
280
|
+
declare const emptyMediaVariants: (props?: ({
|
|
281
|
+
variant?: "default" | "icon" | null | undefined;
|
|
282
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
283
|
+
declare function EmptyMedia({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime.JSX.Element;
|
|
284
|
+
declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
285
|
+
declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
286
|
+
declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
287
|
+
|
|
288
|
+
declare function Label({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
289
|
+
|
|
290
|
+
declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
|
|
291
|
+
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
|
|
292
|
+
variant?: "legend" | "label";
|
|
293
|
+
}): react_jsx_runtime.JSX.Element;
|
|
294
|
+
declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
295
|
+
declare const fieldVariants: (props?: ({
|
|
296
|
+
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
297
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
298
|
+
declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
|
|
299
|
+
declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
300
|
+
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
|
|
301
|
+
declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
302
|
+
declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
303
|
+
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & {
|
|
304
|
+
children?: React.ReactNode;
|
|
305
|
+
}): react_jsx_runtime.JSX.Element;
|
|
306
|
+
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & {
|
|
307
|
+
errors?: Array<{
|
|
308
|
+
message?: string;
|
|
309
|
+
} | undefined>;
|
|
310
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
311
|
+
|
|
312
|
+
declare function HoverCard({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
313
|
+
declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
314
|
+
declare function HoverCardContent({ className, align, sideOffset, ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
315
|
+
|
|
316
|
+
declare function InputGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
317
|
+
declare const inputGroupAddonVariants: (props?: ({
|
|
318
|
+
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
319
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
320
|
+
declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime.JSX.Element;
|
|
321
|
+
declare const inputGroupButtonVariants: (props?: ({
|
|
322
|
+
size?: "sm" | "icon-xs" | "icon-sm" | "xs" | null | undefined;
|
|
323
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
324
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
325
|
+
declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
326
|
+
declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
327
|
+
declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
328
|
+
|
|
329
|
+
declare function InputOTP({ className, containerClassName, ...props }: React$1.ComponentProps<typeof OTPInput> & {
|
|
330
|
+
containerClassName?: string;
|
|
331
|
+
}): react_jsx_runtime.JSX.Element;
|
|
332
|
+
declare function InputOTPGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
333
|
+
declare function InputOTPSlot({ index, className, ...props }: React$1.ComponentProps<"div"> & {
|
|
334
|
+
index: number;
|
|
335
|
+
}): react_jsx_runtime.JSX.Element;
|
|
336
|
+
declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
337
|
+
|
|
338
|
+
declare function Input({ className, type, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
339
|
+
|
|
340
|
+
declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
341
|
+
declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
342
|
+
declare const itemVariants: (props?: ({
|
|
343
|
+
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
344
|
+
size?: "default" | "sm" | null | undefined;
|
|
345
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
346
|
+
declare function Item({ className, variant, size, asChild, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof itemVariants> & {
|
|
347
|
+
asChild?: boolean;
|
|
348
|
+
}): react_jsx_runtime.JSX.Element;
|
|
349
|
+
declare const itemMediaVariants: (props?: ({
|
|
350
|
+
variant?: "image" | "default" | "icon" | null | undefined;
|
|
351
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
352
|
+
declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime.JSX.Element;
|
|
353
|
+
declare function ItemContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
354
|
+
declare function ItemTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
355
|
+
declare function ItemDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
356
|
+
declare function ItemActions({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
357
|
+
declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
358
|
+
declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
359
|
+
|
|
360
|
+
declare function Kbd({ className, ...props }: React.ComponentProps<"kbd">): react_jsx_runtime.JSX.Element;
|
|
361
|
+
declare function KbdGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
362
|
+
|
|
363
|
+
declare function Menubar({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
364
|
+
declare function MenubarMenu({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Menu>): react_jsx_runtime.JSX.Element;
|
|
365
|
+
declare function MenubarGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
366
|
+
declare function MenubarPortal({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
367
|
+
declare function MenubarRadioGroup({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
368
|
+
declare function MenubarTrigger({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
369
|
+
declare function MenubarContent({ className, align, alignOffset, sideOffset, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
370
|
+
declare function MenubarItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Item> & {
|
|
371
|
+
inset?: boolean;
|
|
372
|
+
variant?: "default" | "destructive";
|
|
373
|
+
}): react_jsx_runtime.JSX.Element;
|
|
374
|
+
declare function MenubarCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
375
|
+
declare function MenubarRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
376
|
+
declare function MenubarLabel({ className, inset, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Label> & {
|
|
377
|
+
inset?: boolean;
|
|
378
|
+
}): react_jsx_runtime.JSX.Element;
|
|
379
|
+
declare function MenubarSeparator({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
380
|
+
declare function MenubarShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
381
|
+
declare function MenubarSub({ ...props }: React$1.ComponentProps<typeof MenubarPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
382
|
+
declare function MenubarSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.SubTrigger> & {
|
|
383
|
+
inset?: boolean;
|
|
384
|
+
}): react_jsx_runtime.JSX.Element;
|
|
385
|
+
declare function MenubarSubContent({ className, ...props }: React$1.ComponentProps<typeof MenubarPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
386
|
+
|
|
387
|
+
declare function NavigationMenu({ className, children, viewport, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Root> & {
|
|
388
|
+
viewport?: boolean;
|
|
389
|
+
}): react_jsx_runtime.JSX.Element;
|
|
390
|
+
declare function NavigationMenuList({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.List>): react_jsx_runtime.JSX.Element;
|
|
391
|
+
declare function NavigationMenuItem({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
392
|
+
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
393
|
+
declare function NavigationMenuTrigger({ className, children, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
394
|
+
declare function NavigationMenuContent({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
395
|
+
declare function NavigationMenuViewport({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): react_jsx_runtime.JSX.Element;
|
|
396
|
+
declare function NavigationMenuLink({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Link>): react_jsx_runtime.JSX.Element;
|
|
397
|
+
declare function NavigationMenuIndicator({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): react_jsx_runtime.JSX.Element;
|
|
398
|
+
|
|
399
|
+
declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
400
|
+
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
401
|
+
declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
402
|
+
|
|
403
|
+
declare function RadioGroup({ className, ...props }: React$1.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
404
|
+
declare function RadioGroupItem({ className, ...props }: React$1.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
405
|
+
|
|
406
|
+
declare function ResizablePanelGroup({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
407
|
+
declare function ResizablePanel({ ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime.JSX.Element;
|
|
408
|
+
declare function ResizableHandle({ withHandle, className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Group> & {
|
|
409
|
+
withHandle?: boolean;
|
|
410
|
+
}): react_jsx_runtime.JSX.Element;
|
|
411
|
+
|
|
412
|
+
declare function ScrollArea({ className, children, ...props }: React$1.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
413
|
+
declare function ScrollBar({ className, orientation, ...props }: React$1.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
|
|
414
|
+
|
|
415
|
+
declare function Select({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
416
|
+
declare function SelectGroup({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
417
|
+
declare function SelectValue({ ...props }: React$1.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime.JSX.Element;
|
|
418
|
+
declare function SelectTrigger({ className, size, children, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Trigger> & {
|
|
419
|
+
size?: "sm" | "default";
|
|
420
|
+
}): react_jsx_runtime.JSX.Element;
|
|
421
|
+
declare function SelectContent({ className, children, position, align, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
422
|
+
declare function SelectLabel({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime.JSX.Element;
|
|
423
|
+
declare function SelectItem({ className, children, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime.JSX.Element;
|
|
424
|
+
declare function SelectSeparator({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
425
|
+
declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime.JSX.Element;
|
|
426
|
+
declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime.JSX.Element;
|
|
427
|
+
|
|
428
|
+
declare function Sheet({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
429
|
+
declare function SheetTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
430
|
+
declare function SheetClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
|
|
431
|
+
declare function SheetContent({ className, children, side, showCloseButton, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
432
|
+
side?: "top" | "right" | "bottom" | "left";
|
|
433
|
+
showCloseButton?: boolean;
|
|
434
|
+
}): react_jsx_runtime.JSX.Element;
|
|
435
|
+
declare function SheetHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
436
|
+
declare function SheetFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
437
|
+
declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
|
|
438
|
+
declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
|
|
439
|
+
|
|
440
|
+
declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
|
|
441
|
+
declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
442
|
+
declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
443
|
+
declare function TooltipContent({ className, sideOffset, children, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
444
|
+
|
|
445
|
+
type SidebarContextProps = {
|
|
446
|
+
state: "expanded" | "collapsed";
|
|
447
|
+
open: boolean;
|
|
448
|
+
setOpen: (open: boolean) => void;
|
|
449
|
+
openMobile: boolean;
|
|
450
|
+
setOpenMobile: (open: boolean) => void;
|
|
451
|
+
isMobile: boolean;
|
|
452
|
+
toggleSidebar: () => void;
|
|
453
|
+
};
|
|
454
|
+
declare function useSidebar(): SidebarContextProps;
|
|
455
|
+
declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React$1.ComponentProps<"div"> & {
|
|
456
|
+
defaultOpen?: boolean;
|
|
457
|
+
open?: boolean;
|
|
458
|
+
onOpenChange?: (open: boolean) => void;
|
|
459
|
+
}): react_jsx_runtime.JSX.Element;
|
|
460
|
+
declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React$1.ComponentProps<"div"> & {
|
|
461
|
+
side?: "left" | "right";
|
|
462
|
+
variant?: "sidebar" | "floating" | "inset";
|
|
463
|
+
collapsible?: "offcanvas" | "icon" | "none";
|
|
464
|
+
}): react_jsx_runtime.JSX.Element;
|
|
465
|
+
declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
|
|
466
|
+
declare function SidebarRail({ className, ...props }: React$1.ComponentProps<"button">): react_jsx_runtime.JSX.Element;
|
|
467
|
+
declare function SidebarInset({ className, ...props }: React$1.ComponentProps<"main">): react_jsx_runtime.JSX.Element;
|
|
468
|
+
declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
|
|
469
|
+
declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
470
|
+
declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
471
|
+
declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
472
|
+
declare function SidebarContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
473
|
+
declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
474
|
+
declare function SidebarGroupLabel({ className, asChild, ...props }: React$1.ComponentProps<"div"> & {
|
|
475
|
+
asChild?: boolean;
|
|
476
|
+
}): react_jsx_runtime.JSX.Element;
|
|
477
|
+
declare function SidebarGroupAction({ className, asChild, ...props }: React$1.ComponentProps<"button"> & {
|
|
478
|
+
asChild?: boolean;
|
|
479
|
+
}): react_jsx_runtime.JSX.Element;
|
|
480
|
+
declare function SidebarGroupContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
481
|
+
declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
482
|
+
declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
483
|
+
declare const sidebarMenuButtonVariants: (props?: ({
|
|
484
|
+
variant?: "default" | "outline" | null | undefined;
|
|
485
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
486
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
487
|
+
declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React$1.ComponentProps<"button"> & {
|
|
488
|
+
asChild?: boolean;
|
|
489
|
+
isActive?: boolean;
|
|
490
|
+
tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
|
|
491
|
+
} & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime.JSX.Element;
|
|
492
|
+
declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React$1.ComponentProps<"button"> & {
|
|
493
|
+
asChild?: boolean;
|
|
494
|
+
showOnHover?: boolean;
|
|
495
|
+
}): react_jsx_runtime.JSX.Element;
|
|
496
|
+
declare function SidebarMenuBadge({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
497
|
+
declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React$1.ComponentProps<"div"> & {
|
|
498
|
+
showIcon?: boolean;
|
|
499
|
+
}): react_jsx_runtime.JSX.Element;
|
|
500
|
+
declare function SidebarMenuSub({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
|
|
501
|
+
declare function SidebarMenuSubItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
|
|
502
|
+
declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React$1.ComponentProps<"a"> & {
|
|
503
|
+
asChild?: boolean;
|
|
504
|
+
size?: "sm" | "md";
|
|
505
|
+
isActive?: boolean;
|
|
506
|
+
}): react_jsx_runtime.JSX.Element;
|
|
507
|
+
|
|
508
|
+
declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
509
|
+
|
|
510
|
+
declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
511
|
+
|
|
512
|
+
declare function Spinner({ className, ...props }: React.ComponentProps<"svg">): react_jsx_runtime.JSX.Element;
|
|
513
|
+
|
|
514
|
+
declare function Switch({ className, size, ...props }: React$1.ComponentProps<typeof SwitchPrimitive.Root> & {
|
|
515
|
+
size?: "sm" | "default";
|
|
516
|
+
}): react_jsx_runtime.JSX.Element;
|
|
517
|
+
|
|
518
|
+
declare const Table: ({ className, ...props }: React$1.HTMLAttributes<HTMLTableElement>) => react_jsx_runtime.JSX.Element;
|
|
519
|
+
declare const TableHeader: ({ className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement>) => react_jsx_runtime.JSX.Element;
|
|
520
|
+
declare const TableBody: ({ className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement>) => react_jsx_runtime.JSX.Element;
|
|
521
|
+
declare const TableFooter: ({ className, ...props }: React$1.HTMLAttributes<HTMLTableSectionElement>) => react_jsx_runtime.JSX.Element;
|
|
522
|
+
declare const TableRow: ({ className, ...props }: React$1.HTMLAttributes<HTMLTableRowElement>) => react_jsx_runtime.JSX.Element;
|
|
523
|
+
declare const TableHead: ({ className, ...props }: React$1.ThHTMLAttributes<HTMLTableCellElement>) => react_jsx_runtime.JSX.Element;
|
|
524
|
+
declare const TableCell: ({ className, ...props }: React$1.TdHTMLAttributes<HTMLTableCellElement>) => react_jsx_runtime.JSX.Element;
|
|
525
|
+
declare const TableCaption: ({ className, ...props }: React$1.HTMLAttributes<HTMLTableCaptionElement>) => react_jsx_runtime.JSX.Element;
|
|
526
|
+
|
|
527
|
+
declare function Tabs({ className, orientation, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
528
|
+
declare const tabsListVariants: (props?: ({
|
|
529
|
+
variant?: "line" | "default" | null | undefined;
|
|
530
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
531
|
+
declare function TabsList({ className, variant, ...props }: React$1.ComponentProps<typeof TabsPrimitive.List> & VariantProps<typeof tabsListVariants>): react_jsx_runtime.JSX.Element;
|
|
532
|
+
declare function TabsTrigger({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
533
|
+
declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
534
|
+
|
|
535
|
+
declare function Textarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
536
|
+
|
|
537
|
+
declare const toggleVariants: (props?: ({
|
|
538
|
+
variant?: "default" | "outline" | null | undefined;
|
|
539
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
540
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
541
|
+
declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
542
|
+
|
|
543
|
+
declare function ToggleGroup({ className, variant, size, spacing, children, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants> & {
|
|
544
|
+
spacing?: number;
|
|
545
|
+
}): react_jsx_runtime.JSX.Element;
|
|
546
|
+
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* Animation types and configurations
|
|
550
|
+
*/
|
|
551
|
+
interface AnimationConfig$1 {
|
|
552
|
+
/** Badge animation type */
|
|
553
|
+
badgeAnimation?: "bounce" | "pulse" | "wiggle" | "fade" | "slide" | "none";
|
|
554
|
+
/** Popover animation type */
|
|
555
|
+
popoverAnimation?: "scale" | "slide" | "fade" | "flip" | "none";
|
|
556
|
+
/** Option hover animation type */
|
|
557
|
+
optionHoverAnimation?: "highlight" | "scale" | "glow" | "none";
|
|
558
|
+
/** Animation duration in seconds */
|
|
559
|
+
duration?: number;
|
|
560
|
+
/** Animation delay in seconds */
|
|
561
|
+
delay?: number;
|
|
562
|
+
}
|
|
563
|
+
/**
|
|
564
|
+
* Variants for the multi-select component to handle different styles.
|
|
565
|
+
* Uses class-variance-authority (cva) to define different styles based on "variant" prop.
|
|
566
|
+
*/
|
|
567
|
+
declare const multiSelectVariants$2: (props?: ({
|
|
568
|
+
variant?: "default" | "destructive" | "secondary" | "inverted" | null | undefined;
|
|
569
|
+
badgeAnimation?: "none" | "bounce" | "pulse" | "wiggle" | "fade" | "slide" | null | undefined;
|
|
570
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
571
|
+
/**
|
|
572
|
+
* Option interface for MultiSelect component
|
|
573
|
+
*/
|
|
574
|
+
interface MultiSelectOption$1 {
|
|
575
|
+
/** The text to display for the option. */
|
|
576
|
+
label: string;
|
|
577
|
+
/** The unique value associated with the option. */
|
|
578
|
+
value: string;
|
|
579
|
+
/** Optional icon component to display alongside the option. */
|
|
580
|
+
icon?: React$1.ComponentType<{
|
|
581
|
+
className?: string;
|
|
582
|
+
}>;
|
|
583
|
+
/** Whether this option is disabled */
|
|
584
|
+
disabled?: boolean;
|
|
585
|
+
/** Custom styling for the option */
|
|
586
|
+
style?: {
|
|
587
|
+
/** Custom badge color */
|
|
588
|
+
badgeColor?: string;
|
|
589
|
+
/** Custom icon color */
|
|
590
|
+
iconColor?: string;
|
|
591
|
+
/** Gradient background for badge */
|
|
592
|
+
gradient?: string;
|
|
593
|
+
};
|
|
594
|
+
}
|
|
595
|
+
/**
|
|
596
|
+
* Group interface for organizing options
|
|
597
|
+
*/
|
|
598
|
+
interface MultiSelectGroup$1 {
|
|
599
|
+
/** Group heading */
|
|
600
|
+
heading: string;
|
|
601
|
+
/** Options in this group */
|
|
602
|
+
options: MultiSelectOption$1[];
|
|
603
|
+
}
|
|
604
|
+
/**
|
|
605
|
+
* Props for MultiSelect component
|
|
606
|
+
*/
|
|
607
|
+
interface MultiSelectProps$1 extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "animationConfig">, VariantProps<typeof multiSelectVariants$2> {
|
|
608
|
+
/**
|
|
609
|
+
* An array of option objects or groups to be displayed in the multi-select component.
|
|
610
|
+
*/
|
|
611
|
+
options: MultiSelectOption$1[] | MultiSelectGroup$1[];
|
|
612
|
+
/**
|
|
613
|
+
* Callback function triggered when the selected values change.
|
|
614
|
+
* Receives an array of the new selected values.
|
|
615
|
+
*/
|
|
616
|
+
onValueChange: (value: string[]) => void;
|
|
617
|
+
/** The default selected values when the component mounts. */
|
|
618
|
+
defaultValue?: string[];
|
|
619
|
+
/**
|
|
620
|
+
* Placeholder text to be displayed when no values are selected.
|
|
621
|
+
* Optional, defaults to "Select options".
|
|
622
|
+
*/
|
|
623
|
+
placeholder?: string;
|
|
624
|
+
/**
|
|
625
|
+
* Animation duration in seconds for the visual effects (e.g., bouncing badges).
|
|
626
|
+
* Optional, defaults to 0 (no animation).
|
|
627
|
+
*/
|
|
628
|
+
animation?: number;
|
|
629
|
+
/**
|
|
630
|
+
* Advanced animation configuration for different component parts.
|
|
631
|
+
* Optional, allows fine-tuning of various animation effects.
|
|
632
|
+
*/
|
|
633
|
+
animationConfig?: AnimationConfig$1;
|
|
634
|
+
/**
|
|
635
|
+
* Maximum number of items to display. Extra selected items will be summarized.
|
|
636
|
+
* Optional, defaults to 3.
|
|
637
|
+
*/
|
|
638
|
+
maxCount?: number;
|
|
639
|
+
/**
|
|
640
|
+
* The modality of the popover. When set to true, interaction with outside elements
|
|
641
|
+
* will be disabled and only popover content will be visible to screen readers.
|
|
642
|
+
* Optional, defaults to false.
|
|
643
|
+
*/
|
|
644
|
+
modalPopover?: boolean;
|
|
645
|
+
/**
|
|
646
|
+
* If true, renders the multi-select component as a child of another component.
|
|
647
|
+
* Optional, defaults to false.
|
|
648
|
+
*/
|
|
649
|
+
asChild?: boolean;
|
|
650
|
+
/**
|
|
651
|
+
* Additional class names to apply custom styles to the multi-select component.
|
|
652
|
+
* Optional, can be used to add custom styles.
|
|
653
|
+
*/
|
|
654
|
+
className?: string;
|
|
655
|
+
/**
|
|
656
|
+
* If true, disables the select all functionality.
|
|
657
|
+
* Optional, defaults to false.
|
|
658
|
+
*/
|
|
659
|
+
hideSelectAll?: boolean;
|
|
660
|
+
/**
|
|
661
|
+
* If true, shows search functionality in the popover.
|
|
662
|
+
* If false, hides the search input completely.
|
|
663
|
+
* Optional, defaults to true.
|
|
664
|
+
*/
|
|
665
|
+
searchable?: boolean;
|
|
666
|
+
/**
|
|
667
|
+
* Custom empty state message when no options match search.
|
|
668
|
+
* Optional, defaults to "No results found."
|
|
669
|
+
*/
|
|
670
|
+
emptyIndicator?: React$1.ReactNode;
|
|
671
|
+
/**
|
|
672
|
+
* If true, allows the component to grow and shrink with its content.
|
|
673
|
+
* If false, uses fixed width behavior.
|
|
674
|
+
* Optional, defaults to false.
|
|
675
|
+
*/
|
|
676
|
+
autoSize?: boolean;
|
|
677
|
+
/**
|
|
678
|
+
* If true, shows badges in a single line with horizontal scroll.
|
|
679
|
+
* If false, badges wrap to multiple lines.
|
|
680
|
+
* Optional, defaults to false.
|
|
681
|
+
*/
|
|
682
|
+
singleLine?: boolean;
|
|
683
|
+
/**
|
|
684
|
+
* Custom CSS class for the popover content.
|
|
685
|
+
* Optional, can be used to customize popover appearance.
|
|
686
|
+
*/
|
|
687
|
+
popoverClassName?: string;
|
|
688
|
+
/**
|
|
689
|
+
* If true, disables the component completely.
|
|
690
|
+
* Optional, defaults to false.
|
|
691
|
+
*/
|
|
692
|
+
disabled?: boolean;
|
|
693
|
+
/**
|
|
694
|
+
* Responsive configuration for different screen sizes.
|
|
695
|
+
* Allows customizing maxCount and other properties based on viewport.
|
|
696
|
+
* Can be boolean true for default responsive behavior or an object for custom configuration.
|
|
697
|
+
*/
|
|
698
|
+
responsive?: boolean | {
|
|
699
|
+
/** Configuration for mobile devices (< 640px) */
|
|
700
|
+
mobile?: {
|
|
701
|
+
maxCount?: number;
|
|
702
|
+
hideIcons?: boolean;
|
|
703
|
+
compactMode?: boolean;
|
|
704
|
+
};
|
|
705
|
+
/** Configuration for tablet devices (640px - 1024px) */
|
|
706
|
+
tablet?: {
|
|
707
|
+
maxCount?: number;
|
|
708
|
+
hideIcons?: boolean;
|
|
709
|
+
compactMode?: boolean;
|
|
710
|
+
};
|
|
711
|
+
/** Configuration for desktop devices (> 1024px) */
|
|
712
|
+
desktop?: {
|
|
713
|
+
maxCount?: number;
|
|
714
|
+
hideIcons?: boolean;
|
|
715
|
+
compactMode?: boolean;
|
|
716
|
+
};
|
|
717
|
+
};
|
|
718
|
+
/**
|
|
719
|
+
* Minimum width for the component.
|
|
720
|
+
* Optional, defaults to auto-sizing based on content.
|
|
721
|
+
* When set, component will not shrink below this width.
|
|
722
|
+
*/
|
|
723
|
+
minWidth?: string;
|
|
724
|
+
/**
|
|
725
|
+
* Maximum width for the component.
|
|
726
|
+
* Optional, defaults to 100% of container.
|
|
727
|
+
* Component will not exceed container boundaries.
|
|
728
|
+
*/
|
|
729
|
+
maxWidth?: string;
|
|
730
|
+
/**
|
|
731
|
+
* If true, automatically removes duplicate options based on their value.
|
|
732
|
+
* Optional, defaults to false (shows warning in dev mode instead).
|
|
733
|
+
*/
|
|
734
|
+
deduplicateOptions?: boolean;
|
|
735
|
+
/**
|
|
736
|
+
* If true, the component will reset its internal state when defaultValue changes.
|
|
737
|
+
* Useful for React Hook Form integration and form reset functionality.
|
|
738
|
+
* Optional, defaults to true.
|
|
739
|
+
*/
|
|
740
|
+
resetOnDefaultValueChange?: boolean;
|
|
741
|
+
/**
|
|
742
|
+
* If true, automatically closes the popover after selecting an option.
|
|
743
|
+
* Useful for single-selection-like behavior or mobile UX.
|
|
744
|
+
* Optional, defaults to false.
|
|
745
|
+
*/
|
|
746
|
+
closeOnSelect?: boolean;
|
|
747
|
+
}
|
|
748
|
+
/**
|
|
749
|
+
* Imperative methods exposed through ref
|
|
750
|
+
*/
|
|
751
|
+
interface MultiSelectRef$1 {
|
|
752
|
+
/**
|
|
753
|
+
* Programmatically reset the component to its default value
|
|
754
|
+
*/
|
|
755
|
+
reset: () => void;
|
|
756
|
+
/**
|
|
757
|
+
* Get current selected values
|
|
758
|
+
*/
|
|
759
|
+
getSelectedValues: () => string[];
|
|
760
|
+
/**
|
|
761
|
+
* Set selected values programmatically
|
|
762
|
+
*/
|
|
763
|
+
setSelectedValues: (values: string[]) => void;
|
|
764
|
+
/**
|
|
765
|
+
* Clear all selected values
|
|
766
|
+
*/
|
|
767
|
+
clear: () => void;
|
|
768
|
+
/**
|
|
769
|
+
* Focus the component
|
|
770
|
+
*/
|
|
771
|
+
focus: () => void;
|
|
772
|
+
}
|
|
773
|
+
declare const MultiSelect: React$1.ForwardRefExoticComponent<MultiSelectProps$1 & React$1.RefAttributes<MultiSelectRef$1>>;
|
|
774
|
+
|
|
775
|
+
declare const multiSelectVariants$1: (props?: ({
|
|
776
|
+
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
|
777
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
778
|
+
interface CalendarDatePickerProps extends React$1.HTMLAttributes<HTMLButtonElement>, VariantProps<typeof multiSelectVariants$1> {
|
|
779
|
+
id?: string;
|
|
780
|
+
className?: string;
|
|
781
|
+
date: DateRange;
|
|
782
|
+
closeOnSelect?: boolean;
|
|
783
|
+
numberOfMonths?: 1 | 2;
|
|
784
|
+
yearsRange?: number;
|
|
785
|
+
onDateSelect: (range: {
|
|
786
|
+
from: Date;
|
|
787
|
+
to: Date;
|
|
788
|
+
}) => void;
|
|
789
|
+
}
|
|
790
|
+
declare const CalendarDatePicker: React$1.ForwardRefExoticComponent<CalendarDatePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
791
|
+
|
|
792
|
+
declare const multiSelectVariants: (props?: ({
|
|
793
|
+
variant?: "default" | "destructive" | "secondary" | "inverted" | null | undefined;
|
|
794
|
+
badgeAnimation?: "none" | "bounce" | "pulse" | "wiggle" | "fade" | "slide" | null | undefined;
|
|
795
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
796
|
+
|
|
797
|
+
interface AnimationConfig {
|
|
798
|
+
/** Badge animation type */
|
|
799
|
+
badgeAnimation?: "bounce" | "pulse" | "wiggle" | "fade" | "slide" | "none";
|
|
800
|
+
/** Popover animation type */
|
|
801
|
+
popoverAnimation?: "scale" | "slide" | "fade" | "flip" | "none";
|
|
802
|
+
/** Option hover animation type */
|
|
803
|
+
optionHoverAnimation?: "highlight" | "scale" | "glow" | "none";
|
|
804
|
+
/** Animation duration in seconds */
|
|
805
|
+
duration?: number;
|
|
806
|
+
/** Animation delay in seconds */
|
|
807
|
+
delay?: number;
|
|
808
|
+
}
|
|
809
|
+
interface MultiSelectOption {
|
|
810
|
+
/** The text to display for the option. */
|
|
811
|
+
label: string;
|
|
812
|
+
/** The unique value associated with the option. */
|
|
813
|
+
value: string;
|
|
814
|
+
/** Optional icon component to display alongside the option. */
|
|
815
|
+
icon?: React.ComponentType<{
|
|
816
|
+
className?: string;
|
|
817
|
+
}>;
|
|
818
|
+
/** Whether this option is disabled */
|
|
819
|
+
disabled?: boolean;
|
|
820
|
+
/** Custom styling for the option */
|
|
821
|
+
style?: {
|
|
822
|
+
/** Custom badge color */
|
|
823
|
+
badgeColor?: string;
|
|
824
|
+
/** Custom icon color */
|
|
825
|
+
iconColor?: string;
|
|
826
|
+
/** Gradient background for badge */
|
|
827
|
+
gradient?: string;
|
|
828
|
+
};
|
|
829
|
+
}
|
|
830
|
+
interface MultiSelectGroup {
|
|
831
|
+
/** Group heading */
|
|
832
|
+
heading: string;
|
|
833
|
+
/** Options in this group */
|
|
834
|
+
options: MultiSelectOption[];
|
|
835
|
+
}
|
|
836
|
+
interface MultiSelectProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "animationConfig">, VariantProps<typeof multiSelectVariants> {
|
|
837
|
+
/**
|
|
838
|
+
* An array of option objects or groups to be displayed in the multi-select component.
|
|
839
|
+
*/
|
|
840
|
+
options: MultiSelectOption[] | MultiSelectGroup[];
|
|
841
|
+
/**
|
|
842
|
+
* Callback function triggered when the selected values change.
|
|
843
|
+
* Receives an array of the new selected values.
|
|
844
|
+
*/
|
|
845
|
+
onValueChange: (value: string[]) => void;
|
|
846
|
+
/** The default selected values when the component mounts. */
|
|
847
|
+
defaultValue?: string[];
|
|
848
|
+
/**
|
|
849
|
+
* Placeholder text to be displayed when no values are selected.
|
|
850
|
+
* Optional, defaults to "Select options".
|
|
851
|
+
*/
|
|
852
|
+
placeholder?: string;
|
|
853
|
+
/**
|
|
854
|
+
* Animation duration in seconds for the visual effects (e.g., bouncing badges).
|
|
855
|
+
* Optional, defaults to 0 (no animation).
|
|
856
|
+
*/
|
|
857
|
+
animation?: number;
|
|
858
|
+
/**
|
|
859
|
+
* Advanced animation configuration for different component parts.
|
|
860
|
+
* Optional, allows fine-tuning of various animation effects.
|
|
861
|
+
*/
|
|
862
|
+
animationConfig?: AnimationConfig;
|
|
863
|
+
/**
|
|
864
|
+
* Maximum number of items to display. Extra selected items will be summarized.
|
|
865
|
+
* Optional, defaults to 3.
|
|
866
|
+
*/
|
|
867
|
+
maxCount?: number;
|
|
868
|
+
/**
|
|
869
|
+
* The modality of the popover. When set to true, interaction with outside elements
|
|
870
|
+
* will be disabled and only popover content will be visible to screen readers.
|
|
871
|
+
* Optional, defaults to false.
|
|
872
|
+
*/
|
|
873
|
+
modalPopover?: boolean;
|
|
874
|
+
/**
|
|
875
|
+
* If true, renders the multi-select component as a child of another component.
|
|
876
|
+
* Optional, defaults to false.
|
|
877
|
+
*/
|
|
878
|
+
asChild?: boolean;
|
|
879
|
+
/**
|
|
880
|
+
* Additional class names to apply custom styles to the multi-select component.
|
|
881
|
+
* Optional, can be used to add custom styles.
|
|
882
|
+
*/
|
|
883
|
+
className?: string;
|
|
884
|
+
/**
|
|
885
|
+
* If true, disables the select all functionality.
|
|
886
|
+
* Optional, defaults to false.
|
|
887
|
+
*/
|
|
888
|
+
hideSelectAll?: boolean;
|
|
889
|
+
/**
|
|
890
|
+
* If true, shows search functionality in the popover.
|
|
891
|
+
* If false, hides the search input completely.
|
|
892
|
+
* Optional, defaults to true.
|
|
893
|
+
*/
|
|
894
|
+
searchable?: boolean;
|
|
895
|
+
/**
|
|
896
|
+
* Custom empty state message when no options match search.
|
|
897
|
+
* Optional, defaults to "No results found."
|
|
898
|
+
*/
|
|
899
|
+
emptyIndicator?: React.ReactNode;
|
|
900
|
+
/**
|
|
901
|
+
* If true, allows the component to grow and shrink with its content.
|
|
902
|
+
* If false, uses fixed width behavior.
|
|
903
|
+
* Optional, defaults to false.
|
|
904
|
+
*/
|
|
905
|
+
autoSize?: boolean;
|
|
906
|
+
/**
|
|
907
|
+
* If true, shows badges in a single line with horizontal scroll.
|
|
908
|
+
* If false, badges wrap to multiple lines.
|
|
909
|
+
* Optional, defaults to false.
|
|
910
|
+
*/
|
|
911
|
+
singleLine?: boolean;
|
|
912
|
+
/**
|
|
913
|
+
* Custom CSS class for the popover content.
|
|
914
|
+
* Optional, can be used to customize popover appearance.
|
|
915
|
+
*/
|
|
916
|
+
popoverClassName?: string;
|
|
917
|
+
/**
|
|
918
|
+
* If true, disables the component completely.
|
|
919
|
+
* Optional, defaults to false.
|
|
920
|
+
*/
|
|
921
|
+
disabled?: boolean;
|
|
922
|
+
/**
|
|
923
|
+
* Responsive configuration for different screen sizes.
|
|
924
|
+
* Allows customizing maxCount and other properties based on viewport.
|
|
925
|
+
* Can be boolean true for default responsive behavior or an object for custom configuration.
|
|
926
|
+
*/
|
|
927
|
+
responsive?: boolean | {
|
|
928
|
+
/** Configuration for mobile devices (< 640px) */
|
|
929
|
+
mobile?: {
|
|
930
|
+
maxCount?: number;
|
|
931
|
+
hideIcons?: boolean;
|
|
932
|
+
compactMode?: boolean;
|
|
933
|
+
};
|
|
934
|
+
/** Configuration for tablet devices (640px - 1024px) */
|
|
935
|
+
tablet?: {
|
|
936
|
+
maxCount?: number;
|
|
937
|
+
hideIcons?: boolean;
|
|
938
|
+
compactMode?: boolean;
|
|
939
|
+
};
|
|
940
|
+
/** Configuration for desktop devices (> 1024px) */
|
|
941
|
+
desktop?: {
|
|
942
|
+
maxCount?: number;
|
|
943
|
+
hideIcons?: boolean;
|
|
944
|
+
compactMode?: boolean;
|
|
945
|
+
};
|
|
946
|
+
};
|
|
947
|
+
/**
|
|
948
|
+
* Minimum width for the component.
|
|
949
|
+
* Optional, defaults to auto-sizing based on content.
|
|
950
|
+
* When set, component will not shrink below this width.
|
|
951
|
+
*/
|
|
952
|
+
minWidth?: string;
|
|
953
|
+
/**
|
|
954
|
+
* Maximum width for the component.
|
|
955
|
+
* Optional, defaults to 100% of container.
|
|
956
|
+
* Component will not exceed container boundaries.
|
|
957
|
+
*/
|
|
958
|
+
maxWidth?: string;
|
|
959
|
+
/**
|
|
960
|
+
* If true, automatically removes duplicate options based on their value.
|
|
961
|
+
* Optional, defaults to false (shows warning in dev mode instead).
|
|
962
|
+
*/
|
|
963
|
+
deduplicateOptions?: boolean;
|
|
964
|
+
/**
|
|
965
|
+
* If true, the component will reset its internal state when defaultValue changes.
|
|
966
|
+
* Useful for React Hook Form integration and form reset functionality.
|
|
967
|
+
* Optional, defaults to true.
|
|
968
|
+
*/
|
|
969
|
+
resetOnDefaultValueChange?: boolean;
|
|
970
|
+
/**
|
|
971
|
+
* If true, automatically closes the popover after selecting an option.
|
|
972
|
+
* Useful for single-selection-like behavior or mobile UX.
|
|
973
|
+
* Optional, defaults to false.
|
|
974
|
+
*/
|
|
975
|
+
closeOnSelect?: boolean;
|
|
976
|
+
}
|
|
977
|
+
interface MultiSelectRef {
|
|
978
|
+
/**
|
|
979
|
+
* Programmatically reset the component to its default value
|
|
980
|
+
*/
|
|
981
|
+
reset: () => void;
|
|
982
|
+
/**
|
|
983
|
+
* Get current selected values
|
|
984
|
+
*/
|
|
985
|
+
getSelectedValues: () => string[];
|
|
986
|
+
/**
|
|
987
|
+
* Set selected values programmatically
|
|
988
|
+
*/
|
|
989
|
+
setSelectedValues: (values: string[]) => void;
|
|
990
|
+
/**
|
|
991
|
+
* Clear all selected values
|
|
992
|
+
*/
|
|
993
|
+
clear: () => void;
|
|
994
|
+
/**
|
|
995
|
+
* Focus the component
|
|
996
|
+
*/
|
|
997
|
+
focus: () => void;
|
|
998
|
+
}
|
|
999
|
+
interface PaginationProps {
|
|
1000
|
+
hasMore?: boolean;
|
|
1001
|
+
onLoadMore?: () => void;
|
|
1002
|
+
searchTerm?: string;
|
|
1003
|
+
onIntersect?: () => void;
|
|
1004
|
+
onSearchChange?: (value: string) => void;
|
|
1005
|
+
isLoading?: boolean;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
declare const ClientMultiSelect: React$1.ForwardRefExoticComponent<MultiSelectProps & React$1.RefAttributes<MultiSelectRef>>;
|
|
1009
|
+
|
|
1010
|
+
declare const PaginatedMultiSelect: React$1.ForwardRefExoticComponent<MultiSelectProps & PaginationProps & React$1.RefAttributes<MultiSelectRef>>;
|
|
1011
|
+
|
|
1012
|
+
interface DataTableProps<TData> {
|
|
1013
|
+
/**
|
|
1014
|
+
* Table instance from useReactTable
|
|
1015
|
+
*/
|
|
1016
|
+
table: Table$1<TData>;
|
|
1017
|
+
/**
|
|
1018
|
+
* Whether the table is in a loading state
|
|
1019
|
+
*/
|
|
1020
|
+
isLoading?: boolean;
|
|
1021
|
+
/**
|
|
1022
|
+
* Custom empty state message
|
|
1023
|
+
*/
|
|
1024
|
+
emptyMessage?: ReactNode;
|
|
1025
|
+
/**
|
|
1026
|
+
* Custom loading message
|
|
1027
|
+
*/
|
|
1028
|
+
loadingMessage?: string;
|
|
1029
|
+
/**
|
|
1030
|
+
* Children components
|
|
1031
|
+
*/
|
|
1032
|
+
children?: ReactNode;
|
|
1033
|
+
/**
|
|
1034
|
+
* Custom className for the root container
|
|
1035
|
+
*/
|
|
1036
|
+
className?: string;
|
|
1037
|
+
}
|
|
1038
|
+
interface DataTableSearchProps {
|
|
1039
|
+
/**
|
|
1040
|
+
* Placeholder text for the search input
|
|
1041
|
+
*/
|
|
1042
|
+
placeholder?: string;
|
|
1043
|
+
/**
|
|
1044
|
+
* Debounce delay in milliseconds
|
|
1045
|
+
*/
|
|
1046
|
+
debounceMs?: number;
|
|
1047
|
+
/**
|
|
1048
|
+
* Custom className
|
|
1049
|
+
*/
|
|
1050
|
+
className?: string;
|
|
1051
|
+
}
|
|
1052
|
+
interface DataTablePaginationProps {
|
|
1053
|
+
/**
|
|
1054
|
+
* Show page size selector
|
|
1055
|
+
*/
|
|
1056
|
+
showPageSizeSelector?: boolean;
|
|
1057
|
+
/**
|
|
1058
|
+
* Available page sizes
|
|
1059
|
+
*/
|
|
1060
|
+
pageSizeOptions?: number[];
|
|
1061
|
+
/**
|
|
1062
|
+
* Custom className
|
|
1063
|
+
*/
|
|
1064
|
+
className?: string;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
declare function DataTableRoot<TData>({ table, isLoading, emptyMessage, loadingMessage, children, className, }: DataTableProps<TData>): react_jsx_runtime.JSX.Element;
|
|
1068
|
+
declare function DataTableHeader<TData>(): react_jsx_runtime.JSX.Element;
|
|
1069
|
+
declare function DataTableBody<TData>(): react_jsx_runtime.JSX.Element;
|
|
1070
|
+
declare function DataTablePagination({ showPageSizeSelector, className, }: DataTablePaginationProps): react_jsx_runtime.JSX.Element;
|
|
1071
|
+
declare function DataTableFilters({ children, className, }: {
|
|
1072
|
+
children?: React.ReactNode;
|
|
1073
|
+
className?: string;
|
|
1074
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1075
|
+
declare const DataTable: {
|
|
1076
|
+
Root: typeof DataTableRoot;
|
|
1077
|
+
Header: typeof DataTableHeader;
|
|
1078
|
+
Body: typeof DataTableBody;
|
|
1079
|
+
Pagination: typeof DataTablePagination;
|
|
1080
|
+
Filters: typeof DataTableFilters;
|
|
1081
|
+
};
|
|
1082
|
+
|
|
1083
|
+
declare function H1({ children, className, }: {
|
|
1084
|
+
children: React.ReactNode;
|
|
1085
|
+
className?: string;
|
|
1086
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1087
|
+
|
|
1088
|
+
declare function H2({ children, className, }: {
|
|
1089
|
+
children: React.ReactNode;
|
|
1090
|
+
className?: string;
|
|
1091
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1092
|
+
|
|
1093
|
+
declare function H3({ children, className, }: {
|
|
1094
|
+
children: React.ReactNode;
|
|
1095
|
+
className?: string;
|
|
1096
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1097
|
+
|
|
1098
|
+
declare function H4({ children, className, }: {
|
|
1099
|
+
children: React.ReactNode;
|
|
1100
|
+
className?: string;
|
|
1101
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1102
|
+
|
|
1103
|
+
declare function Paragraph({ children, className, }: {
|
|
1104
|
+
children: React.ReactNode;
|
|
1105
|
+
className?: string;
|
|
1106
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1107
|
+
|
|
1108
|
+
declare function Blockquote({ children, className, }: {
|
|
1109
|
+
children: React.ReactNode;
|
|
1110
|
+
className?: string;
|
|
1111
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1112
|
+
|
|
1113
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
1114
|
+
|
|
1115
|
+
declare function useIsMobile(): boolean;
|
|
1116
|
+
|
|
1117
|
+
declare const useToast: () => typeof toast;
|
|
1118
|
+
|
|
1119
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnimationConfig$1 as AnimationConfig, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Blockquote, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDatePicker, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ClientMultiSelect, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, type DataTablePaginationProps, type DataTableProps, type DataTableSearchProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, H1, H2, H3, H4, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MultiSelect, type MultiSelectGroup$1 as MultiSelectGroup, type MultiSelectOption$1 as MultiSelectOption, type MultiSelectProps$1 as MultiSelectProps, type MultiSelectRef$1 as MultiSelectRef, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PaginatedMultiSelect, Paragraph, Popover, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, useComboboxAnchor, useIsMobile, useSidebar, useToast };
|