@fea-ui/react 0.1.0-alpha.1 → 0.1.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.MD +3 -0
- package/dist/index.cjs +1075 -214
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1500 -489
- package/dist/index.d.mts +1500 -489
- package/dist/index.mjs +1052 -220
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
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_runtime12 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,47 +71,287 @@ 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_runtime12.JSX.Element) & {
|
|
78
85
|
Content: ({
|
|
79
86
|
className,
|
|
80
87
|
...props
|
|
81
|
-
}: AccordionContentProps) =>
|
|
88
|
+
}: AccordionContentProps) => react_jsx_runtime12.JSX.Element;
|
|
82
89
|
Header: ({
|
|
83
90
|
className,
|
|
84
91
|
...props
|
|
85
|
-
}: AccordionHeaderProps) =>
|
|
92
|
+
}: AccordionHeaderProps) => react_jsx_runtime12.JSX.Element;
|
|
86
93
|
Item: ({
|
|
87
94
|
className,
|
|
88
95
|
...props
|
|
89
|
-
}: AccordionItemProps) =>
|
|
96
|
+
}: AccordionItemProps) => react_jsx_runtime12.JSX.Element;
|
|
90
97
|
Panel: ({
|
|
91
98
|
className,
|
|
92
99
|
...props
|
|
93
|
-
}: AccordionPanelProps) =>
|
|
94
|
-
Root:
|
|
100
|
+
}: AccordionPanelProps) => react_jsx_runtime12.JSX.Element;
|
|
101
|
+
Root: ({
|
|
102
|
+
className,
|
|
103
|
+
...props
|
|
104
|
+
}: AccordionProps) => react_jsx_runtime12.JSX.Element;
|
|
95
105
|
Trigger: ({
|
|
96
106
|
className,
|
|
97
107
|
...props
|
|
98
|
-
}: AccordionTriggerProps) =>
|
|
108
|
+
}: AccordionTriggerProps) => react_jsx_runtime12.JSX.Element;
|
|
99
109
|
TriggerIcon: ({
|
|
100
110
|
className,
|
|
101
111
|
...props
|
|
102
|
-
}: AccordionTriggerIconProps) =>
|
|
112
|
+
}: AccordionTriggerIconProps) => react_jsx_runtime12.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_runtime12.JSX.Element) & {
|
|
202
|
+
Content: ({
|
|
203
|
+
className,
|
|
204
|
+
...props
|
|
205
|
+
}: AlertContentProps) => react_jsx_runtime12.JSX.Element;
|
|
206
|
+
Description: ({
|
|
207
|
+
className,
|
|
208
|
+
...props
|
|
209
|
+
}: AlertDescriptionProps) => react_jsx_runtime12.JSX.Element;
|
|
210
|
+
Indicator: ({
|
|
211
|
+
className,
|
|
212
|
+
children,
|
|
213
|
+
...props
|
|
214
|
+
}: AlertIndicatorProps) => react_jsx_runtime12.JSX.Element;
|
|
215
|
+
Root: ({
|
|
216
|
+
className,
|
|
217
|
+
variant,
|
|
218
|
+
...props
|
|
219
|
+
}: AlertProps) => react_jsx_runtime12.JSX.Element;
|
|
220
|
+
Title: ({
|
|
221
|
+
className,
|
|
222
|
+
...props
|
|
223
|
+
}: AlertTitleProps) => react_jsx_runtime12.JSX.Element;
|
|
224
|
+
};
|
|
225
|
+
//#endregion
|
|
226
|
+
//#region src/components/alert-dialog/alert-dialog.variants.d.ts
|
|
227
|
+
declare const alertDialogVariants: tailwind_variants3.TVReturnType<{
|
|
228
|
+
[key: string]: {
|
|
229
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
230
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
231
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
232
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
233
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
234
|
+
backdrop?: tailwind_merge0.ClassNameValue;
|
|
235
|
+
close?: tailwind_merge0.ClassNameValue;
|
|
236
|
+
popup?: tailwind_merge0.ClassNameValue;
|
|
237
|
+
portal?: tailwind_merge0.ClassNameValue;
|
|
238
|
+
viewport?: tailwind_merge0.ClassNameValue;
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
} | {
|
|
242
|
+
[x: string]: {
|
|
243
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
244
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
245
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
246
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
247
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
248
|
+
backdrop?: tailwind_merge0.ClassNameValue;
|
|
249
|
+
close?: tailwind_merge0.ClassNameValue;
|
|
250
|
+
popup?: tailwind_merge0.ClassNameValue;
|
|
251
|
+
portal?: tailwind_merge0.ClassNameValue;
|
|
252
|
+
viewport?: tailwind_merge0.ClassNameValue;
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
} | {}, {
|
|
256
|
+
backdrop: string;
|
|
257
|
+
close: string;
|
|
258
|
+
description: string;
|
|
259
|
+
popup: string;
|
|
260
|
+
portal: string;
|
|
261
|
+
root: string;
|
|
262
|
+
title: string;
|
|
263
|
+
trigger: string;
|
|
264
|
+
viewport: string;
|
|
265
|
+
}, undefined, {
|
|
266
|
+
[key: string]: {
|
|
267
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
268
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
269
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
270
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
271
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
272
|
+
backdrop?: tailwind_merge0.ClassNameValue;
|
|
273
|
+
close?: tailwind_merge0.ClassNameValue;
|
|
274
|
+
popup?: tailwind_merge0.ClassNameValue;
|
|
275
|
+
portal?: tailwind_merge0.ClassNameValue;
|
|
276
|
+
viewport?: tailwind_merge0.ClassNameValue;
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
} | {}, {
|
|
280
|
+
backdrop: string;
|
|
281
|
+
close: string;
|
|
282
|
+
description: string;
|
|
283
|
+
popup: string;
|
|
284
|
+
portal: string;
|
|
285
|
+
root: string;
|
|
286
|
+
title: string;
|
|
287
|
+
trigger: string;
|
|
288
|
+
viewport: string;
|
|
289
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
290
|
+
backdrop: string;
|
|
291
|
+
close: string;
|
|
292
|
+
description: string;
|
|
293
|
+
popup: string;
|
|
294
|
+
portal: string;
|
|
295
|
+
root: string;
|
|
296
|
+
title: string;
|
|
297
|
+
trigger: string;
|
|
298
|
+
viewport: string;
|
|
299
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
300
|
+
type AlertDialogVariants = VariantProps<typeof alertDialogVariants>;
|
|
301
|
+
//#endregion
|
|
302
|
+
//#region src/components/alert-dialog/alert-dialog.d.ts
|
|
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_runtime12.JSX.Element) & {
|
|
315
|
+
Backdrop: ({
|
|
316
|
+
className,
|
|
317
|
+
...props
|
|
318
|
+
}: AlertDialogBackdropProps) => react_jsx_runtime12.JSX.Element;
|
|
319
|
+
Close: ({
|
|
320
|
+
className,
|
|
321
|
+
children,
|
|
322
|
+
...props
|
|
323
|
+
}: AlertDialogCloseProps) => react_jsx_runtime12.JSX.Element;
|
|
324
|
+
Description: ({
|
|
325
|
+
className,
|
|
326
|
+
...props
|
|
327
|
+
}: AlertDialogDescriptionProps) => react_jsx_runtime12.JSX.Element;
|
|
328
|
+
Popup: ({
|
|
329
|
+
className,
|
|
330
|
+
...props
|
|
331
|
+
}: AlertDialogPopupProps) => react_jsx_runtime12.JSX.Element;
|
|
332
|
+
Portal: ({
|
|
333
|
+
className,
|
|
334
|
+
...props
|
|
335
|
+
}: AlertDialogPortalProps) => react_jsx_runtime12.JSX.Element;
|
|
336
|
+
Root: ({
|
|
337
|
+
...props
|
|
338
|
+
}: AlertDialogProps) => react_jsx_runtime12.JSX.Element;
|
|
339
|
+
Title: ({
|
|
340
|
+
className,
|
|
341
|
+
...props
|
|
342
|
+
}: AlertDialogTitleProps) => react_jsx_runtime12.JSX.Element;
|
|
343
|
+
Trigger: ({
|
|
344
|
+
className,
|
|
345
|
+
...props
|
|
346
|
+
}: AlertDialogTriggerProps) => react_jsx_runtime12.JSX.Element;
|
|
347
|
+
Viewport: ({
|
|
348
|
+
className,
|
|
349
|
+
...props
|
|
350
|
+
}: AlertDialogViewportProps) => react_jsx_runtime12.JSX.Element;
|
|
103
351
|
};
|
|
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
352
|
//#endregion
|
|
111
353
|
//#region src/components/avatar/avatar.variants.d.ts
|
|
112
|
-
declare const avatarVariants:
|
|
354
|
+
declare const avatarVariants: tailwind_variants3.TVReturnType<{
|
|
113
355
|
size: {
|
|
114
356
|
lg: {
|
|
115
357
|
root: string;
|
|
@@ -141,7 +383,7 @@ declare const avatarVariants: tailwind_variants0.TVReturnType<{
|
|
|
141
383
|
fallback: string;
|
|
142
384
|
image: string;
|
|
143
385
|
root: string;
|
|
144
|
-
},
|
|
386
|
+
}, tailwind_variants3.TVReturnType<{
|
|
145
387
|
size: {
|
|
146
388
|
lg: {
|
|
147
389
|
root: string;
|
|
@@ -161,28 +403,31 @@ declare const avatarVariants: tailwind_variants0.TVReturnType<{
|
|
|
161
403
|
type AvatarVariants = VariantProps<typeof avatarVariants>;
|
|
162
404
|
//#endregion
|
|
163
405
|
//#region src/components/avatar/avatar.d.ts
|
|
164
|
-
interface AvatarProps extends AvatarVariants, Avatar
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
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_runtime12.JSX.Element) & {
|
|
171
414
|
Fallback: ({
|
|
172
415
|
className,
|
|
173
416
|
...props
|
|
174
|
-
}: AvatarFallbackProps) =>
|
|
417
|
+
}: AvatarFallbackProps) => react_jsx_runtime12.JSX.Element;
|
|
175
418
|
Image: ({
|
|
176
419
|
className,
|
|
177
420
|
...props
|
|
178
|
-
}: AvatarImageProps) =>
|
|
179
|
-
Root:
|
|
421
|
+
}: AvatarImageProps) => react_jsx_runtime12.JSX.Element;
|
|
422
|
+
Root: ({
|
|
423
|
+
className,
|
|
424
|
+
size,
|
|
425
|
+
...props
|
|
426
|
+
}: AvatarProps) => react_jsx_runtime12.JSX.Element;
|
|
180
427
|
};
|
|
181
|
-
interface AvatarImageProps extends Avatar$1.Image.Props {}
|
|
182
|
-
interface AvatarFallbackProps extends Avatar$1.Fallback.Props {}
|
|
183
428
|
//#endregion
|
|
184
429
|
//#region src/components/button/button.variants.d.ts
|
|
185
|
-
declare const buttonVariants:
|
|
430
|
+
declare const buttonVariants: tailwind_variants3.TVReturnType<{
|
|
186
431
|
isIconOnly: {
|
|
187
432
|
true: string;
|
|
188
433
|
};
|
|
@@ -214,7 +459,7 @@ declare const buttonVariants: tailwind_variants0.TVReturnType<{
|
|
|
214
459
|
primary: string;
|
|
215
460
|
secondary: string;
|
|
216
461
|
};
|
|
217
|
-
}, undefined,
|
|
462
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
218
463
|
isIconOnly: {
|
|
219
464
|
true: string;
|
|
220
465
|
};
|
|
@@ -234,17 +479,17 @@ declare const buttonVariants: tailwind_variants0.TVReturnType<{
|
|
|
234
479
|
type ButtonVariants = VariantProps<typeof buttonVariants>;
|
|
235
480
|
//#endregion
|
|
236
481
|
//#region src/components/button/button.d.ts
|
|
237
|
-
|
|
482
|
+
interface ButtonProps extends ButtonVariants, React.ComponentProps<typeof Button$1> {}
|
|
238
483
|
declare const Button: ({
|
|
239
484
|
className,
|
|
240
485
|
variant,
|
|
241
486
|
size,
|
|
242
487
|
isIconOnly,
|
|
243
488
|
...props
|
|
244
|
-
}: ButtonProps) =>
|
|
489
|
+
}: ButtonProps) => react_jsx_runtime12.JSX.Element;
|
|
245
490
|
//#endregion
|
|
246
491
|
//#region src/components/button-group/button-group.variants.d.ts
|
|
247
|
-
declare const buttonGroupVariants:
|
|
492
|
+
declare const buttonGroupVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "button-group", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "button-group", unknown, unknown, undefined>>;
|
|
248
493
|
type ButtonGroupVariants = VariantProps<typeof buttonGroupVariants>;
|
|
249
494
|
//#endregion
|
|
250
495
|
//#region src/components/button-group/button-group.d.ts
|
|
@@ -252,10 +497,10 @@ interface ButtonGroupProps extends ButtonGroupVariants, React.ComponentProps<"di
|
|
|
252
497
|
declare const ButtonGroup: ({
|
|
253
498
|
className,
|
|
254
499
|
...props
|
|
255
|
-
}: ButtonGroupProps) =>
|
|
500
|
+
}: ButtonGroupProps) => react_jsx_runtime12.JSX.Element;
|
|
256
501
|
//#endregion
|
|
257
502
|
//#region src/components/card/card.variants.d.ts
|
|
258
|
-
declare const cardVariants:
|
|
503
|
+
declare const cardVariants: tailwind_variants3.TVReturnType<{
|
|
259
504
|
variant: {
|
|
260
505
|
default: {
|
|
261
506
|
root: string;
|
|
@@ -287,7 +532,7 @@ declare const cardVariants: tailwind_variants0.TVReturnType<{
|
|
|
287
532
|
header: string;
|
|
288
533
|
root: string;
|
|
289
534
|
title: string;
|
|
290
|
-
},
|
|
535
|
+
}, tailwind_variants3.TVReturnType<{
|
|
291
536
|
variant: {
|
|
292
537
|
default: {
|
|
293
538
|
root: string;
|
|
@@ -308,119 +553,61 @@ type CardVariants = VariantProps<typeof cardVariants>;
|
|
|
308
553
|
//#endregion
|
|
309
554
|
//#region src/components/card/card.d.ts
|
|
310
555
|
interface CardProps extends CardVariants, React.ComponentProps<"div"> {}
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
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_runtime12.JSX.Element) & {
|
|
318
567
|
Body: ({
|
|
319
568
|
className,
|
|
320
569
|
...props
|
|
321
|
-
}: CardBodyProps) =>
|
|
570
|
+
}: CardBodyProps) => react_jsx_runtime12.JSX.Element;
|
|
322
571
|
Description: ({
|
|
323
572
|
className,
|
|
324
573
|
...props
|
|
325
|
-
}: CardDescriptionProps) =>
|
|
574
|
+
}: CardDescriptionProps) => react_jsx_runtime12.JSX.Element;
|
|
326
575
|
Footer: ({
|
|
327
576
|
className,
|
|
328
577
|
...props
|
|
329
|
-
}: CardFooterProps) =>
|
|
578
|
+
}: CardFooterProps) => react_jsx_runtime12.JSX.Element;
|
|
330
579
|
Header: ({
|
|
331
580
|
className,
|
|
332
581
|
...props
|
|
333
|
-
}: CardHeaderProps) =>
|
|
334
|
-
Root:
|
|
582
|
+
}: CardHeaderProps) => react_jsx_runtime12.JSX.Element;
|
|
583
|
+
Root: ({
|
|
584
|
+
className,
|
|
585
|
+
variant,
|
|
586
|
+
...props
|
|
587
|
+
}: CardProps) => react_jsx_runtime12.JSX.Element;
|
|
335
588
|
Title: ({
|
|
336
589
|
className,
|
|
337
590
|
...props
|
|
338
|
-
}: CardTitle) =>
|
|
591
|
+
}: CardTitle) => react_jsx_runtime12.JSX.Element;
|
|
339
592
|
};
|
|
340
|
-
interface CardHeaderProps extends React.ComponentProps<"div"> {}
|
|
341
|
-
interface CardBodyProps extends React.ComponentProps<"div"> {}
|
|
342
|
-
interface CardFooterProps extends React.ComponentProps<"div"> {}
|
|
343
|
-
interface CardTitle extends React.ComponentProps<"h2"> {}
|
|
344
|
-
interface CardDescriptionProps extends React.ComponentProps<"p"> {}
|
|
345
593
|
//#endregion
|
|
346
|
-
//#region src/components/checkbox/checkbox.variants.d.ts
|
|
347
|
-
declare const
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
};
|
|
364
|
-
};
|
|
365
|
-
} | {}, {
|
|
366
|
-
checkboxIcon: string;
|
|
367
|
-
indicator: string;
|
|
368
|
-
label: string;
|
|
369
|
-
root: string;
|
|
370
|
-
}, undefined, {
|
|
371
|
-
[key: string]: {
|
|
372
|
-
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
373
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
374
|
-
label?: tailwind_merge0.ClassNameValue;
|
|
375
|
-
checkboxIcon?: tailwind_merge0.ClassNameValue;
|
|
376
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
377
|
-
};
|
|
378
|
-
};
|
|
379
|
-
} | {}, {
|
|
380
|
-
checkboxIcon: string;
|
|
381
|
-
indicator: string;
|
|
382
|
-
label: string;
|
|
383
|
-
root: string;
|
|
384
|
-
}, tailwind_variants0.TVReturnType<unknown, {
|
|
385
|
-
checkboxIcon: string;
|
|
386
|
-
indicator: string;
|
|
387
|
-
label: string;
|
|
388
|
-
root: string;
|
|
389
|
-
}, undefined, unknown, unknown, undefined>>;
|
|
390
|
-
type CheckboxVariants = VariantProps<typeof checkboxVariants>;
|
|
391
|
-
//#endregion
|
|
392
|
-
//#region src/components/checkbox/checkbox.d.ts
|
|
393
|
-
interface CheckboxProps extends CheckboxVariants, Checkbox$1.Root.Props {}
|
|
394
|
-
declare const Checkbox: {
|
|
395
|
-
({
|
|
396
|
-
className,
|
|
397
|
-
...props
|
|
398
|
-
}: CheckboxProps): react_jsx_runtime0.JSX.Element;
|
|
399
|
-
Indicator: ({
|
|
400
|
-
className,
|
|
401
|
-
...props
|
|
402
|
-
}: CheckboxIndicatorProps) => react_jsx_runtime0.JSX.Element;
|
|
403
|
-
Root: /*elided*/any;
|
|
404
|
-
};
|
|
405
|
-
interface CheckboxIndicatorProps extends Checkbox$1.Indicator.Props {}
|
|
406
|
-
//#endregion
|
|
407
|
-
//#region src/components/checkbox-group/checkbox-group.variants.d.ts
|
|
408
|
-
declare const checkboxGroupVariants: tailwind_variants0.TVReturnType<{} | {} | {}, undefined, "checkbox-group", {} | {}, undefined, tailwind_variants0.TVReturnType<unknown, undefined, "checkbox-group", unknown, unknown, undefined>>;
|
|
409
|
-
type CheckboxGroupVariants = VariantProps<typeof checkboxGroupVariants>;
|
|
410
|
-
//#endregion
|
|
411
|
-
//#region src/components/checkbox-group/checkbox-group.d.ts
|
|
412
|
-
interface CheckboxGroupProps extends CheckboxGroupVariants, CheckboxGroup$1.Props {}
|
|
413
|
-
declare const CheckboxGroup: ({
|
|
414
|
-
className,
|
|
415
|
-
...props
|
|
416
|
-
}: CheckboxGroupProps) => react_jsx_runtime0.JSX.Element;
|
|
417
|
-
//#endregion
|
|
418
|
-
//#region src/components/chip/chip.variants.d.ts
|
|
419
|
-
declare const chipVariants: tailwind_variants0.TVReturnType<{
|
|
420
|
-
size: {
|
|
421
|
-
lg: string;
|
|
422
|
-
md: string;
|
|
423
|
-
sm: string;
|
|
594
|
+
//#region src/components/checkbox-group/checkbox-group.variants.d.ts
|
|
595
|
+
declare const checkboxGroupVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "checkbox-group", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "checkbox-group", unknown, unknown, undefined>>;
|
|
596
|
+
type CheckboxGroupVariants = VariantProps<typeof checkboxGroupVariants>;
|
|
597
|
+
//#endregion
|
|
598
|
+
//#region src/components/checkbox-group/checkbox-group.d.ts
|
|
599
|
+
interface CheckboxGroupProps extends CheckboxGroupVariants, React.ComponentProps<typeof CheckboxGroup$1> {}
|
|
600
|
+
declare const CheckboxGroup: ({
|
|
601
|
+
className,
|
|
602
|
+
...props
|
|
603
|
+
}: CheckboxGroupProps) => react_jsx_runtime12.JSX.Element;
|
|
604
|
+
//#endregion
|
|
605
|
+
//#region src/components/chip/chip.variants.d.ts
|
|
606
|
+
declare const chipVariants: tailwind_variants3.TVReturnType<{
|
|
607
|
+
size: {
|
|
608
|
+
lg: string;
|
|
609
|
+
md: string;
|
|
610
|
+
sm: string;
|
|
424
611
|
};
|
|
425
612
|
variant: {
|
|
426
613
|
danger: string;
|
|
@@ -442,7 +629,7 @@ declare const chipVariants: tailwind_variants0.TVReturnType<{
|
|
|
442
629
|
secondary: string;
|
|
443
630
|
success: string;
|
|
444
631
|
};
|
|
445
|
-
}, undefined,
|
|
632
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
446
633
|
size: {
|
|
447
634
|
lg: string;
|
|
448
635
|
md: string;
|
|
@@ -465,10 +652,10 @@ declare const Chip: ({
|
|
|
465
652
|
variant,
|
|
466
653
|
size,
|
|
467
654
|
...props
|
|
468
|
-
}: ChipProps) =>
|
|
655
|
+
}: ChipProps) => react_jsx_runtime12.JSX.Element;
|
|
469
656
|
//#endregion
|
|
470
657
|
//#region src/components/container/container.variants.d.ts
|
|
471
|
-
declare const containerVariants:
|
|
658
|
+
declare const containerVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "container", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "container", unknown, unknown, undefined>>;
|
|
472
659
|
type ContainerVariants = VariantProps<typeof containerVariants>;
|
|
473
660
|
//#endregion
|
|
474
661
|
//#region src/components/container/container.d.ts
|
|
@@ -476,16 +663,27 @@ interface ContainerProps extends ContainerVariants, React.ComponentProps<"div">
|
|
|
476
663
|
declare const Container: ({
|
|
477
664
|
className,
|
|
478
665
|
...props
|
|
479
|
-
}: ContainerProps) =>
|
|
666
|
+
}: ContainerProps) => react_jsx_runtime12.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_runtime12.JSX.Element;
|
|
480
678
|
//#endregion
|
|
481
679
|
//#region src/components/dialog/dialog.variants.d.ts
|
|
482
|
-
declare const dialogVariants:
|
|
680
|
+
declare const dialogVariants: tailwind_variants3.TVReturnType<{
|
|
483
681
|
[key: string]: {
|
|
484
682
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
683
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
485
684
|
root?: tailwind_merge0.ClassNameValue;
|
|
486
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
487
685
|
title?: tailwind_merge0.ClassNameValue;
|
|
488
|
-
|
|
686
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
489
687
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
490
688
|
close?: tailwind_merge0.ClassNameValue;
|
|
491
689
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -496,10 +694,10 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
496
694
|
} | {
|
|
497
695
|
[x: string]: {
|
|
498
696
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
697
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
499
698
|
root?: tailwind_merge0.ClassNameValue;
|
|
500
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
501
699
|
title?: tailwind_merge0.ClassNameValue;
|
|
502
|
-
|
|
700
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
503
701
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
504
702
|
close?: tailwind_merge0.ClassNameValue;
|
|
505
703
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -520,10 +718,10 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
520
718
|
}, undefined, {
|
|
521
719
|
[key: string]: {
|
|
522
720
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
721
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
523
722
|
root?: tailwind_merge0.ClassNameValue;
|
|
524
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
525
723
|
title?: tailwind_merge0.ClassNameValue;
|
|
526
|
-
|
|
724
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
527
725
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
528
726
|
close?: tailwind_merge0.ClassNameValue;
|
|
529
727
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -541,7 +739,7 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
541
739
|
title: string;
|
|
542
740
|
trigger: string;
|
|
543
741
|
viewport: string;
|
|
544
|
-
},
|
|
742
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
545
743
|
backdrop: string;
|
|
546
744
|
close: string;
|
|
547
745
|
description: string;
|
|
@@ -555,197 +753,396 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
555
753
|
type DialogVariants = VariantProps<typeof dialogVariants>;
|
|
556
754
|
//#endregion
|
|
557
755
|
//#region src/components/dialog/dialog.d.ts
|
|
558
|
-
interface DialogProps extends DialogVariants, Dialog
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
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_runtime12.JSX.Element) & {
|
|
563
768
|
Backdrop: ({
|
|
564
769
|
className,
|
|
565
770
|
...props
|
|
566
|
-
}: DialogBackdropProps) =>
|
|
771
|
+
}: DialogBackdropProps) => react_jsx_runtime12.JSX.Element;
|
|
567
772
|
Close: ({
|
|
568
773
|
className,
|
|
569
774
|
...props
|
|
570
|
-
}: DialogCloseProps) =>
|
|
775
|
+
}: DialogCloseProps) => react_jsx_runtime12.JSX.Element;
|
|
571
776
|
Description: ({
|
|
572
777
|
className,
|
|
573
778
|
...props
|
|
574
|
-
}: DialogDescriptionProps) =>
|
|
779
|
+
}: DialogDescriptionProps) => react_jsx_runtime12.JSX.Element;
|
|
575
780
|
Popup: ({
|
|
576
781
|
className,
|
|
577
782
|
...props
|
|
578
|
-
}: DialogPopupProps) =>
|
|
783
|
+
}: DialogPopupProps) => react_jsx_runtime12.JSX.Element;
|
|
579
784
|
Portal: ({
|
|
580
785
|
className,
|
|
581
786
|
...props
|
|
582
|
-
}: DialogPortalProps) =>
|
|
583
|
-
Root:
|
|
787
|
+
}: DialogPortalProps) => react_jsx_runtime12.JSX.Element;
|
|
788
|
+
Root: ({
|
|
789
|
+
...props
|
|
790
|
+
}: DialogProps) => react_jsx_runtime12.JSX.Element;
|
|
584
791
|
Title: ({
|
|
585
792
|
className,
|
|
586
793
|
...props
|
|
587
|
-
}: DialogTitleProps) =>
|
|
794
|
+
}: DialogTitleProps) => react_jsx_runtime12.JSX.Element;
|
|
588
795
|
Trigger: ({
|
|
589
796
|
className,
|
|
590
797
|
...props
|
|
591
|
-
}: DialogTriggerProps) =>
|
|
798
|
+
}: DialogTriggerProps) => react_jsx_runtime12.JSX.Element;
|
|
592
799
|
Viewport: ({
|
|
593
800
|
className,
|
|
594
801
|
...props
|
|
595
|
-
}: DialogViewportProps) =>
|
|
802
|
+
}: DialogViewportProps) => react_jsx_runtime12.JSX.Element;
|
|
596
803
|
};
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
interface DialogDescriptionProps extends Dialog$1.Description.Props {}
|
|
604
|
-
interface DialogCloseProps extends Dialog$1.Close.Props {}
|
|
605
|
-
//#endregion
|
|
606
|
-
//#region src/components/field/field.variants.d.ts
|
|
607
|
-
declare const fieldVariants: tailwind_variants0.TVReturnType<{
|
|
608
|
-
size: {
|
|
609
|
-
lg: {
|
|
610
|
-
control: string;
|
|
804
|
+
//#endregion
|
|
805
|
+
//#region src/components/drawer/drawer.variants.d.ts
|
|
806
|
+
declare const drawerVariants: tailwind_variants3.TVReturnType<{
|
|
807
|
+
position: {
|
|
808
|
+
bottom: {
|
|
809
|
+
popup: string;
|
|
611
810
|
};
|
|
612
|
-
|
|
613
|
-
|
|
811
|
+
left: {
|
|
812
|
+
popup: string;
|
|
614
813
|
};
|
|
615
|
-
|
|
616
|
-
|
|
814
|
+
right: {
|
|
815
|
+
popup: string;
|
|
816
|
+
};
|
|
817
|
+
top: {
|
|
818
|
+
popup: string;
|
|
617
819
|
};
|
|
618
820
|
};
|
|
619
821
|
}, {
|
|
620
|
-
|
|
822
|
+
backdrop: string;
|
|
823
|
+
close: string;
|
|
621
824
|
description: string;
|
|
622
|
-
|
|
623
|
-
|
|
825
|
+
popup: string;
|
|
826
|
+
portal: string;
|
|
624
827
|
root: string;
|
|
828
|
+
title: string;
|
|
829
|
+
trigger: string;
|
|
830
|
+
viewport: string;
|
|
625
831
|
}, undefined, {
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
832
|
+
position: {
|
|
833
|
+
bottom: {
|
|
834
|
+
popup: string;
|
|
629
835
|
};
|
|
630
|
-
|
|
631
|
-
|
|
836
|
+
left: {
|
|
837
|
+
popup: string;
|
|
632
838
|
};
|
|
633
|
-
|
|
634
|
-
|
|
839
|
+
right: {
|
|
840
|
+
popup: string;
|
|
841
|
+
};
|
|
842
|
+
top: {
|
|
843
|
+
popup: string;
|
|
635
844
|
};
|
|
636
845
|
};
|
|
637
846
|
}, {
|
|
638
|
-
|
|
847
|
+
backdrop: string;
|
|
848
|
+
close: string;
|
|
639
849
|
description: string;
|
|
640
|
-
|
|
641
|
-
|
|
850
|
+
popup: string;
|
|
851
|
+
portal: string;
|
|
642
852
|
root: string;
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
853
|
+
title: string;
|
|
854
|
+
trigger: string;
|
|
855
|
+
viewport: string;
|
|
856
|
+
}, tailwind_variants3.TVReturnType<{
|
|
857
|
+
position: {
|
|
858
|
+
bottom: {
|
|
859
|
+
popup: string;
|
|
647
860
|
};
|
|
648
|
-
|
|
649
|
-
|
|
861
|
+
left: {
|
|
862
|
+
popup: string;
|
|
650
863
|
};
|
|
651
|
-
|
|
652
|
-
|
|
864
|
+
right: {
|
|
865
|
+
popup: string;
|
|
866
|
+
};
|
|
867
|
+
top: {
|
|
868
|
+
popup: string;
|
|
653
869
|
};
|
|
654
870
|
};
|
|
655
871
|
}, {
|
|
656
|
-
|
|
872
|
+
backdrop: string;
|
|
873
|
+
close: string;
|
|
657
874
|
description: string;
|
|
658
|
-
|
|
659
|
-
|
|
875
|
+
popup: string;
|
|
876
|
+
portal: string;
|
|
660
877
|
root: string;
|
|
878
|
+
title: string;
|
|
879
|
+
trigger: string;
|
|
880
|
+
viewport: string;
|
|
661
881
|
}, undefined, unknown, unknown, undefined>>;
|
|
662
|
-
type
|
|
882
|
+
type DrawerVariants = VariantProps<typeof drawerVariants>;
|
|
663
883
|
//#endregion
|
|
664
|
-
//#region src/components/
|
|
665
|
-
interface
|
|
666
|
-
|
|
667
|
-
|
|
884
|
+
//#region src/components/drawer/drawer.d.ts
|
|
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_runtime12.JSX.Element) & {
|
|
898
|
+
Backdrop: ({
|
|
668
899
|
className,
|
|
669
|
-
size,
|
|
670
900
|
...props
|
|
671
|
-
}:
|
|
672
|
-
|
|
901
|
+
}: DrawerBackdropProps) => react_jsx_runtime12.JSX.Element;
|
|
902
|
+
Close: ({
|
|
673
903
|
className,
|
|
904
|
+
children,
|
|
674
905
|
...props
|
|
675
|
-
}:
|
|
906
|
+
}: DrawerCloseProps) => react_jsx_runtime12.JSX.Element;
|
|
676
907
|
Description: ({
|
|
677
908
|
className,
|
|
678
909
|
...props
|
|
679
|
-
}:
|
|
680
|
-
|
|
910
|
+
}: DrawerDescriptionProps) => react_jsx_runtime12.JSX.Element;
|
|
911
|
+
Popup: ({
|
|
681
912
|
className,
|
|
682
913
|
...props
|
|
683
|
-
}:
|
|
684
|
-
|
|
914
|
+
}: DrawerPopupProps) => react_jsx_runtime12.JSX.Element;
|
|
915
|
+
Portal: ({
|
|
916
|
+
className,
|
|
917
|
+
...props
|
|
918
|
+
}: DrawerPortalProps) => react_jsx_runtime12.JSX.Element;
|
|
919
|
+
Root: ({
|
|
920
|
+
position,
|
|
921
|
+
...props
|
|
922
|
+
}: DrawerProps) => react_jsx_runtime12.JSX.Element;
|
|
923
|
+
Title: ({
|
|
924
|
+
className,
|
|
925
|
+
...props
|
|
926
|
+
}: DrawerTitleProps) => react_jsx_runtime12.JSX.Element;
|
|
927
|
+
Trigger: ({
|
|
928
|
+
className,
|
|
929
|
+
...props
|
|
930
|
+
}: DrawerTriggerProps) => react_jsx_runtime12.JSX.Element;
|
|
931
|
+
Viewport: ({
|
|
932
|
+
className,
|
|
933
|
+
...props
|
|
934
|
+
}: DrawerViewportProps) => react_jsx_runtime12.JSX.Element;
|
|
935
|
+
};
|
|
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_runtime12.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;
|
|
954
|
+
};
|
|
955
|
+
};
|
|
956
|
+
} | {
|
|
957
|
+
[x: string]: {
|
|
958
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
959
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
960
|
+
legend?: tailwind_merge0.ClassNameValue;
|
|
961
|
+
};
|
|
962
|
+
};
|
|
963
|
+
} | {}, {
|
|
964
|
+
legend: string;
|
|
965
|
+
root: string;
|
|
966
|
+
}, undefined, {
|
|
967
|
+
[key: string]: {
|
|
968
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
969
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
970
|
+
legend?: tailwind_merge0.ClassNameValue;
|
|
971
|
+
};
|
|
972
|
+
};
|
|
973
|
+
} | {}, {
|
|
974
|
+
legend: string;
|
|
975
|
+
root: string;
|
|
976
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
977
|
+
legend: string;
|
|
978
|
+
root: string;
|
|
979
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
980
|
+
type FieldsetVariants = VariantProps<typeof fieldsetVariants>;
|
|
981
|
+
//#endregion
|
|
982
|
+
//#region src/components/fieldset/fieldset.d.ts
|
|
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_runtime12.JSX.Element) & {
|
|
989
|
+
Legend: ({
|
|
990
|
+
className,
|
|
991
|
+
...props
|
|
992
|
+
}: FieldsetLegendProps) => react_jsx_runtime12.JSX.Element;
|
|
993
|
+
Root: ({
|
|
685
994
|
className,
|
|
686
995
|
...props
|
|
687
|
-
}:
|
|
688
|
-
Root: /*elided*/any;
|
|
996
|
+
}: FieldsetProps) => react_jsx_runtime12.JSX.Element;
|
|
689
997
|
};
|
|
690
|
-
interface FieldLabelProps extends React.ComponentProps<typeof Field$1.Label> {}
|
|
691
|
-
interface FieldDescriptionProps extends React.ComponentProps<typeof Field$1.Description> {}
|
|
692
|
-
interface FieldControlProps extends React.ComponentProps<typeof Field$1.Control> {}
|
|
693
|
-
interface FieldErrorProps extends React.ComponentProps<typeof Field$1.Error> {}
|
|
694
998
|
//#endregion
|
|
695
999
|
//#region src/components/form/form.variants.d.ts
|
|
696
|
-
declare const formVariants:
|
|
1000
|
+
declare const formVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "form", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "form", unknown, unknown, undefined>>;
|
|
697
1001
|
type FormVariants = VariantProps<typeof formVariants>;
|
|
698
1002
|
//#endregion
|
|
699
1003
|
//#region src/components/form/form.d.ts
|
|
700
|
-
interface FormProps extends FormVariants, React.ComponentProps<
|
|
1004
|
+
interface FormProps extends FormVariants, React.ComponentProps<typeof Form$1> {}
|
|
701
1005
|
declare const Form: ({
|
|
702
1006
|
className,
|
|
703
1007
|
...props
|
|
704
|
-
}: FormProps) =>
|
|
1008
|
+
}: FormProps) => react_jsx_runtime12.JSX.Element;
|
|
705
1009
|
//#endregion
|
|
706
|
-
//#region src/components/
|
|
707
|
-
declare const
|
|
708
|
-
|
|
1010
|
+
//#region src/components/icon-button/icon-button.variants.d.ts
|
|
1011
|
+
declare const iconButtonVariants: tailwind_variants3.TVReturnType<{} | {
|
|
1012
|
+
isIconOnly: {
|
|
1013
|
+
true: tailwind_merge0.ClassNameValue | {
|
|
1014
|
+
base?: tailwind_merge0.ClassNameValue;
|
|
1015
|
+
};
|
|
1016
|
+
};
|
|
1017
|
+
size: {
|
|
1018
|
+
lg: tailwind_merge0.ClassNameValue | {
|
|
1019
|
+
base?: tailwind_merge0.ClassNameValue;
|
|
1020
|
+
};
|
|
1021
|
+
md: tailwind_merge0.ClassNameValue | {
|
|
1022
|
+
base?: tailwind_merge0.ClassNameValue;
|
|
1023
|
+
};
|
|
1024
|
+
sm: tailwind_merge0.ClassNameValue | {
|
|
1025
|
+
base?: tailwind_merge0.ClassNameValue;
|
|
1026
|
+
};
|
|
1027
|
+
};
|
|
1028
|
+
variant: {
|
|
1029
|
+
danger: tailwind_merge0.ClassNameValue | {
|
|
1030
|
+
base?: tailwind_merge0.ClassNameValue;
|
|
1031
|
+
};
|
|
1032
|
+
ghost: tailwind_merge0.ClassNameValue | {
|
|
1033
|
+
base?: tailwind_merge0.ClassNameValue;
|
|
1034
|
+
};
|
|
1035
|
+
outline: tailwind_merge0.ClassNameValue | {
|
|
1036
|
+
base?: tailwind_merge0.ClassNameValue;
|
|
1037
|
+
};
|
|
1038
|
+
primary: tailwind_merge0.ClassNameValue | {
|
|
1039
|
+
base?: tailwind_merge0.ClassNameValue;
|
|
1040
|
+
};
|
|
1041
|
+
secondary: tailwind_merge0.ClassNameValue | {
|
|
1042
|
+
base?: tailwind_merge0.ClassNameValue;
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
}, undefined, "icon-button", {
|
|
1046
|
+
isIconOnly: {
|
|
1047
|
+
true: string;
|
|
1048
|
+
};
|
|
1049
|
+
size: {
|
|
1050
|
+
lg: string;
|
|
1051
|
+
md: string;
|
|
1052
|
+
sm: string;
|
|
1053
|
+
};
|
|
1054
|
+
variant: {
|
|
1055
|
+
danger: string;
|
|
1056
|
+
ghost: string;
|
|
1057
|
+
outline: string;
|
|
1058
|
+
primary: string;
|
|
1059
|
+
secondary: string;
|
|
1060
|
+
};
|
|
1061
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
1062
|
+
isIconOnly: {
|
|
1063
|
+
true: string;
|
|
1064
|
+
};
|
|
1065
|
+
size: {
|
|
709
1066
|
lg: string;
|
|
710
1067
|
md: string;
|
|
711
1068
|
sm: string;
|
|
712
1069
|
};
|
|
713
|
-
|
|
714
|
-
|
|
1070
|
+
variant: {
|
|
1071
|
+
danger: string;
|
|
1072
|
+
ghost: string;
|
|
1073
|
+
outline: string;
|
|
1074
|
+
primary: string;
|
|
1075
|
+
secondary: string;
|
|
1076
|
+
};
|
|
1077
|
+
}, undefined, "button", {
|
|
1078
|
+
isIconOnly: {
|
|
1079
|
+
true: string;
|
|
1080
|
+
};
|
|
1081
|
+
size: {
|
|
715
1082
|
lg: string;
|
|
716
1083
|
md: string;
|
|
717
1084
|
sm: string;
|
|
718
1085
|
};
|
|
719
|
-
|
|
720
|
-
|
|
1086
|
+
variant: {
|
|
1087
|
+
danger: string;
|
|
1088
|
+
ghost: string;
|
|
1089
|
+
outline: string;
|
|
1090
|
+
primary: string;
|
|
1091
|
+
secondary: string;
|
|
1092
|
+
};
|
|
1093
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
1094
|
+
isIconOnly: {
|
|
1095
|
+
true: string;
|
|
1096
|
+
};
|
|
1097
|
+
size: {
|
|
721
1098
|
lg: string;
|
|
722
1099
|
md: string;
|
|
723
1100
|
sm: string;
|
|
724
1101
|
};
|
|
725
|
-
|
|
1102
|
+
variant: {
|
|
1103
|
+
danger: string;
|
|
1104
|
+
ghost: string;
|
|
1105
|
+
outline: string;
|
|
1106
|
+
primary: string;
|
|
1107
|
+
secondary: string;
|
|
1108
|
+
};
|
|
1109
|
+
}, undefined, "button", unknown, unknown, undefined>>>;
|
|
1110
|
+
type IconButtonVariants = VariantProps<typeof iconButtonVariants>;
|
|
1111
|
+
//#endregion
|
|
1112
|
+
//#region src/components/icon-button/icon-button.d.ts
|
|
1113
|
+
interface IconButtonProps extends IconButtonVariants, React.ComponentProps<typeof Button> {}
|
|
1114
|
+
declare const IconButton: ({
|
|
1115
|
+
className,
|
|
1116
|
+
variant,
|
|
1117
|
+
size,
|
|
1118
|
+
isIconOnly,
|
|
1119
|
+
...props
|
|
1120
|
+
}: IconButtonProps) => react_jsx_runtime12.JSX.Element;
|
|
1121
|
+
//#endregion
|
|
1122
|
+
//#region src/components/input/input.variants.d.ts
|
|
1123
|
+
declare const inputVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "input", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "input", unknown, unknown, undefined>>;
|
|
726
1124
|
type InputVariants = VariantProps<typeof inputVariants>;
|
|
727
1125
|
//#endregion
|
|
728
1126
|
//#region src/components/input/input.d.ts
|
|
729
|
-
interface InputProps extends InputVariants, Input$1
|
|
1127
|
+
interface InputProps extends InputVariants, React.ComponentProps<typeof Input$1> {}
|
|
730
1128
|
declare const Input: ({
|
|
731
1129
|
className,
|
|
732
|
-
inputSize,
|
|
733
1130
|
...props
|
|
734
|
-
}: InputProps) =>
|
|
1131
|
+
}: InputProps) => react_jsx_runtime12.JSX.Element;
|
|
735
1132
|
//#endregion
|
|
736
1133
|
//#region src/components/label/label.variants.d.ts
|
|
737
|
-
declare const labelVariants:
|
|
1134
|
+
declare const labelVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "label", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "label", unknown, unknown, undefined>>;
|
|
738
1135
|
type LabelVariants = VariantProps<typeof labelVariants>;
|
|
739
1136
|
//#endregion
|
|
740
1137
|
//#region src/components/label/label.d.ts
|
|
741
|
-
interface LabelProps extends LabelVariants, React.ComponentProps<
|
|
1138
|
+
interface LabelProps extends LabelVariants, React.ComponentProps<typeof Label$1> {}
|
|
742
1139
|
declare const Label: ({
|
|
743
1140
|
className,
|
|
744
1141
|
...props
|
|
745
|
-
}: LabelProps) =>
|
|
1142
|
+
}: LabelProps) => react_jsx_runtime12.JSX.Element;
|
|
746
1143
|
//#endregion
|
|
747
1144
|
//#region src/components/link/link.variants.d.ts
|
|
748
|
-
declare const linkVariants:
|
|
1145
|
+
declare const linkVariants: tailwind_variants3.TVReturnType<{
|
|
749
1146
|
variant: {
|
|
750
1147
|
"no-underline": string;
|
|
751
1148
|
underline: string;
|
|
@@ -755,7 +1152,7 @@ declare const linkVariants: tailwind_variants0.TVReturnType<{
|
|
|
755
1152
|
"no-underline": string;
|
|
756
1153
|
underline: string;
|
|
757
1154
|
};
|
|
758
|
-
}, undefined,
|
|
1155
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
759
1156
|
variant: {
|
|
760
1157
|
"no-underline": string;
|
|
761
1158
|
underline: string;
|
|
@@ -769,21 +1166,21 @@ declare const Link: ({
|
|
|
769
1166
|
className,
|
|
770
1167
|
variant,
|
|
771
1168
|
...props
|
|
772
|
-
}: LinkProps) =>
|
|
1169
|
+
}: LinkProps) => react_jsx_runtime12.JSX.Element;
|
|
773
1170
|
//#endregion
|
|
774
1171
|
//#region src/components/list/list.variants.d.ts
|
|
775
|
-
declare const listVariants:
|
|
1172
|
+
declare const listVariants: tailwind_variants3.TVReturnType<{
|
|
776
1173
|
[key: string]: {
|
|
777
1174
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
778
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
779
1175
|
root?: tailwind_merge0.ClassNameValue;
|
|
1176
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
780
1177
|
};
|
|
781
1178
|
};
|
|
782
1179
|
} | {
|
|
783
1180
|
[x: string]: {
|
|
784
1181
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
785
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
786
1182
|
root?: tailwind_merge0.ClassNameValue;
|
|
1183
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
787
1184
|
};
|
|
788
1185
|
};
|
|
789
1186
|
} | {}, {
|
|
@@ -792,14 +1189,14 @@ declare const listVariants: tailwind_variants0.TVReturnType<{
|
|
|
792
1189
|
}, undefined, {
|
|
793
1190
|
[key: string]: {
|
|
794
1191
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
795
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
796
1192
|
root?: tailwind_merge0.ClassNameValue;
|
|
1193
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
797
1194
|
};
|
|
798
1195
|
};
|
|
799
1196
|
} | {}, {
|
|
800
1197
|
item: string;
|
|
801
1198
|
root: string;
|
|
802
|
-
},
|
|
1199
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
803
1200
|
item: string;
|
|
804
1201
|
root: string;
|
|
805
1202
|
}, undefined, unknown, unknown, undefined>>;
|
|
@@ -807,27 +1204,29 @@ type ListVariants = VariantProps<typeof listVariants>;
|
|
|
807
1204
|
//#endregion
|
|
808
1205
|
//#region src/components/list/list.d.ts
|
|
809
1206
|
interface ListProps extends ListVariants, React.ComponentProps<"ul"> {}
|
|
810
|
-
|
|
811
|
-
|
|
1207
|
+
interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
1208
|
+
declare const _default$8: (({
|
|
1209
|
+
className,
|
|
1210
|
+
...props
|
|
1211
|
+
}: ListProps) => react_jsx_runtime12.JSX.Element) & {
|
|
1212
|
+
Item: ({
|
|
812
1213
|
className,
|
|
813
1214
|
...props
|
|
814
|
-
}:
|
|
815
|
-
Root:
|
|
816
|
-
Item: ({
|
|
1215
|
+
}: ListItemProps) => react_jsx_runtime12.JSX.Element;
|
|
1216
|
+
Root: ({
|
|
817
1217
|
className,
|
|
818
1218
|
...props
|
|
819
|
-
}:
|
|
1219
|
+
}: ListProps) => react_jsx_runtime12.JSX.Element;
|
|
820
1220
|
};
|
|
821
|
-
interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
822
1221
|
//#endregion
|
|
823
1222
|
//#region src/components/menu/menu.variants.d.ts
|
|
824
|
-
declare const menuVariants:
|
|
1223
|
+
declare const menuVariants: tailwind_variants3.TVReturnType<{
|
|
825
1224
|
[key: string]: {
|
|
826
1225
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
827
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
828
1226
|
root?: tailwind_merge0.ClassNameValue;
|
|
829
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
830
1227
|
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
1228
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1229
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
831
1230
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
832
1231
|
popup?: tailwind_merge0.ClassNameValue;
|
|
833
1232
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -845,10 +1244,10 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
845
1244
|
} | {
|
|
846
1245
|
[x: string]: {
|
|
847
1246
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
848
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
849
1247
|
root?: tailwind_merge0.ClassNameValue;
|
|
850
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
851
1248
|
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
1249
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1250
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
852
1251
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
853
1252
|
popup?: tailwind_merge0.ClassNameValue;
|
|
854
1253
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -883,10 +1282,10 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
883
1282
|
}, undefined, {
|
|
884
1283
|
[key: string]: {
|
|
885
1284
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
886
|
-
item?: tailwind_merge0.ClassNameValue;
|
|
887
1285
|
root?: tailwind_merge0.ClassNameValue;
|
|
888
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
889
1286
|
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
1287
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1288
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
890
1289
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
891
1290
|
popup?: tailwind_merge0.ClassNameValue;
|
|
892
1291
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -918,7 +1317,7 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
918
1317
|
submenu: string;
|
|
919
1318
|
submenuTrigger: string;
|
|
920
1319
|
trigger: string;
|
|
921
|
-
},
|
|
1320
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
922
1321
|
arrow: string;
|
|
923
1322
|
backdrop: string;
|
|
924
1323
|
checkboxItem: string;
|
|
@@ -939,90 +1338,92 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
939
1338
|
type MenuVariants = VariantProps<typeof menuVariants>;
|
|
940
1339
|
//#endregion
|
|
941
1340
|
//#region src/components/menu/menu.d.ts
|
|
942
|
-
interface MenuProps extends MenuVariants, Menu
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
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_runtime12.JSX.Element) & {
|
|
947
1360
|
Arrow: ({
|
|
948
1361
|
className,
|
|
1362
|
+
children,
|
|
949
1363
|
...props
|
|
950
|
-
}: MenuArrowProps) =>
|
|
1364
|
+
}: MenuArrowProps) => react_jsx_runtime12.JSX.Element;
|
|
951
1365
|
Backdrop: ({
|
|
952
1366
|
className,
|
|
953
1367
|
...props
|
|
954
|
-
}: MenuBackdropProps) =>
|
|
1368
|
+
}: MenuBackdropProps) => react_jsx_runtime12.JSX.Element;
|
|
955
1369
|
CheckboxItem: ({
|
|
956
1370
|
className,
|
|
957
1371
|
...props
|
|
958
|
-
}: MenuCheckboxItemProps) =>
|
|
1372
|
+
}: MenuCheckboxItemProps) => react_jsx_runtime12.JSX.Element;
|
|
959
1373
|
Group: ({
|
|
960
1374
|
className,
|
|
961
1375
|
...props
|
|
962
|
-
}: MenuGroupProps) =>
|
|
1376
|
+
}: MenuGroupProps) => react_jsx_runtime12.JSX.Element;
|
|
963
1377
|
GroupLabel: ({
|
|
964
1378
|
className,
|
|
965
1379
|
...props
|
|
966
|
-
}: MenuGroupLabelProps) =>
|
|
1380
|
+
}: MenuGroupLabelProps) => react_jsx_runtime12.JSX.Element;
|
|
967
1381
|
Item: ({
|
|
968
1382
|
className,
|
|
969
1383
|
...props
|
|
970
|
-
}: MenuItemProps) =>
|
|
1384
|
+
}: MenuItemProps) => react_jsx_runtime12.JSX.Element;
|
|
971
1385
|
Popup: ({
|
|
972
1386
|
className,
|
|
973
1387
|
...props
|
|
974
|
-
}: MenuPopupProps) =>
|
|
1388
|
+
}: MenuPopupProps) => react_jsx_runtime12.JSX.Element;
|
|
975
1389
|
Portal: ({
|
|
976
1390
|
className,
|
|
977
1391
|
...props
|
|
978
|
-
}: MenuPortalProps) =>
|
|
1392
|
+
}: MenuPortalProps) => react_jsx_runtime12.JSX.Element;
|
|
979
1393
|
Positioner: ({
|
|
980
1394
|
className,
|
|
981
1395
|
...props
|
|
982
|
-
}: MenuPositionerProps) =>
|
|
1396
|
+
}: MenuPositionerProps) => react_jsx_runtime12.JSX.Element;
|
|
983
1397
|
RadioGroup: ({
|
|
984
1398
|
className,
|
|
985
1399
|
...props
|
|
986
|
-
}: MenuRadioGroupProps) =>
|
|
1400
|
+
}: MenuRadioGroupProps) => react_jsx_runtime12.JSX.Element;
|
|
987
1401
|
RadioItem: ({
|
|
988
1402
|
className,
|
|
989
1403
|
...props
|
|
990
|
-
}: MenuRadioItemProps) =>
|
|
991
|
-
Root:
|
|
1404
|
+
}: MenuRadioItemProps) => react_jsx_runtime12.JSX.Element;
|
|
1405
|
+
Root: ({
|
|
1406
|
+
...props
|
|
1407
|
+
}: MenuProps) => react_jsx_runtime12.JSX.Element;
|
|
992
1408
|
Separator: ({
|
|
993
1409
|
className,
|
|
994
1410
|
...props
|
|
995
|
-
}: MenuSeparatorProps) =>
|
|
1411
|
+
}: MenuSeparatorProps) => react_jsx_runtime12.JSX.Element;
|
|
996
1412
|
Submenu: ({
|
|
997
1413
|
...props
|
|
998
|
-
}: MenuSubmenuProps) =>
|
|
1414
|
+
}: MenuSubmenuProps) => react_jsx_runtime12.JSX.Element;
|
|
999
1415
|
SubmenuTrigger: ({
|
|
1000
1416
|
className,
|
|
1001
1417
|
...props
|
|
1002
|
-
}: MenuSubmenuTriggerProps) =>
|
|
1418
|
+
}: MenuSubmenuTriggerProps) => react_jsx_runtime12.JSX.Element;
|
|
1003
1419
|
Trigger: ({
|
|
1004
1420
|
className,
|
|
1005
1421
|
...props
|
|
1006
|
-
}: MenuTriggerProps) =>
|
|
1422
|
+
}: MenuTriggerProps) => react_jsx_runtime12.JSX.Element;
|
|
1007
1423
|
};
|
|
1008
|
-
interface MenuTriggerProps extends MenuVariants, Menu$1.Trigger.Props {}
|
|
1009
|
-
interface MenuPortalProps extends MenuVariants, Menu$1.Portal.Props {}
|
|
1010
|
-
interface MenuBackdropProps extends MenuVariants, Menu$1.Backdrop.Props {}
|
|
1011
|
-
interface MenuPositionerProps extends MenuVariants, Menu$1.Positioner.Props {}
|
|
1012
|
-
interface MenuPopupProps extends MenuVariants, Menu$1.Popup.Props {}
|
|
1013
|
-
interface MenuArrowProps extends MenuVariants, Menu$1.Arrow.Props {}
|
|
1014
|
-
interface MenuItemProps extends MenuVariants, Menu$1.Item.Props {}
|
|
1015
|
-
interface MenuSeparatorProps extends MenuVariants, Menu$1.Separator.Props {}
|
|
1016
|
-
interface MenuGroupProps extends MenuVariants, Menu$1.Group.Props {}
|
|
1017
|
-
interface MenuGroupLabelProps extends MenuVariants, Menu$1.GroupLabel.Props {}
|
|
1018
|
-
interface MenuRadioGroupProps extends MenuVariants, Menu$1.RadioGroup.Props {}
|
|
1019
|
-
interface MenuRadioItemProps extends MenuVariants, Menu$1.RadioItem.Props {}
|
|
1020
|
-
interface MenuCheckboxItemProps extends MenuVariants, Menu$1.CheckboxItem.Props {}
|
|
1021
|
-
interface MenuSubmenuProps extends MenuVariants, Menu$1.SubmenuRoot.Props {}
|
|
1022
|
-
interface MenuSubmenuTriggerProps extends MenuVariants, Menu$1.SubmenuTrigger.Props {}
|
|
1023
1424
|
//#endregion
|
|
1024
1425
|
//#region src/components/meter/meter.variants.d.ts
|
|
1025
|
-
declare const meterVariants:
|
|
1426
|
+
declare const meterVariants: tailwind_variants3.TVReturnType<{
|
|
1026
1427
|
size: {
|
|
1027
1428
|
lg: {
|
|
1028
1429
|
root: string;
|
|
@@ -1086,7 +1487,7 @@ declare const meterVariants: tailwind_variants0.TVReturnType<{
|
|
|
1086
1487
|
root: string;
|
|
1087
1488
|
track: string;
|
|
1088
1489
|
value: string;
|
|
1089
|
-
},
|
|
1490
|
+
}, tailwind_variants3.TVReturnType<{
|
|
1090
1491
|
size: {
|
|
1091
1492
|
lg: {
|
|
1092
1493
|
root: string;
|
|
@@ -1122,39 +1523,43 @@ declare const meterVariants: tailwind_variants0.TVReturnType<{
|
|
|
1122
1523
|
type MeterVariants = VariantProps<typeof meterVariants>;
|
|
1123
1524
|
//#endregion
|
|
1124
1525
|
//#region src/components/meter/meter.d.ts
|
|
1125
|
-
interface MeterProps extends MeterVariants, Meter
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
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_runtime12.JSX.Element) & {
|
|
1133
1537
|
Indicator: ({
|
|
1134
1538
|
className,
|
|
1135
1539
|
...props
|
|
1136
|
-
}: MeterIndicatorProps) =>
|
|
1540
|
+
}: MeterIndicatorProps) => react_jsx_runtime12.JSX.Element;
|
|
1137
1541
|
Label: ({
|
|
1138
1542
|
className,
|
|
1139
1543
|
...props
|
|
1140
|
-
}: MeterLabelProps) =>
|
|
1141
|
-
Root:
|
|
1544
|
+
}: MeterLabelProps) => react_jsx_runtime12.JSX.Element;
|
|
1545
|
+
Root: ({
|
|
1546
|
+
className,
|
|
1547
|
+
size,
|
|
1548
|
+
variant,
|
|
1549
|
+
...props
|
|
1550
|
+
}: MeterProps) => react_jsx_runtime12.JSX.Element;
|
|
1142
1551
|
Track: ({
|
|
1143
1552
|
className,
|
|
1144
1553
|
...props
|
|
1145
|
-
}: MeterTrackProps) =>
|
|
1554
|
+
}: MeterTrackProps) => react_jsx_runtime12.JSX.Element;
|
|
1146
1555
|
Value: ({
|
|
1147
1556
|
className,
|
|
1148
1557
|
...props
|
|
1149
|
-
}: MeterValueProps) =>
|
|
1558
|
+
}: MeterValueProps) => react_jsx_runtime12.JSX.Element;
|
|
1150
1559
|
};
|
|
1151
|
-
interface MeterLabelProps extends Meter$1.Label.Props {}
|
|
1152
|
-
interface MeterValueProps extends Meter$1.Value.Props {}
|
|
1153
|
-
interface MeterTrackProps extends Meter$1.Track.Props {}
|
|
1154
|
-
interface MeterIndicatorProps extends Meter$1.Indicator.Props {}
|
|
1155
1560
|
//#endregion
|
|
1156
1561
|
//#region src/components/navbar/navbar.variants.d.ts
|
|
1157
|
-
declare const navbarVariants:
|
|
1562
|
+
declare const navbarVariants: tailwind_variants3.TVReturnType<{
|
|
1158
1563
|
[key: string]: {
|
|
1159
1564
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1160
1565
|
content?: tailwind_merge0.ClassNameValue;
|
|
@@ -1211,7 +1616,7 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1211
1616
|
menuItem: string;
|
|
1212
1617
|
root: string;
|
|
1213
1618
|
toggle: string;
|
|
1214
|
-
},
|
|
1619
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
1215
1620
|
container: string;
|
|
1216
1621
|
content: string;
|
|
1217
1622
|
list: string;
|
|
@@ -1228,80 +1633,76 @@ interface NavbarProps extends NavbarVariants, React.ComponentProps<"header"> {
|
|
|
1228
1633
|
isOpen?: boolean;
|
|
1229
1634
|
onOpenChange?: (open: boolean) => void;
|
|
1230
1635
|
}
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
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_runtime12.JSX.Element) & {
|
|
1239
1651
|
Container: ({
|
|
1240
1652
|
className,
|
|
1241
1653
|
...props
|
|
1242
|
-
}: NavbarContainerProps) =>
|
|
1654
|
+
}: NavbarContainerProps) => react_jsx_runtime12.JSX.Element;
|
|
1243
1655
|
Content: ({
|
|
1244
1656
|
className,
|
|
1245
1657
|
...props
|
|
1246
|
-
}: NavbarContentProps) =>
|
|
1658
|
+
}: NavbarContentProps) => react_jsx_runtime12.JSX.Element;
|
|
1247
1659
|
List: ({
|
|
1248
1660
|
className,
|
|
1249
1661
|
...props
|
|
1250
|
-
}: NavbarListProps) =>
|
|
1662
|
+
}: NavbarListProps) => react_jsx_runtime12.JSX.Element;
|
|
1251
1663
|
ListItem: ({
|
|
1252
1664
|
className,
|
|
1253
1665
|
...props
|
|
1254
|
-
}: NavbarListItemProps) =>
|
|
1255
|
-
Toggle: ({
|
|
1256
|
-
className,
|
|
1257
|
-
...props
|
|
1258
|
-
}: NavbarToggleProps) => react_jsx_runtime0.JSX.Element;
|
|
1666
|
+
}: NavbarListItemProps) => react_jsx_runtime12.JSX.Element;
|
|
1259
1667
|
Menu: ({
|
|
1260
1668
|
className,
|
|
1669
|
+
header,
|
|
1261
1670
|
...props
|
|
1262
|
-
}: NavbarMenuProps) =>
|
|
1671
|
+
}: NavbarMenuProps) => react_jsx_runtime12.JSX.Element;
|
|
1263
1672
|
MenuItem: ({
|
|
1264
1673
|
className,
|
|
1265
1674
|
...props
|
|
1266
|
-
}: NavbarMenuItemProps) =>
|
|
1675
|
+
}: NavbarMenuItemProps) => react_jsx_runtime12.JSX.Element;
|
|
1676
|
+
Root: ({
|
|
1677
|
+
className,
|
|
1678
|
+
isOpen,
|
|
1679
|
+
onOpenChange,
|
|
1680
|
+
...props
|
|
1681
|
+
}: NavbarProps) => react_jsx_runtime12.JSX.Element;
|
|
1682
|
+
Toggle: ({
|
|
1683
|
+
className,
|
|
1684
|
+
...props
|
|
1685
|
+
}: NavbarToggleProps) => react_jsx_runtime12.JSX.Element;
|
|
1267
1686
|
};
|
|
1268
|
-
interface NavbarContainerProps extends React.ComponentProps<"nav"> {}
|
|
1269
|
-
interface NavbarContentProps extends React.ComponentProps<"div"> {}
|
|
1270
|
-
interface NavbarListProps extends React.ComponentProps<"ul"> {}
|
|
1271
|
-
interface NavbarListItemProps extends React.ComponentProps<"li"> {}
|
|
1272
|
-
interface NavbarToggleProps extends React.ComponentProps<"button"> {}
|
|
1273
|
-
interface NavbarMenuProps extends React.ComponentProps<"ul"> {}
|
|
1274
|
-
interface NavbarMenuItemProps extends React.ComponentProps<"li"> {}
|
|
1275
1687
|
//#endregion
|
|
1276
|
-
//#region src/components/
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
};
|
|
1282
|
-
}, undefined, "separator", {
|
|
1283
|
-
orientation: {
|
|
1284
|
-
horizontal: string;
|
|
1285
|
-
vertical: string;
|
|
1286
|
-
};
|
|
1287
|
-
}, undefined, tailwind_variants0.TVReturnType<{
|
|
1288
|
-
orientation: {
|
|
1289
|
-
horizontal: string;
|
|
1290
|
-
vertical: string;
|
|
1291
|
-
};
|
|
1292
|
-
}, undefined, "separator", unknown, unknown, undefined>>;
|
|
1293
|
-
type SeparatorVariants = VariantProps<typeof separatorVariants>;
|
|
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_runtime12.JSX.Element;
|
|
1294
1693
|
//#endregion
|
|
1295
|
-
//#region src/components/
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1694
|
+
//#region src/components/popover/popover.variants.d.ts
|
|
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: ({
|
|
1300
1701
|
...props
|
|
1301
|
-
}:
|
|
1702
|
+
}: PopoverProps) => react_jsx_runtime12.JSX.Element;
|
|
1302
1703
|
//#endregion
|
|
1303
|
-
//#region src/components/
|
|
1304
|
-
declare const
|
|
1704
|
+
//#region src/components/progress/progress.variants.d.ts
|
|
1705
|
+
declare const progressVariants: tailwind_variants3.TVReturnType<{
|
|
1305
1706
|
size: {
|
|
1306
1707
|
lg: {
|
|
1307
1708
|
root: string;
|
|
@@ -1313,9 +1714,26 @@ declare const switchVariants: tailwind_variants0.TVReturnType<{
|
|
|
1313
1714
|
root: string;
|
|
1314
1715
|
};
|
|
1315
1716
|
};
|
|
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;
|
|
1729
|
+
};
|
|
1730
|
+
};
|
|
1316
1731
|
}, {
|
|
1732
|
+
indicator: string;
|
|
1733
|
+
label: string;
|
|
1317
1734
|
root: string;
|
|
1318
|
-
|
|
1735
|
+
track: string;
|
|
1736
|
+
value: string;
|
|
1319
1737
|
}, undefined, {
|
|
1320
1738
|
size: {
|
|
1321
1739
|
lg: {
|
|
@@ -1328,10 +1746,27 @@ declare const switchVariants: tailwind_variants0.TVReturnType<{
|
|
|
1328
1746
|
root: string;
|
|
1329
1747
|
};
|
|
1330
1748
|
};
|
|
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
|
+
};
|
|
1331
1763
|
}, {
|
|
1764
|
+
indicator: string;
|
|
1765
|
+
label: string;
|
|
1332
1766
|
root: string;
|
|
1333
|
-
|
|
1334
|
-
|
|
1767
|
+
track: string;
|
|
1768
|
+
value: string;
|
|
1769
|
+
}, tailwind_variants3.TVReturnType<{
|
|
1335
1770
|
size: {
|
|
1336
1771
|
lg: {
|
|
1337
1772
|
root: string;
|
|
@@ -1343,169 +1778,745 @@ declare const switchVariants: tailwind_variants0.TVReturnType<{
|
|
|
1343
1778
|
root: string;
|
|
1344
1779
|
};
|
|
1345
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
|
+
};
|
|
1346
1795
|
}, {
|
|
1796
|
+
indicator: string;
|
|
1797
|
+
label: string;
|
|
1347
1798
|
root: string;
|
|
1348
|
-
|
|
1799
|
+
track: string;
|
|
1800
|
+
value: string;
|
|
1349
1801
|
}, undefined, unknown, unknown, undefined>>;
|
|
1350
|
-
type
|
|
1802
|
+
type ProgressVariants = VariantProps<typeof progressVariants>;
|
|
1351
1803
|
//#endregion
|
|
1352
|
-
//#region src/components/
|
|
1353
|
-
interface
|
|
1354
|
-
|
|
1355
|
-
|
|
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_runtime12.JSX.Element) & {
|
|
1816
|
+
Indicator: ({
|
|
1817
|
+
className,
|
|
1818
|
+
...props
|
|
1819
|
+
}: ProgressIndicatorProps) => react_jsx_runtime12.JSX.Element;
|
|
1820
|
+
Label: ({
|
|
1821
|
+
className,
|
|
1822
|
+
...props
|
|
1823
|
+
}: ProgressLabelProps) => react_jsx_runtime12.JSX.Element;
|
|
1824
|
+
Root: ({
|
|
1356
1825
|
className,
|
|
1826
|
+
variant,
|
|
1357
1827
|
size,
|
|
1358
1828
|
...props
|
|
1359
|
-
}:
|
|
1360
|
-
|
|
1829
|
+
}: ProgressProps) => react_jsx_runtime12.JSX.Element;
|
|
1830
|
+
Track: ({
|
|
1831
|
+
className,
|
|
1832
|
+
...props
|
|
1833
|
+
}: ProgressTrackProps) => react_jsx_runtime12.JSX.Element;
|
|
1834
|
+
Value: ({
|
|
1361
1835
|
className,
|
|
1362
1836
|
...props
|
|
1363
|
-
}:
|
|
1364
|
-
Root: /*elided*/any;
|
|
1837
|
+
}: ProgressValueProps) => react_jsx_runtime12.JSX.Element;
|
|
1365
1838
|
};
|
|
1366
1839
|
//#endregion
|
|
1367
|
-
//#region src/components/
|
|
1368
|
-
declare const
|
|
1840
|
+
//#region src/components/radio/radio.variants.d.ts
|
|
1841
|
+
declare const radioVariants: tailwind_variants3.TVReturnType<{
|
|
1369
1842
|
[key: string]: {
|
|
1370
1843
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1371
|
-
panel?: tailwind_merge0.ClassNameValue;
|
|
1372
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
1373
1844
|
indicator?: tailwind_merge0.ClassNameValue;
|
|
1374
|
-
|
|
1375
|
-
tab?: tailwind_merge0.ClassNameValue;
|
|
1845
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1376
1846
|
};
|
|
1377
1847
|
};
|
|
1378
1848
|
} | {
|
|
1379
1849
|
[x: string]: {
|
|
1380
1850
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1381
|
-
panel?: tailwind_merge0.ClassNameValue;
|
|
1382
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
1383
1851
|
indicator?: tailwind_merge0.ClassNameValue;
|
|
1384
|
-
|
|
1385
|
-
tab?: tailwind_merge0.ClassNameValue;
|
|
1852
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1386
1853
|
};
|
|
1387
1854
|
};
|
|
1388
1855
|
} | {}, {
|
|
1389
1856
|
indicator: string;
|
|
1390
|
-
list: string;
|
|
1391
|
-
panel: string;
|
|
1392
1857
|
root: string;
|
|
1393
|
-
tab: string;
|
|
1394
1858
|
}, undefined, {
|
|
1395
1859
|
[key: string]: {
|
|
1396
1860
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1397
|
-
panel?: tailwind_merge0.ClassNameValue;
|
|
1398
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
1399
1861
|
indicator?: tailwind_merge0.ClassNameValue;
|
|
1400
|
-
|
|
1401
|
-
tab?: tailwind_merge0.ClassNameValue;
|
|
1862
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1402
1863
|
};
|
|
1403
1864
|
};
|
|
1404
1865
|
} | {}, {
|
|
1405
1866
|
indicator: string;
|
|
1406
|
-
list: string;
|
|
1407
|
-
panel: string;
|
|
1408
1867
|
root: string;
|
|
1409
|
-
|
|
1410
|
-
}, tailwind_variants0.TVReturnType<unknown, {
|
|
1868
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
1411
1869
|
indicator: string;
|
|
1412
|
-
list: string;
|
|
1413
|
-
panel: string;
|
|
1414
1870
|
root: string;
|
|
1415
|
-
tab: string;
|
|
1416
1871
|
}, undefined, unknown, unknown, undefined>>;
|
|
1417
|
-
type
|
|
1872
|
+
type RadioVariants = VariantProps<typeof radioVariants>;
|
|
1418
1873
|
//#endregion
|
|
1419
|
-
//#region src/components/
|
|
1420
|
-
interface
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
List: ({
|
|
1427
|
-
className,
|
|
1428
|
-
...props
|
|
1429
|
-
}: TabsListProps) => react_jsx_runtime0.JSX.Element;
|
|
1430
|
-
Tab: ({
|
|
1431
|
-
className,
|
|
1432
|
-
...props
|
|
1433
|
-
}: TabsTabProps) => react_jsx_runtime0.JSX.Element;
|
|
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_runtime12.JSX.Element) & {
|
|
1434
1881
|
Indicator: ({
|
|
1435
1882
|
className,
|
|
1436
1883
|
...props
|
|
1437
|
-
}:
|
|
1438
|
-
|
|
1884
|
+
}: RadioIndicatorProps) => react_jsx_runtime12.JSX.Element;
|
|
1885
|
+
Root: ({
|
|
1439
1886
|
className,
|
|
1440
1887
|
...props
|
|
1441
|
-
}:
|
|
1442
|
-
Root: /*elided*/any;
|
|
1888
|
+
}: RadioProps) => react_jsx_runtime12.JSX.Element;
|
|
1443
1889
|
};
|
|
1444
|
-
interface TabsListProps extends Tabs$1.List.Props {}
|
|
1445
|
-
interface TabsTabProps extends Tabs$1.Tab.Props {}
|
|
1446
|
-
interface TabsIndicatorProps extends Tabs$1.Indicator.Props {}
|
|
1447
|
-
interface TabsPanelProps extends Tabs$1.Panel.Props {}
|
|
1448
1890
|
//#endregion
|
|
1449
|
-
//#region src/components/
|
|
1450
|
-
declare const
|
|
1451
|
-
type
|
|
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>;
|
|
1452
1894
|
//#endregion
|
|
1453
|
-
//#region src/components/
|
|
1454
|
-
interface
|
|
1455
|
-
declare const
|
|
1895
|
+
//#region src/components/radio-group/radio-group.d.ts
|
|
1896
|
+
interface RadioGroupProps extends RadioGroupVariants, RadioGroup$1.Props {}
|
|
1897
|
+
declare const RadioGroup: ({
|
|
1456
1898
|
className,
|
|
1457
1899
|
...props
|
|
1458
|
-
}:
|
|
1900
|
+
}: RadioGroupProps) => react_jsx_runtime12.JSX.Element;
|
|
1459
1901
|
//#endregion
|
|
1460
|
-
//#region src/components/
|
|
1461
|
-
declare const
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
base?: tailwind_merge0.ClassNameValue;
|
|
1902
|
+
//#region src/components/select/select.variants.d.ts
|
|
1903
|
+
declare const selectVariants: tailwind_variants3.TVReturnType<{
|
|
1904
|
+
[key: string]: {
|
|
1905
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1906
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1907
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1908
|
+
label?: tailwind_merge0.ClassNameValue;
|
|
1909
|
+
option?: tailwind_merge0.ClassNameValue;
|
|
1910
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
1911
|
+
error?: tailwind_merge0.ClassNameValue;
|
|
1471
1912
|
};
|
|
1472
1913
|
};
|
|
1473
|
-
}
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
sm: string;
|
|
1484
|
-
};
|
|
1485
|
-
}, undefined, "input", {
|
|
1486
|
-
inputSize: {
|
|
1487
|
-
lg: string;
|
|
1488
|
-
md: string;
|
|
1489
|
-
sm: string;
|
|
1914
|
+
} | {
|
|
1915
|
+
[x: string]: {
|
|
1916
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1917
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1918
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1919
|
+
label?: tailwind_merge0.ClassNameValue;
|
|
1920
|
+
option?: tailwind_merge0.ClassNameValue;
|
|
1921
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
1922
|
+
error?: tailwind_merge0.ClassNameValue;
|
|
1923
|
+
};
|
|
1490
1924
|
};
|
|
1491
|
-
}
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1925
|
+
} | {}, {
|
|
1926
|
+
control: string;
|
|
1927
|
+
description: string;
|
|
1928
|
+
error: string;
|
|
1929
|
+
label: string;
|
|
1930
|
+
option: string;
|
|
1931
|
+
root: string;
|
|
1932
|
+
}, undefined, {
|
|
1933
|
+
[key: string]: {
|
|
1934
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1935
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1936
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1937
|
+
label?: tailwind_merge0.ClassNameValue;
|
|
1938
|
+
option?: tailwind_merge0.ClassNameValue;
|
|
1939
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
1940
|
+
error?: tailwind_merge0.ClassNameValue;
|
|
1941
|
+
};
|
|
1496
1942
|
};
|
|
1497
|
-
}
|
|
1943
|
+
} | {}, {
|
|
1944
|
+
control: string;
|
|
1945
|
+
description: string;
|
|
1946
|
+
error: string;
|
|
1947
|
+
label: string;
|
|
1948
|
+
option: string;
|
|
1949
|
+
root: string;
|
|
1950
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
1951
|
+
control: string;
|
|
1952
|
+
description: string;
|
|
1953
|
+
error: string;
|
|
1954
|
+
label: string;
|
|
1955
|
+
option: string;
|
|
1956
|
+
root: string;
|
|
1957
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
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_runtime12.JSX.Element) & {
|
|
1971
|
+
Control: ({
|
|
1972
|
+
className,
|
|
1973
|
+
...props
|
|
1974
|
+
}: SelectControlProps) => react_jsx_runtime12.JSX.Element;
|
|
1975
|
+
Description: ({
|
|
1976
|
+
className,
|
|
1977
|
+
...props
|
|
1978
|
+
}: SelectDescriptionProps) => react_jsx_runtime12.JSX.Element;
|
|
1979
|
+
Error: ({
|
|
1980
|
+
className,
|
|
1981
|
+
...props
|
|
1982
|
+
}: SelectErrorProps) => react_jsx_runtime12.JSX.Element;
|
|
1983
|
+
Label: ({
|
|
1984
|
+
className,
|
|
1985
|
+
...props
|
|
1986
|
+
}: SelectLabelProps) => react_jsx_runtime12.JSX.Element;
|
|
1987
|
+
Option: ({
|
|
1988
|
+
className,
|
|
1989
|
+
...props
|
|
1990
|
+
}: SelectOptionProps) => react_jsx_runtime12.JSX.Element;
|
|
1991
|
+
Root: ({
|
|
1992
|
+
className,
|
|
1993
|
+
...props
|
|
1994
|
+
}: SelectProps) => react_jsx_runtime12.JSX.Element;
|
|
1995
|
+
};
|
|
1996
|
+
//#endregion
|
|
1997
|
+
//#region src/components/separator/separator.variants.d.ts
|
|
1998
|
+
declare const separatorVariants: tailwind_variants3.TVReturnType<{
|
|
1999
|
+
orientation: {
|
|
2000
|
+
horizontal: string;
|
|
2001
|
+
vertical: string;
|
|
2002
|
+
};
|
|
2003
|
+
}, undefined, "separator", {
|
|
2004
|
+
orientation: {
|
|
2005
|
+
horizontal: string;
|
|
2006
|
+
vertical: string;
|
|
2007
|
+
};
|
|
2008
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
2009
|
+
orientation: {
|
|
2010
|
+
horizontal: string;
|
|
2011
|
+
vertical: string;
|
|
2012
|
+
};
|
|
2013
|
+
}, undefined, "separator", unknown, unknown, undefined>>;
|
|
2014
|
+
type SeparatorVariants = VariantProps<typeof separatorVariants>;
|
|
2015
|
+
//#endregion
|
|
2016
|
+
//#region src/components/separator/separator.d.ts
|
|
2017
|
+
interface SeparatorProps extends SeparatorVariants, Separator$1.Props {}
|
|
2018
|
+
declare const Separator: ({
|
|
2019
|
+
className,
|
|
2020
|
+
orientation,
|
|
2021
|
+
...props
|
|
2022
|
+
}: SeparatorProps) => react_jsx_runtime12.JSX.Element;
|
|
2023
|
+
//#endregion
|
|
2024
|
+
//#region src/components/sidebar/sidebar.variants.d.ts
|
|
2025
|
+
declare const sidebarVariants: tailwind_variants3.TVReturnType<{
|
|
2026
|
+
[key: string]: {
|
|
2027
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2028
|
+
content?: tailwind_merge0.ClassNameValue;
|
|
2029
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2030
|
+
footer?: tailwind_merge0.ClassNameValue;
|
|
2031
|
+
header?: tailwind_merge0.ClassNameValue;
|
|
2032
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
2033
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
2034
|
+
outlet?: tailwind_merge0.ClassNameValue;
|
|
2035
|
+
};
|
|
2036
|
+
};
|
|
2037
|
+
} | {
|
|
2038
|
+
[x: string]: {
|
|
2039
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2040
|
+
content?: tailwind_merge0.ClassNameValue;
|
|
2041
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2042
|
+
footer?: tailwind_merge0.ClassNameValue;
|
|
2043
|
+
header?: tailwind_merge0.ClassNameValue;
|
|
2044
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
2045
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
2046
|
+
outlet?: tailwind_merge0.ClassNameValue;
|
|
2047
|
+
};
|
|
2048
|
+
};
|
|
2049
|
+
} | {}, {
|
|
2050
|
+
content: string;
|
|
2051
|
+
footer: string;
|
|
2052
|
+
header: string;
|
|
2053
|
+
outlet: string;
|
|
2054
|
+
panel: string;
|
|
2055
|
+
root: string;
|
|
2056
|
+
trigger: string;
|
|
2057
|
+
}, undefined, {
|
|
2058
|
+
[key: string]: {
|
|
2059
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2060
|
+
content?: tailwind_merge0.ClassNameValue;
|
|
2061
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2062
|
+
footer?: tailwind_merge0.ClassNameValue;
|
|
2063
|
+
header?: tailwind_merge0.ClassNameValue;
|
|
2064
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
2065
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
2066
|
+
outlet?: tailwind_merge0.ClassNameValue;
|
|
2067
|
+
};
|
|
2068
|
+
};
|
|
2069
|
+
} | {}, {
|
|
2070
|
+
content: string;
|
|
2071
|
+
footer: string;
|
|
2072
|
+
header: string;
|
|
2073
|
+
outlet: string;
|
|
2074
|
+
panel: string;
|
|
2075
|
+
root: string;
|
|
2076
|
+
trigger: string;
|
|
2077
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
2078
|
+
content: string;
|
|
2079
|
+
footer: string;
|
|
2080
|
+
header: string;
|
|
2081
|
+
outlet: string;
|
|
2082
|
+
panel: string;
|
|
2083
|
+
root: string;
|
|
2084
|
+
trigger: string;
|
|
2085
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
2086
|
+
type SidebarVariants = VariantProps<typeof sidebarVariants>;
|
|
2087
|
+
//#endregion
|
|
2088
|
+
//#region src/components/sidebar/sidebar.d.ts
|
|
2089
|
+
interface SidebarProps extends SidebarVariants, React$1.ComponentProps<"div"> {
|
|
2090
|
+
isOpen?: boolean;
|
|
2091
|
+
onOpenChange?: (isOpen: boolean) => void;
|
|
2092
|
+
}
|
|
2093
|
+
interface SidebarPanelProps extends React$1.ComponentProps<"aside"> {}
|
|
2094
|
+
interface SidebarHeaderProps extends React$1.ComponentProps<"header"> {}
|
|
2095
|
+
interface SidebarContentProps extends React$1.ComponentProps<"div"> {}
|
|
2096
|
+
interface SidebarFooterProps extends React$1.ComponentProps<"footer"> {}
|
|
2097
|
+
interface SidebarTriggerProps extends React$1.ComponentProps<"button"> {}
|
|
2098
|
+
interface SidebarOutletProps extends React$1.ComponentProps<"div"> {}
|
|
2099
|
+
declare const _default$15: (({
|
|
2100
|
+
className,
|
|
2101
|
+
isOpen,
|
|
2102
|
+
onOpenChange,
|
|
2103
|
+
...props
|
|
2104
|
+
}: SidebarProps) => react_jsx_runtime12.JSX.Element) & {
|
|
2105
|
+
Content: ({
|
|
2106
|
+
className,
|
|
2107
|
+
...props
|
|
2108
|
+
}: SidebarContentProps) => react_jsx_runtime12.JSX.Element;
|
|
2109
|
+
Footer: ({
|
|
2110
|
+
className,
|
|
2111
|
+
...props
|
|
2112
|
+
}: SidebarFooterProps) => react_jsx_runtime12.JSX.Element;
|
|
2113
|
+
Header: ({
|
|
2114
|
+
className,
|
|
2115
|
+
...props
|
|
2116
|
+
}: SidebarHeaderProps) => react_jsx_runtime12.JSX.Element;
|
|
2117
|
+
Outlet: ({
|
|
2118
|
+
className,
|
|
2119
|
+
...props
|
|
2120
|
+
}: SidebarOutletProps) => react_jsx_runtime12.JSX.Element;
|
|
2121
|
+
Panel: ({
|
|
2122
|
+
className,
|
|
2123
|
+
...props
|
|
2124
|
+
}: SidebarPanelProps) => react_jsx_runtime12.JSX.Element;
|
|
2125
|
+
Root: ({
|
|
2126
|
+
className,
|
|
2127
|
+
isOpen,
|
|
2128
|
+
onOpenChange,
|
|
2129
|
+
...props
|
|
2130
|
+
}: SidebarProps) => react_jsx_runtime12.JSX.Element;
|
|
2131
|
+
Trigger: ({
|
|
2132
|
+
className,
|
|
2133
|
+
children,
|
|
2134
|
+
...props
|
|
2135
|
+
}: SidebarTriggerProps) => react_jsx_runtime12.JSX.Element;
|
|
2136
|
+
};
|
|
2137
|
+
//#endregion
|
|
2138
|
+
//#region src/components/slider/slider.variants.d.ts
|
|
2139
|
+
declare const sliderVariants: tailwind_variants3.TVReturnType<{
|
|
2140
|
+
[key: string]: {
|
|
2141
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2142
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
2143
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2144
|
+
track?: tailwind_merge0.ClassNameValue;
|
|
2145
|
+
value?: tailwind_merge0.ClassNameValue;
|
|
2146
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
2147
|
+
thumb?: tailwind_merge0.ClassNameValue;
|
|
2148
|
+
};
|
|
2149
|
+
};
|
|
2150
|
+
} | {
|
|
2151
|
+
[x: string]: {
|
|
2152
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2153
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
2154
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2155
|
+
track?: tailwind_merge0.ClassNameValue;
|
|
2156
|
+
value?: tailwind_merge0.ClassNameValue;
|
|
2157
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
2158
|
+
thumb?: tailwind_merge0.ClassNameValue;
|
|
2159
|
+
};
|
|
2160
|
+
};
|
|
2161
|
+
} | {}, {
|
|
2162
|
+
control: string;
|
|
2163
|
+
indicator: string;
|
|
2164
|
+
root: string;
|
|
2165
|
+
thumb: string;
|
|
2166
|
+
track: string;
|
|
2167
|
+
value: string;
|
|
2168
|
+
}, undefined, {
|
|
2169
|
+
[key: string]: {
|
|
2170
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2171
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
2172
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2173
|
+
track?: tailwind_merge0.ClassNameValue;
|
|
2174
|
+
value?: tailwind_merge0.ClassNameValue;
|
|
2175
|
+
control?: tailwind_merge0.ClassNameValue;
|
|
2176
|
+
thumb?: tailwind_merge0.ClassNameValue;
|
|
2177
|
+
};
|
|
2178
|
+
};
|
|
2179
|
+
} | {}, {
|
|
2180
|
+
control: string;
|
|
2181
|
+
indicator: string;
|
|
2182
|
+
root: string;
|
|
2183
|
+
thumb: string;
|
|
2184
|
+
track: string;
|
|
2185
|
+
value: string;
|
|
2186
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
2187
|
+
control: string;
|
|
2188
|
+
indicator: string;
|
|
2189
|
+
root: string;
|
|
2190
|
+
thumb: string;
|
|
2191
|
+
track: string;
|
|
2192
|
+
value: string;
|
|
2193
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
2194
|
+
type SliderVariants = VariantProps<typeof sliderVariants>;
|
|
2195
|
+
//#endregion
|
|
2196
|
+
//#region src/components/slider/slider.d.ts
|
|
2197
|
+
interface SliderProps extends SliderVariants, Slider.Root.Props {}
|
|
2198
|
+
declare const _default$16: (({
|
|
2199
|
+
className,
|
|
2200
|
+
...props
|
|
2201
|
+
}: SliderProps) => react_jsx_runtime12.JSX.Element) & {
|
|
2202
|
+
Control: ({
|
|
2203
|
+
className,
|
|
2204
|
+
...props
|
|
2205
|
+
}: Slider.Control.Props) => react_jsx_runtime12.JSX.Element;
|
|
2206
|
+
Indicator: ({
|
|
2207
|
+
className,
|
|
2208
|
+
...props
|
|
2209
|
+
}: Slider.Indicator.Props) => react_jsx_runtime12.JSX.Element;
|
|
2210
|
+
Root: ({
|
|
2211
|
+
className,
|
|
2212
|
+
...props
|
|
2213
|
+
}: SliderProps) => react_jsx_runtime12.JSX.Element;
|
|
2214
|
+
Thumb: ({
|
|
2215
|
+
className,
|
|
2216
|
+
...props
|
|
2217
|
+
}: Slider.Thumb.Props) => react_jsx_runtime12.JSX.Element;
|
|
2218
|
+
Track: ({
|
|
2219
|
+
className,
|
|
2220
|
+
...props
|
|
2221
|
+
}: Slider.Track.Props) => react_jsx_runtime12.JSX.Element;
|
|
2222
|
+
Value: ({
|
|
2223
|
+
className,
|
|
2224
|
+
...props
|
|
2225
|
+
}: Slider.Value.Props) => react_jsx_runtime12.JSX.Element;
|
|
2226
|
+
};
|
|
2227
|
+
//#endregion
|
|
2228
|
+
//#region src/components/switch/switch.variants.d.ts
|
|
2229
|
+
declare const switchVariants: tailwind_variants3.TVReturnType<{
|
|
2230
|
+
size: {
|
|
2231
|
+
lg: {
|
|
2232
|
+
root: string;
|
|
2233
|
+
};
|
|
2234
|
+
md: {
|
|
2235
|
+
root: string;
|
|
2236
|
+
};
|
|
2237
|
+
sm: {
|
|
2238
|
+
root: string;
|
|
2239
|
+
};
|
|
2240
|
+
};
|
|
2241
|
+
}, {
|
|
2242
|
+
root: string;
|
|
2243
|
+
thumb: string;
|
|
2244
|
+
}, undefined, {
|
|
2245
|
+
size: {
|
|
2246
|
+
lg: {
|
|
2247
|
+
root: string;
|
|
2248
|
+
};
|
|
2249
|
+
md: {
|
|
2250
|
+
root: string;
|
|
2251
|
+
};
|
|
2252
|
+
sm: {
|
|
2253
|
+
root: string;
|
|
2254
|
+
};
|
|
2255
|
+
};
|
|
2256
|
+
}, {
|
|
2257
|
+
root: string;
|
|
2258
|
+
thumb: string;
|
|
2259
|
+
}, tailwind_variants3.TVReturnType<{
|
|
2260
|
+
size: {
|
|
2261
|
+
lg: {
|
|
2262
|
+
root: string;
|
|
2263
|
+
};
|
|
2264
|
+
md: {
|
|
2265
|
+
root: string;
|
|
2266
|
+
};
|
|
2267
|
+
sm: {
|
|
2268
|
+
root: string;
|
|
2269
|
+
};
|
|
2270
|
+
};
|
|
2271
|
+
}, {
|
|
2272
|
+
root: string;
|
|
2273
|
+
thumb: string;
|
|
2274
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
2275
|
+
type SwitchVariants = VariantProps<typeof switchVariants>;
|
|
2276
|
+
//#endregion
|
|
2277
|
+
//#region src/components/switch/switch.d.ts
|
|
2278
|
+
interface SwitchProps extends SwitchVariants, Switch.Root.Props {}
|
|
2279
|
+
declare const _default$17: (({
|
|
2280
|
+
className,
|
|
2281
|
+
size,
|
|
2282
|
+
...props
|
|
2283
|
+
}: SwitchProps) => react_jsx_runtime12.JSX.Element) & {
|
|
2284
|
+
Root: ({
|
|
2285
|
+
className,
|
|
2286
|
+
size,
|
|
2287
|
+
...props
|
|
2288
|
+
}: SwitchProps) => react_jsx_runtime12.JSX.Element;
|
|
2289
|
+
Thumb: ({
|
|
2290
|
+
className,
|
|
2291
|
+
...props
|
|
2292
|
+
}: Switch.Thumb.Props) => react_jsx_runtime12.JSX.Element;
|
|
2293
|
+
};
|
|
2294
|
+
//#endregion
|
|
2295
|
+
//#region src/components/table/table.variants.d.ts
|
|
2296
|
+
declare const tableVariants: tailwind_variants3.TVReturnType<{
|
|
2297
|
+
[key: string]: {
|
|
2298
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2299
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2300
|
+
tbody?: tailwind_merge0.ClassNameValue;
|
|
2301
|
+
td?: tailwind_merge0.ClassNameValue;
|
|
2302
|
+
tfoot?: tailwind_merge0.ClassNameValue;
|
|
2303
|
+
th?: tailwind_merge0.ClassNameValue;
|
|
2304
|
+
thead?: tailwind_merge0.ClassNameValue;
|
|
2305
|
+
tr?: tailwind_merge0.ClassNameValue;
|
|
2306
|
+
};
|
|
2307
|
+
};
|
|
2308
|
+
} | {
|
|
2309
|
+
[x: string]: {
|
|
2310
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2311
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2312
|
+
tbody?: tailwind_merge0.ClassNameValue;
|
|
2313
|
+
td?: tailwind_merge0.ClassNameValue;
|
|
2314
|
+
tfoot?: tailwind_merge0.ClassNameValue;
|
|
2315
|
+
th?: tailwind_merge0.ClassNameValue;
|
|
2316
|
+
thead?: tailwind_merge0.ClassNameValue;
|
|
2317
|
+
tr?: tailwind_merge0.ClassNameValue;
|
|
2318
|
+
};
|
|
2319
|
+
};
|
|
2320
|
+
} | {}, {
|
|
2321
|
+
root: string;
|
|
2322
|
+
tbody: string;
|
|
2323
|
+
td: string;
|
|
2324
|
+
tfoot: string;
|
|
2325
|
+
th: string;
|
|
2326
|
+
thead: string;
|
|
2327
|
+
tr: string;
|
|
2328
|
+
}, undefined, {
|
|
2329
|
+
[key: string]: {
|
|
2330
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2331
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2332
|
+
tbody?: tailwind_merge0.ClassNameValue;
|
|
2333
|
+
td?: tailwind_merge0.ClassNameValue;
|
|
2334
|
+
tfoot?: tailwind_merge0.ClassNameValue;
|
|
2335
|
+
th?: tailwind_merge0.ClassNameValue;
|
|
2336
|
+
thead?: tailwind_merge0.ClassNameValue;
|
|
2337
|
+
tr?: tailwind_merge0.ClassNameValue;
|
|
2338
|
+
};
|
|
2339
|
+
};
|
|
2340
|
+
} | {}, {
|
|
2341
|
+
root: string;
|
|
2342
|
+
tbody: string;
|
|
2343
|
+
td: string;
|
|
2344
|
+
tfoot: string;
|
|
2345
|
+
th: string;
|
|
2346
|
+
thead: string;
|
|
2347
|
+
tr: string;
|
|
2348
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
2349
|
+
root: string;
|
|
2350
|
+
tbody: string;
|
|
2351
|
+
td: string;
|
|
2352
|
+
tfoot: string;
|
|
2353
|
+
th: string;
|
|
2354
|
+
thead: string;
|
|
2355
|
+
tr: string;
|
|
2356
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
2357
|
+
type TableVariants = VariantProps<typeof tableVariants>;
|
|
2358
|
+
//#endregion
|
|
2359
|
+
//#region src/components/table/table.d.ts
|
|
2360
|
+
interface TableProps extends TableVariants, React.ComponentProps<"table"> {}
|
|
2361
|
+
interface TableHeadProps extends React.ComponentProps<"thead"> {}
|
|
2362
|
+
interface TableRowProps extends React.ComponentProps<"tr"> {}
|
|
2363
|
+
interface TableHeaderCellProps extends React.ComponentProps<"th"> {}
|
|
2364
|
+
interface TableBodyProps extends React.ComponentProps<"tbody"> {}
|
|
2365
|
+
interface TableDataCellProps extends React.ComponentProps<"td"> {}
|
|
2366
|
+
interface TableFooterProps extends React.ComponentProps<"tfoot"> {}
|
|
2367
|
+
declare const _default$18: (({
|
|
2368
|
+
className,
|
|
2369
|
+
...props
|
|
2370
|
+
}: TableProps) => react_jsx_runtime12.JSX.Element) & {
|
|
2371
|
+
Body: ({
|
|
2372
|
+
className,
|
|
2373
|
+
...props
|
|
2374
|
+
}: TableBodyProps) => react_jsx_runtime12.JSX.Element;
|
|
2375
|
+
DataCell: ({
|
|
2376
|
+
className,
|
|
2377
|
+
...props
|
|
2378
|
+
}: TableDataCellProps) => react_jsx_runtime12.JSX.Element;
|
|
2379
|
+
Footer: ({
|
|
2380
|
+
className,
|
|
2381
|
+
...props
|
|
2382
|
+
}: TableFooterProps) => react_jsx_runtime12.JSX.Element;
|
|
2383
|
+
Head: ({
|
|
2384
|
+
className,
|
|
2385
|
+
...props
|
|
2386
|
+
}: TableHeadProps) => react_jsx_runtime12.JSX.Element;
|
|
2387
|
+
HeaderCell: ({
|
|
2388
|
+
className,
|
|
2389
|
+
...props
|
|
2390
|
+
}: TableHeaderCellProps) => react_jsx_runtime12.JSX.Element;
|
|
2391
|
+
Root: ({
|
|
2392
|
+
className,
|
|
2393
|
+
...props
|
|
2394
|
+
}: TableProps) => react_jsx_runtime12.JSX.Element;
|
|
2395
|
+
Row: ({
|
|
2396
|
+
className,
|
|
2397
|
+
...props
|
|
2398
|
+
}: TableRowProps) => react_jsx_runtime12.JSX.Element;
|
|
2399
|
+
};
|
|
2400
|
+
//#endregion
|
|
2401
|
+
//#region src/components/tabs/tabs.variants.d.ts
|
|
2402
|
+
declare const tabsVariants: tailwind_variants3.TVReturnType<{
|
|
2403
|
+
[key: string]: {
|
|
2404
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2405
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
2406
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2407
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
2408
|
+
list?: tailwind_merge0.ClassNameValue;
|
|
2409
|
+
tab?: tailwind_merge0.ClassNameValue;
|
|
2410
|
+
};
|
|
2411
|
+
};
|
|
2412
|
+
} | {
|
|
2413
|
+
[x: string]: {
|
|
2414
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2415
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
2416
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2417
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
2418
|
+
list?: tailwind_merge0.ClassNameValue;
|
|
2419
|
+
tab?: tailwind_merge0.ClassNameValue;
|
|
2420
|
+
};
|
|
2421
|
+
};
|
|
2422
|
+
} | {}, {
|
|
2423
|
+
indicator: string;
|
|
2424
|
+
list: string;
|
|
2425
|
+
panel: string;
|
|
2426
|
+
root: string;
|
|
2427
|
+
tab: string;
|
|
2428
|
+
}, undefined, {
|
|
2429
|
+
[key: string]: {
|
|
2430
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2431
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
2432
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2433
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
2434
|
+
list?: tailwind_merge0.ClassNameValue;
|
|
2435
|
+
tab?: tailwind_merge0.ClassNameValue;
|
|
2436
|
+
};
|
|
2437
|
+
};
|
|
2438
|
+
} | {}, {
|
|
2439
|
+
indicator: string;
|
|
2440
|
+
list: string;
|
|
2441
|
+
panel: string;
|
|
2442
|
+
root: string;
|
|
2443
|
+
tab: string;
|
|
2444
|
+
}, tailwind_variants3.TVReturnType<unknown, {
|
|
2445
|
+
indicator: string;
|
|
2446
|
+
list: string;
|
|
2447
|
+
panel: string;
|
|
2448
|
+
root: string;
|
|
2449
|
+
tab: string;
|
|
2450
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
2451
|
+
type TabsVariants = VariantProps<typeof tabsVariants>;
|
|
2452
|
+
//#endregion
|
|
2453
|
+
//#region src/components/tabs/tabs.d.ts
|
|
2454
|
+
interface TabsProps extends TabsVariants, Tabs.Root.Props {}
|
|
2455
|
+
interface TabsListProps extends Tabs.List.Props {}
|
|
2456
|
+
interface TabsTabProps extends Tabs.Tab.Props {}
|
|
2457
|
+
interface TabsIndicatorProps extends Tabs.Indicator.Props {}
|
|
2458
|
+
interface TabsPanelProps extends Tabs.Panel.Props {}
|
|
2459
|
+
declare const _default$19: (({
|
|
2460
|
+
className,
|
|
2461
|
+
...props
|
|
2462
|
+
}: TabsProps) => react_jsx_runtime12.JSX.Element) & {
|
|
2463
|
+
Indicator: ({
|
|
2464
|
+
className,
|
|
2465
|
+
...props
|
|
2466
|
+
}: TabsIndicatorProps) => react_jsx_runtime12.JSX.Element;
|
|
2467
|
+
List: ({
|
|
2468
|
+
className,
|
|
2469
|
+
...props
|
|
2470
|
+
}: TabsListProps) => react_jsx_runtime12.JSX.Element;
|
|
2471
|
+
Panel: ({
|
|
2472
|
+
className,
|
|
2473
|
+
...props
|
|
2474
|
+
}: TabsPanelProps) => react_jsx_runtime12.JSX.Element;
|
|
2475
|
+
Root: ({
|
|
2476
|
+
className,
|
|
2477
|
+
...props
|
|
2478
|
+
}: TabsProps) => react_jsx_runtime12.JSX.Element;
|
|
2479
|
+
Tab: ({
|
|
2480
|
+
className,
|
|
2481
|
+
...props
|
|
2482
|
+
}: TabsTabProps) => react_jsx_runtime12.JSX.Element;
|
|
2483
|
+
};
|
|
2484
|
+
//#endregion
|
|
2485
|
+
//#region src/components/text/text.variants.d.ts
|
|
2486
|
+
declare const textVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "text", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "text", unknown, unknown, undefined>>;
|
|
2487
|
+
type TextVariants = VariantProps<typeof textVariants>;
|
|
2488
|
+
//#endregion
|
|
2489
|
+
//#region src/components/text/text.d.ts
|
|
2490
|
+
interface TextProps extends TextVariants, React.ComponentProps<typeof Text$1> {}
|
|
2491
|
+
declare const Text: ({
|
|
2492
|
+
className,
|
|
2493
|
+
...props
|
|
2494
|
+
}: TextProps) => react_jsx_runtime12.JSX.Element;
|
|
2495
|
+
//#endregion
|
|
2496
|
+
//#region src/components/text-field/text-field.variants.d.ts
|
|
2497
|
+
declare const textFieldVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "text-field", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "text-field", unknown, unknown, undefined>>;
|
|
2498
|
+
type TextFieldVariants = VariantProps<typeof textFieldVariants>;
|
|
2499
|
+
//#endregion
|
|
2500
|
+
//#region src/components/text-field/text-field.d.ts
|
|
2501
|
+
interface TextFieldProps extends TextFieldVariants, React.ComponentProps<typeof TextField$1> {}
|
|
2502
|
+
declare const TextField: ({
|
|
2503
|
+
className,
|
|
2504
|
+
...props
|
|
2505
|
+
}: TextFieldProps) => react_jsx_runtime12.JSX.Element;
|
|
2506
|
+
//#endregion
|
|
2507
|
+
//#region src/components/textarea/textarea.variants.d.ts
|
|
2508
|
+
declare const textareaVariants: tailwind_variants3.TVReturnType<{} | {} | {}, undefined, "textarea", {} | {}, undefined, tailwind_variants3.TVReturnType<unknown, undefined, "textarea", unknown, unknown, undefined>>;
|
|
1498
2509
|
type TextareaVariants = VariantProps<typeof textareaVariants>;
|
|
1499
2510
|
//#endregion
|
|
1500
2511
|
//#region src/components/textarea/textarea.d.ts
|
|
1501
|
-
interface TextareaProps extends TextareaVariants, React.ComponentProps<
|
|
2512
|
+
interface TextareaProps extends TextareaVariants, React.ComponentProps<typeof TextArea> {}
|
|
1502
2513
|
declare const Textarea: ({
|
|
1503
2514
|
className,
|
|
1504
2515
|
...props
|
|
1505
|
-
}: TextareaProps) =>
|
|
2516
|
+
}: TextareaProps) => react_jsx_runtime12.JSX.Element;
|
|
1506
2517
|
//#endregion
|
|
1507
2518
|
//#region src/components/toggle-button/toggle-button.variants.d.ts
|
|
1508
|
-
declare const toggleButtonVariants:
|
|
2519
|
+
declare const toggleButtonVariants: tailwind_variants3.TVReturnType<{} | {
|
|
1509
2520
|
isIconOnly: {
|
|
1510
2521
|
true: tailwind_merge0.ClassNameValue | {
|
|
1511
2522
|
base?: tailwind_merge0.ClassNameValue;
|
|
@@ -1555,7 +2566,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1555
2566
|
primary: string;
|
|
1556
2567
|
secondary: string;
|
|
1557
2568
|
};
|
|
1558
|
-
}, undefined,
|
|
2569
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
1559
2570
|
isIconOnly: {
|
|
1560
2571
|
true: string;
|
|
1561
2572
|
};
|
|
@@ -1587,7 +2598,7 @@ declare const toggleButtonVariants: tailwind_variants0.TVReturnType<{} | {
|
|
|
1587
2598
|
primary: string;
|
|
1588
2599
|
secondary: string;
|
|
1589
2600
|
};
|
|
1590
|
-
}, undefined,
|
|
2601
|
+
}, undefined, tailwind_variants3.TVReturnType<{
|
|
1591
2602
|
isIconOnly: {
|
|
1592
2603
|
true: string;
|
|
1593
2604
|
};
|
|
@@ -1613,7 +2624,7 @@ declare const ToggleButton: ({
|
|
|
1613
2624
|
variant,
|
|
1614
2625
|
size,
|
|
1615
2626
|
...props
|
|
1616
|
-
}: ToggleButtonProps) =>
|
|
2627
|
+
}: ToggleButtonProps) => react_jsx_runtime12.JSX.Element;
|
|
1617
2628
|
//#endregion
|
|
1618
|
-
export { Accordion, AccordionVariants, Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, Card, CardVariants,
|
|
2629
|
+
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 Sidebar, SidebarVariants, _default$16 as Slider, SliderVariants, _default$17 as Switch, SwitchVariants, _default$18 as Table, TableVariants, _default$19 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, sidebarVariants, sliderVariants, switchVariants, tableVariants, tabsVariants, textFieldVariants, textVariants, textareaVariants, toggleButtonVariants };
|
|
1619
2630
|
//# sourceMappingURL=index.d.mts.map
|