@aircall/ds 0.2.4 → 0.2.6
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/globals.css +1 -1
- package/dist/index.d.ts +171 -167
- package/dist/index.js +12 -4
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { VariantProps } from "class-variance-authority";
|
|
2
2
|
import { ClassValue } from "clsx";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime3 from "react/jsx-runtime";
|
|
4
4
|
import * as React$2 from "react";
|
|
5
5
|
import React$1 from "react";
|
|
6
6
|
import * as AvatarPrimitive from "@radix-ui/react-avatar";
|
|
@@ -40,19 +40,19 @@ declare function Alert({
|
|
|
40
40
|
className,
|
|
41
41
|
variant,
|
|
42
42
|
...props
|
|
43
|
-
}: React$2.ComponentProps<'div'> & VariantProps<typeof alertVariants>):
|
|
43
|
+
}: React$2.ComponentProps<'div'> & VariantProps<typeof alertVariants>): react_jsx_runtime3.JSX.Element;
|
|
44
44
|
declare function AlertTitle({
|
|
45
45
|
className,
|
|
46
46
|
...props
|
|
47
|
-
}: React$2.ComponentProps<'div'>):
|
|
47
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
48
48
|
declare function AlertDescription({
|
|
49
49
|
className,
|
|
50
50
|
...props
|
|
51
|
-
}: React$2.ComponentProps<'div'>):
|
|
51
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
52
52
|
declare function AlertAction({
|
|
53
53
|
className,
|
|
54
54
|
...props
|
|
55
|
-
}: React$2.ComponentProps<'div'>):
|
|
55
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
56
56
|
//#endregion
|
|
57
57
|
//#region src/components/avatar.d.ts
|
|
58
58
|
declare const avatarVariants: (props?: ({
|
|
@@ -67,18 +67,18 @@ declare const Avatar: React$2.ForwardRefExoticComponent<Omit<AvatarProps, "ref">
|
|
|
67
67
|
declare function AvatarImage({
|
|
68
68
|
className,
|
|
69
69
|
...props
|
|
70
|
-
}: React$2.ComponentProps<typeof AvatarPrimitive.Image>):
|
|
70
|
+
}: React$2.ComponentProps<typeof AvatarPrimitive.Image>): react_jsx_runtime3.JSX.Element;
|
|
71
71
|
declare function AvatarFallback({
|
|
72
72
|
className,
|
|
73
73
|
...props
|
|
74
|
-
}: React$2.ComponentProps<typeof AvatarPrimitive.Fallback>):
|
|
74
|
+
}: React$2.ComponentProps<typeof AvatarPrimitive.Fallback>): react_jsx_runtime3.JSX.Element;
|
|
75
75
|
//#endregion
|
|
76
76
|
//#region src/components/badge.d.ts
|
|
77
77
|
declare const badgeVariants: (props?: ({
|
|
78
|
-
variant?: "default" | "
|
|
78
|
+
variant?: "default" | "outline" | "secondary" | "destructive" | null | undefined;
|
|
79
79
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
80
80
|
declare const Badge: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLSpanElement> & React$2.HTMLAttributes<HTMLSpanElement> & VariantProps<(props?: ({
|
|
81
|
-
variant?: "default" | "
|
|
81
|
+
variant?: "default" | "outline" | "secondary" | "destructive" | null | undefined;
|
|
82
82
|
} & class_variance_authority_types0.ClassProp) | undefined) => string> & {
|
|
83
83
|
asChild?: boolean;
|
|
84
84
|
}, "ref"> & React$2.RefAttributes<HTMLSpanElement>>;
|
|
@@ -89,7 +89,7 @@ declare function Separator({
|
|
|
89
89
|
orientation,
|
|
90
90
|
decorative,
|
|
91
91
|
...props
|
|
92
|
-
}: React$2.ComponentProps<typeof SeparatorPrimitive.Root>):
|
|
92
|
+
}: React$2.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
93
93
|
//#endregion
|
|
94
94
|
//#region src/components/button-group.d.ts
|
|
95
95
|
declare const buttonGroupVariants: (props?: ({
|
|
@@ -99,28 +99,28 @@ declare function ButtonGroup({
|
|
|
99
99
|
className,
|
|
100
100
|
orientation,
|
|
101
101
|
...props
|
|
102
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>):
|
|
102
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime3.JSX.Element;
|
|
103
103
|
declare function ButtonGroupText({
|
|
104
104
|
className,
|
|
105
105
|
asChild,
|
|
106
106
|
...props
|
|
107
107
|
}: React.ComponentProps<'div'> & {
|
|
108
108
|
asChild?: boolean;
|
|
109
|
-
}):
|
|
109
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
110
110
|
declare function ButtonGroupSeparator({
|
|
111
111
|
className,
|
|
112
112
|
orientation,
|
|
113
113
|
...props
|
|
114
|
-
}: React.ComponentProps<typeof Separator>):
|
|
114
|
+
}: React.ComponentProps<typeof Separator>): react_jsx_runtime3.JSX.Element;
|
|
115
115
|
//#endregion
|
|
116
116
|
//#region src/components/button.d.ts
|
|
117
117
|
declare const buttonVariants: (props?: ({
|
|
118
|
-
variant?: "
|
|
118
|
+
variant?: "default" | "link" | "outline" | "secondary" | "destructive" | "ghost" | null | undefined;
|
|
119
119
|
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
120
120
|
block?: boolean | null | undefined;
|
|
121
121
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
122
122
|
declare const Button: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & VariantProps<(props?: ({
|
|
123
|
-
variant?: "
|
|
123
|
+
variant?: "default" | "link" | "outline" | "secondary" | "destructive" | "ghost" | null | undefined;
|
|
124
124
|
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
125
125
|
block?: boolean | null | undefined;
|
|
126
126
|
} & class_variance_authority_types0.ClassProp) | undefined) => string> & {
|
|
@@ -133,31 +133,31 @@ type ButtonProps = React$2.ComponentProps<typeof Button>;
|
|
|
133
133
|
declare function Card({
|
|
134
134
|
className,
|
|
135
135
|
...props
|
|
136
|
-
}: React$2.ComponentProps<'div'>):
|
|
136
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
137
137
|
declare function CardHeader({
|
|
138
138
|
className,
|
|
139
139
|
...props
|
|
140
|
-
}: React$2.ComponentProps<'div'>):
|
|
140
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
141
141
|
declare function CardTitle({
|
|
142
142
|
className,
|
|
143
143
|
...props
|
|
144
|
-
}: React$2.ComponentProps<'div'>):
|
|
144
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
145
145
|
declare function CardDescription({
|
|
146
146
|
className,
|
|
147
147
|
...props
|
|
148
|
-
}: React$2.ComponentProps<'div'>):
|
|
148
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
149
149
|
declare function CardAction({
|
|
150
150
|
className,
|
|
151
151
|
...props
|
|
152
|
-
}: React$2.ComponentProps<'div'>):
|
|
152
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
153
153
|
declare function CardContent({
|
|
154
154
|
className,
|
|
155
155
|
...props
|
|
156
|
-
}: React$2.ComponentProps<'div'>):
|
|
156
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
157
157
|
declare function CardFooter({
|
|
158
158
|
className,
|
|
159
159
|
...props
|
|
160
|
-
}: React$2.ComponentProps<'div'>):
|
|
160
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
161
161
|
//#endregion
|
|
162
162
|
//#region src/components/carousel.d.ts
|
|
163
163
|
type CarouselApi = UseEmblaCarouselType[1];
|
|
@@ -178,27 +178,27 @@ declare function Carousel({
|
|
|
178
178
|
className,
|
|
179
179
|
children,
|
|
180
180
|
...props
|
|
181
|
-
}: React$2.ComponentProps<'div'> & CarouselProps):
|
|
181
|
+
}: React$2.ComponentProps<'div'> & CarouselProps): react_jsx_runtime3.JSX.Element;
|
|
182
182
|
declare function CarouselContent({
|
|
183
183
|
className,
|
|
184
184
|
...props
|
|
185
|
-
}: React$2.ComponentProps<'div'>):
|
|
185
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
186
186
|
declare function CarouselItem({
|
|
187
187
|
className,
|
|
188
188
|
...props
|
|
189
|
-
}: React$2.ComponentProps<'div'>):
|
|
189
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
190
190
|
declare function CarouselPrevious({
|
|
191
191
|
className,
|
|
192
192
|
variant,
|
|
193
193
|
size,
|
|
194
194
|
...props
|
|
195
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
195
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime3.JSX.Element;
|
|
196
196
|
declare function CarouselNext({
|
|
197
197
|
className,
|
|
198
198
|
variant,
|
|
199
199
|
size,
|
|
200
200
|
...props
|
|
201
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
201
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime3.JSX.Element;
|
|
202
202
|
//#endregion
|
|
203
203
|
//#region src/components/checkbox.d.ts
|
|
204
204
|
declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$2.RefAttributes<HTMLButtonElement>, "ref"> & React$2.RefAttributes<HTMLButtonElement>>;
|
|
@@ -206,58 +206,58 @@ declare const Checkbox: React$2.ForwardRefExoticComponent<Omit<CheckboxPrimitive
|
|
|
206
206
|
//#region src/components/collapsible.d.ts
|
|
207
207
|
declare function Collapsible({
|
|
208
208
|
...props
|
|
209
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.Root>):
|
|
209
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
210
210
|
declare function CollapsibleTrigger({
|
|
211
211
|
...props
|
|
212
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>):
|
|
212
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime3.JSX.Element;
|
|
213
213
|
declare function CollapsibleContent({
|
|
214
214
|
...props
|
|
215
|
-
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>):
|
|
215
|
+
}: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime3.JSX.Element;
|
|
216
216
|
//#endregion
|
|
217
217
|
//#region src/components/dialog.d.ts
|
|
218
218
|
declare function Dialog({
|
|
219
219
|
...props
|
|
220
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Root>):
|
|
220
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
221
221
|
declare function DialogTrigger({
|
|
222
222
|
...props
|
|
223
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>):
|
|
223
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
224
224
|
declare function DialogPortal({
|
|
225
225
|
...props
|
|
226
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Portal>):
|
|
226
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime3.JSX.Element;
|
|
227
227
|
declare function DialogClose({
|
|
228
228
|
...props
|
|
229
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Close>):
|
|
229
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime3.JSX.Element;
|
|
230
230
|
declare function DialogOverlay({
|
|
231
231
|
className,
|
|
232
232
|
...props
|
|
233
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Overlay>):
|
|
233
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Overlay>): react_jsx_runtime3.JSX.Element;
|
|
234
234
|
declare function DialogContent({
|
|
235
235
|
className,
|
|
236
236
|
children,
|
|
237
237
|
...props
|
|
238
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Content>):
|
|
238
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Content>): react_jsx_runtime3.JSX.Element;
|
|
239
239
|
declare function DialogHeader({
|
|
240
240
|
className,
|
|
241
241
|
...props
|
|
242
|
-
}: React$2.ComponentProps<'div'>):
|
|
242
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
243
243
|
declare function DialogFooter({
|
|
244
244
|
className,
|
|
245
245
|
...props
|
|
246
|
-
}: React$2.ComponentProps<'div'>):
|
|
246
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
247
247
|
declare function DialogTitle({
|
|
248
248
|
className,
|
|
249
249
|
...props
|
|
250
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Title>):
|
|
250
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime3.JSX.Element;
|
|
251
251
|
declare function DialogDescription({
|
|
252
252
|
className,
|
|
253
253
|
...props
|
|
254
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Description>):
|
|
254
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime3.JSX.Element;
|
|
255
255
|
//#endregion
|
|
256
256
|
//#region src/components/command.d.ts
|
|
257
257
|
declare function Command({
|
|
258
258
|
className,
|
|
259
259
|
...props
|
|
260
|
-
}: React$2.ComponentProps<typeof Command$1>):
|
|
260
|
+
}: React$2.ComponentProps<typeof Command$1>): react_jsx_runtime3.JSX.Element;
|
|
261
261
|
declare function CommandDialog({
|
|
262
262
|
title,
|
|
263
263
|
description,
|
|
@@ -266,34 +266,34 @@ declare function CommandDialog({
|
|
|
266
266
|
}: React$2.ComponentProps<typeof Dialog> & {
|
|
267
267
|
title?: string;
|
|
268
268
|
description?: string;
|
|
269
|
-
}):
|
|
269
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
270
270
|
declare function CommandInput({
|
|
271
271
|
className,
|
|
272
272
|
...props
|
|
273
|
-
}: React$2.ComponentProps<typeof Command$1.Input>):
|
|
273
|
+
}: React$2.ComponentProps<typeof Command$1.Input>): react_jsx_runtime3.JSX.Element;
|
|
274
274
|
declare function CommandList({
|
|
275
275
|
className,
|
|
276
276
|
...props
|
|
277
|
-
}: React$2.ComponentProps<typeof Command$1.List>):
|
|
277
|
+
}: React$2.ComponentProps<typeof Command$1.List>): react_jsx_runtime3.JSX.Element;
|
|
278
278
|
declare function CommandEmpty({
|
|
279
279
|
...props
|
|
280
|
-
}: React$2.ComponentProps<typeof Command$1.Empty>):
|
|
280
|
+
}: React$2.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime3.JSX.Element;
|
|
281
281
|
declare function CommandGroup({
|
|
282
282
|
className,
|
|
283
283
|
...props
|
|
284
|
-
}: React$2.ComponentProps<typeof Command$1.Group>):
|
|
284
|
+
}: React$2.ComponentProps<typeof Command$1.Group>): react_jsx_runtime3.JSX.Element;
|
|
285
285
|
declare function CommandSeparator({
|
|
286
286
|
className,
|
|
287
287
|
...props
|
|
288
|
-
}: React$2.ComponentProps<typeof Command$1.Separator>):
|
|
288
|
+
}: React$2.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime3.JSX.Element;
|
|
289
289
|
declare function CommandItem({
|
|
290
290
|
className,
|
|
291
291
|
...props
|
|
292
|
-
}: React$2.ComponentProps<typeof Command$1.Item>):
|
|
292
|
+
}: React$2.ComponentProps<typeof Command$1.Item>): react_jsx_runtime3.JSX.Element;
|
|
293
293
|
declare function CommandShortcut({
|
|
294
294
|
className,
|
|
295
295
|
...props
|
|
296
|
-
}: React$2.ComponentProps<'span'>):
|
|
296
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime3.JSX.Element;
|
|
297
297
|
//#endregion
|
|
298
298
|
//#region src/components/country-flag.d.ts
|
|
299
299
|
type FlagSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -308,17 +308,17 @@ declare const CountryFlag: React$1.FC<CountryFlagProps>;
|
|
|
308
308
|
//#region src/components/drawer.d.ts
|
|
309
309
|
declare function Drawer({
|
|
310
310
|
...props
|
|
311
|
-
}: React$2.ComponentProps<typeof Drawer$1.Root>):
|
|
311
|
+
}: React$2.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime3.JSX.Element;
|
|
312
312
|
declare function DrawerTrigger({
|
|
313
313
|
...props
|
|
314
|
-
}: React$2.ComponentProps<typeof Drawer$1.Trigger>):
|
|
314
|
+
}: React$2.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
315
315
|
type DrawerPortalProps = React$2.ComponentProps<typeof Drawer$1.Portal>;
|
|
316
316
|
declare function DrawerPortal({
|
|
317
317
|
...props
|
|
318
|
-
}: DrawerPortalProps):
|
|
318
|
+
}: DrawerPortalProps): react_jsx_runtime3.JSX.Element;
|
|
319
319
|
declare function DrawerClose({
|
|
320
320
|
...props
|
|
321
|
-
}: React$2.ComponentProps<typeof Drawer$1.Close>):
|
|
321
|
+
}: React$2.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime3.JSX.Element;
|
|
322
322
|
declare const DrawerOverlay: React$2.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$2.RefAttributes<HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
323
323
|
type DrawerContentProps = React$2.ComponentProps<typeof Drawer$1.Content> & Pick<DrawerPortalProps, 'container'>;
|
|
324
324
|
declare function DrawerContent({
|
|
@@ -326,34 +326,34 @@ declare function DrawerContent({
|
|
|
326
326
|
children,
|
|
327
327
|
container,
|
|
328
328
|
...props
|
|
329
|
-
}: DrawerContentProps):
|
|
329
|
+
}: DrawerContentProps): react_jsx_runtime3.JSX.Element;
|
|
330
330
|
declare function DrawerHeader({
|
|
331
331
|
className,
|
|
332
332
|
...props
|
|
333
|
-
}: React$2.ComponentProps<'div'>):
|
|
333
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
334
334
|
declare function DrawerFooter({
|
|
335
335
|
className,
|
|
336
336
|
...props
|
|
337
|
-
}: React$2.ComponentProps<'div'>):
|
|
337
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
338
338
|
declare function DrawerTitle({
|
|
339
339
|
className,
|
|
340
340
|
...props
|
|
341
|
-
}: React$2.ComponentProps<typeof Drawer$1.Title>):
|
|
341
|
+
}: React$2.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime3.JSX.Element;
|
|
342
342
|
declare function DrawerDescription({
|
|
343
343
|
className,
|
|
344
344
|
...props
|
|
345
|
-
}: React$2.ComponentProps<typeof Drawer$1.Description>):
|
|
345
|
+
}: React$2.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime3.JSX.Element;
|
|
346
346
|
//#endregion
|
|
347
347
|
//#region src/components/dropdown-menu.d.ts
|
|
348
348
|
declare function DropdownMenu({
|
|
349
349
|
...props
|
|
350
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Root>):
|
|
350
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
351
351
|
declare function DropdownMenuPortal({
|
|
352
352
|
...props
|
|
353
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Portal>):
|
|
353
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime3.JSX.Element;
|
|
354
354
|
declare function DropdownMenuTrigger({
|
|
355
355
|
...props
|
|
356
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Trigger>):
|
|
356
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
357
357
|
type DropdownMenuContentProps = React$2.ComponentProps<typeof DropdownMenuPrimitive.Portal> & React$2.ComponentProps<typeof DropdownMenuPrimitive.Content>;
|
|
358
358
|
declare function DropdownMenuContent({
|
|
359
359
|
className,
|
|
@@ -361,10 +361,10 @@ declare function DropdownMenuContent({
|
|
|
361
361
|
container,
|
|
362
362
|
forceMount,
|
|
363
363
|
...props
|
|
364
|
-
}: DropdownMenuContentProps):
|
|
364
|
+
}: DropdownMenuContentProps): react_jsx_runtime3.JSX.Element;
|
|
365
365
|
declare function DropdownMenuGroup({
|
|
366
366
|
...props
|
|
367
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Group>):
|
|
367
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime3.JSX.Element;
|
|
368
368
|
declare function DropdownMenuItem({
|
|
369
369
|
className,
|
|
370
370
|
inset,
|
|
@@ -373,39 +373,39 @@ declare function DropdownMenuItem({
|
|
|
373
373
|
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
|
|
374
374
|
inset?: boolean;
|
|
375
375
|
variant?: 'default' | 'destructive';
|
|
376
|
-
}):
|
|
376
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
377
377
|
declare function DropdownMenuCheckboxItem({
|
|
378
378
|
className,
|
|
379
379
|
children,
|
|
380
380
|
checked,
|
|
381
381
|
...props
|
|
382
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>):
|
|
382
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime3.JSX.Element;
|
|
383
383
|
declare function DropdownMenuRadioGroup({
|
|
384
384
|
...props
|
|
385
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>):
|
|
385
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime3.JSX.Element;
|
|
386
386
|
declare function DropdownMenuRadioItem({
|
|
387
387
|
className,
|
|
388
388
|
children,
|
|
389
389
|
...props
|
|
390
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>):
|
|
390
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime3.JSX.Element;
|
|
391
391
|
declare function DropdownMenuLabel({
|
|
392
392
|
className,
|
|
393
393
|
inset,
|
|
394
394
|
...props
|
|
395
395
|
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
396
396
|
inset?: boolean;
|
|
397
|
-
}):
|
|
397
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
398
398
|
declare function DropdownMenuSeparator({
|
|
399
399
|
className,
|
|
400
400
|
...props
|
|
401
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Separator>):
|
|
401
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime3.JSX.Element;
|
|
402
402
|
declare function DropdownMenuShortcut({
|
|
403
403
|
className,
|
|
404
404
|
...props
|
|
405
|
-
}: React$2.ComponentProps<'span'>):
|
|
405
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime3.JSX.Element;
|
|
406
406
|
declare function DropdownMenuSub({
|
|
407
407
|
...props
|
|
408
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Sub>):
|
|
408
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime3.JSX.Element;
|
|
409
409
|
declare function DropdownMenuSubTrigger({
|
|
410
410
|
className,
|
|
411
411
|
inset,
|
|
@@ -413,11 +413,11 @@ declare function DropdownMenuSubTrigger({
|
|
|
413
413
|
...props
|
|
414
414
|
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
415
415
|
inset?: boolean;
|
|
416
|
-
}):
|
|
416
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
417
417
|
declare function DropdownMenuSubContent({
|
|
418
418
|
className,
|
|
419
419
|
...props
|
|
420
|
-
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.SubContent>):
|
|
420
|
+
}: React$2.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime3.JSX.Element;
|
|
421
421
|
//#endregion
|
|
422
422
|
//#region src/components/emoji-picker.d.ts
|
|
423
423
|
declare const EmojiPickerCategories: {
|
|
@@ -457,17 +457,17 @@ declare function EmojiPicker({
|
|
|
457
457
|
emojiListWidth,
|
|
458
458
|
DefaultTriggerComponent,
|
|
459
459
|
categories
|
|
460
|
-
}: EmojiPickerProps):
|
|
460
|
+
}: EmojiPickerProps): react_jsx_runtime3.JSX.Element;
|
|
461
461
|
//#endregion
|
|
462
462
|
//#region src/components/empty.d.ts
|
|
463
463
|
declare function Empty({
|
|
464
464
|
className,
|
|
465
465
|
...props
|
|
466
|
-
}: React.ComponentProps<'div'>):
|
|
466
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
467
467
|
declare function EmptyHeader({
|
|
468
468
|
className,
|
|
469
469
|
...props
|
|
470
|
-
}: React.ComponentProps<'div'>):
|
|
470
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
471
471
|
declare const emptyMediaVariants: (props?: ({
|
|
472
472
|
variant?: "default" | "icon" | null | undefined;
|
|
473
473
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
@@ -475,42 +475,42 @@ declare function EmptyMedia({
|
|
|
475
475
|
className,
|
|
476
476
|
variant,
|
|
477
477
|
...props
|
|
478
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>):
|
|
478
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime3.JSX.Element;
|
|
479
479
|
declare function EmptyTitle({
|
|
480
480
|
className,
|
|
481
481
|
...props
|
|
482
|
-
}: React.ComponentProps<'div'>):
|
|
482
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
483
483
|
declare function EmptyDescription({
|
|
484
484
|
className,
|
|
485
485
|
...props
|
|
486
|
-
}: React.ComponentProps<'p'>):
|
|
486
|
+
}: React.ComponentProps<'p'>): react_jsx_runtime3.JSX.Element;
|
|
487
487
|
declare function EmptyContent({
|
|
488
488
|
className,
|
|
489
489
|
...props
|
|
490
|
-
}: React.ComponentProps<'div'>):
|
|
490
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
491
491
|
//#endregion
|
|
492
492
|
//#region src/components/label.d.ts
|
|
493
493
|
declare function Label({
|
|
494
494
|
className,
|
|
495
495
|
...props
|
|
496
|
-
}: React$2.ComponentProps<typeof LabelPrimitive.Root>):
|
|
496
|
+
}: React$2.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
497
497
|
//#endregion
|
|
498
498
|
//#region src/components/field.d.ts
|
|
499
499
|
declare function FieldSet({
|
|
500
500
|
className,
|
|
501
501
|
...props
|
|
502
|
-
}: React.ComponentProps<'fieldset'>):
|
|
502
|
+
}: React.ComponentProps<'fieldset'>): react_jsx_runtime3.JSX.Element;
|
|
503
503
|
declare function FieldLegend({
|
|
504
504
|
className,
|
|
505
505
|
variant,
|
|
506
506
|
...props
|
|
507
507
|
}: React.ComponentProps<'legend'> & {
|
|
508
508
|
variant?: 'legend' | 'label';
|
|
509
|
-
}):
|
|
509
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
510
510
|
declare function FieldGroup({
|
|
511
511
|
className,
|
|
512
512
|
...props
|
|
513
|
-
}: React.ComponentProps<'div'>):
|
|
513
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
514
514
|
declare const fieldVariants: (props?: ({
|
|
515
515
|
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
516
516
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
@@ -518,30 +518,30 @@ declare function Field({
|
|
|
518
518
|
className,
|
|
519
519
|
orientation,
|
|
520
520
|
...props
|
|
521
|
-
}: React.ComponentProps<'div'> & VariantProps<typeof fieldVariants>):
|
|
521
|
+
}: React.ComponentProps<'div'> & VariantProps<typeof fieldVariants>): react_jsx_runtime3.JSX.Element;
|
|
522
522
|
declare function FieldContent({
|
|
523
523
|
className,
|
|
524
524
|
...props
|
|
525
|
-
}: React.ComponentProps<'div'>):
|
|
525
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
526
526
|
declare function FieldLabel({
|
|
527
527
|
className,
|
|
528
528
|
...props
|
|
529
|
-
}: React.ComponentProps<typeof Label>):
|
|
529
|
+
}: React.ComponentProps<typeof Label>): react_jsx_runtime3.JSX.Element;
|
|
530
530
|
declare function FieldTitle({
|
|
531
531
|
className,
|
|
532
532
|
...props
|
|
533
|
-
}: React.ComponentProps<'div'>):
|
|
533
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
534
534
|
declare function FieldDescription({
|
|
535
535
|
className,
|
|
536
536
|
...props
|
|
537
|
-
}: React.ComponentProps<'p'>):
|
|
537
|
+
}: React.ComponentProps<'p'>): react_jsx_runtime3.JSX.Element;
|
|
538
538
|
declare function FieldSeparator({
|
|
539
539
|
children,
|
|
540
540
|
className,
|
|
541
541
|
...props
|
|
542
542
|
}: React.ComponentProps<'div'> & {
|
|
543
543
|
children?: React.ReactNode;
|
|
544
|
-
}):
|
|
544
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
545
545
|
declare function FieldError({
|
|
546
546
|
className,
|
|
547
547
|
children,
|
|
@@ -551,7 +551,7 @@ declare function FieldError({
|
|
|
551
551
|
errors?: Array<{
|
|
552
552
|
message?: string;
|
|
553
553
|
} | undefined>;
|
|
554
|
-
}):
|
|
554
|
+
}): react_jsx_runtime3.JSX.Element | null;
|
|
555
555
|
//#endregion
|
|
556
556
|
//#region src/components/input-group.d.ts
|
|
557
557
|
declare const inputGroupVariants: (props?: ({
|
|
@@ -561,7 +561,7 @@ declare function InputGroup({
|
|
|
561
561
|
className,
|
|
562
562
|
sizing,
|
|
563
563
|
...props
|
|
564
|
-
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupVariants>):
|
|
564
|
+
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupVariants>): react_jsx_runtime3.JSX.Element;
|
|
565
565
|
declare const inputGroupAddonVariants: (props?: ({
|
|
566
566
|
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
567
567
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
@@ -569,9 +569,9 @@ declare function InputGroupAddon({
|
|
|
569
569
|
className,
|
|
570
570
|
align,
|
|
571
571
|
...props
|
|
572
|
-
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>):
|
|
572
|
+
}: React$2.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime3.JSX.Element;
|
|
573
573
|
declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<Omit<React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & VariantProps<(props?: ({
|
|
574
|
-
variant?: "
|
|
574
|
+
variant?: "default" | "link" | "outline" | "secondary" | "destructive" | "ghost" | null | undefined;
|
|
575
575
|
size?: "default" | "sm" | "lg" | "icon" | "icon-sm" | "icon-lg" | null | undefined;
|
|
576
576
|
block?: boolean | null | undefined;
|
|
577
577
|
} & class_variance_authority_types0.ClassProp) | undefined) => string> & {
|
|
@@ -583,7 +583,7 @@ declare const InputGroupButton: React$2.ForwardRefExoticComponent<Omit<Omit<Omit
|
|
|
583
583
|
declare function InputGroupText({
|
|
584
584
|
className,
|
|
585
585
|
...props
|
|
586
|
-
}: React$2.ComponentProps<'span'>):
|
|
586
|
+
}: React$2.ComponentProps<'span'>): react_jsx_runtime3.JSX.Element;
|
|
587
587
|
declare const InputGroupInput: React$2.ForwardRefExoticComponent<Omit<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
|
|
588
588
|
sizing?: "default" | "sm" | "lg" | null | undefined;
|
|
589
589
|
block?: boolean | null | undefined;
|
|
@@ -591,30 +591,34 @@ declare const InputGroupInput: React$2.ForwardRefExoticComponent<Omit<Omit<React
|
|
|
591
591
|
declare function InputGroupTextarea({
|
|
592
592
|
className,
|
|
593
593
|
...props
|
|
594
|
-
}: React$2.ComponentProps<'textarea'>):
|
|
594
|
+
}: React$2.ComponentProps<'textarea'>): react_jsx_runtime3.JSX.Element;
|
|
595
595
|
//#endregion
|
|
596
596
|
//#region src/components/input-otp.d.ts
|
|
597
|
+
declare const inputOTPVariants: (props?: ({
|
|
598
|
+
sizing?: "default" | "sm" | "lg" | null | undefined;
|
|
599
|
+
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
597
600
|
declare function InputOTP({
|
|
598
601
|
className,
|
|
599
602
|
containerClassName,
|
|
603
|
+
sizing,
|
|
600
604
|
...props
|
|
601
|
-
}: React$2.ComponentProps<typeof OTPInput> & {
|
|
605
|
+
}: React$2.ComponentProps<typeof OTPInput> & VariantProps<typeof inputOTPVariants> & {
|
|
602
606
|
containerClassName?: string;
|
|
603
|
-
}):
|
|
607
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
604
608
|
declare function InputOTPGroup({
|
|
605
609
|
className,
|
|
606
610
|
...props
|
|
607
|
-
}: React$2.ComponentProps<"div">):
|
|
611
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime3.JSX.Element;
|
|
608
612
|
declare function InputOTPSlot({
|
|
609
613
|
index,
|
|
610
614
|
className,
|
|
611
615
|
...props
|
|
612
616
|
}: React$2.ComponentProps<"div"> & {
|
|
613
617
|
index: number;
|
|
614
|
-
}):
|
|
618
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
615
619
|
declare function InputOTPSeparator({
|
|
616
620
|
...props
|
|
617
|
-
}: React$2.ComponentProps<"div">):
|
|
621
|
+
}: React$2.ComponentProps<"div">): react_jsx_runtime3.JSX.Element;
|
|
618
622
|
//#endregion
|
|
619
623
|
//#region src/components/input.d.ts
|
|
620
624
|
declare const Input: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLInputElement> & React$2.InputHTMLAttributes<HTMLInputElement> & VariantProps<(props?: ({
|
|
@@ -630,7 +634,7 @@ declare const ItemGroup: React$2.ForwardRefExoticComponent<Omit<ItemGroupProps,
|
|
|
630
634
|
declare function ItemSeparator({
|
|
631
635
|
className,
|
|
632
636
|
...props
|
|
633
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
637
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime3.JSX.Element;
|
|
634
638
|
declare const itemVariants: (props?: ({
|
|
635
639
|
variant?: "default" | "outline" | "muted" | null | undefined;
|
|
636
640
|
size?: "default" | "sm" | null | undefined;
|
|
@@ -640,7 +644,7 @@ interface ItemProps extends React$2.ComponentPropsWithoutRef<'div'>, VariantProp
|
|
|
640
644
|
}
|
|
641
645
|
declare const Item: React$2.ForwardRefExoticComponent<ItemProps & React$2.RefAttributes<HTMLDivElement>>;
|
|
642
646
|
declare const ItemMedia: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & VariantProps<(props?: ({
|
|
643
|
-
variant?: "
|
|
647
|
+
variant?: "default" | "image" | "icon" | null | undefined;
|
|
644
648
|
} & class_variance_authority_types0.ClassProp) | undefined) => string> & React$2.RefAttributes<HTMLDivElement>>;
|
|
645
649
|
declare const ItemContent: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
646
650
|
declare const ItemTitle: React$2.ForwardRefExoticComponent<Omit<React$2.DetailedHTMLProps<React$2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$2.RefAttributes<HTMLDivElement>>;
|
|
@@ -657,7 +661,7 @@ declare const List: ({
|
|
|
657
661
|
children,
|
|
658
662
|
className,
|
|
659
663
|
...props
|
|
660
|
-
}: ListProps) =>
|
|
664
|
+
}: ListProps) => react_jsx_runtime3.JSX.Element;
|
|
661
665
|
interface ListRowProps extends React$2.HTMLAttributes<HTMLDivElement> {
|
|
662
666
|
children: React$2.ReactNode;
|
|
663
667
|
}
|
|
@@ -673,64 +677,64 @@ declare const ListCol: ({
|
|
|
673
677
|
children,
|
|
674
678
|
className,
|
|
675
679
|
...props
|
|
676
|
-
}: ListColProps) =>
|
|
680
|
+
}: ListColProps) => react_jsx_runtime3.JSX.Element;
|
|
677
681
|
//#endregion
|
|
678
682
|
//#region src/components/popover.d.ts
|
|
679
683
|
declare function Popover({
|
|
680
684
|
...props
|
|
681
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Root>):
|
|
685
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
682
686
|
declare function PopoverTrigger({
|
|
683
687
|
...props
|
|
684
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Trigger>):
|
|
688
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
685
689
|
declare function PopoverContent({
|
|
686
690
|
className,
|
|
687
691
|
align,
|
|
688
692
|
sideOffset,
|
|
689
693
|
...props
|
|
690
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Content>):
|
|
694
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Content>): react_jsx_runtime3.JSX.Element;
|
|
691
695
|
declare function PopoverAnchor({
|
|
692
696
|
...props
|
|
693
|
-
}: React$2.ComponentProps<typeof PopoverPrimitive.Anchor>):
|
|
697
|
+
}: React$2.ComponentProps<typeof PopoverPrimitive.Anchor>): react_jsx_runtime3.JSX.Element;
|
|
694
698
|
//#endregion
|
|
695
699
|
//#region src/components/progress.d.ts
|
|
696
700
|
declare function Progress({
|
|
697
701
|
className,
|
|
698
702
|
value,
|
|
699
703
|
...props
|
|
700
|
-
}: React$2.ComponentProps<typeof ProgressPrimitive.Root>):
|
|
704
|
+
}: React$2.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
701
705
|
//#endregion
|
|
702
706
|
//#region src/components/radio-group.d.ts
|
|
703
707
|
declare function RadioGroup({
|
|
704
708
|
className,
|
|
705
709
|
...props
|
|
706
|
-
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Root>):
|
|
710
|
+
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
707
711
|
declare function RadioGroupItem({
|
|
708
712
|
className,
|
|
709
713
|
...props
|
|
710
|
-
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Item>):
|
|
714
|
+
}: React$2.ComponentProps<typeof RadioGroupPrimitive.Item>): react_jsx_runtime3.JSX.Element;
|
|
711
715
|
//#endregion
|
|
712
716
|
//#region src/components/scroll-area.d.ts
|
|
713
717
|
declare function ScrollArea({
|
|
714
718
|
className,
|
|
715
719
|
children,
|
|
716
720
|
...props
|
|
717
|
-
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.Root>):
|
|
721
|
+
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
718
722
|
declare function ScrollBar({
|
|
719
723
|
className,
|
|
720
724
|
orientation,
|
|
721
725
|
...props
|
|
722
|
-
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>):
|
|
726
|
+
}: React$2.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime3.JSX.Element;
|
|
723
727
|
//#endregion
|
|
724
728
|
//#region src/components/select.d.ts
|
|
725
729
|
declare function Select({
|
|
726
730
|
...props
|
|
727
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Root>):
|
|
731
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
728
732
|
declare function SelectGroup({
|
|
729
733
|
...props
|
|
730
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Group>):
|
|
734
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Group>): react_jsx_runtime3.JSX.Element;
|
|
731
735
|
declare function SelectValue({
|
|
732
736
|
...props
|
|
733
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Value>):
|
|
737
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Value>): react_jsx_runtime3.JSX.Element;
|
|
734
738
|
declare function SelectTrigger({
|
|
735
739
|
className,
|
|
736
740
|
size,
|
|
@@ -738,45 +742,45 @@ declare function SelectTrigger({
|
|
|
738
742
|
...props
|
|
739
743
|
}: React$2.ComponentProps<typeof SelectPrimitive.Trigger> & {
|
|
740
744
|
size?: 'sm' | 'default';
|
|
741
|
-
}):
|
|
745
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
742
746
|
declare function SelectContent({
|
|
743
747
|
className,
|
|
744
748
|
children,
|
|
745
749
|
position,
|
|
746
750
|
...props
|
|
747
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Content>):
|
|
751
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Content>): react_jsx_runtime3.JSX.Element;
|
|
748
752
|
declare function SelectLabel({
|
|
749
753
|
className,
|
|
750
754
|
...props
|
|
751
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Label>):
|
|
755
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime3.JSX.Element;
|
|
752
756
|
declare function SelectItem({
|
|
753
757
|
className,
|
|
754
758
|
children,
|
|
755
759
|
...props
|
|
756
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Item>):
|
|
760
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime3.JSX.Element;
|
|
757
761
|
declare function SelectSeparator({
|
|
758
762
|
className,
|
|
759
763
|
...props
|
|
760
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.Separator>):
|
|
764
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime3.JSX.Element;
|
|
761
765
|
declare function SelectScrollUpButton({
|
|
762
766
|
className,
|
|
763
767
|
...props
|
|
764
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollUpButton>):
|
|
768
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime3.JSX.Element;
|
|
765
769
|
declare function SelectScrollDownButton({
|
|
766
770
|
className,
|
|
767
771
|
...props
|
|
768
|
-
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollDownButton>):
|
|
772
|
+
}: React$2.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime3.JSX.Element;
|
|
769
773
|
//#endregion
|
|
770
774
|
//#region src/components/sheet.d.ts
|
|
771
775
|
declare function Sheet({
|
|
772
776
|
...props
|
|
773
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Root>):
|
|
777
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
774
778
|
declare function SheetTrigger({
|
|
775
779
|
...props
|
|
776
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>):
|
|
780
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
777
781
|
declare function SheetClose({
|
|
778
782
|
...props
|
|
779
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Close>):
|
|
783
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime3.JSX.Element;
|
|
780
784
|
type SheetContentProps = React$2.ComponentProps<typeof DialogPrimitive.Content> & {
|
|
781
785
|
side?: 'top' | 'right' | 'bottom' | 'left';
|
|
782
786
|
position?: 'fixed' | 'absolute';
|
|
@@ -788,23 +792,23 @@ declare function SheetContent({
|
|
|
788
792
|
container,
|
|
789
793
|
position,
|
|
790
794
|
...props
|
|
791
|
-
}: SheetContentProps):
|
|
795
|
+
}: SheetContentProps): react_jsx_runtime3.JSX.Element;
|
|
792
796
|
declare function SheetHeader({
|
|
793
797
|
className,
|
|
794
798
|
...props
|
|
795
|
-
}: React$2.ComponentProps<'div'>):
|
|
799
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
796
800
|
declare function SheetFooter({
|
|
797
801
|
className,
|
|
798
802
|
...props
|
|
799
|
-
}: React$2.ComponentProps<'div'>):
|
|
803
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
800
804
|
declare function SheetTitle({
|
|
801
805
|
className,
|
|
802
806
|
...props
|
|
803
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Title>):
|
|
807
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime3.JSX.Element;
|
|
804
808
|
declare function SheetDescription({
|
|
805
809
|
className,
|
|
806
810
|
...props
|
|
807
|
-
}: React$2.ComponentProps<typeof DialogPrimitive.Description>):
|
|
811
|
+
}: React$2.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime3.JSX.Element;
|
|
808
812
|
//#endregion
|
|
809
813
|
//#region src/components/tooltip.d.ts
|
|
810
814
|
declare const TooltipProvider: React$2.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
@@ -838,7 +842,7 @@ declare function SidebarProvider({
|
|
|
838
842
|
open?: boolean;
|
|
839
843
|
onOpenChange?: (open: boolean) => void;
|
|
840
844
|
disableMobile?: boolean;
|
|
841
|
-
}):
|
|
845
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
842
846
|
declare function Sidebar({
|
|
843
847
|
side,
|
|
844
848
|
variant,
|
|
@@ -850,70 +854,70 @@ declare function Sidebar({
|
|
|
850
854
|
side?: 'left' | 'right';
|
|
851
855
|
variant?: 'sidebar' | 'floating' | 'inset';
|
|
852
856
|
collapsible?: 'offcanvas' | 'icon' | 'none';
|
|
853
|
-
}):
|
|
857
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
854
858
|
declare function SidebarTrigger({
|
|
855
859
|
className,
|
|
856
860
|
onClick,
|
|
857
861
|
...props
|
|
858
|
-
}: React$2.ComponentProps<typeof Button>):
|
|
862
|
+
}: React$2.ComponentProps<typeof Button>): react_jsx_runtime3.JSX.Element;
|
|
859
863
|
declare function SidebarRail({
|
|
860
864
|
className,
|
|
861
865
|
...props
|
|
862
|
-
}: React$2.ComponentProps<'button'>):
|
|
866
|
+
}: React$2.ComponentProps<'button'>): react_jsx_runtime3.JSX.Element;
|
|
863
867
|
declare function SidebarInset({
|
|
864
868
|
className,
|
|
865
869
|
...props
|
|
866
|
-
}: React$2.ComponentProps<'main'>):
|
|
870
|
+
}: React$2.ComponentProps<'main'>): react_jsx_runtime3.JSX.Element;
|
|
867
871
|
declare function SidebarInput({
|
|
868
872
|
className,
|
|
869
873
|
...props
|
|
870
|
-
}: React$2.ComponentProps<typeof Input>):
|
|
874
|
+
}: React$2.ComponentProps<typeof Input>): react_jsx_runtime3.JSX.Element;
|
|
871
875
|
declare function SidebarHeader({
|
|
872
876
|
className,
|
|
873
877
|
...props
|
|
874
|
-
}: React$2.ComponentProps<'div'>):
|
|
878
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
875
879
|
declare function SidebarFooter({
|
|
876
880
|
className,
|
|
877
881
|
...props
|
|
878
|
-
}: React$2.ComponentProps<'div'>):
|
|
882
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
879
883
|
declare function SidebarSeparator({
|
|
880
884
|
className,
|
|
881
885
|
...props
|
|
882
|
-
}: React$2.ComponentProps<typeof Separator>):
|
|
886
|
+
}: React$2.ComponentProps<typeof Separator>): react_jsx_runtime3.JSX.Element;
|
|
883
887
|
declare function SidebarContent({
|
|
884
888
|
className,
|
|
885
889
|
...props
|
|
886
|
-
}: React$2.ComponentProps<'div'>):
|
|
890
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
887
891
|
declare function SidebarGroup({
|
|
888
892
|
className,
|
|
889
893
|
...props
|
|
890
|
-
}: React$2.ComponentProps<'div'>):
|
|
894
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
891
895
|
declare function SidebarGroupLabel({
|
|
892
896
|
className,
|
|
893
897
|
asChild,
|
|
894
898
|
...props
|
|
895
899
|
}: React$2.ComponentProps<'div'> & {
|
|
896
900
|
asChild?: boolean;
|
|
897
|
-
}):
|
|
901
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
898
902
|
declare function SidebarGroupAction({
|
|
899
903
|
className,
|
|
900
904
|
asChild,
|
|
901
905
|
...props
|
|
902
906
|
}: React$2.ComponentProps<'button'> & {
|
|
903
907
|
asChild?: boolean;
|
|
904
|
-
}):
|
|
908
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
905
909
|
declare function SidebarGroupContent({
|
|
906
910
|
className,
|
|
907
911
|
...props
|
|
908
|
-
}: React$2.ComponentProps<'div'>):
|
|
912
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
909
913
|
declare function SidebarMenu({
|
|
910
914
|
className,
|
|
911
915
|
...props
|
|
912
|
-
}: React$2.ComponentProps<'ul'>):
|
|
916
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime3.JSX.Element;
|
|
913
917
|
declare function SidebarMenuItem({
|
|
914
918
|
className,
|
|
915
919
|
...props
|
|
916
|
-
}: React$2.ComponentProps<'li'>):
|
|
920
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime3.JSX.Element;
|
|
917
921
|
declare const SidebarMenuButton: React$2.ForwardRefExoticComponent<Omit<React$2.ClassAttributes<HTMLButtonElement> & React$2.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
918
922
|
asChild?: boolean;
|
|
919
923
|
isActive?: boolean;
|
|
@@ -929,22 +933,22 @@ declare const SidebarMenuAction: React$2.ForwardRefExoticComponent<Omit<React$2.
|
|
|
929
933
|
declare function SidebarMenuBadge({
|
|
930
934
|
className,
|
|
931
935
|
...props
|
|
932
|
-
}: React$2.ComponentProps<'div'>):
|
|
936
|
+
}: React$2.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
933
937
|
declare function SidebarMenuSkeleton({
|
|
934
938
|
className,
|
|
935
939
|
showIcon,
|
|
936
940
|
...props
|
|
937
941
|
}: React$2.ComponentProps<'div'> & {
|
|
938
942
|
showIcon?: boolean;
|
|
939
|
-
}):
|
|
943
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
940
944
|
declare function SidebarMenuSub({
|
|
941
945
|
className,
|
|
942
946
|
...props
|
|
943
|
-
}: React$2.ComponentProps<'ul'>):
|
|
947
|
+
}: React$2.ComponentProps<'ul'>): react_jsx_runtime3.JSX.Element;
|
|
944
948
|
declare function SidebarMenuSubItem({
|
|
945
949
|
className,
|
|
946
950
|
...props
|
|
947
|
-
}: React$2.ComponentProps<'li'>):
|
|
951
|
+
}: React$2.ComponentProps<'li'>): react_jsx_runtime3.JSX.Element;
|
|
948
952
|
declare function SidebarMenuSubButton({
|
|
949
953
|
asChild,
|
|
950
954
|
size,
|
|
@@ -955,13 +959,13 @@ declare function SidebarMenuSubButton({
|
|
|
955
959
|
asChild?: boolean;
|
|
956
960
|
size?: 'sm' | 'md';
|
|
957
961
|
isActive?: boolean;
|
|
958
|
-
}):
|
|
962
|
+
}): react_jsx_runtime3.JSX.Element;
|
|
959
963
|
//#endregion
|
|
960
964
|
//#region src/components/skeleton.d.ts
|
|
961
965
|
declare function Skeleton({
|
|
962
966
|
className,
|
|
963
967
|
...props
|
|
964
|
-
}: React.ComponentProps<'div'>):
|
|
968
|
+
}: React.ComponentProps<'div'>): react_jsx_runtime3.JSX.Element;
|
|
965
969
|
//#endregion
|
|
966
970
|
//#region src/components/slider.d.ts
|
|
967
971
|
declare function Slider({
|
|
@@ -971,12 +975,12 @@ declare function Slider({
|
|
|
971
975
|
min,
|
|
972
976
|
max,
|
|
973
977
|
...props
|
|
974
|
-
}: React$2.ComponentProps<typeof SliderPrimitive.Root>):
|
|
978
|
+
}: React$2.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
975
979
|
//#endregion
|
|
976
980
|
//#region src/components/sonner.d.ts
|
|
977
981
|
declare const Toaster: ({
|
|
978
982
|
...props
|
|
979
|
-
}: ToasterProps) =>
|
|
983
|
+
}: ToasterProps) => react_jsx_runtime3.JSX.Element;
|
|
980
984
|
//#endregion
|
|
981
985
|
//#region src/components/spinner.d.ts
|
|
982
986
|
declare const spinnerVariants: (props?: ({
|
|
@@ -987,13 +991,13 @@ declare function Spinner({
|
|
|
987
991
|
className,
|
|
988
992
|
size,
|
|
989
993
|
...props
|
|
990
|
-
}: SpinnerProps):
|
|
994
|
+
}: SpinnerProps): react_jsx_runtime3.JSX.Element;
|
|
991
995
|
//#endregion
|
|
992
996
|
//#region src/components/switch.d.ts
|
|
993
997
|
declare function Switch({
|
|
994
998
|
className,
|
|
995
999
|
...props
|
|
996
|
-
}: React$2.ComponentProps<typeof SwitchPrimitive.Root>):
|
|
1000
|
+
}: React$2.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
997
1001
|
//#endregion
|
|
998
1002
|
//#region src/components/tab-bar.d.ts
|
|
999
1003
|
interface TabBarItem {
|
|
@@ -1015,31 +1019,31 @@ declare function TabBar({
|
|
|
1015
1019
|
onTabChange,
|
|
1016
1020
|
renderTab,
|
|
1017
1021
|
className
|
|
1018
|
-
}: TabBarProps):
|
|
1022
|
+
}: TabBarProps): react_jsx_runtime3.JSX.Element;
|
|
1019
1023
|
//#endregion
|
|
1020
1024
|
//#region src/components/tabs.d.ts
|
|
1021
1025
|
declare function Tabs({
|
|
1022
1026
|
className,
|
|
1023
1027
|
...props
|
|
1024
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.Root>):
|
|
1028
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime3.JSX.Element;
|
|
1025
1029
|
declare function TabsList({
|
|
1026
1030
|
className,
|
|
1027
1031
|
...props
|
|
1028
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.List>):
|
|
1032
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime3.JSX.Element;
|
|
1029
1033
|
declare function TabsTrigger({
|
|
1030
1034
|
className,
|
|
1031
1035
|
...props
|
|
1032
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.Trigger>):
|
|
1036
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime3.JSX.Element;
|
|
1033
1037
|
declare function TabsContent({
|
|
1034
1038
|
className,
|
|
1035
1039
|
...props
|
|
1036
|
-
}: React$2.ComponentProps<typeof TabsPrimitive.Content>):
|
|
1040
|
+
}: React$2.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime3.JSX.Element;
|
|
1037
1041
|
//#endregion
|
|
1038
1042
|
//#region src/components/textarea.d.ts
|
|
1039
1043
|
declare function Textarea({
|
|
1040
1044
|
className,
|
|
1041
1045
|
...props
|
|
1042
|
-
}: React$2.ComponentProps<'textarea'>):
|
|
1046
|
+
}: React$2.ComponentProps<'textarea'>): react_jsx_runtime3.JSX.Element;
|
|
1043
1047
|
//#endregion
|
|
1044
1048
|
//#region src/components/theme-provider.d.ts
|
|
1045
1049
|
type ThemeProviderProps = ThemeProviderProps$1;
|
|
@@ -1065,16 +1069,16 @@ declare function ToggleGroup({
|
|
|
1065
1069
|
size,
|
|
1066
1070
|
children,
|
|
1067
1071
|
...props
|
|
1068
|
-
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>):
|
|
1072
|
+
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime3.JSX.Element;
|
|
1069
1073
|
declare function ToggleGroupItem({
|
|
1070
1074
|
className,
|
|
1071
1075
|
children,
|
|
1072
1076
|
variant,
|
|
1073
1077
|
size,
|
|
1074
1078
|
...props
|
|
1075
|
-
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>):
|
|
1079
|
+
}: React$2.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime3.JSX.Element;
|
|
1076
1080
|
//#endregion
|
|
1077
1081
|
//#region src/lib/utils.d.ts
|
|
1078
1082
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1079
1083
|
//#endregion
|
|
1080
|
-
export { Alert, AlertAction, AlertDescription, AlertTitle, Avatar, AvatarFallback, AvatarImage, AvatarProps, Badge, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CountryFlag, CountryFlagProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerContentProps, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmojiPicker, EmojiPickerCategories, EmojiPickerProps, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemProps, ItemSeparator, ItemTitle, Label, List, ListCol, ListRow, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetContentProps, 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, Slider, Slot, Spinner, Switch, TabBar, TabBarItem, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, ThemeProviderProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipContentProps, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, spinnerVariants, toast, toggleVariants, useSidebar, useTheme };
|
|
1084
|
+
export { Alert, AlertAction, AlertDescription, AlertTitle, Avatar, AvatarFallback, AvatarImage, AvatarProps, Badge, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, ButtonProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CountryFlag, CountryFlagProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerContentProps, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmojiPicker, EmojiPickerCategories, EmojiPickerProps, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemProps, ItemSeparator, ItemTitle, Label, List, ListCol, ListRow, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetContentProps, 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, Slider, Slot, Spinner, Switch, TabBar, TabBarItem, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, ThemeProviderProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipContentProps, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, inputOTPVariants, spinnerVariants, toast, toggleVariants, useSidebar, useTheme };
|