@fea-ui/react 0.1.0-alpha.1 → 0.1.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.MD +3 -0
- package/dist/index.cjs +345 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +571 -175
- package/dist/index.d.mts +728 -332
- package/dist/index.mjs +340 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants7 from "tailwind-variants";
|
|
2
2
|
import { VariantProps, cn } from "tailwind-variants";
|
|
3
|
-
import { Accordion as Accordion$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, Input as Input$1, Menu as Menu$1, Meter as Meter$1, Separator as Separator$1, Switch as Switch$1, Tabs as Tabs$1, ToggleProps } from "@base-ui/react";
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
3
|
+
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, 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";
|
|
4
|
+
import * as react_jsx_runtime14 from "react/jsx-runtime";
|
|
5
|
+
import * as tailwind_merge44 from "tailwind-merge";
|
|
6
6
|
|
|
7
7
|
//#region src/components/accordion/accordion.variants.d.ts
|
|
8
|
-
declare const accordionVariants:
|
|
8
|
+
declare const accordionVariants: tailwind_variants7.TVReturnType<{
|
|
9
9
|
[key: string]: {
|
|
10
|
-
[key: string]:
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
triggerIcon?:
|
|
10
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
11
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
12
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
13
|
+
header?: tailwind_merge44.ClassNameValue;
|
|
14
|
+
content?: tailwind_merge44.ClassNameValue;
|
|
15
|
+
item?: tailwind_merge44.ClassNameValue;
|
|
16
|
+
panel?: tailwind_merge44.ClassNameValue;
|
|
17
|
+
triggerIcon?: tailwind_merge44.ClassNameValue;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
} | {
|
|
21
21
|
[x: string]: {
|
|
22
|
-
[x: string]:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
triggerIcon?:
|
|
22
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
23
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
24
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
25
|
+
header?: tailwind_merge44.ClassNameValue;
|
|
26
|
+
content?: tailwind_merge44.ClassNameValue;
|
|
27
|
+
item?: tailwind_merge44.ClassNameValue;
|
|
28
|
+
panel?: tailwind_merge44.ClassNameValue;
|
|
29
|
+
triggerIcon?: tailwind_merge44.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
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
triggerIcon?:
|
|
42
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
43
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
44
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
45
|
+
header?: tailwind_merge44.ClassNameValue;
|
|
46
|
+
content?: tailwind_merge44.ClassNameValue;
|
|
47
|
+
item?: tailwind_merge44.ClassNameValue;
|
|
48
|
+
panel?: tailwind_merge44.ClassNameValue;
|
|
49
|
+
triggerIcon?: tailwind_merge44.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_variants7.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_runtime14.JSX.Element;
|
|
78
78
|
Content: ({
|
|
79
79
|
className,
|
|
80
80
|
...props
|
|
81
|
-
}: AccordionContentProps) =>
|
|
81
|
+
}: AccordionContentProps) => react_jsx_runtime14.JSX.Element;
|
|
82
82
|
Header: ({
|
|
83
83
|
className,
|
|
84
84
|
...props
|
|
85
|
-
}: AccordionHeaderProps) =>
|
|
85
|
+
}: AccordionHeaderProps) => react_jsx_runtime14.JSX.Element;
|
|
86
86
|
Item: ({
|
|
87
87
|
className,
|
|
88
88
|
...props
|
|
89
|
-
}: AccordionItemProps) =>
|
|
89
|
+
}: AccordionItemProps) => react_jsx_runtime14.JSX.Element;
|
|
90
90
|
Panel: ({
|
|
91
91
|
className,
|
|
92
92
|
...props
|
|
93
|
-
}: AccordionPanelProps) =>
|
|
93
|
+
}: AccordionPanelProps) => react_jsx_runtime14.JSX.Element;
|
|
94
94
|
Root: /*elided*/any;
|
|
95
95
|
Trigger: ({
|
|
96
96
|
className,
|
|
97
97
|
...props
|
|
98
|
-
}: AccordionTriggerProps) =>
|
|
98
|
+
}: AccordionTriggerProps) => react_jsx_runtime14.JSX.Element;
|
|
99
99
|
TriggerIcon: ({
|
|
100
100
|
className,
|
|
101
101
|
...props
|
|
102
|
-
}: AccordionTriggerIconProps) =>
|
|
102
|
+
}: AccordionTriggerIconProps) => react_jsx_runtime14.JSX.Element;
|
|
103
103
|
};
|
|
104
104
|
interface AccordionItemProps extends Accordion$1.Item.Props {}
|
|
105
105
|
interface AccordionHeaderProps extends Accordion$1.Header.Props {}
|
|
@@ -108,8 +108,134 @@ interface AccordionTriggerIconProps extends React.ComponentProps<"svg"> {}
|
|
|
108
108
|
interface AccordionPanelProps extends Accordion$1.Panel.Props {}
|
|
109
109
|
interface AccordionContentProps extends React.ComponentProps<"div"> {}
|
|
110
110
|
//#endregion
|
|
111
|
+
//#region src/components/alert-dialog/alert-dialog.variants.d.ts
|
|
112
|
+
declare const alertDialogVariants: tailwind_variants7.TVReturnType<{
|
|
113
|
+
[key: string]: {
|
|
114
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
115
|
+
backdrop?: tailwind_merge44.ClassNameValue;
|
|
116
|
+
close?: tailwind_merge44.ClassNameValue;
|
|
117
|
+
description?: tailwind_merge44.ClassNameValue;
|
|
118
|
+
popup?: tailwind_merge44.ClassNameValue;
|
|
119
|
+
portal?: tailwind_merge44.ClassNameValue;
|
|
120
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
121
|
+
title?: tailwind_merge44.ClassNameValue;
|
|
122
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
123
|
+
viewport?: tailwind_merge44.ClassNameValue;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
} | {
|
|
127
|
+
[x: string]: {
|
|
128
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
129
|
+
backdrop?: tailwind_merge44.ClassNameValue;
|
|
130
|
+
close?: tailwind_merge44.ClassNameValue;
|
|
131
|
+
description?: tailwind_merge44.ClassNameValue;
|
|
132
|
+
popup?: tailwind_merge44.ClassNameValue;
|
|
133
|
+
portal?: tailwind_merge44.ClassNameValue;
|
|
134
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
135
|
+
title?: tailwind_merge44.ClassNameValue;
|
|
136
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
137
|
+
viewport?: tailwind_merge44.ClassNameValue;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
} | {}, {
|
|
141
|
+
backdrop: string;
|
|
142
|
+
close: string;
|
|
143
|
+
description: string;
|
|
144
|
+
popup: string;
|
|
145
|
+
portal: string;
|
|
146
|
+
root: string;
|
|
147
|
+
title: string;
|
|
148
|
+
trigger: string;
|
|
149
|
+
viewport: string;
|
|
150
|
+
}, undefined, {
|
|
151
|
+
[key: string]: {
|
|
152
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
153
|
+
backdrop?: tailwind_merge44.ClassNameValue;
|
|
154
|
+
close?: tailwind_merge44.ClassNameValue;
|
|
155
|
+
description?: tailwind_merge44.ClassNameValue;
|
|
156
|
+
popup?: tailwind_merge44.ClassNameValue;
|
|
157
|
+
portal?: tailwind_merge44.ClassNameValue;
|
|
158
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
159
|
+
title?: tailwind_merge44.ClassNameValue;
|
|
160
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
161
|
+
viewport?: tailwind_merge44.ClassNameValue;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
} | {}, {
|
|
165
|
+
backdrop: string;
|
|
166
|
+
close: string;
|
|
167
|
+
description: string;
|
|
168
|
+
popup: string;
|
|
169
|
+
portal: string;
|
|
170
|
+
root: string;
|
|
171
|
+
title: string;
|
|
172
|
+
trigger: string;
|
|
173
|
+
viewport: string;
|
|
174
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
175
|
+
backdrop: string;
|
|
176
|
+
close: string;
|
|
177
|
+
description: string;
|
|
178
|
+
popup: string;
|
|
179
|
+
portal: string;
|
|
180
|
+
root: string;
|
|
181
|
+
title: string;
|
|
182
|
+
trigger: string;
|
|
183
|
+
viewport: string;
|
|
184
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
185
|
+
type AlertDialogVariants = VariantProps<typeof alertDialogVariants>;
|
|
186
|
+
//#endregion
|
|
187
|
+
//#region src/components/alert-dialog/alert-dialog.d.ts
|
|
188
|
+
interface AlertDialogProps extends AlertDialogVariants, AlertDialog$1.Root.Props {}
|
|
189
|
+
declare const AlertDialog: {
|
|
190
|
+
({
|
|
191
|
+
...props
|
|
192
|
+
}: AlertDialogProps): react_jsx_runtime14.JSX.Element;
|
|
193
|
+
Root: /*elided*/any;
|
|
194
|
+
Trigger: ({
|
|
195
|
+
className,
|
|
196
|
+
...props
|
|
197
|
+
}: AlertDialogTriggerProps) => react_jsx_runtime14.JSX.Element;
|
|
198
|
+
Portal: ({
|
|
199
|
+
className,
|
|
200
|
+
...props
|
|
201
|
+
}: AlertDialogPortalProps) => react_jsx_runtime14.JSX.Element;
|
|
202
|
+
Backdrop: ({
|
|
203
|
+
className,
|
|
204
|
+
...props
|
|
205
|
+
}: AlertDialogBackdropProps) => react_jsx_runtime14.JSX.Element;
|
|
206
|
+
Viewport: ({
|
|
207
|
+
className,
|
|
208
|
+
...props
|
|
209
|
+
}: AlertDialogViewportProps) => react_jsx_runtime14.JSX.Element;
|
|
210
|
+
Popup: ({
|
|
211
|
+
className,
|
|
212
|
+
...props
|
|
213
|
+
}: AlertDialogPopupProps) => react_jsx_runtime14.JSX.Element;
|
|
214
|
+
Title: ({
|
|
215
|
+
className,
|
|
216
|
+
...props
|
|
217
|
+
}: AlertDialogTitleProps) => react_jsx_runtime14.JSX.Element;
|
|
218
|
+
Description: ({
|
|
219
|
+
className,
|
|
220
|
+
...props
|
|
221
|
+
}: AlertDialogDescriptionProps) => react_jsx_runtime14.JSX.Element;
|
|
222
|
+
Close: ({
|
|
223
|
+
className,
|
|
224
|
+
children,
|
|
225
|
+
...props
|
|
226
|
+
}: AlertDialogCloseProps) => react_jsx_runtime14.JSX.Element;
|
|
227
|
+
};
|
|
228
|
+
interface AlertDialogTriggerProps extends AlertDialog$1.Trigger.Props {}
|
|
229
|
+
interface AlertDialogPortalProps extends AlertDialog$1.Portal.Props {}
|
|
230
|
+
interface AlertDialogBackdropProps extends AlertDialog$1.Backdrop.Props {}
|
|
231
|
+
interface AlertDialogViewportProps extends AlertDialog$1.Viewport.Props {}
|
|
232
|
+
interface AlertDialogPopupProps extends AlertDialog$1.Popup.Props {}
|
|
233
|
+
interface AlertDialogTitleProps extends AlertDialog$1.Title.Props {}
|
|
234
|
+
interface AlertDialogDescriptionProps extends AlertDialog$1.Description.Props {}
|
|
235
|
+
interface AlertDialogCloseProps extends AlertDialog$1.Close.Props {}
|
|
236
|
+
//#endregion
|
|
111
237
|
//#region src/components/avatar/avatar.variants.d.ts
|
|
112
|
-
declare const avatarVariants:
|
|
238
|
+
declare const avatarVariants: tailwind_variants7.TVReturnType<{
|
|
113
239
|
size: {
|
|
114
240
|
lg: {
|
|
115
241
|
root: string;
|
|
@@ -141,7 +267,7 @@ declare const avatarVariants: tailwind_variants0.TVReturnType<{
|
|
|
141
267
|
fallback: string;
|
|
142
268
|
image: string;
|
|
143
269
|
root: string;
|
|
144
|
-
},
|
|
270
|
+
}, tailwind_variants7.TVReturnType<{
|
|
145
271
|
size: {
|
|
146
272
|
lg: {
|
|
147
273
|
root: string;
|
|
@@ -167,22 +293,22 @@ declare const Avatar: {
|
|
|
167
293
|
className,
|
|
168
294
|
size,
|
|
169
295
|
...props
|
|
170
|
-
}: AvatarProps):
|
|
296
|
+
}: AvatarProps): react_jsx_runtime14.JSX.Element;
|
|
171
297
|
Fallback: ({
|
|
172
298
|
className,
|
|
173
299
|
...props
|
|
174
|
-
}: AvatarFallbackProps) =>
|
|
300
|
+
}: AvatarFallbackProps) => react_jsx_runtime14.JSX.Element;
|
|
175
301
|
Image: ({
|
|
176
302
|
className,
|
|
177
303
|
...props
|
|
178
|
-
}: AvatarImageProps) =>
|
|
304
|
+
}: AvatarImageProps) => react_jsx_runtime14.JSX.Element;
|
|
179
305
|
Root: /*elided*/any;
|
|
180
306
|
};
|
|
181
307
|
interface AvatarImageProps extends Avatar$1.Image.Props {}
|
|
182
308
|
interface AvatarFallbackProps extends Avatar$1.Fallback.Props {}
|
|
183
309
|
//#endregion
|
|
184
310
|
//#region src/components/button/button.variants.d.ts
|
|
185
|
-
declare const buttonVariants:
|
|
311
|
+
declare const buttonVariants: tailwind_variants7.TVReturnType<{
|
|
186
312
|
isIconOnly: {
|
|
187
313
|
true: string;
|
|
188
314
|
};
|
|
@@ -214,7 +340,7 @@ declare const buttonVariants: tailwind_variants0.TVReturnType<{
|
|
|
214
340
|
primary: string;
|
|
215
341
|
secondary: string;
|
|
216
342
|
};
|
|
217
|
-
}, undefined,
|
|
343
|
+
}, undefined, tailwind_variants7.TVReturnType<{
|
|
218
344
|
isIconOnly: {
|
|
219
345
|
true: string;
|
|
220
346
|
};
|
|
@@ -241,10 +367,10 @@ declare const Button: ({
|
|
|
241
367
|
size,
|
|
242
368
|
isIconOnly,
|
|
243
369
|
...props
|
|
244
|
-
}: ButtonProps) =>
|
|
370
|
+
}: ButtonProps) => react_jsx_runtime14.JSX.Element;
|
|
245
371
|
//#endregion
|
|
246
372
|
//#region src/components/button-group/button-group.variants.d.ts
|
|
247
|
-
declare const buttonGroupVariants:
|
|
373
|
+
declare const buttonGroupVariants: tailwind_variants7.TVReturnType<{} | {} | {}, undefined, "button-group", {} | {}, undefined, tailwind_variants7.TVReturnType<unknown, undefined, "button-group", unknown, unknown, undefined>>;
|
|
248
374
|
type ButtonGroupVariants = VariantProps<typeof buttonGroupVariants>;
|
|
249
375
|
//#endregion
|
|
250
376
|
//#region src/components/button-group/button-group.d.ts
|
|
@@ -252,10 +378,10 @@ interface ButtonGroupProps extends ButtonGroupVariants, React.ComponentProps<"di
|
|
|
252
378
|
declare const ButtonGroup: ({
|
|
253
379
|
className,
|
|
254
380
|
...props
|
|
255
|
-
}: ButtonGroupProps) =>
|
|
381
|
+
}: ButtonGroupProps) => react_jsx_runtime14.JSX.Element;
|
|
256
382
|
//#endregion
|
|
257
383
|
//#region src/components/card/card.variants.d.ts
|
|
258
|
-
declare const cardVariants:
|
|
384
|
+
declare const cardVariants: tailwind_variants7.TVReturnType<{
|
|
259
385
|
variant: {
|
|
260
386
|
default: {
|
|
261
387
|
root: string;
|
|
@@ -287,7 +413,7 @@ declare const cardVariants: tailwind_variants0.TVReturnType<{
|
|
|
287
413
|
header: string;
|
|
288
414
|
root: string;
|
|
289
415
|
title: string;
|
|
290
|
-
},
|
|
416
|
+
}, tailwind_variants7.TVReturnType<{
|
|
291
417
|
variant: {
|
|
292
418
|
default: {
|
|
293
419
|
root: string;
|
|
@@ -313,29 +439,29 @@ declare const Card: {
|
|
|
313
439
|
className,
|
|
314
440
|
variant,
|
|
315
441
|
...props
|
|
316
|
-
}: CardProps):
|
|
442
|
+
}: CardProps): react_jsx_runtime14.JSX.Element;
|
|
317
443
|
/** Exports */
|
|
318
444
|
Body: ({
|
|
319
445
|
className,
|
|
320
446
|
...props
|
|
321
|
-
}: CardBodyProps) =>
|
|
447
|
+
}: CardBodyProps) => react_jsx_runtime14.JSX.Element;
|
|
322
448
|
Description: ({
|
|
323
449
|
className,
|
|
324
450
|
...props
|
|
325
|
-
}: CardDescriptionProps) =>
|
|
451
|
+
}: CardDescriptionProps) => react_jsx_runtime14.JSX.Element;
|
|
326
452
|
Footer: ({
|
|
327
453
|
className,
|
|
328
454
|
...props
|
|
329
|
-
}: CardFooterProps) =>
|
|
455
|
+
}: CardFooterProps) => react_jsx_runtime14.JSX.Element;
|
|
330
456
|
Header: ({
|
|
331
457
|
className,
|
|
332
458
|
...props
|
|
333
|
-
}: CardHeaderProps) =>
|
|
459
|
+
}: CardHeaderProps) => react_jsx_runtime14.JSX.Element;
|
|
334
460
|
Root: /*elided*/any;
|
|
335
461
|
Title: ({
|
|
336
462
|
className,
|
|
337
463
|
...props
|
|
338
|
-
}: CardTitle) =>
|
|
464
|
+
}: CardTitle) => react_jsx_runtime14.JSX.Element;
|
|
339
465
|
};
|
|
340
466
|
interface CardHeaderProps extends React.ComponentProps<"div"> {}
|
|
341
467
|
interface CardBodyProps extends React.ComponentProps<"div"> {}
|
|
@@ -344,22 +470,22 @@ interface CardTitle extends React.ComponentProps<"h2"> {}
|
|
|
344
470
|
interface CardDescriptionProps extends React.ComponentProps<"p"> {}
|
|
345
471
|
//#endregion
|
|
346
472
|
//#region src/components/checkbox/checkbox.variants.d.ts
|
|
347
|
-
declare const checkboxVariants:
|
|
473
|
+
declare const checkboxVariants: tailwind_variants7.TVReturnType<{
|
|
348
474
|
[key: string]: {
|
|
349
|
-
[key: string]:
|
|
350
|
-
root?:
|
|
351
|
-
label?:
|
|
352
|
-
checkboxIcon?:
|
|
353
|
-
indicator?:
|
|
475
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
476
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
477
|
+
label?: tailwind_merge44.ClassNameValue;
|
|
478
|
+
checkboxIcon?: tailwind_merge44.ClassNameValue;
|
|
479
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
354
480
|
};
|
|
355
481
|
};
|
|
356
482
|
} | {
|
|
357
483
|
[x: string]: {
|
|
358
|
-
[x: string]:
|
|
359
|
-
root?:
|
|
360
|
-
label?:
|
|
361
|
-
checkboxIcon?:
|
|
362
|
-
indicator?:
|
|
484
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
485
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
486
|
+
label?: tailwind_merge44.ClassNameValue;
|
|
487
|
+
checkboxIcon?: tailwind_merge44.ClassNameValue;
|
|
488
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
363
489
|
};
|
|
364
490
|
};
|
|
365
491
|
} | {}, {
|
|
@@ -369,11 +495,11 @@ declare const checkboxVariants: tailwind_variants0.TVReturnType<{
|
|
|
369
495
|
root: string;
|
|
370
496
|
}, undefined, {
|
|
371
497
|
[key: string]: {
|
|
372
|
-
[key: string]:
|
|
373
|
-
root?:
|
|
374
|
-
label?:
|
|
375
|
-
checkboxIcon?:
|
|
376
|
-
indicator?:
|
|
498
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
499
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
500
|
+
label?: tailwind_merge44.ClassNameValue;
|
|
501
|
+
checkboxIcon?: tailwind_merge44.ClassNameValue;
|
|
502
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
377
503
|
};
|
|
378
504
|
};
|
|
379
505
|
} | {}, {
|
|
@@ -381,7 +507,7 @@ declare const checkboxVariants: tailwind_variants0.TVReturnType<{
|
|
|
381
507
|
indicator: string;
|
|
382
508
|
label: string;
|
|
383
509
|
root: string;
|
|
384
|
-
},
|
|
510
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
385
511
|
checkboxIcon: string;
|
|
386
512
|
indicator: string;
|
|
387
513
|
label: string;
|
|
@@ -395,17 +521,17 @@ declare const Checkbox: {
|
|
|
395
521
|
({
|
|
396
522
|
className,
|
|
397
523
|
...props
|
|
398
|
-
}: CheckboxProps):
|
|
524
|
+
}: CheckboxProps): react_jsx_runtime14.JSX.Element;
|
|
399
525
|
Indicator: ({
|
|
400
526
|
className,
|
|
401
527
|
...props
|
|
402
|
-
}: CheckboxIndicatorProps) =>
|
|
528
|
+
}: CheckboxIndicatorProps) => react_jsx_runtime14.JSX.Element;
|
|
403
529
|
Root: /*elided*/any;
|
|
404
530
|
};
|
|
405
531
|
interface CheckboxIndicatorProps extends Checkbox$1.Indicator.Props {}
|
|
406
532
|
//#endregion
|
|
407
533
|
//#region src/components/checkbox-group/checkbox-group.variants.d.ts
|
|
408
|
-
declare const checkboxGroupVariants:
|
|
534
|
+
declare const checkboxGroupVariants: tailwind_variants7.TVReturnType<{} | {} | {}, undefined, "checkbox-group", {} | {}, undefined, tailwind_variants7.TVReturnType<unknown, undefined, "checkbox-group", unknown, unknown, undefined>>;
|
|
409
535
|
type CheckboxGroupVariants = VariantProps<typeof checkboxGroupVariants>;
|
|
410
536
|
//#endregion
|
|
411
537
|
//#region src/components/checkbox-group/checkbox-group.d.ts
|
|
@@ -413,10 +539,10 @@ interface CheckboxGroupProps extends CheckboxGroupVariants, CheckboxGroup$1.Prop
|
|
|
413
539
|
declare const CheckboxGroup: ({
|
|
414
540
|
className,
|
|
415
541
|
...props
|
|
416
|
-
}: CheckboxGroupProps) =>
|
|
542
|
+
}: CheckboxGroupProps) => react_jsx_runtime14.JSX.Element;
|
|
417
543
|
//#endregion
|
|
418
544
|
//#region src/components/chip/chip.variants.d.ts
|
|
419
|
-
declare const chipVariants:
|
|
545
|
+
declare const chipVariants: tailwind_variants7.TVReturnType<{
|
|
420
546
|
size: {
|
|
421
547
|
lg: string;
|
|
422
548
|
md: string;
|
|
@@ -442,7 +568,7 @@ declare const chipVariants: tailwind_variants0.TVReturnType<{
|
|
|
442
568
|
secondary: string;
|
|
443
569
|
success: string;
|
|
444
570
|
};
|
|
445
|
-
}, undefined,
|
|
571
|
+
}, undefined, tailwind_variants7.TVReturnType<{
|
|
446
572
|
size: {
|
|
447
573
|
lg: string;
|
|
448
574
|
md: string;
|
|
@@ -465,10 +591,10 @@ declare const Chip: ({
|
|
|
465
591
|
variant,
|
|
466
592
|
size,
|
|
467
593
|
...props
|
|
468
|
-
}: ChipProps) =>
|
|
594
|
+
}: ChipProps) => react_jsx_runtime14.JSX.Element;
|
|
469
595
|
//#endregion
|
|
470
596
|
//#region src/components/container/container.variants.d.ts
|
|
471
|
-
declare const containerVariants:
|
|
597
|
+
declare const containerVariants: tailwind_variants7.TVReturnType<{} | {} | {}, undefined, "container", {} | {}, undefined, tailwind_variants7.TVReturnType<unknown, undefined, "container", unknown, unknown, undefined>>;
|
|
472
598
|
type ContainerVariants = VariantProps<typeof containerVariants>;
|
|
473
599
|
//#endregion
|
|
474
600
|
//#region src/components/container/container.d.ts
|
|
@@ -476,35 +602,35 @@ interface ContainerProps extends ContainerVariants, React.ComponentProps<"div">
|
|
|
476
602
|
declare const Container: ({
|
|
477
603
|
className,
|
|
478
604
|
...props
|
|
479
|
-
}: ContainerProps) =>
|
|
605
|
+
}: ContainerProps) => react_jsx_runtime14.JSX.Element;
|
|
480
606
|
//#endregion
|
|
481
607
|
//#region src/components/dialog/dialog.variants.d.ts
|
|
482
|
-
declare const dialogVariants:
|
|
608
|
+
declare const dialogVariants: tailwind_variants7.TVReturnType<{
|
|
483
609
|
[key: string]: {
|
|
484
|
-
[key: string]:
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
viewport?:
|
|
610
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
611
|
+
backdrop?: tailwind_merge44.ClassNameValue;
|
|
612
|
+
close?: tailwind_merge44.ClassNameValue;
|
|
613
|
+
description?: tailwind_merge44.ClassNameValue;
|
|
614
|
+
popup?: tailwind_merge44.ClassNameValue;
|
|
615
|
+
portal?: tailwind_merge44.ClassNameValue;
|
|
616
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
617
|
+
title?: tailwind_merge44.ClassNameValue;
|
|
618
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
619
|
+
viewport?: tailwind_merge44.ClassNameValue;
|
|
494
620
|
};
|
|
495
621
|
};
|
|
496
622
|
} | {
|
|
497
623
|
[x: string]: {
|
|
498
|
-
[x: string]:
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
viewport?:
|
|
624
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
625
|
+
backdrop?: tailwind_merge44.ClassNameValue;
|
|
626
|
+
close?: tailwind_merge44.ClassNameValue;
|
|
627
|
+
description?: tailwind_merge44.ClassNameValue;
|
|
628
|
+
popup?: tailwind_merge44.ClassNameValue;
|
|
629
|
+
portal?: tailwind_merge44.ClassNameValue;
|
|
630
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
631
|
+
title?: tailwind_merge44.ClassNameValue;
|
|
632
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
633
|
+
viewport?: tailwind_merge44.ClassNameValue;
|
|
508
634
|
};
|
|
509
635
|
};
|
|
510
636
|
} | {}, {
|
|
@@ -519,16 +645,16 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
519
645
|
viewport: string;
|
|
520
646
|
}, undefined, {
|
|
521
647
|
[key: string]: {
|
|
522
|
-
[key: string]:
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
viewport?:
|
|
648
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
649
|
+
backdrop?: tailwind_merge44.ClassNameValue;
|
|
650
|
+
close?: tailwind_merge44.ClassNameValue;
|
|
651
|
+
description?: tailwind_merge44.ClassNameValue;
|
|
652
|
+
popup?: tailwind_merge44.ClassNameValue;
|
|
653
|
+
portal?: tailwind_merge44.ClassNameValue;
|
|
654
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
655
|
+
title?: tailwind_merge44.ClassNameValue;
|
|
656
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
657
|
+
viewport?: tailwind_merge44.ClassNameValue;
|
|
532
658
|
};
|
|
533
659
|
};
|
|
534
660
|
} | {}, {
|
|
@@ -541,7 +667,7 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
541
667
|
title: string;
|
|
542
668
|
trigger: string;
|
|
543
669
|
viewport: string;
|
|
544
|
-
},
|
|
670
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
545
671
|
backdrop: string;
|
|
546
672
|
close: string;
|
|
547
673
|
description: string;
|
|
@@ -559,40 +685,40 @@ interface DialogProps extends DialogVariants, Dialog$1.Root.Props {}
|
|
|
559
685
|
declare const Dialog: {
|
|
560
686
|
({
|
|
561
687
|
...props
|
|
562
|
-
}: DialogProps):
|
|
688
|
+
}: DialogProps): react_jsx_runtime14.JSX.Element;
|
|
563
689
|
Backdrop: ({
|
|
564
690
|
className,
|
|
565
691
|
...props
|
|
566
|
-
}: DialogBackdropProps) =>
|
|
692
|
+
}: DialogBackdropProps) => react_jsx_runtime14.JSX.Element;
|
|
567
693
|
Close: ({
|
|
568
694
|
className,
|
|
569
695
|
...props
|
|
570
|
-
}: DialogCloseProps) =>
|
|
696
|
+
}: DialogCloseProps) => react_jsx_runtime14.JSX.Element;
|
|
571
697
|
Description: ({
|
|
572
698
|
className,
|
|
573
699
|
...props
|
|
574
|
-
}: DialogDescriptionProps) =>
|
|
700
|
+
}: DialogDescriptionProps) => react_jsx_runtime14.JSX.Element;
|
|
575
701
|
Popup: ({
|
|
576
702
|
className,
|
|
577
703
|
...props
|
|
578
|
-
}: DialogPopupProps) =>
|
|
704
|
+
}: DialogPopupProps) => react_jsx_runtime14.JSX.Element;
|
|
579
705
|
Portal: ({
|
|
580
706
|
className,
|
|
581
707
|
...props
|
|
582
|
-
}: DialogPortalProps) =>
|
|
708
|
+
}: DialogPortalProps) => react_jsx_runtime14.JSX.Element;
|
|
583
709
|
Root: /*elided*/any;
|
|
584
710
|
Title: ({
|
|
585
711
|
className,
|
|
586
712
|
...props
|
|
587
|
-
}: DialogTitleProps) =>
|
|
713
|
+
}: DialogTitleProps) => react_jsx_runtime14.JSX.Element;
|
|
588
714
|
Trigger: ({
|
|
589
715
|
className,
|
|
590
716
|
...props
|
|
591
|
-
}: DialogTriggerProps) =>
|
|
717
|
+
}: DialogTriggerProps) => react_jsx_runtime14.JSX.Element;
|
|
592
718
|
Viewport: ({
|
|
593
719
|
className,
|
|
594
720
|
...props
|
|
595
|
-
}: DialogViewportProps) =>
|
|
721
|
+
}: DialogViewportProps) => react_jsx_runtime14.JSX.Element;
|
|
596
722
|
};
|
|
597
723
|
interface DialogTriggerProps extends Dialog$1.Trigger.Props {}
|
|
598
724
|
interface DialogPortalProps extends Dialog$1.Portal.Props {}
|
|
@@ -604,7 +730,7 @@ interface DialogDescriptionProps extends Dialog$1.Description.Props {}
|
|
|
604
730
|
interface DialogCloseProps extends Dialog$1.Close.Props {}
|
|
605
731
|
//#endregion
|
|
606
732
|
//#region src/components/field/field.variants.d.ts
|
|
607
|
-
declare const fieldVariants:
|
|
733
|
+
declare const fieldVariants: tailwind_variants7.TVReturnType<{
|
|
608
734
|
size: {
|
|
609
735
|
lg: {
|
|
610
736
|
control: string;
|
|
@@ -640,7 +766,7 @@ declare const fieldVariants: tailwind_variants0.TVReturnType<{
|
|
|
640
766
|
error: string;
|
|
641
767
|
label: string;
|
|
642
768
|
root: string;
|
|
643
|
-
},
|
|
769
|
+
}, tailwind_variants7.TVReturnType<{
|
|
644
770
|
size: {
|
|
645
771
|
lg: {
|
|
646
772
|
control: string;
|
|
@@ -668,23 +794,23 @@ declare const Field: {
|
|
|
668
794
|
className,
|
|
669
795
|
size,
|
|
670
796
|
...props
|
|
671
|
-
}: FieldProps):
|
|
797
|
+
}: FieldProps): react_jsx_runtime14.JSX.Element;
|
|
672
798
|
Control: ({
|
|
673
799
|
className,
|
|
674
800
|
...props
|
|
675
|
-
}: FieldControlProps) =>
|
|
801
|
+
}: FieldControlProps) => react_jsx_runtime14.JSX.Element;
|
|
676
802
|
Description: ({
|
|
677
803
|
className,
|
|
678
804
|
...props
|
|
679
|
-
}: FieldDescriptionProps) =>
|
|
805
|
+
}: FieldDescriptionProps) => react_jsx_runtime14.JSX.Element;
|
|
680
806
|
Error: ({
|
|
681
807
|
className,
|
|
682
808
|
...props
|
|
683
|
-
}: FieldErrorProps) =>
|
|
809
|
+
}: FieldErrorProps) => react_jsx_runtime14.JSX.Element;
|
|
684
810
|
Label: ({
|
|
685
811
|
className,
|
|
686
812
|
...props
|
|
687
|
-
}: FieldLabelProps) =>
|
|
813
|
+
}: FieldLabelProps) => react_jsx_runtime14.JSX.Element;
|
|
688
814
|
Root: /*elided*/any;
|
|
689
815
|
};
|
|
690
816
|
interface FieldLabelProps extends React.ComponentProps<typeof Field$1.Label> {}
|
|
@@ -693,7 +819,7 @@ interface FieldControlProps extends React.ComponentProps<typeof Field$1.Control>
|
|
|
693
819
|
interface FieldErrorProps extends React.ComponentProps<typeof Field$1.Error> {}
|
|
694
820
|
//#endregion
|
|
695
821
|
//#region src/components/form/form.variants.d.ts
|
|
696
|
-
declare const formVariants:
|
|
822
|
+
declare const formVariants: tailwind_variants7.TVReturnType<{} | {} | {}, undefined, "form", {} | {}, undefined, tailwind_variants7.TVReturnType<unknown, undefined, "form", unknown, unknown, undefined>>;
|
|
697
823
|
type FormVariants = VariantProps<typeof formVariants>;
|
|
698
824
|
//#endregion
|
|
699
825
|
//#region src/components/form/form.d.ts
|
|
@@ -701,10 +827,10 @@ interface FormProps extends FormVariants, React.ComponentProps<"form"> {}
|
|
|
701
827
|
declare const Form: ({
|
|
702
828
|
className,
|
|
703
829
|
...props
|
|
704
|
-
}: FormProps) =>
|
|
830
|
+
}: FormProps) => react_jsx_runtime14.JSX.Element;
|
|
705
831
|
//#endregion
|
|
706
832
|
//#region src/components/input/input.variants.d.ts
|
|
707
|
-
declare const inputVariants:
|
|
833
|
+
declare const inputVariants: tailwind_variants7.TVReturnType<{
|
|
708
834
|
inputSize: {
|
|
709
835
|
lg: string;
|
|
710
836
|
md: string;
|
|
@@ -716,7 +842,7 @@ declare const inputVariants: tailwind_variants0.TVReturnType<{
|
|
|
716
842
|
md: string;
|
|
717
843
|
sm: string;
|
|
718
844
|
};
|
|
719
|
-
}, undefined,
|
|
845
|
+
}, undefined, tailwind_variants7.TVReturnType<{
|
|
720
846
|
inputSize: {
|
|
721
847
|
lg: string;
|
|
722
848
|
md: string;
|
|
@@ -731,10 +857,10 @@ declare const Input: ({
|
|
|
731
857
|
className,
|
|
732
858
|
inputSize,
|
|
733
859
|
...props
|
|
734
|
-
}: InputProps) =>
|
|
860
|
+
}: InputProps) => react_jsx_runtime14.JSX.Element;
|
|
735
861
|
//#endregion
|
|
736
862
|
//#region src/components/label/label.variants.d.ts
|
|
737
|
-
declare const labelVariants:
|
|
863
|
+
declare const labelVariants: tailwind_variants7.TVReturnType<{} | {} | {}, undefined, "label", {} | {}, undefined, tailwind_variants7.TVReturnType<unknown, undefined, "label", unknown, unknown, undefined>>;
|
|
738
864
|
type LabelVariants = VariantProps<typeof labelVariants>;
|
|
739
865
|
//#endregion
|
|
740
866
|
//#region src/components/label/label.d.ts
|
|
@@ -742,10 +868,10 @@ interface LabelProps extends LabelVariants, React.ComponentProps<"label"> {}
|
|
|
742
868
|
declare const Label: ({
|
|
743
869
|
className,
|
|
744
870
|
...props
|
|
745
|
-
}: LabelProps) =>
|
|
871
|
+
}: LabelProps) => react_jsx_runtime14.JSX.Element;
|
|
746
872
|
//#endregion
|
|
747
873
|
//#region src/components/link/link.variants.d.ts
|
|
748
|
-
declare const linkVariants:
|
|
874
|
+
declare const linkVariants: tailwind_variants7.TVReturnType<{
|
|
749
875
|
variant: {
|
|
750
876
|
"no-underline": string;
|
|
751
877
|
underline: string;
|
|
@@ -755,7 +881,7 @@ declare const linkVariants: tailwind_variants0.TVReturnType<{
|
|
|
755
881
|
"no-underline": string;
|
|
756
882
|
underline: string;
|
|
757
883
|
};
|
|
758
|
-
}, undefined,
|
|
884
|
+
}, undefined, tailwind_variants7.TVReturnType<{
|
|
759
885
|
variant: {
|
|
760
886
|
"no-underline": string;
|
|
761
887
|
underline: string;
|
|
@@ -769,21 +895,21 @@ declare const Link: ({
|
|
|
769
895
|
className,
|
|
770
896
|
variant,
|
|
771
897
|
...props
|
|
772
|
-
}: LinkProps) =>
|
|
898
|
+
}: LinkProps) => react_jsx_runtime14.JSX.Element;
|
|
773
899
|
//#endregion
|
|
774
900
|
//#region src/components/list/list.variants.d.ts
|
|
775
|
-
declare const listVariants:
|
|
901
|
+
declare const listVariants: tailwind_variants7.TVReturnType<{
|
|
776
902
|
[key: string]: {
|
|
777
|
-
[key: string]:
|
|
778
|
-
|
|
779
|
-
|
|
903
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
904
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
905
|
+
item?: tailwind_merge44.ClassNameValue;
|
|
780
906
|
};
|
|
781
907
|
};
|
|
782
908
|
} | {
|
|
783
909
|
[x: string]: {
|
|
784
|
-
[x: string]:
|
|
785
|
-
|
|
786
|
-
|
|
910
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
911
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
912
|
+
item?: tailwind_merge44.ClassNameValue;
|
|
787
913
|
};
|
|
788
914
|
};
|
|
789
915
|
} | {}, {
|
|
@@ -791,15 +917,15 @@ declare const listVariants: tailwind_variants0.TVReturnType<{
|
|
|
791
917
|
root: string;
|
|
792
918
|
}, undefined, {
|
|
793
919
|
[key: string]: {
|
|
794
|
-
[key: string]:
|
|
795
|
-
|
|
796
|
-
|
|
920
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
921
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
922
|
+
item?: tailwind_merge44.ClassNameValue;
|
|
797
923
|
};
|
|
798
924
|
};
|
|
799
925
|
} | {}, {
|
|
800
926
|
item: string;
|
|
801
927
|
root: string;
|
|
802
|
-
},
|
|
928
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
803
929
|
item: string;
|
|
804
930
|
root: string;
|
|
805
931
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -811,56 +937,56 @@ declare const List: {
|
|
|
811
937
|
({
|
|
812
938
|
className,
|
|
813
939
|
...props
|
|
814
|
-
}: ListProps):
|
|
940
|
+
}: ListProps): react_jsx_runtime14.JSX.Element;
|
|
815
941
|
Root: /*elided*/any;
|
|
816
942
|
Item: ({
|
|
817
943
|
className,
|
|
818
944
|
...props
|
|
819
|
-
}: ListItemProps) =>
|
|
945
|
+
}: ListItemProps) => react_jsx_runtime14.JSX.Element;
|
|
820
946
|
};
|
|
821
947
|
interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
822
948
|
//#endregion
|
|
823
949
|
//#region src/components/menu/menu.variants.d.ts
|
|
824
|
-
declare const menuVariants:
|
|
950
|
+
declare const menuVariants: tailwind_variants7.TVReturnType<{
|
|
825
951
|
[key: string]: {
|
|
826
|
-
[key: string]:
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
arrow?:
|
|
835
|
-
checkboxItem?:
|
|
836
|
-
group?:
|
|
837
|
-
groupLabel?:
|
|
838
|
-
positioner?:
|
|
839
|
-
radioItem?:
|
|
840
|
-
separator?:
|
|
841
|
-
submenu?:
|
|
842
|
-
submenuTrigger?:
|
|
952
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
953
|
+
backdrop?: tailwind_merge44.ClassNameValue;
|
|
954
|
+
popup?: tailwind_merge44.ClassNameValue;
|
|
955
|
+
portal?: tailwind_merge44.ClassNameValue;
|
|
956
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
957
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
958
|
+
radioGroup?: tailwind_merge44.ClassNameValue;
|
|
959
|
+
item?: tailwind_merge44.ClassNameValue;
|
|
960
|
+
arrow?: tailwind_merge44.ClassNameValue;
|
|
961
|
+
checkboxItem?: tailwind_merge44.ClassNameValue;
|
|
962
|
+
group?: tailwind_merge44.ClassNameValue;
|
|
963
|
+
groupLabel?: tailwind_merge44.ClassNameValue;
|
|
964
|
+
positioner?: tailwind_merge44.ClassNameValue;
|
|
965
|
+
radioItem?: tailwind_merge44.ClassNameValue;
|
|
966
|
+
separator?: tailwind_merge44.ClassNameValue;
|
|
967
|
+
submenu?: tailwind_merge44.ClassNameValue;
|
|
968
|
+
submenuTrigger?: tailwind_merge44.ClassNameValue;
|
|
843
969
|
};
|
|
844
970
|
};
|
|
845
971
|
} | {
|
|
846
972
|
[x: string]: {
|
|
847
|
-
[x: string]:
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
arrow?:
|
|
856
|
-
checkboxItem?:
|
|
857
|
-
group?:
|
|
858
|
-
groupLabel?:
|
|
859
|
-
positioner?:
|
|
860
|
-
radioItem?:
|
|
861
|
-
separator?:
|
|
862
|
-
submenu?:
|
|
863
|
-
submenuTrigger?:
|
|
973
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
974
|
+
backdrop?: tailwind_merge44.ClassNameValue;
|
|
975
|
+
popup?: tailwind_merge44.ClassNameValue;
|
|
976
|
+
portal?: tailwind_merge44.ClassNameValue;
|
|
977
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
978
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
979
|
+
radioGroup?: tailwind_merge44.ClassNameValue;
|
|
980
|
+
item?: tailwind_merge44.ClassNameValue;
|
|
981
|
+
arrow?: tailwind_merge44.ClassNameValue;
|
|
982
|
+
checkboxItem?: tailwind_merge44.ClassNameValue;
|
|
983
|
+
group?: tailwind_merge44.ClassNameValue;
|
|
984
|
+
groupLabel?: tailwind_merge44.ClassNameValue;
|
|
985
|
+
positioner?: tailwind_merge44.ClassNameValue;
|
|
986
|
+
radioItem?: tailwind_merge44.ClassNameValue;
|
|
987
|
+
separator?: tailwind_merge44.ClassNameValue;
|
|
988
|
+
submenu?: tailwind_merge44.ClassNameValue;
|
|
989
|
+
submenuTrigger?: tailwind_merge44.ClassNameValue;
|
|
864
990
|
};
|
|
865
991
|
};
|
|
866
992
|
} | {}, {
|
|
@@ -882,23 +1008,23 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
882
1008
|
trigger: string;
|
|
883
1009
|
}, undefined, {
|
|
884
1010
|
[key: string]: {
|
|
885
|
-
[key: string]:
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
arrow?:
|
|
894
|
-
checkboxItem?:
|
|
895
|
-
group?:
|
|
896
|
-
groupLabel?:
|
|
897
|
-
positioner?:
|
|
898
|
-
radioItem?:
|
|
899
|
-
separator?:
|
|
900
|
-
submenu?:
|
|
901
|
-
submenuTrigger?:
|
|
1011
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1012
|
+
backdrop?: tailwind_merge44.ClassNameValue;
|
|
1013
|
+
popup?: tailwind_merge44.ClassNameValue;
|
|
1014
|
+
portal?: tailwind_merge44.ClassNameValue;
|
|
1015
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1016
|
+
trigger?: tailwind_merge44.ClassNameValue;
|
|
1017
|
+
radioGroup?: tailwind_merge44.ClassNameValue;
|
|
1018
|
+
item?: tailwind_merge44.ClassNameValue;
|
|
1019
|
+
arrow?: tailwind_merge44.ClassNameValue;
|
|
1020
|
+
checkboxItem?: tailwind_merge44.ClassNameValue;
|
|
1021
|
+
group?: tailwind_merge44.ClassNameValue;
|
|
1022
|
+
groupLabel?: tailwind_merge44.ClassNameValue;
|
|
1023
|
+
positioner?: tailwind_merge44.ClassNameValue;
|
|
1024
|
+
radioItem?: tailwind_merge44.ClassNameValue;
|
|
1025
|
+
separator?: tailwind_merge44.ClassNameValue;
|
|
1026
|
+
submenu?: tailwind_merge44.ClassNameValue;
|
|
1027
|
+
submenuTrigger?: tailwind_merge44.ClassNameValue;
|
|
902
1028
|
};
|
|
903
1029
|
};
|
|
904
1030
|
} | {}, {
|
|
@@ -918,7 +1044,7 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
918
1044
|
submenu: string;
|
|
919
1045
|
submenuTrigger: string;
|
|
920
1046
|
trigger: string;
|
|
921
|
-
},
|
|
1047
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
922
1048
|
arrow: string;
|
|
923
1049
|
backdrop: string;
|
|
924
1050
|
checkboxItem: string;
|
|
@@ -943,67 +1069,67 @@ interface MenuProps extends MenuVariants, Menu$1.Root.Props {}
|
|
|
943
1069
|
declare const Menu: {
|
|
944
1070
|
({
|
|
945
1071
|
...props
|
|
946
|
-
}: MenuProps):
|
|
1072
|
+
}: MenuProps): react_jsx_runtime14.JSX.Element;
|
|
947
1073
|
Arrow: ({
|
|
948
1074
|
className,
|
|
949
1075
|
...props
|
|
950
|
-
}: MenuArrowProps) =>
|
|
1076
|
+
}: MenuArrowProps) => react_jsx_runtime14.JSX.Element;
|
|
951
1077
|
Backdrop: ({
|
|
952
1078
|
className,
|
|
953
1079
|
...props
|
|
954
|
-
}: MenuBackdropProps) =>
|
|
1080
|
+
}: MenuBackdropProps) => react_jsx_runtime14.JSX.Element;
|
|
955
1081
|
CheckboxItem: ({
|
|
956
1082
|
className,
|
|
957
1083
|
...props
|
|
958
|
-
}: MenuCheckboxItemProps) =>
|
|
1084
|
+
}: MenuCheckboxItemProps) => react_jsx_runtime14.JSX.Element;
|
|
959
1085
|
Group: ({
|
|
960
1086
|
className,
|
|
961
1087
|
...props
|
|
962
|
-
}: MenuGroupProps) =>
|
|
1088
|
+
}: MenuGroupProps) => react_jsx_runtime14.JSX.Element;
|
|
963
1089
|
GroupLabel: ({
|
|
964
1090
|
className,
|
|
965
1091
|
...props
|
|
966
|
-
}: MenuGroupLabelProps) =>
|
|
1092
|
+
}: MenuGroupLabelProps) => react_jsx_runtime14.JSX.Element;
|
|
967
1093
|
Item: ({
|
|
968
1094
|
className,
|
|
969
1095
|
...props
|
|
970
|
-
}: MenuItemProps) =>
|
|
1096
|
+
}: MenuItemProps) => react_jsx_runtime14.JSX.Element;
|
|
971
1097
|
Popup: ({
|
|
972
1098
|
className,
|
|
973
1099
|
...props
|
|
974
|
-
}: MenuPopupProps) =>
|
|
1100
|
+
}: MenuPopupProps) => react_jsx_runtime14.JSX.Element;
|
|
975
1101
|
Portal: ({
|
|
976
1102
|
className,
|
|
977
1103
|
...props
|
|
978
|
-
}: MenuPortalProps) =>
|
|
1104
|
+
}: MenuPortalProps) => react_jsx_runtime14.JSX.Element;
|
|
979
1105
|
Positioner: ({
|
|
980
1106
|
className,
|
|
981
1107
|
...props
|
|
982
|
-
}: MenuPositionerProps) =>
|
|
1108
|
+
}: MenuPositionerProps) => react_jsx_runtime14.JSX.Element;
|
|
983
1109
|
RadioGroup: ({
|
|
984
1110
|
className,
|
|
985
1111
|
...props
|
|
986
|
-
}: MenuRadioGroupProps) =>
|
|
1112
|
+
}: MenuRadioGroupProps) => react_jsx_runtime14.JSX.Element;
|
|
987
1113
|
RadioItem: ({
|
|
988
1114
|
className,
|
|
989
1115
|
...props
|
|
990
|
-
}: MenuRadioItemProps) =>
|
|
1116
|
+
}: MenuRadioItemProps) => react_jsx_runtime14.JSX.Element;
|
|
991
1117
|
Root: /*elided*/any;
|
|
992
1118
|
Separator: ({
|
|
993
1119
|
className,
|
|
994
1120
|
...props
|
|
995
|
-
}: MenuSeparatorProps) =>
|
|
1121
|
+
}: MenuSeparatorProps) => react_jsx_runtime14.JSX.Element;
|
|
996
1122
|
Submenu: ({
|
|
997
1123
|
...props
|
|
998
|
-
}: MenuSubmenuProps) =>
|
|
1124
|
+
}: MenuSubmenuProps) => react_jsx_runtime14.JSX.Element;
|
|
999
1125
|
SubmenuTrigger: ({
|
|
1000
1126
|
className,
|
|
1001
1127
|
...props
|
|
1002
|
-
}: MenuSubmenuTriggerProps) =>
|
|
1128
|
+
}: MenuSubmenuTriggerProps) => react_jsx_runtime14.JSX.Element;
|
|
1003
1129
|
Trigger: ({
|
|
1004
1130
|
className,
|
|
1005
1131
|
...props
|
|
1006
|
-
}: MenuTriggerProps) =>
|
|
1132
|
+
}: MenuTriggerProps) => react_jsx_runtime14.JSX.Element;
|
|
1007
1133
|
};
|
|
1008
1134
|
interface MenuTriggerProps extends MenuVariants, Menu$1.Trigger.Props {}
|
|
1009
1135
|
interface MenuPortalProps extends MenuVariants, Menu$1.Portal.Props {}
|
|
@@ -1022,7 +1148,7 @@ interface MenuSubmenuProps extends MenuVariants, Menu$1.SubmenuRoot.Props {}
|
|
|
1022
1148
|
interface MenuSubmenuTriggerProps extends MenuVariants, Menu$1.SubmenuTrigger.Props {}
|
|
1023
1149
|
//#endregion
|
|
1024
1150
|
//#region src/components/meter/meter.variants.d.ts
|
|
1025
|
-
declare const meterVariants:
|
|
1151
|
+
declare const meterVariants: tailwind_variants7.TVReturnType<{
|
|
1026
1152
|
size: {
|
|
1027
1153
|
lg: {
|
|
1028
1154
|
root: string;
|
|
@@ -1086,7 +1212,7 @@ declare const meterVariants: tailwind_variants0.TVReturnType<{
|
|
|
1086
1212
|
root: string;
|
|
1087
1213
|
track: string;
|
|
1088
1214
|
value: string;
|
|
1089
|
-
},
|
|
1215
|
+
}, tailwind_variants7.TVReturnType<{
|
|
1090
1216
|
size: {
|
|
1091
1217
|
lg: {
|
|
1092
1218
|
root: string;
|
|
@@ -1129,24 +1255,24 @@ declare const Meter: {
|
|
|
1129
1255
|
size,
|
|
1130
1256
|
variant,
|
|
1131
1257
|
...props
|
|
1132
|
-
}: MeterProps):
|
|
1258
|
+
}: MeterProps): react_jsx_runtime14.JSX.Element;
|
|
1133
1259
|
Indicator: ({
|
|
1134
1260
|
className,
|
|
1135
1261
|
...props
|
|
1136
|
-
}: MeterIndicatorProps) =>
|
|
1262
|
+
}: MeterIndicatorProps) => react_jsx_runtime14.JSX.Element;
|
|
1137
1263
|
Label: ({
|
|
1138
1264
|
className,
|
|
1139
1265
|
...props
|
|
1140
|
-
}: MeterLabelProps) =>
|
|
1266
|
+
}: MeterLabelProps) => react_jsx_runtime14.JSX.Element;
|
|
1141
1267
|
Root: /*elided*/any;
|
|
1142
1268
|
Track: ({
|
|
1143
1269
|
className,
|
|
1144
1270
|
...props
|
|
1145
|
-
}: MeterTrackProps) =>
|
|
1271
|
+
}: MeterTrackProps) => react_jsx_runtime14.JSX.Element;
|
|
1146
1272
|
Value: ({
|
|
1147
1273
|
className,
|
|
1148
1274
|
...props
|
|
1149
|
-
}: MeterValueProps) =>
|
|
1275
|
+
}: MeterValueProps) => react_jsx_runtime14.JSX.Element;
|
|
1150
1276
|
};
|
|
1151
1277
|
interface MeterLabelProps extends Meter$1.Label.Props {}
|
|
1152
1278
|
interface MeterValueProps extends Meter$1.Value.Props {}
|
|
@@ -1154,30 +1280,30 @@ interface MeterTrackProps extends Meter$1.Track.Props {}
|
|
|
1154
1280
|
interface MeterIndicatorProps extends Meter$1.Indicator.Props {}
|
|
1155
1281
|
//#endregion
|
|
1156
1282
|
//#region src/components/navbar/navbar.variants.d.ts
|
|
1157
|
-
declare const navbarVariants:
|
|
1283
|
+
declare const navbarVariants: tailwind_variants7.TVReturnType<{
|
|
1158
1284
|
[key: string]: {
|
|
1159
|
-
[key: string]:
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
container?:
|
|
1164
|
-
list?:
|
|
1165
|
-
listItem?:
|
|
1166
|
-
menuItem?:
|
|
1167
|
-
toggle?:
|
|
1285
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1286
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1287
|
+
menu?: tailwind_merge44.ClassNameValue;
|
|
1288
|
+
content?: tailwind_merge44.ClassNameValue;
|
|
1289
|
+
container?: tailwind_merge44.ClassNameValue;
|
|
1290
|
+
list?: tailwind_merge44.ClassNameValue;
|
|
1291
|
+
listItem?: tailwind_merge44.ClassNameValue;
|
|
1292
|
+
menuItem?: tailwind_merge44.ClassNameValue;
|
|
1293
|
+
toggle?: tailwind_merge44.ClassNameValue;
|
|
1168
1294
|
};
|
|
1169
1295
|
};
|
|
1170
1296
|
} | {
|
|
1171
1297
|
[x: string]: {
|
|
1172
|
-
[x: string]:
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
container?:
|
|
1177
|
-
list?:
|
|
1178
|
-
listItem?:
|
|
1179
|
-
menuItem?:
|
|
1180
|
-
toggle?:
|
|
1298
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
1299
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1300
|
+
menu?: tailwind_merge44.ClassNameValue;
|
|
1301
|
+
content?: tailwind_merge44.ClassNameValue;
|
|
1302
|
+
container?: tailwind_merge44.ClassNameValue;
|
|
1303
|
+
list?: tailwind_merge44.ClassNameValue;
|
|
1304
|
+
listItem?: tailwind_merge44.ClassNameValue;
|
|
1305
|
+
menuItem?: tailwind_merge44.ClassNameValue;
|
|
1306
|
+
toggle?: tailwind_merge44.ClassNameValue;
|
|
1181
1307
|
};
|
|
1182
1308
|
};
|
|
1183
1309
|
} | {}, {
|
|
@@ -1191,15 +1317,15 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1191
1317
|
toggle: string;
|
|
1192
1318
|
}, undefined, {
|
|
1193
1319
|
[key: string]: {
|
|
1194
|
-
[key: string]:
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
container?:
|
|
1199
|
-
list?:
|
|
1200
|
-
listItem?:
|
|
1201
|
-
menuItem?:
|
|
1202
|
-
toggle?:
|
|
1320
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1321
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1322
|
+
menu?: tailwind_merge44.ClassNameValue;
|
|
1323
|
+
content?: tailwind_merge44.ClassNameValue;
|
|
1324
|
+
container?: tailwind_merge44.ClassNameValue;
|
|
1325
|
+
list?: tailwind_merge44.ClassNameValue;
|
|
1326
|
+
listItem?: tailwind_merge44.ClassNameValue;
|
|
1327
|
+
menuItem?: tailwind_merge44.ClassNameValue;
|
|
1328
|
+
toggle?: tailwind_merge44.ClassNameValue;
|
|
1203
1329
|
};
|
|
1204
1330
|
};
|
|
1205
1331
|
} | {}, {
|
|
@@ -1211,7 +1337,7 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1211
1337
|
menuItem: string;
|
|
1212
1338
|
root: string;
|
|
1213
1339
|
toggle: string;
|
|
1214
|
-
},
|
|
1340
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
1215
1341
|
container: string;
|
|
1216
1342
|
content: string;
|
|
1217
1343
|
list: string;
|
|
@@ -1234,36 +1360,36 @@ declare const Navbar: {
|
|
|
1234
1360
|
isOpen,
|
|
1235
1361
|
onOpenChange,
|
|
1236
1362
|
...props
|
|
1237
|
-
}: NavbarProps):
|
|
1363
|
+
}: NavbarProps): react_jsx_runtime14.JSX.Element;
|
|
1238
1364
|
Root: /*elided*/any;
|
|
1239
1365
|
Container: ({
|
|
1240
1366
|
className,
|
|
1241
1367
|
...props
|
|
1242
|
-
}: NavbarContainerProps) =>
|
|
1368
|
+
}: NavbarContainerProps) => react_jsx_runtime14.JSX.Element;
|
|
1243
1369
|
Content: ({
|
|
1244
1370
|
className,
|
|
1245
1371
|
...props
|
|
1246
|
-
}: NavbarContentProps) =>
|
|
1372
|
+
}: NavbarContentProps) => react_jsx_runtime14.JSX.Element;
|
|
1247
1373
|
List: ({
|
|
1248
1374
|
className,
|
|
1249
1375
|
...props
|
|
1250
|
-
}: NavbarListProps) =>
|
|
1376
|
+
}: NavbarListProps) => react_jsx_runtime14.JSX.Element;
|
|
1251
1377
|
ListItem: ({
|
|
1252
1378
|
className,
|
|
1253
1379
|
...props
|
|
1254
|
-
}: NavbarListItemProps) =>
|
|
1380
|
+
}: NavbarListItemProps) => react_jsx_runtime14.JSX.Element;
|
|
1255
1381
|
Toggle: ({
|
|
1256
1382
|
className,
|
|
1257
1383
|
...props
|
|
1258
|
-
}: NavbarToggleProps) =>
|
|
1384
|
+
}: NavbarToggleProps) => react_jsx_runtime14.JSX.Element;
|
|
1259
1385
|
Menu: ({
|
|
1260
1386
|
className,
|
|
1261
1387
|
...props
|
|
1262
|
-
}: NavbarMenuProps) =>
|
|
1388
|
+
}: NavbarMenuProps) => react_jsx_runtime14.JSX.Element;
|
|
1263
1389
|
MenuItem: ({
|
|
1264
1390
|
className,
|
|
1265
1391
|
...props
|
|
1266
|
-
}: NavbarMenuItemProps) =>
|
|
1392
|
+
}: NavbarMenuItemProps) => react_jsx_runtime14.JSX.Element;
|
|
1267
1393
|
};
|
|
1268
1394
|
interface NavbarContainerProps extends React.ComponentProps<"nav"> {}
|
|
1269
1395
|
interface NavbarContentProps extends React.ComponentProps<"div"> {}
|
|
@@ -1273,8 +1399,86 @@ interface NavbarToggleProps extends React.ComponentProps<"button"> {}
|
|
|
1273
1399
|
interface NavbarMenuProps extends React.ComponentProps<"ul"> {}
|
|
1274
1400
|
interface NavbarMenuItemProps extends React.ComponentProps<"li"> {}
|
|
1275
1401
|
//#endregion
|
|
1402
|
+
//#region src/components/progress/progress.variants.d.ts
|
|
1403
|
+
declare const progressVariants: tailwind_variants7.TVReturnType<{
|
|
1404
|
+
[key: string]: {
|
|
1405
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1406
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1407
|
+
label?: tailwind_merge44.ClassNameValue;
|
|
1408
|
+
track?: tailwind_merge44.ClassNameValue;
|
|
1409
|
+
value?: tailwind_merge44.ClassNameValue;
|
|
1410
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
1411
|
+
};
|
|
1412
|
+
};
|
|
1413
|
+
} | {
|
|
1414
|
+
[x: string]: {
|
|
1415
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
1416
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1417
|
+
label?: tailwind_merge44.ClassNameValue;
|
|
1418
|
+
track?: tailwind_merge44.ClassNameValue;
|
|
1419
|
+
value?: tailwind_merge44.ClassNameValue;
|
|
1420
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
1421
|
+
};
|
|
1422
|
+
};
|
|
1423
|
+
} | {}, {
|
|
1424
|
+
indicator: string;
|
|
1425
|
+
label: string;
|
|
1426
|
+
root: string;
|
|
1427
|
+
track: string;
|
|
1428
|
+
value: string;
|
|
1429
|
+
}, undefined, {
|
|
1430
|
+
[key: string]: {
|
|
1431
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1432
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1433
|
+
label?: tailwind_merge44.ClassNameValue;
|
|
1434
|
+
track?: tailwind_merge44.ClassNameValue;
|
|
1435
|
+
value?: tailwind_merge44.ClassNameValue;
|
|
1436
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
1437
|
+
};
|
|
1438
|
+
};
|
|
1439
|
+
} | {}, {
|
|
1440
|
+
indicator: string;
|
|
1441
|
+
label: string;
|
|
1442
|
+
root: string;
|
|
1443
|
+
track: string;
|
|
1444
|
+
value: string;
|
|
1445
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
1446
|
+
indicator: string;
|
|
1447
|
+
label: string;
|
|
1448
|
+
root: string;
|
|
1449
|
+
track: string;
|
|
1450
|
+
value: string;
|
|
1451
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1452
|
+
type ProgressVariants = VariantProps<typeof progressVariants>;
|
|
1453
|
+
//#endregion
|
|
1454
|
+
//#region src/components/progress/progress.d.ts
|
|
1455
|
+
interface ProgressProps extends ProgressVariants, Progress$1.Root.Props {}
|
|
1456
|
+
declare const Progress: {
|
|
1457
|
+
({
|
|
1458
|
+
className,
|
|
1459
|
+
...props
|
|
1460
|
+
}: ProgressProps): react_jsx_runtime14.JSX.Element;
|
|
1461
|
+
Label: ({
|
|
1462
|
+
className,
|
|
1463
|
+
...props
|
|
1464
|
+
}: Progress$1.Label.Props) => react_jsx_runtime14.JSX.Element;
|
|
1465
|
+
Value: ({
|
|
1466
|
+
className,
|
|
1467
|
+
...props
|
|
1468
|
+
}: Progress$1.Value.Props) => react_jsx_runtime14.JSX.Element;
|
|
1469
|
+
Track: ({
|
|
1470
|
+
className,
|
|
1471
|
+
...props
|
|
1472
|
+
}: Progress$1.Track.Props) => react_jsx_runtime14.JSX.Element;
|
|
1473
|
+
Indicator: ({
|
|
1474
|
+
className,
|
|
1475
|
+
...props
|
|
1476
|
+
}: Progress$1.Indicator.Props) => react_jsx_runtime14.JSX.Element;
|
|
1477
|
+
Root: /*elided*/any;
|
|
1478
|
+
};
|
|
1479
|
+
//#endregion
|
|
1276
1480
|
//#region src/components/separator/separator.variants.d.ts
|
|
1277
|
-
declare const separatorVariants:
|
|
1481
|
+
declare const separatorVariants: tailwind_variants7.TVReturnType<{
|
|
1278
1482
|
orientation: {
|
|
1279
1483
|
horizontal: string;
|
|
1280
1484
|
vertical: string;
|
|
@@ -1284,7 +1488,7 @@ declare const separatorVariants: tailwind_variants0.TVReturnType<{
|
|
|
1284
1488
|
horizontal: string;
|
|
1285
1489
|
vertical: string;
|
|
1286
1490
|
};
|
|
1287
|
-
}, undefined,
|
|
1491
|
+
}, undefined, tailwind_variants7.TVReturnType<{
|
|
1288
1492
|
orientation: {
|
|
1289
1493
|
horizontal: string;
|
|
1290
1494
|
vertical: string;
|
|
@@ -1298,10 +1502,98 @@ declare const Separator: ({
|
|
|
1298
1502
|
className,
|
|
1299
1503
|
orientation,
|
|
1300
1504
|
...props
|
|
1301
|
-
}: SeparatorProps) =>
|
|
1505
|
+
}: SeparatorProps) => react_jsx_runtime14.JSX.Element;
|
|
1506
|
+
//#endregion
|
|
1507
|
+
//#region src/components/slider/slider.variants.d.ts
|
|
1508
|
+
declare const sliderVariants: tailwind_variants7.TVReturnType<{
|
|
1509
|
+
[key: string]: {
|
|
1510
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1511
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1512
|
+
track?: tailwind_merge44.ClassNameValue;
|
|
1513
|
+
value?: tailwind_merge44.ClassNameValue;
|
|
1514
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
1515
|
+
control?: tailwind_merge44.ClassNameValue;
|
|
1516
|
+
thumb?: tailwind_merge44.ClassNameValue;
|
|
1517
|
+
};
|
|
1518
|
+
};
|
|
1519
|
+
} | {
|
|
1520
|
+
[x: string]: {
|
|
1521
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
1522
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1523
|
+
track?: tailwind_merge44.ClassNameValue;
|
|
1524
|
+
value?: tailwind_merge44.ClassNameValue;
|
|
1525
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
1526
|
+
control?: tailwind_merge44.ClassNameValue;
|
|
1527
|
+
thumb?: tailwind_merge44.ClassNameValue;
|
|
1528
|
+
};
|
|
1529
|
+
};
|
|
1530
|
+
} | {}, {
|
|
1531
|
+
control: string;
|
|
1532
|
+
indicator: string;
|
|
1533
|
+
root: string;
|
|
1534
|
+
thumb: string;
|
|
1535
|
+
track: string;
|
|
1536
|
+
value: string;
|
|
1537
|
+
}, undefined, {
|
|
1538
|
+
[key: string]: {
|
|
1539
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1540
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1541
|
+
track?: tailwind_merge44.ClassNameValue;
|
|
1542
|
+
value?: tailwind_merge44.ClassNameValue;
|
|
1543
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
1544
|
+
control?: tailwind_merge44.ClassNameValue;
|
|
1545
|
+
thumb?: tailwind_merge44.ClassNameValue;
|
|
1546
|
+
};
|
|
1547
|
+
};
|
|
1548
|
+
} | {}, {
|
|
1549
|
+
control: string;
|
|
1550
|
+
indicator: string;
|
|
1551
|
+
root: string;
|
|
1552
|
+
thumb: string;
|
|
1553
|
+
track: string;
|
|
1554
|
+
value: string;
|
|
1555
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
1556
|
+
control: string;
|
|
1557
|
+
indicator: string;
|
|
1558
|
+
root: string;
|
|
1559
|
+
thumb: string;
|
|
1560
|
+
track: string;
|
|
1561
|
+
value: string;
|
|
1562
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1563
|
+
type SliderVariants = VariantProps<typeof sliderVariants>;
|
|
1564
|
+
//#endregion
|
|
1565
|
+
//#region src/components/slider/slider.d.ts
|
|
1566
|
+
interface SliderProps extends SliderVariants, Slider$1.Root.Props {}
|
|
1567
|
+
declare const Slider: {
|
|
1568
|
+
({
|
|
1569
|
+
className,
|
|
1570
|
+
...props
|
|
1571
|
+
}: SliderProps): react_jsx_runtime14.JSX.Element;
|
|
1572
|
+
Value: ({
|
|
1573
|
+
className,
|
|
1574
|
+
...props
|
|
1575
|
+
}: Slider$1.Value.Props) => react_jsx_runtime14.JSX.Element;
|
|
1576
|
+
Control: ({
|
|
1577
|
+
className,
|
|
1578
|
+
...props
|
|
1579
|
+
}: Slider$1.Control.Props) => react_jsx_runtime14.JSX.Element;
|
|
1580
|
+
Track: ({
|
|
1581
|
+
className,
|
|
1582
|
+
...props
|
|
1583
|
+
}: Slider$1.Track.Props) => react_jsx_runtime14.JSX.Element;
|
|
1584
|
+
Indicator: ({
|
|
1585
|
+
className,
|
|
1586
|
+
...props
|
|
1587
|
+
}: Slider$1.Indicator.Props) => react_jsx_runtime14.JSX.Element;
|
|
1588
|
+
Thumb: ({
|
|
1589
|
+
className,
|
|
1590
|
+
...props
|
|
1591
|
+
}: Slider$1.Thumb.Props) => react_jsx_runtime14.JSX.Element;
|
|
1592
|
+
Root: /*elided*/any;
|
|
1593
|
+
};
|
|
1302
1594
|
//#endregion
|
|
1303
1595
|
//#region src/components/switch/switch.variants.d.ts
|
|
1304
|
-
declare const switchVariants:
|
|
1596
|
+
declare const switchVariants: tailwind_variants7.TVReturnType<{
|
|
1305
1597
|
size: {
|
|
1306
1598
|
lg: {
|
|
1307
1599
|
root: string;
|
|
@@ -1331,7 +1623,7 @@ declare const switchVariants: tailwind_variants0.TVReturnType<{
|
|
|
1331
1623
|
}, {
|
|
1332
1624
|
root: string;
|
|
1333
1625
|
thumb: string;
|
|
1334
|
-
},
|
|
1626
|
+
}, tailwind_variants7.TVReturnType<{
|
|
1335
1627
|
size: {
|
|
1336
1628
|
lg: {
|
|
1337
1629
|
root: string;
|
|
@@ -1356,33 +1648,137 @@ declare const Switch: {
|
|
|
1356
1648
|
className,
|
|
1357
1649
|
size,
|
|
1358
1650
|
...props
|
|
1359
|
-
}: SwitchProps):
|
|
1651
|
+
}: SwitchProps): react_jsx_runtime14.JSX.Element;
|
|
1360
1652
|
Thumb: ({
|
|
1361
1653
|
className,
|
|
1362
1654
|
...props
|
|
1363
|
-
}: Switch$1.Thumb.Props) =>
|
|
1655
|
+
}: Switch$1.Thumb.Props) => react_jsx_runtime14.JSX.Element;
|
|
1656
|
+
Root: /*elided*/any;
|
|
1657
|
+
};
|
|
1658
|
+
//#endregion
|
|
1659
|
+
//#region src/components/table/table.variants.d.ts
|
|
1660
|
+
declare const tableVariants: tailwind_variants7.TVReturnType<{
|
|
1661
|
+
[key: string]: {
|
|
1662
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1663
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1664
|
+
tbody?: tailwind_merge44.ClassNameValue;
|
|
1665
|
+
td?: tailwind_merge44.ClassNameValue;
|
|
1666
|
+
tfoot?: tailwind_merge44.ClassNameValue;
|
|
1667
|
+
th?: tailwind_merge44.ClassNameValue;
|
|
1668
|
+
thead?: tailwind_merge44.ClassNameValue;
|
|
1669
|
+
tr?: tailwind_merge44.ClassNameValue;
|
|
1670
|
+
};
|
|
1671
|
+
};
|
|
1672
|
+
} | {
|
|
1673
|
+
[x: string]: {
|
|
1674
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
1675
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1676
|
+
tbody?: tailwind_merge44.ClassNameValue;
|
|
1677
|
+
td?: tailwind_merge44.ClassNameValue;
|
|
1678
|
+
tfoot?: tailwind_merge44.ClassNameValue;
|
|
1679
|
+
th?: tailwind_merge44.ClassNameValue;
|
|
1680
|
+
thead?: tailwind_merge44.ClassNameValue;
|
|
1681
|
+
tr?: tailwind_merge44.ClassNameValue;
|
|
1682
|
+
};
|
|
1683
|
+
};
|
|
1684
|
+
} | {}, {
|
|
1685
|
+
root: string;
|
|
1686
|
+
tbody: string;
|
|
1687
|
+
td: string;
|
|
1688
|
+
tfoot: string;
|
|
1689
|
+
th: string;
|
|
1690
|
+
thead: string;
|
|
1691
|
+
tr: string;
|
|
1692
|
+
}, undefined, {
|
|
1693
|
+
[key: string]: {
|
|
1694
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1695
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1696
|
+
tbody?: tailwind_merge44.ClassNameValue;
|
|
1697
|
+
td?: tailwind_merge44.ClassNameValue;
|
|
1698
|
+
tfoot?: tailwind_merge44.ClassNameValue;
|
|
1699
|
+
th?: tailwind_merge44.ClassNameValue;
|
|
1700
|
+
thead?: tailwind_merge44.ClassNameValue;
|
|
1701
|
+
tr?: tailwind_merge44.ClassNameValue;
|
|
1702
|
+
};
|
|
1703
|
+
};
|
|
1704
|
+
} | {}, {
|
|
1705
|
+
root: string;
|
|
1706
|
+
tbody: string;
|
|
1707
|
+
td: string;
|
|
1708
|
+
tfoot: string;
|
|
1709
|
+
th: string;
|
|
1710
|
+
thead: string;
|
|
1711
|
+
tr: string;
|
|
1712
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
1713
|
+
root: string;
|
|
1714
|
+
tbody: string;
|
|
1715
|
+
td: string;
|
|
1716
|
+
tfoot: string;
|
|
1717
|
+
th: string;
|
|
1718
|
+
thead: string;
|
|
1719
|
+
tr: string;
|
|
1720
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1721
|
+
type TableVariants = VariantProps<typeof tableVariants>;
|
|
1722
|
+
//#endregion
|
|
1723
|
+
//#region src/components/table/table.d.ts
|
|
1724
|
+
interface TableProps extends TableVariants, React.ComponentProps<"table"> {}
|
|
1725
|
+
declare const Table: {
|
|
1726
|
+
({
|
|
1727
|
+
className,
|
|
1728
|
+
...props
|
|
1729
|
+
}: TableProps): react_jsx_runtime14.JSX.Element;
|
|
1364
1730
|
Root: /*elided*/any;
|
|
1731
|
+
Head: ({
|
|
1732
|
+
className,
|
|
1733
|
+
...props
|
|
1734
|
+
}: TableHeadProps) => react_jsx_runtime14.JSX.Element;
|
|
1735
|
+
Row: ({
|
|
1736
|
+
className,
|
|
1737
|
+
...props
|
|
1738
|
+
}: TableRowProps) => react_jsx_runtime14.JSX.Element;
|
|
1739
|
+
HeaderCell: ({
|
|
1740
|
+
className,
|
|
1741
|
+
...props
|
|
1742
|
+
}: TableHeaderCellProps) => react_jsx_runtime14.JSX.Element;
|
|
1743
|
+
Body: ({
|
|
1744
|
+
className,
|
|
1745
|
+
...props
|
|
1746
|
+
}: TableBodyProps) => react_jsx_runtime14.JSX.Element;
|
|
1747
|
+
DataCell: ({
|
|
1748
|
+
className,
|
|
1749
|
+
...props
|
|
1750
|
+
}: TableDataCellProps) => react_jsx_runtime14.JSX.Element;
|
|
1751
|
+
Footer: ({
|
|
1752
|
+
className,
|
|
1753
|
+
...props
|
|
1754
|
+
}: TableFooterProps) => react_jsx_runtime14.JSX.Element;
|
|
1365
1755
|
};
|
|
1756
|
+
interface TableHeadProps extends React.ComponentProps<"thead"> {}
|
|
1757
|
+
interface TableRowProps extends React.ComponentProps<"tr"> {}
|
|
1758
|
+
interface TableHeaderCellProps extends React.ComponentProps<"th"> {}
|
|
1759
|
+
interface TableBodyProps extends React.ComponentProps<"tbody"> {}
|
|
1760
|
+
interface TableDataCellProps extends React.ComponentProps<"td"> {}
|
|
1761
|
+
interface TableFooterProps extends React.ComponentProps<"tfoot"> {}
|
|
1366
1762
|
//#endregion
|
|
1367
1763
|
//#region src/components/tabs/tabs.variants.d.ts
|
|
1368
|
-
declare const tabsVariants:
|
|
1764
|
+
declare const tabsVariants: tailwind_variants7.TVReturnType<{
|
|
1369
1765
|
[key: string]: {
|
|
1370
|
-
[key: string]:
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
list?:
|
|
1375
|
-
tab?:
|
|
1766
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1767
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1768
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
1769
|
+
panel?: tailwind_merge44.ClassNameValue;
|
|
1770
|
+
list?: tailwind_merge44.ClassNameValue;
|
|
1771
|
+
tab?: tailwind_merge44.ClassNameValue;
|
|
1376
1772
|
};
|
|
1377
1773
|
};
|
|
1378
1774
|
} | {
|
|
1379
1775
|
[x: string]: {
|
|
1380
|
-
[x: string]:
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
list?:
|
|
1385
|
-
tab?:
|
|
1776
|
+
[x: string]: tailwind_merge44.ClassNameValue | {
|
|
1777
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1778
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
1779
|
+
panel?: tailwind_merge44.ClassNameValue;
|
|
1780
|
+
list?: tailwind_merge44.ClassNameValue;
|
|
1781
|
+
tab?: tailwind_merge44.ClassNameValue;
|
|
1386
1782
|
};
|
|
1387
1783
|
};
|
|
1388
1784
|
} | {}, {
|
|
@@ -1393,12 +1789,12 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
1393
1789
|
tab: string;
|
|
1394
1790
|
}, undefined, {
|
|
1395
1791
|
[key: string]: {
|
|
1396
|
-
[key: string]:
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
list?:
|
|
1401
|
-
tab?:
|
|
1792
|
+
[key: string]: tailwind_merge44.ClassNameValue | {
|
|
1793
|
+
root?: tailwind_merge44.ClassNameValue;
|
|
1794
|
+
indicator?: tailwind_merge44.ClassNameValue;
|
|
1795
|
+
panel?: tailwind_merge44.ClassNameValue;
|
|
1796
|
+
list?: tailwind_merge44.ClassNameValue;
|
|
1797
|
+
tab?: tailwind_merge44.ClassNameValue;
|
|
1402
1798
|
};
|
|
1403
1799
|
};
|
|
1404
1800
|
} | {}, {
|
|
@@ -1407,7 +1803,7 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
1407
1803
|
panel: string;
|
|
1408
1804
|
root: string;
|
|
1409
1805
|
tab: string;
|
|
1410
|
-
},
|
|
1806
|
+
}, tailwind_variants7.TVReturnType<unknown, {
|
|
1411
1807
|
indicator: string;
|
|
1412
1808
|
list: string;
|
|
1413
1809
|
panel: string;
|
|
@@ -1422,23 +1818,23 @@ declare const Tabs: {
|
|
|
1422
1818
|
({
|
|
1423
1819
|
className,
|
|
1424
1820
|
...props
|
|
1425
|
-
}: TabsProps):
|
|
1821
|
+
}: TabsProps): react_jsx_runtime14.JSX.Element;
|
|
1426
1822
|
List: ({
|
|
1427
1823
|
className,
|
|
1428
1824
|
...props
|
|
1429
|
-
}: TabsListProps) =>
|
|
1825
|
+
}: TabsListProps) => react_jsx_runtime14.JSX.Element;
|
|
1430
1826
|
Tab: ({
|
|
1431
1827
|
className,
|
|
1432
1828
|
...props
|
|
1433
|
-
}: TabsTabProps) =>
|
|
1829
|
+
}: TabsTabProps) => react_jsx_runtime14.JSX.Element;
|
|
1434
1830
|
Indicator: ({
|
|
1435
1831
|
className,
|
|
1436
1832
|
...props
|
|
1437
|
-
}: TabsIndicatorProps) =>
|
|
1833
|
+
}: TabsIndicatorProps) => react_jsx_runtime14.JSX.Element;
|
|
1438
1834
|
Panel: ({
|
|
1439
1835
|
className,
|
|
1440
1836
|
...props
|
|
1441
|
-
}: TabsPanelProps) =>
|
|
1837
|
+
}: TabsPanelProps) => react_jsx_runtime14.JSX.Element;
|
|
1442
1838
|
Root: /*elided*/any;
|
|
1443
1839
|
};
|
|
1444
1840
|
interface TabsListProps extends Tabs$1.List.Props {}
|
|
@@ -1447,7 +1843,7 @@ interface TabsIndicatorProps extends Tabs$1.Indicator.Props {}
|
|
|
1447
1843
|
interface TabsPanelProps extends Tabs$1.Panel.Props {}
|
|
1448
1844
|
//#endregion
|
|
1449
1845
|
//#region src/components/text/text.variants.d.ts
|
|
1450
|
-
declare const textVariants:
|
|
1846
|
+
declare const textVariants: tailwind_variants7.TVReturnType<{} | {} | {}, undefined, "text", {} | {}, undefined, tailwind_variants7.TVReturnType<unknown, undefined, "text", unknown, unknown, undefined>>;
|
|
1451
1847
|
type TextVariants = VariantProps<typeof textVariants>;
|
|
1452
1848
|
//#endregion
|
|
1453
1849
|
//#region src/components/text/text.d.ts
|
|
@@ -1455,19 +1851,19 @@ interface TextProps extends TextVariants, React.ComponentProps<"div"> {}
|
|
|
1455
1851
|
declare const Text: ({
|
|
1456
1852
|
className,
|
|
1457
1853
|
...props
|
|
1458
|
-
}: TextProps) =>
|
|
1854
|
+
}: TextProps) => react_jsx_runtime14.JSX.Element;
|
|
1459
1855
|
//#endregion
|
|
1460
1856
|
//#region src/components/textarea/textarea.variants.d.ts
|
|
1461
|
-
declare const textareaVariants:
|
|
1857
|
+
declare const textareaVariants: tailwind_variants7.TVReturnType<{} | {
|
|
1462
1858
|
inputSize: {
|
|
1463
|
-
lg:
|
|
1464
|
-
base?:
|
|
1859
|
+
lg: tailwind_merge44.ClassNameValue | {
|
|
1860
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1465
1861
|
};
|
|
1466
|
-
md:
|
|
1467
|
-
base?:
|
|
1862
|
+
md: tailwind_merge44.ClassNameValue | {
|
|
1863
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1468
1864
|
};
|
|
1469
|
-
sm:
|
|
1470
|
-
base?:
|
|
1865
|
+
sm: tailwind_merge44.ClassNameValue | {
|
|
1866
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1471
1867
|
};
|
|
1472
1868
|
};
|
|
1473
1869
|
}, undefined, "textarea", {
|
|
@@ -1476,7 +1872,7 @@ declare const textareaVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1476
1872
|
md: string;
|
|
1477
1873
|
sm: string;
|
|
1478
1874
|
};
|
|
1479
|
-
}, undefined,
|
|
1875
|
+
}, undefined, tailwind_variants7.TVReturnType<{
|
|
1480
1876
|
inputSize: {
|
|
1481
1877
|
lg: string;
|
|
1482
1878
|
md: string;
|
|
@@ -1488,7 +1884,7 @@ declare const textareaVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1488
1884
|
md: string;
|
|
1489
1885
|
sm: string;
|
|
1490
1886
|
};
|
|
1491
|
-
}, undefined,
|
|
1887
|
+
}, undefined, tailwind_variants7.TVReturnType<{
|
|
1492
1888
|
inputSize: {
|
|
1493
1889
|
lg: string;
|
|
1494
1890
|
md: string;
|
|
@@ -1502,41 +1898,41 @@ interface TextareaProps extends TextareaVariants, React.ComponentProps<"textarea
|
|
|
1502
1898
|
declare const Textarea: ({
|
|
1503
1899
|
className,
|
|
1504
1900
|
...props
|
|
1505
|
-
}: TextareaProps) =>
|
|
1901
|
+
}: TextareaProps) => react_jsx_runtime14.JSX.Element;
|
|
1506
1902
|
//#endregion
|
|
1507
1903
|
//#region src/components/toggle-button/toggle-button.variants.d.ts
|
|
1508
|
-
declare const toggleButtonVariants:
|
|
1904
|
+
declare const toggleButtonVariants: tailwind_variants7.TVReturnType<{} | {
|
|
1509
1905
|
isIconOnly: {
|
|
1510
|
-
true:
|
|
1511
|
-
base?:
|
|
1906
|
+
true: tailwind_merge44.ClassNameValue | {
|
|
1907
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1512
1908
|
};
|
|
1513
1909
|
};
|
|
1514
1910
|
size: {
|
|
1515
|
-
lg:
|
|
1516
|
-
base?:
|
|
1911
|
+
lg: tailwind_merge44.ClassNameValue | {
|
|
1912
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1517
1913
|
};
|
|
1518
|
-
md:
|
|
1519
|
-
base?:
|
|
1914
|
+
md: tailwind_merge44.ClassNameValue | {
|
|
1915
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1520
1916
|
};
|
|
1521
|
-
sm:
|
|
1522
|
-
base?:
|
|
1917
|
+
sm: tailwind_merge44.ClassNameValue | {
|
|
1918
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1523
1919
|
};
|
|
1524
1920
|
};
|
|
1525
1921
|
variant: {
|
|
1526
|
-
danger:
|
|
1527
|
-
base?:
|
|
1922
|
+
danger: tailwind_merge44.ClassNameValue | {
|
|
1923
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1528
1924
|
};
|
|
1529
|
-
ghost:
|
|
1530
|
-
base?:
|
|
1925
|
+
ghost: tailwind_merge44.ClassNameValue | {
|
|
1926
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1531
1927
|
};
|
|
1532
|
-
outline:
|
|
1533
|
-
base?:
|
|
1928
|
+
outline: tailwind_merge44.ClassNameValue | {
|
|
1929
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1534
1930
|
};
|
|
1535
|
-
primary:
|
|
1536
|
-
base?:
|
|
1931
|
+
primary: tailwind_merge44.ClassNameValue | {
|
|
1932
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1537
1933
|
};
|
|
1538
|
-
secondary:
|
|
1539
|
-
base?:
|
|
1934
|
+
secondary: tailwind_merge44.ClassNameValue | {
|
|
1935
|
+
base?: tailwind_merge44.ClassNameValue;
|
|
1540
1936
|
};
|
|
1541
1937
|
};
|
|
1542
1938
|
}, undefined, "toggle-button", {
|
|
@@ -1555,7 +1951,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1555
1951
|
primary: string;
|
|
1556
1952
|
secondary: string;
|
|
1557
1953
|
};
|
|
1558
|
-
}, undefined,
|
|
1954
|
+
}, undefined, tailwind_variants7.TVReturnType<{
|
|
1559
1955
|
isIconOnly: {
|
|
1560
1956
|
true: string;
|
|
1561
1957
|
};
|
|
@@ -1587,7 +1983,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1587
1983
|
primary: string;
|
|
1588
1984
|
secondary: string;
|
|
1589
1985
|
};
|
|
1590
|
-
}, undefined,
|
|
1986
|
+
}, undefined, tailwind_variants7.TVReturnType<{
|
|
1591
1987
|
isIconOnly: {
|
|
1592
1988
|
true: string;
|
|
1593
1989
|
};
|
|
@@ -1613,7 +2009,7 @@ declare const ToggleButton: ({
|
|
|
1613
2009
|
variant,
|
|
1614
2010
|
size,
|
|
1615
2011
|
...props
|
|
1616
|
-
}: ToggleButtonProps) =>
|
|
2012
|
+
}: ToggleButtonProps) => react_jsx_runtime14.JSX.Element;
|
|
1617
2013
|
//#endregion
|
|
1618
|
-
export { Accordion, AccordionVariants, Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, Card, CardVariants, Checkbox, CheckboxGroup, CheckboxGroupVariants, CheckboxVariants, Chip, ChipVariants, Container, ContainerVariants, Dialog, DialogVariants, Field, FieldVariants, Form, FormVariants, Input, InputVariants, Label, LabelVariants, Link, LinkVariants, List, ListVariants, Menu, MenuVariants, Meter, MeterVariants, Navbar, NavbarVariants, Separator, SeparatorVariants, Switch, SwitchVariants, Tabs, TabsVariants, Text, TextVariants, Textarea, TextareaVariants, ToggleButton, ToggleButtonVariants, accordionVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, checkboxVariants, chipVariants, cn, containerVariants, dialogVariants, fieldVariants, formVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, separatorVariants, switchVariants, tabsVariants, textVariants, textareaVariants, toggleButtonVariants };
|
|
2014
|
+
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, 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, formVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, progressVariants, separatorVariants, sliderVariants, switchVariants, tableVariants, tabsVariants, textVariants, textareaVariants, toggleButtonVariants };
|
|
1619
2015
|
//# sourceMappingURL=index.d.mts.map
|