@fea-ui/react 0.1.0-alpha.2 → 0.1.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +389 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +581 -136
- package/dist/index.d.mts +450 -5
- package/dist/index.mjs +382 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -4
package/dist/index.d.cts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants0 from "tailwind-variants";
|
|
2
2
|
import { VariantProps, cn } from "tailwind-variants";
|
|
3
|
-
import * as
|
|
4
|
-
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";
|
|
3
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
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
5
|
import * as tailwind_merge0 from "tailwind-merge";
|
|
6
6
|
|
|
7
7
|
//#region src/components/accordion/accordion.variants.d.ts
|
|
8
|
-
declare const accordionVariants:
|
|
8
|
+
declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
9
9
|
[key: string]: {
|
|
10
10
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
11
11
|
content?: tailwind_merge0.ClassNameValue;
|
|
@@ -57,7 +57,7 @@ declare const accordionVariants: tailwind_variants1.TVReturnType<{
|
|
|
57
57
|
root: string;
|
|
58
58
|
trigger: string;
|
|
59
59
|
triggerIcon: string;
|
|
60
|
-
},
|
|
60
|
+
}, tailwind_variants0.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_runtime0.JSX.Element;
|
|
78
78
|
Content: ({
|
|
79
79
|
className,
|
|
80
80
|
...props
|
|
81
|
-
}: AccordionContentProps) =>
|
|
81
|
+
}: AccordionContentProps) => react_jsx_runtime0.JSX.Element;
|
|
82
82
|
Header: ({
|
|
83
83
|
className,
|
|
84
84
|
...props
|
|
85
|
-
}: AccordionHeaderProps) =>
|
|
85
|
+
}: AccordionHeaderProps) => react_jsx_runtime0.JSX.Element;
|
|
86
86
|
Item: ({
|
|
87
87
|
className,
|
|
88
88
|
...props
|
|
89
|
-
}: AccordionItemProps) =>
|
|
89
|
+
}: AccordionItemProps) => react_jsx_runtime0.JSX.Element;
|
|
90
90
|
Panel: ({
|
|
91
91
|
className,
|
|
92
92
|
...props
|
|
93
|
-
}: AccordionPanelProps) =>
|
|
93
|
+
}: AccordionPanelProps) => react_jsx_runtime0.JSX.Element;
|
|
94
94
|
Root: /*elided*/any;
|
|
95
95
|
Trigger: ({
|
|
96
96
|
className,
|
|
97
97
|
...props
|
|
98
|
-
}: AccordionTriggerProps) =>
|
|
98
|
+
}: AccordionTriggerProps) => react_jsx_runtime0.JSX.Element;
|
|
99
99
|
TriggerIcon: ({
|
|
100
100
|
className,
|
|
101
101
|
...props
|
|
102
|
-
}: AccordionTriggerIconProps) =>
|
|
102
|
+
}: AccordionTriggerIconProps) => react_jsx_runtime0.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_variants0.TVReturnType<{
|
|
113
|
+
[key: string]: {
|
|
114
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
115
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
116
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
117
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
118
|
+
backdrop?: tailwind_merge0.ClassNameValue;
|
|
119
|
+
close?: tailwind_merge0.ClassNameValue;
|
|
120
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
121
|
+
popup?: tailwind_merge0.ClassNameValue;
|
|
122
|
+
portal?: tailwind_merge0.ClassNameValue;
|
|
123
|
+
viewport?: tailwind_merge0.ClassNameValue;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
} | {
|
|
127
|
+
[x: string]: {
|
|
128
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
129
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
130
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
131
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
132
|
+
backdrop?: tailwind_merge0.ClassNameValue;
|
|
133
|
+
close?: tailwind_merge0.ClassNameValue;
|
|
134
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
135
|
+
popup?: tailwind_merge0.ClassNameValue;
|
|
136
|
+
portal?: tailwind_merge0.ClassNameValue;
|
|
137
|
+
viewport?: tailwind_merge0.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_merge0.ClassNameValue | {
|
|
153
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
154
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
155
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
156
|
+
backdrop?: tailwind_merge0.ClassNameValue;
|
|
157
|
+
close?: tailwind_merge0.ClassNameValue;
|
|
158
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
159
|
+
popup?: tailwind_merge0.ClassNameValue;
|
|
160
|
+
portal?: tailwind_merge0.ClassNameValue;
|
|
161
|
+
viewport?: tailwind_merge0.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_variants0.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_runtime0.JSX.Element;
|
|
193
|
+
Root: /*elided*/any;
|
|
194
|
+
Trigger: ({
|
|
195
|
+
className,
|
|
196
|
+
...props
|
|
197
|
+
}: AlertDialogTriggerProps) => react_jsx_runtime0.JSX.Element;
|
|
198
|
+
Portal: ({
|
|
199
|
+
className,
|
|
200
|
+
...props
|
|
201
|
+
}: AlertDialogPortalProps) => react_jsx_runtime0.JSX.Element;
|
|
202
|
+
Backdrop: ({
|
|
203
|
+
className,
|
|
204
|
+
...props
|
|
205
|
+
}: AlertDialogBackdropProps) => react_jsx_runtime0.JSX.Element;
|
|
206
|
+
Viewport: ({
|
|
207
|
+
className,
|
|
208
|
+
...props
|
|
209
|
+
}: AlertDialogViewportProps) => react_jsx_runtime0.JSX.Element;
|
|
210
|
+
Popup: ({
|
|
211
|
+
className,
|
|
212
|
+
...props
|
|
213
|
+
}: AlertDialogPopupProps) => react_jsx_runtime0.JSX.Element;
|
|
214
|
+
Title: ({
|
|
215
|
+
className,
|
|
216
|
+
...props
|
|
217
|
+
}: AlertDialogTitleProps) => react_jsx_runtime0.JSX.Element;
|
|
218
|
+
Description: ({
|
|
219
|
+
className,
|
|
220
|
+
...props
|
|
221
|
+
}: AlertDialogDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
222
|
+
Close: ({
|
|
223
|
+
className,
|
|
224
|
+
children,
|
|
225
|
+
...props
|
|
226
|
+
}: AlertDialogCloseProps) => react_jsx_runtime0.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_variants0.TVReturnType<{
|
|
113
239
|
size: {
|
|
114
240
|
lg: {
|
|
115
241
|
root: string;
|
|
@@ -141,7 +267,7 @@ declare const avatarVariants: tailwind_variants1.TVReturnType<{
|
|
|
141
267
|
fallback: string;
|
|
142
268
|
image: string;
|
|
143
269
|
root: string;
|
|
144
|
-
},
|
|
270
|
+
}, tailwind_variants0.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_runtime0.JSX.Element;
|
|
171
297
|
Fallback: ({
|
|
172
298
|
className,
|
|
173
299
|
...props
|
|
174
|
-
}: AvatarFallbackProps) =>
|
|
300
|
+
}: AvatarFallbackProps) => react_jsx_runtime0.JSX.Element;
|
|
175
301
|
Image: ({
|
|
176
302
|
className,
|
|
177
303
|
...props
|
|
178
|
-
}: AvatarImageProps) =>
|
|
304
|
+
}: AvatarImageProps) => react_jsx_runtime0.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_variants0.TVReturnType<{
|
|
186
312
|
isIconOnly: {
|
|
187
313
|
true: string;
|
|
188
314
|
};
|
|
@@ -214,7 +340,7 @@ declare const buttonVariants: tailwind_variants1.TVReturnType<{
|
|
|
214
340
|
primary: string;
|
|
215
341
|
secondary: string;
|
|
216
342
|
};
|
|
217
|
-
}, undefined,
|
|
343
|
+
}, undefined, tailwind_variants0.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_runtime0.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_variants0.TVReturnType<{} | {} | {}, undefined, "button-group", {} | {}, undefined, tailwind_variants0.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_runtime0.JSX.Element;
|
|
256
382
|
//#endregion
|
|
257
383
|
//#region src/components/card/card.variants.d.ts
|
|
258
|
-
declare const cardVariants:
|
|
384
|
+
declare const cardVariants: tailwind_variants0.TVReturnType<{
|
|
259
385
|
variant: {
|
|
260
386
|
default: {
|
|
261
387
|
root: string;
|
|
@@ -287,7 +413,7 @@ declare const cardVariants: tailwind_variants1.TVReturnType<{
|
|
|
287
413
|
header: string;
|
|
288
414
|
root: string;
|
|
289
415
|
title: string;
|
|
290
|
-
},
|
|
416
|
+
}, tailwind_variants0.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_runtime0.JSX.Element;
|
|
317
443
|
/** Exports */
|
|
318
444
|
Body: ({
|
|
319
445
|
className,
|
|
320
446
|
...props
|
|
321
|
-
}: CardBodyProps) =>
|
|
447
|
+
}: CardBodyProps) => react_jsx_runtime0.JSX.Element;
|
|
322
448
|
Description: ({
|
|
323
449
|
className,
|
|
324
450
|
...props
|
|
325
|
-
}: CardDescriptionProps) =>
|
|
451
|
+
}: CardDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
326
452
|
Footer: ({
|
|
327
453
|
className,
|
|
328
454
|
...props
|
|
329
|
-
}: CardFooterProps) =>
|
|
455
|
+
}: CardFooterProps) => react_jsx_runtime0.JSX.Element;
|
|
330
456
|
Header: ({
|
|
331
457
|
className,
|
|
332
458
|
...props
|
|
333
|
-
}: CardHeaderProps) =>
|
|
459
|
+
}: CardHeaderProps) => react_jsx_runtime0.JSX.Element;
|
|
334
460
|
Root: /*elided*/any;
|
|
335
461
|
Title: ({
|
|
336
462
|
className,
|
|
337
463
|
...props
|
|
338
|
-
}: CardTitle) =>
|
|
464
|
+
}: CardTitle) => react_jsx_runtime0.JSX.Element;
|
|
339
465
|
};
|
|
340
466
|
interface CardHeaderProps extends React.ComponentProps<"div"> {}
|
|
341
467
|
interface CardBodyProps extends React.ComponentProps<"div"> {}
|
|
@@ -344,7 +470,7 @@ 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_variants0.TVReturnType<{
|
|
348
474
|
[key: string]: {
|
|
349
475
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
350
476
|
root?: tailwind_merge0.ClassNameValue;
|
|
@@ -381,7 +507,7 @@ declare const checkboxVariants: tailwind_variants1.TVReturnType<{
|
|
|
381
507
|
indicator: string;
|
|
382
508
|
label: string;
|
|
383
509
|
root: string;
|
|
384
|
-
},
|
|
510
|
+
}, tailwind_variants0.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_runtime0.JSX.Element;
|
|
399
525
|
Indicator: ({
|
|
400
526
|
className,
|
|
401
527
|
...props
|
|
402
|
-
}: CheckboxIndicatorProps) =>
|
|
528
|
+
}: CheckboxIndicatorProps) => react_jsx_runtime0.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_variants0.TVReturnType<{} | {} | {}, undefined, "checkbox-group", {} | {}, undefined, tailwind_variants0.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_runtime0.JSX.Element;
|
|
417
543
|
//#endregion
|
|
418
544
|
//#region src/components/chip/chip.variants.d.ts
|
|
419
|
-
declare const chipVariants:
|
|
545
|
+
declare const chipVariants: tailwind_variants0.TVReturnType<{
|
|
420
546
|
size: {
|
|
421
547
|
lg: string;
|
|
422
548
|
md: string;
|
|
@@ -442,7 +568,7 @@ declare const chipVariants: tailwind_variants1.TVReturnType<{
|
|
|
442
568
|
secondary: string;
|
|
443
569
|
success: string;
|
|
444
570
|
};
|
|
445
|
-
}, undefined,
|
|
571
|
+
}, undefined, tailwind_variants0.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_runtime0.JSX.Element;
|
|
469
595
|
//#endregion
|
|
470
596
|
//#region src/components/container/container.variants.d.ts
|
|
471
|
-
declare const containerVariants:
|
|
597
|
+
declare const containerVariants: tailwind_variants0.TVReturnType<{} | {} | {}, undefined, "container", {} | {}, undefined, tailwind_variants0.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,18 +602,18 @@ interface ContainerProps extends ContainerVariants, React.ComponentProps<"div">
|
|
|
476
602
|
declare const Container: ({
|
|
477
603
|
className,
|
|
478
604
|
...props
|
|
479
|
-
}: ContainerProps) =>
|
|
605
|
+
}: ContainerProps) => react_jsx_runtime0.JSX.Element;
|
|
480
606
|
//#endregion
|
|
481
607
|
//#region src/components/dialog/dialog.variants.d.ts
|
|
482
|
-
declare const dialogVariants:
|
|
608
|
+
declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
483
609
|
[key: string]: {
|
|
484
610
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
485
611
|
root?: tailwind_merge0.ClassNameValue;
|
|
486
612
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
487
613
|
title?: tailwind_merge0.ClassNameValue;
|
|
488
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
489
614
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
490
615
|
close?: tailwind_merge0.ClassNameValue;
|
|
616
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
491
617
|
popup?: tailwind_merge0.ClassNameValue;
|
|
492
618
|
portal?: tailwind_merge0.ClassNameValue;
|
|
493
619
|
viewport?: tailwind_merge0.ClassNameValue;
|
|
@@ -499,9 +625,9 @@ declare const dialogVariants: tailwind_variants1.TVReturnType<{
|
|
|
499
625
|
root?: tailwind_merge0.ClassNameValue;
|
|
500
626
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
501
627
|
title?: tailwind_merge0.ClassNameValue;
|
|
502
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
503
628
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
504
629
|
close?: tailwind_merge0.ClassNameValue;
|
|
630
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
505
631
|
popup?: tailwind_merge0.ClassNameValue;
|
|
506
632
|
portal?: tailwind_merge0.ClassNameValue;
|
|
507
633
|
viewport?: tailwind_merge0.ClassNameValue;
|
|
@@ -523,9 +649,9 @@ declare const dialogVariants: tailwind_variants1.TVReturnType<{
|
|
|
523
649
|
root?: tailwind_merge0.ClassNameValue;
|
|
524
650
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
525
651
|
title?: tailwind_merge0.ClassNameValue;
|
|
526
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
527
652
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
528
653
|
close?: tailwind_merge0.ClassNameValue;
|
|
654
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
529
655
|
popup?: tailwind_merge0.ClassNameValue;
|
|
530
656
|
portal?: tailwind_merge0.ClassNameValue;
|
|
531
657
|
viewport?: tailwind_merge0.ClassNameValue;
|
|
@@ -541,7 +667,7 @@ declare const dialogVariants: tailwind_variants1.TVReturnType<{
|
|
|
541
667
|
title: string;
|
|
542
668
|
trigger: string;
|
|
543
669
|
viewport: string;
|
|
544
|
-
},
|
|
670
|
+
}, tailwind_variants0.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_runtime0.JSX.Element;
|
|
563
689
|
Backdrop: ({
|
|
564
690
|
className,
|
|
565
691
|
...props
|
|
566
|
-
}: DialogBackdropProps) =>
|
|
692
|
+
}: DialogBackdropProps) => react_jsx_runtime0.JSX.Element;
|
|
567
693
|
Close: ({
|
|
568
694
|
className,
|
|
569
695
|
...props
|
|
570
|
-
}: DialogCloseProps) =>
|
|
696
|
+
}: DialogCloseProps) => react_jsx_runtime0.JSX.Element;
|
|
571
697
|
Description: ({
|
|
572
698
|
className,
|
|
573
699
|
...props
|
|
574
|
-
}: DialogDescriptionProps) =>
|
|
700
|
+
}: DialogDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
575
701
|
Popup: ({
|
|
576
702
|
className,
|
|
577
703
|
...props
|
|
578
|
-
}: DialogPopupProps) =>
|
|
704
|
+
}: DialogPopupProps) => react_jsx_runtime0.JSX.Element;
|
|
579
705
|
Portal: ({
|
|
580
706
|
className,
|
|
581
707
|
...props
|
|
582
|
-
}: DialogPortalProps) =>
|
|
708
|
+
}: DialogPortalProps) => react_jsx_runtime0.JSX.Element;
|
|
583
709
|
Root: /*elided*/any;
|
|
584
710
|
Title: ({
|
|
585
711
|
className,
|
|
586
712
|
...props
|
|
587
|
-
}: DialogTitleProps) =>
|
|
713
|
+
}: DialogTitleProps) => react_jsx_runtime0.JSX.Element;
|
|
588
714
|
Trigger: ({
|
|
589
715
|
className,
|
|
590
716
|
...props
|
|
591
|
-
}: DialogTriggerProps) =>
|
|
717
|
+
}: DialogTriggerProps) => react_jsx_runtime0.JSX.Element;
|
|
592
718
|
Viewport: ({
|
|
593
719
|
className,
|
|
594
720
|
...props
|
|
595
|
-
}: DialogViewportProps) =>
|
|
721
|
+
}: DialogViewportProps) => react_jsx_runtime0.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_variants0.TVReturnType<{
|
|
608
734
|
size: {
|
|
609
735
|
lg: {
|
|
610
736
|
control: string;
|
|
@@ -640,7 +766,7 @@ declare const fieldVariants: tailwind_variants1.TVReturnType<{
|
|
|
640
766
|
error: string;
|
|
641
767
|
label: string;
|
|
642
768
|
root: string;
|
|
643
|
-
},
|
|
769
|
+
}, tailwind_variants0.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_runtime0.JSX.Element;
|
|
672
798
|
Control: ({
|
|
673
799
|
className,
|
|
674
800
|
...props
|
|
675
|
-
}: FieldControlProps) =>
|
|
801
|
+
}: FieldControlProps) => react_jsx_runtime0.JSX.Element;
|
|
676
802
|
Description: ({
|
|
677
803
|
className,
|
|
678
804
|
...props
|
|
679
|
-
}: FieldDescriptionProps) =>
|
|
805
|
+
}: FieldDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
680
806
|
Error: ({
|
|
681
807
|
className,
|
|
682
808
|
...props
|
|
683
|
-
}: FieldErrorProps) =>
|
|
809
|
+
}: FieldErrorProps) => react_jsx_runtime0.JSX.Element;
|
|
684
810
|
Label: ({
|
|
685
811
|
className,
|
|
686
812
|
...props
|
|
687
|
-
}: FieldLabelProps) =>
|
|
813
|
+
}: FieldLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
688
814
|
Root: /*elided*/any;
|
|
689
815
|
};
|
|
690
816
|
interface FieldLabelProps extends React.ComponentProps<typeof Field$1.Label> {}
|
|
@@ -692,8 +818,57 @@ interface FieldDescriptionProps extends React.ComponentProps<typeof Field$1.Desc
|
|
|
692
818
|
interface FieldControlProps extends React.ComponentProps<typeof Field$1.Control> {}
|
|
693
819
|
interface FieldErrorProps extends React.ComponentProps<typeof Field$1.Error> {}
|
|
694
820
|
//#endregion
|
|
821
|
+
//#region src/components/fieldset/fieldset.variants.d.ts
|
|
822
|
+
declare const fieldsetVariants: tailwind_variants0.TVReturnType<{
|
|
823
|
+
[key: string]: {
|
|
824
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
825
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
826
|
+
legend?: tailwind_merge0.ClassNameValue;
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
} | {
|
|
830
|
+
[x: string]: {
|
|
831
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
832
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
833
|
+
legend?: tailwind_merge0.ClassNameValue;
|
|
834
|
+
};
|
|
835
|
+
};
|
|
836
|
+
} | {}, {
|
|
837
|
+
legend: string;
|
|
838
|
+
root: string;
|
|
839
|
+
}, undefined, {
|
|
840
|
+
[key: string]: {
|
|
841
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
842
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
843
|
+
legend?: tailwind_merge0.ClassNameValue;
|
|
844
|
+
};
|
|
845
|
+
};
|
|
846
|
+
} | {}, {
|
|
847
|
+
legend: string;
|
|
848
|
+
root: string;
|
|
849
|
+
}, tailwind_variants0.TVReturnType<unknown, {
|
|
850
|
+
legend: string;
|
|
851
|
+
root: string;
|
|
852
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
853
|
+
type FieldsetVariants = VariantProps<typeof fieldsetVariants>;
|
|
854
|
+
//#endregion
|
|
855
|
+
//#region src/components/fieldset/fieldset.d.ts
|
|
856
|
+
interface FieldsetProps extends FieldsetVariants, Fieldset$1.Root.Props {}
|
|
857
|
+
declare const Fieldset: {
|
|
858
|
+
({
|
|
859
|
+
className,
|
|
860
|
+
...props
|
|
861
|
+
}: FieldsetProps): react_jsx_runtime0.JSX.Element;
|
|
862
|
+
Root: /*elided*/any;
|
|
863
|
+
Legend: ({
|
|
864
|
+
className,
|
|
865
|
+
...props
|
|
866
|
+
}: FieldsetLegendProps) => react_jsx_runtime0.JSX.Element;
|
|
867
|
+
};
|
|
868
|
+
interface FieldsetLegendProps extends Fieldset$1.Legend.Props {}
|
|
869
|
+
//#endregion
|
|
695
870
|
//#region src/components/form/form.variants.d.ts
|
|
696
|
-
declare const formVariants:
|
|
871
|
+
declare const formVariants: tailwind_variants0.TVReturnType<{} | {} | {}, undefined, "form", {} | {}, undefined, tailwind_variants0.TVReturnType<unknown, undefined, "form", unknown, unknown, undefined>>;
|
|
697
872
|
type FormVariants = VariantProps<typeof formVariants>;
|
|
698
873
|
//#endregion
|
|
699
874
|
//#region src/components/form/form.d.ts
|
|
@@ -701,10 +876,10 @@ interface FormProps extends FormVariants, React.ComponentProps<"form"> {}
|
|
|
701
876
|
declare const Form: ({
|
|
702
877
|
className,
|
|
703
878
|
...props
|
|
704
|
-
}: FormProps) =>
|
|
879
|
+
}: FormProps) => react_jsx_runtime0.JSX.Element;
|
|
705
880
|
//#endregion
|
|
706
881
|
//#region src/components/input/input.variants.d.ts
|
|
707
|
-
declare const inputVariants:
|
|
882
|
+
declare const inputVariants: tailwind_variants0.TVReturnType<{
|
|
708
883
|
inputSize: {
|
|
709
884
|
lg: string;
|
|
710
885
|
md: string;
|
|
@@ -716,7 +891,7 @@ declare const inputVariants: tailwind_variants1.TVReturnType<{
|
|
|
716
891
|
md: string;
|
|
717
892
|
sm: string;
|
|
718
893
|
};
|
|
719
|
-
}, undefined,
|
|
894
|
+
}, undefined, tailwind_variants0.TVReturnType<{
|
|
720
895
|
inputSize: {
|
|
721
896
|
lg: string;
|
|
722
897
|
md: string;
|
|
@@ -731,10 +906,10 @@ declare const Input: ({
|
|
|
731
906
|
className,
|
|
732
907
|
inputSize,
|
|
733
908
|
...props
|
|
734
|
-
}: InputProps) =>
|
|
909
|
+
}: InputProps) => react_jsx_runtime0.JSX.Element;
|
|
735
910
|
//#endregion
|
|
736
911
|
//#region src/components/label/label.variants.d.ts
|
|
737
|
-
declare const labelVariants:
|
|
912
|
+
declare const labelVariants: tailwind_variants0.TVReturnType<{} | {} | {}, undefined, "label", {} | {}, undefined, tailwind_variants0.TVReturnType<unknown, undefined, "label", unknown, unknown, undefined>>;
|
|
738
913
|
type LabelVariants = VariantProps<typeof labelVariants>;
|
|
739
914
|
//#endregion
|
|
740
915
|
//#region src/components/label/label.d.ts
|
|
@@ -742,10 +917,10 @@ interface LabelProps extends LabelVariants, React.ComponentProps<"label"> {}
|
|
|
742
917
|
declare const Label: ({
|
|
743
918
|
className,
|
|
744
919
|
...props
|
|
745
|
-
}: LabelProps) =>
|
|
920
|
+
}: LabelProps) => react_jsx_runtime0.JSX.Element;
|
|
746
921
|
//#endregion
|
|
747
922
|
//#region src/components/link/link.variants.d.ts
|
|
748
|
-
declare const linkVariants:
|
|
923
|
+
declare const linkVariants: tailwind_variants0.TVReturnType<{
|
|
749
924
|
variant: {
|
|
750
925
|
"no-underline": string;
|
|
751
926
|
underline: string;
|
|
@@ -755,7 +930,7 @@ declare const linkVariants: tailwind_variants1.TVReturnType<{
|
|
|
755
930
|
"no-underline": string;
|
|
756
931
|
underline: string;
|
|
757
932
|
};
|
|
758
|
-
}, undefined,
|
|
933
|
+
}, undefined, tailwind_variants0.TVReturnType<{
|
|
759
934
|
variant: {
|
|
760
935
|
"no-underline": string;
|
|
761
936
|
underline: string;
|
|
@@ -769,10 +944,10 @@ declare const Link: ({
|
|
|
769
944
|
className,
|
|
770
945
|
variant,
|
|
771
946
|
...props
|
|
772
|
-
}: LinkProps) =>
|
|
947
|
+
}: LinkProps) => react_jsx_runtime0.JSX.Element;
|
|
773
948
|
//#endregion
|
|
774
949
|
//#region src/components/list/list.variants.d.ts
|
|
775
|
-
declare const listVariants:
|
|
950
|
+
declare const listVariants: tailwind_variants0.TVReturnType<{
|
|
776
951
|
[key: string]: {
|
|
777
952
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
778
953
|
item?: tailwind_merge0.ClassNameValue;
|
|
@@ -799,7 +974,7 @@ declare const listVariants: tailwind_variants1.TVReturnType<{
|
|
|
799
974
|
} | {}, {
|
|
800
975
|
item: string;
|
|
801
976
|
root: string;
|
|
802
|
-
},
|
|
977
|
+
}, tailwind_variants0.TVReturnType<unknown, {
|
|
803
978
|
item: string;
|
|
804
979
|
root: string;
|
|
805
980
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -811,17 +986,17 @@ declare const List: {
|
|
|
811
986
|
({
|
|
812
987
|
className,
|
|
813
988
|
...props
|
|
814
|
-
}: ListProps):
|
|
989
|
+
}: ListProps): react_jsx_runtime0.JSX.Element;
|
|
815
990
|
Root: /*elided*/any;
|
|
816
991
|
Item: ({
|
|
817
992
|
className,
|
|
818
993
|
...props
|
|
819
|
-
}: ListItemProps) =>
|
|
994
|
+
}: ListItemProps) => react_jsx_runtime0.JSX.Element;
|
|
820
995
|
};
|
|
821
996
|
interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
822
997
|
//#endregion
|
|
823
998
|
//#region src/components/menu/menu.variants.d.ts
|
|
824
|
-
declare const menuVariants:
|
|
999
|
+
declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
825
1000
|
[key: string]: {
|
|
826
1001
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
827
1002
|
item?: tailwind_merge0.ClassNameValue;
|
|
@@ -918,7 +1093,7 @@ declare const menuVariants: tailwind_variants1.TVReturnType<{
|
|
|
918
1093
|
submenu: string;
|
|
919
1094
|
submenuTrigger: string;
|
|
920
1095
|
trigger: string;
|
|
921
|
-
},
|
|
1096
|
+
}, tailwind_variants0.TVReturnType<unknown, {
|
|
922
1097
|
arrow: string;
|
|
923
1098
|
backdrop: string;
|
|
924
1099
|
checkboxItem: string;
|
|
@@ -943,67 +1118,67 @@ interface MenuProps extends MenuVariants, Menu$1.Root.Props {}
|
|
|
943
1118
|
declare const Menu: {
|
|
944
1119
|
({
|
|
945
1120
|
...props
|
|
946
|
-
}: MenuProps):
|
|
1121
|
+
}: MenuProps): react_jsx_runtime0.JSX.Element;
|
|
947
1122
|
Arrow: ({
|
|
948
1123
|
className,
|
|
949
1124
|
...props
|
|
950
|
-
}: MenuArrowProps) =>
|
|
1125
|
+
}: MenuArrowProps) => react_jsx_runtime0.JSX.Element;
|
|
951
1126
|
Backdrop: ({
|
|
952
1127
|
className,
|
|
953
1128
|
...props
|
|
954
|
-
}: MenuBackdropProps) =>
|
|
1129
|
+
}: MenuBackdropProps) => react_jsx_runtime0.JSX.Element;
|
|
955
1130
|
CheckboxItem: ({
|
|
956
1131
|
className,
|
|
957
1132
|
...props
|
|
958
|
-
}: MenuCheckboxItemProps) =>
|
|
1133
|
+
}: MenuCheckboxItemProps) => react_jsx_runtime0.JSX.Element;
|
|
959
1134
|
Group: ({
|
|
960
1135
|
className,
|
|
961
1136
|
...props
|
|
962
|
-
}: MenuGroupProps) =>
|
|
1137
|
+
}: MenuGroupProps) => react_jsx_runtime0.JSX.Element;
|
|
963
1138
|
GroupLabel: ({
|
|
964
1139
|
className,
|
|
965
1140
|
...props
|
|
966
|
-
}: MenuGroupLabelProps) =>
|
|
1141
|
+
}: MenuGroupLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
967
1142
|
Item: ({
|
|
968
1143
|
className,
|
|
969
1144
|
...props
|
|
970
|
-
}: MenuItemProps) =>
|
|
1145
|
+
}: MenuItemProps) => react_jsx_runtime0.JSX.Element;
|
|
971
1146
|
Popup: ({
|
|
972
1147
|
className,
|
|
973
1148
|
...props
|
|
974
|
-
}: MenuPopupProps) =>
|
|
1149
|
+
}: MenuPopupProps) => react_jsx_runtime0.JSX.Element;
|
|
975
1150
|
Portal: ({
|
|
976
1151
|
className,
|
|
977
1152
|
...props
|
|
978
|
-
}: MenuPortalProps) =>
|
|
1153
|
+
}: MenuPortalProps) => react_jsx_runtime0.JSX.Element;
|
|
979
1154
|
Positioner: ({
|
|
980
1155
|
className,
|
|
981
1156
|
...props
|
|
982
|
-
}: MenuPositionerProps) =>
|
|
1157
|
+
}: MenuPositionerProps) => react_jsx_runtime0.JSX.Element;
|
|
983
1158
|
RadioGroup: ({
|
|
984
1159
|
className,
|
|
985
1160
|
...props
|
|
986
|
-
}: MenuRadioGroupProps) =>
|
|
1161
|
+
}: MenuRadioGroupProps) => react_jsx_runtime0.JSX.Element;
|
|
987
1162
|
RadioItem: ({
|
|
988
1163
|
className,
|
|
989
1164
|
...props
|
|
990
|
-
}: MenuRadioItemProps) =>
|
|
1165
|
+
}: MenuRadioItemProps) => react_jsx_runtime0.JSX.Element;
|
|
991
1166
|
Root: /*elided*/any;
|
|
992
1167
|
Separator: ({
|
|
993
1168
|
className,
|
|
994
1169
|
...props
|
|
995
|
-
}: MenuSeparatorProps) =>
|
|
1170
|
+
}: MenuSeparatorProps) => react_jsx_runtime0.JSX.Element;
|
|
996
1171
|
Submenu: ({
|
|
997
1172
|
...props
|
|
998
|
-
}: MenuSubmenuProps) =>
|
|
1173
|
+
}: MenuSubmenuProps) => react_jsx_runtime0.JSX.Element;
|
|
999
1174
|
SubmenuTrigger: ({
|
|
1000
1175
|
className,
|
|
1001
1176
|
...props
|
|
1002
|
-
}: MenuSubmenuTriggerProps) =>
|
|
1177
|
+
}: MenuSubmenuTriggerProps) => react_jsx_runtime0.JSX.Element;
|
|
1003
1178
|
Trigger: ({
|
|
1004
1179
|
className,
|
|
1005
1180
|
...props
|
|
1006
|
-
}: MenuTriggerProps) =>
|
|
1181
|
+
}: MenuTriggerProps) => react_jsx_runtime0.JSX.Element;
|
|
1007
1182
|
};
|
|
1008
1183
|
interface MenuTriggerProps extends MenuVariants, Menu$1.Trigger.Props {}
|
|
1009
1184
|
interface MenuPortalProps extends MenuVariants, Menu$1.Portal.Props {}
|
|
@@ -1022,7 +1197,7 @@ interface MenuSubmenuProps extends MenuVariants, Menu$1.SubmenuRoot.Props {}
|
|
|
1022
1197
|
interface MenuSubmenuTriggerProps extends MenuVariants, Menu$1.SubmenuTrigger.Props {}
|
|
1023
1198
|
//#endregion
|
|
1024
1199
|
//#region src/components/meter/meter.variants.d.ts
|
|
1025
|
-
declare const meterVariants:
|
|
1200
|
+
declare const meterVariants: tailwind_variants0.TVReturnType<{
|
|
1026
1201
|
size: {
|
|
1027
1202
|
lg: {
|
|
1028
1203
|
root: string;
|
|
@@ -1086,7 +1261,7 @@ declare const meterVariants: tailwind_variants1.TVReturnType<{
|
|
|
1086
1261
|
root: string;
|
|
1087
1262
|
track: string;
|
|
1088
1263
|
value: string;
|
|
1089
|
-
},
|
|
1264
|
+
}, tailwind_variants0.TVReturnType<{
|
|
1090
1265
|
size: {
|
|
1091
1266
|
lg: {
|
|
1092
1267
|
root: string;
|
|
@@ -1129,24 +1304,24 @@ declare const Meter: {
|
|
|
1129
1304
|
size,
|
|
1130
1305
|
variant,
|
|
1131
1306
|
...props
|
|
1132
|
-
}: MeterProps):
|
|
1307
|
+
}: MeterProps): react_jsx_runtime0.JSX.Element;
|
|
1133
1308
|
Indicator: ({
|
|
1134
1309
|
className,
|
|
1135
1310
|
...props
|
|
1136
|
-
}: MeterIndicatorProps) =>
|
|
1311
|
+
}: MeterIndicatorProps) => react_jsx_runtime0.JSX.Element;
|
|
1137
1312
|
Label: ({
|
|
1138
1313
|
className,
|
|
1139
1314
|
...props
|
|
1140
|
-
}: MeterLabelProps) =>
|
|
1315
|
+
}: MeterLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
1141
1316
|
Root: /*elided*/any;
|
|
1142
1317
|
Track: ({
|
|
1143
1318
|
className,
|
|
1144
1319
|
...props
|
|
1145
|
-
}: MeterTrackProps) =>
|
|
1320
|
+
}: MeterTrackProps) => react_jsx_runtime0.JSX.Element;
|
|
1146
1321
|
Value: ({
|
|
1147
1322
|
className,
|
|
1148
1323
|
...props
|
|
1149
|
-
}: MeterValueProps) =>
|
|
1324
|
+
}: MeterValueProps) => react_jsx_runtime0.JSX.Element;
|
|
1150
1325
|
};
|
|
1151
1326
|
interface MeterLabelProps extends Meter$1.Label.Props {}
|
|
1152
1327
|
interface MeterValueProps extends Meter$1.Value.Props {}
|
|
@@ -1154,7 +1329,7 @@ interface MeterTrackProps extends Meter$1.Track.Props {}
|
|
|
1154
1329
|
interface MeterIndicatorProps extends Meter$1.Indicator.Props {}
|
|
1155
1330
|
//#endregion
|
|
1156
1331
|
//#region src/components/navbar/navbar.variants.d.ts
|
|
1157
|
-
declare const navbarVariants:
|
|
1332
|
+
declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
1158
1333
|
[key: string]: {
|
|
1159
1334
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1160
1335
|
content?: tailwind_merge0.ClassNameValue;
|
|
@@ -1211,7 +1386,7 @@ declare const navbarVariants: tailwind_variants1.TVReturnType<{
|
|
|
1211
1386
|
menuItem: string;
|
|
1212
1387
|
root: string;
|
|
1213
1388
|
toggle: string;
|
|
1214
|
-
},
|
|
1389
|
+
}, tailwind_variants0.TVReturnType<unknown, {
|
|
1215
1390
|
container: string;
|
|
1216
1391
|
content: string;
|
|
1217
1392
|
list: string;
|
|
@@ -1234,36 +1409,36 @@ declare const Navbar: {
|
|
|
1234
1409
|
isOpen,
|
|
1235
1410
|
onOpenChange,
|
|
1236
1411
|
...props
|
|
1237
|
-
}: NavbarProps):
|
|
1412
|
+
}: NavbarProps): react_jsx_runtime0.JSX.Element;
|
|
1238
1413
|
Root: /*elided*/any;
|
|
1239
1414
|
Container: ({
|
|
1240
1415
|
className,
|
|
1241
1416
|
...props
|
|
1242
|
-
}: NavbarContainerProps) =>
|
|
1417
|
+
}: NavbarContainerProps) => react_jsx_runtime0.JSX.Element;
|
|
1243
1418
|
Content: ({
|
|
1244
1419
|
className,
|
|
1245
1420
|
...props
|
|
1246
|
-
}: NavbarContentProps) =>
|
|
1421
|
+
}: NavbarContentProps) => react_jsx_runtime0.JSX.Element;
|
|
1247
1422
|
List: ({
|
|
1248
1423
|
className,
|
|
1249
1424
|
...props
|
|
1250
|
-
}: NavbarListProps) =>
|
|
1425
|
+
}: NavbarListProps) => react_jsx_runtime0.JSX.Element;
|
|
1251
1426
|
ListItem: ({
|
|
1252
1427
|
className,
|
|
1253
1428
|
...props
|
|
1254
|
-
}: NavbarListItemProps) =>
|
|
1429
|
+
}: NavbarListItemProps) => react_jsx_runtime0.JSX.Element;
|
|
1255
1430
|
Toggle: ({
|
|
1256
1431
|
className,
|
|
1257
1432
|
...props
|
|
1258
|
-
}: NavbarToggleProps) =>
|
|
1433
|
+
}: NavbarToggleProps) => react_jsx_runtime0.JSX.Element;
|
|
1259
1434
|
Menu: ({
|
|
1260
1435
|
className,
|
|
1261
1436
|
...props
|
|
1262
|
-
}: NavbarMenuProps) =>
|
|
1437
|
+
}: NavbarMenuProps) => react_jsx_runtime0.JSX.Element;
|
|
1263
1438
|
MenuItem: ({
|
|
1264
1439
|
className,
|
|
1265
1440
|
...props
|
|
1266
|
-
}: NavbarMenuItemProps) =>
|
|
1441
|
+
}: NavbarMenuItemProps) => react_jsx_runtime0.JSX.Element;
|
|
1267
1442
|
};
|
|
1268
1443
|
interface NavbarContainerProps extends React.ComponentProps<"nav"> {}
|
|
1269
1444
|
interface NavbarContentProps extends React.ComponentProps<"div"> {}
|
|
@@ -1273,8 +1448,86 @@ interface NavbarToggleProps extends React.ComponentProps<"button"> {}
|
|
|
1273
1448
|
interface NavbarMenuProps extends React.ComponentProps<"ul"> {}
|
|
1274
1449
|
interface NavbarMenuItemProps extends React.ComponentProps<"li"> {}
|
|
1275
1450
|
//#endregion
|
|
1451
|
+
//#region src/components/progress/progress.variants.d.ts
|
|
1452
|
+
declare const progressVariants: tailwind_variants0.TVReturnType<{
|
|
1453
|
+
[key: string]: {
|
|
1454
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1455
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1456
|
+
label?: tailwind_merge0.ClassNameValue;
|
|
1457
|
+
track?: tailwind_merge0.ClassNameValue;
|
|
1458
|
+
value?: tailwind_merge0.ClassNameValue;
|
|
1459
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1460
|
+
};
|
|
1461
|
+
};
|
|
1462
|
+
} | {
|
|
1463
|
+
[x: string]: {
|
|
1464
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1465
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1466
|
+
label?: tailwind_merge0.ClassNameValue;
|
|
1467
|
+
track?: tailwind_merge0.ClassNameValue;
|
|
1468
|
+
value?: tailwind_merge0.ClassNameValue;
|
|
1469
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1470
|
+
};
|
|
1471
|
+
};
|
|
1472
|
+
} | {}, {
|
|
1473
|
+
indicator: string;
|
|
1474
|
+
label: string;
|
|
1475
|
+
root: string;
|
|
1476
|
+
track: string;
|
|
1477
|
+
value: string;
|
|
1478
|
+
}, undefined, {
|
|
1479
|
+
[key: string]: {
|
|
1480
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1481
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1482
|
+
label?: tailwind_merge0.ClassNameValue;
|
|
1483
|
+
track?: tailwind_merge0.ClassNameValue;
|
|
1484
|
+
value?: tailwind_merge0.ClassNameValue;
|
|
1485
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1486
|
+
};
|
|
1487
|
+
};
|
|
1488
|
+
} | {}, {
|
|
1489
|
+
indicator: string;
|
|
1490
|
+
label: string;
|
|
1491
|
+
root: string;
|
|
1492
|
+
track: string;
|
|
1493
|
+
value: string;
|
|
1494
|
+
}, tailwind_variants0.TVReturnType<unknown, {
|
|
1495
|
+
indicator: string;
|
|
1496
|
+
label: string;
|
|
1497
|
+
root: string;
|
|
1498
|
+
track: string;
|
|
1499
|
+
value: string;
|
|
1500
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1501
|
+
type ProgressVariants = VariantProps<typeof progressVariants>;
|
|
1502
|
+
//#endregion
|
|
1503
|
+
//#region src/components/progress/progress.d.ts
|
|
1504
|
+
interface ProgressProps extends ProgressVariants, Progress$1.Root.Props {}
|
|
1505
|
+
declare const Progress: {
|
|
1506
|
+
({
|
|
1507
|
+
className,
|
|
1508
|
+
...props
|
|
1509
|
+
}: ProgressProps): react_jsx_runtime0.JSX.Element;
|
|
1510
|
+
Label: ({
|
|
1511
|
+
className,
|
|
1512
|
+
...props
|
|
1513
|
+
}: Progress$1.Label.Props) => react_jsx_runtime0.JSX.Element;
|
|
1514
|
+
Value: ({
|
|
1515
|
+
className,
|
|
1516
|
+
...props
|
|
1517
|
+
}: Progress$1.Value.Props) => react_jsx_runtime0.JSX.Element;
|
|
1518
|
+
Track: ({
|
|
1519
|
+
className,
|
|
1520
|
+
...props
|
|
1521
|
+
}: Progress$1.Track.Props) => react_jsx_runtime0.JSX.Element;
|
|
1522
|
+
Indicator: ({
|
|
1523
|
+
className,
|
|
1524
|
+
...props
|
|
1525
|
+
}: Progress$1.Indicator.Props) => react_jsx_runtime0.JSX.Element;
|
|
1526
|
+
Root: /*elided*/any;
|
|
1527
|
+
};
|
|
1528
|
+
//#endregion
|
|
1276
1529
|
//#region src/components/separator/separator.variants.d.ts
|
|
1277
|
-
declare const separatorVariants:
|
|
1530
|
+
declare const separatorVariants: tailwind_variants0.TVReturnType<{
|
|
1278
1531
|
orientation: {
|
|
1279
1532
|
horizontal: string;
|
|
1280
1533
|
vertical: string;
|
|
@@ -1284,7 +1537,7 @@ declare const separatorVariants: tailwind_variants1.TVReturnType<{
|
|
|
1284
1537
|
horizontal: string;
|
|
1285
1538
|
vertical: string;
|
|
1286
1539
|
};
|
|
1287
|
-
}, undefined,
|
|
1540
|
+
}, undefined, tailwind_variants0.TVReturnType<{
|
|
1288
1541
|
orientation: {
|
|
1289
1542
|
horizontal: string;
|
|
1290
1543
|
vertical: string;
|
|
@@ -1298,10 +1551,98 @@ declare const Separator: ({
|
|
|
1298
1551
|
className,
|
|
1299
1552
|
orientation,
|
|
1300
1553
|
...props
|
|
1301
|
-
}: SeparatorProps) =>
|
|
1554
|
+
}: SeparatorProps) => react_jsx_runtime0.JSX.Element;
|
|
1555
|
+
//#endregion
|
|
1556
|
+
//#region src/components/slider/slider.variants.d.ts
|
|
1557
|
+
declare const sliderVariants: tailwind_variants0.TVReturnType<{
|
|
1558
|
+
[key: string]: {
|
|
1559
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1560
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1561
|
+
track?: tailwind_merge0.ClassNameValue;
|
|
1562
|
+
value?: tailwind_merge0.ClassNameValue;
|
|
1563
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1564
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
1565
|
+
thumb?: tailwind_merge0.ClassNameValue;
|
|
1566
|
+
};
|
|
1567
|
+
};
|
|
1568
|
+
} | {
|
|
1569
|
+
[x: string]: {
|
|
1570
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1571
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1572
|
+
track?: tailwind_merge0.ClassNameValue;
|
|
1573
|
+
value?: tailwind_merge0.ClassNameValue;
|
|
1574
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1575
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
1576
|
+
thumb?: tailwind_merge0.ClassNameValue;
|
|
1577
|
+
};
|
|
1578
|
+
};
|
|
1579
|
+
} | {}, {
|
|
1580
|
+
control: string;
|
|
1581
|
+
indicator: string;
|
|
1582
|
+
root: string;
|
|
1583
|
+
thumb: string;
|
|
1584
|
+
track: string;
|
|
1585
|
+
value: string;
|
|
1586
|
+
}, undefined, {
|
|
1587
|
+
[key: string]: {
|
|
1588
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1589
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1590
|
+
track?: tailwind_merge0.ClassNameValue;
|
|
1591
|
+
value?: tailwind_merge0.ClassNameValue;
|
|
1592
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1593
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
1594
|
+
thumb?: tailwind_merge0.ClassNameValue;
|
|
1595
|
+
};
|
|
1596
|
+
};
|
|
1597
|
+
} | {}, {
|
|
1598
|
+
control: string;
|
|
1599
|
+
indicator: string;
|
|
1600
|
+
root: string;
|
|
1601
|
+
thumb: string;
|
|
1602
|
+
track: string;
|
|
1603
|
+
value: string;
|
|
1604
|
+
}, tailwind_variants0.TVReturnType<unknown, {
|
|
1605
|
+
control: string;
|
|
1606
|
+
indicator: string;
|
|
1607
|
+
root: string;
|
|
1608
|
+
thumb: string;
|
|
1609
|
+
track: string;
|
|
1610
|
+
value: string;
|
|
1611
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1612
|
+
type SliderVariants = VariantProps<typeof sliderVariants>;
|
|
1613
|
+
//#endregion
|
|
1614
|
+
//#region src/components/slider/slider.d.ts
|
|
1615
|
+
interface SliderProps extends SliderVariants, Slider$1.Root.Props {}
|
|
1616
|
+
declare const Slider: {
|
|
1617
|
+
({
|
|
1618
|
+
className,
|
|
1619
|
+
...props
|
|
1620
|
+
}: SliderProps): react_jsx_runtime0.JSX.Element;
|
|
1621
|
+
Value: ({
|
|
1622
|
+
className,
|
|
1623
|
+
...props
|
|
1624
|
+
}: Slider$1.Value.Props) => react_jsx_runtime0.JSX.Element;
|
|
1625
|
+
Control: ({
|
|
1626
|
+
className,
|
|
1627
|
+
...props
|
|
1628
|
+
}: Slider$1.Control.Props) => react_jsx_runtime0.JSX.Element;
|
|
1629
|
+
Track: ({
|
|
1630
|
+
className,
|
|
1631
|
+
...props
|
|
1632
|
+
}: Slider$1.Track.Props) => react_jsx_runtime0.JSX.Element;
|
|
1633
|
+
Indicator: ({
|
|
1634
|
+
className,
|
|
1635
|
+
...props
|
|
1636
|
+
}: Slider$1.Indicator.Props) => react_jsx_runtime0.JSX.Element;
|
|
1637
|
+
Thumb: ({
|
|
1638
|
+
className,
|
|
1639
|
+
...props
|
|
1640
|
+
}: Slider$1.Thumb.Props) => react_jsx_runtime0.JSX.Element;
|
|
1641
|
+
Root: /*elided*/any;
|
|
1642
|
+
};
|
|
1302
1643
|
//#endregion
|
|
1303
1644
|
//#region src/components/switch/switch.variants.d.ts
|
|
1304
|
-
declare const switchVariants:
|
|
1645
|
+
declare const switchVariants: tailwind_variants0.TVReturnType<{
|
|
1305
1646
|
size: {
|
|
1306
1647
|
lg: {
|
|
1307
1648
|
root: string;
|
|
@@ -1331,7 +1672,7 @@ declare const switchVariants: tailwind_variants1.TVReturnType<{
|
|
|
1331
1672
|
}, {
|
|
1332
1673
|
root: string;
|
|
1333
1674
|
thumb: string;
|
|
1334
|
-
},
|
|
1675
|
+
}, tailwind_variants0.TVReturnType<{
|
|
1335
1676
|
size: {
|
|
1336
1677
|
lg: {
|
|
1337
1678
|
root: string;
|
|
@@ -1356,16 +1697,120 @@ declare const Switch: {
|
|
|
1356
1697
|
className,
|
|
1357
1698
|
size,
|
|
1358
1699
|
...props
|
|
1359
|
-
}: SwitchProps):
|
|
1700
|
+
}: SwitchProps): react_jsx_runtime0.JSX.Element;
|
|
1360
1701
|
Thumb: ({
|
|
1361
1702
|
className,
|
|
1362
1703
|
...props
|
|
1363
|
-
}: Switch$1.Thumb.Props) =>
|
|
1704
|
+
}: Switch$1.Thumb.Props) => react_jsx_runtime0.JSX.Element;
|
|
1705
|
+
Root: /*elided*/any;
|
|
1706
|
+
};
|
|
1707
|
+
//#endregion
|
|
1708
|
+
//#region src/components/table/table.variants.d.ts
|
|
1709
|
+
declare const tableVariants: tailwind_variants0.TVReturnType<{
|
|
1710
|
+
[key: string]: {
|
|
1711
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1712
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1713
|
+
tbody?: tailwind_merge0.ClassNameValue;
|
|
1714
|
+
td?: tailwind_merge0.ClassNameValue;
|
|
1715
|
+
tfoot?: tailwind_merge0.ClassNameValue;
|
|
1716
|
+
th?: tailwind_merge0.ClassNameValue;
|
|
1717
|
+
thead?: tailwind_merge0.ClassNameValue;
|
|
1718
|
+
tr?: tailwind_merge0.ClassNameValue;
|
|
1719
|
+
};
|
|
1720
|
+
};
|
|
1721
|
+
} | {
|
|
1722
|
+
[x: string]: {
|
|
1723
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1724
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1725
|
+
tbody?: tailwind_merge0.ClassNameValue;
|
|
1726
|
+
td?: tailwind_merge0.ClassNameValue;
|
|
1727
|
+
tfoot?: tailwind_merge0.ClassNameValue;
|
|
1728
|
+
th?: tailwind_merge0.ClassNameValue;
|
|
1729
|
+
thead?: tailwind_merge0.ClassNameValue;
|
|
1730
|
+
tr?: tailwind_merge0.ClassNameValue;
|
|
1731
|
+
};
|
|
1732
|
+
};
|
|
1733
|
+
} | {}, {
|
|
1734
|
+
root: string;
|
|
1735
|
+
tbody: string;
|
|
1736
|
+
td: string;
|
|
1737
|
+
tfoot: string;
|
|
1738
|
+
th: string;
|
|
1739
|
+
thead: string;
|
|
1740
|
+
tr: string;
|
|
1741
|
+
}, undefined, {
|
|
1742
|
+
[key: string]: {
|
|
1743
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1744
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1745
|
+
tbody?: tailwind_merge0.ClassNameValue;
|
|
1746
|
+
td?: tailwind_merge0.ClassNameValue;
|
|
1747
|
+
tfoot?: tailwind_merge0.ClassNameValue;
|
|
1748
|
+
th?: tailwind_merge0.ClassNameValue;
|
|
1749
|
+
thead?: tailwind_merge0.ClassNameValue;
|
|
1750
|
+
tr?: tailwind_merge0.ClassNameValue;
|
|
1751
|
+
};
|
|
1752
|
+
};
|
|
1753
|
+
} | {}, {
|
|
1754
|
+
root: string;
|
|
1755
|
+
tbody: string;
|
|
1756
|
+
td: string;
|
|
1757
|
+
tfoot: string;
|
|
1758
|
+
th: string;
|
|
1759
|
+
thead: string;
|
|
1760
|
+
tr: string;
|
|
1761
|
+
}, tailwind_variants0.TVReturnType<unknown, {
|
|
1762
|
+
root: string;
|
|
1763
|
+
tbody: string;
|
|
1764
|
+
td: string;
|
|
1765
|
+
tfoot: string;
|
|
1766
|
+
th: string;
|
|
1767
|
+
thead: string;
|
|
1768
|
+
tr: string;
|
|
1769
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1770
|
+
type TableVariants = VariantProps<typeof tableVariants>;
|
|
1771
|
+
//#endregion
|
|
1772
|
+
//#region src/components/table/table.d.ts
|
|
1773
|
+
interface TableProps extends TableVariants, React.ComponentProps<"table"> {}
|
|
1774
|
+
declare const Table: {
|
|
1775
|
+
({
|
|
1776
|
+
className,
|
|
1777
|
+
...props
|
|
1778
|
+
}: TableProps): react_jsx_runtime0.JSX.Element;
|
|
1364
1779
|
Root: /*elided*/any;
|
|
1780
|
+
Head: ({
|
|
1781
|
+
className,
|
|
1782
|
+
...props
|
|
1783
|
+
}: TableHeadProps) => react_jsx_runtime0.JSX.Element;
|
|
1784
|
+
Row: ({
|
|
1785
|
+
className,
|
|
1786
|
+
...props
|
|
1787
|
+
}: TableRowProps) => react_jsx_runtime0.JSX.Element;
|
|
1788
|
+
HeaderCell: ({
|
|
1789
|
+
className,
|
|
1790
|
+
...props
|
|
1791
|
+
}: TableHeaderCellProps) => react_jsx_runtime0.JSX.Element;
|
|
1792
|
+
Body: ({
|
|
1793
|
+
className,
|
|
1794
|
+
...props
|
|
1795
|
+
}: TableBodyProps) => react_jsx_runtime0.JSX.Element;
|
|
1796
|
+
DataCell: ({
|
|
1797
|
+
className,
|
|
1798
|
+
...props
|
|
1799
|
+
}: TableDataCellProps) => react_jsx_runtime0.JSX.Element;
|
|
1800
|
+
Footer: ({
|
|
1801
|
+
className,
|
|
1802
|
+
...props
|
|
1803
|
+
}: TableFooterProps) => react_jsx_runtime0.JSX.Element;
|
|
1365
1804
|
};
|
|
1805
|
+
interface TableHeadProps extends React.ComponentProps<"thead"> {}
|
|
1806
|
+
interface TableRowProps extends React.ComponentProps<"tr"> {}
|
|
1807
|
+
interface TableHeaderCellProps extends React.ComponentProps<"th"> {}
|
|
1808
|
+
interface TableBodyProps extends React.ComponentProps<"tbody"> {}
|
|
1809
|
+
interface TableDataCellProps extends React.ComponentProps<"td"> {}
|
|
1810
|
+
interface TableFooterProps extends React.ComponentProps<"tfoot"> {}
|
|
1366
1811
|
//#endregion
|
|
1367
1812
|
//#region src/components/tabs/tabs.variants.d.ts
|
|
1368
|
-
declare const tabsVariants:
|
|
1813
|
+
declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
1369
1814
|
[key: string]: {
|
|
1370
1815
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1371
1816
|
panel?: tailwind_merge0.ClassNameValue;
|
|
@@ -1407,7 +1852,7 @@ declare const tabsVariants: tailwind_variants1.TVReturnType<{
|
|
|
1407
1852
|
panel: string;
|
|
1408
1853
|
root: string;
|
|
1409
1854
|
tab: string;
|
|
1410
|
-
},
|
|
1855
|
+
}, tailwind_variants0.TVReturnType<unknown, {
|
|
1411
1856
|
indicator: string;
|
|
1412
1857
|
list: string;
|
|
1413
1858
|
panel: string;
|
|
@@ -1422,23 +1867,23 @@ declare const Tabs: {
|
|
|
1422
1867
|
({
|
|
1423
1868
|
className,
|
|
1424
1869
|
...props
|
|
1425
|
-
}: TabsProps):
|
|
1870
|
+
}: TabsProps): react_jsx_runtime0.JSX.Element;
|
|
1426
1871
|
List: ({
|
|
1427
1872
|
className,
|
|
1428
1873
|
...props
|
|
1429
|
-
}: TabsListProps) =>
|
|
1874
|
+
}: TabsListProps) => react_jsx_runtime0.JSX.Element;
|
|
1430
1875
|
Tab: ({
|
|
1431
1876
|
className,
|
|
1432
1877
|
...props
|
|
1433
|
-
}: TabsTabProps) =>
|
|
1878
|
+
}: TabsTabProps) => react_jsx_runtime0.JSX.Element;
|
|
1434
1879
|
Indicator: ({
|
|
1435
1880
|
className,
|
|
1436
1881
|
...props
|
|
1437
|
-
}: TabsIndicatorProps) =>
|
|
1882
|
+
}: TabsIndicatorProps) => react_jsx_runtime0.JSX.Element;
|
|
1438
1883
|
Panel: ({
|
|
1439
1884
|
className,
|
|
1440
1885
|
...props
|
|
1441
|
-
}: TabsPanelProps) =>
|
|
1886
|
+
}: TabsPanelProps) => react_jsx_runtime0.JSX.Element;
|
|
1442
1887
|
Root: /*elided*/any;
|
|
1443
1888
|
};
|
|
1444
1889
|
interface TabsListProps extends Tabs$1.List.Props {}
|
|
@@ -1447,7 +1892,7 @@ interface TabsIndicatorProps extends Tabs$1.Indicator.Props {}
|
|
|
1447
1892
|
interface TabsPanelProps extends Tabs$1.Panel.Props {}
|
|
1448
1893
|
//#endregion
|
|
1449
1894
|
//#region src/components/text/text.variants.d.ts
|
|
1450
|
-
declare const textVariants:
|
|
1895
|
+
declare const textVariants: tailwind_variants0.TVReturnType<{} | {} | {}, undefined, "text", {} | {}, undefined, tailwind_variants0.TVReturnType<unknown, undefined, "text", unknown, unknown, undefined>>;
|
|
1451
1896
|
type TextVariants = VariantProps<typeof textVariants>;
|
|
1452
1897
|
//#endregion
|
|
1453
1898
|
//#region src/components/text/text.d.ts
|
|
@@ -1455,10 +1900,10 @@ interface TextProps extends TextVariants, React.ComponentProps<"div"> {}
|
|
|
1455
1900
|
declare const Text: ({
|
|
1456
1901
|
className,
|
|
1457
1902
|
...props
|
|
1458
|
-
}: TextProps) =>
|
|
1903
|
+
}: TextProps) => react_jsx_runtime0.JSX.Element;
|
|
1459
1904
|
//#endregion
|
|
1460
1905
|
//#region src/components/textarea/textarea.variants.d.ts
|
|
1461
|
-
declare const textareaVariants:
|
|
1906
|
+
declare const textareaVariants: tailwind_variants0.TVReturnType<{} | {
|
|
1462
1907
|
inputSize: {
|
|
1463
1908
|
lg: tailwind_merge0.ClassNameValue | {
|
|
1464
1909
|
base?: tailwind_merge0.ClassNameValue;
|
|
@@ -1476,7 +1921,7 @@ declare const textareaVariants: tailwind_variants1.TVReturnType<{} | {
|
|
|
1476
1921
|
md: string;
|
|
1477
1922
|
sm: string;
|
|
1478
1923
|
};
|
|
1479
|
-
}, undefined,
|
|
1924
|
+
}, undefined, tailwind_variants0.TVReturnType<{
|
|
1480
1925
|
inputSize: {
|
|
1481
1926
|
lg: string;
|
|
1482
1927
|
md: string;
|
|
@@ -1488,7 +1933,7 @@ declare const textareaVariants: tailwind_variants1.TVReturnType<{} | {
|
|
|
1488
1933
|
md: string;
|
|
1489
1934
|
sm: string;
|
|
1490
1935
|
};
|
|
1491
|
-
}, undefined,
|
|
1936
|
+
}, undefined, tailwind_variants0.TVReturnType<{
|
|
1492
1937
|
inputSize: {
|
|
1493
1938
|
lg: string;
|
|
1494
1939
|
md: string;
|
|
@@ -1502,10 +1947,10 @@ interface TextareaProps extends TextareaVariants, React.ComponentProps<"textarea
|
|
|
1502
1947
|
declare const Textarea: ({
|
|
1503
1948
|
className,
|
|
1504
1949
|
...props
|
|
1505
|
-
}: TextareaProps) =>
|
|
1950
|
+
}: TextareaProps) => react_jsx_runtime0.JSX.Element;
|
|
1506
1951
|
//#endregion
|
|
1507
1952
|
//#region src/components/toggle-button/toggle-button.variants.d.ts
|
|
1508
|
-
declare const toggleButtonVariants:
|
|
1953
|
+
declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
1509
1954
|
isIconOnly: {
|
|
1510
1955
|
true: tailwind_merge0.ClassNameValue | {
|
|
1511
1956
|
base?: tailwind_merge0.ClassNameValue;
|
|
@@ -1555,7 +2000,7 @@ declare const toggleButtonVariants: tailwind_variants1.TVReturnType<{} | {
|
|
|
1555
2000
|
primary: string;
|
|
1556
2001
|
secondary: string;
|
|
1557
2002
|
};
|
|
1558
|
-
}, undefined,
|
|
2003
|
+
}, undefined, tailwind_variants0.TVReturnType<{
|
|
1559
2004
|
isIconOnly: {
|
|
1560
2005
|
true: string;
|
|
1561
2006
|
};
|
|
@@ -1587,7 +2032,7 @@ declare const toggleButtonVariants: tailwind_variants1.TVReturnType<{} | {
|
|
|
1587
2032
|
primary: string;
|
|
1588
2033
|
secondary: string;
|
|
1589
2034
|
};
|
|
1590
|
-
}, undefined,
|
|
2035
|
+
}, undefined, tailwind_variants0.TVReturnType<{
|
|
1591
2036
|
isIconOnly: {
|
|
1592
2037
|
true: string;
|
|
1593
2038
|
};
|
|
@@ -1613,7 +2058,7 @@ declare const ToggleButton: ({
|
|
|
1613
2058
|
variant,
|
|
1614
2059
|
size,
|
|
1615
2060
|
...props
|
|
1616
|
-
}: ToggleButtonProps) =>
|
|
2061
|
+
}: ToggleButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
1617
2062
|
//#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 };
|
|
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 };
|
|
1619
2064
|
//# sourceMappingURL=index.d.cts.map
|