@fea-ui/react 0.1.0-alpha.7 → 0.1.0-alpha.9
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 +478 -372
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1086 -1026
- package/dist/index.d.mts +823 -763
- package/dist/index.mjs +472 -377
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as tailwind_variants3 from "tailwind-variants";
|
|
2
2
|
import { VariantProps, cn } from "tailwind-variants";
|
|
3
|
-
import { Accordion
|
|
4
|
-
import
|
|
3
|
+
import { Accordion, AlertDialog, Avatar, Dialog, Fieldset, Menu, Meter, Progress, Radio, RadioGroup as RadioGroup$1, Separator as Separator$1, Slider, Switch, Tabs, ToggleProps } from "@base-ui/react";
|
|
4
|
+
import React$1 from "react";
|
|
5
|
+
import * as react_jsx_runtime9 from "react/jsx-runtime";
|
|
6
|
+
import { Button as Button$1, CheckboxGroup as CheckboxGroup$1, DialogTrigger, FieldError as FieldError$1, Form as Form$1, Input as Input$1, Label as Label$1, Popover as Popover$1, Text as Text$1, TextArea, TextField as TextField$1 } from "react-aria-components";
|
|
5
7
|
import * as tailwind_merge0 from "tailwind-merge";
|
|
6
8
|
|
|
7
9
|
//#region src/components/accordion/accordion.variants.d.ts
|
|
8
|
-
declare const accordionVariants:
|
|
10
|
+
declare const accordionVariants: tailwind_variants3.TVReturnType<{
|
|
9
11
|
[key: string]: {
|
|
10
12
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
11
13
|
content?: tailwind_merge0.ClassNameValue;
|
|
14
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
12
15
|
header?: tailwind_merge0.ClassNameValue;
|
|
13
16
|
item?: tailwind_merge0.ClassNameValue;
|
|
14
17
|
panel?: tailwind_merge0.ClassNameValue;
|
|
15
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
16
18
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
17
19
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
18
20
|
};
|
|
@@ -21,10 +23,10 @@ declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
|
21
23
|
[x: string]: {
|
|
22
24
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
23
25
|
content?: tailwind_merge0.ClassNameValue;
|
|
26
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
24
27
|
header?: tailwind_merge0.ClassNameValue;
|
|
25
28
|
item?: tailwind_merge0.ClassNameValue;
|
|
26
29
|
panel?: tailwind_merge0.ClassNameValue;
|
|
27
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
28
30
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
29
31
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
30
32
|
};
|
|
@@ -41,10 +43,10 @@ declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
|
41
43
|
[key: string]: {
|
|
42
44
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
43
45
|
content?: tailwind_merge0.ClassNameValue;
|
|
46
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
44
47
|
header?: tailwind_merge0.ClassNameValue;
|
|
45
48
|
item?: tailwind_merge0.ClassNameValue;
|
|
46
49
|
panel?: tailwind_merge0.ClassNameValue;
|
|
47
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
48
50
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
49
51
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
50
52
|
};
|
|
@@ -57,7 +59,7 @@ declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
|
57
59
|
root: string;
|
|
58
60
|
trigger: string;
|
|
59
61
|
triggerIcon: string;
|
|
60
|
-
},
|
|
62
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
61
63
|
content: string;
|
|
62
64
|
header: string;
|
|
63
65
|
item: string;
|
|
@@ -69,53 +71,166 @@ declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
|
69
71
|
type AccordionVariants = VariantProps<typeof accordionVariants>;
|
|
70
72
|
//#endregion
|
|
71
73
|
//#region src/components/accordion/accordion.d.ts
|
|
72
|
-
interface AccordionProps extends AccordionVariants, Accordion
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
74
|
+
interface AccordionProps extends AccordionVariants, Accordion.Root.Props {}
|
|
75
|
+
interface AccordionItemProps extends Accordion.Item.Props {}
|
|
76
|
+
interface AccordionHeaderProps extends Accordion.Header.Props {}
|
|
77
|
+
interface AccordionTriggerProps extends Accordion.Trigger.Props {}
|
|
78
|
+
interface AccordionTriggerIconProps extends React.ComponentProps<"svg"> {}
|
|
79
|
+
interface AccordionPanelProps extends Accordion.Panel.Props {}
|
|
80
|
+
interface AccordionContentProps extends React.ComponentProps<"div"> {}
|
|
81
|
+
declare const _default: (({
|
|
82
|
+
className,
|
|
83
|
+
...props
|
|
84
|
+
}: AccordionProps) => react_jsx_runtime9.JSX.Element) & {
|
|
78
85
|
Content: ({
|
|
79
86
|
className,
|
|
80
87
|
...props
|
|
81
|
-
}: AccordionContentProps) =>
|
|
88
|
+
}: AccordionContentProps) => react_jsx_runtime9.JSX.Element;
|
|
82
89
|
Header: ({
|
|
83
90
|
className,
|
|
84
91
|
...props
|
|
85
|
-
}: AccordionHeaderProps) =>
|
|
92
|
+
}: AccordionHeaderProps) => react_jsx_runtime9.JSX.Element;
|
|
86
93
|
Item: ({
|
|
87
94
|
className,
|
|
88
95
|
...props
|
|
89
|
-
}: AccordionItemProps) =>
|
|
96
|
+
}: AccordionItemProps) => react_jsx_runtime9.JSX.Element;
|
|
90
97
|
Panel: ({
|
|
91
98
|
className,
|
|
92
99
|
...props
|
|
93
|
-
}: AccordionPanelProps) =>
|
|
94
|
-
Root:
|
|
100
|
+
}: AccordionPanelProps) => react_jsx_runtime9.JSX.Element;
|
|
101
|
+
Root: ({
|
|
102
|
+
className,
|
|
103
|
+
...props
|
|
104
|
+
}: AccordionProps) => react_jsx_runtime9.JSX.Element;
|
|
95
105
|
Trigger: ({
|
|
96
106
|
className,
|
|
97
107
|
...props
|
|
98
|
-
}: AccordionTriggerProps) =>
|
|
108
|
+
}: AccordionTriggerProps) => react_jsx_runtime9.JSX.Element;
|
|
99
109
|
TriggerIcon: ({
|
|
100
110
|
className,
|
|
101
111
|
...props
|
|
102
|
-
}: AccordionTriggerIconProps) =>
|
|
112
|
+
}: AccordionTriggerIconProps) => react_jsx_runtime9.JSX.Element;
|
|
113
|
+
};
|
|
114
|
+
//#endregion
|
|
115
|
+
//#region src/components/alert/alert.variants.d.ts
|
|
116
|
+
declare const alertVariants: tailwind_variants3.TVReturnType<{
|
|
117
|
+
variant: {
|
|
118
|
+
danger: {
|
|
119
|
+
root: string;
|
|
120
|
+
};
|
|
121
|
+
info: {
|
|
122
|
+
root: string;
|
|
123
|
+
};
|
|
124
|
+
primary: {
|
|
125
|
+
root: string;
|
|
126
|
+
};
|
|
127
|
+
success: {
|
|
128
|
+
root: string;
|
|
129
|
+
};
|
|
130
|
+
warning: {
|
|
131
|
+
root: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
}, {
|
|
135
|
+
content: string;
|
|
136
|
+
description: string;
|
|
137
|
+
indicator: string;
|
|
138
|
+
root: string;
|
|
139
|
+
title: string;
|
|
140
|
+
}, undefined, {
|
|
141
|
+
variant: {
|
|
142
|
+
danger: {
|
|
143
|
+
root: string;
|
|
144
|
+
};
|
|
145
|
+
info: {
|
|
146
|
+
root: string;
|
|
147
|
+
};
|
|
148
|
+
primary: {
|
|
149
|
+
root: string;
|
|
150
|
+
};
|
|
151
|
+
success: {
|
|
152
|
+
root: string;
|
|
153
|
+
};
|
|
154
|
+
warning: {
|
|
155
|
+
root: string;
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
}, {
|
|
159
|
+
content: string;
|
|
160
|
+
description: string;
|
|
161
|
+
indicator: string;
|
|
162
|
+
root: string;
|
|
163
|
+
title: string;
|
|
164
|
+
}, tailwind_variants3.TVReturnType<{
|
|
165
|
+
variant: {
|
|
166
|
+
danger: {
|
|
167
|
+
root: string;
|
|
168
|
+
};
|
|
169
|
+
info: {
|
|
170
|
+
root: string;
|
|
171
|
+
};
|
|
172
|
+
primary: {
|
|
173
|
+
root: string;
|
|
174
|
+
};
|
|
175
|
+
success: {
|
|
176
|
+
root: string;
|
|
177
|
+
};
|
|
178
|
+
warning: {
|
|
179
|
+
root: string;
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
}, {
|
|
183
|
+
content: string;
|
|
184
|
+
description: string;
|
|
185
|
+
indicator: string;
|
|
186
|
+
root: string;
|
|
187
|
+
title: string;
|
|
188
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
189
|
+
type AlertVariants = VariantProps<typeof alertVariants>;
|
|
190
|
+
//#endregion
|
|
191
|
+
//#region src/components/alert/alert.d.ts
|
|
192
|
+
interface AlertProps extends AlertVariants, React.ComponentProps<"div"> {}
|
|
193
|
+
interface AlertIndicatorProps extends React.ComponentProps<"div"> {}
|
|
194
|
+
interface AlertContentProps extends React.ComponentProps<"div"> {}
|
|
195
|
+
interface AlertTitleProps extends React.ComponentProps<"div"> {}
|
|
196
|
+
interface AlertDescriptionProps extends React.ComponentProps<"div"> {}
|
|
197
|
+
declare const _default$1: (({
|
|
198
|
+
className,
|
|
199
|
+
variant,
|
|
200
|
+
...props
|
|
201
|
+
}: AlertProps) => react_jsx_runtime9.JSX.Element) & {
|
|
202
|
+
Content: ({
|
|
203
|
+
className,
|
|
204
|
+
...props
|
|
205
|
+
}: AlertContentProps) => react_jsx_runtime9.JSX.Element;
|
|
206
|
+
Description: ({
|
|
207
|
+
className,
|
|
208
|
+
...props
|
|
209
|
+
}: AlertDescriptionProps) => react_jsx_runtime9.JSX.Element;
|
|
210
|
+
Indicator: ({
|
|
211
|
+
className,
|
|
212
|
+
children,
|
|
213
|
+
...props
|
|
214
|
+
}: AlertIndicatorProps) => react_jsx_runtime9.JSX.Element;
|
|
215
|
+
Root: ({
|
|
216
|
+
className,
|
|
217
|
+
variant,
|
|
218
|
+
...props
|
|
219
|
+
}: AlertProps) => react_jsx_runtime9.JSX.Element;
|
|
220
|
+
Title: ({
|
|
221
|
+
className,
|
|
222
|
+
...props
|
|
223
|
+
}: AlertTitleProps) => react_jsx_runtime9.JSX.Element;
|
|
103
224
|
};
|
|
104
|
-
interface AccordionItemProps extends Accordion$1.Item.Props {}
|
|
105
|
-
interface AccordionHeaderProps extends Accordion$1.Header.Props {}
|
|
106
|
-
interface AccordionTriggerProps extends Accordion$1.Trigger.Props {}
|
|
107
|
-
interface AccordionTriggerIconProps extends React.ComponentProps<"svg"> {}
|
|
108
|
-
interface AccordionPanelProps extends Accordion$1.Panel.Props {}
|
|
109
|
-
interface AccordionContentProps extends React.ComponentProps<"div"> {}
|
|
110
225
|
//#endregion
|
|
111
226
|
//#region src/components/alert-dialog/alert-dialog.variants.d.ts
|
|
112
|
-
declare const alertDialogVariants:
|
|
227
|
+
declare const alertDialogVariants: tailwind_variants3.TVReturnType<{
|
|
113
228
|
[key: string]: {
|
|
114
229
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
230
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
115
231
|
root?: tailwind_merge0.ClassNameValue;
|
|
116
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
117
232
|
title?: tailwind_merge0.ClassNameValue;
|
|
118
|
-
|
|
233
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
119
234
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
120
235
|
close?: tailwind_merge0.ClassNameValue;
|
|
121
236
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -126,10 +241,10 @@ declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
126
241
|
} | {
|
|
127
242
|
[x: string]: {
|
|
128
243
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
244
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
129
245
|
root?: tailwind_merge0.ClassNameValue;
|
|
130
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
131
246
|
title?: tailwind_merge0.ClassNameValue;
|
|
132
|
-
|
|
247
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
133
248
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
134
249
|
close?: tailwind_merge0.ClassNameValue;
|
|
135
250
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -150,10 +265,10 @@ declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
150
265
|
}, undefined, {
|
|
151
266
|
[key: string]: {
|
|
152
267
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
268
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
153
269
|
root?: tailwind_merge0.ClassNameValue;
|
|
154
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
155
270
|
title?: tailwind_merge0.ClassNameValue;
|
|
156
|
-
|
|
271
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
157
272
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
158
273
|
close?: tailwind_merge0.ClassNameValue;
|
|
159
274
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -171,7 +286,7 @@ declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
171
286
|
title: string;
|
|
172
287
|
trigger: string;
|
|
173
288
|
viewport: string;
|
|
174
|
-
},
|
|
289
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
175
290
|
backdrop: string;
|
|
176
291
|
close: string;
|
|
177
292
|
description: string;
|
|
@@ -185,57 +300,58 @@ declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
185
300
|
type AlertDialogVariants = VariantProps<typeof alertDialogVariants>;
|
|
186
301
|
//#endregion
|
|
187
302
|
//#region src/components/alert-dialog/alert-dialog.d.ts
|
|
188
|
-
interface AlertDialogProps extends AlertDialogVariants, AlertDialog
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
303
|
+
interface AlertDialogProps extends AlertDialogVariants, AlertDialog.Root.Props {}
|
|
304
|
+
interface AlertDialogTriggerProps extends AlertDialog.Trigger.Props {}
|
|
305
|
+
interface AlertDialogPortalProps extends AlertDialog.Portal.Props {}
|
|
306
|
+
interface AlertDialogBackdropProps extends AlertDialog.Backdrop.Props {}
|
|
307
|
+
interface AlertDialogViewportProps extends AlertDialog.Viewport.Props {}
|
|
308
|
+
interface AlertDialogPopupProps extends AlertDialog.Popup.Props {}
|
|
309
|
+
interface AlertDialogTitleProps extends AlertDialog.Title.Props {}
|
|
310
|
+
interface AlertDialogDescriptionProps extends AlertDialog.Description.Props {}
|
|
311
|
+
interface AlertDialogCloseProps extends AlertDialog.Close.Props {}
|
|
312
|
+
declare const _default$2: (({
|
|
313
|
+
...props
|
|
314
|
+
}: AlertDialogProps) => react_jsx_runtime9.JSX.Element) & {
|
|
315
|
+
Backdrop: ({
|
|
195
316
|
className,
|
|
196
317
|
...props
|
|
197
|
-
}:
|
|
198
|
-
|
|
318
|
+
}: AlertDialogBackdropProps) => react_jsx_runtime9.JSX.Element;
|
|
319
|
+
Close: ({
|
|
199
320
|
className,
|
|
321
|
+
children,
|
|
200
322
|
...props
|
|
201
|
-
}:
|
|
202
|
-
|
|
323
|
+
}: AlertDialogCloseProps) => react_jsx_runtime9.JSX.Element;
|
|
324
|
+
Description: ({
|
|
203
325
|
className,
|
|
204
326
|
...props
|
|
205
|
-
}:
|
|
206
|
-
|
|
327
|
+
}: AlertDialogDescriptionProps) => react_jsx_runtime9.JSX.Element;
|
|
328
|
+
Popup: ({
|
|
207
329
|
className,
|
|
208
330
|
...props
|
|
209
|
-
}:
|
|
210
|
-
|
|
331
|
+
}: AlertDialogPopupProps) => react_jsx_runtime9.JSX.Element;
|
|
332
|
+
Portal: ({
|
|
211
333
|
className,
|
|
212
334
|
...props
|
|
213
|
-
}:
|
|
335
|
+
}: AlertDialogPortalProps) => react_jsx_runtime9.JSX.Element;
|
|
336
|
+
Root: ({
|
|
337
|
+
...props
|
|
338
|
+
}: AlertDialogProps) => react_jsx_runtime9.JSX.Element;
|
|
214
339
|
Title: ({
|
|
215
340
|
className,
|
|
216
341
|
...props
|
|
217
|
-
}: AlertDialogTitleProps) =>
|
|
218
|
-
|
|
342
|
+
}: AlertDialogTitleProps) => react_jsx_runtime9.JSX.Element;
|
|
343
|
+
Trigger: ({
|
|
219
344
|
className,
|
|
220
345
|
...props
|
|
221
|
-
}:
|
|
222
|
-
|
|
346
|
+
}: AlertDialogTriggerProps) => react_jsx_runtime9.JSX.Element;
|
|
347
|
+
Viewport: ({
|
|
223
348
|
className,
|
|
224
|
-
children,
|
|
225
349
|
...props
|
|
226
|
-
}:
|
|
350
|
+
}: AlertDialogViewportProps) => react_jsx_runtime9.JSX.Element;
|
|
227
351
|
};
|
|
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
352
|
//#endregion
|
|
237
353
|
//#region src/components/avatar/avatar.variants.d.ts
|
|
238
|
-
declare const avatarVariants:
|
|
354
|
+
declare const avatarVariants: tailwind_variants3.TVReturnType<{
|
|
239
355
|
size: {
|
|
240
356
|
lg: {
|
|
241
357
|
root: string;
|
|
@@ -267,7 +383,7 @@ declare const avatarVariants: tailwind_variants0.TVReturnType<{
|
|
|
267
383
|
fallback: string;
|
|
268
384
|
image: string;
|
|
269
385
|
root: string;
|
|
270
|
-
},
|
|
386
|
+
}, tailwind_variants3.TVReturnType<{
|
|
271
387
|
size: {
|
|
272
388
|
lg: {
|
|
273
389
|
root: string;
|
|
@@ -287,28 +403,31 @@ declare const avatarVariants: tailwind_variants0.TVReturnType<{
|
|
|
287
403
|
type AvatarVariants = VariantProps<typeof avatarVariants>;
|
|
288
404
|
//#endregion
|
|
289
405
|
//#region src/components/avatar/avatar.d.ts
|
|
290
|
-
interface AvatarProps extends AvatarVariants, Avatar
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
406
|
+
interface AvatarProps extends AvatarVariants, Avatar.Root.Props {}
|
|
407
|
+
interface AvatarImageProps extends Avatar.Image.Props {}
|
|
408
|
+
interface AvatarFallbackProps extends Avatar.Fallback.Props {}
|
|
409
|
+
declare const _default$3: (({
|
|
410
|
+
className,
|
|
411
|
+
size,
|
|
412
|
+
...props
|
|
413
|
+
}: AvatarProps) => react_jsx_runtime9.JSX.Element) & {
|
|
297
414
|
Fallback: ({
|
|
298
415
|
className,
|
|
299
416
|
...props
|
|
300
|
-
}: AvatarFallbackProps) =>
|
|
417
|
+
}: AvatarFallbackProps) => react_jsx_runtime9.JSX.Element;
|
|
301
418
|
Image: ({
|
|
302
419
|
className,
|
|
303
420
|
...props
|
|
304
|
-
}: AvatarImageProps) =>
|
|
305
|
-
Root:
|
|
421
|
+
}: AvatarImageProps) => react_jsx_runtime9.JSX.Element;
|
|
422
|
+
Root: ({
|
|
423
|
+
className,
|
|
424
|
+
size,
|
|
425
|
+
...props
|
|
426
|
+
}: AvatarProps) => react_jsx_runtime9.JSX.Element;
|
|
306
427
|
};
|
|
307
|
-
interface AvatarImageProps extends Avatar$1.Image.Props {}
|
|
308
|
-
interface AvatarFallbackProps extends Avatar$1.Fallback.Props {}
|
|
309
428
|
//#endregion
|
|
310
429
|
//#region src/components/button/button.variants.d.ts
|
|
311
|
-
declare const buttonVariants:
|
|
430
|
+
declare const buttonVariants: tailwind_variants3.TVReturnType<{
|
|
312
431
|
isIconOnly: {
|
|
313
432
|
true: string;
|
|
314
433
|
};
|
|
@@ -340,7 +459,7 @@ declare const buttonVariants: tailwind_variants0.TVReturnType<{
|
|
|
340
459
|
primary: string;
|
|
341
460
|
secondary: string;
|
|
342
461
|
};
|
|
343
|
-
}, undefined,
|
|
462
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
344
463
|
isIconOnly: {
|
|
345
464
|
true: string;
|
|
346
465
|
};
|
|
@@ -360,17 +479,17 @@ declare const buttonVariants: tailwind_variants0.TVReturnType<{
|
|
|
360
479
|
type ButtonVariants = VariantProps<typeof buttonVariants>;
|
|
361
480
|
//#endregion
|
|
362
481
|
//#region src/components/button/button.d.ts
|
|
363
|
-
|
|
482
|
+
interface ButtonProps extends ButtonVariants, React.ComponentProps<typeof Button$1> {}
|
|
364
483
|
declare const Button: ({
|
|
365
484
|
className,
|
|
366
485
|
variant,
|
|
367
486
|
size,
|
|
368
487
|
isIconOnly,
|
|
369
488
|
...props
|
|
370
|
-
}: ButtonProps) =>
|
|
489
|
+
}: ButtonProps) => react_jsx_runtime9.JSX.Element;
|
|
371
490
|
//#endregion
|
|
372
491
|
//#region src/components/button-group/button-group.variants.d.ts
|
|
373
|
-
declare const buttonGroupVariants:
|
|
492
|
+
declare const buttonGroupVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "button-group", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "button-group", unknown, unknown, undefined>>;
|
|
374
493
|
type ButtonGroupVariants = VariantProps<typeof buttonGroupVariants>;
|
|
375
494
|
//#endregion
|
|
376
495
|
//#region src/components/button-group/button-group.d.ts
|
|
@@ -378,10 +497,10 @@ interface ButtonGroupProps extends ButtonGroupVariants, React.ComponentProps<"di
|
|
|
378
497
|
declare const ButtonGroup: ({
|
|
379
498
|
className,
|
|
380
499
|
...props
|
|
381
|
-
}: ButtonGroupProps) =>
|
|
500
|
+
}: ButtonGroupProps) => react_jsx_runtime9.JSX.Element;
|
|
382
501
|
//#endregion
|
|
383
502
|
//#region src/components/card/card.variants.d.ts
|
|
384
|
-
declare const cardVariants:
|
|
503
|
+
declare const cardVariants: tailwind_variants3.TVReturnType<{
|
|
385
504
|
variant: {
|
|
386
505
|
default: {
|
|
387
506
|
root: string;
|
|
@@ -413,7 +532,7 @@ declare const cardVariants: tailwind_variants0.TVReturnType<{
|
|
|
413
532
|
header: string;
|
|
414
533
|
root: string;
|
|
415
534
|
title: string;
|
|
416
|
-
},
|
|
535
|
+
}, tailwind_variants3.TVReturnType<{
|
|
417
536
|
variant: {
|
|
418
537
|
default: {
|
|
419
538
|
root: string;
|
|
@@ -434,115 +553,57 @@ type CardVariants = VariantProps<typeof cardVariants>;
|
|
|
434
553
|
//#endregion
|
|
435
554
|
//#region src/components/card/card.d.ts
|
|
436
555
|
interface CardProps extends CardVariants, React.ComponentProps<"div"> {}
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
556
|
+
interface CardHeaderProps extends React.ComponentProps<"div"> {}
|
|
557
|
+
interface CardBodyProps extends React.ComponentProps<"div"> {}
|
|
558
|
+
interface CardFooterProps extends React.ComponentProps<"div"> {}
|
|
559
|
+
interface CardTitle extends React.ComponentProps<"h2"> {}
|
|
560
|
+
interface CardDescriptionProps extends React.ComponentProps<"p"> {}
|
|
561
|
+
/** Exports */
|
|
562
|
+
declare const _default$4: (({
|
|
563
|
+
className,
|
|
564
|
+
variant,
|
|
565
|
+
...props
|
|
566
|
+
}: CardProps) => react_jsx_runtime9.JSX.Element) & {
|
|
444
567
|
Body: ({
|
|
445
568
|
className,
|
|
446
569
|
...props
|
|
447
|
-
}: CardBodyProps) =>
|
|
570
|
+
}: CardBodyProps) => react_jsx_runtime9.JSX.Element;
|
|
448
571
|
Description: ({
|
|
449
572
|
className,
|
|
450
573
|
...props
|
|
451
|
-
}: CardDescriptionProps) =>
|
|
574
|
+
}: CardDescriptionProps) => react_jsx_runtime9.JSX.Element;
|
|
452
575
|
Footer: ({
|
|
453
576
|
className,
|
|
454
577
|
...props
|
|
455
|
-
}: CardFooterProps) =>
|
|
578
|
+
}: CardFooterProps) => react_jsx_runtime9.JSX.Element;
|
|
456
579
|
Header: ({
|
|
457
580
|
className,
|
|
458
581
|
...props
|
|
459
|
-
}: CardHeaderProps) =>
|
|
460
|
-
Root:
|
|
461
|
-
Title: ({
|
|
462
|
-
className,
|
|
463
|
-
...props
|
|
464
|
-
}: CardTitle) => react_jsx_runtime0.JSX.Element;
|
|
465
|
-
};
|
|
466
|
-
interface CardHeaderProps extends React.ComponentProps<"div"> {}
|
|
467
|
-
interface CardBodyProps extends React.ComponentProps<"div"> {}
|
|
468
|
-
interface CardFooterProps extends React.ComponentProps<"div"> {}
|
|
469
|
-
interface CardTitle extends React.ComponentProps<"h2"> {}
|
|
470
|
-
interface CardDescriptionProps extends React.ComponentProps<"p"> {}
|
|
471
|
-
//#endregion
|
|
472
|
-
//#region src/components/checkbox/checkbox.variants.d.ts
|
|
473
|
-
declare const checkboxVariants: tailwind_variants0.TVReturnType<{
|
|
474
|
-
[key: string]: {
|
|
475
|
-
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
476
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
477
|
-
label?: tailwind_merge0.ClassNameValue;
|
|
478
|
-
checkboxIcon?: tailwind_merge0.ClassNameValue;
|
|
479
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
480
|
-
};
|
|
481
|
-
};
|
|
482
|
-
} | {
|
|
483
|
-
[x: string]: {
|
|
484
|
-
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
485
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
486
|
-
label?: tailwind_merge0.ClassNameValue;
|
|
487
|
-
checkboxIcon?: tailwind_merge0.ClassNameValue;
|
|
488
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
489
|
-
};
|
|
490
|
-
};
|
|
491
|
-
} | {}, {
|
|
492
|
-
checkboxIcon: string;
|
|
493
|
-
indicator: string;
|
|
494
|
-
label: string;
|
|
495
|
-
root: string;
|
|
496
|
-
}, undefined, {
|
|
497
|
-
[key: string]: {
|
|
498
|
-
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
499
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
500
|
-
label?: tailwind_merge0.ClassNameValue;
|
|
501
|
-
checkboxIcon?: tailwind_merge0.ClassNameValue;
|
|
502
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
503
|
-
};
|
|
504
|
-
};
|
|
505
|
-
} | {}, {
|
|
506
|
-
checkboxIcon: string;
|
|
507
|
-
indicator: string;
|
|
508
|
-
label: string;
|
|
509
|
-
root: string;
|
|
510
|
-
}, tailwind_variants0.TVReturnType<unknown, {
|
|
511
|
-
checkboxIcon: string;
|
|
512
|
-
indicator: string;
|
|
513
|
-
label: string;
|
|
514
|
-
root: string;
|
|
515
|
-
}, undefined, unknown, unknown, undefined>>;
|
|
516
|
-
type CheckboxVariants = VariantProps<typeof checkboxVariants>;
|
|
517
|
-
//#endregion
|
|
518
|
-
//#region src/components/checkbox/checkbox.d.ts
|
|
519
|
-
interface CheckboxProps extends CheckboxVariants, Checkbox$1.Root.Props {}
|
|
520
|
-
declare const Checkbox: {
|
|
521
|
-
({
|
|
582
|
+
}: CardHeaderProps) => react_jsx_runtime9.JSX.Element;
|
|
583
|
+
Root: ({
|
|
522
584
|
className,
|
|
585
|
+
variant,
|
|
523
586
|
...props
|
|
524
|
-
}:
|
|
525
|
-
|
|
587
|
+
}: CardProps) => react_jsx_runtime9.JSX.Element;
|
|
588
|
+
Title: ({
|
|
526
589
|
className,
|
|
527
590
|
...props
|
|
528
|
-
}:
|
|
529
|
-
Root: /*elided*/any;
|
|
591
|
+
}: CardTitle) => react_jsx_runtime9.JSX.Element;
|
|
530
592
|
};
|
|
531
|
-
interface CheckboxIndicatorProps extends Checkbox$1.Indicator.Props {}
|
|
532
593
|
//#endregion
|
|
533
594
|
//#region src/components/checkbox-group/checkbox-group.variants.d.ts
|
|
534
|
-
declare const checkboxGroupVariants:
|
|
595
|
+
declare const checkboxGroupVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "checkbox-group", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "checkbox-group", unknown, unknown, undefined>>;
|
|
535
596
|
type CheckboxGroupVariants = VariantProps<typeof checkboxGroupVariants>;
|
|
536
597
|
//#endregion
|
|
537
598
|
//#region src/components/checkbox-group/checkbox-group.d.ts
|
|
538
|
-
interface CheckboxGroupProps extends CheckboxGroupVariants, CheckboxGroup$1
|
|
599
|
+
interface CheckboxGroupProps extends CheckboxGroupVariants, React.ComponentProps<typeof CheckboxGroup$1> {}
|
|
539
600
|
declare const CheckboxGroup: ({
|
|
540
601
|
className,
|
|
541
602
|
...props
|
|
542
|
-
}: CheckboxGroupProps) =>
|
|
603
|
+
}: CheckboxGroupProps) => react_jsx_runtime9.JSX.Element;
|
|
543
604
|
//#endregion
|
|
544
605
|
//#region src/components/chip/chip.variants.d.ts
|
|
545
|
-
declare const chipVariants:
|
|
606
|
+
declare const chipVariants: tailwind_variants3.TVReturnType<{
|
|
546
607
|
size: {
|
|
547
608
|
lg: string;
|
|
548
609
|
md: string;
|
|
@@ -568,7 +629,7 @@ declare const chipVariants: tailwind_variants0.TVReturnType<{
|
|
|
568
629
|
secondary: string;
|
|
569
630
|
success: string;
|
|
570
631
|
};
|
|
571
|
-
}, undefined,
|
|
632
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
572
633
|
size: {
|
|
573
634
|
lg: string;
|
|
574
635
|
md: string;
|
|
@@ -591,10 +652,10 @@ declare const Chip: ({
|
|
|
591
652
|
variant,
|
|
592
653
|
size,
|
|
593
654
|
...props
|
|
594
|
-
}: ChipProps) =>
|
|
655
|
+
}: ChipProps) => react_jsx_runtime9.JSX.Element;
|
|
595
656
|
//#endregion
|
|
596
657
|
//#region src/components/container/container.variants.d.ts
|
|
597
|
-
declare const containerVariants:
|
|
658
|
+
declare const containerVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "container", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "container", unknown, unknown, undefined>>;
|
|
598
659
|
type ContainerVariants = VariantProps<typeof containerVariants>;
|
|
599
660
|
//#endregion
|
|
600
661
|
//#region src/components/container/container.d.ts
|
|
@@ -602,16 +663,27 @@ interface ContainerProps extends ContainerVariants, React.ComponentProps<"div">
|
|
|
602
663
|
declare const Container: ({
|
|
603
664
|
className,
|
|
604
665
|
...props
|
|
605
|
-
}: ContainerProps) =>
|
|
666
|
+
}: ContainerProps) => react_jsx_runtime9.JSX.Element;
|
|
667
|
+
//#endregion
|
|
668
|
+
//#region src/components/description/description.variants.d.ts
|
|
669
|
+
declare const descriptionVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "description", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "description", unknown, unknown, undefined>>;
|
|
670
|
+
type DescriptionVariants = VariantProps<typeof descriptionVariants>;
|
|
671
|
+
//#endregion
|
|
672
|
+
//#region src/components/description/description.d.ts
|
|
673
|
+
interface DescriptionProps extends DescriptionVariants, React.ComponentProps<typeof Text$1> {}
|
|
674
|
+
declare const Description: ({
|
|
675
|
+
className,
|
|
676
|
+
...props
|
|
677
|
+
}: DescriptionProps) => react_jsx_runtime9.JSX.Element;
|
|
606
678
|
//#endregion
|
|
607
679
|
//#region src/components/dialog/dialog.variants.d.ts
|
|
608
|
-
declare const dialogVariants:
|
|
680
|
+
declare const dialogVariants: tailwind_variants3.TVReturnType<{
|
|
609
681
|
[key: string]: {
|
|
610
682
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
683
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
611
684
|
root?: tailwind_merge0.ClassNameValue;
|
|
612
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
613
685
|
title?: tailwind_merge0.ClassNameValue;
|
|
614
|
-
|
|
686
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
615
687
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
616
688
|
close?: tailwind_merge0.ClassNameValue;
|
|
617
689
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -622,10 +694,10 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
622
694
|
} | {
|
|
623
695
|
[x: string]: {
|
|
624
696
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
697
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
625
698
|
root?: tailwind_merge0.ClassNameValue;
|
|
626
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
627
699
|
title?: tailwind_merge0.ClassNameValue;
|
|
628
|
-
|
|
700
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
629
701
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
630
702
|
close?: tailwind_merge0.ClassNameValue;
|
|
631
703
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -646,10 +718,10 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
646
718
|
}, undefined, {
|
|
647
719
|
[key: string]: {
|
|
648
720
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
721
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
649
722
|
root?: tailwind_merge0.ClassNameValue;
|
|
650
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
651
723
|
title?: tailwind_merge0.ClassNameValue;
|
|
652
|
-
|
|
724
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
653
725
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
654
726
|
close?: tailwind_merge0.ClassNameValue;
|
|
655
727
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -667,7 +739,7 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
667
739
|
title: string;
|
|
668
740
|
trigger: string;
|
|
669
741
|
viewport: string;
|
|
670
|
-
},
|
|
742
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
671
743
|
backdrop: string;
|
|
672
744
|
close: string;
|
|
673
745
|
description: string;
|
|
@@ -681,56 +753,57 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
681
753
|
type DialogVariants = VariantProps<typeof dialogVariants>;
|
|
682
754
|
//#endregion
|
|
683
755
|
//#region src/components/dialog/dialog.d.ts
|
|
684
|
-
interface DialogProps extends DialogVariants, Dialog
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
756
|
+
interface DialogProps extends DialogVariants, Dialog.Root.Props {}
|
|
757
|
+
interface DialogTriggerProps extends Dialog.Trigger.Props {}
|
|
758
|
+
interface DialogPortalProps extends Dialog.Portal.Props {}
|
|
759
|
+
interface DialogBackdropProps extends Dialog.Backdrop.Props {}
|
|
760
|
+
interface DialogViewportProps extends Dialog.Viewport.Props {}
|
|
761
|
+
interface DialogPopupProps extends Dialog.Popup.Props {}
|
|
762
|
+
interface DialogTitleProps extends Dialog.Title.Props {}
|
|
763
|
+
interface DialogDescriptionProps extends Dialog.Description.Props {}
|
|
764
|
+
interface DialogCloseProps extends Dialog.Close.Props {}
|
|
765
|
+
declare const _default$5: (({
|
|
766
|
+
...props
|
|
767
|
+
}: DialogProps) => react_jsx_runtime9.JSX.Element) & {
|
|
689
768
|
Backdrop: ({
|
|
690
769
|
className,
|
|
691
770
|
...props
|
|
692
|
-
}: DialogBackdropProps) =>
|
|
771
|
+
}: DialogBackdropProps) => react_jsx_runtime9.JSX.Element;
|
|
693
772
|
Close: ({
|
|
694
773
|
className,
|
|
695
774
|
...props
|
|
696
|
-
}: DialogCloseProps) =>
|
|
775
|
+
}: DialogCloseProps) => react_jsx_runtime9.JSX.Element;
|
|
697
776
|
Description: ({
|
|
698
777
|
className,
|
|
699
778
|
...props
|
|
700
|
-
}: DialogDescriptionProps) =>
|
|
779
|
+
}: DialogDescriptionProps) => react_jsx_runtime9.JSX.Element;
|
|
701
780
|
Popup: ({
|
|
702
781
|
className,
|
|
703
782
|
...props
|
|
704
|
-
}: DialogPopupProps) =>
|
|
783
|
+
}: DialogPopupProps) => react_jsx_runtime9.JSX.Element;
|
|
705
784
|
Portal: ({
|
|
706
785
|
className,
|
|
707
786
|
...props
|
|
708
|
-
}: DialogPortalProps) =>
|
|
709
|
-
Root:
|
|
787
|
+
}: DialogPortalProps) => react_jsx_runtime9.JSX.Element;
|
|
788
|
+
Root: ({
|
|
789
|
+
...props
|
|
790
|
+
}: DialogProps) => react_jsx_runtime9.JSX.Element;
|
|
710
791
|
Title: ({
|
|
711
792
|
className,
|
|
712
793
|
...props
|
|
713
|
-
}: DialogTitleProps) =>
|
|
794
|
+
}: DialogTitleProps) => react_jsx_runtime9.JSX.Element;
|
|
714
795
|
Trigger: ({
|
|
715
796
|
className,
|
|
716
797
|
...props
|
|
717
|
-
}: DialogTriggerProps) =>
|
|
798
|
+
}: DialogTriggerProps) => react_jsx_runtime9.JSX.Element;
|
|
718
799
|
Viewport: ({
|
|
719
800
|
className,
|
|
720
801
|
...props
|
|
721
|
-
}: DialogViewportProps) =>
|
|
802
|
+
}: DialogViewportProps) => react_jsx_runtime9.JSX.Element;
|
|
722
803
|
};
|
|
723
|
-
interface DialogTriggerProps extends Dialog$1.Trigger.Props {}
|
|
724
|
-
interface DialogPortalProps extends Dialog$1.Portal.Props {}
|
|
725
|
-
interface DialogBackdropProps extends Dialog$1.Backdrop.Props {}
|
|
726
|
-
interface DialogViewportProps extends Dialog$1.Viewport.Props {}
|
|
727
|
-
interface DialogPopupProps extends Dialog$1.Popup.Props {}
|
|
728
|
-
interface DialogTitleProps extends Dialog$1.Title.Props {}
|
|
729
|
-
interface DialogDescriptionProps extends Dialog$1.Description.Props {}
|
|
730
|
-
interface DialogCloseProps extends Dialog$1.Close.Props {}
|
|
731
804
|
//#endregion
|
|
732
805
|
//#region src/components/drawer/drawer.variants.d.ts
|
|
733
|
-
declare const drawerVariants:
|
|
806
|
+
declare const drawerVariants: tailwind_variants3.TVReturnType<{
|
|
734
807
|
position: {
|
|
735
808
|
bottom: {
|
|
736
809
|
popup: string;
|
|
@@ -780,7 +853,7 @@ declare const drawerVariants: tailwind_variants0.TVReturnType<{
|
|
|
780
853
|
title: string;
|
|
781
854
|
trigger: string;
|
|
782
855
|
viewport: string;
|
|
783
|
-
},
|
|
856
|
+
}, tailwind_variants3.TVReturnType<{
|
|
784
857
|
position: {
|
|
785
858
|
bottom: {
|
|
786
859
|
popup: string;
|
|
@@ -809,151 +882,75 @@ declare const drawerVariants: tailwind_variants0.TVReturnType<{
|
|
|
809
882
|
type DrawerVariants = VariantProps<typeof drawerVariants>;
|
|
810
883
|
//#endregion
|
|
811
884
|
//#region src/components/drawer/drawer.d.ts
|
|
812
|
-
interface DrawerProps extends DrawerVariants, Dialog
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
885
|
+
interface DrawerProps extends DrawerVariants, Dialog.Root.Props {}
|
|
886
|
+
interface DrawerTriggerProps extends Dialog.Trigger.Props {}
|
|
887
|
+
interface DrawerPortalProps extends Dialog.Portal.Props {}
|
|
888
|
+
interface DrawerBackdropProps extends Dialog.Backdrop.Props {}
|
|
889
|
+
interface DrawerViewportProps extends Dialog.Viewport.Props {}
|
|
890
|
+
interface DrawerPopupProps extends Dialog.Popup.Props {}
|
|
891
|
+
interface DrawerTitleProps extends Dialog.Title.Props {}
|
|
892
|
+
interface DrawerDescriptionProps extends Dialog.Description.Props {}
|
|
893
|
+
interface DrawerCloseProps extends Dialog.Close.Props {}
|
|
894
|
+
declare const _default$6: (({
|
|
895
|
+
position,
|
|
896
|
+
...props
|
|
897
|
+
}: DrawerProps) => react_jsx_runtime9.JSX.Element) & {
|
|
898
|
+
Backdrop: ({
|
|
820
899
|
className,
|
|
821
900
|
...props
|
|
822
|
-
}:
|
|
823
|
-
|
|
901
|
+
}: DrawerBackdropProps) => react_jsx_runtime9.JSX.Element;
|
|
902
|
+
Close: ({
|
|
824
903
|
className,
|
|
904
|
+
children,
|
|
825
905
|
...props
|
|
826
|
-
}:
|
|
827
|
-
|
|
906
|
+
}: DrawerCloseProps) => react_jsx_runtime9.JSX.Element;
|
|
907
|
+
Description: ({
|
|
828
908
|
className,
|
|
829
909
|
...props
|
|
830
|
-
}:
|
|
831
|
-
|
|
910
|
+
}: DrawerDescriptionProps) => react_jsx_runtime9.JSX.Element;
|
|
911
|
+
Popup: ({
|
|
832
912
|
className,
|
|
833
913
|
...props
|
|
834
|
-
}:
|
|
835
|
-
|
|
914
|
+
}: DrawerPopupProps) => react_jsx_runtime9.JSX.Element;
|
|
915
|
+
Portal: ({
|
|
836
916
|
className,
|
|
837
917
|
...props
|
|
838
|
-
}:
|
|
918
|
+
}: DrawerPortalProps) => react_jsx_runtime9.JSX.Element;
|
|
919
|
+
Root: ({
|
|
920
|
+
position,
|
|
921
|
+
...props
|
|
922
|
+
}: DrawerProps) => react_jsx_runtime9.JSX.Element;
|
|
839
923
|
Title: ({
|
|
840
924
|
className,
|
|
841
925
|
...props
|
|
842
|
-
}: DrawerTitleProps) =>
|
|
843
|
-
|
|
926
|
+
}: DrawerTitleProps) => react_jsx_runtime9.JSX.Element;
|
|
927
|
+
Trigger: ({
|
|
844
928
|
className,
|
|
845
929
|
...props
|
|
846
|
-
}:
|
|
847
|
-
|
|
930
|
+
}: DrawerTriggerProps) => react_jsx_runtime9.JSX.Element;
|
|
931
|
+
Viewport: ({
|
|
848
932
|
className,
|
|
849
|
-
children,
|
|
850
933
|
...props
|
|
851
|
-
}:
|
|
934
|
+
}: DrawerViewportProps) => react_jsx_runtime9.JSX.Element;
|
|
852
935
|
};
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
interface
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
sm: {
|
|
872
|
-
control: string;
|
|
873
|
-
};
|
|
874
|
-
};
|
|
875
|
-
}, {
|
|
876
|
-
control: string;
|
|
877
|
-
description: string;
|
|
878
|
-
error: string;
|
|
879
|
-
label: string;
|
|
880
|
-
root: string;
|
|
881
|
-
}, undefined, {
|
|
882
|
-
size: {
|
|
883
|
-
lg: {
|
|
884
|
-
control: string;
|
|
885
|
-
};
|
|
886
|
-
md: {
|
|
887
|
-
control: string;
|
|
888
|
-
};
|
|
889
|
-
sm: {
|
|
890
|
-
control: string;
|
|
891
|
-
};
|
|
892
|
-
};
|
|
893
|
-
}, {
|
|
894
|
-
control: string;
|
|
895
|
-
description: string;
|
|
896
|
-
error: string;
|
|
897
|
-
label: string;
|
|
898
|
-
root: string;
|
|
899
|
-
}, tailwind_variants0.TVReturnType<{
|
|
900
|
-
size: {
|
|
901
|
-
lg: {
|
|
902
|
-
control: string;
|
|
903
|
-
};
|
|
904
|
-
md: {
|
|
905
|
-
control: string;
|
|
906
|
-
};
|
|
907
|
-
sm: {
|
|
908
|
-
control: string;
|
|
909
|
-
};
|
|
910
|
-
};
|
|
911
|
-
}, {
|
|
912
|
-
control: string;
|
|
913
|
-
description: string;
|
|
914
|
-
error: string;
|
|
915
|
-
label: string;
|
|
916
|
-
root: string;
|
|
917
|
-
}, undefined, unknown, unknown, undefined>>;
|
|
918
|
-
type FieldVariants = VariantProps<typeof fieldVariants>;
|
|
919
|
-
//#endregion
|
|
920
|
-
//#region src/components/field/field.d.ts
|
|
921
|
-
interface FieldProps extends FieldVariants, React.ComponentProps<typeof Field$1.Root> {}
|
|
922
|
-
declare const Field: {
|
|
923
|
-
({
|
|
924
|
-
className,
|
|
925
|
-
size,
|
|
926
|
-
...props
|
|
927
|
-
}: FieldProps): react_jsx_runtime0.JSX.Element;
|
|
928
|
-
Control: ({
|
|
929
|
-
className,
|
|
930
|
-
...props
|
|
931
|
-
}: FieldControlProps) => react_jsx_runtime0.JSX.Element;
|
|
932
|
-
Description: ({
|
|
933
|
-
className,
|
|
934
|
-
...props
|
|
935
|
-
}: FieldDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
936
|
-
Error: ({
|
|
937
|
-
className,
|
|
938
|
-
...props
|
|
939
|
-
}: FieldErrorProps) => react_jsx_runtime0.JSX.Element;
|
|
940
|
-
Label: ({
|
|
941
|
-
className,
|
|
942
|
-
...props
|
|
943
|
-
}: FieldLabelProps) => react_jsx_runtime0.JSX.Element;
|
|
944
|
-
Root: /*elided*/any;
|
|
945
|
-
};
|
|
946
|
-
interface FieldLabelProps extends React.ComponentProps<typeof Field$1.Label> {}
|
|
947
|
-
interface FieldDescriptionProps extends React.ComponentProps<typeof Field$1.Description> {}
|
|
948
|
-
interface FieldControlProps extends React.ComponentProps<typeof Field$1.Control> {}
|
|
949
|
-
interface FieldErrorProps extends React.ComponentProps<typeof Field$1.Error> {}
|
|
950
|
-
//#endregion
|
|
951
|
-
//#region src/components/fieldset/fieldset.variants.d.ts
|
|
952
|
-
declare const fieldsetVariants: tailwind_variants0.TVReturnType<{
|
|
953
|
-
[key: string]: {
|
|
954
|
-
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
955
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
956
|
-
legend?: tailwind_merge0.ClassNameValue;
|
|
936
|
+
//#endregion
|
|
937
|
+
//#region src/components/field-error/field-error.variants.d.ts
|
|
938
|
+
declare const fieldErrorVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "field-error", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "field-error", unknown, unknown, undefined>>;
|
|
939
|
+
type FieldErrorVariants = VariantProps<typeof fieldErrorVariants>;
|
|
940
|
+
//#endregion
|
|
941
|
+
//#region src/components/field-error/field-error.d.ts
|
|
942
|
+
interface FieldErrorProps extends FieldErrorVariants, React.ComponentProps<typeof FieldError$1> {}
|
|
943
|
+
declare const FieldError: ({
|
|
944
|
+
className,
|
|
945
|
+
...props
|
|
946
|
+
}: FieldErrorProps) => react_jsx_runtime9.JSX.Element;
|
|
947
|
+
//#endregion
|
|
948
|
+
//#region src/components/fieldset/fieldset.variants.d.ts
|
|
949
|
+
declare const fieldsetVariants: tailwind_variants3.TVReturnType<{
|
|
950
|
+
[key: string]: {
|
|
951
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
952
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
953
|
+
legend?: tailwind_merge0.ClassNameValue;
|
|
957
954
|
};
|
|
958
955
|
};
|
|
959
956
|
} | {
|
|
@@ -976,40 +973,42 @@ declare const fieldsetVariants: tailwind_variants0.TVReturnType<{
|
|
|
976
973
|
} | {}, {
|
|
977
974
|
legend: string;
|
|
978
975
|
root: string;
|
|
979
|
-
},
|
|
976
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
980
977
|
legend: string;
|
|
981
978
|
root: string;
|
|
982
979
|
}, undefined, unknown, unknown, undefined>>;
|
|
983
980
|
type FieldsetVariants = VariantProps<typeof fieldsetVariants>;
|
|
984
981
|
//#endregion
|
|
985
982
|
//#region src/components/fieldset/fieldset.d.ts
|
|
986
|
-
interface FieldsetProps extends FieldsetVariants, Fieldset
|
|
987
|
-
|
|
988
|
-
|
|
983
|
+
interface FieldsetProps extends FieldsetVariants, Fieldset.Root.Props {}
|
|
984
|
+
interface FieldsetLegendProps extends Fieldset.Legend.Props {}
|
|
985
|
+
declare const _default$7: (({
|
|
986
|
+
className,
|
|
987
|
+
...props
|
|
988
|
+
}: FieldsetProps) => react_jsx_runtime9.JSX.Element) & {
|
|
989
|
+
Legend: ({
|
|
989
990
|
className,
|
|
990
991
|
...props
|
|
991
|
-
}:
|
|
992
|
-
Root:
|
|
993
|
-
Legend: ({
|
|
992
|
+
}: FieldsetLegendProps) => react_jsx_runtime9.JSX.Element;
|
|
993
|
+
Root: ({
|
|
994
994
|
className,
|
|
995
995
|
...props
|
|
996
|
-
}:
|
|
996
|
+
}: FieldsetProps) => react_jsx_runtime9.JSX.Element;
|
|
997
997
|
};
|
|
998
|
-
interface FieldsetLegendProps extends Fieldset$1.Legend.Props {}
|
|
999
998
|
//#endregion
|
|
1000
999
|
//#region src/components/form/form.variants.d.ts
|
|
1001
|
-
declare const formVariants:
|
|
1000
|
+
declare const formVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "form", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "form", unknown, unknown, undefined>>;
|
|
1002
1001
|
type FormVariants = VariantProps<typeof formVariants>;
|
|
1003
1002
|
//#endregion
|
|
1004
1003
|
//#region src/components/form/form.d.ts
|
|
1005
|
-
interface FormProps extends FormVariants, React.ComponentProps<
|
|
1004
|
+
interface FormProps extends FormVariants, React.ComponentProps<typeof Form$1> {}
|
|
1006
1005
|
declare const Form: ({
|
|
1007
1006
|
className,
|
|
1008
1007
|
...props
|
|
1009
|
-
}: FormProps) =>
|
|
1008
|
+
}: FormProps) => react_jsx_runtime9.JSX.Element;
|
|
1010
1009
|
//#endregion
|
|
1011
1010
|
//#region src/components/icon-button/icon-button.variants.d.ts
|
|
1012
|
-
declare const iconButtonVariants:
|
|
1011
|
+
declare const iconButtonVariants: tailwind_variants3.TVReturnType<{} | {
|
|
1013
1012
|
isIconOnly: {
|
|
1014
1013
|
true: tailwind_merge0.ClassNameValue | {
|
|
1015
1014
|
base?: tailwind_merge0.ClassNameValue;
|
|
@@ -1059,7 +1058,7 @@ declare const iconButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1059
1058
|
primary: string;
|
|
1060
1059
|
secondary: string;
|
|
1061
1060
|
};
|
|
1062
|
-
}, undefined,
|
|
1061
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
1063
1062
|
isIconOnly: {
|
|
1064
1063
|
true: string;
|
|
1065
1064
|
};
|
|
@@ -1091,7 +1090,7 @@ declare const iconButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1091
1090
|
primary: string;
|
|
1092
1091
|
secondary: string;
|
|
1093
1092
|
};
|
|
1094
|
-
}, undefined,
|
|
1093
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
1095
1094
|
isIconOnly: {
|
|
1096
1095
|
true: string;
|
|
1097
1096
|
};
|
|
@@ -1111,58 +1110,39 @@ declare const iconButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1111
1110
|
type IconButtonVariants = VariantProps<typeof iconButtonVariants>;
|
|
1112
1111
|
//#endregion
|
|
1113
1112
|
//#region src/components/icon-button/icon-button.d.ts
|
|
1114
|
-
|
|
1113
|
+
interface IconButtonProps extends IconButtonVariants, React.ComponentProps<typeof Button> {}
|
|
1115
1114
|
declare const IconButton: ({
|
|
1116
1115
|
className,
|
|
1117
1116
|
variant,
|
|
1118
1117
|
size,
|
|
1119
1118
|
isIconOnly,
|
|
1120
1119
|
...props
|
|
1121
|
-
}: IconButtonProps) =>
|
|
1120
|
+
}: IconButtonProps) => react_jsx_runtime9.JSX.Element;
|
|
1122
1121
|
//#endregion
|
|
1123
1122
|
//#region src/components/input/input.variants.d.ts
|
|
1124
|
-
declare const inputVariants:
|
|
1125
|
-
inputSize: {
|
|
1126
|
-
lg: string;
|
|
1127
|
-
md: string;
|
|
1128
|
-
sm: string;
|
|
1129
|
-
};
|
|
1130
|
-
}, undefined, "input", {
|
|
1131
|
-
inputSize: {
|
|
1132
|
-
lg: string;
|
|
1133
|
-
md: string;
|
|
1134
|
-
sm: string;
|
|
1135
|
-
};
|
|
1136
|
-
}, undefined, tailwind_variants0.TVReturnType<{
|
|
1137
|
-
inputSize: {
|
|
1138
|
-
lg: string;
|
|
1139
|
-
md: string;
|
|
1140
|
-
sm: string;
|
|
1141
|
-
};
|
|
1142
|
-
}, undefined, "input", unknown, unknown, undefined>>;
|
|
1123
|
+
declare const inputVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "input", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "input", unknown, unknown, undefined>>;
|
|
1143
1124
|
type InputVariants = VariantProps<typeof inputVariants>;
|
|
1144
1125
|
//#endregion
|
|
1145
1126
|
//#region src/components/input/input.d.ts
|
|
1146
|
-
interface InputProps extends InputVariants, Input$1
|
|
1127
|
+
interface InputProps extends InputVariants, React.ComponentProps<typeof Input$1> {}
|
|
1147
1128
|
declare const Input: ({
|
|
1148
1129
|
className,
|
|
1149
|
-
inputSize,
|
|
1150
1130
|
...props
|
|
1151
|
-
}: InputProps) =>
|
|
1131
|
+
}: InputProps) => react_jsx_runtime9.JSX.Element;
|
|
1152
1132
|
//#endregion
|
|
1153
1133
|
//#region src/components/label/label.variants.d.ts
|
|
1154
|
-
declare const labelVariants:
|
|
1134
|
+
declare const labelVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "label", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "label", unknown, unknown, undefined>>;
|
|
1155
1135
|
type LabelVariants = VariantProps<typeof labelVariants>;
|
|
1156
1136
|
//#endregion
|
|
1157
1137
|
//#region src/components/label/label.d.ts
|
|
1158
|
-
interface LabelProps extends LabelVariants, React.ComponentProps<
|
|
1138
|
+
interface LabelProps extends LabelVariants, React.ComponentProps<typeof Label$1> {}
|
|
1159
1139
|
declare const Label: ({
|
|
1160
1140
|
className,
|
|
1161
1141
|
...props
|
|
1162
|
-
}: LabelProps) =>
|
|
1142
|
+
}: LabelProps) => react_jsx_runtime9.JSX.Element;
|
|
1163
1143
|
//#endregion
|
|
1164
1144
|
//#region src/components/link/link.variants.d.ts
|
|
1165
|
-
declare const linkVariants:
|
|
1145
|
+
declare const linkVariants: tailwind_variants3.TVReturnType<{
|
|
1166
1146
|
variant: {
|
|
1167
1147
|
"no-underline": string;
|
|
1168
1148
|
underline: string;
|
|
@@ -1172,7 +1152,7 @@ declare const linkVariants: tailwind_variants0.TVReturnType<{
|
|
|
1172
1152
|
"no-underline": string;
|
|
1173
1153
|
underline: string;
|
|
1174
1154
|
};
|
|
1175
|
-
}, undefined,
|
|
1155
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
1176
1156
|
variant: {
|
|
1177
1157
|
"no-underline": string;
|
|
1178
1158
|
underline: string;
|
|
@@ -1186,21 +1166,21 @@ declare const Link: ({
|
|
|
1186
1166
|
className,
|
|
1187
1167
|
variant,
|
|
1188
1168
|
...props
|
|
1189
|
-
}: LinkProps) =>
|
|
1169
|
+
}: LinkProps) => react_jsx_runtime9.JSX.Element;
|
|
1190
1170
|
//#endregion
|
|
1191
1171
|
//#region src/components/list/list.variants.d.ts
|
|
1192
|
-
declare const listVariants:
|
|
1172
|
+
declare const listVariants: tailwind_variants3.TVReturnType<{
|
|
1193
1173
|
[key: string]: {
|
|
1194
1174
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1195
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
1196
1175
|
root?: tailwind_merge0.ClassNameValue;
|
|
1176
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1197
1177
|
};
|
|
1198
1178
|
};
|
|
1199
1179
|
} | {
|
|
1200
1180
|
[x: string]: {
|
|
1201
1181
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1202
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
1203
1182
|
root?: tailwind_merge0.ClassNameValue;
|
|
1183
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1204
1184
|
};
|
|
1205
1185
|
};
|
|
1206
1186
|
} | {}, {
|
|
@@ -1209,14 +1189,14 @@ declare const listVariants: tailwind_variants0.TVReturnType<{
|
|
|
1209
1189
|
}, undefined, {
|
|
1210
1190
|
[key: string]: {
|
|
1211
1191
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1212
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
1213
1192
|
root?: tailwind_merge0.ClassNameValue;
|
|
1193
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1214
1194
|
};
|
|
1215
1195
|
};
|
|
1216
1196
|
} | {}, {
|
|
1217
1197
|
item: string;
|
|
1218
1198
|
root: string;
|
|
1219
|
-
},
|
|
1199
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
1220
1200
|
item: string;
|
|
1221
1201
|
root: string;
|
|
1222
1202
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -1224,27 +1204,29 @@ type ListVariants = VariantProps<typeof listVariants>;
|
|
|
1224
1204
|
//#endregion
|
|
1225
1205
|
//#region src/components/list/list.d.ts
|
|
1226
1206
|
interface ListProps extends ListVariants, React.ComponentProps<"ul"> {}
|
|
1227
|
-
|
|
1228
|
-
|
|
1207
|
+
interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
1208
|
+
declare const _default$8: (({
|
|
1209
|
+
className,
|
|
1210
|
+
...props
|
|
1211
|
+
}: ListProps) => react_jsx_runtime9.JSX.Element) & {
|
|
1212
|
+
Item: ({
|
|
1229
1213
|
className,
|
|
1230
1214
|
...props
|
|
1231
|
-
}:
|
|
1232
|
-
Root:
|
|
1233
|
-
Item: ({
|
|
1215
|
+
}: ListItemProps) => react_jsx_runtime9.JSX.Element;
|
|
1216
|
+
Root: ({
|
|
1234
1217
|
className,
|
|
1235
1218
|
...props
|
|
1236
|
-
}:
|
|
1219
|
+
}: ListProps) => react_jsx_runtime9.JSX.Element;
|
|
1237
1220
|
};
|
|
1238
|
-
interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
1239
1221
|
//#endregion
|
|
1240
1222
|
//#region src/components/menu/menu.variants.d.ts
|
|
1241
|
-
declare const menuVariants:
|
|
1223
|
+
declare const menuVariants: tailwind_variants3.TVReturnType<{
|
|
1242
1224
|
[key: string]: {
|
|
1243
1225
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1244
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
1245
1226
|
root?: tailwind_merge0.ClassNameValue;
|
|
1246
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
1247
1227
|
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
1228
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1229
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
1248
1230
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1249
1231
|
popup?: tailwind_merge0.ClassNameValue;
|
|
1250
1232
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -1262,10 +1244,10 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
1262
1244
|
} | {
|
|
1263
1245
|
[x: string]: {
|
|
1264
1246
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1265
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
1266
1247
|
root?: tailwind_merge0.ClassNameValue;
|
|
1267
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
1268
1248
|
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
1249
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1250
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
1269
1251
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1270
1252
|
popup?: tailwind_merge0.ClassNameValue;
|
|
1271
1253
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -1300,10 +1282,10 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
1300
1282
|
}, undefined, {
|
|
1301
1283
|
[key: string]: {
|
|
1302
1284
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1303
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
1304
1285
|
root?: tailwind_merge0.ClassNameValue;
|
|
1305
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
1306
1286
|
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
1287
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1288
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
1307
1289
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1308
1290
|
popup?: tailwind_merge0.ClassNameValue;
|
|
1309
1291
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -1335,7 +1317,7 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
1335
1317
|
submenu: string;
|
|
1336
1318
|
submenuTrigger: string;
|
|
1337
1319
|
trigger: string;
|
|
1338
|
-
},
|
|
1320
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
1339
1321
|
arrow: string;
|
|
1340
1322
|
backdrop: string;
|
|
1341
1323
|
checkboxItem: string;
|
|
@@ -1356,90 +1338,92 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
1356
1338
|
type MenuVariants = VariantProps<typeof menuVariants>;
|
|
1357
1339
|
//#endregion
|
|
1358
1340
|
//#region src/components/menu/menu.d.ts
|
|
1359
|
-
interface MenuProps extends MenuVariants, Menu
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1341
|
+
interface MenuProps extends MenuVariants, Menu.Root.Props {}
|
|
1342
|
+
interface MenuTriggerProps extends MenuVariants, Menu.Trigger.Props {}
|
|
1343
|
+
interface MenuPortalProps extends MenuVariants, Menu.Portal.Props {}
|
|
1344
|
+
interface MenuBackdropProps extends MenuVariants, Menu.Backdrop.Props {}
|
|
1345
|
+
interface MenuPositionerProps extends MenuVariants, Menu.Positioner.Props {}
|
|
1346
|
+
interface MenuPopupProps extends MenuVariants, Menu.Popup.Props {}
|
|
1347
|
+
interface MenuArrowProps extends MenuVariants, Menu.Arrow.Props {}
|
|
1348
|
+
interface MenuItemProps extends MenuVariants, Menu.Item.Props {}
|
|
1349
|
+
interface MenuSeparatorProps extends MenuVariants, Menu.Separator.Props {}
|
|
1350
|
+
interface MenuGroupProps extends MenuVariants, Menu.Group.Props {}
|
|
1351
|
+
interface MenuGroupLabelProps extends MenuVariants, Menu.GroupLabel.Props {}
|
|
1352
|
+
interface MenuRadioGroupProps extends MenuVariants, Menu.RadioGroup.Props {}
|
|
1353
|
+
interface MenuRadioItemProps extends MenuVariants, Menu.RadioItem.Props {}
|
|
1354
|
+
interface MenuCheckboxItemProps extends MenuVariants, Menu.CheckboxItem.Props {}
|
|
1355
|
+
interface MenuSubmenuProps extends MenuVariants, Menu.SubmenuRoot.Props {}
|
|
1356
|
+
interface MenuSubmenuTriggerProps extends MenuVariants, Menu.SubmenuTrigger.Props {}
|
|
1357
|
+
declare const _default$9: (({
|
|
1358
|
+
...props
|
|
1359
|
+
}: MenuProps) => react_jsx_runtime9.JSX.Element) & {
|
|
1364
1360
|
Arrow: ({
|
|
1365
1361
|
className,
|
|
1362
|
+
children,
|
|
1366
1363
|
...props
|
|
1367
|
-
}: MenuArrowProps) =>
|
|
1364
|
+
}: MenuArrowProps) => react_jsx_runtime9.JSX.Element;
|
|
1368
1365
|
Backdrop: ({
|
|
1369
1366
|
className,
|
|
1370
1367
|
...props
|
|
1371
|
-
}: MenuBackdropProps) =>
|
|
1368
|
+
}: MenuBackdropProps) => react_jsx_runtime9.JSX.Element;
|
|
1372
1369
|
CheckboxItem: ({
|
|
1373
1370
|
className,
|
|
1374
1371
|
...props
|
|
1375
|
-
}: MenuCheckboxItemProps) =>
|
|
1372
|
+
}: MenuCheckboxItemProps) => react_jsx_runtime9.JSX.Element;
|
|
1376
1373
|
Group: ({
|
|
1377
1374
|
className,
|
|
1378
1375
|
...props
|
|
1379
|
-
}: MenuGroupProps) =>
|
|
1376
|
+
}: MenuGroupProps) => react_jsx_runtime9.JSX.Element;
|
|
1380
1377
|
GroupLabel: ({
|
|
1381
1378
|
className,
|
|
1382
1379
|
...props
|
|
1383
|
-
}: MenuGroupLabelProps) =>
|
|
1380
|
+
}: MenuGroupLabelProps) => react_jsx_runtime9.JSX.Element;
|
|
1384
1381
|
Item: ({
|
|
1385
1382
|
className,
|
|
1386
1383
|
...props
|
|
1387
|
-
}: MenuItemProps) =>
|
|
1384
|
+
}: MenuItemProps) => react_jsx_runtime9.JSX.Element;
|
|
1388
1385
|
Popup: ({
|
|
1389
1386
|
className,
|
|
1390
1387
|
...props
|
|
1391
|
-
}: MenuPopupProps) =>
|
|
1388
|
+
}: MenuPopupProps) => react_jsx_runtime9.JSX.Element;
|
|
1392
1389
|
Portal: ({
|
|
1393
1390
|
className,
|
|
1394
1391
|
...props
|
|
1395
|
-
}: MenuPortalProps) =>
|
|
1392
|
+
}: MenuPortalProps) => react_jsx_runtime9.JSX.Element;
|
|
1396
1393
|
Positioner: ({
|
|
1397
1394
|
className,
|
|
1398
1395
|
...props
|
|
1399
|
-
}: MenuPositionerProps) =>
|
|
1396
|
+
}: MenuPositionerProps) => react_jsx_runtime9.JSX.Element;
|
|
1400
1397
|
RadioGroup: ({
|
|
1401
1398
|
className,
|
|
1402
1399
|
...props
|
|
1403
|
-
}: MenuRadioGroupProps) =>
|
|
1400
|
+
}: MenuRadioGroupProps) => react_jsx_runtime9.JSX.Element;
|
|
1404
1401
|
RadioItem: ({
|
|
1405
1402
|
className,
|
|
1406
1403
|
...props
|
|
1407
|
-
}: MenuRadioItemProps) =>
|
|
1408
|
-
Root:
|
|
1404
|
+
}: MenuRadioItemProps) => react_jsx_runtime9.JSX.Element;
|
|
1405
|
+
Root: ({
|
|
1406
|
+
...props
|
|
1407
|
+
}: MenuProps) => react_jsx_runtime9.JSX.Element;
|
|
1409
1408
|
Separator: ({
|
|
1410
1409
|
className,
|
|
1411
1410
|
...props
|
|
1412
|
-
}: MenuSeparatorProps) =>
|
|
1411
|
+
}: MenuSeparatorProps) => react_jsx_runtime9.JSX.Element;
|
|
1413
1412
|
Submenu: ({
|
|
1414
1413
|
...props
|
|
1415
|
-
}: MenuSubmenuProps) =>
|
|
1414
|
+
}: MenuSubmenuProps) => react_jsx_runtime9.JSX.Element;
|
|
1416
1415
|
SubmenuTrigger: ({
|
|
1417
1416
|
className,
|
|
1418
1417
|
...props
|
|
1419
|
-
}: MenuSubmenuTriggerProps) =>
|
|
1418
|
+
}: MenuSubmenuTriggerProps) => react_jsx_runtime9.JSX.Element;
|
|
1420
1419
|
Trigger: ({
|
|
1421
1420
|
className,
|
|
1422
1421
|
...props
|
|
1423
|
-
}: MenuTriggerProps) =>
|
|
1422
|
+
}: MenuTriggerProps) => react_jsx_runtime9.JSX.Element;
|
|
1424
1423
|
};
|
|
1425
|
-
interface MenuTriggerProps extends MenuVariants, Menu$1.Trigger.Props {}
|
|
1426
|
-
interface MenuPortalProps extends MenuVariants, Menu$1.Portal.Props {}
|
|
1427
|
-
interface MenuBackdropProps extends MenuVariants, Menu$1.Backdrop.Props {}
|
|
1428
|
-
interface MenuPositionerProps extends MenuVariants, Menu$1.Positioner.Props {}
|
|
1429
|
-
interface MenuPopupProps extends MenuVariants, Menu$1.Popup.Props {}
|
|
1430
|
-
interface MenuArrowProps extends MenuVariants, Menu$1.Arrow.Props {}
|
|
1431
|
-
interface MenuItemProps extends MenuVariants, Menu$1.Item.Props {}
|
|
1432
|
-
interface MenuSeparatorProps extends MenuVariants, Menu$1.Separator.Props {}
|
|
1433
|
-
interface MenuGroupProps extends MenuVariants, Menu$1.Group.Props {}
|
|
1434
|
-
interface MenuGroupLabelProps extends MenuVariants, Menu$1.GroupLabel.Props {}
|
|
1435
|
-
interface MenuRadioGroupProps extends MenuVariants, Menu$1.RadioGroup.Props {}
|
|
1436
|
-
interface MenuRadioItemProps extends MenuVariants, Menu$1.RadioItem.Props {}
|
|
1437
|
-
interface MenuCheckboxItemProps extends MenuVariants, Menu$1.CheckboxItem.Props {}
|
|
1438
|
-
interface MenuSubmenuProps extends MenuVariants, Menu$1.SubmenuRoot.Props {}
|
|
1439
|
-
interface MenuSubmenuTriggerProps extends MenuVariants, Menu$1.SubmenuTrigger.Props {}
|
|
1440
1424
|
//#endregion
|
|
1441
1425
|
//#region src/components/meter/meter.variants.d.ts
|
|
1442
|
-
declare const meterVariants:
|
|
1426
|
+
declare const meterVariants: tailwind_variants3.TVReturnType<{
|
|
1443
1427
|
size: {
|
|
1444
1428
|
lg: {
|
|
1445
1429
|
root: string;
|
|
@@ -1503,7 +1487,7 @@ declare const meterVariants: tailwind_variants0.TVReturnType<{
|
|
|
1503
1487
|
root: string;
|
|
1504
1488
|
track: string;
|
|
1505
1489
|
value: string;
|
|
1506
|
-
},
|
|
1490
|
+
}, tailwind_variants3.TVReturnType<{
|
|
1507
1491
|
size: {
|
|
1508
1492
|
lg: {
|
|
1509
1493
|
root: string;
|
|
@@ -1539,39 +1523,43 @@ declare const meterVariants: tailwind_variants0.TVReturnType<{
|
|
|
1539
1523
|
type MeterVariants = VariantProps<typeof meterVariants>;
|
|
1540
1524
|
//#endregion
|
|
1541
1525
|
//#region src/components/meter/meter.d.ts
|
|
1542
|
-
interface MeterProps extends MeterVariants, Meter
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1526
|
+
interface MeterProps extends MeterVariants, Meter.Root.Props {}
|
|
1527
|
+
interface MeterLabelProps extends Meter.Label.Props {}
|
|
1528
|
+
interface MeterValueProps extends Meter.Value.Props {}
|
|
1529
|
+
interface MeterTrackProps extends Meter.Track.Props {}
|
|
1530
|
+
interface MeterIndicatorProps extends Meter.Indicator.Props {}
|
|
1531
|
+
declare const _default$10: (({
|
|
1532
|
+
className,
|
|
1533
|
+
size,
|
|
1534
|
+
variant,
|
|
1535
|
+
...props
|
|
1536
|
+
}: MeterProps) => react_jsx_runtime9.JSX.Element) & {
|
|
1550
1537
|
Indicator: ({
|
|
1551
1538
|
className,
|
|
1552
1539
|
...props
|
|
1553
|
-
}: MeterIndicatorProps) =>
|
|
1540
|
+
}: MeterIndicatorProps) => react_jsx_runtime9.JSX.Element;
|
|
1554
1541
|
Label: ({
|
|
1555
1542
|
className,
|
|
1556
1543
|
...props
|
|
1557
|
-
}: MeterLabelProps) =>
|
|
1558
|
-
Root:
|
|
1544
|
+
}: MeterLabelProps) => react_jsx_runtime9.JSX.Element;
|
|
1545
|
+
Root: ({
|
|
1546
|
+
className,
|
|
1547
|
+
size,
|
|
1548
|
+
variant,
|
|
1549
|
+
...props
|
|
1550
|
+
}: MeterProps) => react_jsx_runtime9.JSX.Element;
|
|
1559
1551
|
Track: ({
|
|
1560
1552
|
className,
|
|
1561
1553
|
...props
|
|
1562
|
-
}: MeterTrackProps) =>
|
|
1554
|
+
}: MeterTrackProps) => react_jsx_runtime9.JSX.Element;
|
|
1563
1555
|
Value: ({
|
|
1564
1556
|
className,
|
|
1565
1557
|
...props
|
|
1566
|
-
}: MeterValueProps) =>
|
|
1558
|
+
}: MeterValueProps) => react_jsx_runtime9.JSX.Element;
|
|
1567
1559
|
};
|
|
1568
|
-
interface MeterLabelProps extends Meter$1.Label.Props {}
|
|
1569
|
-
interface MeterValueProps extends Meter$1.Value.Props {}
|
|
1570
|
-
interface MeterTrackProps extends Meter$1.Track.Props {}
|
|
1571
|
-
interface MeterIndicatorProps extends Meter$1.Indicator.Props {}
|
|
1572
1560
|
//#endregion
|
|
1573
1561
|
//#region src/components/navbar/navbar.variants.d.ts
|
|
1574
|
-
declare const navbarVariants:
|
|
1562
|
+
declare const navbarVariants: tailwind_variants3.TVReturnType<{
|
|
1575
1563
|
[key: string]: {
|
|
1576
1564
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1577
1565
|
content?: tailwind_merge0.ClassNameValue;
|
|
@@ -1628,7 +1616,7 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1628
1616
|
menuItem: string;
|
|
1629
1617
|
root: string;
|
|
1630
1618
|
toggle: string;
|
|
1631
|
-
},
|
|
1619
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
1632
1620
|
container: string;
|
|
1633
1621
|
content: string;
|
|
1634
1622
|
list: string;
|
|
@@ -1645,281 +1633,369 @@ interface NavbarProps extends NavbarVariants, React.ComponentProps<"header"> {
|
|
|
1645
1633
|
isOpen?: boolean;
|
|
1646
1634
|
onOpenChange?: (open: boolean) => void;
|
|
1647
1635
|
}
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1636
|
+
interface NavbarContainerProps extends React.ComponentProps<"nav"> {}
|
|
1637
|
+
interface NavbarContentProps extends React.ComponentProps<"div"> {}
|
|
1638
|
+
interface NavbarListProps extends React.ComponentProps<"ul"> {}
|
|
1639
|
+
interface NavbarListItemProps extends React.ComponentProps<"li"> {}
|
|
1640
|
+
interface NavbarToggleProps extends React.ComponentProps<"button"> {}
|
|
1641
|
+
interface NavbarMenuProps extends React.ComponentProps<"ul"> {
|
|
1642
|
+
header: React.ReactNode;
|
|
1643
|
+
}
|
|
1644
|
+
interface NavbarMenuItemProps extends React.ComponentProps<"li"> {}
|
|
1645
|
+
declare const _default$11: (({
|
|
1646
|
+
className,
|
|
1647
|
+
isOpen,
|
|
1648
|
+
onOpenChange,
|
|
1649
|
+
...props
|
|
1650
|
+
}: NavbarProps) => react_jsx_runtime9.JSX.Element) & {
|
|
1656
1651
|
Container: ({
|
|
1657
1652
|
className,
|
|
1658
1653
|
...props
|
|
1659
|
-
}: NavbarContainerProps) =>
|
|
1654
|
+
}: NavbarContainerProps) => react_jsx_runtime9.JSX.Element;
|
|
1660
1655
|
Content: ({
|
|
1661
1656
|
className,
|
|
1662
1657
|
...props
|
|
1663
|
-
}: NavbarContentProps) =>
|
|
1658
|
+
}: NavbarContentProps) => react_jsx_runtime9.JSX.Element;
|
|
1664
1659
|
List: ({
|
|
1665
1660
|
className,
|
|
1666
1661
|
...props
|
|
1667
|
-
}: NavbarListProps) =>
|
|
1662
|
+
}: NavbarListProps) => react_jsx_runtime9.JSX.Element;
|
|
1668
1663
|
ListItem: ({
|
|
1669
1664
|
className,
|
|
1670
1665
|
...props
|
|
1671
|
-
}: NavbarListItemProps) =>
|
|
1672
|
-
Toggle: ({
|
|
1673
|
-
className,
|
|
1674
|
-
...props
|
|
1675
|
-
}: NavbarToggleProps) => react_jsx_runtime0.JSX.Element;
|
|
1666
|
+
}: NavbarListItemProps) => react_jsx_runtime9.JSX.Element;
|
|
1676
1667
|
Menu: ({
|
|
1677
1668
|
className,
|
|
1678
1669
|
header,
|
|
1679
1670
|
...props
|
|
1680
|
-
}: NavbarMenuProps) =>
|
|
1671
|
+
}: NavbarMenuProps) => react_jsx_runtime9.JSX.Element;
|
|
1681
1672
|
MenuItem: ({
|
|
1682
1673
|
className,
|
|
1683
1674
|
...props
|
|
1684
|
-
}: NavbarMenuItemProps) =>
|
|
1675
|
+
}: NavbarMenuItemProps) => react_jsx_runtime9.JSX.Element;
|
|
1676
|
+
Root: ({
|
|
1677
|
+
className,
|
|
1678
|
+
isOpen,
|
|
1679
|
+
onOpenChange,
|
|
1680
|
+
...props
|
|
1681
|
+
}: NavbarProps) => react_jsx_runtime9.JSX.Element;
|
|
1682
|
+
Toggle: ({
|
|
1683
|
+
className,
|
|
1684
|
+
...props
|
|
1685
|
+
}: NavbarToggleProps) => react_jsx_runtime9.JSX.Element;
|
|
1685
1686
|
};
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
interface
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
header: React.ReactNode;
|
|
1693
|
-
}
|
|
1694
|
-
interface NavbarMenuItemProps extends React.ComponentProps<"li"> {}
|
|
1687
|
+
//#endregion
|
|
1688
|
+
//#region src/components/overlay-trigger/overlay-trigger.d.ts
|
|
1689
|
+
interface OverlayTriggerProps extends React.ComponentProps<typeof DialogTrigger> {}
|
|
1690
|
+
declare const OverlayTrigger: ({
|
|
1691
|
+
...props
|
|
1692
|
+
}: OverlayTriggerProps) => react_jsx_runtime9.JSX.Element;
|
|
1695
1693
|
//#endregion
|
|
1696
1694
|
//#region src/components/popover/popover.variants.d.ts
|
|
1697
|
-
declare const popoverVariants:
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1695
|
+
declare const popoverVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "popover", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "popover", unknown, unknown, undefined>>;
|
|
1696
|
+
type PopoverVariants = VariantProps<typeof popoverVariants>;
|
|
1697
|
+
//#endregion
|
|
1698
|
+
//#region src/components/popover/popover.d.ts
|
|
1699
|
+
interface PopoverProps extends PopoverVariants, React.ComponentProps<typeof Popover$1> {}
|
|
1700
|
+
declare const Popover: ({
|
|
1701
|
+
...props
|
|
1702
|
+
}: PopoverProps) => react_jsx_runtime9.JSX.Element;
|
|
1703
|
+
//#endregion
|
|
1704
|
+
//#region src/components/progress/progress.variants.d.ts
|
|
1705
|
+
declare const progressVariants: tailwind_variants3.TVReturnType<{
|
|
1706
|
+
size: {
|
|
1707
|
+
lg: {
|
|
1708
|
+
root: string;
|
|
1709
|
+
};
|
|
1710
|
+
md: {
|
|
1711
|
+
root: string;
|
|
1712
|
+
};
|
|
1713
|
+
sm: {
|
|
1714
|
+
root: string;
|
|
1711
1715
|
};
|
|
1712
1716
|
};
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
arrow?: tailwind_merge0.ClassNameValue;
|
|
1726
|
-
positioner?: tailwind_merge0.ClassNameValue;
|
|
1717
|
+
variant: {
|
|
1718
|
+
danger: {
|
|
1719
|
+
root: string;
|
|
1720
|
+
};
|
|
1721
|
+
primary: {
|
|
1722
|
+
root: string;
|
|
1723
|
+
};
|
|
1724
|
+
secondary: {
|
|
1725
|
+
root: string;
|
|
1726
|
+
};
|
|
1727
|
+
success: {
|
|
1728
|
+
root: string;
|
|
1727
1729
|
};
|
|
1728
1730
|
};
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
close: string;
|
|
1733
|
-
description: string;
|
|
1734
|
-
popup: string;
|
|
1735
|
-
portal: string;
|
|
1736
|
-
positioner: string;
|
|
1731
|
+
}, {
|
|
1732
|
+
indicator: string;
|
|
1733
|
+
label: string;
|
|
1737
1734
|
root: string;
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
viewport: string;
|
|
1735
|
+
track: string;
|
|
1736
|
+
value: string;
|
|
1741
1737
|
}, undefined, {
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
root
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
portal?: tailwind_merge0.ClassNameValue;
|
|
1752
|
-
viewport?: tailwind_merge0.ClassNameValue;
|
|
1753
|
-
arrow?: tailwind_merge0.ClassNameValue;
|
|
1754
|
-
positioner?: tailwind_merge0.ClassNameValue;
|
|
1738
|
+
size: {
|
|
1739
|
+
lg: {
|
|
1740
|
+
root: string;
|
|
1741
|
+
};
|
|
1742
|
+
md: {
|
|
1743
|
+
root: string;
|
|
1744
|
+
};
|
|
1745
|
+
sm: {
|
|
1746
|
+
root: string;
|
|
1755
1747
|
};
|
|
1756
1748
|
};
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
}
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
popup: string;
|
|
1775
|
-
portal: string;
|
|
1776
|
-
positioner: string;
|
|
1749
|
+
variant: {
|
|
1750
|
+
danger: {
|
|
1751
|
+
root: string;
|
|
1752
|
+
};
|
|
1753
|
+
primary: {
|
|
1754
|
+
root: string;
|
|
1755
|
+
};
|
|
1756
|
+
secondary: {
|
|
1757
|
+
root: string;
|
|
1758
|
+
};
|
|
1759
|
+
success: {
|
|
1760
|
+
root: string;
|
|
1761
|
+
};
|
|
1762
|
+
};
|
|
1763
|
+
}, {
|
|
1764
|
+
indicator: string;
|
|
1765
|
+
label: string;
|
|
1777
1766
|
root: string;
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1767
|
+
track: string;
|
|
1768
|
+
value: string;
|
|
1769
|
+
}, tailwind_variants3.TVReturnType<{
|
|
1770
|
+
size: {
|
|
1771
|
+
lg: {
|
|
1772
|
+
root: string;
|
|
1773
|
+
};
|
|
1774
|
+
md: {
|
|
1775
|
+
root: string;
|
|
1776
|
+
};
|
|
1777
|
+
sm: {
|
|
1778
|
+
root: string;
|
|
1779
|
+
};
|
|
1780
|
+
};
|
|
1781
|
+
variant: {
|
|
1782
|
+
danger: {
|
|
1783
|
+
root: string;
|
|
1784
|
+
};
|
|
1785
|
+
primary: {
|
|
1786
|
+
root: string;
|
|
1787
|
+
};
|
|
1788
|
+
secondary: {
|
|
1789
|
+
root: string;
|
|
1790
|
+
};
|
|
1791
|
+
success: {
|
|
1792
|
+
root: string;
|
|
1793
|
+
};
|
|
1794
|
+
};
|
|
1795
|
+
}, {
|
|
1796
|
+
indicator: string;
|
|
1797
|
+
label: string;
|
|
1798
|
+
root: string;
|
|
1799
|
+
track: string;
|
|
1800
|
+
value: string;
|
|
1781
1801
|
}, undefined, unknown, unknown, undefined>>;
|
|
1782
|
-
type
|
|
1802
|
+
type ProgressVariants = VariantProps<typeof progressVariants>;
|
|
1783
1803
|
//#endregion
|
|
1784
|
-
//#region src/components/
|
|
1785
|
-
interface
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
...props
|
|
1798
|
-
}: PopoverPortalProps) => react_jsx_runtime0.JSX.Element;
|
|
1799
|
-
Backdrop: ({
|
|
1800
|
-
className,
|
|
1801
|
-
...props
|
|
1802
|
-
}: PopoverBackdropProps) => react_jsx_runtime0.JSX.Element;
|
|
1803
|
-
Positioner: ({
|
|
1804
|
+
//#region src/components/progress/progress.d.ts
|
|
1805
|
+
interface ProgressProps extends ProgressVariants, Progress.Root.Props {}
|
|
1806
|
+
interface ProgressLabelProps extends Progress.Label.Props {}
|
|
1807
|
+
interface ProgressValueProps extends Progress.Value.Props {}
|
|
1808
|
+
interface ProgressTrackProps extends Progress.Track.Props {}
|
|
1809
|
+
interface ProgressIndicatorProps extends Progress.Indicator.Props {}
|
|
1810
|
+
declare const _default$12: (({
|
|
1811
|
+
className,
|
|
1812
|
+
variant,
|
|
1813
|
+
size,
|
|
1814
|
+
...props
|
|
1815
|
+
}: ProgressProps) => react_jsx_runtime9.JSX.Element) & {
|
|
1816
|
+
Indicator: ({
|
|
1804
1817
|
className,
|
|
1805
1818
|
...props
|
|
1806
|
-
}:
|
|
1807
|
-
|
|
1819
|
+
}: ProgressIndicatorProps) => react_jsx_runtime9.JSX.Element;
|
|
1820
|
+
Label: ({
|
|
1808
1821
|
className,
|
|
1809
1822
|
...props
|
|
1810
|
-
}:
|
|
1811
|
-
|
|
1823
|
+
}: ProgressLabelProps) => react_jsx_runtime9.JSX.Element;
|
|
1824
|
+
Root: ({
|
|
1812
1825
|
className,
|
|
1826
|
+
variant,
|
|
1827
|
+
size,
|
|
1813
1828
|
...props
|
|
1814
|
-
}:
|
|
1815
|
-
|
|
1829
|
+
}: ProgressProps) => react_jsx_runtime9.JSX.Element;
|
|
1830
|
+
Track: ({
|
|
1816
1831
|
className,
|
|
1817
1832
|
...props
|
|
1818
|
-
}:
|
|
1819
|
-
|
|
1833
|
+
}: ProgressTrackProps) => react_jsx_runtime9.JSX.Element;
|
|
1834
|
+
Value: ({
|
|
1820
1835
|
className,
|
|
1821
1836
|
...props
|
|
1822
|
-
}:
|
|
1823
|
-
|
|
1837
|
+
}: ProgressValueProps) => react_jsx_runtime9.JSX.Element;
|
|
1838
|
+
};
|
|
1839
|
+
//#endregion
|
|
1840
|
+
//#region src/components/radio/radio.variants.d.ts
|
|
1841
|
+
declare const radioVariants: tailwind_variants3.TVReturnType<{
|
|
1842
|
+
[key: string]: {
|
|
1843
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1844
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1845
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1846
|
+
};
|
|
1847
|
+
};
|
|
1848
|
+
} | {
|
|
1849
|
+
[x: string]: {
|
|
1850
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1851
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1852
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1853
|
+
};
|
|
1854
|
+
};
|
|
1855
|
+
} | {}, {
|
|
1856
|
+
indicator: string;
|
|
1857
|
+
root: string;
|
|
1858
|
+
}, undefined, {
|
|
1859
|
+
[key: string]: {
|
|
1860
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1861
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1862
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1863
|
+
};
|
|
1864
|
+
};
|
|
1865
|
+
} | {}, {
|
|
1866
|
+
indicator: string;
|
|
1867
|
+
root: string;
|
|
1868
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
1869
|
+
indicator: string;
|
|
1870
|
+
root: string;
|
|
1871
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
1872
|
+
type RadioVariants = VariantProps<typeof radioVariants>;
|
|
1873
|
+
//#endregion
|
|
1874
|
+
//#region src/components/radio/radio.d.ts
|
|
1875
|
+
interface RadioProps extends RadioVariants, Radio.Root.Props {}
|
|
1876
|
+
interface RadioIndicatorProps extends Radio.Indicator.Props {}
|
|
1877
|
+
declare const _default$13: (({
|
|
1878
|
+
className,
|
|
1879
|
+
...props
|
|
1880
|
+
}: RadioProps) => react_jsx_runtime9.JSX.Element) & {
|
|
1881
|
+
Indicator: ({
|
|
1824
1882
|
className,
|
|
1825
1883
|
...props
|
|
1826
|
-
}:
|
|
1827
|
-
|
|
1884
|
+
}: RadioIndicatorProps) => react_jsx_runtime9.JSX.Element;
|
|
1885
|
+
Root: ({
|
|
1828
1886
|
className,
|
|
1829
1887
|
...props
|
|
1830
|
-
}:
|
|
1888
|
+
}: RadioProps) => react_jsx_runtime9.JSX.Element;
|
|
1831
1889
|
};
|
|
1832
|
-
interface PopoverTriggerProps extends Popover$1.Trigger.Props {}
|
|
1833
|
-
interface PopoverPortalProps extends Popover$1.Portal.Props {}
|
|
1834
|
-
interface PopoverBackdropProps extends Popover$1.Backdrop.Props {}
|
|
1835
|
-
interface PopoverPositionerProps extends Popover$1.Positioner.Props {}
|
|
1836
|
-
interface PopoverPopupProps extends Popover$1.Popup.Props {}
|
|
1837
|
-
interface PopoverArrowProps extends Popover$1.Arrow.Props {}
|
|
1838
|
-
interface PopoverViewportProps extends Popover$1.Viewport.Props {}
|
|
1839
|
-
interface PopoverTitleProps extends Popover$1.Title.Props {}
|
|
1840
|
-
interface PopoverDescriptionProps extends Popover$1.Description.Props {}
|
|
1841
|
-
interface PopoverCloseProps extends Popover$1.Close.Props {}
|
|
1842
1890
|
//#endregion
|
|
1843
|
-
//#region src/components/
|
|
1844
|
-
declare const
|
|
1891
|
+
//#region src/components/radio-group/radio-group.variants.d.ts
|
|
1892
|
+
declare const radioGroupVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "radio-group", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "radio-group", unknown, unknown, undefined>>;
|
|
1893
|
+
type RadioGroupVariants = VariantProps<typeof radioGroupVariants>;
|
|
1894
|
+
//#endregion
|
|
1895
|
+
//#region src/components/radio-group/radio-group.d.ts
|
|
1896
|
+
interface RadioGroupProps extends RadioGroupVariants, RadioGroup$1.Props {}
|
|
1897
|
+
declare const RadioGroup: ({
|
|
1898
|
+
className,
|
|
1899
|
+
...props
|
|
1900
|
+
}: RadioGroupProps) => react_jsx_runtime9.JSX.Element;
|
|
1901
|
+
//#endregion
|
|
1902
|
+
//#region src/components/select/select.variants.d.ts
|
|
1903
|
+
declare const selectVariants: tailwind_variants3.TVReturnType<{
|
|
1845
1904
|
[key: string]: {
|
|
1846
1905
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1906
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1847
1907
|
root?: tailwind_merge0.ClassNameValue;
|
|
1848
1908
|
label?: tailwind_merge0.ClassNameValue;
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1909
|
+
option?: tailwind_merge0.ClassNameValue;
|
|
1910
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
1911
|
+
error?: tailwind_merge0.ClassNameValue;
|
|
1852
1912
|
};
|
|
1853
1913
|
};
|
|
1854
1914
|
} | {
|
|
1855
1915
|
[x: string]: {
|
|
1856
1916
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1917
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1857
1918
|
root?: tailwind_merge0.ClassNameValue;
|
|
1858
1919
|
label?: tailwind_merge0.ClassNameValue;
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1920
|
+
option?: tailwind_merge0.ClassNameValue;
|
|
1921
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
1922
|
+
error?: tailwind_merge0.ClassNameValue;
|
|
1862
1923
|
};
|
|
1863
1924
|
};
|
|
1864
1925
|
} | {}, {
|
|
1865
|
-
|
|
1926
|
+
control: string;
|
|
1927
|
+
description: string;
|
|
1928
|
+
error: string;
|
|
1866
1929
|
label: string;
|
|
1930
|
+
option: string;
|
|
1867
1931
|
root: string;
|
|
1868
|
-
track: string;
|
|
1869
|
-
value: string;
|
|
1870
1932
|
}, undefined, {
|
|
1871
1933
|
[key: string]: {
|
|
1872
1934
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1935
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1873
1936
|
root?: tailwind_merge0.ClassNameValue;
|
|
1874
1937
|
label?: tailwind_merge0.ClassNameValue;
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1938
|
+
option?: tailwind_merge0.ClassNameValue;
|
|
1939
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
1940
|
+
error?: tailwind_merge0.ClassNameValue;
|
|
1878
1941
|
};
|
|
1879
1942
|
};
|
|
1880
1943
|
} | {}, {
|
|
1881
|
-
|
|
1944
|
+
control: string;
|
|
1945
|
+
description: string;
|
|
1946
|
+
error: string;
|
|
1882
1947
|
label: string;
|
|
1948
|
+
option: string;
|
|
1883
1949
|
root: string;
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1950
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
1951
|
+
control: string;
|
|
1952
|
+
description: string;
|
|
1953
|
+
error: string;
|
|
1888
1954
|
label: string;
|
|
1955
|
+
option: string;
|
|
1889
1956
|
root: string;
|
|
1890
|
-
track: string;
|
|
1891
|
-
value: string;
|
|
1892
1957
|
}, undefined, unknown, unknown, undefined>>;
|
|
1893
|
-
type
|
|
1894
|
-
//#endregion
|
|
1895
|
-
//#region src/components/
|
|
1896
|
-
interface
|
|
1897
|
-
|
|
1898
|
-
|
|
1958
|
+
type SelectVariants = VariantProps<typeof selectVariants>;
|
|
1959
|
+
//#endregion
|
|
1960
|
+
//#region src/components/select/select.d.ts
|
|
1961
|
+
interface SelectProps extends SelectVariants, React$1.ComponentProps<"div"> {}
|
|
1962
|
+
interface SelectLabelProps extends React$1.ComponentProps<"label"> {}
|
|
1963
|
+
interface SelectControlProps extends React$1.ComponentProps<"select"> {}
|
|
1964
|
+
interface SelectOptionProps extends React$1.ComponentProps<"option"> {}
|
|
1965
|
+
interface SelectDescriptionProps extends React$1.ComponentProps<"p"> {}
|
|
1966
|
+
interface SelectErrorProps extends React$1.ComponentProps<"p"> {}
|
|
1967
|
+
declare const _default$14: (({
|
|
1968
|
+
className,
|
|
1969
|
+
...props
|
|
1970
|
+
}: SelectProps) => react_jsx_runtime9.JSX.Element) & {
|
|
1971
|
+
Control: ({
|
|
1899
1972
|
className,
|
|
1900
1973
|
...props
|
|
1901
|
-
}:
|
|
1902
|
-
|
|
1974
|
+
}: SelectControlProps) => react_jsx_runtime9.JSX.Element;
|
|
1975
|
+
Description: ({
|
|
1903
1976
|
className,
|
|
1904
1977
|
...props
|
|
1905
|
-
}:
|
|
1906
|
-
|
|
1978
|
+
}: SelectDescriptionProps) => react_jsx_runtime9.JSX.Element;
|
|
1979
|
+
Error: ({
|
|
1907
1980
|
className,
|
|
1908
1981
|
...props
|
|
1909
|
-
}:
|
|
1910
|
-
|
|
1982
|
+
}: SelectErrorProps) => react_jsx_runtime9.JSX.Element;
|
|
1983
|
+
Label: ({
|
|
1911
1984
|
className,
|
|
1912
1985
|
...props
|
|
1913
|
-
}:
|
|
1914
|
-
|
|
1986
|
+
}: SelectLabelProps) => react_jsx_runtime9.JSX.Element;
|
|
1987
|
+
Option: ({
|
|
1915
1988
|
className,
|
|
1916
1989
|
...props
|
|
1917
|
-
}:
|
|
1918
|
-
Root:
|
|
1990
|
+
}: SelectOptionProps) => react_jsx_runtime9.JSX.Element;
|
|
1991
|
+
Root: ({
|
|
1992
|
+
className,
|
|
1993
|
+
...props
|
|
1994
|
+
}: SelectProps) => react_jsx_runtime9.JSX.Element;
|
|
1919
1995
|
};
|
|
1920
1996
|
//#endregion
|
|
1921
1997
|
//#region src/components/separator/separator.variants.d.ts
|
|
1922
|
-
declare const separatorVariants:
|
|
1998
|
+
declare const separatorVariants: tailwind_variants3.TVReturnType<{
|
|
1923
1999
|
orientation: {
|
|
1924
2000
|
horizontal: string;
|
|
1925
2001
|
vertical: string;
|
|
@@ -1929,7 +2005,7 @@ declare const separatorVariants: tailwind_variants0.TVReturnType<{
|
|
|
1929
2005
|
horizontal: string;
|
|
1930
2006
|
vertical: string;
|
|
1931
2007
|
};
|
|
1932
|
-
}, undefined,
|
|
2008
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
1933
2009
|
orientation: {
|
|
1934
2010
|
horizontal: string;
|
|
1935
2011
|
vertical: string;
|
|
@@ -1943,16 +2019,16 @@ declare const Separator: ({
|
|
|
1943
2019
|
className,
|
|
1944
2020
|
orientation,
|
|
1945
2021
|
...props
|
|
1946
|
-
}: SeparatorProps) =>
|
|
2022
|
+
}: SeparatorProps) => react_jsx_runtime9.JSX.Element;
|
|
1947
2023
|
//#endregion
|
|
1948
2024
|
//#region src/components/slider/slider.variants.d.ts
|
|
1949
|
-
declare const sliderVariants:
|
|
2025
|
+
declare const sliderVariants: tailwind_variants3.TVReturnType<{
|
|
1950
2026
|
[key: string]: {
|
|
1951
2027
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2028
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1952
2029
|
root?: tailwind_merge0.ClassNameValue;
|
|
1953
2030
|
track?: tailwind_merge0.ClassNameValue;
|
|
1954
2031
|
value?: tailwind_merge0.ClassNameValue;
|
|
1955
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
1956
2032
|
control?: tailwind_merge0.ClassNameValue;
|
|
1957
2033
|
thumb?: tailwind_merge0.ClassNameValue;
|
|
1958
2034
|
};
|
|
@@ -1960,10 +2036,10 @@ declare const sliderVariants: tailwind_variants0.TVReturnType<{
|
|
|
1960
2036
|
} | {
|
|
1961
2037
|
[x: string]: {
|
|
1962
2038
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2039
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1963
2040
|
root?: tailwind_merge0.ClassNameValue;
|
|
1964
2041
|
track?: tailwind_merge0.ClassNameValue;
|
|
1965
2042
|
value?: tailwind_merge0.ClassNameValue;
|
|
1966
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
1967
2043
|
control?: tailwind_merge0.ClassNameValue;
|
|
1968
2044
|
thumb?: tailwind_merge0.ClassNameValue;
|
|
1969
2045
|
};
|
|
@@ -1978,10 +2054,10 @@ declare const sliderVariants: tailwind_variants0.TVReturnType<{
|
|
|
1978
2054
|
}, undefined, {
|
|
1979
2055
|
[key: string]: {
|
|
1980
2056
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2057
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
1981
2058
|
root?: tailwind_merge0.ClassNameValue;
|
|
1982
2059
|
track?: tailwind_merge0.ClassNameValue;
|
|
1983
2060
|
value?: tailwind_merge0.ClassNameValue;
|
|
1984
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
1985
2061
|
control?: tailwind_merge0.ClassNameValue;
|
|
1986
2062
|
thumb?: tailwind_merge0.ClassNameValue;
|
|
1987
2063
|
};
|
|
@@ -1993,7 +2069,7 @@ declare const sliderVariants: tailwind_variants0.TVReturnType<{
|
|
|
1993
2069
|
thumb: string;
|
|
1994
2070
|
track: string;
|
|
1995
2071
|
value: string;
|
|
1996
|
-
},
|
|
2072
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
1997
2073
|
control: string;
|
|
1998
2074
|
indicator: string;
|
|
1999
2075
|
root: string;
|
|
@@ -2004,37 +2080,39 @@ declare const sliderVariants: tailwind_variants0.TVReturnType<{
|
|
|
2004
2080
|
type SliderVariants = VariantProps<typeof sliderVariants>;
|
|
2005
2081
|
//#endregion
|
|
2006
2082
|
//#region src/components/slider/slider.d.ts
|
|
2007
|
-
interface SliderProps extends SliderVariants, Slider
|
|
2008
|
-
declare const
|
|
2009
|
-
|
|
2083
|
+
interface SliderProps extends SliderVariants, Slider.Root.Props {}
|
|
2084
|
+
declare const _default$15: (({
|
|
2085
|
+
className,
|
|
2086
|
+
...props
|
|
2087
|
+
}: SliderProps) => react_jsx_runtime9.JSX.Element) & {
|
|
2088
|
+
Control: ({
|
|
2010
2089
|
className,
|
|
2011
2090
|
...props
|
|
2012
|
-
}:
|
|
2013
|
-
|
|
2091
|
+
}: Slider.Control.Props) => react_jsx_runtime9.JSX.Element;
|
|
2092
|
+
Indicator: ({
|
|
2014
2093
|
className,
|
|
2015
2094
|
...props
|
|
2016
|
-
}: Slider
|
|
2017
|
-
|
|
2095
|
+
}: Slider.Indicator.Props) => react_jsx_runtime9.JSX.Element;
|
|
2096
|
+
Root: ({
|
|
2018
2097
|
className,
|
|
2019
2098
|
...props
|
|
2020
|
-
}:
|
|
2021
|
-
|
|
2099
|
+
}: SliderProps) => react_jsx_runtime9.JSX.Element;
|
|
2100
|
+
Thumb: ({
|
|
2022
2101
|
className,
|
|
2023
2102
|
...props
|
|
2024
|
-
}: Slider
|
|
2025
|
-
|
|
2103
|
+
}: Slider.Thumb.Props) => react_jsx_runtime9.JSX.Element;
|
|
2104
|
+
Track: ({
|
|
2026
2105
|
className,
|
|
2027
2106
|
...props
|
|
2028
|
-
}: Slider
|
|
2029
|
-
|
|
2107
|
+
}: Slider.Track.Props) => react_jsx_runtime9.JSX.Element;
|
|
2108
|
+
Value: ({
|
|
2030
2109
|
className,
|
|
2031
2110
|
...props
|
|
2032
|
-
}: Slider
|
|
2033
|
-
Root: /*elided*/any;
|
|
2111
|
+
}: Slider.Value.Props) => react_jsx_runtime9.JSX.Element;
|
|
2034
2112
|
};
|
|
2035
2113
|
//#endregion
|
|
2036
2114
|
//#region src/components/switch/switch.variants.d.ts
|
|
2037
|
-
declare const switchVariants:
|
|
2115
|
+
declare const switchVariants: tailwind_variants3.TVReturnType<{
|
|
2038
2116
|
size: {
|
|
2039
2117
|
lg: {
|
|
2040
2118
|
root: string;
|
|
@@ -2064,7 +2142,7 @@ declare const switchVariants: tailwind_variants0.TVReturnType<{
|
|
|
2064
2142
|
}, {
|
|
2065
2143
|
root: string;
|
|
2066
2144
|
thumb: string;
|
|
2067
|
-
},
|
|
2145
|
+
}, tailwind_variants3.TVReturnType<{
|
|
2068
2146
|
size: {
|
|
2069
2147
|
lg: {
|
|
2070
2148
|
root: string;
|
|
@@ -2083,22 +2161,25 @@ declare const switchVariants: tailwind_variants0.TVReturnType<{
|
|
|
2083
2161
|
type SwitchVariants = VariantProps<typeof switchVariants>;
|
|
2084
2162
|
//#endregion
|
|
2085
2163
|
//#region src/components/switch/switch.d.ts
|
|
2086
|
-
interface SwitchProps extends SwitchVariants, Switch
|
|
2087
|
-
declare const
|
|
2088
|
-
|
|
2164
|
+
interface SwitchProps extends SwitchVariants, Switch.Root.Props {}
|
|
2165
|
+
declare const _default$16: (({
|
|
2166
|
+
className,
|
|
2167
|
+
size,
|
|
2168
|
+
...props
|
|
2169
|
+
}: SwitchProps) => react_jsx_runtime9.JSX.Element) & {
|
|
2170
|
+
Root: ({
|
|
2089
2171
|
className,
|
|
2090
2172
|
size,
|
|
2091
2173
|
...props
|
|
2092
|
-
}: SwitchProps)
|
|
2174
|
+
}: SwitchProps) => react_jsx_runtime9.JSX.Element;
|
|
2093
2175
|
Thumb: ({
|
|
2094
2176
|
className,
|
|
2095
2177
|
...props
|
|
2096
|
-
}: Switch
|
|
2097
|
-
Root: /*elided*/any;
|
|
2178
|
+
}: Switch.Thumb.Props) => react_jsx_runtime9.JSX.Element;
|
|
2098
2179
|
};
|
|
2099
2180
|
//#endregion
|
|
2100
2181
|
//#region src/components/table/table.variants.d.ts
|
|
2101
|
-
declare const tableVariants:
|
|
2182
|
+
declare const tableVariants: tailwind_variants3.TVReturnType<{
|
|
2102
2183
|
[key: string]: {
|
|
2103
2184
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2104
2185
|
root?: tailwind_merge0.ClassNameValue;
|
|
@@ -2150,7 +2231,7 @@ declare const tableVariants: tailwind_variants0.TVReturnType<{
|
|
|
2150
2231
|
th: string;
|
|
2151
2232
|
thead: string;
|
|
2152
2233
|
tr: string;
|
|
2153
|
-
},
|
|
2234
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
2154
2235
|
root: string;
|
|
2155
2236
|
tbody: string;
|
|
2156
2237
|
td: string;
|
|
@@ -2163,51 +2244,53 @@ type TableVariants = VariantProps<typeof tableVariants>;
|
|
|
2163
2244
|
//#endregion
|
|
2164
2245
|
//#region src/components/table/table.d.ts
|
|
2165
2246
|
interface TableProps extends TableVariants, React.ComponentProps<"table"> {}
|
|
2166
|
-
|
|
2167
|
-
|
|
2247
|
+
interface TableHeadProps extends React.ComponentProps<"thead"> {}
|
|
2248
|
+
interface TableRowProps extends React.ComponentProps<"tr"> {}
|
|
2249
|
+
interface TableHeaderCellProps extends React.ComponentProps<"th"> {}
|
|
2250
|
+
interface TableBodyProps extends React.ComponentProps<"tbody"> {}
|
|
2251
|
+
interface TableDataCellProps extends React.ComponentProps<"td"> {}
|
|
2252
|
+
interface TableFooterProps extends React.ComponentProps<"tfoot"> {}
|
|
2253
|
+
declare const _default$17: (({
|
|
2254
|
+
className,
|
|
2255
|
+
...props
|
|
2256
|
+
}: TableProps) => react_jsx_runtime9.JSX.Element) & {
|
|
2257
|
+
Body: ({
|
|
2168
2258
|
className,
|
|
2169
2259
|
...props
|
|
2170
|
-
}:
|
|
2171
|
-
|
|
2172
|
-
Head: ({
|
|
2260
|
+
}: TableBodyProps) => react_jsx_runtime9.JSX.Element;
|
|
2261
|
+
DataCell: ({
|
|
2173
2262
|
className,
|
|
2174
2263
|
...props
|
|
2175
|
-
}:
|
|
2176
|
-
|
|
2264
|
+
}: TableDataCellProps) => react_jsx_runtime9.JSX.Element;
|
|
2265
|
+
Footer: ({
|
|
2177
2266
|
className,
|
|
2178
2267
|
...props
|
|
2179
|
-
}:
|
|
2180
|
-
|
|
2268
|
+
}: TableFooterProps) => react_jsx_runtime9.JSX.Element;
|
|
2269
|
+
Head: ({
|
|
2181
2270
|
className,
|
|
2182
2271
|
...props
|
|
2183
|
-
}:
|
|
2184
|
-
|
|
2272
|
+
}: TableHeadProps) => react_jsx_runtime9.JSX.Element;
|
|
2273
|
+
HeaderCell: ({
|
|
2185
2274
|
className,
|
|
2186
2275
|
...props
|
|
2187
|
-
}:
|
|
2188
|
-
|
|
2276
|
+
}: TableHeaderCellProps) => react_jsx_runtime9.JSX.Element;
|
|
2277
|
+
Root: ({
|
|
2189
2278
|
className,
|
|
2190
2279
|
...props
|
|
2191
|
-
}:
|
|
2192
|
-
|
|
2280
|
+
}: TableProps) => react_jsx_runtime9.JSX.Element;
|
|
2281
|
+
Row: ({
|
|
2193
2282
|
className,
|
|
2194
2283
|
...props
|
|
2195
|
-
}:
|
|
2284
|
+
}: TableRowProps) => react_jsx_runtime9.JSX.Element;
|
|
2196
2285
|
};
|
|
2197
|
-
interface TableHeadProps extends React.ComponentProps<"thead"> {}
|
|
2198
|
-
interface TableRowProps extends React.ComponentProps<"tr"> {}
|
|
2199
|
-
interface TableHeaderCellProps extends React.ComponentProps<"th"> {}
|
|
2200
|
-
interface TableBodyProps extends React.ComponentProps<"tbody"> {}
|
|
2201
|
-
interface TableDataCellProps extends React.ComponentProps<"td"> {}
|
|
2202
|
-
interface TableFooterProps extends React.ComponentProps<"tfoot"> {}
|
|
2203
2286
|
//#endregion
|
|
2204
2287
|
//#region src/components/tabs/tabs.variants.d.ts
|
|
2205
|
-
declare const tabsVariants:
|
|
2288
|
+
declare const tabsVariants: tailwind_variants3.TVReturnType<{
|
|
2206
2289
|
[key: string]: {
|
|
2207
2290
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2208
|
-
panel?: tailwind_merge0.ClassNameValue;
|
|
2209
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2210
2291
|
indicator?: tailwind_merge0.ClassNameValue;
|
|
2292
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2293
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
2211
2294
|
list?: tailwind_merge0.ClassNameValue;
|
|
2212
2295
|
tab?: tailwind_merge0.ClassNameValue;
|
|
2213
2296
|
};
|
|
@@ -2215,9 +2298,9 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
2215
2298
|
} | {
|
|
2216
2299
|
[x: string]: {
|
|
2217
2300
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2218
|
-
panel?: tailwind_merge0.ClassNameValue;
|
|
2219
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2220
2301
|
indicator?: tailwind_merge0.ClassNameValue;
|
|
2302
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2303
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
2221
2304
|
list?: tailwind_merge0.ClassNameValue;
|
|
2222
2305
|
tab?: tailwind_merge0.ClassNameValue;
|
|
2223
2306
|
};
|
|
@@ -2231,9 +2314,9 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
2231
2314
|
}, undefined, {
|
|
2232
2315
|
[key: string]: {
|
|
2233
2316
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2234
|
-
panel?: tailwind_merge0.ClassNameValue;
|
|
2235
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2236
2317
|
indicator?: tailwind_merge0.ClassNameValue;
|
|
2318
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2319
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
2237
2320
|
list?: tailwind_merge0.ClassNameValue;
|
|
2238
2321
|
tab?: tailwind_merge0.ClassNameValue;
|
|
2239
2322
|
};
|
|
@@ -2244,7 +2327,7 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
2244
2327
|
panel: string;
|
|
2245
2328
|
root: string;
|
|
2246
2329
|
tab: string;
|
|
2247
|
-
},
|
|
2330
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
2248
2331
|
indicator: string;
|
|
2249
2332
|
list: string;
|
|
2250
2333
|
panel: string;
|
|
@@ -2254,95 +2337,72 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
2254
2337
|
type TabsVariants = VariantProps<typeof tabsVariants>;
|
|
2255
2338
|
//#endregion
|
|
2256
2339
|
//#region src/components/tabs/tabs.d.ts
|
|
2257
|
-
interface TabsProps extends TabsVariants, Tabs
|
|
2258
|
-
|
|
2259
|
-
|
|
2340
|
+
interface TabsProps extends TabsVariants, Tabs.Root.Props {}
|
|
2341
|
+
interface TabsListProps extends Tabs.List.Props {}
|
|
2342
|
+
interface TabsTabProps extends Tabs.Tab.Props {}
|
|
2343
|
+
interface TabsIndicatorProps extends Tabs.Indicator.Props {}
|
|
2344
|
+
interface TabsPanelProps extends Tabs.Panel.Props {}
|
|
2345
|
+
declare const _default$18: (({
|
|
2346
|
+
className,
|
|
2347
|
+
...props
|
|
2348
|
+
}: TabsProps) => react_jsx_runtime9.JSX.Element) & {
|
|
2349
|
+
Indicator: ({
|
|
2260
2350
|
className,
|
|
2261
2351
|
...props
|
|
2262
|
-
}:
|
|
2352
|
+
}: TabsIndicatorProps) => react_jsx_runtime9.JSX.Element;
|
|
2263
2353
|
List: ({
|
|
2264
2354
|
className,
|
|
2265
2355
|
...props
|
|
2266
|
-
}: TabsListProps) =>
|
|
2267
|
-
|
|
2356
|
+
}: TabsListProps) => react_jsx_runtime9.JSX.Element;
|
|
2357
|
+
Panel: ({
|
|
2268
2358
|
className,
|
|
2269
2359
|
...props
|
|
2270
|
-
}:
|
|
2271
|
-
|
|
2360
|
+
}: TabsPanelProps) => react_jsx_runtime9.JSX.Element;
|
|
2361
|
+
Root: ({
|
|
2272
2362
|
className,
|
|
2273
2363
|
...props
|
|
2274
|
-
}:
|
|
2275
|
-
|
|
2364
|
+
}: TabsProps) => react_jsx_runtime9.JSX.Element;
|
|
2365
|
+
Tab: ({
|
|
2276
2366
|
className,
|
|
2277
2367
|
...props
|
|
2278
|
-
}:
|
|
2279
|
-
Root: /*elided*/any;
|
|
2368
|
+
}: TabsTabProps) => react_jsx_runtime9.JSX.Element;
|
|
2280
2369
|
};
|
|
2281
|
-
interface TabsListProps extends Tabs$1.List.Props {}
|
|
2282
|
-
interface TabsTabProps extends Tabs$1.Tab.Props {}
|
|
2283
|
-
interface TabsIndicatorProps extends Tabs$1.Indicator.Props {}
|
|
2284
|
-
interface TabsPanelProps extends Tabs$1.Panel.Props {}
|
|
2285
2370
|
//#endregion
|
|
2286
2371
|
//#region src/components/text/text.variants.d.ts
|
|
2287
|
-
declare const textVariants:
|
|
2372
|
+
declare const textVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "text", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "text", unknown, unknown, undefined>>;
|
|
2288
2373
|
type TextVariants = VariantProps<typeof textVariants>;
|
|
2289
2374
|
//#endregion
|
|
2290
2375
|
//#region src/components/text/text.d.ts
|
|
2291
|
-
interface TextProps extends TextVariants, React.ComponentProps<
|
|
2376
|
+
interface TextProps extends TextVariants, React.ComponentProps<typeof Text$1> {}
|
|
2292
2377
|
declare const Text: ({
|
|
2293
2378
|
className,
|
|
2294
2379
|
...props
|
|
2295
|
-
}: TextProps) =>
|
|
2380
|
+
}: TextProps) => react_jsx_runtime9.JSX.Element;
|
|
2381
|
+
//#endregion
|
|
2382
|
+
//#region src/components/text-field/text-field.variants.d.ts
|
|
2383
|
+
declare const textFieldVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "text-field", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "text-field", unknown, unknown, undefined>>;
|
|
2384
|
+
type TextFieldVariants = VariantProps<typeof textFieldVariants>;
|
|
2385
|
+
//#endregion
|
|
2386
|
+
//#region src/components/text-field/text-field.d.ts
|
|
2387
|
+
interface TextFieldProps extends TextFieldVariants, React.ComponentProps<typeof TextField$1> {}
|
|
2388
|
+
declare const TextField: ({
|
|
2389
|
+
className,
|
|
2390
|
+
...props
|
|
2391
|
+
}: TextFieldProps) => react_jsx_runtime9.JSX.Element;
|
|
2296
2392
|
//#endregion
|
|
2297
2393
|
//#region src/components/textarea/textarea.variants.d.ts
|
|
2298
|
-
declare const textareaVariants:
|
|
2299
|
-
inputSize: {
|
|
2300
|
-
lg: tailwind_merge0.ClassNameValue | {
|
|
2301
|
-
base?: tailwind_merge0.ClassNameValue;
|
|
2302
|
-
};
|
|
2303
|
-
md: tailwind_merge0.ClassNameValue | {
|
|
2304
|
-
base?: tailwind_merge0.ClassNameValue;
|
|
2305
|
-
};
|
|
2306
|
-
sm: tailwind_merge0.ClassNameValue | {
|
|
2307
|
-
base?: tailwind_merge0.ClassNameValue;
|
|
2308
|
-
};
|
|
2309
|
-
};
|
|
2310
|
-
}, undefined, "textarea", {
|
|
2311
|
-
inputSize: {
|
|
2312
|
-
lg: string;
|
|
2313
|
-
md: string;
|
|
2314
|
-
sm: string;
|
|
2315
|
-
};
|
|
2316
|
-
}, undefined, tailwind_variants0.TVReturnType<{
|
|
2317
|
-
inputSize: {
|
|
2318
|
-
lg: string;
|
|
2319
|
-
md: string;
|
|
2320
|
-
sm: string;
|
|
2321
|
-
};
|
|
2322
|
-
}, undefined, "input", {
|
|
2323
|
-
inputSize: {
|
|
2324
|
-
lg: string;
|
|
2325
|
-
md: string;
|
|
2326
|
-
sm: string;
|
|
2327
|
-
};
|
|
2328
|
-
}, undefined, tailwind_variants0.TVReturnType<{
|
|
2329
|
-
inputSize: {
|
|
2330
|
-
lg: string;
|
|
2331
|
-
md: string;
|
|
2332
|
-
sm: string;
|
|
2333
|
-
};
|
|
2334
|
-
}, undefined, "input", unknown, unknown, undefined>>>;
|
|
2394
|
+
declare const textareaVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "textarea", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "textarea", unknown, unknown, undefined>>;
|
|
2335
2395
|
type TextareaVariants = VariantProps<typeof textareaVariants>;
|
|
2336
2396
|
//#endregion
|
|
2337
2397
|
//#region src/components/textarea/textarea.d.ts
|
|
2338
|
-
interface TextareaProps extends TextareaVariants, React.ComponentProps<
|
|
2398
|
+
interface TextareaProps extends TextareaVariants, React.ComponentProps<typeof TextArea> {}
|
|
2339
2399
|
declare const Textarea: ({
|
|
2340
2400
|
className,
|
|
2341
2401
|
...props
|
|
2342
|
-
}: TextareaProps) =>
|
|
2402
|
+
}: TextareaProps) => react_jsx_runtime9.JSX.Element;
|
|
2343
2403
|
//#endregion
|
|
2344
2404
|
//#region src/components/toggle-button/toggle-button.variants.d.ts
|
|
2345
|
-
declare const toggleButtonVariants:
|
|
2405
|
+
declare const toggleButtonVariants: tailwind_variants3.TVReturnType<{} | {
|
|
2346
2406
|
isIconOnly: {
|
|
2347
2407
|
true: tailwind_merge0.ClassNameValue | {
|
|
2348
2408
|
base?: tailwind_merge0.ClassNameValue;
|
|
@@ -2392,7 +2452,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
2392
2452
|
primary: string;
|
|
2393
2453
|
secondary: string;
|
|
2394
2454
|
};
|
|
2395
|
-
}, undefined,
|
|
2455
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
2396
2456
|
isIconOnly: {
|
|
2397
2457
|
true: string;
|
|
2398
2458
|
};
|
|
@@ -2424,7 +2484,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
2424
2484
|
primary: string;
|
|
2425
2485
|
secondary: string;
|
|
2426
2486
|
};
|
|
2427
|
-
}, undefined,
|
|
2487
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
2428
2488
|
isIconOnly: {
|
|
2429
2489
|
true: string;
|
|
2430
2490
|
};
|
|
@@ -2450,7 +2510,7 @@ declare const ToggleButton: ({
|
|
|
2450
2510
|
variant,
|
|
2451
2511
|
size,
|
|
2452
2512
|
...props
|
|
2453
|
-
}: ToggleButtonProps) =>
|
|
2513
|
+
}: ToggleButtonProps) => react_jsx_runtime9.JSX.Element;
|
|
2454
2514
|
//#endregion
|
|
2455
|
-
export { Accordion, AccordionVariants, AlertDialog, AlertDialogVariants, Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants,
|
|
2515
|
+
export { _default as Accordion, AccordionVariants, _default$1 as Alert, _default$2 as AlertDialog, AlertDialogVariants, AlertVariants, _default$3 as Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, _default$4 as Card, CardVariants, CheckboxGroup, CheckboxGroupVariants, Chip, ChipVariants, Container, ContainerVariants, Description, DescriptionVariants, _default$5 as Dialog, DialogVariants, _default$6 as Drawer, DrawerVariants, FieldError, FieldErrorVariants, _default$7 as Fieldset, FieldsetVariants, Form, FormVariants, IconButton, IconButtonVariants, Input, InputVariants, Label, LabelVariants, Link, LinkVariants, _default$8 as List, ListVariants, _default$9 as Menu, MenuVariants, _default$10 as Meter, MeterVariants, _default$11 as Navbar, NavbarVariants, OverlayTrigger, Popover, PopoverVariants, _default$12 as Progress, ProgressVariants, _default$13 as Radio, RadioGroup, RadioGroupVariants, RadioVariants, _default$14 as Select, SelectVariants, Separator, SeparatorVariants, _default$15 as Slider, SliderVariants, _default$16 as Switch, SwitchVariants, _default$17 as Table, TableVariants, _default$18 as Tabs, TabsVariants, Text, TextField, TextFieldVariants, TextVariants, Textarea, TextareaVariants, ToggleButton, ToggleButtonVariants, accordionVariants, alertDialogVariants, alertVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, chipVariants, cn, containerVariants, descriptionVariants, dialogVariants, drawerVariants, fieldErrorVariants, fieldsetVariants, formVariants, iconButtonVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, popoverVariants, progressVariants, radioGroupVariants, radioVariants, selectVariants, separatorVariants, sliderVariants, switchVariants, tableVariants, tabsVariants, textFieldVariants, textVariants, textareaVariants, toggleButtonVariants };
|
|
2456
2516
|
//# sourceMappingURL=index.d.mts.map
|