@fea-ui/react 0.0.0-canary.2 → 0.0.0-canary.4
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 +45 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +642 -600
- package/dist/index.d.mts +710 -668
- package/dist/index.mjs +45 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants14 from "tailwind-variants";
|
|
2
2
|
import { VariantProps, cn } from "tailwind-variants";
|
|
3
3
|
import { Accordion, AlertDialog, Avatar, Button as Button$1, Checkbox, CheckboxGroup as CheckboxGroup$1, Dialog, Field, Fieldset, Form as Form$1, Input as Input$1, Menu, Meter, Popover, Progress, Radio, RadioGroup as RadioGroup$1, Separator as Separator$1, Slider, Switch, Tabs, ToggleProps } from "@base-ui/react";
|
|
4
4
|
import React$1 from "react";
|
|
5
|
-
import * as
|
|
5
|
+
import * as react_jsx_runtime29 from "react/jsx-runtime";
|
|
6
6
|
import { Slot } from "@radix-ui/react-slot";
|
|
7
|
-
import * as
|
|
7
|
+
import * as tailwind_merge77 from "tailwind-merge";
|
|
8
8
|
|
|
9
9
|
//#region src/components/accordion/accordion.variants.d.ts
|
|
10
|
-
declare const accordionVariants:
|
|
10
|
+
declare const accordionVariants: tailwind_variants14.TVReturnType<{
|
|
11
11
|
[key: string]: {
|
|
12
|
-
[key: string]:
|
|
13
|
-
|
|
14
|
-
header?:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
trigger?:
|
|
19
|
-
triggerIcon?:
|
|
12
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
13
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
14
|
+
header?: tailwind_merge77.ClassNameValue;
|
|
15
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
16
|
+
item?: tailwind_merge77.ClassNameValue;
|
|
17
|
+
panel?: tailwind_merge77.ClassNameValue;
|
|
18
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
19
|
+
triggerIcon?: tailwind_merge77.ClassNameValue;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
22
|
} | {
|
|
23
23
|
[x: string]: {
|
|
24
|
-
[x: string]:
|
|
25
|
-
|
|
26
|
-
header?:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
trigger?:
|
|
31
|
-
triggerIcon?:
|
|
24
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
25
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
26
|
+
header?: tailwind_merge77.ClassNameValue;
|
|
27
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
28
|
+
item?: tailwind_merge77.ClassNameValue;
|
|
29
|
+
panel?: tailwind_merge77.ClassNameValue;
|
|
30
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
31
|
+
triggerIcon?: tailwind_merge77.ClassNameValue;
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
34
|
} | {}, {
|
|
@@ -41,14 +41,14 @@ declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
|
41
41
|
triggerIcon: string;
|
|
42
42
|
}, undefined, {
|
|
43
43
|
[key: string]: {
|
|
44
|
-
[key: string]:
|
|
45
|
-
|
|
46
|
-
header?:
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
trigger?:
|
|
51
|
-
triggerIcon?:
|
|
44
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
45
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
46
|
+
header?: tailwind_merge77.ClassNameValue;
|
|
47
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
48
|
+
item?: tailwind_merge77.ClassNameValue;
|
|
49
|
+
panel?: tailwind_merge77.ClassNameValue;
|
|
50
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
51
|
+
triggerIcon?: tailwind_merge77.ClassNameValue;
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
54
|
} | {}, {
|
|
@@ -59,7 +59,7 @@ declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
|
59
59
|
root: string;
|
|
60
60
|
trigger: string;
|
|
61
61
|
triggerIcon: string;
|
|
62
|
-
},
|
|
62
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
63
63
|
content: string;
|
|
64
64
|
header: string;
|
|
65
65
|
item: string;
|
|
@@ -81,39 +81,39 @@ interface AccordionContentProps extends React.ComponentProps<"div"> {}
|
|
|
81
81
|
declare const _default: (({
|
|
82
82
|
className,
|
|
83
83
|
...props
|
|
84
|
-
}: AccordionProps) =>
|
|
84
|
+
}: AccordionProps) => react_jsx_runtime29.JSX.Element) & {
|
|
85
85
|
Content: ({
|
|
86
86
|
className,
|
|
87
87
|
...props
|
|
88
|
-
}: AccordionContentProps) =>
|
|
88
|
+
}: AccordionContentProps) => react_jsx_runtime29.JSX.Element;
|
|
89
89
|
Header: ({
|
|
90
90
|
className,
|
|
91
91
|
...props
|
|
92
|
-
}: AccordionHeaderProps) =>
|
|
92
|
+
}: AccordionHeaderProps) => react_jsx_runtime29.JSX.Element;
|
|
93
93
|
Item: ({
|
|
94
94
|
className,
|
|
95
95
|
...props
|
|
96
|
-
}: AccordionItemProps) =>
|
|
96
|
+
}: AccordionItemProps) => react_jsx_runtime29.JSX.Element;
|
|
97
97
|
Panel: ({
|
|
98
98
|
className,
|
|
99
99
|
...props
|
|
100
|
-
}: AccordionPanelProps) =>
|
|
100
|
+
}: AccordionPanelProps) => react_jsx_runtime29.JSX.Element;
|
|
101
101
|
Root: ({
|
|
102
102
|
className,
|
|
103
103
|
...props
|
|
104
|
-
}: AccordionProps) =>
|
|
104
|
+
}: AccordionProps) => react_jsx_runtime29.JSX.Element;
|
|
105
105
|
Trigger: ({
|
|
106
106
|
className,
|
|
107
107
|
...props
|
|
108
|
-
}: AccordionTriggerProps) =>
|
|
108
|
+
}: AccordionTriggerProps) => react_jsx_runtime29.JSX.Element;
|
|
109
109
|
TriggerIcon: ({
|
|
110
110
|
className,
|
|
111
111
|
...props
|
|
112
|
-
}: AccordionTriggerIconProps) =>
|
|
112
|
+
}: AccordionTriggerIconProps) => react_jsx_runtime29.JSX.Element;
|
|
113
113
|
};
|
|
114
114
|
//#endregion
|
|
115
115
|
//#region src/components/alert/alert.variants.d.ts
|
|
116
|
-
declare const alertVariants:
|
|
116
|
+
declare const alertVariants: tailwind_variants14.TVReturnType<{
|
|
117
117
|
variant: {
|
|
118
118
|
danger: {
|
|
119
119
|
root: string;
|
|
@@ -161,7 +161,7 @@ declare const alertVariants: tailwind_variants0.TVReturnType<{
|
|
|
161
161
|
indicator: string;
|
|
162
162
|
root: string;
|
|
163
163
|
title: string;
|
|
164
|
-
},
|
|
164
|
+
}, tailwind_variants14.TVReturnType<{
|
|
165
165
|
variant: {
|
|
166
166
|
danger: {
|
|
167
167
|
root: string;
|
|
@@ -198,58 +198,58 @@ declare const _default$1: (({
|
|
|
198
198
|
className,
|
|
199
199
|
variant,
|
|
200
200
|
...props
|
|
201
|
-
}: AlertProps) =>
|
|
201
|
+
}: AlertProps) => react_jsx_runtime29.JSX.Element) & {
|
|
202
202
|
Content: ({
|
|
203
203
|
className,
|
|
204
204
|
...props
|
|
205
|
-
}: AlertContentProps) =>
|
|
205
|
+
}: AlertContentProps) => react_jsx_runtime29.JSX.Element;
|
|
206
206
|
Description: ({
|
|
207
207
|
className,
|
|
208
208
|
...props
|
|
209
|
-
}: AlertDescriptionProps) =>
|
|
209
|
+
}: AlertDescriptionProps) => react_jsx_runtime29.JSX.Element;
|
|
210
210
|
Indicator: ({
|
|
211
211
|
className,
|
|
212
212
|
children,
|
|
213
213
|
...props
|
|
214
|
-
}: AlertIndicatorProps) =>
|
|
214
|
+
}: AlertIndicatorProps) => react_jsx_runtime29.JSX.Element;
|
|
215
215
|
Root: ({
|
|
216
216
|
className,
|
|
217
217
|
variant,
|
|
218
218
|
...props
|
|
219
|
-
}: AlertProps) =>
|
|
219
|
+
}: AlertProps) => react_jsx_runtime29.JSX.Element;
|
|
220
220
|
Title: ({
|
|
221
221
|
className,
|
|
222
222
|
...props
|
|
223
|
-
}: AlertTitleProps) =>
|
|
223
|
+
}: AlertTitleProps) => react_jsx_runtime29.JSX.Element;
|
|
224
224
|
};
|
|
225
225
|
//#endregion
|
|
226
226
|
//#region src/components/alert-dialog/alert-dialog.variants.d.ts
|
|
227
|
-
declare const alertDialogVariants:
|
|
227
|
+
declare const alertDialogVariants: tailwind_variants14.TVReturnType<{
|
|
228
228
|
[key: string]: {
|
|
229
|
-
[key: string]:
|
|
230
|
-
root?:
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
description?:
|
|
234
|
-
backdrop?:
|
|
235
|
-
close?:
|
|
236
|
-
popup?:
|
|
237
|
-
portal?:
|
|
238
|
-
viewport?:
|
|
229
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
230
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
231
|
+
title?: tailwind_merge77.ClassNameValue;
|
|
232
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
233
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
234
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
235
|
+
close?: tailwind_merge77.ClassNameValue;
|
|
236
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
237
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
238
|
+
viewport?: tailwind_merge77.ClassNameValue;
|
|
239
239
|
};
|
|
240
240
|
};
|
|
241
241
|
} | {
|
|
242
242
|
[x: string]: {
|
|
243
|
-
[x: string]:
|
|
244
|
-
root?:
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
description?:
|
|
248
|
-
backdrop?:
|
|
249
|
-
close?:
|
|
250
|
-
popup?:
|
|
251
|
-
portal?:
|
|
252
|
-
viewport?:
|
|
243
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
244
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
245
|
+
title?: tailwind_merge77.ClassNameValue;
|
|
246
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
247
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
248
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
249
|
+
close?: tailwind_merge77.ClassNameValue;
|
|
250
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
251
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
252
|
+
viewport?: tailwind_merge77.ClassNameValue;
|
|
253
253
|
};
|
|
254
254
|
};
|
|
255
255
|
} | {}, {
|
|
@@ -264,16 +264,16 @@ declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
264
264
|
viewport: string;
|
|
265
265
|
}, undefined, {
|
|
266
266
|
[key: string]: {
|
|
267
|
-
[key: string]:
|
|
268
|
-
root?:
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
description?:
|
|
272
|
-
backdrop?:
|
|
273
|
-
close?:
|
|
274
|
-
popup?:
|
|
275
|
-
portal?:
|
|
276
|
-
viewport?:
|
|
267
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
268
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
269
|
+
title?: tailwind_merge77.ClassNameValue;
|
|
270
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
271
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
272
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
273
|
+
close?: tailwind_merge77.ClassNameValue;
|
|
274
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
275
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
276
|
+
viewport?: tailwind_merge77.ClassNameValue;
|
|
277
277
|
};
|
|
278
278
|
};
|
|
279
279
|
} | {}, {
|
|
@@ -286,7 +286,7 @@ declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
286
286
|
title: string;
|
|
287
287
|
trigger: string;
|
|
288
288
|
viewport: string;
|
|
289
|
-
},
|
|
289
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
290
290
|
backdrop: string;
|
|
291
291
|
close: string;
|
|
292
292
|
description: string;
|
|
@@ -311,47 +311,47 @@ interface AlertDialogDescriptionProps extends AlertDialog.Description.Props {}
|
|
|
311
311
|
interface AlertDialogCloseProps extends AlertDialog.Close.Props {}
|
|
312
312
|
declare const _default$2: (({
|
|
313
313
|
...props
|
|
314
|
-
}: AlertDialogProps) =>
|
|
314
|
+
}: AlertDialogProps) => react_jsx_runtime29.JSX.Element) & {
|
|
315
315
|
Backdrop: ({
|
|
316
316
|
className,
|
|
317
317
|
...props
|
|
318
|
-
}: AlertDialogBackdropProps) =>
|
|
318
|
+
}: AlertDialogBackdropProps) => react_jsx_runtime29.JSX.Element;
|
|
319
319
|
Close: ({
|
|
320
320
|
className,
|
|
321
321
|
children,
|
|
322
322
|
...props
|
|
323
|
-
}: AlertDialogCloseProps) =>
|
|
323
|
+
}: AlertDialogCloseProps) => react_jsx_runtime29.JSX.Element;
|
|
324
324
|
Description: ({
|
|
325
325
|
className,
|
|
326
326
|
...props
|
|
327
|
-
}: AlertDialogDescriptionProps) =>
|
|
327
|
+
}: AlertDialogDescriptionProps) => react_jsx_runtime29.JSX.Element;
|
|
328
328
|
Popup: ({
|
|
329
329
|
className,
|
|
330
330
|
...props
|
|
331
|
-
}: AlertDialogPopupProps) =>
|
|
331
|
+
}: AlertDialogPopupProps) => react_jsx_runtime29.JSX.Element;
|
|
332
332
|
Portal: ({
|
|
333
333
|
className,
|
|
334
334
|
...props
|
|
335
|
-
}: AlertDialogPortalProps) =>
|
|
335
|
+
}: AlertDialogPortalProps) => react_jsx_runtime29.JSX.Element;
|
|
336
336
|
Root: ({
|
|
337
337
|
...props
|
|
338
|
-
}: AlertDialogProps) =>
|
|
338
|
+
}: AlertDialogProps) => react_jsx_runtime29.JSX.Element;
|
|
339
339
|
Title: ({
|
|
340
340
|
className,
|
|
341
341
|
...props
|
|
342
|
-
}: AlertDialogTitleProps) =>
|
|
342
|
+
}: AlertDialogTitleProps) => react_jsx_runtime29.JSX.Element;
|
|
343
343
|
Trigger: ({
|
|
344
344
|
className,
|
|
345
345
|
...props
|
|
346
|
-
}: AlertDialogTriggerProps) =>
|
|
346
|
+
}: AlertDialogTriggerProps) => react_jsx_runtime29.JSX.Element;
|
|
347
347
|
Viewport: ({
|
|
348
348
|
className,
|
|
349
349
|
...props
|
|
350
|
-
}: AlertDialogViewportProps) =>
|
|
350
|
+
}: AlertDialogViewportProps) => react_jsx_runtime29.JSX.Element;
|
|
351
351
|
};
|
|
352
352
|
//#endregion
|
|
353
353
|
//#region src/components/avatar/avatar.variants.d.ts
|
|
354
|
-
declare const avatarVariants:
|
|
354
|
+
declare const avatarVariants: tailwind_variants14.TVReturnType<{
|
|
355
355
|
size: {
|
|
356
356
|
lg: {
|
|
357
357
|
root: string;
|
|
@@ -383,7 +383,7 @@ declare const avatarVariants: tailwind_variants0.TVReturnType<{
|
|
|
383
383
|
fallback: string;
|
|
384
384
|
image: string;
|
|
385
385
|
root: string;
|
|
386
|
-
},
|
|
386
|
+
}, tailwind_variants14.TVReturnType<{
|
|
387
387
|
size: {
|
|
388
388
|
lg: {
|
|
389
389
|
root: string;
|
|
@@ -410,24 +410,24 @@ declare const _default$3: (({
|
|
|
410
410
|
className,
|
|
411
411
|
size,
|
|
412
412
|
...props
|
|
413
|
-
}: AvatarProps) =>
|
|
413
|
+
}: AvatarProps) => react_jsx_runtime29.JSX.Element) & {
|
|
414
414
|
Fallback: ({
|
|
415
415
|
className,
|
|
416
416
|
...props
|
|
417
|
-
}: AvatarFallbackProps) =>
|
|
417
|
+
}: AvatarFallbackProps) => react_jsx_runtime29.JSX.Element;
|
|
418
418
|
Image: ({
|
|
419
419
|
className,
|
|
420
420
|
...props
|
|
421
|
-
}: AvatarImageProps) =>
|
|
421
|
+
}: AvatarImageProps) => react_jsx_runtime29.JSX.Element;
|
|
422
422
|
Root: ({
|
|
423
423
|
className,
|
|
424
424
|
size,
|
|
425
425
|
...props
|
|
426
|
-
}: AvatarProps) =>
|
|
426
|
+
}: AvatarProps) => react_jsx_runtime29.JSX.Element;
|
|
427
427
|
};
|
|
428
428
|
//#endregion
|
|
429
429
|
//#region src/components/button/button.variants.d.ts
|
|
430
|
-
declare const buttonVariants:
|
|
430
|
+
declare const buttonVariants: tailwind_variants14.TVReturnType<{
|
|
431
431
|
isIconOnly: {
|
|
432
432
|
true: string;
|
|
433
433
|
};
|
|
@@ -459,7 +459,7 @@ declare const buttonVariants: tailwind_variants0.TVReturnType<{
|
|
|
459
459
|
primary: string;
|
|
460
460
|
secondary: string;
|
|
461
461
|
};
|
|
462
|
-
}, undefined,
|
|
462
|
+
}, undefined, tailwind_variants14.TVReturnType<{
|
|
463
463
|
isIconOnly: {
|
|
464
464
|
true: string;
|
|
465
465
|
};
|
|
@@ -486,10 +486,10 @@ declare const Button: ({
|
|
|
486
486
|
size,
|
|
487
487
|
isIconOnly,
|
|
488
488
|
...props
|
|
489
|
-
}: ButtonProps) =>
|
|
489
|
+
}: ButtonProps) => react_jsx_runtime29.JSX.Element;
|
|
490
490
|
//#endregion
|
|
491
491
|
//#region src/components/button-group/button-group.variants.d.ts
|
|
492
|
-
declare const buttonGroupVariants:
|
|
492
|
+
declare const buttonGroupVariants: tailwind_variants14.TVReturnType<{} | {} | {}, undefined, "button-group", {} | {}, undefined, tailwind_variants14.TVReturnType<unknown, undefined, "button-group", unknown, unknown, undefined>>;
|
|
493
493
|
type ButtonGroupVariants = VariantProps<typeof buttonGroupVariants>;
|
|
494
494
|
//#endregion
|
|
495
495
|
//#region src/components/button-group/button-group.d.ts
|
|
@@ -497,10 +497,10 @@ interface ButtonGroupProps extends ButtonGroupVariants, React.ComponentProps<"di
|
|
|
497
497
|
declare const ButtonGroup: ({
|
|
498
498
|
className,
|
|
499
499
|
...props
|
|
500
|
-
}: ButtonGroupProps) =>
|
|
500
|
+
}: ButtonGroupProps) => react_jsx_runtime29.JSX.Element;
|
|
501
501
|
//#endregion
|
|
502
502
|
//#region src/components/card/card.variants.d.ts
|
|
503
|
-
declare const cardVariants:
|
|
503
|
+
declare const cardVariants: tailwind_variants14.TVReturnType<{
|
|
504
504
|
variant: {
|
|
505
505
|
default: {
|
|
506
506
|
root: string;
|
|
@@ -510,9 +510,8 @@ declare const cardVariants: tailwind_variants0.TVReturnType<{
|
|
|
510
510
|
};
|
|
511
511
|
};
|
|
512
512
|
}, {
|
|
513
|
-
|
|
513
|
+
content: string;
|
|
514
514
|
description: string;
|
|
515
|
-
footer: string;
|
|
516
515
|
header: string;
|
|
517
516
|
root: string;
|
|
518
517
|
title: string;
|
|
@@ -526,13 +525,12 @@ declare const cardVariants: tailwind_variants0.TVReturnType<{
|
|
|
526
525
|
};
|
|
527
526
|
};
|
|
528
527
|
}, {
|
|
529
|
-
|
|
528
|
+
content: string;
|
|
530
529
|
description: string;
|
|
531
|
-
footer: string;
|
|
532
530
|
header: string;
|
|
533
531
|
root: string;
|
|
534
532
|
title: string;
|
|
535
|
-
},
|
|
533
|
+
}, tailwind_variants14.TVReturnType<{
|
|
536
534
|
variant: {
|
|
537
535
|
default: {
|
|
538
536
|
root: string;
|
|
@@ -542,9 +540,8 @@ declare const cardVariants: tailwind_variants0.TVReturnType<{
|
|
|
542
540
|
};
|
|
543
541
|
};
|
|
544
542
|
}, {
|
|
545
|
-
|
|
543
|
+
content: string;
|
|
546
544
|
description: string;
|
|
547
|
-
footer: string;
|
|
548
545
|
header: string;
|
|
549
546
|
root: string;
|
|
550
547
|
title: string;
|
|
@@ -555,7 +552,6 @@ type CardVariants = VariantProps<typeof cardVariants>;
|
|
|
555
552
|
interface CardProps extends CardVariants, React.ComponentProps<"div"> {}
|
|
556
553
|
interface CardHeaderProps extends React.ComponentProps<"div"> {}
|
|
557
554
|
interface CardBodyProps extends React.ComponentProps<"div"> {}
|
|
558
|
-
interface CardFooterProps extends React.ComponentProps<"div"> {}
|
|
559
555
|
interface CardTitle extends React.ComponentProps<"h2"> {}
|
|
560
556
|
interface CardDescriptionProps extends React.ComponentProps<"p"> {}
|
|
561
557
|
/** Exports */
|
|
@@ -563,47 +559,43 @@ declare const _default$4: (({
|
|
|
563
559
|
className,
|
|
564
560
|
variant,
|
|
565
561
|
...props
|
|
566
|
-
}: CardProps) =>
|
|
567
|
-
|
|
562
|
+
}: CardProps) => react_jsx_runtime29.JSX.Element) & {
|
|
563
|
+
Content: ({
|
|
568
564
|
className,
|
|
569
565
|
...props
|
|
570
|
-
}: CardBodyProps) =>
|
|
566
|
+
}: CardBodyProps) => react_jsx_runtime29.JSX.Element;
|
|
571
567
|
Description: ({
|
|
572
568
|
className,
|
|
573
569
|
...props
|
|
574
|
-
}: CardDescriptionProps) =>
|
|
575
|
-
Footer: ({
|
|
576
|
-
className,
|
|
577
|
-
...props
|
|
578
|
-
}: CardFooterProps) => react_jsx_runtime0.JSX.Element;
|
|
570
|
+
}: CardDescriptionProps) => react_jsx_runtime29.JSX.Element;
|
|
579
571
|
Header: ({
|
|
580
572
|
className,
|
|
581
573
|
...props
|
|
582
|
-
}: CardHeaderProps) =>
|
|
574
|
+
}: CardHeaderProps) => react_jsx_runtime29.JSX.Element;
|
|
583
575
|
Root: ({
|
|
584
576
|
className,
|
|
585
577
|
variant,
|
|
586
578
|
...props
|
|
587
|
-
}: CardProps) =>
|
|
579
|
+
}: CardProps) => react_jsx_runtime29.JSX.Element;
|
|
588
580
|
Title: ({
|
|
589
581
|
className,
|
|
590
582
|
...props
|
|
591
|
-
}: CardTitle) =>
|
|
583
|
+
}: CardTitle) => react_jsx_runtime29.JSX.Element;
|
|
592
584
|
};
|
|
593
585
|
//#endregion
|
|
594
586
|
//#region src/components/checkbox/checkbox.variants.d.ts
|
|
595
|
-
declare const checkboxVariants:
|
|
587
|
+
declare const checkboxVariants: tailwind_variants14.TVReturnType<{
|
|
596
588
|
[key: string]: {
|
|
597
|
-
[key: string]:
|
|
598
|
-
root?:
|
|
599
|
-
indicator?:
|
|
589
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
590
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
591
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
600
592
|
};
|
|
601
593
|
};
|
|
602
594
|
} | {
|
|
603
595
|
[x: string]: {
|
|
604
|
-
[x: string]:
|
|
605
|
-
root?:
|
|
606
|
-
indicator?:
|
|
596
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
597
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
598
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
607
599
|
};
|
|
608
600
|
};
|
|
609
601
|
} | {}, {
|
|
@@ -611,15 +603,15 @@ declare const checkboxVariants: tailwind_variants0.TVReturnType<{
|
|
|
611
603
|
root: string;
|
|
612
604
|
}, undefined, {
|
|
613
605
|
[key: string]: {
|
|
614
|
-
[key: string]:
|
|
615
|
-
root?:
|
|
616
|
-
indicator?:
|
|
606
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
607
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
608
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
617
609
|
};
|
|
618
610
|
};
|
|
619
611
|
} | {}, {
|
|
620
612
|
indicator: string;
|
|
621
613
|
root: string;
|
|
622
|
-
},
|
|
614
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
623
615
|
indicator: string;
|
|
624
616
|
root: string;
|
|
625
617
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -631,20 +623,20 @@ interface CheckboxIndicatorProps extends Checkbox.Indicator.Props {}
|
|
|
631
623
|
declare const _default$5: (({
|
|
632
624
|
className,
|
|
633
625
|
...props
|
|
634
|
-
}: CheckboxProps) =>
|
|
626
|
+
}: CheckboxProps) => react_jsx_runtime29.JSX.Element) & {
|
|
635
627
|
Indicator: ({
|
|
636
628
|
className,
|
|
637
629
|
children,
|
|
638
630
|
...props
|
|
639
|
-
}: CheckboxIndicatorProps) =>
|
|
631
|
+
}: CheckboxIndicatorProps) => react_jsx_runtime29.JSX.Element;
|
|
640
632
|
Root: ({
|
|
641
633
|
className,
|
|
642
634
|
...props
|
|
643
|
-
}: CheckboxProps) =>
|
|
635
|
+
}: CheckboxProps) => react_jsx_runtime29.JSX.Element;
|
|
644
636
|
};
|
|
645
637
|
//#endregion
|
|
646
638
|
//#region src/components/checkbox-group/checkbox-group.variants.d.ts
|
|
647
|
-
declare const checkboxGroupVariants:
|
|
639
|
+
declare const checkboxGroupVariants: tailwind_variants14.TVReturnType<{} | {} | {}, undefined, "checkbox-group", {} | {}, undefined, tailwind_variants14.TVReturnType<unknown, undefined, "checkbox-group", unknown, unknown, undefined>>;
|
|
648
640
|
type CheckboxGroupVariants = VariantProps<typeof checkboxGroupVariants>;
|
|
649
641
|
//#endregion
|
|
650
642
|
//#region src/components/checkbox-group/checkbox-group.d.ts
|
|
@@ -652,10 +644,10 @@ interface CheckboxGroupProps extends CheckboxGroupVariants, CheckboxGroup$1.Prop
|
|
|
652
644
|
declare const CheckboxGroup: ({
|
|
653
645
|
className,
|
|
654
646
|
...props
|
|
655
|
-
}: CheckboxGroupProps) =>
|
|
647
|
+
}: CheckboxGroupProps) => react_jsx_runtime29.JSX.Element;
|
|
656
648
|
//#endregion
|
|
657
649
|
//#region src/components/chip/chip.variants.d.ts
|
|
658
|
-
declare const chipVariants:
|
|
650
|
+
declare const chipVariants: tailwind_variants14.TVReturnType<{
|
|
659
651
|
size: {
|
|
660
652
|
lg: string;
|
|
661
653
|
md: string;
|
|
@@ -681,7 +673,7 @@ declare const chipVariants: tailwind_variants0.TVReturnType<{
|
|
|
681
673
|
secondary: string;
|
|
682
674
|
success: string;
|
|
683
675
|
};
|
|
684
|
-
}, undefined,
|
|
676
|
+
}, undefined, tailwind_variants14.TVReturnType<{
|
|
685
677
|
size: {
|
|
686
678
|
lg: string;
|
|
687
679
|
md: string;
|
|
@@ -704,10 +696,10 @@ declare const Chip: ({
|
|
|
704
696
|
variant,
|
|
705
697
|
size,
|
|
706
698
|
...props
|
|
707
|
-
}: ChipProps) =>
|
|
699
|
+
}: ChipProps) => react_jsx_runtime29.JSX.Element;
|
|
708
700
|
//#endregion
|
|
709
701
|
//#region src/components/container/container.variants.d.ts
|
|
710
|
-
declare const containerVariants:
|
|
702
|
+
declare const containerVariants: tailwind_variants14.TVReturnType<{} | {} | {}, undefined, "container", {} | {}, undefined, tailwind_variants14.TVReturnType<unknown, undefined, "container", unknown, unknown, undefined>>;
|
|
711
703
|
type ContainerVariants = VariantProps<typeof containerVariants>;
|
|
712
704
|
//#endregion
|
|
713
705
|
//#region src/components/container/container.d.ts
|
|
@@ -715,35 +707,35 @@ interface ContainerProps extends ContainerVariants, React.ComponentProps<"div">
|
|
|
715
707
|
declare const Container: ({
|
|
716
708
|
className,
|
|
717
709
|
...props
|
|
718
|
-
}: ContainerProps) =>
|
|
710
|
+
}: ContainerProps) => react_jsx_runtime29.JSX.Element;
|
|
719
711
|
//#endregion
|
|
720
712
|
//#region src/components/dialog/dialog.variants.d.ts
|
|
721
|
-
declare const dialogVariants:
|
|
713
|
+
declare const dialogVariants: tailwind_variants14.TVReturnType<{
|
|
722
714
|
[key: string]: {
|
|
723
|
-
[key: string]:
|
|
724
|
-
root?:
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
description?:
|
|
728
|
-
backdrop?:
|
|
729
|
-
close?:
|
|
730
|
-
popup?:
|
|
731
|
-
portal?:
|
|
732
|
-
viewport?:
|
|
715
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
716
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
717
|
+
title?: tailwind_merge77.ClassNameValue;
|
|
718
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
719
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
720
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
721
|
+
close?: tailwind_merge77.ClassNameValue;
|
|
722
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
723
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
724
|
+
viewport?: tailwind_merge77.ClassNameValue;
|
|
733
725
|
};
|
|
734
726
|
};
|
|
735
727
|
} | {
|
|
736
728
|
[x: string]: {
|
|
737
|
-
[x: string]:
|
|
738
|
-
root?:
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
description?:
|
|
742
|
-
backdrop?:
|
|
743
|
-
close?:
|
|
744
|
-
popup?:
|
|
745
|
-
portal?:
|
|
746
|
-
viewport?:
|
|
729
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
730
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
731
|
+
title?: tailwind_merge77.ClassNameValue;
|
|
732
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
733
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
734
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
735
|
+
close?: tailwind_merge77.ClassNameValue;
|
|
736
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
737
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
738
|
+
viewport?: tailwind_merge77.ClassNameValue;
|
|
747
739
|
};
|
|
748
740
|
};
|
|
749
741
|
} | {}, {
|
|
@@ -758,16 +750,16 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
758
750
|
viewport: string;
|
|
759
751
|
}, undefined, {
|
|
760
752
|
[key: string]: {
|
|
761
|
-
[key: string]:
|
|
762
|
-
root?:
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
description?:
|
|
766
|
-
backdrop?:
|
|
767
|
-
close?:
|
|
768
|
-
popup?:
|
|
769
|
-
portal?:
|
|
770
|
-
viewport?:
|
|
753
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
754
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
755
|
+
title?: tailwind_merge77.ClassNameValue;
|
|
756
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
757
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
758
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
759
|
+
close?: tailwind_merge77.ClassNameValue;
|
|
760
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
761
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
762
|
+
viewport?: tailwind_merge77.ClassNameValue;
|
|
771
763
|
};
|
|
772
764
|
};
|
|
773
765
|
} | {}, {
|
|
@@ -780,7 +772,7 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
780
772
|
title: string;
|
|
781
773
|
trigger: string;
|
|
782
774
|
viewport: string;
|
|
783
|
-
},
|
|
775
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
784
776
|
backdrop: string;
|
|
785
777
|
close: string;
|
|
786
778
|
description: string;
|
|
@@ -805,46 +797,46 @@ interface DialogDescriptionProps extends Dialog.Description.Props {}
|
|
|
805
797
|
interface DialogCloseProps extends Dialog.Close.Props {}
|
|
806
798
|
declare const _default$6: (({
|
|
807
799
|
...props
|
|
808
|
-
}: DialogProps) =>
|
|
800
|
+
}: DialogProps) => react_jsx_runtime29.JSX.Element) & {
|
|
809
801
|
Backdrop: ({
|
|
810
802
|
className,
|
|
811
803
|
...props
|
|
812
|
-
}: DialogBackdropProps) =>
|
|
804
|
+
}: DialogBackdropProps) => react_jsx_runtime29.JSX.Element;
|
|
813
805
|
Close: ({
|
|
814
806
|
className,
|
|
815
807
|
...props
|
|
816
|
-
}: DialogCloseProps) =>
|
|
808
|
+
}: DialogCloseProps) => react_jsx_runtime29.JSX.Element;
|
|
817
809
|
Description: ({
|
|
818
810
|
className,
|
|
819
811
|
...props
|
|
820
|
-
}: DialogDescriptionProps) =>
|
|
812
|
+
}: DialogDescriptionProps) => react_jsx_runtime29.JSX.Element;
|
|
821
813
|
Popup: ({
|
|
822
814
|
className,
|
|
823
815
|
...props
|
|
824
|
-
}: DialogPopupProps) =>
|
|
816
|
+
}: DialogPopupProps) => react_jsx_runtime29.JSX.Element;
|
|
825
817
|
Portal: ({
|
|
826
818
|
className,
|
|
827
819
|
...props
|
|
828
|
-
}: DialogPortalProps) =>
|
|
820
|
+
}: DialogPortalProps) => react_jsx_runtime29.JSX.Element;
|
|
829
821
|
Root: ({
|
|
830
822
|
...props
|
|
831
|
-
}: DialogProps) =>
|
|
823
|
+
}: DialogProps) => react_jsx_runtime29.JSX.Element;
|
|
832
824
|
Title: ({
|
|
833
825
|
className,
|
|
834
826
|
...props
|
|
835
|
-
}: DialogTitleProps) =>
|
|
827
|
+
}: DialogTitleProps) => react_jsx_runtime29.JSX.Element;
|
|
836
828
|
Trigger: ({
|
|
837
829
|
className,
|
|
838
830
|
...props
|
|
839
|
-
}: DialogTriggerProps) =>
|
|
831
|
+
}: DialogTriggerProps) => react_jsx_runtime29.JSX.Element;
|
|
840
832
|
Viewport: ({
|
|
841
833
|
className,
|
|
842
834
|
...props
|
|
843
|
-
}: DialogViewportProps) =>
|
|
835
|
+
}: DialogViewportProps) => react_jsx_runtime29.JSX.Element;
|
|
844
836
|
};
|
|
845
837
|
//#endregion
|
|
846
838
|
//#region src/components/drawer/drawer.variants.d.ts
|
|
847
|
-
declare const drawerVariants:
|
|
839
|
+
declare const drawerVariants: tailwind_variants14.TVReturnType<{
|
|
848
840
|
position: {
|
|
849
841
|
bottom: {
|
|
850
842
|
popup: string;
|
|
@@ -894,7 +886,7 @@ declare const drawerVariants: tailwind_variants0.TVReturnType<{
|
|
|
894
886
|
title: string;
|
|
895
887
|
trigger: string;
|
|
896
888
|
viewport: string;
|
|
897
|
-
},
|
|
889
|
+
}, tailwind_variants14.TVReturnType<{
|
|
898
890
|
position: {
|
|
899
891
|
bottom: {
|
|
900
892
|
popup: string;
|
|
@@ -935,65 +927,65 @@ interface DrawerCloseProps extends Dialog.Close.Props {}
|
|
|
935
927
|
declare const _default$7: (({
|
|
936
928
|
position,
|
|
937
929
|
...props
|
|
938
|
-
}: DrawerProps) =>
|
|
930
|
+
}: DrawerProps) => react_jsx_runtime29.JSX.Element) & {
|
|
939
931
|
Backdrop: ({
|
|
940
932
|
className,
|
|
941
933
|
...props
|
|
942
|
-
}: DrawerBackdropProps) =>
|
|
934
|
+
}: DrawerBackdropProps) => react_jsx_runtime29.JSX.Element;
|
|
943
935
|
Close: ({
|
|
944
936
|
className,
|
|
945
937
|
children,
|
|
946
938
|
...props
|
|
947
|
-
}: DrawerCloseProps) =>
|
|
939
|
+
}: DrawerCloseProps) => react_jsx_runtime29.JSX.Element;
|
|
948
940
|
Description: ({
|
|
949
941
|
className,
|
|
950
942
|
...props
|
|
951
|
-
}: DrawerDescriptionProps) =>
|
|
943
|
+
}: DrawerDescriptionProps) => react_jsx_runtime29.JSX.Element;
|
|
952
944
|
Popup: ({
|
|
953
945
|
className,
|
|
954
946
|
...props
|
|
955
|
-
}: DrawerPopupProps) =>
|
|
947
|
+
}: DrawerPopupProps) => react_jsx_runtime29.JSX.Element;
|
|
956
948
|
Portal: ({
|
|
957
949
|
className,
|
|
958
950
|
...props
|
|
959
|
-
}: DrawerPortalProps) =>
|
|
951
|
+
}: DrawerPortalProps) => react_jsx_runtime29.JSX.Element;
|
|
960
952
|
Root: ({
|
|
961
953
|
position,
|
|
962
954
|
...props
|
|
963
|
-
}: DrawerProps) =>
|
|
955
|
+
}: DrawerProps) => react_jsx_runtime29.JSX.Element;
|
|
964
956
|
Title: ({
|
|
965
957
|
className,
|
|
966
958
|
...props
|
|
967
|
-
}: DrawerTitleProps) =>
|
|
959
|
+
}: DrawerTitleProps) => react_jsx_runtime29.JSX.Element;
|
|
968
960
|
Trigger: ({
|
|
969
961
|
className,
|
|
970
962
|
...props
|
|
971
|
-
}: DrawerTriggerProps) =>
|
|
963
|
+
}: DrawerTriggerProps) => react_jsx_runtime29.JSX.Element;
|
|
972
964
|
Viewport: ({
|
|
973
965
|
className,
|
|
974
966
|
...props
|
|
975
|
-
}: DrawerViewportProps) =>
|
|
967
|
+
}: DrawerViewportProps) => react_jsx_runtime29.JSX.Element;
|
|
976
968
|
};
|
|
977
969
|
//#endregion
|
|
978
970
|
//#region src/components/field/field.variants.d.ts
|
|
979
|
-
declare const fieldVariants:
|
|
971
|
+
declare const fieldVariants: tailwind_variants14.TVReturnType<{
|
|
980
972
|
[key: string]: {
|
|
981
|
-
[key: string]:
|
|
982
|
-
root?:
|
|
983
|
-
label?:
|
|
984
|
-
description?:
|
|
985
|
-
control?:
|
|
986
|
-
error?:
|
|
973
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
974
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
975
|
+
label?: tailwind_merge77.ClassNameValue;
|
|
976
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
977
|
+
control?: tailwind_merge77.ClassNameValue;
|
|
978
|
+
error?: tailwind_merge77.ClassNameValue;
|
|
987
979
|
};
|
|
988
980
|
};
|
|
989
981
|
} | {
|
|
990
982
|
[x: string]: {
|
|
991
|
-
[x: string]:
|
|
992
|
-
root?:
|
|
993
|
-
label?:
|
|
994
|
-
description?:
|
|
995
|
-
control?:
|
|
996
|
-
error?:
|
|
983
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
984
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
985
|
+
label?: tailwind_merge77.ClassNameValue;
|
|
986
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
987
|
+
control?: tailwind_merge77.ClassNameValue;
|
|
988
|
+
error?: tailwind_merge77.ClassNameValue;
|
|
997
989
|
};
|
|
998
990
|
};
|
|
999
991
|
} | {}, {
|
|
@@ -1004,12 +996,12 @@ declare const fieldVariants: tailwind_variants0.TVReturnType<{
|
|
|
1004
996
|
root: string;
|
|
1005
997
|
}, undefined, {
|
|
1006
998
|
[key: string]: {
|
|
1007
|
-
[key: string]:
|
|
1008
|
-
root?:
|
|
1009
|
-
label?:
|
|
1010
|
-
description?:
|
|
1011
|
-
control?:
|
|
1012
|
-
error?:
|
|
999
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1000
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1001
|
+
label?: tailwind_merge77.ClassNameValue;
|
|
1002
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
1003
|
+
control?: tailwind_merge77.ClassNameValue;
|
|
1004
|
+
error?: tailwind_merge77.ClassNameValue;
|
|
1013
1005
|
};
|
|
1014
1006
|
};
|
|
1015
1007
|
} | {}, {
|
|
@@ -1018,7 +1010,7 @@ declare const fieldVariants: tailwind_variants0.TVReturnType<{
|
|
|
1018
1010
|
error: string;
|
|
1019
1011
|
label: string;
|
|
1020
1012
|
root: string;
|
|
1021
|
-
},
|
|
1013
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
1022
1014
|
control: string;
|
|
1023
1015
|
description: string;
|
|
1024
1016
|
error: string;
|
|
@@ -1039,43 +1031,43 @@ declare const _default$8: (({
|
|
|
1039
1031
|
className,
|
|
1040
1032
|
required,
|
|
1041
1033
|
...props
|
|
1042
|
-
}: FieldRootProps) =>
|
|
1034
|
+
}: FieldRootProps) => react_jsx_runtime29.JSX.Element) & {
|
|
1043
1035
|
Control: ({
|
|
1044
1036
|
className,
|
|
1045
1037
|
...props
|
|
1046
|
-
}: FieldControlProps) =>
|
|
1038
|
+
}: FieldControlProps) => react_jsx_runtime29.JSX.Element;
|
|
1047
1039
|
Description: ({
|
|
1048
1040
|
className,
|
|
1049
1041
|
...props
|
|
1050
|
-
}: FieldDescriptionProps) =>
|
|
1042
|
+
}: FieldDescriptionProps) => react_jsx_runtime29.JSX.Element;
|
|
1051
1043
|
Error: ({
|
|
1052
1044
|
className,
|
|
1053
1045
|
...props
|
|
1054
|
-
}: FieldErrorProps) =>
|
|
1046
|
+
}: FieldErrorProps) => react_jsx_runtime29.JSX.Element;
|
|
1055
1047
|
Label: ({
|
|
1056
1048
|
className,
|
|
1057
1049
|
...props
|
|
1058
|
-
}: FieldLabelProps) =>
|
|
1050
|
+
}: FieldLabelProps) => react_jsx_runtime29.JSX.Element;
|
|
1059
1051
|
Root: ({
|
|
1060
1052
|
className,
|
|
1061
1053
|
required,
|
|
1062
1054
|
...props
|
|
1063
|
-
}: FieldRootProps) =>
|
|
1055
|
+
}: FieldRootProps) => react_jsx_runtime29.JSX.Element;
|
|
1064
1056
|
};
|
|
1065
1057
|
//#endregion
|
|
1066
1058
|
//#region src/components/fieldset/fieldset.variants.d.ts
|
|
1067
|
-
declare const fieldsetVariants:
|
|
1059
|
+
declare const fieldsetVariants: tailwind_variants14.TVReturnType<{
|
|
1068
1060
|
[key: string]: {
|
|
1069
|
-
[key: string]:
|
|
1070
|
-
root?:
|
|
1071
|
-
legend?:
|
|
1061
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1062
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1063
|
+
legend?: tailwind_merge77.ClassNameValue;
|
|
1072
1064
|
};
|
|
1073
1065
|
};
|
|
1074
1066
|
} | {
|
|
1075
1067
|
[x: string]: {
|
|
1076
|
-
[x: string]:
|
|
1077
|
-
root?:
|
|
1078
|
-
legend?:
|
|
1068
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
1069
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1070
|
+
legend?: tailwind_merge77.ClassNameValue;
|
|
1079
1071
|
};
|
|
1080
1072
|
};
|
|
1081
1073
|
} | {}, {
|
|
@@ -1083,15 +1075,15 @@ declare const fieldsetVariants: tailwind_variants0.TVReturnType<{
|
|
|
1083
1075
|
root: string;
|
|
1084
1076
|
}, undefined, {
|
|
1085
1077
|
[key: string]: {
|
|
1086
|
-
[key: string]:
|
|
1087
|
-
root?:
|
|
1088
|
-
legend?:
|
|
1078
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1079
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1080
|
+
legend?: tailwind_merge77.ClassNameValue;
|
|
1089
1081
|
};
|
|
1090
1082
|
};
|
|
1091
1083
|
} | {}, {
|
|
1092
1084
|
legend: string;
|
|
1093
1085
|
root: string;
|
|
1094
|
-
},
|
|
1086
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
1095
1087
|
legend: string;
|
|
1096
1088
|
root: string;
|
|
1097
1089
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -1103,19 +1095,19 @@ interface FieldsetLegendProps extends Fieldset.Legend.Props {}
|
|
|
1103
1095
|
declare const _default$9: (({
|
|
1104
1096
|
className,
|
|
1105
1097
|
...props
|
|
1106
|
-
}: FieldsetProps) =>
|
|
1098
|
+
}: FieldsetProps) => react_jsx_runtime29.JSX.Element) & {
|
|
1107
1099
|
Legend: ({
|
|
1108
1100
|
className,
|
|
1109
1101
|
...props
|
|
1110
|
-
}: FieldsetLegendProps) =>
|
|
1102
|
+
}: FieldsetLegendProps) => react_jsx_runtime29.JSX.Element;
|
|
1111
1103
|
Root: ({
|
|
1112
1104
|
className,
|
|
1113
1105
|
...props
|
|
1114
|
-
}: FieldsetProps) =>
|
|
1106
|
+
}: FieldsetProps) => react_jsx_runtime29.JSX.Element;
|
|
1115
1107
|
};
|
|
1116
1108
|
//#endregion
|
|
1117
1109
|
//#region src/components/form/form.variants.d.ts
|
|
1118
|
-
declare const formVariants:
|
|
1110
|
+
declare const formVariants: tailwind_variants14.TVReturnType<{} | {} | {}, undefined, "form", {} | {}, undefined, tailwind_variants14.TVReturnType<unknown, undefined, "form", unknown, unknown, undefined>>;
|
|
1119
1111
|
type FormVariants = VariantProps<typeof formVariants>;
|
|
1120
1112
|
//#endregion
|
|
1121
1113
|
//#region src/components/form/form.d.ts
|
|
@@ -1123,41 +1115,41 @@ interface FormProps extends FormVariants, Form$1.Props {}
|
|
|
1123
1115
|
declare const Form: ({
|
|
1124
1116
|
className,
|
|
1125
1117
|
...props
|
|
1126
|
-
}: FormProps) =>
|
|
1118
|
+
}: FormProps) => react_jsx_runtime29.JSX.Element;
|
|
1127
1119
|
//#endregion
|
|
1128
1120
|
//#region src/components/icon-button/icon-button.variants.d.ts
|
|
1129
|
-
declare const iconButtonVariants:
|
|
1121
|
+
declare const iconButtonVariants: tailwind_variants14.TVReturnType<{} | {
|
|
1130
1122
|
isIconOnly: {
|
|
1131
|
-
true:
|
|
1132
|
-
base?:
|
|
1123
|
+
true: tailwind_merge77.ClassNameValue | {
|
|
1124
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
1133
1125
|
};
|
|
1134
1126
|
};
|
|
1135
1127
|
size: {
|
|
1136
|
-
lg:
|
|
1137
|
-
base?:
|
|
1128
|
+
lg: tailwind_merge77.ClassNameValue | {
|
|
1129
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
1138
1130
|
};
|
|
1139
|
-
md:
|
|
1140
|
-
base?:
|
|
1131
|
+
md: tailwind_merge77.ClassNameValue | {
|
|
1132
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
1141
1133
|
};
|
|
1142
|
-
sm:
|
|
1143
|
-
base?:
|
|
1134
|
+
sm: tailwind_merge77.ClassNameValue | {
|
|
1135
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
1144
1136
|
};
|
|
1145
1137
|
};
|
|
1146
1138
|
variant: {
|
|
1147
|
-
danger:
|
|
1148
|
-
base?:
|
|
1139
|
+
danger: tailwind_merge77.ClassNameValue | {
|
|
1140
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
1149
1141
|
};
|
|
1150
|
-
ghost:
|
|
1151
|
-
base?:
|
|
1142
|
+
ghost: tailwind_merge77.ClassNameValue | {
|
|
1143
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
1152
1144
|
};
|
|
1153
|
-
outline:
|
|
1154
|
-
base?:
|
|
1145
|
+
outline: tailwind_merge77.ClassNameValue | {
|
|
1146
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
1155
1147
|
};
|
|
1156
|
-
primary:
|
|
1157
|
-
base?:
|
|
1148
|
+
primary: tailwind_merge77.ClassNameValue | {
|
|
1149
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
1158
1150
|
};
|
|
1159
|
-
secondary:
|
|
1160
|
-
base?:
|
|
1151
|
+
secondary: tailwind_merge77.ClassNameValue | {
|
|
1152
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
1161
1153
|
};
|
|
1162
1154
|
};
|
|
1163
1155
|
}, undefined, "icon-button", {
|
|
@@ -1176,7 +1168,7 @@ declare const iconButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1176
1168
|
primary: string;
|
|
1177
1169
|
secondary: string;
|
|
1178
1170
|
};
|
|
1179
|
-
}, undefined,
|
|
1171
|
+
}, undefined, tailwind_variants14.TVReturnType<{
|
|
1180
1172
|
isIconOnly: {
|
|
1181
1173
|
true: string;
|
|
1182
1174
|
};
|
|
@@ -1208,7 +1200,7 @@ declare const iconButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1208
1200
|
primary: string;
|
|
1209
1201
|
secondary: string;
|
|
1210
1202
|
};
|
|
1211
|
-
}, undefined,
|
|
1203
|
+
}, undefined, tailwind_variants14.TVReturnType<{
|
|
1212
1204
|
isIconOnly: {
|
|
1213
1205
|
true: string;
|
|
1214
1206
|
};
|
|
@@ -1235,10 +1227,10 @@ declare const IconButton: ({
|
|
|
1235
1227
|
size,
|
|
1236
1228
|
isIconOnly,
|
|
1237
1229
|
...props
|
|
1238
|
-
}: IconButtonProps) =>
|
|
1230
|
+
}: IconButtonProps) => react_jsx_runtime29.JSX.Element;
|
|
1239
1231
|
//#endregion
|
|
1240
1232
|
//#region src/components/input/input.variants.d.ts
|
|
1241
|
-
declare const inputVariants:
|
|
1233
|
+
declare const inputVariants: tailwind_variants14.TVReturnType<{} | {} | {}, undefined, "input", {} | {}, undefined, tailwind_variants14.TVReturnType<unknown, undefined, "input", unknown, unknown, undefined>>;
|
|
1242
1234
|
type InputVariants = VariantProps<typeof inputVariants>;
|
|
1243
1235
|
//#endregion
|
|
1244
1236
|
//#region src/components/input/input.d.ts
|
|
@@ -1246,10 +1238,10 @@ interface InputProps extends InputVariants, Input$1.Props {}
|
|
|
1246
1238
|
declare const Input: ({
|
|
1247
1239
|
className,
|
|
1248
1240
|
...props
|
|
1249
|
-
}: InputProps) =>
|
|
1241
|
+
}: InputProps) => react_jsx_runtime29.JSX.Element;
|
|
1250
1242
|
//#endregion
|
|
1251
1243
|
//#region src/components/label/label.variants.d.ts
|
|
1252
|
-
declare const labelVariants:
|
|
1244
|
+
declare const labelVariants: tailwind_variants14.TVReturnType<{} | {} | {}, undefined, "label", {} | {}, undefined, tailwind_variants14.TVReturnType<unknown, undefined, "label", unknown, unknown, undefined>>;
|
|
1253
1245
|
type LabelVariants = VariantProps<typeof labelVariants>;
|
|
1254
1246
|
//#endregion
|
|
1255
1247
|
//#region src/components/label/label.d.ts
|
|
@@ -1257,10 +1249,10 @@ interface LabelProps extends LabelVariants, React.ComponentProps<"label"> {}
|
|
|
1257
1249
|
declare const Label: ({
|
|
1258
1250
|
className,
|
|
1259
1251
|
...props
|
|
1260
|
-
}: LabelProps) =>
|
|
1252
|
+
}: LabelProps) => react_jsx_runtime29.JSX.Element;
|
|
1261
1253
|
//#endregion
|
|
1262
1254
|
//#region src/components/link/link.variants.d.ts
|
|
1263
|
-
declare const linkVariants:
|
|
1255
|
+
declare const linkVariants: tailwind_variants14.TVReturnType<{
|
|
1264
1256
|
variant: {
|
|
1265
1257
|
"no-underline": string;
|
|
1266
1258
|
underline: string;
|
|
@@ -1270,7 +1262,7 @@ declare const linkVariants: tailwind_variants0.TVReturnType<{
|
|
|
1270
1262
|
"no-underline": string;
|
|
1271
1263
|
underline: string;
|
|
1272
1264
|
};
|
|
1273
|
-
}, undefined,
|
|
1265
|
+
}, undefined, tailwind_variants14.TVReturnType<{
|
|
1274
1266
|
variant: {
|
|
1275
1267
|
"no-underline": string;
|
|
1276
1268
|
underline: string;
|
|
@@ -1284,21 +1276,21 @@ declare const Link: ({
|
|
|
1284
1276
|
className,
|
|
1285
1277
|
variant,
|
|
1286
1278
|
...props
|
|
1287
|
-
}: LinkProps) =>
|
|
1279
|
+
}: LinkProps) => react_jsx_runtime29.JSX.Element;
|
|
1288
1280
|
//#endregion
|
|
1289
1281
|
//#region src/components/list/list.variants.d.ts
|
|
1290
|
-
declare const listVariants:
|
|
1282
|
+
declare const listVariants: tailwind_variants14.TVReturnType<{
|
|
1291
1283
|
[key: string]: {
|
|
1292
|
-
[key: string]:
|
|
1293
|
-
|
|
1294
|
-
|
|
1284
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1285
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1286
|
+
item?: tailwind_merge77.ClassNameValue;
|
|
1295
1287
|
};
|
|
1296
1288
|
};
|
|
1297
1289
|
} | {
|
|
1298
1290
|
[x: string]: {
|
|
1299
|
-
[x: string]:
|
|
1300
|
-
|
|
1301
|
-
|
|
1291
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
1292
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1293
|
+
item?: tailwind_merge77.ClassNameValue;
|
|
1302
1294
|
};
|
|
1303
1295
|
};
|
|
1304
1296
|
} | {}, {
|
|
@@ -1306,15 +1298,15 @@ declare const listVariants: tailwind_variants0.TVReturnType<{
|
|
|
1306
1298
|
root: string;
|
|
1307
1299
|
}, undefined, {
|
|
1308
1300
|
[key: string]: {
|
|
1309
|
-
[key: string]:
|
|
1310
|
-
|
|
1311
|
-
|
|
1301
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1302
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1303
|
+
item?: tailwind_merge77.ClassNameValue;
|
|
1312
1304
|
};
|
|
1313
1305
|
};
|
|
1314
1306
|
} | {}, {
|
|
1315
1307
|
item: string;
|
|
1316
1308
|
root: string;
|
|
1317
|
-
},
|
|
1309
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
1318
1310
|
item: string;
|
|
1319
1311
|
root: string;
|
|
1320
1312
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -1326,58 +1318,58 @@ interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
|
1326
1318
|
declare const _default$10: (({
|
|
1327
1319
|
className,
|
|
1328
1320
|
...props
|
|
1329
|
-
}: ListProps) =>
|
|
1321
|
+
}: ListProps) => react_jsx_runtime29.JSX.Element) & {
|
|
1330
1322
|
Item: ({
|
|
1331
1323
|
className,
|
|
1332
1324
|
...props
|
|
1333
|
-
}: ListItemProps) =>
|
|
1325
|
+
}: ListItemProps) => react_jsx_runtime29.JSX.Element;
|
|
1334
1326
|
Root: ({
|
|
1335
1327
|
className,
|
|
1336
1328
|
...props
|
|
1337
|
-
}: ListProps) =>
|
|
1329
|
+
}: ListProps) => react_jsx_runtime29.JSX.Element;
|
|
1338
1330
|
};
|
|
1339
1331
|
//#endregion
|
|
1340
1332
|
//#region src/components/menu/menu.variants.d.ts
|
|
1341
|
-
declare const menuVariants:
|
|
1333
|
+
declare const menuVariants: tailwind_variants14.TVReturnType<{
|
|
1342
1334
|
[key: string]: {
|
|
1343
|
-
[key: string]:
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
backdrop?:
|
|
1349
|
-
popup?:
|
|
1350
|
-
portal?:
|
|
1351
|
-
arrow?:
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
radioItem?:
|
|
1357
|
-
separator?:
|
|
1358
|
-
submenu?:
|
|
1359
|
-
submenuTrigger?:
|
|
1335
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1336
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1337
|
+
radioGroup?: tailwind_merge77.ClassNameValue;
|
|
1338
|
+
item?: tailwind_merge77.ClassNameValue;
|
|
1339
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
1340
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
1341
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
1342
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
1343
|
+
arrow?: tailwind_merge77.ClassNameValue;
|
|
1344
|
+
positioner?: tailwind_merge77.ClassNameValue;
|
|
1345
|
+
checkboxItem?: tailwind_merge77.ClassNameValue;
|
|
1346
|
+
group?: tailwind_merge77.ClassNameValue;
|
|
1347
|
+
groupLabel?: tailwind_merge77.ClassNameValue;
|
|
1348
|
+
radioItem?: tailwind_merge77.ClassNameValue;
|
|
1349
|
+
separator?: tailwind_merge77.ClassNameValue;
|
|
1350
|
+
submenu?: tailwind_merge77.ClassNameValue;
|
|
1351
|
+
submenuTrigger?: tailwind_merge77.ClassNameValue;
|
|
1360
1352
|
};
|
|
1361
1353
|
};
|
|
1362
1354
|
} | {
|
|
1363
1355
|
[x: string]: {
|
|
1364
|
-
[x: string]:
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
backdrop?:
|
|
1370
|
-
popup?:
|
|
1371
|
-
portal?:
|
|
1372
|
-
arrow?:
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
radioItem?:
|
|
1378
|
-
separator?:
|
|
1379
|
-
submenu?:
|
|
1380
|
-
submenuTrigger?:
|
|
1356
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
1357
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1358
|
+
radioGroup?: tailwind_merge77.ClassNameValue;
|
|
1359
|
+
item?: tailwind_merge77.ClassNameValue;
|
|
1360
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
1361
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
1362
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
1363
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
1364
|
+
arrow?: tailwind_merge77.ClassNameValue;
|
|
1365
|
+
positioner?: tailwind_merge77.ClassNameValue;
|
|
1366
|
+
checkboxItem?: tailwind_merge77.ClassNameValue;
|
|
1367
|
+
group?: tailwind_merge77.ClassNameValue;
|
|
1368
|
+
groupLabel?: tailwind_merge77.ClassNameValue;
|
|
1369
|
+
radioItem?: tailwind_merge77.ClassNameValue;
|
|
1370
|
+
separator?: tailwind_merge77.ClassNameValue;
|
|
1371
|
+
submenu?: tailwind_merge77.ClassNameValue;
|
|
1372
|
+
submenuTrigger?: tailwind_merge77.ClassNameValue;
|
|
1381
1373
|
};
|
|
1382
1374
|
};
|
|
1383
1375
|
} | {}, {
|
|
@@ -1399,23 +1391,23 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
1399
1391
|
trigger: string;
|
|
1400
1392
|
}, undefined, {
|
|
1401
1393
|
[key: string]: {
|
|
1402
|
-
[key: string]:
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
backdrop?:
|
|
1408
|
-
popup?:
|
|
1409
|
-
portal?:
|
|
1410
|
-
arrow?:
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
radioItem?:
|
|
1416
|
-
separator?:
|
|
1417
|
-
submenu?:
|
|
1418
|
-
submenuTrigger?:
|
|
1394
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1395
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1396
|
+
radioGroup?: tailwind_merge77.ClassNameValue;
|
|
1397
|
+
item?: tailwind_merge77.ClassNameValue;
|
|
1398
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
1399
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
1400
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
1401
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
1402
|
+
arrow?: tailwind_merge77.ClassNameValue;
|
|
1403
|
+
positioner?: tailwind_merge77.ClassNameValue;
|
|
1404
|
+
checkboxItem?: tailwind_merge77.ClassNameValue;
|
|
1405
|
+
group?: tailwind_merge77.ClassNameValue;
|
|
1406
|
+
groupLabel?: tailwind_merge77.ClassNameValue;
|
|
1407
|
+
radioItem?: tailwind_merge77.ClassNameValue;
|
|
1408
|
+
separator?: tailwind_merge77.ClassNameValue;
|
|
1409
|
+
submenu?: tailwind_merge77.ClassNameValue;
|
|
1410
|
+
submenuTrigger?: tailwind_merge77.ClassNameValue;
|
|
1419
1411
|
};
|
|
1420
1412
|
};
|
|
1421
1413
|
} | {}, {
|
|
@@ -1435,7 +1427,7 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
1435
1427
|
submenu: string;
|
|
1436
1428
|
submenuTrigger: string;
|
|
1437
1429
|
trigger: string;
|
|
1438
|
-
},
|
|
1430
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
1439
1431
|
arrow: string;
|
|
1440
1432
|
backdrop: string;
|
|
1441
1433
|
checkboxItem: string;
|
|
@@ -1474,74 +1466,74 @@ interface MenuSubmenuProps extends MenuVariants, Menu.SubmenuRoot.Props {}
|
|
|
1474
1466
|
interface MenuSubmenuTriggerProps extends MenuVariants, Menu.SubmenuTrigger.Props {}
|
|
1475
1467
|
declare const _default$11: (({
|
|
1476
1468
|
...props
|
|
1477
|
-
}: MenuProps) =>
|
|
1469
|
+
}: MenuProps) => react_jsx_runtime29.JSX.Element) & {
|
|
1478
1470
|
Arrow: ({
|
|
1479
1471
|
className,
|
|
1480
1472
|
children,
|
|
1481
1473
|
...props
|
|
1482
|
-
}: MenuArrowProps) =>
|
|
1474
|
+
}: MenuArrowProps) => react_jsx_runtime29.JSX.Element;
|
|
1483
1475
|
Backdrop: ({
|
|
1484
1476
|
className,
|
|
1485
1477
|
...props
|
|
1486
|
-
}: MenuBackdropProps) =>
|
|
1478
|
+
}: MenuBackdropProps) => react_jsx_runtime29.JSX.Element;
|
|
1487
1479
|
CheckboxItem: ({
|
|
1488
1480
|
className,
|
|
1489
1481
|
...props
|
|
1490
|
-
}: MenuCheckboxItemProps) =>
|
|
1482
|
+
}: MenuCheckboxItemProps) => react_jsx_runtime29.JSX.Element;
|
|
1491
1483
|
Group: ({
|
|
1492
1484
|
className,
|
|
1493
1485
|
...props
|
|
1494
|
-
}: MenuGroupProps) =>
|
|
1486
|
+
}: MenuGroupProps) => react_jsx_runtime29.JSX.Element;
|
|
1495
1487
|
GroupLabel: ({
|
|
1496
1488
|
className,
|
|
1497
1489
|
...props
|
|
1498
|
-
}: MenuGroupLabelProps) =>
|
|
1490
|
+
}: MenuGroupLabelProps) => react_jsx_runtime29.JSX.Element;
|
|
1499
1491
|
Item: ({
|
|
1500
1492
|
className,
|
|
1501
1493
|
...props
|
|
1502
|
-
}: MenuItemProps) =>
|
|
1494
|
+
}: MenuItemProps) => react_jsx_runtime29.JSX.Element;
|
|
1503
1495
|
Popup: ({
|
|
1504
1496
|
className,
|
|
1505
1497
|
...props
|
|
1506
|
-
}: MenuPopupProps) =>
|
|
1498
|
+
}: MenuPopupProps) => react_jsx_runtime29.JSX.Element;
|
|
1507
1499
|
Portal: ({
|
|
1508
1500
|
className,
|
|
1509
1501
|
...props
|
|
1510
|
-
}: MenuPortalProps) =>
|
|
1502
|
+
}: MenuPortalProps) => react_jsx_runtime29.JSX.Element;
|
|
1511
1503
|
Positioner: ({
|
|
1512
1504
|
className,
|
|
1513
1505
|
...props
|
|
1514
|
-
}: MenuPositionerProps) =>
|
|
1506
|
+
}: MenuPositionerProps) => react_jsx_runtime29.JSX.Element;
|
|
1515
1507
|
RadioGroup: ({
|
|
1516
1508
|
className,
|
|
1517
1509
|
...props
|
|
1518
|
-
}: MenuRadioGroupProps) =>
|
|
1510
|
+
}: MenuRadioGroupProps) => react_jsx_runtime29.JSX.Element;
|
|
1519
1511
|
RadioItem: ({
|
|
1520
1512
|
className,
|
|
1521
1513
|
...props
|
|
1522
|
-
}: MenuRadioItemProps) =>
|
|
1514
|
+
}: MenuRadioItemProps) => react_jsx_runtime29.JSX.Element;
|
|
1523
1515
|
Root: ({
|
|
1524
1516
|
...props
|
|
1525
|
-
}: MenuProps) =>
|
|
1517
|
+
}: MenuProps) => react_jsx_runtime29.JSX.Element;
|
|
1526
1518
|
Separator: ({
|
|
1527
1519
|
className,
|
|
1528
1520
|
...props
|
|
1529
|
-
}: MenuSeparatorProps) =>
|
|
1521
|
+
}: MenuSeparatorProps) => react_jsx_runtime29.JSX.Element;
|
|
1530
1522
|
Submenu: ({
|
|
1531
1523
|
...props
|
|
1532
|
-
}: MenuSubmenuProps) =>
|
|
1524
|
+
}: MenuSubmenuProps) => react_jsx_runtime29.JSX.Element;
|
|
1533
1525
|
SubmenuTrigger: ({
|
|
1534
1526
|
className,
|
|
1535
1527
|
...props
|
|
1536
|
-
}: MenuSubmenuTriggerProps) =>
|
|
1528
|
+
}: MenuSubmenuTriggerProps) => react_jsx_runtime29.JSX.Element;
|
|
1537
1529
|
Trigger: ({
|
|
1538
1530
|
className,
|
|
1539
1531
|
...props
|
|
1540
|
-
}: MenuTriggerProps) =>
|
|
1532
|
+
}: MenuTriggerProps) => react_jsx_runtime29.JSX.Element;
|
|
1541
1533
|
};
|
|
1542
1534
|
//#endregion
|
|
1543
1535
|
//#region src/components/meter/meter.variants.d.ts
|
|
1544
|
-
declare const meterVariants:
|
|
1536
|
+
declare const meterVariants: tailwind_variants14.TVReturnType<{
|
|
1545
1537
|
size: {
|
|
1546
1538
|
lg: {
|
|
1547
1539
|
root: string;
|
|
@@ -1605,7 +1597,7 @@ declare const meterVariants: tailwind_variants0.TVReturnType<{
|
|
|
1605
1597
|
root: string;
|
|
1606
1598
|
track: string;
|
|
1607
1599
|
value: string;
|
|
1608
|
-
},
|
|
1600
|
+
}, tailwind_variants14.TVReturnType<{
|
|
1609
1601
|
size: {
|
|
1610
1602
|
lg: {
|
|
1611
1603
|
root: string;
|
|
@@ -1651,56 +1643,56 @@ declare const _default$12: (({
|
|
|
1651
1643
|
size,
|
|
1652
1644
|
variant,
|
|
1653
1645
|
...props
|
|
1654
|
-
}: MeterProps) =>
|
|
1646
|
+
}: MeterProps) => react_jsx_runtime29.JSX.Element) & {
|
|
1655
1647
|
Indicator: ({
|
|
1656
1648
|
className,
|
|
1657
1649
|
...props
|
|
1658
|
-
}: MeterIndicatorProps) =>
|
|
1650
|
+
}: MeterIndicatorProps) => react_jsx_runtime29.JSX.Element;
|
|
1659
1651
|
Label: ({
|
|
1660
1652
|
className,
|
|
1661
1653
|
...props
|
|
1662
|
-
}: MeterLabelProps) =>
|
|
1654
|
+
}: MeterLabelProps) => react_jsx_runtime29.JSX.Element;
|
|
1663
1655
|
Root: ({
|
|
1664
1656
|
className,
|
|
1665
1657
|
size,
|
|
1666
1658
|
variant,
|
|
1667
1659
|
...props
|
|
1668
|
-
}: MeterProps) =>
|
|
1660
|
+
}: MeterProps) => react_jsx_runtime29.JSX.Element;
|
|
1669
1661
|
Track: ({
|
|
1670
1662
|
className,
|
|
1671
1663
|
...props
|
|
1672
|
-
}: MeterTrackProps) =>
|
|
1664
|
+
}: MeterTrackProps) => react_jsx_runtime29.JSX.Element;
|
|
1673
1665
|
Value: ({
|
|
1674
1666
|
className,
|
|
1675
1667
|
...props
|
|
1676
|
-
}: MeterValueProps) =>
|
|
1668
|
+
}: MeterValueProps) => react_jsx_runtime29.JSX.Element;
|
|
1677
1669
|
};
|
|
1678
1670
|
//#endregion
|
|
1679
1671
|
//#region src/components/navbar/navbar.variants.d.ts
|
|
1680
|
-
declare const navbarVariants:
|
|
1672
|
+
declare const navbarVariants: tailwind_variants14.TVReturnType<{
|
|
1681
1673
|
[key: string]: {
|
|
1682
|
-
[key: string]:
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
container?:
|
|
1687
|
-
list?:
|
|
1688
|
-
listItem?:
|
|
1689
|
-
menuItem?:
|
|
1690
|
-
toggle?:
|
|
1674
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1675
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1676
|
+
menu?: tailwind_merge77.ClassNameValue;
|
|
1677
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
1678
|
+
container?: tailwind_merge77.ClassNameValue;
|
|
1679
|
+
list?: tailwind_merge77.ClassNameValue;
|
|
1680
|
+
listItem?: tailwind_merge77.ClassNameValue;
|
|
1681
|
+
menuItem?: tailwind_merge77.ClassNameValue;
|
|
1682
|
+
toggle?: tailwind_merge77.ClassNameValue;
|
|
1691
1683
|
};
|
|
1692
1684
|
};
|
|
1693
1685
|
} | {
|
|
1694
1686
|
[x: string]: {
|
|
1695
|
-
[x: string]:
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
container?:
|
|
1700
|
-
list?:
|
|
1701
|
-
listItem?:
|
|
1702
|
-
menuItem?:
|
|
1703
|
-
toggle?:
|
|
1687
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
1688
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1689
|
+
menu?: tailwind_merge77.ClassNameValue;
|
|
1690
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
1691
|
+
container?: tailwind_merge77.ClassNameValue;
|
|
1692
|
+
list?: tailwind_merge77.ClassNameValue;
|
|
1693
|
+
listItem?: tailwind_merge77.ClassNameValue;
|
|
1694
|
+
menuItem?: tailwind_merge77.ClassNameValue;
|
|
1695
|
+
toggle?: tailwind_merge77.ClassNameValue;
|
|
1704
1696
|
};
|
|
1705
1697
|
};
|
|
1706
1698
|
} | {}, {
|
|
@@ -1714,15 +1706,15 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1714
1706
|
toggle: string;
|
|
1715
1707
|
}, undefined, {
|
|
1716
1708
|
[key: string]: {
|
|
1717
|
-
[key: string]:
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
container?:
|
|
1722
|
-
list?:
|
|
1723
|
-
listItem?:
|
|
1724
|
-
menuItem?:
|
|
1725
|
-
toggle?:
|
|
1709
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1710
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1711
|
+
menu?: tailwind_merge77.ClassNameValue;
|
|
1712
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
1713
|
+
container?: tailwind_merge77.ClassNameValue;
|
|
1714
|
+
list?: tailwind_merge77.ClassNameValue;
|
|
1715
|
+
listItem?: tailwind_merge77.ClassNameValue;
|
|
1716
|
+
menuItem?: tailwind_merge77.ClassNameValue;
|
|
1717
|
+
toggle?: tailwind_merge77.ClassNameValue;
|
|
1726
1718
|
};
|
|
1727
1719
|
};
|
|
1728
1720
|
} | {}, {
|
|
@@ -1734,7 +1726,7 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1734
1726
|
menuItem: string;
|
|
1735
1727
|
root: string;
|
|
1736
1728
|
toggle: string;
|
|
1737
|
-
},
|
|
1729
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
1738
1730
|
container: string;
|
|
1739
1731
|
content: string;
|
|
1740
1732
|
list: string;
|
|
@@ -1765,77 +1757,77 @@ declare const _default$13: (({
|
|
|
1765
1757
|
isOpen,
|
|
1766
1758
|
onOpenChange,
|
|
1767
1759
|
...props
|
|
1768
|
-
}: NavbarProps) =>
|
|
1760
|
+
}: NavbarProps) => react_jsx_runtime29.JSX.Element) & {
|
|
1769
1761
|
Container: ({
|
|
1770
1762
|
className,
|
|
1771
1763
|
...props
|
|
1772
|
-
}: NavbarContainerProps) =>
|
|
1764
|
+
}: NavbarContainerProps) => react_jsx_runtime29.JSX.Element;
|
|
1773
1765
|
Content: ({
|
|
1774
1766
|
className,
|
|
1775
1767
|
...props
|
|
1776
|
-
}: NavbarContentProps) =>
|
|
1768
|
+
}: NavbarContentProps) => react_jsx_runtime29.JSX.Element;
|
|
1777
1769
|
List: ({
|
|
1778
1770
|
className,
|
|
1779
1771
|
...props
|
|
1780
|
-
}: NavbarListProps) =>
|
|
1772
|
+
}: NavbarListProps) => react_jsx_runtime29.JSX.Element;
|
|
1781
1773
|
ListItem: ({
|
|
1782
1774
|
className,
|
|
1783
1775
|
...props
|
|
1784
|
-
}: NavbarListItemProps) =>
|
|
1776
|
+
}: NavbarListItemProps) => react_jsx_runtime29.JSX.Element;
|
|
1785
1777
|
Menu: ({
|
|
1786
1778
|
className,
|
|
1787
1779
|
header,
|
|
1788
1780
|
...props
|
|
1789
|
-
}: NavbarMenuProps) =>
|
|
1781
|
+
}: NavbarMenuProps) => react_jsx_runtime29.JSX.Element;
|
|
1790
1782
|
MenuItem: ({
|
|
1791
1783
|
className,
|
|
1792
1784
|
...props
|
|
1793
|
-
}: NavbarMenuItemProps) =>
|
|
1785
|
+
}: NavbarMenuItemProps) => react_jsx_runtime29.JSX.Element;
|
|
1794
1786
|
Root: ({
|
|
1795
1787
|
className,
|
|
1796
1788
|
isOpen,
|
|
1797
1789
|
onOpenChange,
|
|
1798
1790
|
...props
|
|
1799
|
-
}: NavbarProps) =>
|
|
1791
|
+
}: NavbarProps) => react_jsx_runtime29.JSX.Element;
|
|
1800
1792
|
Toggle: ({
|
|
1801
1793
|
className,
|
|
1802
1794
|
...props
|
|
1803
|
-
}: NavbarToggleProps) =>
|
|
1795
|
+
}: NavbarToggleProps) => react_jsx_runtime29.JSX.Element;
|
|
1804
1796
|
};
|
|
1805
1797
|
//#endregion
|
|
1806
1798
|
//#region src/components/popover/popover.variants.d.ts
|
|
1807
|
-
declare const popoverVariants:
|
|
1799
|
+
declare const popoverVariants: tailwind_variants14.TVReturnType<{
|
|
1808
1800
|
[key: string]: {
|
|
1809
|
-
[key: string]:
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
description?:
|
|
1815
|
-
backdrop?:
|
|
1816
|
-
close?:
|
|
1817
|
-
popup?:
|
|
1818
|
-
portal?:
|
|
1819
|
-
viewport?:
|
|
1820
|
-
arrow?:
|
|
1821
|
-
positioner?:
|
|
1801
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1802
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1803
|
+
title?: tailwind_merge77.ClassNameValue;
|
|
1804
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
1805
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
1806
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
1807
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
1808
|
+
close?: tailwind_merge77.ClassNameValue;
|
|
1809
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
1810
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
1811
|
+
viewport?: tailwind_merge77.ClassNameValue;
|
|
1812
|
+
arrow?: tailwind_merge77.ClassNameValue;
|
|
1813
|
+
positioner?: tailwind_merge77.ClassNameValue;
|
|
1822
1814
|
};
|
|
1823
1815
|
};
|
|
1824
1816
|
} | {
|
|
1825
1817
|
[x: string]: {
|
|
1826
|
-
[x: string]:
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
description?:
|
|
1832
|
-
backdrop?:
|
|
1833
|
-
close?:
|
|
1834
|
-
popup?:
|
|
1835
|
-
portal?:
|
|
1836
|
-
viewport?:
|
|
1837
|
-
arrow?:
|
|
1838
|
-
positioner?:
|
|
1818
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
1819
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1820
|
+
title?: tailwind_merge77.ClassNameValue;
|
|
1821
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
1822
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
1823
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
1824
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
1825
|
+
close?: tailwind_merge77.ClassNameValue;
|
|
1826
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
1827
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
1828
|
+
viewport?: tailwind_merge77.ClassNameValue;
|
|
1829
|
+
arrow?: tailwind_merge77.ClassNameValue;
|
|
1830
|
+
positioner?: tailwind_merge77.ClassNameValue;
|
|
1839
1831
|
};
|
|
1840
1832
|
};
|
|
1841
1833
|
} | {}, {
|
|
@@ -1853,19 +1845,19 @@ declare const popoverVariants: tailwind_variants0.TVReturnType<{
|
|
|
1853
1845
|
viewport: string;
|
|
1854
1846
|
}, undefined, {
|
|
1855
1847
|
[key: string]: {
|
|
1856
|
-
[key: string]:
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
description?:
|
|
1862
|
-
backdrop?:
|
|
1863
|
-
close?:
|
|
1864
|
-
popup?:
|
|
1865
|
-
portal?:
|
|
1866
|
-
viewport?:
|
|
1867
|
-
arrow?:
|
|
1868
|
-
positioner?:
|
|
1848
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
1849
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
1850
|
+
title?: tailwind_merge77.ClassNameValue;
|
|
1851
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
1852
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
1853
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
1854
|
+
backdrop?: tailwind_merge77.ClassNameValue;
|
|
1855
|
+
close?: tailwind_merge77.ClassNameValue;
|
|
1856
|
+
popup?: tailwind_merge77.ClassNameValue;
|
|
1857
|
+
portal?: tailwind_merge77.ClassNameValue;
|
|
1858
|
+
viewport?: tailwind_merge77.ClassNameValue;
|
|
1859
|
+
arrow?: tailwind_merge77.ClassNameValue;
|
|
1860
|
+
positioner?: tailwind_merge77.ClassNameValue;
|
|
1869
1861
|
};
|
|
1870
1862
|
};
|
|
1871
1863
|
} | {}, {
|
|
@@ -1881,7 +1873,7 @@ declare const popoverVariants: tailwind_variants0.TVReturnType<{
|
|
|
1881
1873
|
title: string;
|
|
1882
1874
|
trigger: string;
|
|
1883
1875
|
viewport: string;
|
|
1884
|
-
},
|
|
1876
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
1885
1877
|
arrow: string;
|
|
1886
1878
|
backdrop: string;
|
|
1887
1879
|
close: string;
|
|
@@ -1911,55 +1903,55 @@ interface PopoverDescriptionProps extends Popover.Description.Props {}
|
|
|
1911
1903
|
interface PopoverCloseProps extends Popover.Close.Props {}
|
|
1912
1904
|
declare const _default$14: (({
|
|
1913
1905
|
...props
|
|
1914
|
-
}: PopoverProps) =>
|
|
1906
|
+
}: PopoverProps) => react_jsx_runtime29.JSX.Element) & {
|
|
1915
1907
|
Arrow: ({
|
|
1916
1908
|
className,
|
|
1917
1909
|
...props
|
|
1918
|
-
}: PopoverArrowProps) =>
|
|
1910
|
+
}: PopoverArrowProps) => react_jsx_runtime29.JSX.Element;
|
|
1919
1911
|
Backdrop: ({
|
|
1920
1912
|
className,
|
|
1921
1913
|
...props
|
|
1922
|
-
}: PopoverBackdropProps) =>
|
|
1914
|
+
}: PopoverBackdropProps) => react_jsx_runtime29.JSX.Element;
|
|
1923
1915
|
Close: ({
|
|
1924
1916
|
className,
|
|
1925
1917
|
children,
|
|
1926
1918
|
...props
|
|
1927
|
-
}: PopoverCloseProps) =>
|
|
1919
|
+
}: PopoverCloseProps) => react_jsx_runtime29.JSX.Element;
|
|
1928
1920
|
Description: ({
|
|
1929
1921
|
className,
|
|
1930
1922
|
...props
|
|
1931
|
-
}: PopoverDescriptionProps) =>
|
|
1923
|
+
}: PopoverDescriptionProps) => react_jsx_runtime29.JSX.Element;
|
|
1932
1924
|
Popup: ({
|
|
1933
1925
|
className,
|
|
1934
1926
|
...props
|
|
1935
|
-
}: PopoverPopupProps) =>
|
|
1927
|
+
}: PopoverPopupProps) => react_jsx_runtime29.JSX.Element;
|
|
1936
1928
|
Portal: ({
|
|
1937
1929
|
className,
|
|
1938
1930
|
...props
|
|
1939
|
-
}: PopoverPortalProps) =>
|
|
1931
|
+
}: PopoverPortalProps) => react_jsx_runtime29.JSX.Element;
|
|
1940
1932
|
Positioner: ({
|
|
1941
1933
|
className,
|
|
1942
1934
|
...props
|
|
1943
|
-
}: PopoverPositionerProps) =>
|
|
1935
|
+
}: PopoverPositionerProps) => react_jsx_runtime29.JSX.Element;
|
|
1944
1936
|
Root: ({
|
|
1945
1937
|
...props
|
|
1946
|
-
}: PopoverProps) =>
|
|
1938
|
+
}: PopoverProps) => react_jsx_runtime29.JSX.Element;
|
|
1947
1939
|
Title: ({
|
|
1948
1940
|
className,
|
|
1949
1941
|
...props
|
|
1950
|
-
}: PopoverTitleProps) =>
|
|
1942
|
+
}: PopoverTitleProps) => react_jsx_runtime29.JSX.Element;
|
|
1951
1943
|
Trigger: ({
|
|
1952
1944
|
className,
|
|
1953
1945
|
...props
|
|
1954
|
-
}: PopoverTriggerProps) =>
|
|
1946
|
+
}: PopoverTriggerProps) => react_jsx_runtime29.JSX.Element;
|
|
1955
1947
|
Viewport: ({
|
|
1956
1948
|
className,
|
|
1957
1949
|
...props
|
|
1958
|
-
}: PopoverViewportProps) =>
|
|
1950
|
+
}: PopoverViewportProps) => react_jsx_runtime29.JSX.Element;
|
|
1959
1951
|
};
|
|
1960
1952
|
//#endregion
|
|
1961
1953
|
//#region src/components/progress/progress.variants.d.ts
|
|
1962
|
-
declare const progressVariants:
|
|
1954
|
+
declare const progressVariants: tailwind_variants14.TVReturnType<{
|
|
1963
1955
|
size: {
|
|
1964
1956
|
lg: {
|
|
1965
1957
|
root: string;
|
|
@@ -2023,7 +2015,7 @@ declare const progressVariants: tailwind_variants0.TVReturnType<{
|
|
|
2023
2015
|
root: string;
|
|
2024
2016
|
track: string;
|
|
2025
2017
|
value: string;
|
|
2026
|
-
},
|
|
2018
|
+
}, tailwind_variants14.TVReturnType<{
|
|
2027
2019
|
size: {
|
|
2028
2020
|
lg: {
|
|
2029
2021
|
root: string;
|
|
@@ -2069,44 +2061,44 @@ declare const _default$15: (({
|
|
|
2069
2061
|
variant,
|
|
2070
2062
|
size,
|
|
2071
2063
|
...props
|
|
2072
|
-
}: ProgressProps) =>
|
|
2064
|
+
}: ProgressProps) => react_jsx_runtime29.JSX.Element) & {
|
|
2073
2065
|
Indicator: ({
|
|
2074
2066
|
className,
|
|
2075
2067
|
...props
|
|
2076
|
-
}: ProgressIndicatorProps) =>
|
|
2068
|
+
}: ProgressIndicatorProps) => react_jsx_runtime29.JSX.Element;
|
|
2077
2069
|
Label: ({
|
|
2078
2070
|
className,
|
|
2079
2071
|
...props
|
|
2080
|
-
}: ProgressLabelProps) =>
|
|
2072
|
+
}: ProgressLabelProps) => react_jsx_runtime29.JSX.Element;
|
|
2081
2073
|
Root: ({
|
|
2082
2074
|
className,
|
|
2083
2075
|
variant,
|
|
2084
2076
|
size,
|
|
2085
2077
|
...props
|
|
2086
|
-
}: ProgressProps) =>
|
|
2078
|
+
}: ProgressProps) => react_jsx_runtime29.JSX.Element;
|
|
2087
2079
|
Track: ({
|
|
2088
2080
|
className,
|
|
2089
2081
|
...props
|
|
2090
|
-
}: ProgressTrackProps) =>
|
|
2082
|
+
}: ProgressTrackProps) => react_jsx_runtime29.JSX.Element;
|
|
2091
2083
|
Value: ({
|
|
2092
2084
|
className,
|
|
2093
2085
|
...props
|
|
2094
|
-
}: ProgressValueProps) =>
|
|
2086
|
+
}: ProgressValueProps) => react_jsx_runtime29.JSX.Element;
|
|
2095
2087
|
};
|
|
2096
2088
|
//#endregion
|
|
2097
2089
|
//#region src/components/radio/radio.variants.d.ts
|
|
2098
|
-
declare const radioVariants:
|
|
2090
|
+
declare const radioVariants: tailwind_variants14.TVReturnType<{
|
|
2099
2091
|
[key: string]: {
|
|
2100
|
-
[key: string]:
|
|
2101
|
-
root?:
|
|
2102
|
-
indicator?:
|
|
2092
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2093
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2094
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
2103
2095
|
};
|
|
2104
2096
|
};
|
|
2105
2097
|
} | {
|
|
2106
2098
|
[x: string]: {
|
|
2107
|
-
[x: string]:
|
|
2108
|
-
root?:
|
|
2109
|
-
indicator?:
|
|
2099
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
2100
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2101
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
2110
2102
|
};
|
|
2111
2103
|
};
|
|
2112
2104
|
} | {}, {
|
|
@@ -2114,15 +2106,15 @@ declare const radioVariants: tailwind_variants0.TVReturnType<{
|
|
|
2114
2106
|
root: string;
|
|
2115
2107
|
}, undefined, {
|
|
2116
2108
|
[key: string]: {
|
|
2117
|
-
[key: string]:
|
|
2118
|
-
root?:
|
|
2119
|
-
indicator?:
|
|
2109
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2110
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2111
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
2120
2112
|
};
|
|
2121
2113
|
};
|
|
2122
2114
|
} | {}, {
|
|
2123
2115
|
indicator: string;
|
|
2124
2116
|
root: string;
|
|
2125
|
-
},
|
|
2117
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
2126
2118
|
indicator: string;
|
|
2127
2119
|
root: string;
|
|
2128
2120
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -2134,19 +2126,19 @@ interface RadioIndicatorProps extends Radio.Indicator.Props {}
|
|
|
2134
2126
|
declare const _default$16: (({
|
|
2135
2127
|
className,
|
|
2136
2128
|
...props
|
|
2137
|
-
}: RadioProps) =>
|
|
2129
|
+
}: RadioProps) => react_jsx_runtime29.JSX.Element) & {
|
|
2138
2130
|
Indicator: ({
|
|
2139
2131
|
className,
|
|
2140
2132
|
...props
|
|
2141
|
-
}: RadioIndicatorProps) =>
|
|
2133
|
+
}: RadioIndicatorProps) => react_jsx_runtime29.JSX.Element;
|
|
2142
2134
|
Root: ({
|
|
2143
2135
|
className,
|
|
2144
2136
|
...props
|
|
2145
|
-
}: RadioProps) =>
|
|
2137
|
+
}: RadioProps) => react_jsx_runtime29.JSX.Element;
|
|
2146
2138
|
};
|
|
2147
2139
|
//#endregion
|
|
2148
2140
|
//#region src/components/radio-group/radio-group.variants.d.ts
|
|
2149
|
-
declare const radioGroupVariants:
|
|
2141
|
+
declare const radioGroupVariants: tailwind_variants14.TVReturnType<{} | {} | {}, undefined, "radio-group", {} | {}, undefined, tailwind_variants14.TVReturnType<unknown, undefined, "radio-group", unknown, unknown, undefined>>;
|
|
2150
2142
|
type RadioGroupVariants = VariantProps<typeof radioGroupVariants>;
|
|
2151
2143
|
//#endregion
|
|
2152
2144
|
//#region src/components/radio-group/radio-group.d.ts
|
|
@@ -2154,29 +2146,29 @@ interface RadioGroupProps extends RadioGroupVariants, RadioGroup$1.Props {}
|
|
|
2154
2146
|
declare const RadioGroup: ({
|
|
2155
2147
|
className,
|
|
2156
2148
|
...props
|
|
2157
|
-
}: RadioGroupProps) =>
|
|
2149
|
+
}: RadioGroupProps) => react_jsx_runtime29.JSX.Element;
|
|
2158
2150
|
//#endregion
|
|
2159
2151
|
//#region src/components/select/select.variants.d.ts
|
|
2160
|
-
declare const selectVariants:
|
|
2152
|
+
declare const selectVariants: tailwind_variants14.TVReturnType<{
|
|
2161
2153
|
[key: string]: {
|
|
2162
|
-
[key: string]:
|
|
2163
|
-
root?:
|
|
2164
|
-
label?:
|
|
2165
|
-
option?:
|
|
2166
|
-
description?:
|
|
2167
|
-
control?:
|
|
2168
|
-
error?:
|
|
2154
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2155
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2156
|
+
label?: tailwind_merge77.ClassNameValue;
|
|
2157
|
+
option?: tailwind_merge77.ClassNameValue;
|
|
2158
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
2159
|
+
control?: tailwind_merge77.ClassNameValue;
|
|
2160
|
+
error?: tailwind_merge77.ClassNameValue;
|
|
2169
2161
|
};
|
|
2170
2162
|
};
|
|
2171
2163
|
} | {
|
|
2172
2164
|
[x: string]: {
|
|
2173
|
-
[x: string]:
|
|
2174
|
-
root?:
|
|
2175
|
-
label?:
|
|
2176
|
-
option?:
|
|
2177
|
-
description?:
|
|
2178
|
-
control?:
|
|
2179
|
-
error?:
|
|
2165
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
2166
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2167
|
+
label?: tailwind_merge77.ClassNameValue;
|
|
2168
|
+
option?: tailwind_merge77.ClassNameValue;
|
|
2169
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
2170
|
+
control?: tailwind_merge77.ClassNameValue;
|
|
2171
|
+
error?: tailwind_merge77.ClassNameValue;
|
|
2180
2172
|
};
|
|
2181
2173
|
};
|
|
2182
2174
|
} | {}, {
|
|
@@ -2188,13 +2180,13 @@ declare const selectVariants: tailwind_variants0.TVReturnType<{
|
|
|
2188
2180
|
root: string;
|
|
2189
2181
|
}, undefined, {
|
|
2190
2182
|
[key: string]: {
|
|
2191
|
-
[key: string]:
|
|
2192
|
-
root?:
|
|
2193
|
-
label?:
|
|
2194
|
-
option?:
|
|
2195
|
-
description?:
|
|
2196
|
-
control?:
|
|
2197
|
-
error?:
|
|
2183
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2184
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2185
|
+
label?: tailwind_merge77.ClassNameValue;
|
|
2186
|
+
option?: tailwind_merge77.ClassNameValue;
|
|
2187
|
+
description?: tailwind_merge77.ClassNameValue;
|
|
2188
|
+
control?: tailwind_merge77.ClassNameValue;
|
|
2189
|
+
error?: tailwind_merge77.ClassNameValue;
|
|
2198
2190
|
};
|
|
2199
2191
|
};
|
|
2200
2192
|
} | {}, {
|
|
@@ -2204,7 +2196,7 @@ declare const selectVariants: tailwind_variants0.TVReturnType<{
|
|
|
2204
2196
|
label: string;
|
|
2205
2197
|
option: string;
|
|
2206
2198
|
root: string;
|
|
2207
|
-
},
|
|
2199
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
2208
2200
|
control: string;
|
|
2209
2201
|
description: string;
|
|
2210
2202
|
error: string;
|
|
@@ -2224,35 +2216,35 @@ interface SelectErrorProps extends React$1.ComponentProps<"p"> {}
|
|
|
2224
2216
|
declare const _default$17: (({
|
|
2225
2217
|
className,
|
|
2226
2218
|
...props
|
|
2227
|
-
}: SelectProps) =>
|
|
2219
|
+
}: SelectProps) => react_jsx_runtime29.JSX.Element) & {
|
|
2228
2220
|
Control: ({
|
|
2229
2221
|
className,
|
|
2230
2222
|
...props
|
|
2231
|
-
}: SelectControlProps) =>
|
|
2223
|
+
}: SelectControlProps) => react_jsx_runtime29.JSX.Element;
|
|
2232
2224
|
Description: ({
|
|
2233
2225
|
className,
|
|
2234
2226
|
...props
|
|
2235
|
-
}: SelectDescriptionProps) =>
|
|
2227
|
+
}: SelectDescriptionProps) => react_jsx_runtime29.JSX.Element;
|
|
2236
2228
|
Error: ({
|
|
2237
2229
|
className,
|
|
2238
2230
|
...props
|
|
2239
|
-
}: SelectErrorProps) =>
|
|
2231
|
+
}: SelectErrorProps) => react_jsx_runtime29.JSX.Element;
|
|
2240
2232
|
Label: ({
|
|
2241
2233
|
className,
|
|
2242
2234
|
...props
|
|
2243
|
-
}: SelectLabelProps) =>
|
|
2235
|
+
}: SelectLabelProps) => react_jsx_runtime29.JSX.Element;
|
|
2244
2236
|
Option: ({
|
|
2245
2237
|
className,
|
|
2246
2238
|
...props
|
|
2247
|
-
}: SelectOptionProps) =>
|
|
2239
|
+
}: SelectOptionProps) => react_jsx_runtime29.JSX.Element;
|
|
2248
2240
|
Root: ({
|
|
2249
2241
|
className,
|
|
2250
2242
|
...props
|
|
2251
|
-
}: SelectProps) =>
|
|
2243
|
+
}: SelectProps) => react_jsx_runtime29.JSX.Element;
|
|
2252
2244
|
};
|
|
2253
2245
|
//#endregion
|
|
2254
2246
|
//#region src/components/separator/separator.variants.d.ts
|
|
2255
|
-
declare const separatorVariants:
|
|
2247
|
+
declare const separatorVariants: tailwind_variants14.TVReturnType<{
|
|
2256
2248
|
orientation: {
|
|
2257
2249
|
horizontal: string;
|
|
2258
2250
|
vertical: string;
|
|
@@ -2262,7 +2254,7 @@ declare const separatorVariants: tailwind_variants0.TVReturnType<{
|
|
|
2262
2254
|
horizontal: string;
|
|
2263
2255
|
vertical: string;
|
|
2264
2256
|
};
|
|
2265
|
-
}, undefined,
|
|
2257
|
+
}, undefined, tailwind_variants14.TVReturnType<{
|
|
2266
2258
|
orientation: {
|
|
2267
2259
|
horizontal: string;
|
|
2268
2260
|
vertical: string;
|
|
@@ -2276,37 +2268,37 @@ declare const Separator: ({
|
|
|
2276
2268
|
className,
|
|
2277
2269
|
orientation,
|
|
2278
2270
|
...props
|
|
2279
|
-
}: SeparatorProps) =>
|
|
2271
|
+
}: SeparatorProps) => react_jsx_runtime29.JSX.Element;
|
|
2280
2272
|
//#endregion
|
|
2281
2273
|
//#region src/components/sidebar/sidebar.variants.d.ts
|
|
2282
|
-
declare const sidebarVariants:
|
|
2274
|
+
declare const sidebarVariants: tailwind_variants14.TVReturnType<{
|
|
2283
2275
|
[key: string]: {
|
|
2284
|
-
[key: string]:
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
menuItem?:
|
|
2293
|
-
menuLabel?:
|
|
2294
|
-
outlet?:
|
|
2276
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2277
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2278
|
+
footer?: tailwind_merge77.ClassNameValue;
|
|
2279
|
+
header?: tailwind_merge77.ClassNameValue;
|
|
2280
|
+
menu?: tailwind_merge77.ClassNameValue;
|
|
2281
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
2282
|
+
panel?: tailwind_merge77.ClassNameValue;
|
|
2283
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
2284
|
+
menuItem?: tailwind_merge77.ClassNameValue;
|
|
2285
|
+
menuLabel?: tailwind_merge77.ClassNameValue;
|
|
2286
|
+
outlet?: tailwind_merge77.ClassNameValue;
|
|
2295
2287
|
};
|
|
2296
2288
|
};
|
|
2297
2289
|
} | {
|
|
2298
2290
|
[x: string]: {
|
|
2299
|
-
[x: string]:
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
menuItem?:
|
|
2308
|
-
menuLabel?:
|
|
2309
|
-
outlet?:
|
|
2291
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
2292
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2293
|
+
footer?: tailwind_merge77.ClassNameValue;
|
|
2294
|
+
header?: tailwind_merge77.ClassNameValue;
|
|
2295
|
+
menu?: tailwind_merge77.ClassNameValue;
|
|
2296
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
2297
|
+
panel?: tailwind_merge77.ClassNameValue;
|
|
2298
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
2299
|
+
menuItem?: tailwind_merge77.ClassNameValue;
|
|
2300
|
+
menuLabel?: tailwind_merge77.ClassNameValue;
|
|
2301
|
+
outlet?: tailwind_merge77.ClassNameValue;
|
|
2310
2302
|
};
|
|
2311
2303
|
};
|
|
2312
2304
|
} | {}, {
|
|
@@ -2322,17 +2314,17 @@ declare const sidebarVariants: tailwind_variants0.TVReturnType<{
|
|
|
2322
2314
|
trigger: string;
|
|
2323
2315
|
}, undefined, {
|
|
2324
2316
|
[key: string]: {
|
|
2325
|
-
[key: string]:
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
menuItem?:
|
|
2334
|
-
menuLabel?:
|
|
2335
|
-
outlet?:
|
|
2317
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2318
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2319
|
+
footer?: tailwind_merge77.ClassNameValue;
|
|
2320
|
+
header?: tailwind_merge77.ClassNameValue;
|
|
2321
|
+
menu?: tailwind_merge77.ClassNameValue;
|
|
2322
|
+
content?: tailwind_merge77.ClassNameValue;
|
|
2323
|
+
panel?: tailwind_merge77.ClassNameValue;
|
|
2324
|
+
trigger?: tailwind_merge77.ClassNameValue;
|
|
2325
|
+
menuItem?: tailwind_merge77.ClassNameValue;
|
|
2326
|
+
menuLabel?: tailwind_merge77.ClassNameValue;
|
|
2327
|
+
outlet?: tailwind_merge77.ClassNameValue;
|
|
2336
2328
|
};
|
|
2337
2329
|
};
|
|
2338
2330
|
} | {}, {
|
|
@@ -2346,7 +2338,7 @@ declare const sidebarVariants: tailwind_variants0.TVReturnType<{
|
|
|
2346
2338
|
panel: string;
|
|
2347
2339
|
root: string;
|
|
2348
2340
|
trigger: string;
|
|
2349
|
-
},
|
|
2341
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
2350
2342
|
content: string;
|
|
2351
2343
|
footer: string;
|
|
2352
2344
|
header: string;
|
|
@@ -2379,73 +2371,73 @@ declare const _default$18: (({
|
|
|
2379
2371
|
isOpen,
|
|
2380
2372
|
onOpenChange,
|
|
2381
2373
|
...props
|
|
2382
|
-
}: SidebarProps) =>
|
|
2374
|
+
}: SidebarProps) => react_jsx_runtime29.JSX.Element) & {
|
|
2383
2375
|
Content: ({
|
|
2384
2376
|
className,
|
|
2385
2377
|
...props
|
|
2386
|
-
}: SidebarContentProps) =>
|
|
2378
|
+
}: SidebarContentProps) => react_jsx_runtime29.JSX.Element;
|
|
2387
2379
|
Footer: ({
|
|
2388
2380
|
className,
|
|
2389
2381
|
...props
|
|
2390
|
-
}: SidebarFooterProps) =>
|
|
2382
|
+
}: SidebarFooterProps) => react_jsx_runtime29.JSX.Element;
|
|
2391
2383
|
Header: ({
|
|
2392
2384
|
className,
|
|
2393
2385
|
...props
|
|
2394
|
-
}: SidebarHeaderProps) =>
|
|
2386
|
+
}: SidebarHeaderProps) => react_jsx_runtime29.JSX.Element;
|
|
2395
2387
|
Menu: ({
|
|
2396
2388
|
className,
|
|
2397
2389
|
...props
|
|
2398
|
-
}: SidebarMenuProps) =>
|
|
2390
|
+
}: SidebarMenuProps) => react_jsx_runtime29.JSX.Element;
|
|
2399
2391
|
MenuItem: ({
|
|
2400
2392
|
className,
|
|
2401
2393
|
...props
|
|
2402
|
-
}: SidebarMenuItemProps) =>
|
|
2394
|
+
}: SidebarMenuItemProps) => react_jsx_runtime29.JSX.Element;
|
|
2403
2395
|
MenuLabel: ({
|
|
2404
2396
|
className,
|
|
2405
2397
|
...props
|
|
2406
|
-
}: SidebarMenuLabelProps) =>
|
|
2398
|
+
}: SidebarMenuLabelProps) => react_jsx_runtime29.JSX.Element;
|
|
2407
2399
|
Outlet: ({
|
|
2408
2400
|
className,
|
|
2409
2401
|
...props
|
|
2410
|
-
}: SidebarOutletProps) =>
|
|
2402
|
+
}: SidebarOutletProps) => react_jsx_runtime29.JSX.Element;
|
|
2411
2403
|
Panel: ({
|
|
2412
2404
|
className,
|
|
2413
2405
|
...props
|
|
2414
|
-
}: SidebarPanelProps) =>
|
|
2406
|
+
}: SidebarPanelProps) => react_jsx_runtime29.JSX.Element;
|
|
2415
2407
|
Root: ({
|
|
2416
2408
|
className,
|
|
2417
2409
|
isOpen,
|
|
2418
2410
|
onOpenChange,
|
|
2419
2411
|
...props
|
|
2420
|
-
}: SidebarProps) =>
|
|
2412
|
+
}: SidebarProps) => react_jsx_runtime29.JSX.Element;
|
|
2421
2413
|
Trigger: ({
|
|
2422
2414
|
className,
|
|
2423
2415
|
children,
|
|
2424
2416
|
...props
|
|
2425
|
-
}: SidebarTriggerProps) =>
|
|
2417
|
+
}: SidebarTriggerProps) => react_jsx_runtime29.JSX.Element;
|
|
2426
2418
|
};
|
|
2427
2419
|
//#endregion
|
|
2428
2420
|
//#region src/components/slider/slider.variants.d.ts
|
|
2429
|
-
declare const sliderVariants:
|
|
2421
|
+
declare const sliderVariants: tailwind_variants14.TVReturnType<{
|
|
2430
2422
|
[key: string]: {
|
|
2431
|
-
[key: string]:
|
|
2432
|
-
root?:
|
|
2433
|
-
track?:
|
|
2434
|
-
value?:
|
|
2435
|
-
indicator?:
|
|
2436
|
-
control?:
|
|
2437
|
-
thumb?:
|
|
2423
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2424
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2425
|
+
track?: tailwind_merge77.ClassNameValue;
|
|
2426
|
+
value?: tailwind_merge77.ClassNameValue;
|
|
2427
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
2428
|
+
control?: tailwind_merge77.ClassNameValue;
|
|
2429
|
+
thumb?: tailwind_merge77.ClassNameValue;
|
|
2438
2430
|
};
|
|
2439
2431
|
};
|
|
2440
2432
|
} | {
|
|
2441
2433
|
[x: string]: {
|
|
2442
|
-
[x: string]:
|
|
2443
|
-
root?:
|
|
2444
|
-
track?:
|
|
2445
|
-
value?:
|
|
2446
|
-
indicator?:
|
|
2447
|
-
control?:
|
|
2448
|
-
thumb?:
|
|
2434
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
2435
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2436
|
+
track?: tailwind_merge77.ClassNameValue;
|
|
2437
|
+
value?: tailwind_merge77.ClassNameValue;
|
|
2438
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
2439
|
+
control?: tailwind_merge77.ClassNameValue;
|
|
2440
|
+
thumb?: tailwind_merge77.ClassNameValue;
|
|
2449
2441
|
};
|
|
2450
2442
|
};
|
|
2451
2443
|
} | {}, {
|
|
@@ -2457,13 +2449,13 @@ declare const sliderVariants: tailwind_variants0.TVReturnType<{
|
|
|
2457
2449
|
value: string;
|
|
2458
2450
|
}, undefined, {
|
|
2459
2451
|
[key: string]: {
|
|
2460
|
-
[key: string]:
|
|
2461
|
-
root?:
|
|
2462
|
-
track?:
|
|
2463
|
-
value?:
|
|
2464
|
-
indicator?:
|
|
2465
|
-
control?:
|
|
2466
|
-
thumb?:
|
|
2452
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2453
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2454
|
+
track?: tailwind_merge77.ClassNameValue;
|
|
2455
|
+
value?: tailwind_merge77.ClassNameValue;
|
|
2456
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
2457
|
+
control?: tailwind_merge77.ClassNameValue;
|
|
2458
|
+
thumb?: tailwind_merge77.ClassNameValue;
|
|
2467
2459
|
};
|
|
2468
2460
|
};
|
|
2469
2461
|
} | {}, {
|
|
@@ -2473,7 +2465,7 @@ declare const sliderVariants: tailwind_variants0.TVReturnType<{
|
|
|
2473
2465
|
thumb: string;
|
|
2474
2466
|
track: string;
|
|
2475
2467
|
value: string;
|
|
2476
|
-
},
|
|
2468
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
2477
2469
|
control: string;
|
|
2478
2470
|
indicator: string;
|
|
2479
2471
|
root: string;
|
|
@@ -2488,35 +2480,85 @@ interface SliderProps extends SliderVariants, Slider.Root.Props {}
|
|
|
2488
2480
|
declare const _default$19: (({
|
|
2489
2481
|
className,
|
|
2490
2482
|
...props
|
|
2491
|
-
}: SliderProps) =>
|
|
2483
|
+
}: SliderProps) => react_jsx_runtime29.JSX.Element) & {
|
|
2492
2484
|
Control: ({
|
|
2493
2485
|
className,
|
|
2494
2486
|
...props
|
|
2495
|
-
}: Slider.Control.Props) =>
|
|
2487
|
+
}: Slider.Control.Props) => react_jsx_runtime29.JSX.Element;
|
|
2496
2488
|
Indicator: ({
|
|
2497
2489
|
className,
|
|
2498
2490
|
...props
|
|
2499
|
-
}: Slider.Indicator.Props) =>
|
|
2491
|
+
}: Slider.Indicator.Props) => react_jsx_runtime29.JSX.Element;
|
|
2500
2492
|
Root: ({
|
|
2501
2493
|
className,
|
|
2502
2494
|
...props
|
|
2503
|
-
}: SliderProps) =>
|
|
2495
|
+
}: SliderProps) => react_jsx_runtime29.JSX.Element;
|
|
2504
2496
|
Thumb: ({
|
|
2505
2497
|
className,
|
|
2506
2498
|
...props
|
|
2507
|
-
}: Slider.Thumb.Props) =>
|
|
2499
|
+
}: Slider.Thumb.Props) => react_jsx_runtime29.JSX.Element;
|
|
2508
2500
|
Track: ({
|
|
2509
2501
|
className,
|
|
2510
2502
|
...props
|
|
2511
|
-
}: Slider.Track.Props) =>
|
|
2503
|
+
}: Slider.Track.Props) => react_jsx_runtime29.JSX.Element;
|
|
2512
2504
|
Value: ({
|
|
2513
2505
|
className,
|
|
2514
2506
|
...props
|
|
2515
|
-
}: Slider.Value.Props) =>
|
|
2507
|
+
}: Slider.Value.Props) => react_jsx_runtime29.JSX.Element;
|
|
2516
2508
|
};
|
|
2517
2509
|
//#endregion
|
|
2510
|
+
//#region src/components/spinner/spinner.variants.d.ts
|
|
2511
|
+
declare const spinnerVariants: tailwind_variants14.TVReturnType<{
|
|
2512
|
+
size: {
|
|
2513
|
+
lg: string;
|
|
2514
|
+
md: string;
|
|
2515
|
+
sm: string;
|
|
2516
|
+
xl: string;
|
|
2517
|
+
};
|
|
2518
|
+
variant: {
|
|
2519
|
+
danger: string;
|
|
2520
|
+
primary: string;
|
|
2521
|
+
success: string;
|
|
2522
|
+
};
|
|
2523
|
+
}, undefined, "spinner", {
|
|
2524
|
+
size: {
|
|
2525
|
+
lg: string;
|
|
2526
|
+
md: string;
|
|
2527
|
+
sm: string;
|
|
2528
|
+
xl: string;
|
|
2529
|
+
};
|
|
2530
|
+
variant: {
|
|
2531
|
+
danger: string;
|
|
2532
|
+
primary: string;
|
|
2533
|
+
success: string;
|
|
2534
|
+
};
|
|
2535
|
+
}, undefined, tailwind_variants14.TVReturnType<{
|
|
2536
|
+
size: {
|
|
2537
|
+
lg: string;
|
|
2538
|
+
md: string;
|
|
2539
|
+
sm: string;
|
|
2540
|
+
xl: string;
|
|
2541
|
+
};
|
|
2542
|
+
variant: {
|
|
2543
|
+
danger: string;
|
|
2544
|
+
primary: string;
|
|
2545
|
+
success: string;
|
|
2546
|
+
};
|
|
2547
|
+
}, undefined, "spinner", unknown, unknown, undefined>>;
|
|
2548
|
+
type SpinnerVariants = VariantProps<typeof spinnerVariants>;
|
|
2549
|
+
//#endregion
|
|
2550
|
+
//#region src/components/spinner/spinner.d.ts
|
|
2551
|
+
interface SpinnerProps extends SpinnerVariants, React.ComponentProps<"svg"> {}
|
|
2552
|
+
declare const Spinner: ({
|
|
2553
|
+
className,
|
|
2554
|
+
children,
|
|
2555
|
+
size,
|
|
2556
|
+
variant,
|
|
2557
|
+
...props
|
|
2558
|
+
}: SpinnerProps) => react_jsx_runtime29.JSX.Element;
|
|
2559
|
+
//#endregion
|
|
2518
2560
|
//#region src/components/switch/switch.variants.d.ts
|
|
2519
|
-
declare const switchVariants:
|
|
2561
|
+
declare const switchVariants: tailwind_variants14.TVReturnType<{
|
|
2520
2562
|
size: {
|
|
2521
2563
|
lg: {
|
|
2522
2564
|
root: string;
|
|
@@ -2546,7 +2588,7 @@ declare const switchVariants: tailwind_variants0.TVReturnType<{
|
|
|
2546
2588
|
}, {
|
|
2547
2589
|
root: string;
|
|
2548
2590
|
thumb: string;
|
|
2549
|
-
},
|
|
2591
|
+
}, tailwind_variants14.TVReturnType<{
|
|
2550
2592
|
size: {
|
|
2551
2593
|
lg: {
|
|
2552
2594
|
root: string;
|
|
@@ -2570,41 +2612,41 @@ declare const _default$20: (({
|
|
|
2570
2612
|
className,
|
|
2571
2613
|
size,
|
|
2572
2614
|
...props
|
|
2573
|
-
}: SwitchProps) =>
|
|
2615
|
+
}: SwitchProps) => react_jsx_runtime29.JSX.Element) & {
|
|
2574
2616
|
Root: ({
|
|
2575
2617
|
className,
|
|
2576
2618
|
size,
|
|
2577
2619
|
...props
|
|
2578
|
-
}: SwitchProps) =>
|
|
2620
|
+
}: SwitchProps) => react_jsx_runtime29.JSX.Element;
|
|
2579
2621
|
Thumb: ({
|
|
2580
2622
|
className,
|
|
2581
2623
|
...props
|
|
2582
|
-
}: Switch.Thumb.Props) =>
|
|
2624
|
+
}: Switch.Thumb.Props) => react_jsx_runtime29.JSX.Element;
|
|
2583
2625
|
};
|
|
2584
2626
|
//#endregion
|
|
2585
2627
|
//#region src/components/table/table.variants.d.ts
|
|
2586
|
-
declare const tableVariants:
|
|
2628
|
+
declare const tableVariants: tailwind_variants14.TVReturnType<{
|
|
2587
2629
|
[key: string]: {
|
|
2588
|
-
[key: string]:
|
|
2589
|
-
root?:
|
|
2590
|
-
tbody?:
|
|
2591
|
-
td?:
|
|
2592
|
-
tfoot?:
|
|
2593
|
-
th?:
|
|
2594
|
-
thead?:
|
|
2595
|
-
tr?:
|
|
2630
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2631
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2632
|
+
tbody?: tailwind_merge77.ClassNameValue;
|
|
2633
|
+
td?: tailwind_merge77.ClassNameValue;
|
|
2634
|
+
tfoot?: tailwind_merge77.ClassNameValue;
|
|
2635
|
+
th?: tailwind_merge77.ClassNameValue;
|
|
2636
|
+
thead?: tailwind_merge77.ClassNameValue;
|
|
2637
|
+
tr?: tailwind_merge77.ClassNameValue;
|
|
2596
2638
|
};
|
|
2597
2639
|
};
|
|
2598
2640
|
} | {
|
|
2599
2641
|
[x: string]: {
|
|
2600
|
-
[x: string]:
|
|
2601
|
-
root?:
|
|
2602
|
-
tbody?:
|
|
2603
|
-
td?:
|
|
2604
|
-
tfoot?:
|
|
2605
|
-
th?:
|
|
2606
|
-
thead?:
|
|
2607
|
-
tr?:
|
|
2642
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
2643
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2644
|
+
tbody?: tailwind_merge77.ClassNameValue;
|
|
2645
|
+
td?: tailwind_merge77.ClassNameValue;
|
|
2646
|
+
tfoot?: tailwind_merge77.ClassNameValue;
|
|
2647
|
+
th?: tailwind_merge77.ClassNameValue;
|
|
2648
|
+
thead?: tailwind_merge77.ClassNameValue;
|
|
2649
|
+
tr?: tailwind_merge77.ClassNameValue;
|
|
2608
2650
|
};
|
|
2609
2651
|
};
|
|
2610
2652
|
} | {}, {
|
|
@@ -2617,14 +2659,14 @@ declare const tableVariants: tailwind_variants0.TVReturnType<{
|
|
|
2617
2659
|
tr: string;
|
|
2618
2660
|
}, undefined, {
|
|
2619
2661
|
[key: string]: {
|
|
2620
|
-
[key: string]:
|
|
2621
|
-
root?:
|
|
2622
|
-
tbody?:
|
|
2623
|
-
td?:
|
|
2624
|
-
tfoot?:
|
|
2625
|
-
th?:
|
|
2626
|
-
thead?:
|
|
2627
|
-
tr?:
|
|
2662
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2663
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2664
|
+
tbody?: tailwind_merge77.ClassNameValue;
|
|
2665
|
+
td?: tailwind_merge77.ClassNameValue;
|
|
2666
|
+
tfoot?: tailwind_merge77.ClassNameValue;
|
|
2667
|
+
th?: tailwind_merge77.ClassNameValue;
|
|
2668
|
+
thead?: tailwind_merge77.ClassNameValue;
|
|
2669
|
+
tr?: tailwind_merge77.ClassNameValue;
|
|
2628
2670
|
};
|
|
2629
2671
|
};
|
|
2630
2672
|
} | {}, {
|
|
@@ -2635,7 +2677,7 @@ declare const tableVariants: tailwind_variants0.TVReturnType<{
|
|
|
2635
2677
|
th: string;
|
|
2636
2678
|
thead: string;
|
|
2637
2679
|
tr: string;
|
|
2638
|
-
},
|
|
2680
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
2639
2681
|
root: string;
|
|
2640
2682
|
tbody: string;
|
|
2641
2683
|
td: string;
|
|
@@ -2657,56 +2699,56 @@ interface TableFooterProps extends React.ComponentProps<"tfoot"> {}
|
|
|
2657
2699
|
declare const _default$21: (({
|
|
2658
2700
|
className,
|
|
2659
2701
|
...props
|
|
2660
|
-
}: TableProps) =>
|
|
2702
|
+
}: TableProps) => react_jsx_runtime29.JSX.Element) & {
|
|
2661
2703
|
Body: ({
|
|
2662
2704
|
className,
|
|
2663
2705
|
...props
|
|
2664
|
-
}: TableBodyProps) =>
|
|
2706
|
+
}: TableBodyProps) => react_jsx_runtime29.JSX.Element;
|
|
2665
2707
|
DataCell: ({
|
|
2666
2708
|
className,
|
|
2667
2709
|
...props
|
|
2668
|
-
}: TableDataCellProps) =>
|
|
2710
|
+
}: TableDataCellProps) => react_jsx_runtime29.JSX.Element;
|
|
2669
2711
|
Footer: ({
|
|
2670
2712
|
className,
|
|
2671
2713
|
...props
|
|
2672
|
-
}: TableFooterProps) =>
|
|
2714
|
+
}: TableFooterProps) => react_jsx_runtime29.JSX.Element;
|
|
2673
2715
|
Head: ({
|
|
2674
2716
|
className,
|
|
2675
2717
|
...props
|
|
2676
|
-
}: TableHeadProps) =>
|
|
2718
|
+
}: TableHeadProps) => react_jsx_runtime29.JSX.Element;
|
|
2677
2719
|
HeaderCell: ({
|
|
2678
2720
|
className,
|
|
2679
2721
|
...props
|
|
2680
|
-
}: TableHeaderCellProps) =>
|
|
2722
|
+
}: TableHeaderCellProps) => react_jsx_runtime29.JSX.Element;
|
|
2681
2723
|
Root: ({
|
|
2682
2724
|
className,
|
|
2683
2725
|
...props
|
|
2684
|
-
}: TableProps) =>
|
|
2726
|
+
}: TableProps) => react_jsx_runtime29.JSX.Element;
|
|
2685
2727
|
Row: ({
|
|
2686
2728
|
className,
|
|
2687
2729
|
...props
|
|
2688
|
-
}: TableRowProps) =>
|
|
2730
|
+
}: TableRowProps) => react_jsx_runtime29.JSX.Element;
|
|
2689
2731
|
};
|
|
2690
2732
|
//#endregion
|
|
2691
2733
|
//#region src/components/tabs/tabs.variants.d.ts
|
|
2692
|
-
declare const tabsVariants:
|
|
2734
|
+
declare const tabsVariants: tailwind_variants14.TVReturnType<{
|
|
2693
2735
|
[key: string]: {
|
|
2694
|
-
[key: string]:
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
indicator?:
|
|
2698
|
-
list?:
|
|
2699
|
-
tab?:
|
|
2736
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2737
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2738
|
+
panel?: tailwind_merge77.ClassNameValue;
|
|
2739
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
2740
|
+
list?: tailwind_merge77.ClassNameValue;
|
|
2741
|
+
tab?: tailwind_merge77.ClassNameValue;
|
|
2700
2742
|
};
|
|
2701
2743
|
};
|
|
2702
2744
|
} | {
|
|
2703
2745
|
[x: string]: {
|
|
2704
|
-
[x: string]:
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
indicator?:
|
|
2708
|
-
list?:
|
|
2709
|
-
tab?:
|
|
2746
|
+
[x: string]: tailwind_merge77.ClassNameValue | {
|
|
2747
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2748
|
+
panel?: tailwind_merge77.ClassNameValue;
|
|
2749
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
2750
|
+
list?: tailwind_merge77.ClassNameValue;
|
|
2751
|
+
tab?: tailwind_merge77.ClassNameValue;
|
|
2710
2752
|
};
|
|
2711
2753
|
};
|
|
2712
2754
|
} | {}, {
|
|
@@ -2717,12 +2759,12 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
2717
2759
|
tab: string;
|
|
2718
2760
|
}, undefined, {
|
|
2719
2761
|
[key: string]: {
|
|
2720
|
-
[key: string]:
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
indicator?:
|
|
2724
|
-
list?:
|
|
2725
|
-
tab?:
|
|
2762
|
+
[key: string]: tailwind_merge77.ClassNameValue | {
|
|
2763
|
+
root?: tailwind_merge77.ClassNameValue;
|
|
2764
|
+
panel?: tailwind_merge77.ClassNameValue;
|
|
2765
|
+
indicator?: tailwind_merge77.ClassNameValue;
|
|
2766
|
+
list?: tailwind_merge77.ClassNameValue;
|
|
2767
|
+
tab?: tailwind_merge77.ClassNameValue;
|
|
2726
2768
|
};
|
|
2727
2769
|
};
|
|
2728
2770
|
} | {}, {
|
|
@@ -2731,7 +2773,7 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
2731
2773
|
panel: string;
|
|
2732
2774
|
root: string;
|
|
2733
2775
|
tab: string;
|
|
2734
|
-
},
|
|
2776
|
+
}, tailwind_variants14.TVReturnType<unknown, {
|
|
2735
2777
|
indicator: string;
|
|
2736
2778
|
list: string;
|
|
2737
2779
|
panel: string;
|
|
@@ -2749,62 +2791,62 @@ interface TabsPanelProps extends Tabs.Panel.Props {}
|
|
|
2749
2791
|
declare const _default$22: (({
|
|
2750
2792
|
className,
|
|
2751
2793
|
...props
|
|
2752
|
-
}: TabsProps) =>
|
|
2794
|
+
}: TabsProps) => react_jsx_runtime29.JSX.Element) & {
|
|
2753
2795
|
Indicator: ({
|
|
2754
2796
|
className,
|
|
2755
2797
|
...props
|
|
2756
|
-
}: TabsIndicatorProps) =>
|
|
2798
|
+
}: TabsIndicatorProps) => react_jsx_runtime29.JSX.Element;
|
|
2757
2799
|
List: ({
|
|
2758
2800
|
className,
|
|
2759
2801
|
...props
|
|
2760
|
-
}: TabsListProps) =>
|
|
2802
|
+
}: TabsListProps) => react_jsx_runtime29.JSX.Element;
|
|
2761
2803
|
Panel: ({
|
|
2762
2804
|
className,
|
|
2763
2805
|
...props
|
|
2764
|
-
}: TabsPanelProps) =>
|
|
2806
|
+
}: TabsPanelProps) => react_jsx_runtime29.JSX.Element;
|
|
2765
2807
|
Root: ({
|
|
2766
2808
|
className,
|
|
2767
2809
|
...props
|
|
2768
|
-
}: TabsProps) =>
|
|
2810
|
+
}: TabsProps) => react_jsx_runtime29.JSX.Element;
|
|
2769
2811
|
Tab: ({
|
|
2770
2812
|
className,
|
|
2771
2813
|
...props
|
|
2772
|
-
}: TabsTabProps) =>
|
|
2814
|
+
}: TabsTabProps) => react_jsx_runtime29.JSX.Element;
|
|
2773
2815
|
};
|
|
2774
2816
|
//#endregion
|
|
2775
2817
|
//#region src/components/toggle-button/toggle-button.variants.d.ts
|
|
2776
|
-
declare const toggleButtonVariants:
|
|
2818
|
+
declare const toggleButtonVariants: tailwind_variants14.TVReturnType<{} | {
|
|
2777
2819
|
isIconOnly: {
|
|
2778
|
-
true:
|
|
2779
|
-
base?:
|
|
2820
|
+
true: tailwind_merge77.ClassNameValue | {
|
|
2821
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
2780
2822
|
};
|
|
2781
2823
|
};
|
|
2782
2824
|
size: {
|
|
2783
|
-
lg:
|
|
2784
|
-
base?:
|
|
2825
|
+
lg: tailwind_merge77.ClassNameValue | {
|
|
2826
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
2785
2827
|
};
|
|
2786
|
-
md:
|
|
2787
|
-
base?:
|
|
2828
|
+
md: tailwind_merge77.ClassNameValue | {
|
|
2829
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
2788
2830
|
};
|
|
2789
|
-
sm:
|
|
2790
|
-
base?:
|
|
2831
|
+
sm: tailwind_merge77.ClassNameValue | {
|
|
2832
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
2791
2833
|
};
|
|
2792
2834
|
};
|
|
2793
2835
|
variant: {
|
|
2794
|
-
danger:
|
|
2795
|
-
base?:
|
|
2836
|
+
danger: tailwind_merge77.ClassNameValue | {
|
|
2837
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
2796
2838
|
};
|
|
2797
|
-
ghost:
|
|
2798
|
-
base?:
|
|
2839
|
+
ghost: tailwind_merge77.ClassNameValue | {
|
|
2840
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
2799
2841
|
};
|
|
2800
|
-
outline:
|
|
2801
|
-
base?:
|
|
2842
|
+
outline: tailwind_merge77.ClassNameValue | {
|
|
2843
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
2802
2844
|
};
|
|
2803
|
-
primary:
|
|
2804
|
-
base?:
|
|
2845
|
+
primary: tailwind_merge77.ClassNameValue | {
|
|
2846
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
2805
2847
|
};
|
|
2806
|
-
secondary:
|
|
2807
|
-
base?:
|
|
2848
|
+
secondary: tailwind_merge77.ClassNameValue | {
|
|
2849
|
+
base?: tailwind_merge77.ClassNameValue;
|
|
2808
2850
|
};
|
|
2809
2851
|
};
|
|
2810
2852
|
}, undefined, "toggle-button", {
|
|
@@ -2823,7 +2865,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
2823
2865
|
primary: string;
|
|
2824
2866
|
secondary: string;
|
|
2825
2867
|
};
|
|
2826
|
-
}, undefined,
|
|
2868
|
+
}, undefined, tailwind_variants14.TVReturnType<{
|
|
2827
2869
|
isIconOnly: {
|
|
2828
2870
|
true: string;
|
|
2829
2871
|
};
|
|
@@ -2855,7 +2897,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
2855
2897
|
primary: string;
|
|
2856
2898
|
secondary: string;
|
|
2857
2899
|
};
|
|
2858
|
-
}, undefined,
|
|
2900
|
+
}, undefined, tailwind_variants14.TVReturnType<{
|
|
2859
2901
|
isIconOnly: {
|
|
2860
2902
|
true: string;
|
|
2861
2903
|
};
|
|
@@ -2881,7 +2923,7 @@ declare const ToggleButton: ({
|
|
|
2881
2923
|
variant,
|
|
2882
2924
|
size,
|
|
2883
2925
|
...props
|
|
2884
|
-
}: ToggleButtonProps) =>
|
|
2926
|
+
}: ToggleButtonProps) => react_jsx_runtime29.JSX.Element;
|
|
2885
2927
|
//#endregion
|
|
2886
|
-
export { _default as Accordion, AccordionVariants, _default$1 as Alert, _default$2 as AlertDialog, AlertDialogVariants, AlertVariants, _default$3 as Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, _default$4 as Card, CardVariants, _default$5 as Checkbox, CheckboxGroup, CheckboxGroupVariants, CheckboxVariants, Chip, ChipVariants, Container, ContainerVariants, _default$6 as Dialog, DialogVariants, _default$7 as Drawer, DrawerVariants, _default$8 as Field, FieldVariants, _default$9 as Fieldset, FieldsetVariants, Form, FormVariants, IconButton, IconButtonVariants, Input, InputVariants, Label, LabelVariants, Link, LinkVariants, _default$10 as List, ListVariants, _default$11 as Menu, MenuVariants, _default$12 as Meter, MeterVariants, _default$13 as Navbar, NavbarVariants, _default$14 as Popover, PopoverVariants, _default$15 as Progress, ProgressVariants, _default$16 as Radio, RadioGroup, RadioGroupVariants, RadioVariants, _default$17 as Select, SelectVariants, Separator, SeparatorVariants, _default$18 as Sidebar, SidebarVariants, _default$19 as Slider, SliderVariants, _default$20 as Switch, SwitchVariants, _default$21 as Table, TableVariants, _default$22 as Tabs, TabsVariants, ToggleButton, ToggleButtonVariants, accordionVariants, alertDialogVariants, alertVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, checkboxVariants, chipVariants, cn, containerVariants, dialogVariants, drawerVariants, fieldVariants, fieldsetVariants, formVariants, iconButtonVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, popoverVariants, progressVariants, radioGroupVariants, radioVariants, selectVariants, separatorVariants, sidebarVariants, sliderVariants, switchVariants, tableVariants, tabsVariants, toggleButtonVariants };
|
|
2928
|
+
export { _default as Accordion, AccordionVariants, _default$1 as Alert, _default$2 as AlertDialog, AlertDialogVariants, AlertVariants, _default$3 as Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, _default$4 as Card, CardVariants, _default$5 as Checkbox, CheckboxGroup, CheckboxGroupVariants, CheckboxVariants, Chip, ChipVariants, Container, ContainerVariants, _default$6 as Dialog, DialogVariants, _default$7 as Drawer, DrawerVariants, _default$8 as Field, FieldVariants, _default$9 as Fieldset, FieldsetVariants, Form, FormVariants, IconButton, IconButtonVariants, Input, InputVariants, Label, LabelVariants, Link, LinkVariants, _default$10 as List, ListVariants, _default$11 as Menu, MenuVariants, _default$12 as Meter, MeterVariants, _default$13 as Navbar, NavbarVariants, _default$14 as Popover, PopoverVariants, _default$15 as Progress, ProgressVariants, _default$16 as Radio, RadioGroup, RadioGroupVariants, RadioVariants, _default$17 as Select, SelectVariants, Separator, SeparatorVariants, _default$18 as Sidebar, SidebarVariants, _default$19 as Slider, SliderVariants, Spinner, SpinnerVariants, _default$20 as Switch, SwitchVariants, _default$21 as Table, TableVariants, _default$22 as Tabs, TabsVariants, ToggleButton, ToggleButtonVariants, accordionVariants, alertDialogVariants, alertVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, checkboxVariants, chipVariants, cn, containerVariants, dialogVariants, drawerVariants, fieldVariants, fieldsetVariants, formVariants, iconButtonVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, popoverVariants, progressVariants, radioGroupVariants, radioVariants, selectVariants, separatorVariants, sidebarVariants, sliderVariants, spinnerVariants, switchVariants, tableVariants, tabsVariants, toggleButtonVariants };
|
|
2887
2929
|
//# sourceMappingURL=index.d.mts.map
|