@fea-ui/react 0.1.0-alpha.4 → 0.1.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +148 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +606 -473
- package/dist/index.d.mts +135 -2
- package/dist/index.mjs +148 -29
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -5
package/dist/index.d.cts
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants63 from "tailwind-variants";
|
|
2
2
|
import { VariantProps, cn } from "tailwind-variants";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime126 from "react/jsx-runtime";
|
|
4
4
|
import { Accordion as Accordion$1, AlertDialog as AlertDialog$1, Avatar as Avatar$1, Button as Button$1, Checkbox as Checkbox$1, CheckboxGroup as CheckboxGroup$1, Dialog as Dialog$1, Field as Field$1, Fieldset as Fieldset$1, Input as Input$1, Menu as Menu$1, Meter as Meter$1, Progress as Progress$1, Separator as Separator$1, Slider as Slider$1, Switch as Switch$1, Tabs as Tabs$1, ToggleProps } from "@base-ui/react";
|
|
5
|
-
import * as
|
|
5
|
+
import * as tailwind_merge299 from "tailwind-merge";
|
|
6
6
|
|
|
7
7
|
//#region src/components/accordion/accordion.variants.d.ts
|
|
8
|
-
declare const accordionVariants:
|
|
8
|
+
declare const accordionVariants: tailwind_variants63.TVReturnType<{
|
|
9
9
|
[key: string]: {
|
|
10
|
-
[key: string]:
|
|
11
|
-
content?:
|
|
12
|
-
header?:
|
|
13
|
-
item?:
|
|
14
|
-
panel?:
|
|
15
|
-
root?:
|
|
16
|
-
trigger?:
|
|
17
|
-
triggerIcon?:
|
|
10
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
11
|
+
content?: tailwind_merge299.ClassNameValue;
|
|
12
|
+
header?: tailwind_merge299.ClassNameValue;
|
|
13
|
+
item?: tailwind_merge299.ClassNameValue;
|
|
14
|
+
panel?: tailwind_merge299.ClassNameValue;
|
|
15
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
16
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
17
|
+
triggerIcon?: tailwind_merge299.ClassNameValue;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
} | {
|
|
21
21
|
[x: string]: {
|
|
22
|
-
[x: string]:
|
|
23
|
-
content?:
|
|
24
|
-
header?:
|
|
25
|
-
item?:
|
|
26
|
-
panel?:
|
|
27
|
-
root?:
|
|
28
|
-
trigger?:
|
|
29
|
-
triggerIcon?:
|
|
22
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
23
|
+
content?: tailwind_merge299.ClassNameValue;
|
|
24
|
+
header?: tailwind_merge299.ClassNameValue;
|
|
25
|
+
item?: tailwind_merge299.ClassNameValue;
|
|
26
|
+
panel?: tailwind_merge299.ClassNameValue;
|
|
27
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
28
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
29
|
+
triggerIcon?: tailwind_merge299.ClassNameValue;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
32
|
} | {}, {
|
|
@@ -39,14 +39,14 @@ declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
|
39
39
|
triggerIcon: string;
|
|
40
40
|
}, undefined, {
|
|
41
41
|
[key: string]: {
|
|
42
|
-
[key: string]:
|
|
43
|
-
content?:
|
|
44
|
-
header?:
|
|
45
|
-
item?:
|
|
46
|
-
panel?:
|
|
47
|
-
root?:
|
|
48
|
-
trigger?:
|
|
49
|
-
triggerIcon?:
|
|
42
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
43
|
+
content?: tailwind_merge299.ClassNameValue;
|
|
44
|
+
header?: tailwind_merge299.ClassNameValue;
|
|
45
|
+
item?: tailwind_merge299.ClassNameValue;
|
|
46
|
+
panel?: tailwind_merge299.ClassNameValue;
|
|
47
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
48
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
49
|
+
triggerIcon?: tailwind_merge299.ClassNameValue;
|
|
50
50
|
};
|
|
51
51
|
};
|
|
52
52
|
} | {}, {
|
|
@@ -57,7 +57,7 @@ declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
|
57
57
|
root: string;
|
|
58
58
|
trigger: string;
|
|
59
59
|
triggerIcon: string;
|
|
60
|
-
},
|
|
60
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
61
61
|
content: string;
|
|
62
62
|
header: string;
|
|
63
63
|
item: string;
|
|
@@ -74,32 +74,32 @@ declare const Accordion: {
|
|
|
74
74
|
({
|
|
75
75
|
className,
|
|
76
76
|
...props
|
|
77
|
-
}: AccordionProps):
|
|
77
|
+
}: AccordionProps): react_jsx_runtime126.JSX.Element;
|
|
78
78
|
Content: ({
|
|
79
79
|
className,
|
|
80
80
|
...props
|
|
81
|
-
}: AccordionContentProps) =>
|
|
81
|
+
}: AccordionContentProps) => react_jsx_runtime126.JSX.Element;
|
|
82
82
|
Header: ({
|
|
83
83
|
className,
|
|
84
84
|
...props
|
|
85
|
-
}: AccordionHeaderProps) =>
|
|
85
|
+
}: AccordionHeaderProps) => react_jsx_runtime126.JSX.Element;
|
|
86
86
|
Item: ({
|
|
87
87
|
className,
|
|
88
88
|
...props
|
|
89
|
-
}: AccordionItemProps) =>
|
|
89
|
+
}: AccordionItemProps) => react_jsx_runtime126.JSX.Element;
|
|
90
90
|
Panel: ({
|
|
91
91
|
className,
|
|
92
92
|
...props
|
|
93
|
-
}: AccordionPanelProps) =>
|
|
93
|
+
}: AccordionPanelProps) => react_jsx_runtime126.JSX.Element;
|
|
94
94
|
Root: /*elided*/any;
|
|
95
95
|
Trigger: ({
|
|
96
96
|
className,
|
|
97
97
|
...props
|
|
98
|
-
}: AccordionTriggerProps) =>
|
|
98
|
+
}: AccordionTriggerProps) => react_jsx_runtime126.JSX.Element;
|
|
99
99
|
TriggerIcon: ({
|
|
100
100
|
className,
|
|
101
101
|
...props
|
|
102
|
-
}: AccordionTriggerIconProps) =>
|
|
102
|
+
}: AccordionTriggerIconProps) => react_jsx_runtime126.JSX.Element;
|
|
103
103
|
};
|
|
104
104
|
interface AccordionItemProps extends Accordion$1.Item.Props {}
|
|
105
105
|
interface AccordionHeaderProps extends Accordion$1.Header.Props {}
|
|
@@ -109,32 +109,32 @@ interface AccordionPanelProps extends Accordion$1.Panel.Props {}
|
|
|
109
109
|
interface AccordionContentProps extends React.ComponentProps<"div"> {}
|
|
110
110
|
//#endregion
|
|
111
111
|
//#region src/components/alert-dialog/alert-dialog.variants.d.ts
|
|
112
|
-
declare const alertDialogVariants:
|
|
112
|
+
declare const alertDialogVariants: tailwind_variants63.TVReturnType<{
|
|
113
113
|
[key: string]: {
|
|
114
|
-
[key: string]:
|
|
115
|
-
root?:
|
|
116
|
-
trigger?:
|
|
117
|
-
title?:
|
|
118
|
-
backdrop?:
|
|
119
|
-
close?:
|
|
120
|
-
description?:
|
|
121
|
-
popup?:
|
|
122
|
-
portal?:
|
|
123
|
-
viewport?:
|
|
114
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
115
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
116
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
117
|
+
title?: tailwind_merge299.ClassNameValue;
|
|
118
|
+
backdrop?: tailwind_merge299.ClassNameValue;
|
|
119
|
+
close?: tailwind_merge299.ClassNameValue;
|
|
120
|
+
description?: tailwind_merge299.ClassNameValue;
|
|
121
|
+
popup?: tailwind_merge299.ClassNameValue;
|
|
122
|
+
portal?: tailwind_merge299.ClassNameValue;
|
|
123
|
+
viewport?: tailwind_merge299.ClassNameValue;
|
|
124
124
|
};
|
|
125
125
|
};
|
|
126
126
|
} | {
|
|
127
127
|
[x: string]: {
|
|
128
|
-
[x: string]:
|
|
129
|
-
root?:
|
|
130
|
-
trigger?:
|
|
131
|
-
title?:
|
|
132
|
-
backdrop?:
|
|
133
|
-
close?:
|
|
134
|
-
description?:
|
|
135
|
-
popup?:
|
|
136
|
-
portal?:
|
|
137
|
-
viewport?:
|
|
128
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
129
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
130
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
131
|
+
title?: tailwind_merge299.ClassNameValue;
|
|
132
|
+
backdrop?: tailwind_merge299.ClassNameValue;
|
|
133
|
+
close?: tailwind_merge299.ClassNameValue;
|
|
134
|
+
description?: tailwind_merge299.ClassNameValue;
|
|
135
|
+
popup?: tailwind_merge299.ClassNameValue;
|
|
136
|
+
portal?: tailwind_merge299.ClassNameValue;
|
|
137
|
+
viewport?: tailwind_merge299.ClassNameValue;
|
|
138
138
|
};
|
|
139
139
|
};
|
|
140
140
|
} | {}, {
|
|
@@ -149,16 +149,16 @@ declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
149
149
|
viewport: string;
|
|
150
150
|
}, undefined, {
|
|
151
151
|
[key: string]: {
|
|
152
|
-
[key: string]:
|
|
153
|
-
root?:
|
|
154
|
-
trigger?:
|
|
155
|
-
title?:
|
|
156
|
-
backdrop?:
|
|
157
|
-
close?:
|
|
158
|
-
description?:
|
|
159
|
-
popup?:
|
|
160
|
-
portal?:
|
|
161
|
-
viewport?:
|
|
152
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
153
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
154
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
155
|
+
title?: tailwind_merge299.ClassNameValue;
|
|
156
|
+
backdrop?: tailwind_merge299.ClassNameValue;
|
|
157
|
+
close?: tailwind_merge299.ClassNameValue;
|
|
158
|
+
description?: tailwind_merge299.ClassNameValue;
|
|
159
|
+
popup?: tailwind_merge299.ClassNameValue;
|
|
160
|
+
portal?: tailwind_merge299.ClassNameValue;
|
|
161
|
+
viewport?: tailwind_merge299.ClassNameValue;
|
|
162
162
|
};
|
|
163
163
|
};
|
|
164
164
|
} | {}, {
|
|
@@ -171,7 +171,7 @@ declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
171
171
|
title: string;
|
|
172
172
|
trigger: string;
|
|
173
173
|
viewport: string;
|
|
174
|
-
},
|
|
174
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
175
175
|
backdrop: string;
|
|
176
176
|
close: string;
|
|
177
177
|
description: string;
|
|
@@ -189,41 +189,41 @@ interface AlertDialogProps extends AlertDialogVariants, AlertDialog$1.Root.Props
|
|
|
189
189
|
declare const AlertDialog: {
|
|
190
190
|
({
|
|
191
191
|
...props
|
|
192
|
-
}: AlertDialogProps):
|
|
192
|
+
}: AlertDialogProps): react_jsx_runtime126.JSX.Element;
|
|
193
193
|
Root: /*elided*/any;
|
|
194
194
|
Trigger: ({
|
|
195
195
|
className,
|
|
196
196
|
...props
|
|
197
|
-
}: AlertDialogTriggerProps) =>
|
|
197
|
+
}: AlertDialogTriggerProps) => react_jsx_runtime126.JSX.Element;
|
|
198
198
|
Portal: ({
|
|
199
199
|
className,
|
|
200
200
|
...props
|
|
201
|
-
}: AlertDialogPortalProps) =>
|
|
201
|
+
}: AlertDialogPortalProps) => react_jsx_runtime126.JSX.Element;
|
|
202
202
|
Backdrop: ({
|
|
203
203
|
className,
|
|
204
204
|
...props
|
|
205
|
-
}: AlertDialogBackdropProps) =>
|
|
205
|
+
}: AlertDialogBackdropProps) => react_jsx_runtime126.JSX.Element;
|
|
206
206
|
Viewport: ({
|
|
207
207
|
className,
|
|
208
208
|
...props
|
|
209
|
-
}: AlertDialogViewportProps) =>
|
|
209
|
+
}: AlertDialogViewportProps) => react_jsx_runtime126.JSX.Element;
|
|
210
210
|
Popup: ({
|
|
211
211
|
className,
|
|
212
212
|
...props
|
|
213
|
-
}: AlertDialogPopupProps) =>
|
|
213
|
+
}: AlertDialogPopupProps) => react_jsx_runtime126.JSX.Element;
|
|
214
214
|
Title: ({
|
|
215
215
|
className,
|
|
216
216
|
...props
|
|
217
|
-
}: AlertDialogTitleProps) =>
|
|
217
|
+
}: AlertDialogTitleProps) => react_jsx_runtime126.JSX.Element;
|
|
218
218
|
Description: ({
|
|
219
219
|
className,
|
|
220
220
|
...props
|
|
221
|
-
}: AlertDialogDescriptionProps) =>
|
|
221
|
+
}: AlertDialogDescriptionProps) => react_jsx_runtime126.JSX.Element;
|
|
222
222
|
Close: ({
|
|
223
223
|
className,
|
|
224
224
|
children,
|
|
225
225
|
...props
|
|
226
|
-
}: AlertDialogCloseProps) =>
|
|
226
|
+
}: AlertDialogCloseProps) => react_jsx_runtime126.JSX.Element;
|
|
227
227
|
};
|
|
228
228
|
interface AlertDialogTriggerProps extends AlertDialog$1.Trigger.Props {}
|
|
229
229
|
interface AlertDialogPortalProps extends AlertDialog$1.Portal.Props {}
|
|
@@ -235,7 +235,7 @@ interface AlertDialogDescriptionProps extends AlertDialog$1.Description.Props {}
|
|
|
235
235
|
interface AlertDialogCloseProps extends AlertDialog$1.Close.Props {}
|
|
236
236
|
//#endregion
|
|
237
237
|
//#region src/components/avatar/avatar.variants.d.ts
|
|
238
|
-
declare const avatarVariants:
|
|
238
|
+
declare const avatarVariants: tailwind_variants63.TVReturnType<{
|
|
239
239
|
size: {
|
|
240
240
|
lg: {
|
|
241
241
|
root: string;
|
|
@@ -267,7 +267,7 @@ declare const avatarVariants: tailwind_variants0.TVReturnType<{
|
|
|
267
267
|
fallback: string;
|
|
268
268
|
image: string;
|
|
269
269
|
root: string;
|
|
270
|
-
},
|
|
270
|
+
}, tailwind_variants63.TVReturnType<{
|
|
271
271
|
size: {
|
|
272
272
|
lg: {
|
|
273
273
|
root: string;
|
|
@@ -293,22 +293,22 @@ declare const Avatar: {
|
|
|
293
293
|
className,
|
|
294
294
|
size,
|
|
295
295
|
...props
|
|
296
|
-
}: AvatarProps):
|
|
296
|
+
}: AvatarProps): react_jsx_runtime126.JSX.Element;
|
|
297
297
|
Fallback: ({
|
|
298
298
|
className,
|
|
299
299
|
...props
|
|
300
|
-
}: AvatarFallbackProps) =>
|
|
300
|
+
}: AvatarFallbackProps) => react_jsx_runtime126.JSX.Element;
|
|
301
301
|
Image: ({
|
|
302
302
|
className,
|
|
303
303
|
...props
|
|
304
|
-
}: AvatarImageProps) =>
|
|
304
|
+
}: AvatarImageProps) => react_jsx_runtime126.JSX.Element;
|
|
305
305
|
Root: /*elided*/any;
|
|
306
306
|
};
|
|
307
307
|
interface AvatarImageProps extends Avatar$1.Image.Props {}
|
|
308
308
|
interface AvatarFallbackProps extends Avatar$1.Fallback.Props {}
|
|
309
309
|
//#endregion
|
|
310
310
|
//#region src/components/button/button.variants.d.ts
|
|
311
|
-
declare const buttonVariants:
|
|
311
|
+
declare const buttonVariants: tailwind_variants63.TVReturnType<{
|
|
312
312
|
isIconOnly: {
|
|
313
313
|
true: string;
|
|
314
314
|
};
|
|
@@ -340,7 +340,7 @@ declare const buttonVariants: tailwind_variants0.TVReturnType<{
|
|
|
340
340
|
primary: string;
|
|
341
341
|
secondary: string;
|
|
342
342
|
};
|
|
343
|
-
}, undefined,
|
|
343
|
+
}, undefined, tailwind_variants63.TVReturnType<{
|
|
344
344
|
isIconOnly: {
|
|
345
345
|
true: string;
|
|
346
346
|
};
|
|
@@ -367,10 +367,10 @@ declare const Button: ({
|
|
|
367
367
|
size,
|
|
368
368
|
isIconOnly,
|
|
369
369
|
...props
|
|
370
|
-
}: ButtonProps) =>
|
|
370
|
+
}: ButtonProps) => react_jsx_runtime126.JSX.Element;
|
|
371
371
|
//#endregion
|
|
372
372
|
//#region src/components/button-group/button-group.variants.d.ts
|
|
373
|
-
declare const buttonGroupVariants:
|
|
373
|
+
declare const buttonGroupVariants: tailwind_variants63.TVReturnType<{} | {} | {}, undefined, "button-group", {} | {}, undefined, tailwind_variants63.TVReturnType<unknown, undefined, "button-group", unknown, unknown, undefined>>;
|
|
374
374
|
type ButtonGroupVariants = VariantProps<typeof buttonGroupVariants>;
|
|
375
375
|
//#endregion
|
|
376
376
|
//#region src/components/button-group/button-group.d.ts
|
|
@@ -378,10 +378,10 @@ interface ButtonGroupProps extends ButtonGroupVariants, React.ComponentProps<"di
|
|
|
378
378
|
declare const ButtonGroup: ({
|
|
379
379
|
className,
|
|
380
380
|
...props
|
|
381
|
-
}: ButtonGroupProps) =>
|
|
381
|
+
}: ButtonGroupProps) => react_jsx_runtime126.JSX.Element;
|
|
382
382
|
//#endregion
|
|
383
383
|
//#region src/components/card/card.variants.d.ts
|
|
384
|
-
declare const cardVariants:
|
|
384
|
+
declare const cardVariants: tailwind_variants63.TVReturnType<{
|
|
385
385
|
variant: {
|
|
386
386
|
default: {
|
|
387
387
|
root: string;
|
|
@@ -413,7 +413,7 @@ declare const cardVariants: tailwind_variants0.TVReturnType<{
|
|
|
413
413
|
header: string;
|
|
414
414
|
root: string;
|
|
415
415
|
title: string;
|
|
416
|
-
},
|
|
416
|
+
}, tailwind_variants63.TVReturnType<{
|
|
417
417
|
variant: {
|
|
418
418
|
default: {
|
|
419
419
|
root: string;
|
|
@@ -439,29 +439,29 @@ declare const Card: {
|
|
|
439
439
|
className,
|
|
440
440
|
variant,
|
|
441
441
|
...props
|
|
442
|
-
}: CardProps):
|
|
442
|
+
}: CardProps): react_jsx_runtime126.JSX.Element;
|
|
443
443
|
/** Exports */
|
|
444
444
|
Body: ({
|
|
445
445
|
className,
|
|
446
446
|
...props
|
|
447
|
-
}: CardBodyProps) =>
|
|
447
|
+
}: CardBodyProps) => react_jsx_runtime126.JSX.Element;
|
|
448
448
|
Description: ({
|
|
449
449
|
className,
|
|
450
450
|
...props
|
|
451
|
-
}: CardDescriptionProps) =>
|
|
451
|
+
}: CardDescriptionProps) => react_jsx_runtime126.JSX.Element;
|
|
452
452
|
Footer: ({
|
|
453
453
|
className,
|
|
454
454
|
...props
|
|
455
|
-
}: CardFooterProps) =>
|
|
455
|
+
}: CardFooterProps) => react_jsx_runtime126.JSX.Element;
|
|
456
456
|
Header: ({
|
|
457
457
|
className,
|
|
458
458
|
...props
|
|
459
|
-
}: CardHeaderProps) =>
|
|
459
|
+
}: CardHeaderProps) => react_jsx_runtime126.JSX.Element;
|
|
460
460
|
Root: /*elided*/any;
|
|
461
461
|
Title: ({
|
|
462
462
|
className,
|
|
463
463
|
...props
|
|
464
|
-
}: CardTitle) =>
|
|
464
|
+
}: CardTitle) => react_jsx_runtime126.JSX.Element;
|
|
465
465
|
};
|
|
466
466
|
interface CardHeaderProps extends React.ComponentProps<"div"> {}
|
|
467
467
|
interface CardBodyProps extends React.ComponentProps<"div"> {}
|
|
@@ -470,22 +470,22 @@ interface CardTitle extends React.ComponentProps<"h2"> {}
|
|
|
470
470
|
interface CardDescriptionProps extends React.ComponentProps<"p"> {}
|
|
471
471
|
//#endregion
|
|
472
472
|
//#region src/components/checkbox/checkbox.variants.d.ts
|
|
473
|
-
declare const checkboxVariants:
|
|
473
|
+
declare const checkboxVariants: tailwind_variants63.TVReturnType<{
|
|
474
474
|
[key: string]: {
|
|
475
|
-
[key: string]:
|
|
476
|
-
root?:
|
|
477
|
-
label?:
|
|
478
|
-
checkboxIcon?:
|
|
479
|
-
indicator?:
|
|
475
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
476
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
477
|
+
label?: tailwind_merge299.ClassNameValue;
|
|
478
|
+
checkboxIcon?: tailwind_merge299.ClassNameValue;
|
|
479
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
480
480
|
};
|
|
481
481
|
};
|
|
482
482
|
} | {
|
|
483
483
|
[x: string]: {
|
|
484
|
-
[x: string]:
|
|
485
|
-
root?:
|
|
486
|
-
label?:
|
|
487
|
-
checkboxIcon?:
|
|
488
|
-
indicator?:
|
|
484
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
485
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
486
|
+
label?: tailwind_merge299.ClassNameValue;
|
|
487
|
+
checkboxIcon?: tailwind_merge299.ClassNameValue;
|
|
488
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
489
489
|
};
|
|
490
490
|
};
|
|
491
491
|
} | {}, {
|
|
@@ -495,11 +495,11 @@ declare const checkboxVariants: tailwind_variants0.TVReturnType<{
|
|
|
495
495
|
root: string;
|
|
496
496
|
}, undefined, {
|
|
497
497
|
[key: string]: {
|
|
498
|
-
[key: string]:
|
|
499
|
-
root?:
|
|
500
|
-
label?:
|
|
501
|
-
checkboxIcon?:
|
|
502
|
-
indicator?:
|
|
498
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
499
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
500
|
+
label?: tailwind_merge299.ClassNameValue;
|
|
501
|
+
checkboxIcon?: tailwind_merge299.ClassNameValue;
|
|
502
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
503
503
|
};
|
|
504
504
|
};
|
|
505
505
|
} | {}, {
|
|
@@ -507,7 +507,7 @@ declare const checkboxVariants: tailwind_variants0.TVReturnType<{
|
|
|
507
507
|
indicator: string;
|
|
508
508
|
label: string;
|
|
509
509
|
root: string;
|
|
510
|
-
},
|
|
510
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
511
511
|
checkboxIcon: string;
|
|
512
512
|
indicator: string;
|
|
513
513
|
label: string;
|
|
@@ -521,17 +521,17 @@ declare const Checkbox: {
|
|
|
521
521
|
({
|
|
522
522
|
className,
|
|
523
523
|
...props
|
|
524
|
-
}: CheckboxProps):
|
|
524
|
+
}: CheckboxProps): react_jsx_runtime126.JSX.Element;
|
|
525
525
|
Indicator: ({
|
|
526
526
|
className,
|
|
527
527
|
...props
|
|
528
|
-
}: CheckboxIndicatorProps) =>
|
|
528
|
+
}: CheckboxIndicatorProps) => react_jsx_runtime126.JSX.Element;
|
|
529
529
|
Root: /*elided*/any;
|
|
530
530
|
};
|
|
531
531
|
interface CheckboxIndicatorProps extends Checkbox$1.Indicator.Props {}
|
|
532
532
|
//#endregion
|
|
533
533
|
//#region src/components/checkbox-group/checkbox-group.variants.d.ts
|
|
534
|
-
declare const checkboxGroupVariants:
|
|
534
|
+
declare const checkboxGroupVariants: tailwind_variants63.TVReturnType<{} | {} | {}, undefined, "checkbox-group", {} | {}, undefined, tailwind_variants63.TVReturnType<unknown, undefined, "checkbox-group", unknown, unknown, undefined>>;
|
|
535
535
|
type CheckboxGroupVariants = VariantProps<typeof checkboxGroupVariants>;
|
|
536
536
|
//#endregion
|
|
537
537
|
//#region src/components/checkbox-group/checkbox-group.d.ts
|
|
@@ -539,10 +539,10 @@ interface CheckboxGroupProps extends CheckboxGroupVariants, CheckboxGroup$1.Prop
|
|
|
539
539
|
declare const CheckboxGroup: ({
|
|
540
540
|
className,
|
|
541
541
|
...props
|
|
542
|
-
}: CheckboxGroupProps) =>
|
|
542
|
+
}: CheckboxGroupProps) => react_jsx_runtime126.JSX.Element;
|
|
543
543
|
//#endregion
|
|
544
544
|
//#region src/components/chip/chip.variants.d.ts
|
|
545
|
-
declare const chipVariants:
|
|
545
|
+
declare const chipVariants: tailwind_variants63.TVReturnType<{
|
|
546
546
|
size: {
|
|
547
547
|
lg: string;
|
|
548
548
|
md: string;
|
|
@@ -568,7 +568,7 @@ declare const chipVariants: tailwind_variants0.TVReturnType<{
|
|
|
568
568
|
secondary: string;
|
|
569
569
|
success: string;
|
|
570
570
|
};
|
|
571
|
-
}, undefined,
|
|
571
|
+
}, undefined, tailwind_variants63.TVReturnType<{
|
|
572
572
|
size: {
|
|
573
573
|
lg: string;
|
|
574
574
|
md: string;
|
|
@@ -591,10 +591,10 @@ declare const Chip: ({
|
|
|
591
591
|
variant,
|
|
592
592
|
size,
|
|
593
593
|
...props
|
|
594
|
-
}: ChipProps) =>
|
|
594
|
+
}: ChipProps) => react_jsx_runtime126.JSX.Element;
|
|
595
595
|
//#endregion
|
|
596
596
|
//#region src/components/container/container.variants.d.ts
|
|
597
|
-
declare const containerVariants:
|
|
597
|
+
declare const containerVariants: tailwind_variants63.TVReturnType<{} | {} | {}, undefined, "container", {} | {}, undefined, tailwind_variants63.TVReturnType<unknown, undefined, "container", unknown, unknown, undefined>>;
|
|
598
598
|
type ContainerVariants = VariantProps<typeof containerVariants>;
|
|
599
599
|
//#endregion
|
|
600
600
|
//#region src/components/container/container.d.ts
|
|
@@ -602,35 +602,35 @@ interface ContainerProps extends ContainerVariants, React.ComponentProps<"div">
|
|
|
602
602
|
declare const Container: ({
|
|
603
603
|
className,
|
|
604
604
|
...props
|
|
605
|
-
}: ContainerProps) =>
|
|
605
|
+
}: ContainerProps) => react_jsx_runtime126.JSX.Element;
|
|
606
606
|
//#endregion
|
|
607
607
|
//#region src/components/dialog/dialog.variants.d.ts
|
|
608
|
-
declare const dialogVariants:
|
|
608
|
+
declare const dialogVariants: tailwind_variants63.TVReturnType<{
|
|
609
609
|
[key: string]: {
|
|
610
|
-
[key: string]:
|
|
611
|
-
root?:
|
|
612
|
-
trigger?:
|
|
613
|
-
title?:
|
|
614
|
-
backdrop?:
|
|
615
|
-
close?:
|
|
616
|
-
description?:
|
|
617
|
-
popup?:
|
|
618
|
-
portal?:
|
|
619
|
-
viewport?:
|
|
610
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
611
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
612
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
613
|
+
title?: tailwind_merge299.ClassNameValue;
|
|
614
|
+
backdrop?: tailwind_merge299.ClassNameValue;
|
|
615
|
+
close?: tailwind_merge299.ClassNameValue;
|
|
616
|
+
description?: tailwind_merge299.ClassNameValue;
|
|
617
|
+
popup?: tailwind_merge299.ClassNameValue;
|
|
618
|
+
portal?: tailwind_merge299.ClassNameValue;
|
|
619
|
+
viewport?: tailwind_merge299.ClassNameValue;
|
|
620
620
|
};
|
|
621
621
|
};
|
|
622
622
|
} | {
|
|
623
623
|
[x: string]: {
|
|
624
|
-
[x: string]:
|
|
625
|
-
root?:
|
|
626
|
-
trigger?:
|
|
627
|
-
title?:
|
|
628
|
-
backdrop?:
|
|
629
|
-
close?:
|
|
630
|
-
description?:
|
|
631
|
-
popup?:
|
|
632
|
-
portal?:
|
|
633
|
-
viewport?:
|
|
624
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
625
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
626
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
627
|
+
title?: tailwind_merge299.ClassNameValue;
|
|
628
|
+
backdrop?: tailwind_merge299.ClassNameValue;
|
|
629
|
+
close?: tailwind_merge299.ClassNameValue;
|
|
630
|
+
description?: tailwind_merge299.ClassNameValue;
|
|
631
|
+
popup?: tailwind_merge299.ClassNameValue;
|
|
632
|
+
portal?: tailwind_merge299.ClassNameValue;
|
|
633
|
+
viewport?: tailwind_merge299.ClassNameValue;
|
|
634
634
|
};
|
|
635
635
|
};
|
|
636
636
|
} | {}, {
|
|
@@ -645,16 +645,16 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
645
645
|
viewport: string;
|
|
646
646
|
}, undefined, {
|
|
647
647
|
[key: string]: {
|
|
648
|
-
[key: string]:
|
|
649
|
-
root?:
|
|
650
|
-
trigger?:
|
|
651
|
-
title?:
|
|
652
|
-
backdrop?:
|
|
653
|
-
close?:
|
|
654
|
-
description?:
|
|
655
|
-
popup?:
|
|
656
|
-
portal?:
|
|
657
|
-
viewport?:
|
|
648
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
649
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
650
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
651
|
+
title?: tailwind_merge299.ClassNameValue;
|
|
652
|
+
backdrop?: tailwind_merge299.ClassNameValue;
|
|
653
|
+
close?: tailwind_merge299.ClassNameValue;
|
|
654
|
+
description?: tailwind_merge299.ClassNameValue;
|
|
655
|
+
popup?: tailwind_merge299.ClassNameValue;
|
|
656
|
+
portal?: tailwind_merge299.ClassNameValue;
|
|
657
|
+
viewport?: tailwind_merge299.ClassNameValue;
|
|
658
658
|
};
|
|
659
659
|
};
|
|
660
660
|
} | {}, {
|
|
@@ -667,7 +667,7 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
667
667
|
title: string;
|
|
668
668
|
trigger: string;
|
|
669
669
|
viewport: string;
|
|
670
|
-
},
|
|
670
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
671
671
|
backdrop: string;
|
|
672
672
|
close: string;
|
|
673
673
|
description: string;
|
|
@@ -685,40 +685,40 @@ interface DialogProps extends DialogVariants, Dialog$1.Root.Props {}
|
|
|
685
685
|
declare const Dialog: {
|
|
686
686
|
({
|
|
687
687
|
...props
|
|
688
|
-
}: DialogProps):
|
|
688
|
+
}: DialogProps): react_jsx_runtime126.JSX.Element;
|
|
689
689
|
Backdrop: ({
|
|
690
690
|
className,
|
|
691
691
|
...props
|
|
692
|
-
}: DialogBackdropProps) =>
|
|
692
|
+
}: DialogBackdropProps) => react_jsx_runtime126.JSX.Element;
|
|
693
693
|
Close: ({
|
|
694
694
|
className,
|
|
695
695
|
...props
|
|
696
|
-
}: DialogCloseProps) =>
|
|
696
|
+
}: DialogCloseProps) => react_jsx_runtime126.JSX.Element;
|
|
697
697
|
Description: ({
|
|
698
698
|
className,
|
|
699
699
|
...props
|
|
700
|
-
}: DialogDescriptionProps) =>
|
|
700
|
+
}: DialogDescriptionProps) => react_jsx_runtime126.JSX.Element;
|
|
701
701
|
Popup: ({
|
|
702
702
|
className,
|
|
703
703
|
...props
|
|
704
|
-
}: DialogPopupProps) =>
|
|
704
|
+
}: DialogPopupProps) => react_jsx_runtime126.JSX.Element;
|
|
705
705
|
Portal: ({
|
|
706
706
|
className,
|
|
707
707
|
...props
|
|
708
|
-
}: DialogPortalProps) =>
|
|
708
|
+
}: DialogPortalProps) => react_jsx_runtime126.JSX.Element;
|
|
709
709
|
Root: /*elided*/any;
|
|
710
710
|
Title: ({
|
|
711
711
|
className,
|
|
712
712
|
...props
|
|
713
|
-
}: DialogTitleProps) =>
|
|
713
|
+
}: DialogTitleProps) => react_jsx_runtime126.JSX.Element;
|
|
714
714
|
Trigger: ({
|
|
715
715
|
className,
|
|
716
716
|
...props
|
|
717
|
-
}: DialogTriggerProps) =>
|
|
717
|
+
}: DialogTriggerProps) => react_jsx_runtime126.JSX.Element;
|
|
718
718
|
Viewport: ({
|
|
719
719
|
className,
|
|
720
720
|
...props
|
|
721
|
-
}: DialogViewportProps) =>
|
|
721
|
+
}: DialogViewportProps) => react_jsx_runtime126.JSX.Element;
|
|
722
722
|
};
|
|
723
723
|
interface DialogTriggerProps extends Dialog$1.Trigger.Props {}
|
|
724
724
|
interface DialogPortalProps extends Dialog$1.Portal.Props {}
|
|
@@ -729,8 +729,138 @@ interface DialogTitleProps extends Dialog$1.Title.Props {}
|
|
|
729
729
|
interface DialogDescriptionProps extends Dialog$1.Description.Props {}
|
|
730
730
|
interface DialogCloseProps extends Dialog$1.Close.Props {}
|
|
731
731
|
//#endregion
|
|
732
|
+
//#region src/components/drawer/drawer.variants.d.ts
|
|
733
|
+
declare const drawerVariants: tailwind_variants63.TVReturnType<{
|
|
734
|
+
position: {
|
|
735
|
+
bottom: {
|
|
736
|
+
popup: string;
|
|
737
|
+
};
|
|
738
|
+
left: {
|
|
739
|
+
popup: string;
|
|
740
|
+
};
|
|
741
|
+
right: {
|
|
742
|
+
popup: string;
|
|
743
|
+
};
|
|
744
|
+
top: {
|
|
745
|
+
popup: string;
|
|
746
|
+
};
|
|
747
|
+
};
|
|
748
|
+
}, {
|
|
749
|
+
backdrop: string;
|
|
750
|
+
close: string;
|
|
751
|
+
description: string;
|
|
752
|
+
popup: string;
|
|
753
|
+
portal: string;
|
|
754
|
+
root: string;
|
|
755
|
+
title: string;
|
|
756
|
+
trigger: string;
|
|
757
|
+
viewport: string;
|
|
758
|
+
}, undefined, {
|
|
759
|
+
position: {
|
|
760
|
+
bottom: {
|
|
761
|
+
popup: string;
|
|
762
|
+
};
|
|
763
|
+
left: {
|
|
764
|
+
popup: string;
|
|
765
|
+
};
|
|
766
|
+
right: {
|
|
767
|
+
popup: string;
|
|
768
|
+
};
|
|
769
|
+
top: {
|
|
770
|
+
popup: string;
|
|
771
|
+
};
|
|
772
|
+
};
|
|
773
|
+
}, {
|
|
774
|
+
backdrop: string;
|
|
775
|
+
close: string;
|
|
776
|
+
description: string;
|
|
777
|
+
popup: string;
|
|
778
|
+
portal: string;
|
|
779
|
+
root: string;
|
|
780
|
+
title: string;
|
|
781
|
+
trigger: string;
|
|
782
|
+
viewport: string;
|
|
783
|
+
}, tailwind_variants63.TVReturnType<{
|
|
784
|
+
position: {
|
|
785
|
+
bottom: {
|
|
786
|
+
popup: string;
|
|
787
|
+
};
|
|
788
|
+
left: {
|
|
789
|
+
popup: string;
|
|
790
|
+
};
|
|
791
|
+
right: {
|
|
792
|
+
popup: string;
|
|
793
|
+
};
|
|
794
|
+
top: {
|
|
795
|
+
popup: string;
|
|
796
|
+
};
|
|
797
|
+
};
|
|
798
|
+
}, {
|
|
799
|
+
backdrop: string;
|
|
800
|
+
close: string;
|
|
801
|
+
description: string;
|
|
802
|
+
popup: string;
|
|
803
|
+
portal: string;
|
|
804
|
+
root: string;
|
|
805
|
+
title: string;
|
|
806
|
+
trigger: string;
|
|
807
|
+
viewport: string;
|
|
808
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
809
|
+
type DrawerVariants = VariantProps<typeof drawerVariants>;
|
|
810
|
+
//#endregion
|
|
811
|
+
//#region src/components/drawer/drawer.d.ts
|
|
812
|
+
interface DrawerProps extends DrawerVariants, Dialog$1.Root.Props {}
|
|
813
|
+
declare const Drawer: {
|
|
814
|
+
({
|
|
815
|
+
position,
|
|
816
|
+
...props
|
|
817
|
+
}: DrawerProps): react_jsx_runtime126.JSX.Element;
|
|
818
|
+
Root: /*elided*/any;
|
|
819
|
+
Trigger: ({
|
|
820
|
+
className,
|
|
821
|
+
...props
|
|
822
|
+
}: DrawerTriggerProps) => react_jsx_runtime126.JSX.Element;
|
|
823
|
+
Portal: ({
|
|
824
|
+
className,
|
|
825
|
+
...props
|
|
826
|
+
}: DrawerPortalProps) => react_jsx_runtime126.JSX.Element;
|
|
827
|
+
Backdrop: ({
|
|
828
|
+
className,
|
|
829
|
+
...props
|
|
830
|
+
}: DrawerBackdropProps) => react_jsx_runtime126.JSX.Element;
|
|
831
|
+
Viewport: ({
|
|
832
|
+
className,
|
|
833
|
+
...props
|
|
834
|
+
}: DrawerViewportProps) => react_jsx_runtime126.JSX.Element;
|
|
835
|
+
Popup: ({
|
|
836
|
+
className,
|
|
837
|
+
...props
|
|
838
|
+
}: DrawerPopupProps) => react_jsx_runtime126.JSX.Element;
|
|
839
|
+
Title: ({
|
|
840
|
+
className,
|
|
841
|
+
...props
|
|
842
|
+
}: DrawerTitleProps) => react_jsx_runtime126.JSX.Element;
|
|
843
|
+
Description: ({
|
|
844
|
+
className,
|
|
845
|
+
...props
|
|
846
|
+
}: DrawerDescriptionProps) => react_jsx_runtime126.JSX.Element;
|
|
847
|
+
Close: ({
|
|
848
|
+
className,
|
|
849
|
+
children,
|
|
850
|
+
...props
|
|
851
|
+
}: DrawerCloseProps) => react_jsx_runtime126.JSX.Element;
|
|
852
|
+
};
|
|
853
|
+
interface DrawerTriggerProps extends Dialog$1.Trigger.Props {}
|
|
854
|
+
interface DrawerPortalProps extends Dialog$1.Portal.Props {}
|
|
855
|
+
interface DrawerBackdropProps extends Dialog$1.Backdrop.Props {}
|
|
856
|
+
interface DrawerViewportProps extends Dialog$1.Viewport.Props {}
|
|
857
|
+
interface DrawerPopupProps extends Dialog$1.Popup.Props {}
|
|
858
|
+
interface DrawerTitleProps extends Dialog$1.Title.Props {}
|
|
859
|
+
interface DrawerDescriptionProps extends Dialog$1.Description.Props {}
|
|
860
|
+
interface DrawerCloseProps extends Dialog$1.Close.Props {}
|
|
861
|
+
//#endregion
|
|
732
862
|
//#region src/components/field/field.variants.d.ts
|
|
733
|
-
declare const fieldVariants:
|
|
863
|
+
declare const fieldVariants: tailwind_variants63.TVReturnType<{
|
|
734
864
|
size: {
|
|
735
865
|
lg: {
|
|
736
866
|
control: string;
|
|
@@ -766,7 +896,7 @@ declare const fieldVariants: tailwind_variants0.TVReturnType<{
|
|
|
766
896
|
error: string;
|
|
767
897
|
label: string;
|
|
768
898
|
root: string;
|
|
769
|
-
},
|
|
899
|
+
}, tailwind_variants63.TVReturnType<{
|
|
770
900
|
size: {
|
|
771
901
|
lg: {
|
|
772
902
|
control: string;
|
|
@@ -794,23 +924,23 @@ declare const Field: {
|
|
|
794
924
|
className,
|
|
795
925
|
size,
|
|
796
926
|
...props
|
|
797
|
-
}: FieldProps):
|
|
927
|
+
}: FieldProps): react_jsx_runtime126.JSX.Element;
|
|
798
928
|
Control: ({
|
|
799
929
|
className,
|
|
800
930
|
...props
|
|
801
|
-
}: FieldControlProps) =>
|
|
931
|
+
}: FieldControlProps) => react_jsx_runtime126.JSX.Element;
|
|
802
932
|
Description: ({
|
|
803
933
|
className,
|
|
804
934
|
...props
|
|
805
|
-
}: FieldDescriptionProps) =>
|
|
935
|
+
}: FieldDescriptionProps) => react_jsx_runtime126.JSX.Element;
|
|
806
936
|
Error: ({
|
|
807
937
|
className,
|
|
808
938
|
...props
|
|
809
|
-
}: FieldErrorProps) =>
|
|
939
|
+
}: FieldErrorProps) => react_jsx_runtime126.JSX.Element;
|
|
810
940
|
Label: ({
|
|
811
941
|
className,
|
|
812
942
|
...props
|
|
813
|
-
}: FieldLabelProps) =>
|
|
943
|
+
}: FieldLabelProps) => react_jsx_runtime126.JSX.Element;
|
|
814
944
|
Root: /*elided*/any;
|
|
815
945
|
};
|
|
816
946
|
interface FieldLabelProps extends React.ComponentProps<typeof Field$1.Label> {}
|
|
@@ -819,18 +949,18 @@ interface FieldControlProps extends React.ComponentProps<typeof Field$1.Control>
|
|
|
819
949
|
interface FieldErrorProps extends React.ComponentProps<typeof Field$1.Error> {}
|
|
820
950
|
//#endregion
|
|
821
951
|
//#region src/components/fieldset/fieldset.variants.d.ts
|
|
822
|
-
declare const fieldsetVariants:
|
|
952
|
+
declare const fieldsetVariants: tailwind_variants63.TVReturnType<{
|
|
823
953
|
[key: string]: {
|
|
824
|
-
[key: string]:
|
|
825
|
-
root?:
|
|
826
|
-
legend?:
|
|
954
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
955
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
956
|
+
legend?: tailwind_merge299.ClassNameValue;
|
|
827
957
|
};
|
|
828
958
|
};
|
|
829
959
|
} | {
|
|
830
960
|
[x: string]: {
|
|
831
|
-
[x: string]:
|
|
832
|
-
root?:
|
|
833
|
-
legend?:
|
|
961
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
962
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
963
|
+
legend?: tailwind_merge299.ClassNameValue;
|
|
834
964
|
};
|
|
835
965
|
};
|
|
836
966
|
} | {}, {
|
|
@@ -838,15 +968,15 @@ declare const fieldsetVariants: tailwind_variants0.TVReturnType<{
|
|
|
838
968
|
root: string;
|
|
839
969
|
}, undefined, {
|
|
840
970
|
[key: string]: {
|
|
841
|
-
[key: string]:
|
|
842
|
-
root?:
|
|
843
|
-
legend?:
|
|
971
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
972
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
973
|
+
legend?: tailwind_merge299.ClassNameValue;
|
|
844
974
|
};
|
|
845
975
|
};
|
|
846
976
|
} | {}, {
|
|
847
977
|
legend: string;
|
|
848
978
|
root: string;
|
|
849
|
-
},
|
|
979
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
850
980
|
legend: string;
|
|
851
981
|
root: string;
|
|
852
982
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -858,17 +988,17 @@ declare const Fieldset: {
|
|
|
858
988
|
({
|
|
859
989
|
className,
|
|
860
990
|
...props
|
|
861
|
-
}: FieldsetProps):
|
|
991
|
+
}: FieldsetProps): react_jsx_runtime126.JSX.Element;
|
|
862
992
|
Root: /*elided*/any;
|
|
863
993
|
Legend: ({
|
|
864
994
|
className,
|
|
865
995
|
...props
|
|
866
|
-
}: FieldsetLegendProps) =>
|
|
996
|
+
}: FieldsetLegendProps) => react_jsx_runtime126.JSX.Element;
|
|
867
997
|
};
|
|
868
998
|
interface FieldsetLegendProps extends Fieldset$1.Legend.Props {}
|
|
869
999
|
//#endregion
|
|
870
1000
|
//#region src/components/form/form.variants.d.ts
|
|
871
|
-
declare const formVariants:
|
|
1001
|
+
declare const formVariants: tailwind_variants63.TVReturnType<{} | {} | {}, undefined, "form", {} | {}, undefined, tailwind_variants63.TVReturnType<unknown, undefined, "form", unknown, unknown, undefined>>;
|
|
872
1002
|
type FormVariants = VariantProps<typeof formVariants>;
|
|
873
1003
|
//#endregion
|
|
874
1004
|
//#region src/components/form/form.d.ts
|
|
@@ -876,10 +1006,10 @@ interface FormProps extends FormVariants, React.ComponentProps<"form"> {}
|
|
|
876
1006
|
declare const Form: ({
|
|
877
1007
|
className,
|
|
878
1008
|
...props
|
|
879
|
-
}: FormProps) =>
|
|
1009
|
+
}: FormProps) => react_jsx_runtime126.JSX.Element;
|
|
880
1010
|
//#endregion
|
|
881
1011
|
//#region src/components/input/input.variants.d.ts
|
|
882
|
-
declare const inputVariants:
|
|
1012
|
+
declare const inputVariants: tailwind_variants63.TVReturnType<{
|
|
883
1013
|
inputSize: {
|
|
884
1014
|
lg: string;
|
|
885
1015
|
md: string;
|
|
@@ -891,7 +1021,7 @@ declare const inputVariants: tailwind_variants0.TVReturnType<{
|
|
|
891
1021
|
md: string;
|
|
892
1022
|
sm: string;
|
|
893
1023
|
};
|
|
894
|
-
}, undefined,
|
|
1024
|
+
}, undefined, tailwind_variants63.TVReturnType<{
|
|
895
1025
|
inputSize: {
|
|
896
1026
|
lg: string;
|
|
897
1027
|
md: string;
|
|
@@ -906,10 +1036,10 @@ declare const Input: ({
|
|
|
906
1036
|
className,
|
|
907
1037
|
inputSize,
|
|
908
1038
|
...props
|
|
909
|
-
}: InputProps) =>
|
|
1039
|
+
}: InputProps) => react_jsx_runtime126.JSX.Element;
|
|
910
1040
|
//#endregion
|
|
911
1041
|
//#region src/components/label/label.variants.d.ts
|
|
912
|
-
declare const labelVariants:
|
|
1042
|
+
declare const labelVariants: tailwind_variants63.TVReturnType<{} | {} | {}, undefined, "label", {} | {}, undefined, tailwind_variants63.TVReturnType<unknown, undefined, "label", unknown, unknown, undefined>>;
|
|
913
1043
|
type LabelVariants = VariantProps<typeof labelVariants>;
|
|
914
1044
|
//#endregion
|
|
915
1045
|
//#region src/components/label/label.d.ts
|
|
@@ -917,10 +1047,10 @@ interface LabelProps extends LabelVariants, React.ComponentProps<"label"> {}
|
|
|
917
1047
|
declare const Label: ({
|
|
918
1048
|
className,
|
|
919
1049
|
...props
|
|
920
|
-
}: LabelProps) =>
|
|
1050
|
+
}: LabelProps) => react_jsx_runtime126.JSX.Element;
|
|
921
1051
|
//#endregion
|
|
922
1052
|
//#region src/components/link/link.variants.d.ts
|
|
923
|
-
declare const linkVariants:
|
|
1053
|
+
declare const linkVariants: tailwind_variants63.TVReturnType<{
|
|
924
1054
|
variant: {
|
|
925
1055
|
"no-underline": string;
|
|
926
1056
|
underline: string;
|
|
@@ -930,7 +1060,7 @@ declare const linkVariants: tailwind_variants0.TVReturnType<{
|
|
|
930
1060
|
"no-underline": string;
|
|
931
1061
|
underline: string;
|
|
932
1062
|
};
|
|
933
|
-
}, undefined,
|
|
1063
|
+
}, undefined, tailwind_variants63.TVReturnType<{
|
|
934
1064
|
variant: {
|
|
935
1065
|
"no-underline": string;
|
|
936
1066
|
underline: string;
|
|
@@ -944,21 +1074,21 @@ declare const Link: ({
|
|
|
944
1074
|
className,
|
|
945
1075
|
variant,
|
|
946
1076
|
...props
|
|
947
|
-
}: LinkProps) =>
|
|
1077
|
+
}: LinkProps) => react_jsx_runtime126.JSX.Element;
|
|
948
1078
|
//#endregion
|
|
949
1079
|
//#region src/components/list/list.variants.d.ts
|
|
950
|
-
declare const listVariants:
|
|
1080
|
+
declare const listVariants: tailwind_variants63.TVReturnType<{
|
|
951
1081
|
[key: string]: {
|
|
952
|
-
[key: string]:
|
|
953
|
-
item?:
|
|
954
|
-
root?:
|
|
1082
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1083
|
+
item?: tailwind_merge299.ClassNameValue;
|
|
1084
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
955
1085
|
};
|
|
956
1086
|
};
|
|
957
1087
|
} | {
|
|
958
1088
|
[x: string]: {
|
|
959
|
-
[x: string]:
|
|
960
|
-
item?:
|
|
961
|
-
root?:
|
|
1089
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
1090
|
+
item?: tailwind_merge299.ClassNameValue;
|
|
1091
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
962
1092
|
};
|
|
963
1093
|
};
|
|
964
1094
|
} | {}, {
|
|
@@ -966,15 +1096,15 @@ declare const listVariants: tailwind_variants0.TVReturnType<{
|
|
|
966
1096
|
root: string;
|
|
967
1097
|
}, undefined, {
|
|
968
1098
|
[key: string]: {
|
|
969
|
-
[key: string]:
|
|
970
|
-
item?:
|
|
971
|
-
root?:
|
|
1099
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1100
|
+
item?: tailwind_merge299.ClassNameValue;
|
|
1101
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
972
1102
|
};
|
|
973
1103
|
};
|
|
974
1104
|
} | {}, {
|
|
975
1105
|
item: string;
|
|
976
1106
|
root: string;
|
|
977
|
-
},
|
|
1107
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
978
1108
|
item: string;
|
|
979
1109
|
root: string;
|
|
980
1110
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -986,56 +1116,56 @@ declare const List: {
|
|
|
986
1116
|
({
|
|
987
1117
|
className,
|
|
988
1118
|
...props
|
|
989
|
-
}: ListProps):
|
|
1119
|
+
}: ListProps): react_jsx_runtime126.JSX.Element;
|
|
990
1120
|
Root: /*elided*/any;
|
|
991
1121
|
Item: ({
|
|
992
1122
|
className,
|
|
993
1123
|
...props
|
|
994
|
-
}: ListItemProps) =>
|
|
1124
|
+
}: ListItemProps) => react_jsx_runtime126.JSX.Element;
|
|
995
1125
|
};
|
|
996
1126
|
interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
997
1127
|
//#endregion
|
|
998
1128
|
//#region src/components/menu/menu.variants.d.ts
|
|
999
|
-
declare const menuVariants:
|
|
1129
|
+
declare const menuVariants: tailwind_variants63.TVReturnType<{
|
|
1000
1130
|
[key: string]: {
|
|
1001
|
-
[key: string]:
|
|
1002
|
-
item?:
|
|
1003
|
-
root?:
|
|
1004
|
-
trigger?:
|
|
1005
|
-
radioGroup?:
|
|
1006
|
-
backdrop?:
|
|
1007
|
-
popup?:
|
|
1008
|
-
portal?:
|
|
1009
|
-
arrow?:
|
|
1010
|
-
checkboxItem?:
|
|
1011
|
-
group?:
|
|
1012
|
-
groupLabel?:
|
|
1013
|
-
positioner?:
|
|
1014
|
-
radioItem?:
|
|
1015
|
-
separator?:
|
|
1016
|
-
submenu?:
|
|
1017
|
-
submenuTrigger?:
|
|
1131
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1132
|
+
item?: tailwind_merge299.ClassNameValue;
|
|
1133
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1134
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
1135
|
+
radioGroup?: tailwind_merge299.ClassNameValue;
|
|
1136
|
+
backdrop?: tailwind_merge299.ClassNameValue;
|
|
1137
|
+
popup?: tailwind_merge299.ClassNameValue;
|
|
1138
|
+
portal?: tailwind_merge299.ClassNameValue;
|
|
1139
|
+
arrow?: tailwind_merge299.ClassNameValue;
|
|
1140
|
+
checkboxItem?: tailwind_merge299.ClassNameValue;
|
|
1141
|
+
group?: tailwind_merge299.ClassNameValue;
|
|
1142
|
+
groupLabel?: tailwind_merge299.ClassNameValue;
|
|
1143
|
+
positioner?: tailwind_merge299.ClassNameValue;
|
|
1144
|
+
radioItem?: tailwind_merge299.ClassNameValue;
|
|
1145
|
+
separator?: tailwind_merge299.ClassNameValue;
|
|
1146
|
+
submenu?: tailwind_merge299.ClassNameValue;
|
|
1147
|
+
submenuTrigger?: tailwind_merge299.ClassNameValue;
|
|
1018
1148
|
};
|
|
1019
1149
|
};
|
|
1020
1150
|
} | {
|
|
1021
1151
|
[x: string]: {
|
|
1022
|
-
[x: string]:
|
|
1023
|
-
item?:
|
|
1024
|
-
root?:
|
|
1025
|
-
trigger?:
|
|
1026
|
-
radioGroup?:
|
|
1027
|
-
backdrop?:
|
|
1028
|
-
popup?:
|
|
1029
|
-
portal?:
|
|
1030
|
-
arrow?:
|
|
1031
|
-
checkboxItem?:
|
|
1032
|
-
group?:
|
|
1033
|
-
groupLabel?:
|
|
1034
|
-
positioner?:
|
|
1035
|
-
radioItem?:
|
|
1036
|
-
separator?:
|
|
1037
|
-
submenu?:
|
|
1038
|
-
submenuTrigger?:
|
|
1152
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
1153
|
+
item?: tailwind_merge299.ClassNameValue;
|
|
1154
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1155
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
1156
|
+
radioGroup?: tailwind_merge299.ClassNameValue;
|
|
1157
|
+
backdrop?: tailwind_merge299.ClassNameValue;
|
|
1158
|
+
popup?: tailwind_merge299.ClassNameValue;
|
|
1159
|
+
portal?: tailwind_merge299.ClassNameValue;
|
|
1160
|
+
arrow?: tailwind_merge299.ClassNameValue;
|
|
1161
|
+
checkboxItem?: tailwind_merge299.ClassNameValue;
|
|
1162
|
+
group?: tailwind_merge299.ClassNameValue;
|
|
1163
|
+
groupLabel?: tailwind_merge299.ClassNameValue;
|
|
1164
|
+
positioner?: tailwind_merge299.ClassNameValue;
|
|
1165
|
+
radioItem?: tailwind_merge299.ClassNameValue;
|
|
1166
|
+
separator?: tailwind_merge299.ClassNameValue;
|
|
1167
|
+
submenu?: tailwind_merge299.ClassNameValue;
|
|
1168
|
+
submenuTrigger?: tailwind_merge299.ClassNameValue;
|
|
1039
1169
|
};
|
|
1040
1170
|
};
|
|
1041
1171
|
} | {}, {
|
|
@@ -1057,23 +1187,23 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
1057
1187
|
trigger: string;
|
|
1058
1188
|
}, undefined, {
|
|
1059
1189
|
[key: string]: {
|
|
1060
|
-
[key: string]:
|
|
1061
|
-
item?:
|
|
1062
|
-
root?:
|
|
1063
|
-
trigger?:
|
|
1064
|
-
radioGroup?:
|
|
1065
|
-
backdrop?:
|
|
1066
|
-
popup?:
|
|
1067
|
-
portal?:
|
|
1068
|
-
arrow?:
|
|
1069
|
-
checkboxItem?:
|
|
1070
|
-
group?:
|
|
1071
|
-
groupLabel?:
|
|
1072
|
-
positioner?:
|
|
1073
|
-
radioItem?:
|
|
1074
|
-
separator?:
|
|
1075
|
-
submenu?:
|
|
1076
|
-
submenuTrigger?:
|
|
1190
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1191
|
+
item?: tailwind_merge299.ClassNameValue;
|
|
1192
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1193
|
+
trigger?: tailwind_merge299.ClassNameValue;
|
|
1194
|
+
radioGroup?: tailwind_merge299.ClassNameValue;
|
|
1195
|
+
backdrop?: tailwind_merge299.ClassNameValue;
|
|
1196
|
+
popup?: tailwind_merge299.ClassNameValue;
|
|
1197
|
+
portal?: tailwind_merge299.ClassNameValue;
|
|
1198
|
+
arrow?: tailwind_merge299.ClassNameValue;
|
|
1199
|
+
checkboxItem?: tailwind_merge299.ClassNameValue;
|
|
1200
|
+
group?: tailwind_merge299.ClassNameValue;
|
|
1201
|
+
groupLabel?: tailwind_merge299.ClassNameValue;
|
|
1202
|
+
positioner?: tailwind_merge299.ClassNameValue;
|
|
1203
|
+
radioItem?: tailwind_merge299.ClassNameValue;
|
|
1204
|
+
separator?: tailwind_merge299.ClassNameValue;
|
|
1205
|
+
submenu?: tailwind_merge299.ClassNameValue;
|
|
1206
|
+
submenuTrigger?: tailwind_merge299.ClassNameValue;
|
|
1077
1207
|
};
|
|
1078
1208
|
};
|
|
1079
1209
|
} | {}, {
|
|
@@ -1093,7 +1223,7 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
1093
1223
|
submenu: string;
|
|
1094
1224
|
submenuTrigger: string;
|
|
1095
1225
|
trigger: string;
|
|
1096
|
-
},
|
|
1226
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
1097
1227
|
arrow: string;
|
|
1098
1228
|
backdrop: string;
|
|
1099
1229
|
checkboxItem: string;
|
|
@@ -1118,67 +1248,67 @@ interface MenuProps extends MenuVariants, Menu$1.Root.Props {}
|
|
|
1118
1248
|
declare const Menu: {
|
|
1119
1249
|
({
|
|
1120
1250
|
...props
|
|
1121
|
-
}: MenuProps):
|
|
1251
|
+
}: MenuProps): react_jsx_runtime126.JSX.Element;
|
|
1122
1252
|
Arrow: ({
|
|
1123
1253
|
className,
|
|
1124
1254
|
...props
|
|
1125
|
-
}: MenuArrowProps) =>
|
|
1255
|
+
}: MenuArrowProps) => react_jsx_runtime126.JSX.Element;
|
|
1126
1256
|
Backdrop: ({
|
|
1127
1257
|
className,
|
|
1128
1258
|
...props
|
|
1129
|
-
}: MenuBackdropProps) =>
|
|
1259
|
+
}: MenuBackdropProps) => react_jsx_runtime126.JSX.Element;
|
|
1130
1260
|
CheckboxItem: ({
|
|
1131
1261
|
className,
|
|
1132
1262
|
...props
|
|
1133
|
-
}: MenuCheckboxItemProps) =>
|
|
1263
|
+
}: MenuCheckboxItemProps) => react_jsx_runtime126.JSX.Element;
|
|
1134
1264
|
Group: ({
|
|
1135
1265
|
className,
|
|
1136
1266
|
...props
|
|
1137
|
-
}: MenuGroupProps) =>
|
|
1267
|
+
}: MenuGroupProps) => react_jsx_runtime126.JSX.Element;
|
|
1138
1268
|
GroupLabel: ({
|
|
1139
1269
|
className,
|
|
1140
1270
|
...props
|
|
1141
|
-
}: MenuGroupLabelProps) =>
|
|
1271
|
+
}: MenuGroupLabelProps) => react_jsx_runtime126.JSX.Element;
|
|
1142
1272
|
Item: ({
|
|
1143
1273
|
className,
|
|
1144
1274
|
...props
|
|
1145
|
-
}: MenuItemProps) =>
|
|
1275
|
+
}: MenuItemProps) => react_jsx_runtime126.JSX.Element;
|
|
1146
1276
|
Popup: ({
|
|
1147
1277
|
className,
|
|
1148
1278
|
...props
|
|
1149
|
-
}: MenuPopupProps) =>
|
|
1279
|
+
}: MenuPopupProps) => react_jsx_runtime126.JSX.Element;
|
|
1150
1280
|
Portal: ({
|
|
1151
1281
|
className,
|
|
1152
1282
|
...props
|
|
1153
|
-
}: MenuPortalProps) =>
|
|
1283
|
+
}: MenuPortalProps) => react_jsx_runtime126.JSX.Element;
|
|
1154
1284
|
Positioner: ({
|
|
1155
1285
|
className,
|
|
1156
1286
|
...props
|
|
1157
|
-
}: MenuPositionerProps) =>
|
|
1287
|
+
}: MenuPositionerProps) => react_jsx_runtime126.JSX.Element;
|
|
1158
1288
|
RadioGroup: ({
|
|
1159
1289
|
className,
|
|
1160
1290
|
...props
|
|
1161
|
-
}: MenuRadioGroupProps) =>
|
|
1291
|
+
}: MenuRadioGroupProps) => react_jsx_runtime126.JSX.Element;
|
|
1162
1292
|
RadioItem: ({
|
|
1163
1293
|
className,
|
|
1164
1294
|
...props
|
|
1165
|
-
}: MenuRadioItemProps) =>
|
|
1295
|
+
}: MenuRadioItemProps) => react_jsx_runtime126.JSX.Element;
|
|
1166
1296
|
Root: /*elided*/any;
|
|
1167
1297
|
Separator: ({
|
|
1168
1298
|
className,
|
|
1169
1299
|
...props
|
|
1170
|
-
}: MenuSeparatorProps) =>
|
|
1300
|
+
}: MenuSeparatorProps) => react_jsx_runtime126.JSX.Element;
|
|
1171
1301
|
Submenu: ({
|
|
1172
1302
|
...props
|
|
1173
|
-
}: MenuSubmenuProps) =>
|
|
1303
|
+
}: MenuSubmenuProps) => react_jsx_runtime126.JSX.Element;
|
|
1174
1304
|
SubmenuTrigger: ({
|
|
1175
1305
|
className,
|
|
1176
1306
|
...props
|
|
1177
|
-
}: MenuSubmenuTriggerProps) =>
|
|
1307
|
+
}: MenuSubmenuTriggerProps) => react_jsx_runtime126.JSX.Element;
|
|
1178
1308
|
Trigger: ({
|
|
1179
1309
|
className,
|
|
1180
1310
|
...props
|
|
1181
|
-
}: MenuTriggerProps) =>
|
|
1311
|
+
}: MenuTriggerProps) => react_jsx_runtime126.JSX.Element;
|
|
1182
1312
|
};
|
|
1183
1313
|
interface MenuTriggerProps extends MenuVariants, Menu$1.Trigger.Props {}
|
|
1184
1314
|
interface MenuPortalProps extends MenuVariants, Menu$1.Portal.Props {}
|
|
@@ -1197,7 +1327,7 @@ interface MenuSubmenuProps extends MenuVariants, Menu$1.SubmenuRoot.Props {}
|
|
|
1197
1327
|
interface MenuSubmenuTriggerProps extends MenuVariants, Menu$1.SubmenuTrigger.Props {}
|
|
1198
1328
|
//#endregion
|
|
1199
1329
|
//#region src/components/meter/meter.variants.d.ts
|
|
1200
|
-
declare const meterVariants:
|
|
1330
|
+
declare const meterVariants: tailwind_variants63.TVReturnType<{
|
|
1201
1331
|
size: {
|
|
1202
1332
|
lg: {
|
|
1203
1333
|
root: string;
|
|
@@ -1261,7 +1391,7 @@ declare const meterVariants: tailwind_variants0.TVReturnType<{
|
|
|
1261
1391
|
root: string;
|
|
1262
1392
|
track: string;
|
|
1263
1393
|
value: string;
|
|
1264
|
-
},
|
|
1394
|
+
}, tailwind_variants63.TVReturnType<{
|
|
1265
1395
|
size: {
|
|
1266
1396
|
lg: {
|
|
1267
1397
|
root: string;
|
|
@@ -1304,24 +1434,24 @@ declare const Meter: {
|
|
|
1304
1434
|
size,
|
|
1305
1435
|
variant,
|
|
1306
1436
|
...props
|
|
1307
|
-
}: MeterProps):
|
|
1437
|
+
}: MeterProps): react_jsx_runtime126.JSX.Element;
|
|
1308
1438
|
Indicator: ({
|
|
1309
1439
|
className,
|
|
1310
1440
|
...props
|
|
1311
|
-
}: MeterIndicatorProps) =>
|
|
1441
|
+
}: MeterIndicatorProps) => react_jsx_runtime126.JSX.Element;
|
|
1312
1442
|
Label: ({
|
|
1313
1443
|
className,
|
|
1314
1444
|
...props
|
|
1315
|
-
}: MeterLabelProps) =>
|
|
1445
|
+
}: MeterLabelProps) => react_jsx_runtime126.JSX.Element;
|
|
1316
1446
|
Root: /*elided*/any;
|
|
1317
1447
|
Track: ({
|
|
1318
1448
|
className,
|
|
1319
1449
|
...props
|
|
1320
|
-
}: MeterTrackProps) =>
|
|
1450
|
+
}: MeterTrackProps) => react_jsx_runtime126.JSX.Element;
|
|
1321
1451
|
Value: ({
|
|
1322
1452
|
className,
|
|
1323
1453
|
...props
|
|
1324
|
-
}: MeterValueProps) =>
|
|
1454
|
+
}: MeterValueProps) => react_jsx_runtime126.JSX.Element;
|
|
1325
1455
|
};
|
|
1326
1456
|
interface MeterLabelProps extends Meter$1.Label.Props {}
|
|
1327
1457
|
interface MeterValueProps extends Meter$1.Value.Props {}
|
|
@@ -1329,30 +1459,30 @@ interface MeterTrackProps extends Meter$1.Track.Props {}
|
|
|
1329
1459
|
interface MeterIndicatorProps extends Meter$1.Indicator.Props {}
|
|
1330
1460
|
//#endregion
|
|
1331
1461
|
//#region src/components/navbar/navbar.variants.d.ts
|
|
1332
|
-
declare const navbarVariants:
|
|
1462
|
+
declare const navbarVariants: tailwind_variants63.TVReturnType<{
|
|
1333
1463
|
[key: string]: {
|
|
1334
|
-
[key: string]:
|
|
1335
|
-
content?:
|
|
1336
|
-
root?:
|
|
1337
|
-
menu?:
|
|
1338
|
-
container?:
|
|
1339
|
-
list?:
|
|
1340
|
-
listItem?:
|
|
1341
|
-
menuItem?:
|
|
1342
|
-
toggle?:
|
|
1464
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1465
|
+
content?: tailwind_merge299.ClassNameValue;
|
|
1466
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1467
|
+
menu?: tailwind_merge299.ClassNameValue;
|
|
1468
|
+
container?: tailwind_merge299.ClassNameValue;
|
|
1469
|
+
list?: tailwind_merge299.ClassNameValue;
|
|
1470
|
+
listItem?: tailwind_merge299.ClassNameValue;
|
|
1471
|
+
menuItem?: tailwind_merge299.ClassNameValue;
|
|
1472
|
+
toggle?: tailwind_merge299.ClassNameValue;
|
|
1343
1473
|
};
|
|
1344
1474
|
};
|
|
1345
1475
|
} | {
|
|
1346
1476
|
[x: string]: {
|
|
1347
|
-
[x: string]:
|
|
1348
|
-
content?:
|
|
1349
|
-
root?:
|
|
1350
|
-
menu?:
|
|
1351
|
-
container?:
|
|
1352
|
-
list?:
|
|
1353
|
-
listItem?:
|
|
1354
|
-
menuItem?:
|
|
1355
|
-
toggle?:
|
|
1477
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
1478
|
+
content?: tailwind_merge299.ClassNameValue;
|
|
1479
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1480
|
+
menu?: tailwind_merge299.ClassNameValue;
|
|
1481
|
+
container?: tailwind_merge299.ClassNameValue;
|
|
1482
|
+
list?: tailwind_merge299.ClassNameValue;
|
|
1483
|
+
listItem?: tailwind_merge299.ClassNameValue;
|
|
1484
|
+
menuItem?: tailwind_merge299.ClassNameValue;
|
|
1485
|
+
toggle?: tailwind_merge299.ClassNameValue;
|
|
1356
1486
|
};
|
|
1357
1487
|
};
|
|
1358
1488
|
} | {}, {
|
|
@@ -1366,15 +1496,15 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1366
1496
|
toggle: string;
|
|
1367
1497
|
}, undefined, {
|
|
1368
1498
|
[key: string]: {
|
|
1369
|
-
[key: string]:
|
|
1370
|
-
content?:
|
|
1371
|
-
root?:
|
|
1372
|
-
menu?:
|
|
1373
|
-
container?:
|
|
1374
|
-
list?:
|
|
1375
|
-
listItem?:
|
|
1376
|
-
menuItem?:
|
|
1377
|
-
toggle?:
|
|
1499
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1500
|
+
content?: tailwind_merge299.ClassNameValue;
|
|
1501
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1502
|
+
menu?: tailwind_merge299.ClassNameValue;
|
|
1503
|
+
container?: tailwind_merge299.ClassNameValue;
|
|
1504
|
+
list?: tailwind_merge299.ClassNameValue;
|
|
1505
|
+
listItem?: tailwind_merge299.ClassNameValue;
|
|
1506
|
+
menuItem?: tailwind_merge299.ClassNameValue;
|
|
1507
|
+
toggle?: tailwind_merge299.ClassNameValue;
|
|
1378
1508
|
};
|
|
1379
1509
|
};
|
|
1380
1510
|
} | {}, {
|
|
@@ -1386,7 +1516,7 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1386
1516
|
menuItem: string;
|
|
1387
1517
|
root: string;
|
|
1388
1518
|
toggle: string;
|
|
1389
|
-
},
|
|
1519
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
1390
1520
|
container: string;
|
|
1391
1521
|
content: string;
|
|
1392
1522
|
list: string;
|
|
@@ -1409,64 +1539,67 @@ declare const Navbar: {
|
|
|
1409
1539
|
isOpen,
|
|
1410
1540
|
onOpenChange,
|
|
1411
1541
|
...props
|
|
1412
|
-
}: NavbarProps):
|
|
1542
|
+
}: NavbarProps): react_jsx_runtime126.JSX.Element;
|
|
1413
1543
|
Root: /*elided*/any;
|
|
1414
1544
|
Container: ({
|
|
1415
1545
|
className,
|
|
1416
1546
|
...props
|
|
1417
|
-
}: NavbarContainerProps) =>
|
|
1547
|
+
}: NavbarContainerProps) => react_jsx_runtime126.JSX.Element;
|
|
1418
1548
|
Content: ({
|
|
1419
1549
|
className,
|
|
1420
1550
|
...props
|
|
1421
|
-
}: NavbarContentProps) =>
|
|
1551
|
+
}: NavbarContentProps) => react_jsx_runtime126.JSX.Element;
|
|
1422
1552
|
List: ({
|
|
1423
1553
|
className,
|
|
1424
1554
|
...props
|
|
1425
|
-
}: NavbarListProps) =>
|
|
1555
|
+
}: NavbarListProps) => react_jsx_runtime126.JSX.Element;
|
|
1426
1556
|
ListItem: ({
|
|
1427
1557
|
className,
|
|
1428
1558
|
...props
|
|
1429
|
-
}: NavbarListItemProps) =>
|
|
1559
|
+
}: NavbarListItemProps) => react_jsx_runtime126.JSX.Element;
|
|
1430
1560
|
Toggle: ({
|
|
1431
1561
|
className,
|
|
1432
1562
|
...props
|
|
1433
|
-
}: NavbarToggleProps) =>
|
|
1563
|
+
}: NavbarToggleProps) => react_jsx_runtime126.JSX.Element;
|
|
1434
1564
|
Menu: ({
|
|
1435
1565
|
className,
|
|
1566
|
+
header,
|
|
1436
1567
|
...props
|
|
1437
|
-
}: NavbarMenuProps) =>
|
|
1568
|
+
}: NavbarMenuProps) => react_jsx_runtime126.JSX.Element;
|
|
1438
1569
|
MenuItem: ({
|
|
1439
1570
|
className,
|
|
1440
1571
|
...props
|
|
1441
|
-
}: NavbarMenuItemProps) =>
|
|
1572
|
+
}: NavbarMenuItemProps) => react_jsx_runtime126.JSX.Element;
|
|
1442
1573
|
};
|
|
1443
1574
|
interface NavbarContainerProps extends React.ComponentProps<"nav"> {}
|
|
1444
1575
|
interface NavbarContentProps extends React.ComponentProps<"div"> {}
|
|
1445
1576
|
interface NavbarListProps extends React.ComponentProps<"ul"> {}
|
|
1446
1577
|
interface NavbarListItemProps extends React.ComponentProps<"li"> {}
|
|
1447
1578
|
interface NavbarToggleProps extends React.ComponentProps<"button"> {}
|
|
1448
|
-
interface NavbarMenuProps extends React.ComponentProps<"ul"> {
|
|
1579
|
+
interface NavbarMenuProps extends React.ComponentProps<"ul"> {
|
|
1580
|
+
header: React.ReactNode;
|
|
1581
|
+
}
|
|
1449
1582
|
interface NavbarMenuItemProps extends React.ComponentProps<"li"> {}
|
|
1450
1583
|
//#endregion
|
|
1451
1584
|
//#region src/components/progress/progress.variants.d.ts
|
|
1452
|
-
declare const progressVariants:
|
|
1585
|
+
declare const progressVariants: tailwind_variants63.TVReturnType<{
|
|
1453
1586
|
[key: string]: {
|
|
1454
|
-
[key: string]:
|
|
1455
|
-
root?:
|
|
1456
|
-
label?:
|
|
1457
|
-
track?:
|
|
1458
|
-
value?:
|
|
1459
|
-
indicator?:
|
|
1587
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1588
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1589
|
+
label?: tailwind_merge299.ClassNameValue;
|
|
1590
|
+
track?: tailwind_merge299.ClassNameValue;
|
|
1591
|
+
value?: tailwind_merge299.ClassNameValue;
|
|
1592
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
1460
1593
|
};
|
|
1461
1594
|
};
|
|
1462
1595
|
} | {
|
|
1463
1596
|
[x: string]: {
|
|
1464
|
-
[x: string]:
|
|
1465
|
-
root?:
|
|
1466
|
-
label?:
|
|
1467
|
-
track?:
|
|
1468
|
-
value?:
|
|
1469
|
-
indicator?:
|
|
1597
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
1598
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1599
|
+
label?: tailwind_merge299.ClassNameValue;
|
|
1600
|
+
track?: tailwind_merge299.ClassNameValue;
|
|
1601
|
+
value?: tailwind_merge299.ClassNameValue;
|
|
1602
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
1470
1603
|
};
|
|
1471
1604
|
};
|
|
1472
1605
|
} | {}, {
|
|
@@ -1477,12 +1610,12 @@ declare const progressVariants: tailwind_variants0.TVReturnType<{
|
|
|
1477
1610
|
value: string;
|
|
1478
1611
|
}, undefined, {
|
|
1479
1612
|
[key: string]: {
|
|
1480
|
-
[key: string]:
|
|
1481
|
-
root?:
|
|
1482
|
-
label?:
|
|
1483
|
-
track?:
|
|
1484
|
-
value?:
|
|
1485
|
-
indicator?:
|
|
1613
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1614
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1615
|
+
label?: tailwind_merge299.ClassNameValue;
|
|
1616
|
+
track?: tailwind_merge299.ClassNameValue;
|
|
1617
|
+
value?: tailwind_merge299.ClassNameValue;
|
|
1618
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
1486
1619
|
};
|
|
1487
1620
|
};
|
|
1488
1621
|
} | {}, {
|
|
@@ -1491,7 +1624,7 @@ declare const progressVariants: tailwind_variants0.TVReturnType<{
|
|
|
1491
1624
|
root: string;
|
|
1492
1625
|
track: string;
|
|
1493
1626
|
value: string;
|
|
1494
|
-
},
|
|
1627
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
1495
1628
|
indicator: string;
|
|
1496
1629
|
label: string;
|
|
1497
1630
|
root: string;
|
|
@@ -1506,28 +1639,28 @@ declare const Progress: {
|
|
|
1506
1639
|
({
|
|
1507
1640
|
className,
|
|
1508
1641
|
...props
|
|
1509
|
-
}: ProgressProps):
|
|
1642
|
+
}: ProgressProps): react_jsx_runtime126.JSX.Element;
|
|
1510
1643
|
Label: ({
|
|
1511
1644
|
className,
|
|
1512
1645
|
...props
|
|
1513
|
-
}: Progress$1.Label.Props) =>
|
|
1646
|
+
}: Progress$1.Label.Props) => react_jsx_runtime126.JSX.Element;
|
|
1514
1647
|
Value: ({
|
|
1515
1648
|
className,
|
|
1516
1649
|
...props
|
|
1517
|
-
}: Progress$1.Value.Props) =>
|
|
1650
|
+
}: Progress$1.Value.Props) => react_jsx_runtime126.JSX.Element;
|
|
1518
1651
|
Track: ({
|
|
1519
1652
|
className,
|
|
1520
1653
|
...props
|
|
1521
|
-
}: Progress$1.Track.Props) =>
|
|
1654
|
+
}: Progress$1.Track.Props) => react_jsx_runtime126.JSX.Element;
|
|
1522
1655
|
Indicator: ({
|
|
1523
1656
|
className,
|
|
1524
1657
|
...props
|
|
1525
|
-
}: Progress$1.Indicator.Props) =>
|
|
1658
|
+
}: Progress$1.Indicator.Props) => react_jsx_runtime126.JSX.Element;
|
|
1526
1659
|
Root: /*elided*/any;
|
|
1527
1660
|
};
|
|
1528
1661
|
//#endregion
|
|
1529
1662
|
//#region src/components/separator/separator.variants.d.ts
|
|
1530
|
-
declare const separatorVariants:
|
|
1663
|
+
declare const separatorVariants: tailwind_variants63.TVReturnType<{
|
|
1531
1664
|
orientation: {
|
|
1532
1665
|
horizontal: string;
|
|
1533
1666
|
vertical: string;
|
|
@@ -1537,7 +1670,7 @@ declare const separatorVariants: tailwind_variants0.TVReturnType<{
|
|
|
1537
1670
|
horizontal: string;
|
|
1538
1671
|
vertical: string;
|
|
1539
1672
|
};
|
|
1540
|
-
}, undefined,
|
|
1673
|
+
}, undefined, tailwind_variants63.TVReturnType<{
|
|
1541
1674
|
orientation: {
|
|
1542
1675
|
horizontal: string;
|
|
1543
1676
|
vertical: string;
|
|
@@ -1551,29 +1684,29 @@ declare const Separator: ({
|
|
|
1551
1684
|
className,
|
|
1552
1685
|
orientation,
|
|
1553
1686
|
...props
|
|
1554
|
-
}: SeparatorProps) =>
|
|
1687
|
+
}: SeparatorProps) => react_jsx_runtime126.JSX.Element;
|
|
1555
1688
|
//#endregion
|
|
1556
1689
|
//#region src/components/slider/slider.variants.d.ts
|
|
1557
|
-
declare const sliderVariants:
|
|
1690
|
+
declare const sliderVariants: tailwind_variants63.TVReturnType<{
|
|
1558
1691
|
[key: string]: {
|
|
1559
|
-
[key: string]:
|
|
1560
|
-
root?:
|
|
1561
|
-
track?:
|
|
1562
|
-
value?:
|
|
1563
|
-
indicator?:
|
|
1564
|
-
control?:
|
|
1565
|
-
thumb?:
|
|
1692
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1693
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1694
|
+
track?: tailwind_merge299.ClassNameValue;
|
|
1695
|
+
value?: tailwind_merge299.ClassNameValue;
|
|
1696
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
1697
|
+
control?: tailwind_merge299.ClassNameValue;
|
|
1698
|
+
thumb?: tailwind_merge299.ClassNameValue;
|
|
1566
1699
|
};
|
|
1567
1700
|
};
|
|
1568
1701
|
} | {
|
|
1569
1702
|
[x: string]: {
|
|
1570
|
-
[x: string]:
|
|
1571
|
-
root?:
|
|
1572
|
-
track?:
|
|
1573
|
-
value?:
|
|
1574
|
-
indicator?:
|
|
1575
|
-
control?:
|
|
1576
|
-
thumb?:
|
|
1703
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
1704
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1705
|
+
track?: tailwind_merge299.ClassNameValue;
|
|
1706
|
+
value?: tailwind_merge299.ClassNameValue;
|
|
1707
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
1708
|
+
control?: tailwind_merge299.ClassNameValue;
|
|
1709
|
+
thumb?: tailwind_merge299.ClassNameValue;
|
|
1577
1710
|
};
|
|
1578
1711
|
};
|
|
1579
1712
|
} | {}, {
|
|
@@ -1585,13 +1718,13 @@ declare const sliderVariants: tailwind_variants0.TVReturnType<{
|
|
|
1585
1718
|
value: string;
|
|
1586
1719
|
}, undefined, {
|
|
1587
1720
|
[key: string]: {
|
|
1588
|
-
[key: string]:
|
|
1589
|
-
root?:
|
|
1590
|
-
track?:
|
|
1591
|
-
value?:
|
|
1592
|
-
indicator?:
|
|
1593
|
-
control?:
|
|
1594
|
-
thumb?:
|
|
1721
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1722
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1723
|
+
track?: tailwind_merge299.ClassNameValue;
|
|
1724
|
+
value?: tailwind_merge299.ClassNameValue;
|
|
1725
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
1726
|
+
control?: tailwind_merge299.ClassNameValue;
|
|
1727
|
+
thumb?: tailwind_merge299.ClassNameValue;
|
|
1595
1728
|
};
|
|
1596
1729
|
};
|
|
1597
1730
|
} | {}, {
|
|
@@ -1601,7 +1734,7 @@ declare const sliderVariants: tailwind_variants0.TVReturnType<{
|
|
|
1601
1734
|
thumb: string;
|
|
1602
1735
|
track: string;
|
|
1603
1736
|
value: string;
|
|
1604
|
-
},
|
|
1737
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
1605
1738
|
control: string;
|
|
1606
1739
|
indicator: string;
|
|
1607
1740
|
root: string;
|
|
@@ -1617,32 +1750,32 @@ declare const Slider: {
|
|
|
1617
1750
|
({
|
|
1618
1751
|
className,
|
|
1619
1752
|
...props
|
|
1620
|
-
}: SliderProps):
|
|
1753
|
+
}: SliderProps): react_jsx_runtime126.JSX.Element;
|
|
1621
1754
|
Value: ({
|
|
1622
1755
|
className,
|
|
1623
1756
|
...props
|
|
1624
|
-
}: Slider$1.Value.Props) =>
|
|
1757
|
+
}: Slider$1.Value.Props) => react_jsx_runtime126.JSX.Element;
|
|
1625
1758
|
Control: ({
|
|
1626
1759
|
className,
|
|
1627
1760
|
...props
|
|
1628
|
-
}: Slider$1.Control.Props) =>
|
|
1761
|
+
}: Slider$1.Control.Props) => react_jsx_runtime126.JSX.Element;
|
|
1629
1762
|
Track: ({
|
|
1630
1763
|
className,
|
|
1631
1764
|
...props
|
|
1632
|
-
}: Slider$1.Track.Props) =>
|
|
1765
|
+
}: Slider$1.Track.Props) => react_jsx_runtime126.JSX.Element;
|
|
1633
1766
|
Indicator: ({
|
|
1634
1767
|
className,
|
|
1635
1768
|
...props
|
|
1636
|
-
}: Slider$1.Indicator.Props) =>
|
|
1769
|
+
}: Slider$1.Indicator.Props) => react_jsx_runtime126.JSX.Element;
|
|
1637
1770
|
Thumb: ({
|
|
1638
1771
|
className,
|
|
1639
1772
|
...props
|
|
1640
|
-
}: Slider$1.Thumb.Props) =>
|
|
1773
|
+
}: Slider$1.Thumb.Props) => react_jsx_runtime126.JSX.Element;
|
|
1641
1774
|
Root: /*elided*/any;
|
|
1642
1775
|
};
|
|
1643
1776
|
//#endregion
|
|
1644
1777
|
//#region src/components/switch/switch.variants.d.ts
|
|
1645
|
-
declare const switchVariants:
|
|
1778
|
+
declare const switchVariants: tailwind_variants63.TVReturnType<{
|
|
1646
1779
|
size: {
|
|
1647
1780
|
lg: {
|
|
1648
1781
|
root: string;
|
|
@@ -1672,7 +1805,7 @@ declare const switchVariants: tailwind_variants0.TVReturnType<{
|
|
|
1672
1805
|
}, {
|
|
1673
1806
|
root: string;
|
|
1674
1807
|
thumb: string;
|
|
1675
|
-
},
|
|
1808
|
+
}, tailwind_variants63.TVReturnType<{
|
|
1676
1809
|
size: {
|
|
1677
1810
|
lg: {
|
|
1678
1811
|
root: string;
|
|
@@ -1697,37 +1830,37 @@ declare const Switch: {
|
|
|
1697
1830
|
className,
|
|
1698
1831
|
size,
|
|
1699
1832
|
...props
|
|
1700
|
-
}: SwitchProps):
|
|
1833
|
+
}: SwitchProps): react_jsx_runtime126.JSX.Element;
|
|
1701
1834
|
Thumb: ({
|
|
1702
1835
|
className,
|
|
1703
1836
|
...props
|
|
1704
|
-
}: Switch$1.Thumb.Props) =>
|
|
1837
|
+
}: Switch$1.Thumb.Props) => react_jsx_runtime126.JSX.Element;
|
|
1705
1838
|
Root: /*elided*/any;
|
|
1706
1839
|
};
|
|
1707
1840
|
//#endregion
|
|
1708
1841
|
//#region src/components/table/table.variants.d.ts
|
|
1709
|
-
declare const tableVariants:
|
|
1842
|
+
declare const tableVariants: tailwind_variants63.TVReturnType<{
|
|
1710
1843
|
[key: string]: {
|
|
1711
|
-
[key: string]:
|
|
1712
|
-
root?:
|
|
1713
|
-
tbody?:
|
|
1714
|
-
td?:
|
|
1715
|
-
tfoot?:
|
|
1716
|
-
th?:
|
|
1717
|
-
thead?:
|
|
1718
|
-
tr?:
|
|
1844
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1845
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1846
|
+
tbody?: tailwind_merge299.ClassNameValue;
|
|
1847
|
+
td?: tailwind_merge299.ClassNameValue;
|
|
1848
|
+
tfoot?: tailwind_merge299.ClassNameValue;
|
|
1849
|
+
th?: tailwind_merge299.ClassNameValue;
|
|
1850
|
+
thead?: tailwind_merge299.ClassNameValue;
|
|
1851
|
+
tr?: tailwind_merge299.ClassNameValue;
|
|
1719
1852
|
};
|
|
1720
1853
|
};
|
|
1721
1854
|
} | {
|
|
1722
1855
|
[x: string]: {
|
|
1723
|
-
[x: string]:
|
|
1724
|
-
root?:
|
|
1725
|
-
tbody?:
|
|
1726
|
-
td?:
|
|
1727
|
-
tfoot?:
|
|
1728
|
-
th?:
|
|
1729
|
-
thead?:
|
|
1730
|
-
tr?:
|
|
1856
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
1857
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1858
|
+
tbody?: tailwind_merge299.ClassNameValue;
|
|
1859
|
+
td?: tailwind_merge299.ClassNameValue;
|
|
1860
|
+
tfoot?: tailwind_merge299.ClassNameValue;
|
|
1861
|
+
th?: tailwind_merge299.ClassNameValue;
|
|
1862
|
+
thead?: tailwind_merge299.ClassNameValue;
|
|
1863
|
+
tr?: tailwind_merge299.ClassNameValue;
|
|
1731
1864
|
};
|
|
1732
1865
|
};
|
|
1733
1866
|
} | {}, {
|
|
@@ -1740,14 +1873,14 @@ declare const tableVariants: tailwind_variants0.TVReturnType<{
|
|
|
1740
1873
|
tr: string;
|
|
1741
1874
|
}, undefined, {
|
|
1742
1875
|
[key: string]: {
|
|
1743
|
-
[key: string]:
|
|
1744
|
-
root?:
|
|
1745
|
-
tbody?:
|
|
1746
|
-
td?:
|
|
1747
|
-
tfoot?:
|
|
1748
|
-
th?:
|
|
1749
|
-
thead?:
|
|
1750
|
-
tr?:
|
|
1876
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1877
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1878
|
+
tbody?: tailwind_merge299.ClassNameValue;
|
|
1879
|
+
td?: tailwind_merge299.ClassNameValue;
|
|
1880
|
+
tfoot?: tailwind_merge299.ClassNameValue;
|
|
1881
|
+
th?: tailwind_merge299.ClassNameValue;
|
|
1882
|
+
thead?: tailwind_merge299.ClassNameValue;
|
|
1883
|
+
tr?: tailwind_merge299.ClassNameValue;
|
|
1751
1884
|
};
|
|
1752
1885
|
};
|
|
1753
1886
|
} | {}, {
|
|
@@ -1758,7 +1891,7 @@ declare const tableVariants: tailwind_variants0.TVReturnType<{
|
|
|
1758
1891
|
th: string;
|
|
1759
1892
|
thead: string;
|
|
1760
1893
|
tr: string;
|
|
1761
|
-
},
|
|
1894
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
1762
1895
|
root: string;
|
|
1763
1896
|
tbody: string;
|
|
1764
1897
|
td: string;
|
|
@@ -1775,32 +1908,32 @@ declare const Table: {
|
|
|
1775
1908
|
({
|
|
1776
1909
|
className,
|
|
1777
1910
|
...props
|
|
1778
|
-
}: TableProps):
|
|
1911
|
+
}: TableProps): react_jsx_runtime126.JSX.Element;
|
|
1779
1912
|
Root: /*elided*/any;
|
|
1780
1913
|
Head: ({
|
|
1781
1914
|
className,
|
|
1782
1915
|
...props
|
|
1783
|
-
}: TableHeadProps) =>
|
|
1916
|
+
}: TableHeadProps) => react_jsx_runtime126.JSX.Element;
|
|
1784
1917
|
Row: ({
|
|
1785
1918
|
className,
|
|
1786
1919
|
...props
|
|
1787
|
-
}: TableRowProps) =>
|
|
1920
|
+
}: TableRowProps) => react_jsx_runtime126.JSX.Element;
|
|
1788
1921
|
HeaderCell: ({
|
|
1789
1922
|
className,
|
|
1790
1923
|
...props
|
|
1791
|
-
}: TableHeaderCellProps) =>
|
|
1924
|
+
}: TableHeaderCellProps) => react_jsx_runtime126.JSX.Element;
|
|
1792
1925
|
Body: ({
|
|
1793
1926
|
className,
|
|
1794
1927
|
...props
|
|
1795
|
-
}: TableBodyProps) =>
|
|
1928
|
+
}: TableBodyProps) => react_jsx_runtime126.JSX.Element;
|
|
1796
1929
|
DataCell: ({
|
|
1797
1930
|
className,
|
|
1798
1931
|
...props
|
|
1799
|
-
}: TableDataCellProps) =>
|
|
1932
|
+
}: TableDataCellProps) => react_jsx_runtime126.JSX.Element;
|
|
1800
1933
|
Footer: ({
|
|
1801
1934
|
className,
|
|
1802
1935
|
...props
|
|
1803
|
-
}: TableFooterProps) =>
|
|
1936
|
+
}: TableFooterProps) => react_jsx_runtime126.JSX.Element;
|
|
1804
1937
|
};
|
|
1805
1938
|
interface TableHeadProps extends React.ComponentProps<"thead"> {}
|
|
1806
1939
|
interface TableRowProps extends React.ComponentProps<"tr"> {}
|
|
@@ -1810,24 +1943,24 @@ interface TableDataCellProps extends React.ComponentProps<"td"> {}
|
|
|
1810
1943
|
interface TableFooterProps extends React.ComponentProps<"tfoot"> {}
|
|
1811
1944
|
//#endregion
|
|
1812
1945
|
//#region src/components/tabs/tabs.variants.d.ts
|
|
1813
|
-
declare const tabsVariants:
|
|
1946
|
+
declare const tabsVariants: tailwind_variants63.TVReturnType<{
|
|
1814
1947
|
[key: string]: {
|
|
1815
|
-
[key: string]:
|
|
1816
|
-
panel?:
|
|
1817
|
-
root?:
|
|
1818
|
-
indicator?:
|
|
1819
|
-
list?:
|
|
1820
|
-
tab?:
|
|
1948
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1949
|
+
panel?: tailwind_merge299.ClassNameValue;
|
|
1950
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1951
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
1952
|
+
list?: tailwind_merge299.ClassNameValue;
|
|
1953
|
+
tab?: tailwind_merge299.ClassNameValue;
|
|
1821
1954
|
};
|
|
1822
1955
|
};
|
|
1823
1956
|
} | {
|
|
1824
1957
|
[x: string]: {
|
|
1825
|
-
[x: string]:
|
|
1826
|
-
panel?:
|
|
1827
|
-
root?:
|
|
1828
|
-
indicator?:
|
|
1829
|
-
list?:
|
|
1830
|
-
tab?:
|
|
1958
|
+
[x: string]: tailwind_merge299.ClassNameValue | {
|
|
1959
|
+
panel?: tailwind_merge299.ClassNameValue;
|
|
1960
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1961
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
1962
|
+
list?: tailwind_merge299.ClassNameValue;
|
|
1963
|
+
tab?: tailwind_merge299.ClassNameValue;
|
|
1831
1964
|
};
|
|
1832
1965
|
};
|
|
1833
1966
|
} | {}, {
|
|
@@ -1838,12 +1971,12 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
1838
1971
|
tab: string;
|
|
1839
1972
|
}, undefined, {
|
|
1840
1973
|
[key: string]: {
|
|
1841
|
-
[key: string]:
|
|
1842
|
-
panel?:
|
|
1843
|
-
root?:
|
|
1844
|
-
indicator?:
|
|
1845
|
-
list?:
|
|
1846
|
-
tab?:
|
|
1974
|
+
[key: string]: tailwind_merge299.ClassNameValue | {
|
|
1975
|
+
panel?: tailwind_merge299.ClassNameValue;
|
|
1976
|
+
root?: tailwind_merge299.ClassNameValue;
|
|
1977
|
+
indicator?: tailwind_merge299.ClassNameValue;
|
|
1978
|
+
list?: tailwind_merge299.ClassNameValue;
|
|
1979
|
+
tab?: tailwind_merge299.ClassNameValue;
|
|
1847
1980
|
};
|
|
1848
1981
|
};
|
|
1849
1982
|
} | {}, {
|
|
@@ -1852,7 +1985,7 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
1852
1985
|
panel: string;
|
|
1853
1986
|
root: string;
|
|
1854
1987
|
tab: string;
|
|
1855
|
-
},
|
|
1988
|
+
}, tailwind_variants63.TVReturnType<unknown, {
|
|
1856
1989
|
indicator: string;
|
|
1857
1990
|
list: string;
|
|
1858
1991
|
panel: string;
|
|
@@ -1867,23 +2000,23 @@ declare const Tabs: {
|
|
|
1867
2000
|
({
|
|
1868
2001
|
className,
|
|
1869
2002
|
...props
|
|
1870
|
-
}: TabsProps):
|
|
2003
|
+
}: TabsProps): react_jsx_runtime126.JSX.Element;
|
|
1871
2004
|
List: ({
|
|
1872
2005
|
className,
|
|
1873
2006
|
...props
|
|
1874
|
-
}: TabsListProps) =>
|
|
2007
|
+
}: TabsListProps) => react_jsx_runtime126.JSX.Element;
|
|
1875
2008
|
Tab: ({
|
|
1876
2009
|
className,
|
|
1877
2010
|
...props
|
|
1878
|
-
}: TabsTabProps) =>
|
|
2011
|
+
}: TabsTabProps) => react_jsx_runtime126.JSX.Element;
|
|
1879
2012
|
Indicator: ({
|
|
1880
2013
|
className,
|
|
1881
2014
|
...props
|
|
1882
|
-
}: TabsIndicatorProps) =>
|
|
2015
|
+
}: TabsIndicatorProps) => react_jsx_runtime126.JSX.Element;
|
|
1883
2016
|
Panel: ({
|
|
1884
2017
|
className,
|
|
1885
2018
|
...props
|
|
1886
|
-
}: TabsPanelProps) =>
|
|
2019
|
+
}: TabsPanelProps) => react_jsx_runtime126.JSX.Element;
|
|
1887
2020
|
Root: /*elided*/any;
|
|
1888
2021
|
};
|
|
1889
2022
|
interface TabsListProps extends Tabs$1.List.Props {}
|
|
@@ -1892,7 +2025,7 @@ interface TabsIndicatorProps extends Tabs$1.Indicator.Props {}
|
|
|
1892
2025
|
interface TabsPanelProps extends Tabs$1.Panel.Props {}
|
|
1893
2026
|
//#endregion
|
|
1894
2027
|
//#region src/components/text/text.variants.d.ts
|
|
1895
|
-
declare const textVariants:
|
|
2028
|
+
declare const textVariants: tailwind_variants63.TVReturnType<{} | {} | {}, undefined, "text", {} | {}, undefined, tailwind_variants63.TVReturnType<unknown, undefined, "text", unknown, unknown, undefined>>;
|
|
1896
2029
|
type TextVariants = VariantProps<typeof textVariants>;
|
|
1897
2030
|
//#endregion
|
|
1898
2031
|
//#region src/components/text/text.d.ts
|
|
@@ -1900,19 +2033,19 @@ interface TextProps extends TextVariants, React.ComponentProps<"div"> {}
|
|
|
1900
2033
|
declare const Text: ({
|
|
1901
2034
|
className,
|
|
1902
2035
|
...props
|
|
1903
|
-
}: TextProps) =>
|
|
2036
|
+
}: TextProps) => react_jsx_runtime126.JSX.Element;
|
|
1904
2037
|
//#endregion
|
|
1905
2038
|
//#region src/components/textarea/textarea.variants.d.ts
|
|
1906
|
-
declare const textareaVariants:
|
|
2039
|
+
declare const textareaVariants: tailwind_variants63.TVReturnType<{} | {
|
|
1907
2040
|
inputSize: {
|
|
1908
|
-
lg:
|
|
1909
|
-
base?:
|
|
2041
|
+
lg: tailwind_merge299.ClassNameValue | {
|
|
2042
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1910
2043
|
};
|
|
1911
|
-
md:
|
|
1912
|
-
base?:
|
|
2044
|
+
md: tailwind_merge299.ClassNameValue | {
|
|
2045
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1913
2046
|
};
|
|
1914
|
-
sm:
|
|
1915
|
-
base?:
|
|
2047
|
+
sm: tailwind_merge299.ClassNameValue | {
|
|
2048
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1916
2049
|
};
|
|
1917
2050
|
};
|
|
1918
2051
|
}, undefined, "textarea", {
|
|
@@ -1921,7 +2054,7 @@ declare const textareaVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1921
2054
|
md: string;
|
|
1922
2055
|
sm: string;
|
|
1923
2056
|
};
|
|
1924
|
-
}, undefined,
|
|
2057
|
+
}, undefined, tailwind_variants63.TVReturnType<{
|
|
1925
2058
|
inputSize: {
|
|
1926
2059
|
lg: string;
|
|
1927
2060
|
md: string;
|
|
@@ -1933,7 +2066,7 @@ declare const textareaVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1933
2066
|
md: string;
|
|
1934
2067
|
sm: string;
|
|
1935
2068
|
};
|
|
1936
|
-
}, undefined,
|
|
2069
|
+
}, undefined, tailwind_variants63.TVReturnType<{
|
|
1937
2070
|
inputSize: {
|
|
1938
2071
|
lg: string;
|
|
1939
2072
|
md: string;
|
|
@@ -1947,41 +2080,41 @@ interface TextareaProps extends TextareaVariants, React.ComponentProps<"textarea
|
|
|
1947
2080
|
declare const Textarea: ({
|
|
1948
2081
|
className,
|
|
1949
2082
|
...props
|
|
1950
|
-
}: TextareaProps) =>
|
|
2083
|
+
}: TextareaProps) => react_jsx_runtime126.JSX.Element;
|
|
1951
2084
|
//#endregion
|
|
1952
2085
|
//#region src/components/toggle-button/toggle-button.variants.d.ts
|
|
1953
|
-
declare const toggleButtonVariants:
|
|
2086
|
+
declare const toggleButtonVariants: tailwind_variants63.TVReturnType<{} | {
|
|
1954
2087
|
isIconOnly: {
|
|
1955
|
-
true:
|
|
1956
|
-
base?:
|
|
2088
|
+
true: tailwind_merge299.ClassNameValue | {
|
|
2089
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1957
2090
|
};
|
|
1958
2091
|
};
|
|
1959
2092
|
size: {
|
|
1960
|
-
lg:
|
|
1961
|
-
base?:
|
|
2093
|
+
lg: tailwind_merge299.ClassNameValue | {
|
|
2094
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1962
2095
|
};
|
|
1963
|
-
md:
|
|
1964
|
-
base?:
|
|
2096
|
+
md: tailwind_merge299.ClassNameValue | {
|
|
2097
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1965
2098
|
};
|
|
1966
|
-
sm:
|
|
1967
|
-
base?:
|
|
2099
|
+
sm: tailwind_merge299.ClassNameValue | {
|
|
2100
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1968
2101
|
};
|
|
1969
2102
|
};
|
|
1970
2103
|
variant: {
|
|
1971
|
-
danger:
|
|
1972
|
-
base?:
|
|
2104
|
+
danger: tailwind_merge299.ClassNameValue | {
|
|
2105
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1973
2106
|
};
|
|
1974
|
-
ghost:
|
|
1975
|
-
base?:
|
|
2107
|
+
ghost: tailwind_merge299.ClassNameValue | {
|
|
2108
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1976
2109
|
};
|
|
1977
|
-
outline:
|
|
1978
|
-
base?:
|
|
2110
|
+
outline: tailwind_merge299.ClassNameValue | {
|
|
2111
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1979
2112
|
};
|
|
1980
|
-
primary:
|
|
1981
|
-
base?:
|
|
2113
|
+
primary: tailwind_merge299.ClassNameValue | {
|
|
2114
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1982
2115
|
};
|
|
1983
|
-
secondary:
|
|
1984
|
-
base?:
|
|
2116
|
+
secondary: tailwind_merge299.ClassNameValue | {
|
|
2117
|
+
base?: tailwind_merge299.ClassNameValue;
|
|
1985
2118
|
};
|
|
1986
2119
|
};
|
|
1987
2120
|
}, undefined, "toggle-button", {
|
|
@@ -2000,7 +2133,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
2000
2133
|
primary: string;
|
|
2001
2134
|
secondary: string;
|
|
2002
2135
|
};
|
|
2003
|
-
}, undefined,
|
|
2136
|
+
}, undefined, tailwind_variants63.TVReturnType<{
|
|
2004
2137
|
isIconOnly: {
|
|
2005
2138
|
true: string;
|
|
2006
2139
|
};
|
|
@@ -2032,7 +2165,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
2032
2165
|
primary: string;
|
|
2033
2166
|
secondary: string;
|
|
2034
2167
|
};
|
|
2035
|
-
}, undefined,
|
|
2168
|
+
}, undefined, tailwind_variants63.TVReturnType<{
|
|
2036
2169
|
isIconOnly: {
|
|
2037
2170
|
true: string;
|
|
2038
2171
|
};
|
|
@@ -2058,7 +2191,7 @@ declare const ToggleButton: ({
|
|
|
2058
2191
|
variant,
|
|
2059
2192
|
size,
|
|
2060
2193
|
...props
|
|
2061
|
-
}: ToggleButtonProps) =>
|
|
2194
|
+
}: ToggleButtonProps) => react_jsx_runtime126.JSX.Element;
|
|
2062
2195
|
//#endregion
|
|
2063
|
-
export { Accordion, AccordionVariants, AlertDialog, AlertDialogVariants, Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, Card, CardVariants, Checkbox, CheckboxGroup, CheckboxGroupVariants, CheckboxVariants, Chip, ChipVariants, Container, ContainerVariants, Dialog, DialogVariants, Field, FieldVariants, Fieldset, FieldsetVariants, Form, FormVariants, Input, InputVariants, Label, LabelVariants, Link, LinkVariants, List, ListVariants, Menu, MenuVariants, Meter, MeterVariants, Navbar, NavbarVariants, Progress, ProgressVariants, Separator, SeparatorVariants, Slider, SliderVariants, Switch, SwitchVariants, Table, TableVariants, Tabs, TabsVariants, Text, TextVariants, Textarea, TextareaVariants, ToggleButton, ToggleButtonVariants, accordionVariants, alertDialogVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, checkboxVariants, chipVariants, cn, containerVariants, dialogVariants, fieldVariants, fieldsetVariants, formVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, progressVariants, separatorVariants, sliderVariants, switchVariants, tableVariants, tabsVariants, textVariants, textareaVariants, toggleButtonVariants };
|
|
2196
|
+
export { Accordion, AccordionVariants, AlertDialog, AlertDialogVariants, Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, Card, CardVariants, Checkbox, CheckboxGroup, CheckboxGroupVariants, CheckboxVariants, Chip, ChipVariants, Container, ContainerVariants, Dialog, DialogVariants, Drawer, DrawerVariants, Field, FieldVariants, Fieldset, FieldsetVariants, Form, FormVariants, Input, InputVariants, Label, LabelVariants, Link, LinkVariants, List, ListVariants, Menu, MenuVariants, Meter, MeterVariants, Navbar, NavbarVariants, Progress, ProgressVariants, Separator, SeparatorVariants, Slider, SliderVariants, Switch, SwitchVariants, Table, TableVariants, Tabs, TabsVariants, Text, TextVariants, Textarea, TextareaVariants, ToggleButton, ToggleButtonVariants, accordionVariants, alertDialogVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, checkboxVariants, chipVariants, cn, containerVariants, dialogVariants, drawerVariants, fieldVariants, fieldsetVariants, formVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, progressVariants, separatorVariants, sliderVariants, switchVariants, tableVariants, tabsVariants, textVariants, textareaVariants, toggleButtonVariants };
|
|
2064
2197
|
//# sourceMappingURL=index.d.cts.map
|