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