@fea-ui/react 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -3601
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2478 -1404
- package/dist/index.d.mts +1708 -634
- package/dist/index.mjs +1 -3478
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -18
package/dist/index.d.mts
CHANGED
|
@@ -2,10 +2,9 @@
|
|
|
2
2
|
import * as tailwind_variants1 from "tailwind-variants";
|
|
3
3
|
import { VariantProps, cn } from "tailwind-variants";
|
|
4
4
|
import * as _base_ui_react0 from "@base-ui/react";
|
|
5
|
-
import { Accordion, AlertDialog, Autocomplete, Avatar, Button as Button$1, Checkbox, CheckboxGroup as CheckboxGroup$1, Collapsible, Combobox, ContextMenu, Dialog, Field, Fieldset, Form as Form$1, Input as Input$1, Menu, Meter, NavigationMenu, NumberField, Popover, PreviewCard, Progress, Radio, RadioGroup as RadioGroup$1, ScrollArea, Select, Separator as Separator$1, Slider, Switch, Tabs, ToggleProps, Tooltip } from "@base-ui/react";
|
|
6
|
-
import * as react0 from "react";
|
|
5
|
+
import { Accordion as Accordion$1, AlertDialog as AlertDialog$1, Autocomplete as Autocomplete$1, Avatar as Avatar$1, Button as Button$1, Checkbox as Checkbox$1, CheckboxGroup as CheckboxGroup$1, Collapsible as Collapsible$1, Combobox as Combobox$1, ContextMenu as ContextMenu$1, Dialog as Dialog$1, Field as Field$1, Fieldset as Fieldset$1, Form as Form$1, Input as Input$1, Menu as Menu$1, Meter as Meter$1, NavigationMenu as NavigationMenu$1, NumberField as NumberField$1, Popover as Popover$1, PreviewCard as PreviewCard$1, Progress as Progress$1, Radio as Radio$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Select as Select$1, Separator as Separator$1, Slider as Slider$1, Switch as Switch$1, Tabs as Tabs$1, ToggleProps, Tooltip as Tooltip$1 } from "@base-ui/react";
|
|
7
6
|
import React$1 from "react";
|
|
8
|
-
import * as
|
|
7
|
+
import * as react_jsx_runtime284 from "react/jsx-runtime";
|
|
9
8
|
import * as tailwind_merge0 from "tailwind-merge";
|
|
10
9
|
|
|
11
10
|
//#region src/components/accordion/accordion.variants.d.ts
|
|
@@ -13,10 +12,10 @@ declare const accordionVariants: tailwind_variants1.TVReturnType<{
|
|
|
13
12
|
[key: string]: {
|
|
14
13
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
15
14
|
content?: tailwind_merge0.ClassNameValue;
|
|
16
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
17
15
|
header?: tailwind_merge0.ClassNameValue;
|
|
18
16
|
item?: tailwind_merge0.ClassNameValue;
|
|
19
17
|
panel?: tailwind_merge0.ClassNameValue;
|
|
18
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
20
19
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
21
20
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
22
21
|
};
|
|
@@ -25,10 +24,10 @@ declare const accordionVariants: tailwind_variants1.TVReturnType<{
|
|
|
25
24
|
[x: string]: {
|
|
26
25
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
27
26
|
content?: tailwind_merge0.ClassNameValue;
|
|
28
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
29
27
|
header?: tailwind_merge0.ClassNameValue;
|
|
30
28
|
item?: tailwind_merge0.ClassNameValue;
|
|
31
29
|
panel?: tailwind_merge0.ClassNameValue;
|
|
30
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
32
31
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
33
32
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
34
33
|
};
|
|
@@ -45,10 +44,10 @@ declare const accordionVariants: tailwind_variants1.TVReturnType<{
|
|
|
45
44
|
[key: string]: {
|
|
46
45
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
47
46
|
content?: tailwind_merge0.ClassNameValue;
|
|
48
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
49
47
|
header?: tailwind_merge0.ClassNameValue;
|
|
50
48
|
item?: tailwind_merge0.ClassNameValue;
|
|
51
49
|
panel?: tailwind_merge0.ClassNameValue;
|
|
50
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
52
51
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
53
52
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
54
53
|
};
|
|
@@ -73,45 +72,75 @@ declare const accordionVariants: tailwind_variants1.TVReturnType<{
|
|
|
73
72
|
type AccordionVariants = VariantProps<typeof accordionVariants>;
|
|
74
73
|
//#endregion
|
|
75
74
|
//#region src/components/accordion/accordion.d.ts
|
|
76
|
-
interface AccordionProps extends AccordionVariants, Accordion.Root.Props {}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
75
|
+
interface AccordionProps extends AccordionVariants, Accordion$1.Root.Props {}
|
|
76
|
+
declare const AccordionRoot: ({
|
|
77
|
+
className,
|
|
78
|
+
...props
|
|
79
|
+
}: AccordionProps) => react_jsx_runtime284.JSX.Element;
|
|
80
|
+
interface AccordionItemProps extends Accordion$1.Item.Props {}
|
|
81
|
+
declare const AccordionItem: ({
|
|
82
|
+
className,
|
|
83
|
+
...props
|
|
84
|
+
}: AccordionItemProps) => react_jsx_runtime284.JSX.Element;
|
|
85
|
+
interface AccordionHeaderProps extends Accordion$1.Header.Props {}
|
|
86
|
+
declare const AccordionHeader: ({
|
|
87
|
+
className,
|
|
88
|
+
...props
|
|
89
|
+
}: AccordionHeaderProps) => react_jsx_runtime284.JSX.Element;
|
|
90
|
+
interface AccordionTriggerProps extends Accordion$1.Trigger.Props {}
|
|
91
|
+
declare const AccordionTrigger: ({
|
|
92
|
+
className,
|
|
93
|
+
...props
|
|
94
|
+
}: AccordionTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
80
95
|
interface AccordionTriggerIconProps extends React.ComponentProps<"svg"> {}
|
|
81
|
-
|
|
96
|
+
declare const AccordionTriggerIcon: ({
|
|
97
|
+
className,
|
|
98
|
+
...props
|
|
99
|
+
}: AccordionTriggerIconProps) => react_jsx_runtime284.JSX.Element;
|
|
100
|
+
interface AccordionPanelProps extends Accordion$1.Panel.Props {}
|
|
101
|
+
declare const AccordionPanel: ({
|
|
102
|
+
className,
|
|
103
|
+
...props
|
|
104
|
+
}: AccordionPanelProps) => react_jsx_runtime284.JSX.Element;
|
|
82
105
|
interface AccordionContentProps extends React.ComponentProps<"div"> {}
|
|
83
|
-
declare const
|
|
106
|
+
declare const AccordionContent: ({
|
|
84
107
|
className,
|
|
85
108
|
...props
|
|
86
|
-
}:
|
|
109
|
+
}: AccordionContentProps) => react_jsx_runtime284.JSX.Element;
|
|
110
|
+
//#endregion
|
|
111
|
+
//#region src/components/accordion/index.d.ts
|
|
112
|
+
declare const Accordion: (({
|
|
113
|
+
className,
|
|
114
|
+
...props
|
|
115
|
+
}: AccordionProps) => react_jsx_runtime284.JSX.Element) & {
|
|
87
116
|
Content: ({
|
|
88
117
|
className,
|
|
89
118
|
...props
|
|
90
|
-
}: AccordionContentProps) =>
|
|
119
|
+
}: AccordionContentProps) => react_jsx_runtime284.JSX.Element;
|
|
91
120
|
Header: ({
|
|
92
121
|
className,
|
|
93
122
|
...props
|
|
94
|
-
}: AccordionHeaderProps) =>
|
|
123
|
+
}: AccordionHeaderProps) => react_jsx_runtime284.JSX.Element;
|
|
95
124
|
Item: ({
|
|
96
125
|
className,
|
|
97
126
|
...props
|
|
98
|
-
}: AccordionItemProps) =>
|
|
127
|
+
}: AccordionItemProps) => react_jsx_runtime284.JSX.Element;
|
|
99
128
|
Panel: ({
|
|
100
129
|
className,
|
|
101
130
|
...props
|
|
102
|
-
}: AccordionPanelProps) =>
|
|
131
|
+
}: AccordionPanelProps) => react_jsx_runtime284.JSX.Element;
|
|
103
132
|
Root: ({
|
|
104
133
|
className,
|
|
105
134
|
...props
|
|
106
|
-
}: AccordionProps) =>
|
|
135
|
+
}: AccordionProps) => react_jsx_runtime284.JSX.Element;
|
|
107
136
|
Trigger: ({
|
|
108
137
|
className,
|
|
109
138
|
...props
|
|
110
|
-
}: AccordionTriggerProps) =>
|
|
139
|
+
}: AccordionTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
111
140
|
TriggerIcon: ({
|
|
112
141
|
className,
|
|
113
142
|
...props
|
|
114
|
-
}: AccordionTriggerIconProps) =>
|
|
143
|
+
}: AccordionTriggerIconProps) => react_jsx_runtime284.JSX.Element;
|
|
115
144
|
};
|
|
116
145
|
//#endregion
|
|
117
146
|
//#region src/components/alert/alert.variants.d.ts
|
|
@@ -192,47 +221,71 @@ type AlertVariants = VariantProps<typeof alertVariants>;
|
|
|
192
221
|
//#endregion
|
|
193
222
|
//#region src/components/alert/alert.d.ts
|
|
194
223
|
interface AlertProps extends AlertVariants, React.ComponentProps<"div"> {}
|
|
224
|
+
declare const AlertRoot: ({
|
|
225
|
+
className,
|
|
226
|
+
variant,
|
|
227
|
+
...props
|
|
228
|
+
}: AlertProps) => react_jsx_runtime284.JSX.Element;
|
|
195
229
|
interface AlertIndicatorProps extends React.ComponentProps<"div"> {}
|
|
230
|
+
declare const AlertIndicator: ({
|
|
231
|
+
className,
|
|
232
|
+
children,
|
|
233
|
+
...props
|
|
234
|
+
}: AlertIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
196
235
|
interface AlertContentProps extends React.ComponentProps<"div"> {}
|
|
236
|
+
declare const AlertContent: ({
|
|
237
|
+
className,
|
|
238
|
+
...props
|
|
239
|
+
}: AlertContentProps) => react_jsx_runtime284.JSX.Element;
|
|
197
240
|
interface AlertTitleProps extends React.ComponentProps<"div"> {}
|
|
241
|
+
declare const AlertTitle: ({
|
|
242
|
+
className,
|
|
243
|
+
...props
|
|
244
|
+
}: AlertTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
198
245
|
interface AlertDescriptionProps extends React.ComponentProps<"div"> {}
|
|
199
|
-
declare const
|
|
246
|
+
declare const AlertDescription: ({
|
|
247
|
+
className,
|
|
248
|
+
...props
|
|
249
|
+
}: AlertDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
250
|
+
//#endregion
|
|
251
|
+
//#region src/components/alert/index.d.ts
|
|
252
|
+
declare const Alert: (({
|
|
200
253
|
className,
|
|
201
254
|
variant,
|
|
202
255
|
...props
|
|
203
|
-
}: AlertProps) =>
|
|
256
|
+
}: AlertProps) => react_jsx_runtime284.JSX.Element) & {
|
|
204
257
|
Content: ({
|
|
205
258
|
className,
|
|
206
259
|
...props
|
|
207
|
-
}: AlertContentProps) =>
|
|
260
|
+
}: AlertContentProps) => react_jsx_runtime284.JSX.Element;
|
|
208
261
|
Description: ({
|
|
209
262
|
className,
|
|
210
263
|
...props
|
|
211
|
-
}: AlertDescriptionProps) =>
|
|
264
|
+
}: AlertDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
212
265
|
Indicator: ({
|
|
213
266
|
className,
|
|
214
267
|
children,
|
|
215
268
|
...props
|
|
216
|
-
}: AlertIndicatorProps) =>
|
|
269
|
+
}: AlertIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
217
270
|
Root: ({
|
|
218
271
|
className,
|
|
219
272
|
variant,
|
|
220
273
|
...props
|
|
221
|
-
}: AlertProps) =>
|
|
274
|
+
}: AlertProps) => react_jsx_runtime284.JSX.Element;
|
|
222
275
|
Title: ({
|
|
223
276
|
className,
|
|
224
277
|
...props
|
|
225
|
-
}: AlertTitleProps) =>
|
|
278
|
+
}: AlertTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
226
279
|
};
|
|
227
280
|
//#endregion
|
|
228
281
|
//#region src/components/alert-dialog/alert-dialog.variants.d.ts
|
|
229
282
|
declare const alertDialogVariants: tailwind_variants1.TVReturnType<{
|
|
230
283
|
[key: string]: {
|
|
231
284
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
232
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
233
285
|
root?: tailwind_merge0.ClassNameValue;
|
|
234
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
235
286
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
287
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
288
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
236
289
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
237
290
|
close?: tailwind_merge0.ClassNameValue;
|
|
238
291
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -243,10 +296,10 @@ declare const alertDialogVariants: tailwind_variants1.TVReturnType<{
|
|
|
243
296
|
} | {
|
|
244
297
|
[x: string]: {
|
|
245
298
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
246
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
247
299
|
root?: tailwind_merge0.ClassNameValue;
|
|
248
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
249
300
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
301
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
302
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
250
303
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
251
304
|
close?: tailwind_merge0.ClassNameValue;
|
|
252
305
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -267,10 +320,10 @@ declare const alertDialogVariants: tailwind_variants1.TVReturnType<{
|
|
|
267
320
|
}, undefined, {
|
|
268
321
|
[key: string]: {
|
|
269
322
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
270
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
271
323
|
root?: tailwind_merge0.ClassNameValue;
|
|
272
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
273
324
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
325
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
326
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
274
327
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
275
328
|
close?: tailwind_merge0.ClassNameValue;
|
|
276
329
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -302,64 +355,102 @@ declare const alertDialogVariants: tailwind_variants1.TVReturnType<{
|
|
|
302
355
|
type AlertDialogVariants = VariantProps<typeof alertDialogVariants>;
|
|
303
356
|
//#endregion
|
|
304
357
|
//#region src/components/alert-dialog/alert-dialog.d.ts
|
|
305
|
-
interface AlertDialogProps extends AlertDialogVariants, AlertDialog.Root.Props {}
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
interface
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
358
|
+
interface AlertDialogProps extends AlertDialogVariants, AlertDialog$1.Root.Props {}
|
|
359
|
+
declare const AlertDialogRoot: ({
|
|
360
|
+
...props
|
|
361
|
+
}: AlertDialogProps) => react_jsx_runtime284.JSX.Element;
|
|
362
|
+
interface AlertDialogTriggerProps extends AlertDialog$1.Trigger.Props {}
|
|
363
|
+
declare const AlertDialogTrigger: ({
|
|
364
|
+
className,
|
|
365
|
+
...props
|
|
366
|
+
}: AlertDialogTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
367
|
+
interface AlertDialogPortalProps extends AlertDialog$1.Portal.Props {}
|
|
368
|
+
declare const AlertDialogPortal: ({
|
|
369
|
+
className,
|
|
370
|
+
...props
|
|
371
|
+
}: AlertDialogPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
372
|
+
interface AlertDialogBackdropProps extends AlertDialog$1.Backdrop.Props {}
|
|
373
|
+
declare const AlertDialogBackdrop: ({
|
|
374
|
+
className,
|
|
375
|
+
...props
|
|
376
|
+
}: AlertDialogBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
377
|
+
interface AlertDialogViewportProps extends AlertDialog$1.Viewport.Props {}
|
|
378
|
+
declare const AlertDialogViewport: ({
|
|
379
|
+
className,
|
|
380
|
+
...props
|
|
381
|
+
}: AlertDialogViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
382
|
+
interface AlertDialogPopupProps extends AlertDialog$1.Popup.Props {}
|
|
383
|
+
declare const AlertDialogPopup: ({
|
|
384
|
+
className,
|
|
385
|
+
...props
|
|
386
|
+
}: AlertDialogPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
387
|
+
interface AlertDialogTitleProps extends AlertDialog$1.Title.Props {}
|
|
388
|
+
declare const AlertDialogTitle: ({
|
|
389
|
+
className,
|
|
390
|
+
...props
|
|
391
|
+
}: AlertDialogTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
392
|
+
interface AlertDialogDescriptionProps extends AlertDialog$1.Description.Props {}
|
|
393
|
+
declare const AlertDialogDescription: ({
|
|
394
|
+
className,
|
|
395
|
+
...props
|
|
396
|
+
}: AlertDialogDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
397
|
+
interface AlertDialogCloseProps extends AlertDialog$1.Close.Props {}
|
|
398
|
+
declare const AlertDialogClose: ({
|
|
399
|
+
className,
|
|
400
|
+
children,
|
|
401
|
+
...props
|
|
402
|
+
}: AlertDialogCloseProps) => react_jsx_runtime284.JSX.Element;
|
|
403
|
+
//#endregion
|
|
404
|
+
//#region src/components/alert-dialog/index.d.ts
|
|
405
|
+
declare const AlertDialog: (({
|
|
406
|
+
...props
|
|
407
|
+
}: AlertDialogProps) => react_jsx_runtime284.JSX.Element) & {
|
|
317
408
|
Backdrop: ({
|
|
318
409
|
className,
|
|
319
410
|
...props
|
|
320
|
-
}: AlertDialogBackdropProps) =>
|
|
411
|
+
}: AlertDialogBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
321
412
|
Close: ({
|
|
322
413
|
className,
|
|
323
414
|
children,
|
|
324
415
|
...props
|
|
325
|
-
}: AlertDialogCloseProps) =>
|
|
416
|
+
}: AlertDialogCloseProps) => react_jsx_runtime284.JSX.Element;
|
|
326
417
|
Description: ({
|
|
327
418
|
className,
|
|
328
419
|
...props
|
|
329
|
-
}: AlertDialogDescriptionProps) =>
|
|
420
|
+
}: AlertDialogDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
330
421
|
Popup: ({
|
|
331
422
|
className,
|
|
332
423
|
...props
|
|
333
|
-
}: AlertDialogPopupProps) =>
|
|
424
|
+
}: AlertDialogPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
334
425
|
Portal: ({
|
|
335
426
|
className,
|
|
336
427
|
...props
|
|
337
|
-
}: AlertDialogPortalProps) =>
|
|
428
|
+
}: AlertDialogPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
338
429
|
Root: ({
|
|
339
430
|
...props
|
|
340
|
-
}: AlertDialogProps) =>
|
|
431
|
+
}: AlertDialogProps) => react_jsx_runtime284.JSX.Element;
|
|
341
432
|
Title: ({
|
|
342
433
|
className,
|
|
343
434
|
...props
|
|
344
|
-
}: AlertDialogTitleProps) =>
|
|
435
|
+
}: AlertDialogTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
345
436
|
Trigger: ({
|
|
346
437
|
className,
|
|
347
438
|
...props
|
|
348
|
-
}: AlertDialogTriggerProps) =>
|
|
439
|
+
}: AlertDialogTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
349
440
|
Viewport: ({
|
|
350
441
|
className,
|
|
351
442
|
...props
|
|
352
|
-
}: AlertDialogViewportProps) =>
|
|
443
|
+
}: AlertDialogViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
353
444
|
};
|
|
354
445
|
//#endregion
|
|
355
446
|
//#region src/components/autocomplete/autocomplete.variants.d.ts
|
|
356
447
|
declare const autocompleteVariants: tailwind_variants1.TVReturnType<{
|
|
357
448
|
[key: string]: {
|
|
358
449
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
359
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
360
|
-
input?: tailwind_merge0.ClassNameValue;
|
|
361
450
|
item?: tailwind_merge0.ClassNameValue;
|
|
451
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
362
452
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
453
|
+
input?: tailwind_merge0.ClassNameValue;
|
|
363
454
|
value?: tailwind_merge0.ClassNameValue;
|
|
364
455
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
365
456
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -380,10 +471,10 @@ declare const autocompleteVariants: tailwind_variants1.TVReturnType<{
|
|
|
380
471
|
} | {
|
|
381
472
|
[x: string]: {
|
|
382
473
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
383
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
384
|
-
input?: tailwind_merge0.ClassNameValue;
|
|
385
474
|
item?: tailwind_merge0.ClassNameValue;
|
|
475
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
386
476
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
477
|
+
input?: tailwind_merge0.ClassNameValue;
|
|
387
478
|
value?: tailwind_merge0.ClassNameValue;
|
|
388
479
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
389
480
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -424,10 +515,10 @@ declare const autocompleteVariants: tailwind_variants1.TVReturnType<{
|
|
|
424
515
|
}, undefined, {
|
|
425
516
|
[key: string]: {
|
|
426
517
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
427
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
428
|
-
input?: tailwind_merge0.ClassNameValue;
|
|
429
518
|
item?: tailwind_merge0.ClassNameValue;
|
|
519
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
430
520
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
521
|
+
input?: tailwind_merge0.ClassNameValue;
|
|
431
522
|
value?: tailwind_merge0.ClassNameValue;
|
|
432
523
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
433
524
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -489,102 +580,178 @@ declare const autocompleteVariants: tailwind_variants1.TVReturnType<{
|
|
|
489
580
|
type AutocompleteVariants = VariantProps<typeof autocompleteVariants>;
|
|
490
581
|
//#endregion
|
|
491
582
|
//#region src/components/autocomplete/autocomplete.d.ts
|
|
492
|
-
interface AutocompleteProps extends AutocompleteVariants, Autocomplete.Root.Props<unknown> {}
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
interface
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
interface
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
interface
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
583
|
+
interface AutocompleteProps extends AutocompleteVariants, Autocomplete$1.Root.Props<unknown> {}
|
|
584
|
+
declare const AutocompleteRoot: ({
|
|
585
|
+
...props
|
|
586
|
+
}: AutocompleteProps) => react_jsx_runtime284.JSX.Element;
|
|
587
|
+
interface AutocompleteTriggerProps extends Autocomplete$1.Trigger.Props {}
|
|
588
|
+
declare const AutocompleteTrigger: ({
|
|
589
|
+
className,
|
|
590
|
+
...props
|
|
591
|
+
}: AutocompleteTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
592
|
+
interface AutocompleteInputProps extends Autocomplete$1.Input.Props {}
|
|
593
|
+
declare const AutocompleteInput: ({
|
|
594
|
+
className,
|
|
595
|
+
...props
|
|
596
|
+
}: AutocompleteInputProps) => react_jsx_runtime284.JSX.Element;
|
|
597
|
+
interface AutocompleteIconProps extends Autocomplete$1.Icon.Props {}
|
|
598
|
+
declare const AutocompleteIcon: ({
|
|
599
|
+
className,
|
|
600
|
+
...props
|
|
601
|
+
}: AutocompleteIconProps) => react_jsx_runtime284.JSX.Element;
|
|
602
|
+
interface AutocompleteClearProps extends Autocomplete$1.Clear.Props {}
|
|
603
|
+
declare const AutocompleteClear: ({
|
|
604
|
+
className,
|
|
605
|
+
...props
|
|
606
|
+
}: AutocompleteClearProps) => react_jsx_runtime284.JSX.Element;
|
|
607
|
+
interface AutocompleteValueProps extends Autocomplete$1.Value.Props {}
|
|
608
|
+
declare const AutocompleteValue: ({
|
|
609
|
+
...props
|
|
610
|
+
}: AutocompleteValueProps) => react_jsx_runtime284.JSX.Element;
|
|
611
|
+
interface AutocompletePortalProps extends Autocomplete$1.Portal.Props {}
|
|
612
|
+
declare const AutocompletePortal: ({
|
|
613
|
+
className,
|
|
614
|
+
...props
|
|
615
|
+
}: AutocompletePortalProps) => react_jsx_runtime284.JSX.Element;
|
|
616
|
+
interface AutocompleteBackdropProps extends Autocomplete$1.Backdrop.Props {}
|
|
617
|
+
declare const AutocompleteBackdrop: ({
|
|
618
|
+
className,
|
|
619
|
+
...props
|
|
620
|
+
}: AutocompleteBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
621
|
+
interface AutocompletePositionerProps extends Autocomplete$1.Positioner.Props {}
|
|
622
|
+
declare const AutocompletePositioner: ({
|
|
623
|
+
className,
|
|
624
|
+
...props
|
|
625
|
+
}: AutocompletePositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
626
|
+
interface AutocompletePopupProps extends Autocomplete$1.Popup.Props {}
|
|
627
|
+
declare const AutocompletePopup: ({
|
|
628
|
+
className,
|
|
629
|
+
...props
|
|
630
|
+
}: AutocompletePopupProps) => react_jsx_runtime284.JSX.Element;
|
|
631
|
+
interface AutocompleteArrowProps extends Autocomplete$1.Arrow.Props {}
|
|
632
|
+
declare const AutocompleteArrow: ({
|
|
633
|
+
className,
|
|
634
|
+
...props
|
|
635
|
+
}: AutocompleteArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
636
|
+
interface AutocompleteStatusProps extends Autocomplete$1.Status.Props {}
|
|
637
|
+
declare const AutocompleteStatus: ({
|
|
638
|
+
className,
|
|
639
|
+
...props
|
|
640
|
+
}: AutocompleteStatusProps) => react_jsx_runtime284.JSX.Element;
|
|
641
|
+
interface AutocompleteEmptyProps extends Autocomplete$1.Empty.Props {}
|
|
642
|
+
declare const AutocompleteEmpty: ({
|
|
643
|
+
className,
|
|
644
|
+
...props
|
|
645
|
+
}: AutocompleteEmptyProps) => react_jsx_runtime284.JSX.Element;
|
|
646
|
+
interface AutocompleteListProps extends Autocomplete$1.List.Props {}
|
|
647
|
+
declare const AutocompleteList: ({
|
|
648
|
+
className,
|
|
649
|
+
...props
|
|
650
|
+
}: AutocompleteListProps) => react_jsx_runtime284.JSX.Element;
|
|
651
|
+
interface AutocompleteRowProps extends Autocomplete$1.Row.Props {}
|
|
652
|
+
declare const AutocompleteRow: ({
|
|
653
|
+
className,
|
|
654
|
+
...props
|
|
655
|
+
}: AutocompleteRowProps) => react_jsx_runtime284.JSX.Element;
|
|
656
|
+
interface AutocompleteItemProps extends Autocomplete$1.Item.Props {}
|
|
657
|
+
declare const AutocompleteItem: ({
|
|
658
|
+
className,
|
|
659
|
+
...props
|
|
660
|
+
}: AutocompleteItemProps) => react_jsx_runtime284.JSX.Element;
|
|
661
|
+
interface AutocompleteSeparatorProps extends Autocomplete$1.Separator.Props {}
|
|
662
|
+
declare const AutocompleteSeparator: ({
|
|
663
|
+
className,
|
|
664
|
+
...props
|
|
665
|
+
}: AutocompleteSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
666
|
+
interface AutocompleteGroupProps extends Autocomplete$1.Group.Props {}
|
|
667
|
+
declare const AutocompleteGroup: ({
|
|
668
|
+
className,
|
|
669
|
+
...props
|
|
670
|
+
}: AutocompleteGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
671
|
+
interface AutocompleteGroupLabelProps extends Autocomplete$1.GroupLabel.Props {}
|
|
672
|
+
declare const AutocompleteGroupLabel: ({
|
|
673
|
+
className,
|
|
674
|
+
...props
|
|
675
|
+
}: AutocompleteGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
676
|
+
//#endregion
|
|
677
|
+
//#region src/components/autocomplete/index.d.ts
|
|
678
|
+
declare const Autocomplete: (({
|
|
679
|
+
...props
|
|
680
|
+
}: AutocompleteProps) => react_jsx_runtime284.JSX.Element) & {
|
|
514
681
|
Arrow: ({
|
|
515
682
|
className,
|
|
516
683
|
...props
|
|
517
|
-
}: AutocompleteArrowProps) =>
|
|
684
|
+
}: AutocompleteArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
518
685
|
Backdrop: ({
|
|
519
686
|
className,
|
|
520
687
|
...props
|
|
521
|
-
}: AutocompleteBackdropProps) =>
|
|
688
|
+
}: AutocompleteBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
522
689
|
Clear: ({
|
|
523
690
|
className,
|
|
524
691
|
...props
|
|
525
|
-
}: AutocompleteClearProps) =>
|
|
692
|
+
}: AutocompleteClearProps) => react_jsx_runtime284.JSX.Element;
|
|
526
693
|
Empty: ({
|
|
527
694
|
className,
|
|
528
695
|
...props
|
|
529
|
-
}: AutocompleteEmptyProps) =>
|
|
696
|
+
}: AutocompleteEmptyProps) => react_jsx_runtime284.JSX.Element;
|
|
530
697
|
Group: ({
|
|
531
698
|
className,
|
|
532
699
|
...props
|
|
533
|
-
}: AutocompleteGroupProps) =>
|
|
700
|
+
}: AutocompleteGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
534
701
|
GroupLabel: ({
|
|
535
702
|
className,
|
|
536
703
|
...props
|
|
537
|
-
}: AutocompleteGroupLabelProps) =>
|
|
704
|
+
}: AutocompleteGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
538
705
|
Icon: ({
|
|
539
706
|
className,
|
|
540
707
|
...props
|
|
541
|
-
}: AutocompleteIconProps) =>
|
|
708
|
+
}: AutocompleteIconProps) => react_jsx_runtime284.JSX.Element;
|
|
542
709
|
Input: ({
|
|
543
710
|
className,
|
|
544
711
|
...props
|
|
545
|
-
}: AutocompleteInputProps) =>
|
|
712
|
+
}: AutocompleteInputProps) => react_jsx_runtime284.JSX.Element;
|
|
546
713
|
Item: ({
|
|
547
714
|
className,
|
|
548
715
|
...props
|
|
549
|
-
}: AutocompleteItemProps) =>
|
|
716
|
+
}: AutocompleteItemProps) => react_jsx_runtime284.JSX.Element;
|
|
550
717
|
List: ({
|
|
551
718
|
className,
|
|
552
719
|
...props
|
|
553
|
-
}: AutocompleteListProps) =>
|
|
720
|
+
}: AutocompleteListProps) => react_jsx_runtime284.JSX.Element;
|
|
554
721
|
Popup: ({
|
|
555
722
|
className,
|
|
556
723
|
...props
|
|
557
|
-
}: AutocompletePopupProps) =>
|
|
724
|
+
}: AutocompletePopupProps) => react_jsx_runtime284.JSX.Element;
|
|
558
725
|
Portal: ({
|
|
559
726
|
className,
|
|
560
727
|
...props
|
|
561
|
-
}: AutocompletePortalProps) =>
|
|
728
|
+
}: AutocompletePortalProps) => react_jsx_runtime284.JSX.Element;
|
|
562
729
|
Positioner: ({
|
|
563
730
|
className,
|
|
564
731
|
...props
|
|
565
|
-
}: AutocompletePositionerProps) =>
|
|
732
|
+
}: AutocompletePositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
566
733
|
Root: ({
|
|
567
734
|
...props
|
|
568
|
-
}: AutocompleteProps) =>
|
|
735
|
+
}: AutocompleteProps) => react_jsx_runtime284.JSX.Element;
|
|
569
736
|
Row: ({
|
|
570
737
|
className,
|
|
571
738
|
...props
|
|
572
|
-
}: AutocompleteRowProps) =>
|
|
739
|
+
}: AutocompleteRowProps) => react_jsx_runtime284.JSX.Element;
|
|
573
740
|
Separator: ({
|
|
574
741
|
className,
|
|
575
742
|
...props
|
|
576
|
-
}: AutocompleteSeparatorProps) =>
|
|
743
|
+
}: AutocompleteSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
577
744
|
Status: ({
|
|
578
745
|
className,
|
|
579
746
|
...props
|
|
580
|
-
}: AutocompleteStatusProps) =>
|
|
747
|
+
}: AutocompleteStatusProps) => react_jsx_runtime284.JSX.Element;
|
|
581
748
|
Trigger: ({
|
|
582
749
|
className,
|
|
583
750
|
...props
|
|
584
|
-
}: AutocompleteTriggerProps) =>
|
|
751
|
+
}: AutocompleteTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
585
752
|
Value: ({
|
|
586
753
|
...props
|
|
587
|
-
}: AutocompleteValueProps) =>
|
|
754
|
+
}: AutocompleteValueProps) => react_jsx_runtime284.JSX.Element;
|
|
588
755
|
};
|
|
589
756
|
//#endregion
|
|
590
757
|
//#region src/components/avatar/avatar.variants.d.ts
|
|
@@ -640,27 +807,42 @@ declare const avatarVariants: tailwind_variants1.TVReturnType<{
|
|
|
640
807
|
type AvatarVariants = VariantProps<typeof avatarVariants>;
|
|
641
808
|
//#endregion
|
|
642
809
|
//#region src/components/avatar/avatar.d.ts
|
|
643
|
-
interface AvatarProps extends AvatarVariants, Avatar.Root.Props {}
|
|
644
|
-
|
|
645
|
-
interface AvatarFallbackProps extends Avatar.Fallback.Props {}
|
|
646
|
-
declare const _default$4: (({
|
|
810
|
+
interface AvatarProps extends AvatarVariants, Avatar$1.Root.Props {}
|
|
811
|
+
declare const AvatarRoot: ({
|
|
647
812
|
className,
|
|
648
813
|
size,
|
|
649
814
|
...props
|
|
650
|
-
}: AvatarProps) =>
|
|
815
|
+
}: AvatarProps) => react_jsx_runtime284.JSX.Element;
|
|
816
|
+
interface AvatarImageProps extends Avatar$1.Image.Props {}
|
|
817
|
+
declare const AvatarImage: ({
|
|
818
|
+
className,
|
|
819
|
+
...props
|
|
820
|
+
}: AvatarImageProps) => react_jsx_runtime284.JSX.Element;
|
|
821
|
+
interface AvatarFallbackProps extends Avatar$1.Fallback.Props {}
|
|
822
|
+
declare const AvatarFallback: ({
|
|
823
|
+
className,
|
|
824
|
+
...props
|
|
825
|
+
}: AvatarFallbackProps) => react_jsx_runtime284.JSX.Element;
|
|
826
|
+
//#endregion
|
|
827
|
+
//#region src/components/avatar/index.d.ts
|
|
828
|
+
declare const Avatar: (({
|
|
829
|
+
className,
|
|
830
|
+
size,
|
|
831
|
+
...props
|
|
832
|
+
}: AvatarProps) => react_jsx_runtime284.JSX.Element) & {
|
|
651
833
|
Fallback: ({
|
|
652
834
|
className,
|
|
653
835
|
...props
|
|
654
|
-
}: AvatarFallbackProps) =>
|
|
836
|
+
}: AvatarFallbackProps) => react_jsx_runtime284.JSX.Element;
|
|
655
837
|
Image: ({
|
|
656
838
|
className,
|
|
657
839
|
...props
|
|
658
|
-
}: AvatarImageProps) =>
|
|
840
|
+
}: AvatarImageProps) => react_jsx_runtime284.JSX.Element;
|
|
659
841
|
Root: ({
|
|
660
842
|
className,
|
|
661
843
|
size,
|
|
662
844
|
...props
|
|
663
|
-
}: AvatarProps) =>
|
|
845
|
+
}: AvatarProps) => react_jsx_runtime284.JSX.Element;
|
|
664
846
|
};
|
|
665
847
|
//#endregion
|
|
666
848
|
//#region src/components/button/button.variants.d.ts
|
|
@@ -723,7 +905,7 @@ declare const Button: ({
|
|
|
723
905
|
size,
|
|
724
906
|
isIconOnly,
|
|
725
907
|
...props
|
|
726
|
-
}: ButtonProps) =>
|
|
908
|
+
}: ButtonProps) => react_jsx_runtime284.JSX.Element;
|
|
727
909
|
//#endregion
|
|
728
910
|
//#region src/components/button-group/button-group.variants.d.ts
|
|
729
911
|
declare const buttonGroupVariants: tailwind_variants1.TVReturnType<{} | {} | {}, undefined, "button-group", {} | {}, undefined, tailwind_variants1.TVReturnType<unknown, undefined, "button-group", unknown, unknown, undefined>>;
|
|
@@ -734,7 +916,7 @@ interface ButtonGroupProps extends ButtonGroupVariants, React.ComponentProps<"di
|
|
|
734
916
|
declare const ButtonGroup: ({
|
|
735
917
|
className,
|
|
736
918
|
...props
|
|
737
|
-
}: ButtonGroupProps) =>
|
|
919
|
+
}: ButtonGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
738
920
|
//#endregion
|
|
739
921
|
//#region src/components/card/card.variants.d.ts
|
|
740
922
|
declare const cardVariants: tailwind_variants1.TVReturnType<{
|
|
@@ -786,53 +968,76 @@ declare const cardVariants: tailwind_variants1.TVReturnType<{
|
|
|
786
968
|
type CardVariants = VariantProps<typeof cardVariants>;
|
|
787
969
|
//#endregion
|
|
788
970
|
//#region src/components/card/card.d.ts
|
|
789
|
-
interface
|
|
971
|
+
interface CardRootProps extends CardVariants, React.ComponentProps<"div"> {}
|
|
972
|
+
declare const CardRoot: ({
|
|
973
|
+
className,
|
|
974
|
+
variant,
|
|
975
|
+
...props
|
|
976
|
+
}: CardRootProps) => react_jsx_runtime284.JSX.Element;
|
|
790
977
|
interface CardHeaderProps extends React.ComponentProps<"div"> {}
|
|
791
|
-
|
|
978
|
+
declare const CardHeader: ({
|
|
979
|
+
className,
|
|
980
|
+
...props
|
|
981
|
+
}: CardHeaderProps) => react_jsx_runtime284.JSX.Element;
|
|
982
|
+
interface CardContentProps extends React.ComponentProps<"div"> {}
|
|
983
|
+
declare const CardContent: ({
|
|
984
|
+
className,
|
|
985
|
+
...props
|
|
986
|
+
}: CardContentProps) => react_jsx_runtime284.JSX.Element;
|
|
987
|
+
interface CardFooterProps extends React.ComponentProps<"div"> {}
|
|
792
988
|
interface CardTitle extends React.ComponentProps<"h2"> {}
|
|
989
|
+
declare const CardTitle: ({
|
|
990
|
+
className,
|
|
991
|
+
...props
|
|
992
|
+
}: CardTitle) => react_jsx_runtime284.JSX.Element;
|
|
793
993
|
interface CardDescriptionProps extends React.ComponentProps<"p"> {}
|
|
794
|
-
|
|
795
|
-
|
|
994
|
+
declare const CardDescription: ({
|
|
995
|
+
className,
|
|
996
|
+
...props
|
|
997
|
+
}: CardDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
998
|
+
//#endregion
|
|
999
|
+
//#region src/components/card/index.d.ts
|
|
1000
|
+
declare const Card: (({
|
|
796
1001
|
className,
|
|
797
1002
|
variant,
|
|
798
1003
|
...props
|
|
799
|
-
}:
|
|
1004
|
+
}: CardRootProps) => react_jsx_runtime284.JSX.Element) & {
|
|
800
1005
|
Content: ({
|
|
801
1006
|
className,
|
|
802
1007
|
...props
|
|
803
|
-
}:
|
|
1008
|
+
}: CardContentProps) => react_jsx_runtime284.JSX.Element;
|
|
804
1009
|
Description: ({
|
|
805
1010
|
className,
|
|
806
1011
|
...props
|
|
807
|
-
}: CardDescriptionProps) =>
|
|
1012
|
+
}: CardDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
808
1013
|
Header: ({
|
|
809
1014
|
className,
|
|
810
1015
|
...props
|
|
811
|
-
}: CardHeaderProps) =>
|
|
1016
|
+
}: CardHeaderProps) => react_jsx_runtime284.JSX.Element;
|
|
812
1017
|
Root: ({
|
|
813
1018
|
className,
|
|
814
1019
|
variant,
|
|
815
1020
|
...props
|
|
816
|
-
}:
|
|
1021
|
+
}: CardRootProps) => react_jsx_runtime284.JSX.Element;
|
|
817
1022
|
Title: ({
|
|
818
1023
|
className,
|
|
819
1024
|
...props
|
|
820
|
-
}: CardTitle) =>
|
|
1025
|
+
}: CardTitle) => react_jsx_runtime284.JSX.Element;
|
|
821
1026
|
};
|
|
822
1027
|
//#endregion
|
|
823
1028
|
//#region src/components/checkbox/checkbox.variants.d.ts
|
|
824
1029
|
declare const checkboxVariants: tailwind_variants1.TVReturnType<{
|
|
825
1030
|
[key: string]: {
|
|
826
1031
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
827
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
828
1032
|
root?: tailwind_merge0.ClassNameValue;
|
|
1033
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
829
1034
|
};
|
|
830
1035
|
};
|
|
831
1036
|
} | {
|
|
832
1037
|
[x: string]: {
|
|
833
1038
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
834
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
835
1039
|
root?: tailwind_merge0.ClassNameValue;
|
|
1040
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
836
1041
|
};
|
|
837
1042
|
};
|
|
838
1043
|
} | {}, {
|
|
@@ -841,8 +1046,8 @@ declare const checkboxVariants: tailwind_variants1.TVReturnType<{
|
|
|
841
1046
|
}, undefined, {
|
|
842
1047
|
[key: string]: {
|
|
843
1048
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
844
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
845
1049
|
root?: tailwind_merge0.ClassNameValue;
|
|
1050
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
846
1051
|
};
|
|
847
1052
|
};
|
|
848
1053
|
} | {}, {
|
|
@@ -855,21 +1060,32 @@ declare const checkboxVariants: tailwind_variants1.TVReturnType<{
|
|
|
855
1060
|
type CheckboxVariants = VariantProps<typeof checkboxVariants>;
|
|
856
1061
|
//#endregion
|
|
857
1062
|
//#region src/components/checkbox/checkbox.d.ts
|
|
858
|
-
interface CheckboxProps extends CheckboxVariants, Checkbox.Root.Props {}
|
|
859
|
-
|
|
860
|
-
declare const _default$6: (({
|
|
1063
|
+
interface CheckboxProps extends CheckboxVariants, Checkbox$1.Root.Props {}
|
|
1064
|
+
declare const CheckboxRoot: ({
|
|
861
1065
|
className,
|
|
862
1066
|
...props
|
|
863
|
-
}: CheckboxProps) =>
|
|
1067
|
+
}: CheckboxProps) => react_jsx_runtime284.JSX.Element;
|
|
1068
|
+
interface CheckboxIndicatorProps extends Checkbox$1.Indicator.Props {}
|
|
1069
|
+
declare const CheckboxIndicator: ({
|
|
1070
|
+
className,
|
|
1071
|
+
children,
|
|
1072
|
+
...props
|
|
1073
|
+
}: CheckboxIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
1074
|
+
//#endregion
|
|
1075
|
+
//#region src/components/checkbox/index.d.ts
|
|
1076
|
+
declare const Checkbox: (({
|
|
1077
|
+
className,
|
|
1078
|
+
...props
|
|
1079
|
+
}: CheckboxProps) => react_jsx_runtime284.JSX.Element) & {
|
|
864
1080
|
Indicator: ({
|
|
865
1081
|
className,
|
|
866
1082
|
children,
|
|
867
1083
|
...props
|
|
868
|
-
}: CheckboxIndicatorProps) =>
|
|
1084
|
+
}: CheckboxIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
869
1085
|
Root: ({
|
|
870
1086
|
className,
|
|
871
1087
|
...props
|
|
872
|
-
}: CheckboxProps) =>
|
|
1088
|
+
}: CheckboxProps) => react_jsx_runtime284.JSX.Element;
|
|
873
1089
|
};
|
|
874
1090
|
//#endregion
|
|
875
1091
|
//#region src/components/checkbox-group/checkbox-group.variants.d.ts
|
|
@@ -881,7 +1097,7 @@ interface CheckboxGroupProps extends CheckboxGroupVariants, CheckboxGroup$1.Prop
|
|
|
881
1097
|
declare const CheckboxGroup: ({
|
|
882
1098
|
className,
|
|
883
1099
|
...props
|
|
884
|
-
}: CheckboxGroupProps) =>
|
|
1100
|
+
}: CheckboxGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
885
1101
|
//#endregion
|
|
886
1102
|
//#region src/components/chip/chip.variants.d.ts
|
|
887
1103
|
declare const chipVariants: tailwind_variants1.TVReturnType<{
|
|
@@ -933,15 +1149,15 @@ declare const Chip: ({
|
|
|
933
1149
|
variant,
|
|
934
1150
|
size,
|
|
935
1151
|
...props
|
|
936
|
-
}: ChipProps) =>
|
|
1152
|
+
}: ChipProps) => react_jsx_runtime284.JSX.Element;
|
|
937
1153
|
//#endregion
|
|
938
1154
|
//#region src/components/collapsible/collapsible.variants.d.ts
|
|
939
1155
|
declare const collapsibleVariants: tailwind_variants1.TVReturnType<{
|
|
940
1156
|
[key: string]: {
|
|
941
1157
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
942
1158
|
content?: tailwind_merge0.ClassNameValue;
|
|
943
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
944
1159
|
panel?: tailwind_merge0.ClassNameValue;
|
|
1160
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
945
1161
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
946
1162
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
947
1163
|
};
|
|
@@ -950,8 +1166,8 @@ declare const collapsibleVariants: tailwind_variants1.TVReturnType<{
|
|
|
950
1166
|
[x: string]: {
|
|
951
1167
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
952
1168
|
content?: tailwind_merge0.ClassNameValue;
|
|
953
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
954
1169
|
panel?: tailwind_merge0.ClassNameValue;
|
|
1170
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
955
1171
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
956
1172
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
957
1173
|
};
|
|
@@ -966,8 +1182,8 @@ declare const collapsibleVariants: tailwind_variants1.TVReturnType<{
|
|
|
966
1182
|
[key: string]: {
|
|
967
1183
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
968
1184
|
content?: tailwind_merge0.ClassNameValue;
|
|
969
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
970
1185
|
panel?: tailwind_merge0.ClassNameValue;
|
|
1186
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
971
1187
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
972
1188
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
973
1189
|
};
|
|
@@ -988,47 +1204,71 @@ declare const collapsibleVariants: tailwind_variants1.TVReturnType<{
|
|
|
988
1204
|
type CollapsibleVariants = VariantProps<typeof collapsibleVariants>;
|
|
989
1205
|
//#endregion
|
|
990
1206
|
//#region src/components/collapsible/collapsible.d.ts
|
|
991
|
-
interface CollapsibleProps extends CollapsibleVariants, Collapsible.Root.Props {}
|
|
992
|
-
|
|
1207
|
+
interface CollapsibleProps extends CollapsibleVariants, Collapsible$1.Root.Props {}
|
|
1208
|
+
declare const CollapsibleRoot: ({
|
|
1209
|
+
className,
|
|
1210
|
+
...props
|
|
1211
|
+
}: CollapsibleProps) => react_jsx_runtime284.JSX.Element;
|
|
1212
|
+
interface CollapsibleTriggerProps extends Collapsible$1.Trigger.Props {}
|
|
1213
|
+
declare const CollapsibleTrigger: ({
|
|
1214
|
+
className,
|
|
1215
|
+
children,
|
|
1216
|
+
...props
|
|
1217
|
+
}: CollapsibleTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
993
1218
|
interface CollapsibleTriggerIconProps extends React.ComponentProps<"svg"> {}
|
|
994
|
-
|
|
1219
|
+
declare const CollapsibleTriggerIcon: ({
|
|
1220
|
+
className,
|
|
1221
|
+
...props
|
|
1222
|
+
}: CollapsibleTriggerIconProps) => react_jsx_runtime284.JSX.Element;
|
|
1223
|
+
interface CollapsiblePanelProps extends Collapsible$1.Panel.Props {}
|
|
1224
|
+
declare const CollapsiblePanel: ({
|
|
1225
|
+
className,
|
|
1226
|
+
children,
|
|
1227
|
+
...props
|
|
1228
|
+
}: CollapsiblePanelProps) => react_jsx_runtime284.JSX.Element;
|
|
995
1229
|
interface CollapsibleContentProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
996
|
-
declare const
|
|
1230
|
+
declare const CollapsibleContent: ({
|
|
1231
|
+
className,
|
|
1232
|
+
...props
|
|
1233
|
+
}: CollapsibleContentProps) => react_jsx_runtime284.JSX.Element;
|
|
1234
|
+
//#endregion
|
|
1235
|
+
//#region src/components/collapsible/index.d.ts
|
|
1236
|
+
declare const Collapsible: (({
|
|
997
1237
|
className,
|
|
998
1238
|
...props
|
|
999
|
-
}: CollapsibleProps) =>
|
|
1239
|
+
}: CollapsibleProps) => react_jsx_runtime284.JSX.Element) & {
|
|
1000
1240
|
Content: ({
|
|
1001
1241
|
className,
|
|
1002
1242
|
...props
|
|
1003
|
-
}: CollapsibleContentProps) =>
|
|
1243
|
+
}: CollapsibleContentProps) => react_jsx_runtime284.JSX.Element;
|
|
1004
1244
|
Panel: ({
|
|
1005
1245
|
className,
|
|
1006
1246
|
children,
|
|
1007
1247
|
...props
|
|
1008
|
-
}: CollapsiblePanelProps) =>
|
|
1248
|
+
}: CollapsiblePanelProps) => react_jsx_runtime284.JSX.Element;
|
|
1009
1249
|
Root: ({
|
|
1010
1250
|
className,
|
|
1011
1251
|
...props
|
|
1012
|
-
}: CollapsibleProps) =>
|
|
1252
|
+
}: CollapsibleProps) => react_jsx_runtime284.JSX.Element;
|
|
1013
1253
|
Trigger: ({
|
|
1014
1254
|
className,
|
|
1015
1255
|
children,
|
|
1016
1256
|
...props
|
|
1017
|
-
}: CollapsibleTriggerProps) =>
|
|
1257
|
+
}: CollapsibleTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1018
1258
|
TriggerIcon: ({
|
|
1019
1259
|
className,
|
|
1020
1260
|
...props
|
|
1021
|
-
}: CollapsibleTriggerIconProps) =>
|
|
1261
|
+
}: CollapsibleTriggerIconProps) => react_jsx_runtime284.JSX.Element;
|
|
1022
1262
|
};
|
|
1023
1263
|
//#endregion
|
|
1024
1264
|
//#region src/components/combobox/combobox.variants.d.ts
|
|
1025
1265
|
declare const comboboxVariants: tailwind_variants1.TVReturnType<{
|
|
1026
1266
|
[key: string]: {
|
|
1027
1267
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1028
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
1029
|
-
input?: tailwind_merge0.ClassNameValue;
|
|
1030
1268
|
item?: tailwind_merge0.ClassNameValue;
|
|
1269
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1031
1270
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1271
|
+
input?: tailwind_merge0.ClassNameValue;
|
|
1032
1272
|
value?: tailwind_merge0.ClassNameValue;
|
|
1033
1273
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1034
1274
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -1044,8 +1284,8 @@ declare const comboboxVariants: tailwind_variants1.TVReturnType<{
|
|
|
1044
1284
|
separator?: tailwind_merge0.ClassNameValue;
|
|
1045
1285
|
group?: tailwind_merge0.ClassNameValue;
|
|
1046
1286
|
groupLabel?: tailwind_merge0.ClassNameValue;
|
|
1047
|
-
chip?: tailwind_merge0.ClassNameValue;
|
|
1048
1287
|
chips?: tailwind_merge0.ClassNameValue;
|
|
1288
|
+
chip?: tailwind_merge0.ClassNameValue;
|
|
1049
1289
|
chipRemove?: tailwind_merge0.ClassNameValue;
|
|
1050
1290
|
itemIndicator?: tailwind_merge0.ClassNameValue;
|
|
1051
1291
|
};
|
|
@@ -1053,10 +1293,10 @@ declare const comboboxVariants: tailwind_variants1.TVReturnType<{
|
|
|
1053
1293
|
} | {
|
|
1054
1294
|
[x: string]: {
|
|
1055
1295
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1056
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
1057
|
-
input?: tailwind_merge0.ClassNameValue;
|
|
1058
1296
|
item?: tailwind_merge0.ClassNameValue;
|
|
1297
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1059
1298
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1299
|
+
input?: tailwind_merge0.ClassNameValue;
|
|
1060
1300
|
value?: tailwind_merge0.ClassNameValue;
|
|
1061
1301
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1062
1302
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -1072,8 +1312,8 @@ declare const comboboxVariants: tailwind_variants1.TVReturnType<{
|
|
|
1072
1312
|
separator?: tailwind_merge0.ClassNameValue;
|
|
1073
1313
|
group?: tailwind_merge0.ClassNameValue;
|
|
1074
1314
|
groupLabel?: tailwind_merge0.ClassNameValue;
|
|
1075
|
-
chip?: tailwind_merge0.ClassNameValue;
|
|
1076
1315
|
chips?: tailwind_merge0.ClassNameValue;
|
|
1316
|
+
chip?: tailwind_merge0.ClassNameValue;
|
|
1077
1317
|
chipRemove?: tailwind_merge0.ClassNameValue;
|
|
1078
1318
|
itemIndicator?: tailwind_merge0.ClassNameValue;
|
|
1079
1319
|
};
|
|
@@ -1105,10 +1345,10 @@ declare const comboboxVariants: tailwind_variants1.TVReturnType<{
|
|
|
1105
1345
|
}, undefined, {
|
|
1106
1346
|
[key: string]: {
|
|
1107
1347
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1108
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
1109
|
-
input?: tailwind_merge0.ClassNameValue;
|
|
1110
1348
|
item?: tailwind_merge0.ClassNameValue;
|
|
1349
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1111
1350
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1351
|
+
input?: tailwind_merge0.ClassNameValue;
|
|
1112
1352
|
value?: tailwind_merge0.ClassNameValue;
|
|
1113
1353
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1114
1354
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -1124,8 +1364,8 @@ declare const comboboxVariants: tailwind_variants1.TVReturnType<{
|
|
|
1124
1364
|
separator?: tailwind_merge0.ClassNameValue;
|
|
1125
1365
|
group?: tailwind_merge0.ClassNameValue;
|
|
1126
1366
|
groupLabel?: tailwind_merge0.ClassNameValue;
|
|
1127
|
-
chip?: tailwind_merge0.ClassNameValue;
|
|
1128
1367
|
chips?: tailwind_merge0.ClassNameValue;
|
|
1368
|
+
chip?: tailwind_merge0.ClassNameValue;
|
|
1129
1369
|
chipRemove?: tailwind_merge0.ClassNameValue;
|
|
1130
1370
|
itemIndicator?: tailwind_merge0.ClassNameValue;
|
|
1131
1371
|
};
|
|
@@ -1182,120 +1422,211 @@ declare const comboboxVariants: tailwind_variants1.TVReturnType<{
|
|
|
1182
1422
|
type ComboboxVariants = VariantProps<typeof comboboxVariants>;
|
|
1183
1423
|
//#endregion
|
|
1184
1424
|
//#region src/components/combobox/combobox.d.ts
|
|
1185
|
-
interface ComboboxProps extends ComboboxVariants, Combobox.Root.Props<unknown> {}
|
|
1186
|
-
|
|
1187
|
-
|
|
1425
|
+
interface ComboboxProps extends ComboboxVariants, Combobox$1.Root.Props<unknown> {}
|
|
1426
|
+
declare const ComboboxRoot: ({
|
|
1427
|
+
...props
|
|
1428
|
+
}: ComboboxProps) => react_jsx_runtime284.JSX.Element;
|
|
1429
|
+
interface ComboboxInputProps extends Combobox$1.Input.Props {}
|
|
1430
|
+
declare const ComboboxInput: ({
|
|
1431
|
+
className,
|
|
1432
|
+
...props
|
|
1433
|
+
}: ComboboxInputProps) => react_jsx_runtime284.JSX.Element;
|
|
1434
|
+
interface ComboboxTriggerProps extends Combobox$1.Trigger.Props {}
|
|
1435
|
+
declare const ComboboxTrigger: ({
|
|
1436
|
+
className,
|
|
1437
|
+
children,
|
|
1438
|
+
...props
|
|
1439
|
+
}: ComboboxTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1188
1440
|
interface ComboboxValueProps extends React.HTMLAttributes<HTMLDivElement> {}
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
interface
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
interface
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
interface
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1441
|
+
declare const ComboboxValue: ({
|
|
1442
|
+
...props
|
|
1443
|
+
}: ComboboxValueProps) => react_jsx_runtime284.JSX.Element;
|
|
1444
|
+
interface ComboboxClearProps extends Combobox$1.Clear.Props {}
|
|
1445
|
+
declare const ComboboxClear: ({
|
|
1446
|
+
className,
|
|
1447
|
+
...props
|
|
1448
|
+
}: ComboboxClearProps) => react_jsx_runtime284.JSX.Element;
|
|
1449
|
+
interface ComboboxChipsProps extends Combobox$1.Chips.Props {}
|
|
1450
|
+
declare const ComboboxChips: ({
|
|
1451
|
+
className,
|
|
1452
|
+
...props
|
|
1453
|
+
}: ComboboxChipsProps) => react_jsx_runtime284.JSX.Element;
|
|
1454
|
+
interface ComboboxChipProps extends Combobox$1.Chip.Props {}
|
|
1455
|
+
declare const ComboboxChip: ({
|
|
1456
|
+
className,
|
|
1457
|
+
children,
|
|
1458
|
+
...props
|
|
1459
|
+
}: ComboboxChipProps) => react_jsx_runtime284.JSX.Element;
|
|
1460
|
+
interface ComboboxChipRemoveProps extends Combobox$1.ChipRemove.Props {}
|
|
1461
|
+
declare const ComboboxChipRemove: ({
|
|
1462
|
+
className,
|
|
1463
|
+
...props
|
|
1464
|
+
}: ComboboxChipRemoveProps) => react_jsx_runtime284.JSX.Element;
|
|
1465
|
+
interface ComboboxPortalProps extends Combobox$1.Portal.Props {}
|
|
1466
|
+
declare const ComboboxPortal: ({
|
|
1467
|
+
...props
|
|
1468
|
+
}: ComboboxPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
1469
|
+
interface ComboboxBackdropProps extends Combobox$1.Backdrop.Props {}
|
|
1470
|
+
declare const ComboboxBackdrop: ({
|
|
1471
|
+
className,
|
|
1472
|
+
...props
|
|
1473
|
+
}: ComboboxBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
1474
|
+
interface ComboboxPositionerProps extends Combobox$1.Positioner.Props {}
|
|
1475
|
+
declare const ComboboxPositioner: ({
|
|
1476
|
+
className,
|
|
1477
|
+
...props
|
|
1478
|
+
}: ComboboxPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
1479
|
+
interface ComboboxPopupProps extends Combobox$1.Popup.Props {}
|
|
1480
|
+
declare const ComboboxPopup: ({
|
|
1481
|
+
className,
|
|
1482
|
+
...props
|
|
1483
|
+
}: ComboboxPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
1484
|
+
interface ComboboxArrowProps extends Combobox$1.Arrow.Props {}
|
|
1485
|
+
declare const ComboboxArrow: ({
|
|
1486
|
+
className,
|
|
1487
|
+
...props
|
|
1488
|
+
}: ComboboxArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
1489
|
+
interface ComboboxStatusProps extends Combobox$1.Status.Props {}
|
|
1490
|
+
declare const ComboboxStatus: ({
|
|
1491
|
+
className,
|
|
1492
|
+
...props
|
|
1493
|
+
}: ComboboxStatusProps) => react_jsx_runtime284.JSX.Element;
|
|
1494
|
+
interface ComboboxEmptyProps extends Combobox$1.Empty.Props {}
|
|
1495
|
+
declare const ComboboxEmpty: ({
|
|
1496
|
+
className,
|
|
1497
|
+
...props
|
|
1498
|
+
}: ComboboxEmptyProps) => react_jsx_runtime284.JSX.Element;
|
|
1499
|
+
interface ComboboxListProps extends Combobox$1.List.Props {}
|
|
1500
|
+
declare const ComboboxList: ({
|
|
1501
|
+
className,
|
|
1502
|
+
...props
|
|
1503
|
+
}: ComboboxListProps) => react_jsx_runtime284.JSX.Element;
|
|
1504
|
+
interface ComboboxRowProps extends Combobox$1.Row.Props {}
|
|
1505
|
+
declare const ComboboxRow: ({
|
|
1506
|
+
className,
|
|
1507
|
+
...props
|
|
1508
|
+
}: ComboboxRowProps) => react_jsx_runtime284.JSX.Element;
|
|
1509
|
+
interface ComboboxItemIndicatorProps extends Combobox$1.ItemIndicator.Props {}
|
|
1510
|
+
declare const ComboboxItemIndicator: ({
|
|
1511
|
+
className,
|
|
1512
|
+
children,
|
|
1513
|
+
...props
|
|
1514
|
+
}: ComboboxItemIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
1515
|
+
interface ComboboxItemProps extends Combobox$1.Item.Props {}
|
|
1516
|
+
declare const ComboboxItem: ({
|
|
1517
|
+
className,
|
|
1518
|
+
children,
|
|
1519
|
+
...props
|
|
1520
|
+
}: ComboboxItemProps) => react_jsx_runtime284.JSX.Element;
|
|
1521
|
+
interface ComboboxSeparatorProps extends Combobox$1.Separator.Props {}
|
|
1522
|
+
declare const ComboboxSeparator: ({
|
|
1523
|
+
className,
|
|
1524
|
+
...props
|
|
1525
|
+
}: ComboboxSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
1526
|
+
interface ComboboxGroupProps extends Combobox$1.Group.Props {}
|
|
1527
|
+
declare const ComboboxGroup: ({
|
|
1528
|
+
className,
|
|
1529
|
+
...props
|
|
1530
|
+
}: ComboboxGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
1531
|
+
interface ComboboxGroupLabelProps extends Combobox$1.GroupLabel.Props {}
|
|
1532
|
+
declare const ComboboxGroupLabel: ({
|
|
1533
|
+
className,
|
|
1534
|
+
...props
|
|
1535
|
+
}: ComboboxGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
1536
|
+
//#endregion
|
|
1537
|
+
//#region src/components/combobox/index.d.ts
|
|
1538
|
+
declare const Combobox: (({
|
|
1539
|
+
...props
|
|
1540
|
+
}: ComboboxProps) => react_jsx_runtime284.JSX.Element) & {
|
|
1210
1541
|
Arrow: ({
|
|
1211
1542
|
className,
|
|
1212
1543
|
...props
|
|
1213
|
-
}: ComboboxArrowProps) =>
|
|
1544
|
+
}: ComboboxArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
1214
1545
|
Backdrop: ({
|
|
1215
1546
|
className,
|
|
1216
1547
|
...props
|
|
1217
|
-
}: ComboboxBackdropProps) =>
|
|
1548
|
+
}: ComboboxBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
1218
1549
|
Chip: ({
|
|
1219
1550
|
className,
|
|
1220
1551
|
children,
|
|
1221
1552
|
...props
|
|
1222
|
-
}: ComboboxChipProps) =>
|
|
1553
|
+
}: ComboboxChipProps) => react_jsx_runtime284.JSX.Element;
|
|
1223
1554
|
ChipRemove: ({
|
|
1224
1555
|
className,
|
|
1225
1556
|
...props
|
|
1226
|
-
}: ComboboxChipRemoveProps) =>
|
|
1557
|
+
}: ComboboxChipRemoveProps) => react_jsx_runtime284.JSX.Element;
|
|
1227
1558
|
Chips: ({
|
|
1228
1559
|
className,
|
|
1229
1560
|
...props
|
|
1230
|
-
}: ComboboxChipsProps) =>
|
|
1561
|
+
}: ComboboxChipsProps) => react_jsx_runtime284.JSX.Element;
|
|
1231
1562
|
Clear: ({
|
|
1232
1563
|
className,
|
|
1233
1564
|
...props
|
|
1234
|
-
}: ComboboxClearProps) =>
|
|
1565
|
+
}: ComboboxClearProps) => react_jsx_runtime284.JSX.Element;
|
|
1235
1566
|
Empty: ({
|
|
1236
1567
|
className,
|
|
1237
1568
|
...props
|
|
1238
|
-
}: ComboboxEmptyProps) =>
|
|
1569
|
+
}: ComboboxEmptyProps) => react_jsx_runtime284.JSX.Element;
|
|
1239
1570
|
Group: ({
|
|
1240
1571
|
className,
|
|
1241
1572
|
...props
|
|
1242
|
-
}: ComboboxGroupProps) =>
|
|
1573
|
+
}: ComboboxGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
1243
1574
|
GroupLabel: ({
|
|
1244
1575
|
className,
|
|
1245
1576
|
...props
|
|
1246
|
-
}: ComboboxGroupLabelProps) =>
|
|
1577
|
+
}: ComboboxGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
1247
1578
|
Input: ({
|
|
1248
1579
|
className,
|
|
1249
1580
|
...props
|
|
1250
|
-
}: ComboboxInputProps) =>
|
|
1581
|
+
}: ComboboxInputProps) => react_jsx_runtime284.JSX.Element;
|
|
1251
1582
|
Item: ({
|
|
1252
1583
|
className,
|
|
1253
1584
|
children,
|
|
1254
1585
|
...props
|
|
1255
|
-
}: ComboboxItemProps) =>
|
|
1586
|
+
}: ComboboxItemProps) => react_jsx_runtime284.JSX.Element;
|
|
1256
1587
|
ItemIndicator: ({
|
|
1257
1588
|
className,
|
|
1258
1589
|
children,
|
|
1259
1590
|
...props
|
|
1260
|
-
}: ComboboxItemIndicatorProps) =>
|
|
1591
|
+
}: ComboboxItemIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
1261
1592
|
List: ({
|
|
1262
1593
|
className,
|
|
1263
1594
|
...props
|
|
1264
|
-
}: ComboboxListProps) =>
|
|
1595
|
+
}: ComboboxListProps) => react_jsx_runtime284.JSX.Element;
|
|
1265
1596
|
Popup: ({
|
|
1266
1597
|
className,
|
|
1267
1598
|
...props
|
|
1268
|
-
}: ComboboxPopupProps) =>
|
|
1599
|
+
}: ComboboxPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
1269
1600
|
Portal: ({
|
|
1270
1601
|
...props
|
|
1271
|
-
}: ComboboxPortalProps) =>
|
|
1602
|
+
}: ComboboxPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
1272
1603
|
Positioner: ({
|
|
1273
1604
|
className,
|
|
1274
1605
|
...props
|
|
1275
|
-
}: ComboboxPositionerProps) =>
|
|
1606
|
+
}: ComboboxPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
1276
1607
|
Root: ({
|
|
1277
1608
|
...props
|
|
1278
|
-
}: ComboboxProps) =>
|
|
1609
|
+
}: ComboboxProps) => react_jsx_runtime284.JSX.Element;
|
|
1279
1610
|
Row: ({
|
|
1280
1611
|
className,
|
|
1281
1612
|
...props
|
|
1282
|
-
}: ComboboxRowProps) =>
|
|
1613
|
+
}: ComboboxRowProps) => react_jsx_runtime284.JSX.Element;
|
|
1283
1614
|
Separator: ({
|
|
1284
1615
|
className,
|
|
1285
1616
|
...props
|
|
1286
|
-
}: ComboboxSeparatorProps) =>
|
|
1617
|
+
}: ComboboxSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
1287
1618
|
Status: ({
|
|
1288
1619
|
className,
|
|
1289
1620
|
...props
|
|
1290
|
-
}: ComboboxStatusProps) =>
|
|
1621
|
+
}: ComboboxStatusProps) => react_jsx_runtime284.JSX.Element;
|
|
1291
1622
|
Trigger: ({
|
|
1292
1623
|
className,
|
|
1293
1624
|
children,
|
|
1294
1625
|
...props
|
|
1295
|
-
}: ComboboxTriggerProps) =>
|
|
1626
|
+
}: ComboboxTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1296
1627
|
Value: ({
|
|
1297
1628
|
...props
|
|
1298
|
-
}: ComboboxValueProps) =>
|
|
1629
|
+
}: ComboboxValueProps) => react_jsx_runtime284.JSX.Element;
|
|
1299
1630
|
};
|
|
1300
1631
|
//#endregion
|
|
1301
1632
|
//#region src/components/container/container.variants.d.ts
|
|
@@ -1307,14 +1638,14 @@ interface ContainerProps extends ContainerVariants, React.ComponentProps<"div">
|
|
|
1307
1638
|
declare const Container: ({
|
|
1308
1639
|
className,
|
|
1309
1640
|
...props
|
|
1310
|
-
}: ContainerProps) =>
|
|
1641
|
+
}: ContainerProps) => react_jsx_runtime284.JSX.Element;
|
|
1311
1642
|
//#endregion
|
|
1312
1643
|
//#region src/components/context-menu/context-menu.variants.d.ts
|
|
1313
1644
|
declare const contextMenuVariants: tailwind_variants1.TVReturnType<{
|
|
1314
1645
|
[key: string]: {
|
|
1315
1646
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1316
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
1317
1647
|
item?: tailwind_merge0.ClassNameValue;
|
|
1648
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1318
1649
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1319
1650
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1320
1651
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -1331,8 +1662,8 @@ declare const contextMenuVariants: tailwind_variants1.TVReturnType<{
|
|
|
1331
1662
|
} | {
|
|
1332
1663
|
[x: string]: {
|
|
1333
1664
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1334
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
1335
1665
|
item?: tailwind_merge0.ClassNameValue;
|
|
1666
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1336
1667
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1337
1668
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1338
1669
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -1363,8 +1694,8 @@ declare const contextMenuVariants: tailwind_variants1.TVReturnType<{
|
|
|
1363
1694
|
}, undefined, {
|
|
1364
1695
|
[key: string]: {
|
|
1365
1696
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1366
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
1367
1697
|
item?: tailwind_merge0.ClassNameValue;
|
|
1698
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
1368
1699
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1369
1700
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1370
1701
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -1410,83 +1741,136 @@ declare const contextMenuVariants: tailwind_variants1.TVReturnType<{
|
|
|
1410
1741
|
type ContextMenuVariants = VariantProps<typeof contextMenuVariants>;
|
|
1411
1742
|
//#endregion
|
|
1412
1743
|
//#region src/components/context-menu/context-menu.d.ts
|
|
1413
|
-
interface ContextMenuProps extends ContextMenuVariants, ContextMenu.Root.Props {}
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
interface
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
interface
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1744
|
+
interface ContextMenuProps extends ContextMenuVariants, ContextMenu$1.Root.Props {}
|
|
1745
|
+
declare const ContextMenuRoot: ({
|
|
1746
|
+
...props
|
|
1747
|
+
}: ContextMenuProps) => react_jsx_runtime284.JSX.Element;
|
|
1748
|
+
interface ContextMenuTriggerProps extends ContextMenu$1.Trigger.Props {}
|
|
1749
|
+
declare const ContextMenuTrigger: ({
|
|
1750
|
+
className,
|
|
1751
|
+
...props
|
|
1752
|
+
}: ContextMenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1753
|
+
interface ContextMenuPortalProps extends ContextMenu$1.Portal.Props {}
|
|
1754
|
+
declare const ContextMenuPortal: ({
|
|
1755
|
+
className,
|
|
1756
|
+
...props
|
|
1757
|
+
}: ContextMenuPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
1758
|
+
interface ContextMenuBackdropProps extends ContextMenu$1.Backdrop.Props {}
|
|
1759
|
+
declare const ContextMenuBackdrop: ({
|
|
1760
|
+
className,
|
|
1761
|
+
...props
|
|
1762
|
+
}: ContextMenuBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
1763
|
+
interface ContextMenuPositionerProps extends ContextMenu$1.Positioner.Props {}
|
|
1764
|
+
declare const ContextMenuPositioner: ({
|
|
1765
|
+
className,
|
|
1766
|
+
...props
|
|
1767
|
+
}: ContextMenuPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
1768
|
+
interface ContextMenuPopupProps extends ContextMenu$1.Popup.Props {}
|
|
1769
|
+
declare const ContextMenuPopup: ({
|
|
1770
|
+
className,
|
|
1771
|
+
...props
|
|
1772
|
+
}: ContextMenuPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
1773
|
+
interface ContextMenuArrowProps extends ContextMenu$1.Arrow.Props {}
|
|
1774
|
+
declare const ContextMenuArrow: ({
|
|
1775
|
+
className,
|
|
1776
|
+
...props
|
|
1777
|
+
}: ContextMenuArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
1778
|
+
interface ContextMenuItemProps extends ContextMenu$1.Item.Props {}
|
|
1779
|
+
declare const ContextMenuItem: ({
|
|
1780
|
+
className,
|
|
1781
|
+
...props
|
|
1782
|
+
}: ContextMenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
1783
|
+
interface ContextMenuSeparatorProps extends ContextMenu$1.Separator.Props {}
|
|
1784
|
+
declare const ContextMenuSeparator: ({
|
|
1785
|
+
className,
|
|
1786
|
+
...props
|
|
1787
|
+
}: ContextMenuSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
1788
|
+
interface ContextMenuGroupProps extends ContextMenu$1.Group.Props {}
|
|
1789
|
+
declare const ContextMenuGroup: ({
|
|
1790
|
+
className,
|
|
1791
|
+
...props
|
|
1792
|
+
}: ContextMenuGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
1793
|
+
interface ContextMenuGroupLabelProps extends ContextMenu$1.GroupLabel.Props {}
|
|
1794
|
+
declare const ContextMenuGroupLabel: ({
|
|
1795
|
+
className,
|
|
1796
|
+
...props
|
|
1797
|
+
}: ContextMenuGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
1798
|
+
interface ContextMenuSubmenuProps extends ContextMenu$1.SubmenuRoot.Props {}
|
|
1799
|
+
declare const ContextMenuSubmenu: ({
|
|
1800
|
+
...props
|
|
1801
|
+
}: ContextMenuSubmenuProps) => react_jsx_runtime284.JSX.Element;
|
|
1802
|
+
interface ContextMenuSubmenuTriggerProps extends ContextMenu$1.SubmenuTrigger.Props {}
|
|
1803
|
+
declare const ContextMenuSubmenuTrigger: ({
|
|
1804
|
+
className,
|
|
1805
|
+
children,
|
|
1806
|
+
...props
|
|
1807
|
+
}: ContextMenuSubmenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1808
|
+
//#endregion
|
|
1809
|
+
//#region src/components/context-menu/index.d.ts
|
|
1810
|
+
declare const ContextMenu: (({
|
|
1811
|
+
...props
|
|
1812
|
+
}: ContextMenuProps) => react_jsx_runtime284.JSX.Element) & {
|
|
1429
1813
|
Arrow: ({
|
|
1430
1814
|
className,
|
|
1431
1815
|
...props
|
|
1432
|
-
}: ContextMenuArrowProps) =>
|
|
1816
|
+
}: ContextMenuArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
1433
1817
|
Backdrop: ({
|
|
1434
1818
|
className,
|
|
1435
1819
|
...props
|
|
1436
|
-
}: ContextMenuBackdropProps) =>
|
|
1820
|
+
}: ContextMenuBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
1437
1821
|
Group: ({
|
|
1438
1822
|
className,
|
|
1439
1823
|
...props
|
|
1440
|
-
}: ContextMenuGroupProps) =>
|
|
1824
|
+
}: ContextMenuGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
1441
1825
|
GroupLabel: ({
|
|
1442
1826
|
className,
|
|
1443
1827
|
...props
|
|
1444
|
-
}: ContextMenuGroupLabelProps) =>
|
|
1828
|
+
}: ContextMenuGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
1445
1829
|
Item: ({
|
|
1446
1830
|
className,
|
|
1447
1831
|
...props
|
|
1448
|
-
}: ContextMenuItemProps) =>
|
|
1832
|
+
}: ContextMenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
1449
1833
|
Popup: ({
|
|
1450
1834
|
className,
|
|
1451
1835
|
...props
|
|
1452
|
-
}: ContextMenuPopupProps) =>
|
|
1836
|
+
}: ContextMenuPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
1453
1837
|
Portal: ({
|
|
1454
1838
|
className,
|
|
1455
1839
|
...props
|
|
1456
|
-
}: ContextMenuPortalProps) =>
|
|
1840
|
+
}: ContextMenuPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
1457
1841
|
Positioner: ({
|
|
1458
1842
|
className,
|
|
1459
1843
|
...props
|
|
1460
|
-
}: ContextMenuPositionerProps) =>
|
|
1844
|
+
}: ContextMenuPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
1461
1845
|
Root: ({
|
|
1462
1846
|
...props
|
|
1463
|
-
}: ContextMenuProps) =>
|
|
1847
|
+
}: ContextMenuProps) => react_jsx_runtime284.JSX.Element;
|
|
1464
1848
|
Separator: ({
|
|
1465
1849
|
className,
|
|
1466
1850
|
...props
|
|
1467
|
-
}: ContextMenuSeparatorProps) =>
|
|
1851
|
+
}: ContextMenuSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
1468
1852
|
SubmenuRoot: ({
|
|
1469
1853
|
...props
|
|
1470
|
-
}: ContextMenuSubmenuProps) =>
|
|
1854
|
+
}: ContextMenuSubmenuProps) => react_jsx_runtime284.JSX.Element;
|
|
1471
1855
|
SubmenuTrigger: ({
|
|
1472
1856
|
className,
|
|
1473
1857
|
children,
|
|
1474
1858
|
...props
|
|
1475
|
-
}: ContextMenuSubmenuTriggerProps) =>
|
|
1859
|
+
}: ContextMenuSubmenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1476
1860
|
Trigger: ({
|
|
1477
1861
|
className,
|
|
1478
1862
|
...props
|
|
1479
|
-
}: ContextMenuTriggerProps) =>
|
|
1863
|
+
}: ContextMenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1480
1864
|
};
|
|
1481
1865
|
//#endregion
|
|
1482
1866
|
//#region src/components/dialog/dialog.variants.d.ts
|
|
1483
1867
|
declare const dialogVariants: tailwind_variants1.TVReturnType<{
|
|
1484
1868
|
[key: string]: {
|
|
1485
1869
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1486
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
1487
1870
|
root?: tailwind_merge0.ClassNameValue;
|
|
1488
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
1489
1871
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1872
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
1873
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1490
1874
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1491
1875
|
close?: tailwind_merge0.ClassNameValue;
|
|
1492
1876
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -1497,10 +1881,10 @@ declare const dialogVariants: tailwind_variants1.TVReturnType<{
|
|
|
1497
1881
|
} | {
|
|
1498
1882
|
[x: string]: {
|
|
1499
1883
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1500
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
1501
1884
|
root?: tailwind_merge0.ClassNameValue;
|
|
1502
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
1503
1885
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1886
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
1887
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1504
1888
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1505
1889
|
close?: tailwind_merge0.ClassNameValue;
|
|
1506
1890
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -1521,10 +1905,10 @@ declare const dialogVariants: tailwind_variants1.TVReturnType<{
|
|
|
1521
1905
|
}, undefined, {
|
|
1522
1906
|
[key: string]: {
|
|
1523
1907
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1524
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
1525
1908
|
root?: tailwind_merge0.ClassNameValue;
|
|
1526
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
1527
1909
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1910
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
1911
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1528
1912
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1529
1913
|
close?: tailwind_merge0.ClassNameValue;
|
|
1530
1914
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -1556,53 +1940,90 @@ declare const dialogVariants: tailwind_variants1.TVReturnType<{
|
|
|
1556
1940
|
type DialogVariants = VariantProps<typeof dialogVariants>;
|
|
1557
1941
|
//#endregion
|
|
1558
1942
|
//#region src/components/dialog/dialog.d.ts
|
|
1559
|
-
interface DialogProps extends DialogVariants, Dialog.Root.Props {}
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
interface
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1943
|
+
interface DialogProps extends DialogVariants, Dialog$1.Root.Props {}
|
|
1944
|
+
declare const DialogRoot: ({
|
|
1945
|
+
...props
|
|
1946
|
+
}: DialogProps) => react_jsx_runtime284.JSX.Element;
|
|
1947
|
+
interface DialogTriggerProps extends Dialog$1.Trigger.Props {}
|
|
1948
|
+
declare const DialogTrigger: ({
|
|
1949
|
+
className,
|
|
1950
|
+
...props
|
|
1951
|
+
}: DialogTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1952
|
+
interface DialogPortalProps extends Dialog$1.Portal.Props {}
|
|
1953
|
+
declare const DialogPortal: ({
|
|
1954
|
+
className,
|
|
1955
|
+
...props
|
|
1956
|
+
}: DialogPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
1957
|
+
interface DialogBackdropProps extends Dialog$1.Backdrop.Props {}
|
|
1958
|
+
declare const DialogBackdrop: ({
|
|
1959
|
+
className,
|
|
1960
|
+
...props
|
|
1961
|
+
}: DialogBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
1962
|
+
interface DialogViewportProps extends Dialog$1.Viewport.Props {}
|
|
1963
|
+
declare const DialogViewport: ({
|
|
1964
|
+
className,
|
|
1965
|
+
...props
|
|
1966
|
+
}: DialogViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
1967
|
+
interface DialogPopupProps extends Dialog$1.Popup.Props {}
|
|
1968
|
+
declare const DialogPopup: ({
|
|
1969
|
+
className,
|
|
1970
|
+
...props
|
|
1971
|
+
}: DialogPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
1972
|
+
interface DialogTitleProps extends Dialog$1.Title.Props {}
|
|
1973
|
+
declare const DialogTitle: ({
|
|
1974
|
+
className,
|
|
1975
|
+
...props
|
|
1976
|
+
}: DialogTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
1977
|
+
interface DialogDescriptionProps extends Dialog$1.Description.Props {}
|
|
1978
|
+
declare const DialogDescription: ({
|
|
1979
|
+
className,
|
|
1980
|
+
...props
|
|
1981
|
+
}: DialogDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
1982
|
+
interface DialogCloseProps extends Dialog$1.Close.Props {}
|
|
1983
|
+
declare const DialogClose: ({
|
|
1984
|
+
className,
|
|
1985
|
+
...props
|
|
1986
|
+
}: DialogCloseProps) => react_jsx_runtime284.JSX.Element;
|
|
1987
|
+
//#endregion
|
|
1988
|
+
//#region src/components/dialog/index.d.ts
|
|
1989
|
+
declare const Dialog: (({
|
|
1990
|
+
...props
|
|
1991
|
+
}: DialogProps) => react_jsx_runtime284.JSX.Element) & {
|
|
1571
1992
|
Backdrop: ({
|
|
1572
1993
|
className,
|
|
1573
1994
|
...props
|
|
1574
|
-
}: DialogBackdropProps) =>
|
|
1995
|
+
}: DialogBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
1575
1996
|
Close: ({
|
|
1576
1997
|
className,
|
|
1577
1998
|
...props
|
|
1578
|
-
}: DialogCloseProps) =>
|
|
1999
|
+
}: DialogCloseProps) => react_jsx_runtime284.JSX.Element;
|
|
1579
2000
|
Description: ({
|
|
1580
2001
|
className,
|
|
1581
2002
|
...props
|
|
1582
|
-
}: DialogDescriptionProps) =>
|
|
2003
|
+
}: DialogDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
1583
2004
|
Popup: ({
|
|
1584
2005
|
className,
|
|
1585
2006
|
...props
|
|
1586
|
-
}: DialogPopupProps) =>
|
|
2007
|
+
}: DialogPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
1587
2008
|
Portal: ({
|
|
1588
2009
|
className,
|
|
1589
2010
|
...props
|
|
1590
|
-
}: DialogPortalProps) =>
|
|
2011
|
+
}: DialogPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
1591
2012
|
Root: ({
|
|
1592
2013
|
...props
|
|
1593
|
-
}: DialogProps) =>
|
|
2014
|
+
}: DialogProps) => react_jsx_runtime284.JSX.Element;
|
|
1594
2015
|
Title: ({
|
|
1595
2016
|
className,
|
|
1596
2017
|
...props
|
|
1597
|
-
}: DialogTitleProps) =>
|
|
2018
|
+
}: DialogTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
1598
2019
|
Trigger: ({
|
|
1599
2020
|
className,
|
|
1600
2021
|
...props
|
|
1601
|
-
}: DialogTriggerProps) =>
|
|
2022
|
+
}: DialogTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1602
2023
|
Viewport: ({
|
|
1603
2024
|
className,
|
|
1604
2025
|
...props
|
|
1605
|
-
}: DialogViewportProps) =>
|
|
2026
|
+
}: DialogViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
1606
2027
|
};
|
|
1607
2028
|
//#endregion
|
|
1608
2029
|
//#region src/components/drawer/drawer.variants.d.ts
|
|
@@ -1685,65 +2106,104 @@ declare const drawerVariants: tailwind_variants1.TVReturnType<{
|
|
|
1685
2106
|
type DrawerVariants = VariantProps<typeof drawerVariants>;
|
|
1686
2107
|
//#endregion
|
|
1687
2108
|
//#region src/components/drawer/drawer.d.ts
|
|
1688
|
-
interface DrawerProps extends DrawerVariants, Dialog.Root.Props {}
|
|
1689
|
-
|
|
1690
|
-
interface DrawerPortalProps extends Dialog.Portal.Props {}
|
|
1691
|
-
interface DrawerBackdropProps extends Dialog.Backdrop.Props {}
|
|
1692
|
-
interface DrawerViewportProps extends Dialog.Viewport.Props {}
|
|
1693
|
-
interface DrawerPopupProps extends Dialog.Popup.Props {}
|
|
1694
|
-
interface DrawerTitleProps extends Dialog.Title.Props {}
|
|
1695
|
-
interface DrawerDescriptionProps extends Dialog.Description.Props {}
|
|
1696
|
-
interface DrawerCloseProps extends Dialog.Close.Props {}
|
|
1697
|
-
declare const _default$11: (({
|
|
2109
|
+
interface DrawerProps extends DrawerVariants, Dialog$1.Root.Props {}
|
|
2110
|
+
declare const DrawerRoot: ({
|
|
1698
2111
|
position,
|
|
1699
2112
|
...props
|
|
1700
|
-
}: DrawerProps) =>
|
|
2113
|
+
}: DrawerProps) => react_jsx_runtime284.JSX.Element;
|
|
2114
|
+
interface DrawerTriggerProps extends Dialog$1.Trigger.Props {}
|
|
2115
|
+
declare const DrawerTrigger: ({
|
|
2116
|
+
className,
|
|
2117
|
+
...props
|
|
2118
|
+
}: DrawerTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
2119
|
+
interface DrawerPortalProps extends Dialog$1.Portal.Props {}
|
|
2120
|
+
declare const DrawerPortal: ({
|
|
2121
|
+
className,
|
|
2122
|
+
...props
|
|
2123
|
+
}: DrawerPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
2124
|
+
interface DrawerBackdropProps extends Dialog$1.Backdrop.Props {}
|
|
2125
|
+
declare const DrawerBackdrop: ({
|
|
2126
|
+
className,
|
|
2127
|
+
...props
|
|
2128
|
+
}: DrawerBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
2129
|
+
interface DrawerViewportProps extends Dialog$1.Viewport.Props {}
|
|
2130
|
+
declare const DrawerViewport: ({
|
|
2131
|
+
className,
|
|
2132
|
+
...props
|
|
2133
|
+
}: DrawerViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
2134
|
+
interface DrawerPopupProps extends Dialog$1.Popup.Props {}
|
|
2135
|
+
declare const DrawerPopup: ({
|
|
2136
|
+
className,
|
|
2137
|
+
...props
|
|
2138
|
+
}: DrawerPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
2139
|
+
interface DrawerTitleProps extends Dialog$1.Title.Props {}
|
|
2140
|
+
declare const DrawerTitle: ({
|
|
2141
|
+
className,
|
|
2142
|
+
...props
|
|
2143
|
+
}: DrawerTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
2144
|
+
interface DrawerDescriptionProps extends Dialog$1.Description.Props {}
|
|
2145
|
+
declare const DrawerDescription: ({
|
|
2146
|
+
className,
|
|
2147
|
+
...props
|
|
2148
|
+
}: DrawerDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
2149
|
+
interface DrawerCloseProps extends Dialog$1.Close.Props {}
|
|
2150
|
+
declare const DrawerClose: ({
|
|
2151
|
+
className,
|
|
2152
|
+
children,
|
|
2153
|
+
...props
|
|
2154
|
+
}: DrawerCloseProps) => react_jsx_runtime284.JSX.Element;
|
|
2155
|
+
//#endregion
|
|
2156
|
+
//#region src/components/drawer/index.d.ts
|
|
2157
|
+
declare const Drawer: (({
|
|
2158
|
+
position,
|
|
2159
|
+
...props
|
|
2160
|
+
}: DrawerProps) => react_jsx_runtime284.JSX.Element) & {
|
|
1701
2161
|
Backdrop: ({
|
|
1702
2162
|
className,
|
|
1703
2163
|
...props
|
|
1704
|
-
}: DrawerBackdropProps) =>
|
|
2164
|
+
}: DrawerBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
1705
2165
|
Close: ({
|
|
1706
2166
|
className,
|
|
1707
2167
|
children,
|
|
1708
2168
|
...props
|
|
1709
|
-
}: DrawerCloseProps) =>
|
|
2169
|
+
}: DrawerCloseProps) => react_jsx_runtime284.JSX.Element;
|
|
1710
2170
|
Description: ({
|
|
1711
2171
|
className,
|
|
1712
2172
|
...props
|
|
1713
|
-
}: DrawerDescriptionProps) =>
|
|
2173
|
+
}: DrawerDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
1714
2174
|
Popup: ({
|
|
1715
2175
|
className,
|
|
1716
2176
|
...props
|
|
1717
|
-
}: DrawerPopupProps) =>
|
|
2177
|
+
}: DrawerPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
1718
2178
|
Portal: ({
|
|
1719
2179
|
className,
|
|
1720
2180
|
...props
|
|
1721
|
-
}: DrawerPortalProps) =>
|
|
2181
|
+
}: DrawerPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
1722
2182
|
Root: ({
|
|
1723
2183
|
position,
|
|
1724
2184
|
...props
|
|
1725
|
-
}: DrawerProps) =>
|
|
2185
|
+
}: DrawerProps) => react_jsx_runtime284.JSX.Element;
|
|
1726
2186
|
Title: ({
|
|
1727
2187
|
className,
|
|
1728
2188
|
...props
|
|
1729
|
-
}: DrawerTitleProps) =>
|
|
2189
|
+
}: DrawerTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
1730
2190
|
Trigger: ({
|
|
1731
2191
|
className,
|
|
1732
2192
|
...props
|
|
1733
|
-
}: DrawerTriggerProps) =>
|
|
2193
|
+
}: DrawerTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
1734
2194
|
Viewport: ({
|
|
1735
2195
|
className,
|
|
1736
2196
|
...props
|
|
1737
|
-
}: DrawerViewportProps) =>
|
|
2197
|
+
}: DrawerViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
1738
2198
|
};
|
|
1739
2199
|
//#endregion
|
|
1740
2200
|
//#region src/components/field/field.variants.d.ts
|
|
1741
2201
|
declare const fieldVariants: tailwind_variants1.TVReturnType<{
|
|
1742
2202
|
[key: string]: {
|
|
1743
2203
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1744
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
1745
2204
|
root?: tailwind_merge0.ClassNameValue;
|
|
1746
2205
|
label?: tailwind_merge0.ClassNameValue;
|
|
2206
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1747
2207
|
control?: tailwind_merge0.ClassNameValue;
|
|
1748
2208
|
error?: tailwind_merge0.ClassNameValue;
|
|
1749
2209
|
};
|
|
@@ -1751,9 +2211,9 @@ declare const fieldVariants: tailwind_variants1.TVReturnType<{
|
|
|
1751
2211
|
} | {
|
|
1752
2212
|
[x: string]: {
|
|
1753
2213
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1754
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
1755
2214
|
root?: tailwind_merge0.ClassNameValue;
|
|
1756
2215
|
label?: tailwind_merge0.ClassNameValue;
|
|
2216
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1757
2217
|
control?: tailwind_merge0.ClassNameValue;
|
|
1758
2218
|
error?: tailwind_merge0.ClassNameValue;
|
|
1759
2219
|
};
|
|
@@ -1767,9 +2227,9 @@ declare const fieldVariants: tailwind_variants1.TVReturnType<{
|
|
|
1767
2227
|
}, undefined, {
|
|
1768
2228
|
[key: string]: {
|
|
1769
2229
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1770
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
1771
2230
|
root?: tailwind_merge0.ClassNameValue;
|
|
1772
2231
|
label?: tailwind_merge0.ClassNameValue;
|
|
2232
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
1773
2233
|
control?: tailwind_merge0.ClassNameValue;
|
|
1774
2234
|
error?: tailwind_merge0.ClassNameValue;
|
|
1775
2235
|
};
|
|
@@ -1790,39 +2250,62 @@ declare const fieldVariants: tailwind_variants1.TVReturnType<{
|
|
|
1790
2250
|
type FieldVariants = VariantProps<typeof fieldVariants>;
|
|
1791
2251
|
//#endregion
|
|
1792
2252
|
//#region src/components/field/field.d.ts
|
|
1793
|
-
interface FieldRootProps extends FieldVariants, Field.Root.Props {
|
|
2253
|
+
interface FieldRootProps extends FieldVariants, Field$1.Root.Props {
|
|
1794
2254
|
required?: boolean;
|
|
1795
2255
|
}
|
|
1796
|
-
|
|
1797
|
-
interface FieldControlProps extends Field.Control.Props {}
|
|
1798
|
-
interface FieldDescriptionProps extends Field.Description.Props {}
|
|
1799
|
-
interface FieldErrorProps extends Field.Error.Props {}
|
|
1800
|
-
declare const _default$12: (({
|
|
2256
|
+
declare const FieldRoot: ({
|
|
1801
2257
|
className,
|
|
1802
2258
|
required,
|
|
1803
2259
|
...props
|
|
1804
|
-
}: FieldRootProps) =>
|
|
2260
|
+
}: FieldRootProps) => react_jsx_runtime284.JSX.Element;
|
|
2261
|
+
interface FieldLabelProps extends Field$1.Label.Props {}
|
|
2262
|
+
declare const FieldLabel: ({
|
|
2263
|
+
className,
|
|
2264
|
+
...props
|
|
2265
|
+
}: FieldLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
2266
|
+
interface FieldControlProps extends Field$1.Control.Props {}
|
|
2267
|
+
declare const FieldControl: ({
|
|
2268
|
+
className,
|
|
2269
|
+
...props
|
|
2270
|
+
}: FieldControlProps) => react_jsx_runtime284.JSX.Element;
|
|
2271
|
+
interface FieldDescriptionProps extends Field$1.Description.Props {}
|
|
2272
|
+
declare const FieldDescription: ({
|
|
2273
|
+
className,
|
|
2274
|
+
...props
|
|
2275
|
+
}: FieldDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
2276
|
+
interface FieldErrorProps extends Field$1.Error.Props {}
|
|
2277
|
+
declare const FieldError: ({
|
|
2278
|
+
className,
|
|
2279
|
+
...props
|
|
2280
|
+
}: FieldErrorProps) => react_jsx_runtime284.JSX.Element;
|
|
2281
|
+
//#endregion
|
|
2282
|
+
//#region src/components/field/index.d.ts
|
|
2283
|
+
declare const Field: (({
|
|
2284
|
+
className,
|
|
2285
|
+
required,
|
|
2286
|
+
...props
|
|
2287
|
+
}: FieldRootProps) => react_jsx_runtime284.JSX.Element) & {
|
|
1805
2288
|
Control: ({
|
|
1806
2289
|
className,
|
|
1807
2290
|
...props
|
|
1808
|
-
}: FieldControlProps) =>
|
|
2291
|
+
}: FieldControlProps) => react_jsx_runtime284.JSX.Element;
|
|
1809
2292
|
Description: ({
|
|
1810
2293
|
className,
|
|
1811
2294
|
...props
|
|
1812
|
-
}: FieldDescriptionProps) =>
|
|
2295
|
+
}: FieldDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
1813
2296
|
Error: ({
|
|
1814
2297
|
className,
|
|
1815
2298
|
...props
|
|
1816
|
-
}: FieldErrorProps) =>
|
|
2299
|
+
}: FieldErrorProps) => react_jsx_runtime284.JSX.Element;
|
|
1817
2300
|
Label: ({
|
|
1818
2301
|
className,
|
|
1819
2302
|
...props
|
|
1820
|
-
}: FieldLabelProps) =>
|
|
2303
|
+
}: FieldLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
1821
2304
|
Root: ({
|
|
1822
2305
|
className,
|
|
1823
2306
|
required,
|
|
1824
2307
|
...props
|
|
1825
|
-
}: FieldRootProps) =>
|
|
2308
|
+
}: FieldRootProps) => react_jsx_runtime284.JSX.Element;
|
|
1826
2309
|
};
|
|
1827
2310
|
//#endregion
|
|
1828
2311
|
//#region src/components/fieldset/fieldset.variants.d.ts
|
|
@@ -1860,20 +2343,30 @@ declare const fieldsetVariants: tailwind_variants1.TVReturnType<{
|
|
|
1860
2343
|
type FieldsetVariants = VariantProps<typeof fieldsetVariants>;
|
|
1861
2344
|
//#endregion
|
|
1862
2345
|
//#region src/components/fieldset/fieldset.d.ts
|
|
1863
|
-
interface FieldsetProps extends FieldsetVariants, Fieldset.Root.Props {}
|
|
1864
|
-
|
|
1865
|
-
declare const _default$13: (({
|
|
2346
|
+
interface FieldsetProps extends FieldsetVariants, Fieldset$1.Root.Props {}
|
|
2347
|
+
declare const FieldsetRoot: ({
|
|
1866
2348
|
className,
|
|
1867
2349
|
...props
|
|
1868
|
-
}: FieldsetProps) =>
|
|
2350
|
+
}: FieldsetProps) => react_jsx_runtime284.JSX.Element;
|
|
2351
|
+
interface FieldsetLegendProps extends Fieldset$1.Legend.Props {}
|
|
2352
|
+
declare const FieldsetLegend: ({
|
|
2353
|
+
className,
|
|
2354
|
+
...props
|
|
2355
|
+
}: FieldsetLegendProps) => react_jsx_runtime284.JSX.Element;
|
|
2356
|
+
//#endregion
|
|
2357
|
+
//#region src/components/fieldset/index.d.ts
|
|
2358
|
+
declare const Fieldset: (({
|
|
2359
|
+
className,
|
|
2360
|
+
...props
|
|
2361
|
+
}: FieldsetProps) => react_jsx_runtime284.JSX.Element) & {
|
|
1869
2362
|
Legend: ({
|
|
1870
2363
|
className,
|
|
1871
2364
|
...props
|
|
1872
|
-
}: FieldsetLegendProps) =>
|
|
2365
|
+
}: FieldsetLegendProps) => react_jsx_runtime284.JSX.Element;
|
|
1873
2366
|
Root: ({
|
|
1874
2367
|
className,
|
|
1875
2368
|
...props
|
|
1876
|
-
}: FieldsetProps) =>
|
|
2369
|
+
}: FieldsetProps) => react_jsx_runtime284.JSX.Element;
|
|
1877
2370
|
};
|
|
1878
2371
|
//#endregion
|
|
1879
2372
|
//#region src/components/form/form.variants.d.ts
|
|
@@ -1885,7 +2378,7 @@ interface FormProps extends FormVariants, Form$1.Props {}
|
|
|
1885
2378
|
declare const Form: ({
|
|
1886
2379
|
className,
|
|
1887
2380
|
...props
|
|
1888
|
-
}: FormProps) =>
|
|
2381
|
+
}: FormProps) => react_jsx_runtime284.JSX.Element;
|
|
1889
2382
|
//#endregion
|
|
1890
2383
|
//#region src/components/icon-button/icon-button.variants.d.ts
|
|
1891
2384
|
declare const iconButtonVariants: tailwind_variants1.TVReturnType<{} | {
|
|
@@ -1997,7 +2490,7 @@ declare const IconButton: ({
|
|
|
1997
2490
|
size,
|
|
1998
2491
|
isIconOnly,
|
|
1999
2492
|
...props
|
|
2000
|
-
}: IconButtonProps) =>
|
|
2493
|
+
}: IconButtonProps) => react_jsx_runtime284.JSX.Element;
|
|
2001
2494
|
//#endregion
|
|
2002
2495
|
//#region src/components/input/input.variants.d.ts
|
|
2003
2496
|
declare const inputVariants: tailwind_variants1.TVReturnType<{} | {} | {}, undefined, "input", {} | {}, undefined, tailwind_variants1.TVReturnType<unknown, undefined, "input", unknown, unknown, undefined>>;
|
|
@@ -2008,7 +2501,7 @@ interface InputProps extends InputVariants, Input$1.Props {}
|
|
|
2008
2501
|
declare const Input: ({
|
|
2009
2502
|
className,
|
|
2010
2503
|
...props
|
|
2011
|
-
}: InputProps) =>
|
|
2504
|
+
}: InputProps) => react_jsx_runtime284.JSX.Element;
|
|
2012
2505
|
//#endregion
|
|
2013
2506
|
//#region src/components/label/label.variants.d.ts
|
|
2014
2507
|
declare const labelVariants: tailwind_variants1.TVReturnType<{} | {} | {}, undefined, "label", {} | {}, undefined, tailwind_variants1.TVReturnType<unknown, undefined, "label", unknown, unknown, undefined>>;
|
|
@@ -2019,7 +2512,7 @@ interface LabelProps extends LabelVariants, React.ComponentProps<"label"> {}
|
|
|
2019
2512
|
declare const Label: ({
|
|
2020
2513
|
className,
|
|
2021
2514
|
...props
|
|
2022
|
-
}: LabelProps) =>
|
|
2515
|
+
}: LabelProps) => react_jsx_runtime284.JSX.Element;
|
|
2023
2516
|
//#endregion
|
|
2024
2517
|
//#region src/components/link/link.variants.d.ts
|
|
2025
2518
|
declare const linkVariants: tailwind_variants1.TVReturnType<{
|
|
@@ -2046,21 +2539,21 @@ declare const Link: ({
|
|
|
2046
2539
|
className,
|
|
2047
2540
|
variant,
|
|
2048
2541
|
...props
|
|
2049
|
-
}: LinkProps) =>
|
|
2542
|
+
}: LinkProps) => react_jsx_runtime284.JSX.Element;
|
|
2050
2543
|
//#endregion
|
|
2051
2544
|
//#region src/components/list/list.variants.d.ts
|
|
2052
2545
|
declare const listVariants: tailwind_variants1.TVReturnType<{
|
|
2053
2546
|
[key: string]: {
|
|
2054
2547
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2055
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2056
2548
|
item?: tailwind_merge0.ClassNameValue;
|
|
2549
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2057
2550
|
};
|
|
2058
2551
|
};
|
|
2059
2552
|
} | {
|
|
2060
2553
|
[x: string]: {
|
|
2061
2554
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2062
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2063
2555
|
item?: tailwind_merge0.ClassNameValue;
|
|
2556
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2064
2557
|
};
|
|
2065
2558
|
};
|
|
2066
2559
|
} | {}, {
|
|
@@ -2069,8 +2562,8 @@ declare const listVariants: tailwind_variants1.TVReturnType<{
|
|
|
2069
2562
|
}, undefined, {
|
|
2070
2563
|
[key: string]: {
|
|
2071
2564
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2072
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2073
2565
|
item?: tailwind_merge0.ClassNameValue;
|
|
2566
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2074
2567
|
};
|
|
2075
2568
|
};
|
|
2076
2569
|
} | {}, {
|
|
@@ -2084,29 +2577,39 @@ type ListVariants = VariantProps<typeof listVariants>;
|
|
|
2084
2577
|
//#endregion
|
|
2085
2578
|
//#region src/components/list/list.d.ts
|
|
2086
2579
|
interface ListProps extends ListVariants, React.ComponentProps<"ul"> {}
|
|
2580
|
+
declare const ListRoot: ({
|
|
2581
|
+
className,
|
|
2582
|
+
...props
|
|
2583
|
+
}: ListProps) => react_jsx_runtime284.JSX.Element;
|
|
2087
2584
|
interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
2088
|
-
declare const
|
|
2585
|
+
declare const ListItem: ({
|
|
2586
|
+
className,
|
|
2587
|
+
...props
|
|
2588
|
+
}: ListItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2589
|
+
//#endregion
|
|
2590
|
+
//#region src/components/list/index.d.ts
|
|
2591
|
+
declare const List: (({
|
|
2089
2592
|
className,
|
|
2090
2593
|
...props
|
|
2091
|
-
}: ListProps) =>
|
|
2594
|
+
}: ListProps) => react_jsx_runtime284.JSX.Element) & {
|
|
2092
2595
|
Item: ({
|
|
2093
2596
|
className,
|
|
2094
2597
|
...props
|
|
2095
|
-
}: ListItemProps) =>
|
|
2598
|
+
}: ListItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2096
2599
|
Root: ({
|
|
2097
2600
|
className,
|
|
2098
2601
|
...props
|
|
2099
|
-
}: ListProps) =>
|
|
2602
|
+
}: ListProps) => react_jsx_runtime284.JSX.Element;
|
|
2100
2603
|
};
|
|
2101
2604
|
//#endregion
|
|
2102
2605
|
//#region src/components/menu/menu.variants.d.ts
|
|
2103
2606
|
declare const menuVariants: tailwind_variants1.TVReturnType<{
|
|
2104
2607
|
[key: string]: {
|
|
2105
2608
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2106
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2107
|
-
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
2108
2609
|
item?: tailwind_merge0.ClassNameValue;
|
|
2610
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2109
2611
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
2612
|
+
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
2110
2613
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
2111
2614
|
popup?: tailwind_merge0.ClassNameValue;
|
|
2112
2615
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -2124,10 +2627,10 @@ declare const menuVariants: tailwind_variants1.TVReturnType<{
|
|
|
2124
2627
|
} | {
|
|
2125
2628
|
[x: string]: {
|
|
2126
2629
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2127
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2128
|
-
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
2129
2630
|
item?: tailwind_merge0.ClassNameValue;
|
|
2631
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2130
2632
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
2633
|
+
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
2131
2634
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
2132
2635
|
popup?: tailwind_merge0.ClassNameValue;
|
|
2133
2636
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -2162,10 +2665,10 @@ declare const menuVariants: tailwind_variants1.TVReturnType<{
|
|
|
2162
2665
|
}, undefined, {
|
|
2163
2666
|
[key: string]: {
|
|
2164
2667
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2165
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2166
|
-
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
2167
2668
|
item?: tailwind_merge0.ClassNameValue;
|
|
2669
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2168
2670
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
2671
|
+
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
2169
2672
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
2170
2673
|
popup?: tailwind_merge0.ClassNameValue;
|
|
2171
2674
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -2218,88 +2721,153 @@ declare const menuVariants: tailwind_variants1.TVReturnType<{
|
|
|
2218
2721
|
type MenuVariants = VariantProps<typeof menuVariants>;
|
|
2219
2722
|
//#endregion
|
|
2220
2723
|
//#region src/components/menu/menu.d.ts
|
|
2221
|
-
interface MenuProps extends MenuVariants, Menu.Root.Props {}
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
interface
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
interface
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
interface
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
...props
|
|
2239
|
-
}:
|
|
2724
|
+
interface MenuProps extends MenuVariants, Menu$1.Root.Props {}
|
|
2725
|
+
declare const MenuRoot: ({
|
|
2726
|
+
...props
|
|
2727
|
+
}: MenuProps) => react_jsx_runtime284.JSX.Element;
|
|
2728
|
+
interface MenuTriggerProps extends MenuVariants, Menu$1.Trigger.Props {}
|
|
2729
|
+
declare const MenuTrigger: ({
|
|
2730
|
+
className,
|
|
2731
|
+
...props
|
|
2732
|
+
}: MenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
2733
|
+
interface MenuPortalProps extends MenuVariants, Menu$1.Portal.Props {}
|
|
2734
|
+
declare const MenuPortal: ({
|
|
2735
|
+
className,
|
|
2736
|
+
...props
|
|
2737
|
+
}: MenuPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
2738
|
+
interface MenuBackdropProps extends MenuVariants, Menu$1.Backdrop.Props {}
|
|
2739
|
+
declare const MenuBackdrop: ({
|
|
2740
|
+
className,
|
|
2741
|
+
...props
|
|
2742
|
+
}: MenuBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
2743
|
+
interface MenuPositionerProps extends MenuVariants, Menu$1.Positioner.Props {}
|
|
2744
|
+
declare const MenuPositioner: ({
|
|
2745
|
+
className,
|
|
2746
|
+
...props
|
|
2747
|
+
}: MenuPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
2748
|
+
interface MenuPopupProps extends MenuVariants, Menu$1.Popup.Props {}
|
|
2749
|
+
declare const MenuPopup: ({
|
|
2750
|
+
className,
|
|
2751
|
+
...props
|
|
2752
|
+
}: MenuPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
2753
|
+
interface MenuArrowProps extends MenuVariants, Menu$1.Arrow.Props {}
|
|
2754
|
+
declare const MenuArrow: ({
|
|
2755
|
+
className,
|
|
2756
|
+
children,
|
|
2757
|
+
...props
|
|
2758
|
+
}: MenuArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
2759
|
+
interface MenuItemProps extends MenuVariants, Menu$1.Item.Props {}
|
|
2760
|
+
declare const MenuItem: ({
|
|
2761
|
+
className,
|
|
2762
|
+
...props
|
|
2763
|
+
}: MenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2764
|
+
interface MenuSeparatorProps extends MenuVariants, Menu$1.Separator.Props {}
|
|
2765
|
+
declare const MenuSeparator: ({
|
|
2766
|
+
className,
|
|
2767
|
+
...props
|
|
2768
|
+
}: MenuSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
2769
|
+
interface MenuGroupProps extends MenuVariants, Menu$1.Group.Props {}
|
|
2770
|
+
declare const MenuGroup: ({
|
|
2771
|
+
className,
|
|
2772
|
+
...props
|
|
2773
|
+
}: MenuGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
2774
|
+
interface MenuGroupLabelProps extends MenuVariants, Menu$1.GroupLabel.Props {}
|
|
2775
|
+
declare const MenuGroupLabel: ({
|
|
2776
|
+
className,
|
|
2777
|
+
...props
|
|
2778
|
+
}: MenuGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
2779
|
+
interface MenuRadioGroupProps extends MenuVariants, Menu$1.RadioGroup.Props {}
|
|
2780
|
+
declare const MenuRadioGroup: ({
|
|
2781
|
+
className,
|
|
2782
|
+
...props
|
|
2783
|
+
}: MenuRadioGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
2784
|
+
interface MenuRadioItemProps extends MenuVariants, Menu$1.RadioItem.Props {}
|
|
2785
|
+
declare const MenuRadioItem: ({
|
|
2786
|
+
className,
|
|
2787
|
+
...props
|
|
2788
|
+
}: MenuRadioItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2789
|
+
interface MenuCheckboxItemProps extends MenuVariants, Menu$1.CheckboxItem.Props {}
|
|
2790
|
+
declare const MenuCheckboxItem: ({
|
|
2791
|
+
className,
|
|
2792
|
+
...props
|
|
2793
|
+
}: MenuCheckboxItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2794
|
+
interface MenuSubmenuProps extends MenuVariants, Menu$1.SubmenuRoot.Props {}
|
|
2795
|
+
declare const MenuSubmenu: ({
|
|
2796
|
+
...props
|
|
2797
|
+
}: MenuSubmenuProps) => react_jsx_runtime284.JSX.Element;
|
|
2798
|
+
interface MenuSubmenuTriggerProps extends MenuVariants, Menu$1.SubmenuTrigger.Props {}
|
|
2799
|
+
declare const MenuSubmenuTrigger: ({
|
|
2800
|
+
className,
|
|
2801
|
+
...props
|
|
2802
|
+
}: MenuSubmenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
2803
|
+
//#endregion
|
|
2804
|
+
//#region src/components/menu/index.d.ts
|
|
2805
|
+
declare const Menu: (({
|
|
2806
|
+
...props
|
|
2807
|
+
}: MenuProps) => react_jsx_runtime284.JSX.Element) & {
|
|
2240
2808
|
Arrow: ({
|
|
2241
2809
|
className,
|
|
2242
2810
|
children,
|
|
2243
2811
|
...props
|
|
2244
|
-
}: MenuArrowProps) =>
|
|
2812
|
+
}: MenuArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
2245
2813
|
Backdrop: ({
|
|
2246
2814
|
className,
|
|
2247
2815
|
...props
|
|
2248
|
-
}: MenuBackdropProps) =>
|
|
2816
|
+
}: MenuBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
2249
2817
|
CheckboxItem: ({
|
|
2250
2818
|
className,
|
|
2251
2819
|
...props
|
|
2252
|
-
}: MenuCheckboxItemProps) =>
|
|
2820
|
+
}: MenuCheckboxItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2253
2821
|
Group: ({
|
|
2254
2822
|
className,
|
|
2255
2823
|
...props
|
|
2256
|
-
}: MenuGroupProps) =>
|
|
2824
|
+
}: MenuGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
2257
2825
|
GroupLabel: ({
|
|
2258
2826
|
className,
|
|
2259
2827
|
...props
|
|
2260
|
-
}: MenuGroupLabelProps) =>
|
|
2828
|
+
}: MenuGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
2261
2829
|
Item: ({
|
|
2262
2830
|
className,
|
|
2263
2831
|
...props
|
|
2264
|
-
}: MenuItemProps) =>
|
|
2832
|
+
}: MenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2265
2833
|
Popup: ({
|
|
2266
2834
|
className,
|
|
2267
2835
|
...props
|
|
2268
|
-
}: MenuPopupProps) =>
|
|
2836
|
+
}: MenuPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
2269
2837
|
Portal: ({
|
|
2270
2838
|
className,
|
|
2271
2839
|
...props
|
|
2272
|
-
}: MenuPortalProps) =>
|
|
2840
|
+
}: MenuPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
2273
2841
|
Positioner: ({
|
|
2274
2842
|
className,
|
|
2275
2843
|
...props
|
|
2276
|
-
}: MenuPositionerProps) =>
|
|
2844
|
+
}: MenuPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
2277
2845
|
RadioGroup: ({
|
|
2278
2846
|
className,
|
|
2279
2847
|
...props
|
|
2280
|
-
}: MenuRadioGroupProps) =>
|
|
2848
|
+
}: MenuRadioGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
2281
2849
|
RadioItem: ({
|
|
2282
2850
|
className,
|
|
2283
2851
|
...props
|
|
2284
|
-
}: MenuRadioItemProps) =>
|
|
2852
|
+
}: MenuRadioItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2285
2853
|
Root: ({
|
|
2286
2854
|
...props
|
|
2287
|
-
}: MenuProps) =>
|
|
2855
|
+
}: MenuProps) => react_jsx_runtime284.JSX.Element;
|
|
2288
2856
|
Separator: ({
|
|
2289
2857
|
className,
|
|
2290
2858
|
...props
|
|
2291
|
-
}: MenuSeparatorProps) =>
|
|
2859
|
+
}: MenuSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
2292
2860
|
Submenu: ({
|
|
2293
2861
|
...props
|
|
2294
|
-
}: MenuSubmenuProps) =>
|
|
2862
|
+
}: MenuSubmenuProps) => react_jsx_runtime284.JSX.Element;
|
|
2295
2863
|
SubmenuTrigger: ({
|
|
2296
2864
|
className,
|
|
2297
2865
|
...props
|
|
2298
|
-
}: MenuSubmenuTriggerProps) =>
|
|
2866
|
+
}: MenuSubmenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
2299
2867
|
Trigger: ({
|
|
2300
2868
|
className,
|
|
2301
2869
|
...props
|
|
2302
|
-
}: MenuTriggerProps) =>
|
|
2870
|
+
}: MenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
2303
2871
|
};
|
|
2304
2872
|
//#endregion
|
|
2305
2873
|
//#region src/components/meter/meter.variants.d.ts
|
|
@@ -2403,39 +2971,63 @@ declare const meterVariants: tailwind_variants1.TVReturnType<{
|
|
|
2403
2971
|
type MeterVariants = VariantProps<typeof meterVariants>;
|
|
2404
2972
|
//#endregion
|
|
2405
2973
|
//#region src/components/meter/meter.d.ts
|
|
2406
|
-
interface MeterProps extends MeterVariants, Meter.Root.Props {}
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2974
|
+
interface MeterProps extends MeterVariants, Meter$1.Root.Props {}
|
|
2975
|
+
declare const MeterRoot: ({
|
|
2976
|
+
className,
|
|
2977
|
+
size,
|
|
2978
|
+
variant,
|
|
2979
|
+
...props
|
|
2980
|
+
}: MeterProps) => react_jsx_runtime284.JSX.Element;
|
|
2981
|
+
interface MeterLabelProps extends Meter$1.Label.Props {}
|
|
2982
|
+
declare const MeterLabel: ({
|
|
2983
|
+
className,
|
|
2984
|
+
...props
|
|
2985
|
+
}: MeterLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
2986
|
+
interface MeterValueProps extends Meter$1.Value.Props {}
|
|
2987
|
+
declare const MeterValue: ({
|
|
2988
|
+
className,
|
|
2989
|
+
...props
|
|
2990
|
+
}: MeterValueProps) => react_jsx_runtime284.JSX.Element;
|
|
2991
|
+
interface MeterTrackProps extends Meter$1.Track.Props {}
|
|
2992
|
+
declare const MeterTrack: ({
|
|
2993
|
+
className,
|
|
2994
|
+
...props
|
|
2995
|
+
}: MeterTrackProps) => react_jsx_runtime284.JSX.Element;
|
|
2996
|
+
interface MeterIndicatorProps extends Meter$1.Indicator.Props {}
|
|
2997
|
+
declare const MeterIndicator: ({
|
|
2998
|
+
className,
|
|
2999
|
+
...props
|
|
3000
|
+
}: MeterIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
3001
|
+
//#endregion
|
|
3002
|
+
//#region src/components/meter/index.d.ts
|
|
3003
|
+
declare const Meter: (({
|
|
2412
3004
|
className,
|
|
2413
3005
|
size,
|
|
2414
3006
|
variant,
|
|
2415
3007
|
...props
|
|
2416
|
-
}: MeterProps) =>
|
|
3008
|
+
}: MeterProps) => react_jsx_runtime284.JSX.Element) & {
|
|
2417
3009
|
Indicator: ({
|
|
2418
3010
|
className,
|
|
2419
3011
|
...props
|
|
2420
|
-
}: MeterIndicatorProps) =>
|
|
3012
|
+
}: MeterIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
2421
3013
|
Label: ({
|
|
2422
3014
|
className,
|
|
2423
3015
|
...props
|
|
2424
|
-
}: MeterLabelProps) =>
|
|
3016
|
+
}: MeterLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
2425
3017
|
Root: ({
|
|
2426
3018
|
className,
|
|
2427
3019
|
size,
|
|
2428
3020
|
variant,
|
|
2429
3021
|
...props
|
|
2430
|
-
}: MeterProps) =>
|
|
3022
|
+
}: MeterProps) => react_jsx_runtime284.JSX.Element;
|
|
2431
3023
|
Track: ({
|
|
2432
3024
|
className,
|
|
2433
3025
|
...props
|
|
2434
|
-
}: MeterTrackProps) =>
|
|
3026
|
+
}: MeterTrackProps) => react_jsx_runtime284.JSX.Element;
|
|
2435
3027
|
Value: ({
|
|
2436
3028
|
className,
|
|
2437
3029
|
...props
|
|
2438
|
-
}: MeterValueProps) =>
|
|
3030
|
+
}: MeterValueProps) => react_jsx_runtime284.JSX.Element;
|
|
2439
3031
|
};
|
|
2440
3032
|
//#endregion
|
|
2441
3033
|
//#region src/components/navbar/navbar.variants.d.ts
|
|
@@ -2513,56 +3105,93 @@ interface NavbarProps extends NavbarVariants, React.ComponentProps<"header"> {
|
|
|
2513
3105
|
isOpen?: boolean;
|
|
2514
3106
|
onOpenChange?: (open: boolean) => void;
|
|
2515
3107
|
}
|
|
3108
|
+
declare const NavbarRoot: ({
|
|
3109
|
+
className,
|
|
3110
|
+
isOpen,
|
|
3111
|
+
onOpenChange,
|
|
3112
|
+
...props
|
|
3113
|
+
}: NavbarProps) => react_jsx_runtime284.JSX.Element;
|
|
2516
3114
|
interface NavbarContainerProps extends React.ComponentProps<"nav"> {}
|
|
3115
|
+
declare const NavbarContainer: ({
|
|
3116
|
+
className,
|
|
3117
|
+
...props
|
|
3118
|
+
}: NavbarContainerProps) => react_jsx_runtime284.JSX.Element;
|
|
2517
3119
|
interface NavbarContentProps extends React.ComponentProps<"div"> {}
|
|
3120
|
+
declare const NavbarContent: ({
|
|
3121
|
+
className,
|
|
3122
|
+
...props
|
|
3123
|
+
}: NavbarContentProps) => react_jsx_runtime284.JSX.Element;
|
|
2518
3124
|
interface NavbarListProps extends React.ComponentProps<"ul"> {}
|
|
3125
|
+
declare const NavbarList: ({
|
|
3126
|
+
className,
|
|
3127
|
+
...props
|
|
3128
|
+
}: NavbarListProps) => react_jsx_runtime284.JSX.Element;
|
|
2519
3129
|
interface NavbarListItemProps extends React.ComponentProps<"li"> {}
|
|
3130
|
+
declare const NavbarListItem: ({
|
|
3131
|
+
className,
|
|
3132
|
+
...props
|
|
3133
|
+
}: NavbarListItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2520
3134
|
interface NavbarToggleProps extends React.ComponentProps<"button"> {}
|
|
3135
|
+
declare const NavbarToggle: ({
|
|
3136
|
+
className,
|
|
3137
|
+
...props
|
|
3138
|
+
}: NavbarToggleProps) => react_jsx_runtime284.JSX.Element;
|
|
2521
3139
|
interface NavbarMenuProps extends React.ComponentProps<"ul"> {
|
|
2522
3140
|
header: React.ReactNode;
|
|
2523
3141
|
}
|
|
3142
|
+
declare const NavbarMenu: ({
|
|
3143
|
+
className,
|
|
3144
|
+
header,
|
|
3145
|
+
...props
|
|
3146
|
+
}: NavbarMenuProps) => react_jsx_runtime284.JSX.Element;
|
|
2524
3147
|
interface NavbarMenuItemProps extends React.ComponentProps<"li"> {}
|
|
2525
|
-
declare const
|
|
3148
|
+
declare const NavbarMenuItem: ({
|
|
3149
|
+
className,
|
|
3150
|
+
...props
|
|
3151
|
+
}: NavbarMenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
3152
|
+
//#endregion
|
|
3153
|
+
//#region src/components/navbar/index.d.ts
|
|
3154
|
+
declare const Navbar: (({
|
|
2526
3155
|
className,
|
|
2527
3156
|
isOpen,
|
|
2528
3157
|
onOpenChange,
|
|
2529
3158
|
...props
|
|
2530
|
-
}: NavbarProps) =>
|
|
3159
|
+
}: NavbarProps) => react_jsx_runtime284.JSX.Element) & {
|
|
2531
3160
|
Container: ({
|
|
2532
3161
|
className,
|
|
2533
3162
|
...props
|
|
2534
|
-
}: NavbarContainerProps) =>
|
|
3163
|
+
}: NavbarContainerProps) => react_jsx_runtime284.JSX.Element;
|
|
2535
3164
|
Content: ({
|
|
2536
3165
|
className,
|
|
2537
3166
|
...props
|
|
2538
|
-
}: NavbarContentProps) =>
|
|
3167
|
+
}: NavbarContentProps) => react_jsx_runtime284.JSX.Element;
|
|
2539
3168
|
List: ({
|
|
2540
3169
|
className,
|
|
2541
3170
|
...props
|
|
2542
|
-
}: NavbarListProps) =>
|
|
3171
|
+
}: NavbarListProps) => react_jsx_runtime284.JSX.Element;
|
|
2543
3172
|
ListItem: ({
|
|
2544
3173
|
className,
|
|
2545
3174
|
...props
|
|
2546
|
-
}: NavbarListItemProps) =>
|
|
3175
|
+
}: NavbarListItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2547
3176
|
Menu: ({
|
|
2548
3177
|
className,
|
|
2549
3178
|
header,
|
|
2550
3179
|
...props
|
|
2551
|
-
}: NavbarMenuProps) =>
|
|
3180
|
+
}: NavbarMenuProps) => react_jsx_runtime284.JSX.Element;
|
|
2552
3181
|
MenuItem: ({
|
|
2553
3182
|
className,
|
|
2554
3183
|
...props
|
|
2555
|
-
}: NavbarMenuItemProps) =>
|
|
3184
|
+
}: NavbarMenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2556
3185
|
Root: ({
|
|
2557
3186
|
className,
|
|
2558
3187
|
isOpen,
|
|
2559
3188
|
onOpenChange,
|
|
2560
3189
|
...props
|
|
2561
|
-
}: NavbarProps) =>
|
|
3190
|
+
}: NavbarProps) => react_jsx_runtime284.JSX.Element;
|
|
2562
3191
|
Toggle: ({
|
|
2563
3192
|
className,
|
|
2564
3193
|
...props
|
|
2565
|
-
}: NavbarToggleProps) =>
|
|
3194
|
+
}: NavbarToggleProps) => react_jsx_runtime284.JSX.Element;
|
|
2566
3195
|
};
|
|
2567
3196
|
//#endregion
|
|
2568
3197
|
//#region src/components/navigation-menu/navigation-menu.variants.d.ts
|
|
@@ -2570,10 +3199,10 @@ declare const navigationMenuVariants: tailwind_variants1.TVReturnType<{
|
|
|
2570
3199
|
[key: string]: {
|
|
2571
3200
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2572
3201
|
content?: tailwind_merge0.ClassNameValue;
|
|
2573
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2574
|
-
link?: tailwind_merge0.ClassNameValue;
|
|
2575
3202
|
item?: tailwind_merge0.ClassNameValue;
|
|
3203
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2576
3204
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
3205
|
+
link?: tailwind_merge0.ClassNameValue;
|
|
2577
3206
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
2578
3207
|
popup?: tailwind_merge0.ClassNameValue;
|
|
2579
3208
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -2588,10 +3217,10 @@ declare const navigationMenuVariants: tailwind_variants1.TVReturnType<{
|
|
|
2588
3217
|
[x: string]: {
|
|
2589
3218
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2590
3219
|
content?: tailwind_merge0.ClassNameValue;
|
|
2591
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2592
|
-
link?: tailwind_merge0.ClassNameValue;
|
|
2593
3220
|
item?: tailwind_merge0.ClassNameValue;
|
|
3221
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2594
3222
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
3223
|
+
link?: tailwind_merge0.ClassNameValue;
|
|
2595
3224
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
2596
3225
|
popup?: tailwind_merge0.ClassNameValue;
|
|
2597
3226
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -2620,10 +3249,10 @@ declare const navigationMenuVariants: tailwind_variants1.TVReturnType<{
|
|
|
2620
3249
|
[key: string]: {
|
|
2621
3250
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2622
3251
|
content?: tailwind_merge0.ClassNameValue;
|
|
2623
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
2624
|
-
link?: tailwind_merge0.ClassNameValue;
|
|
2625
3252
|
item?: tailwind_merge0.ClassNameValue;
|
|
3253
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
2626
3254
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
3255
|
+
link?: tailwind_merge0.ClassNameValue;
|
|
2627
3256
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
2628
3257
|
popup?: tailwind_merge0.ClassNameValue;
|
|
2629
3258
|
portal?: tailwind_merge0.ClassNameValue;
|
|
@@ -2666,76 +3295,131 @@ declare const navigationMenuVariants: tailwind_variants1.TVReturnType<{
|
|
|
2666
3295
|
type NavigationMenuVariants = VariantProps<typeof navigationMenuVariants>;
|
|
2667
3296
|
//#endregion
|
|
2668
3297
|
//#region src/components/navigation-menu/navigation-menu.d.ts
|
|
2669
|
-
interface NavigationMenuProps extends NavigationMenuVariants, NavigationMenu.Root.Props {}
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
interface
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
interface
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
3298
|
+
interface NavigationMenuProps extends NavigationMenuVariants, NavigationMenu$1.Root.Props {}
|
|
3299
|
+
declare const NavigationMenuRoot: ({
|
|
3300
|
+
className,
|
|
3301
|
+
...props
|
|
3302
|
+
}: NavigationMenuProps) => react_jsx_runtime284.JSX.Element;
|
|
3303
|
+
interface NavigationMenuListProps extends NavigationMenu$1.List.Props {}
|
|
3304
|
+
declare const NavigationMenuList: ({
|
|
3305
|
+
className,
|
|
3306
|
+
...props
|
|
3307
|
+
}: NavigationMenuListProps) => react_jsx_runtime284.JSX.Element;
|
|
3308
|
+
interface NavigationMenuItemProps extends NavigationMenu$1.Item.Props {}
|
|
3309
|
+
declare const NavigationMenuItem: ({
|
|
3310
|
+
className,
|
|
3311
|
+
...props
|
|
3312
|
+
}: NavigationMenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
3313
|
+
interface NavigationMenuTriggerProps extends NavigationMenu$1.Trigger.Props {}
|
|
3314
|
+
declare const NavigationMenuTrigger: ({
|
|
3315
|
+
className,
|
|
3316
|
+
children,
|
|
3317
|
+
...props
|
|
3318
|
+
}: NavigationMenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
3319
|
+
interface NavigationMenuIconProps extends NavigationMenu$1.Icon.Props {}
|
|
3320
|
+
declare const NavigationMenuIcon: ({
|
|
3321
|
+
className,
|
|
3322
|
+
children,
|
|
3323
|
+
...props
|
|
3324
|
+
}: NavigationMenuIconProps) => react_jsx_runtime284.JSX.Element;
|
|
3325
|
+
interface NavigationMenuContentProps extends NavigationMenu$1.Content.Props {}
|
|
3326
|
+
declare const NavigationMenuContent: ({
|
|
3327
|
+
className,
|
|
3328
|
+
...props
|
|
3329
|
+
}: NavigationMenuContentProps) => react_jsx_runtime284.JSX.Element;
|
|
3330
|
+
interface NavigationMenuLinkProps extends NavigationMenu$1.Link.Props {}
|
|
3331
|
+
declare const NavigationMenuLink: ({
|
|
3332
|
+
className,
|
|
3333
|
+
...props
|
|
3334
|
+
}: NavigationMenuLinkProps) => react_jsx_runtime284.JSX.Element;
|
|
3335
|
+
interface NavigationMenuPortalProps extends NavigationMenu$1.Portal.Props {}
|
|
3336
|
+
declare const NavigationMenuPortal: ({
|
|
3337
|
+
...props
|
|
3338
|
+
}: NavigationMenuPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
3339
|
+
interface NavigationMenuBackdropProps extends NavigationMenu$1.Backdrop.Props {}
|
|
3340
|
+
declare const NavigationMenuBackdrop: ({
|
|
3341
|
+
className,
|
|
3342
|
+
...props
|
|
3343
|
+
}: NavigationMenuBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
3344
|
+
interface NavigationMenuPositionerProps extends NavigationMenu$1.Positioner.Props {}
|
|
3345
|
+
declare const NavigationMenuPositioner: ({
|
|
3346
|
+
className,
|
|
3347
|
+
...props
|
|
3348
|
+
}: NavigationMenuPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
3349
|
+
interface NavigationMenuPopupProps extends NavigationMenu$1.Popup.Props {}
|
|
3350
|
+
declare const NavigationMenuPopup: ({
|
|
3351
|
+
className,
|
|
3352
|
+
...props
|
|
3353
|
+
}: NavigationMenuPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
3354
|
+
interface NavigationMenuArrowProps extends NavigationMenu$1.Arrow.Props {}
|
|
3355
|
+
declare const NavigationMenuArrow: ({
|
|
3356
|
+
className,
|
|
3357
|
+
...props
|
|
3358
|
+
}: NavigationMenuArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
3359
|
+
interface NavigationMenuViewportProps extends NavigationMenu$1.Viewport.Props {}
|
|
3360
|
+
declare const NavigationMenuViewport: ({
|
|
3361
|
+
className,
|
|
3362
|
+
...props
|
|
3363
|
+
}: NavigationMenuViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
3364
|
+
//#endregion
|
|
3365
|
+
//#region src/components/navigation-menu/index.d.ts
|
|
3366
|
+
declare const NavigationMenu: (({
|
|
3367
|
+
className,
|
|
3368
|
+
...props
|
|
3369
|
+
}: NavigationMenuProps) => react_jsx_runtime284.JSX.Element) & {
|
|
2686
3370
|
Arrow: ({
|
|
2687
3371
|
className,
|
|
2688
3372
|
...props
|
|
2689
|
-
}: NavigationMenuArrowProps) =>
|
|
3373
|
+
}: NavigationMenuArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
2690
3374
|
Backdrop: ({
|
|
2691
3375
|
className,
|
|
2692
3376
|
...props
|
|
2693
|
-
}: NavigationMenuBackdropProps) =>
|
|
3377
|
+
}: NavigationMenuBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
2694
3378
|
Content: ({
|
|
2695
3379
|
className,
|
|
2696
3380
|
...props
|
|
2697
|
-
}: NavigationMenuContentProps) =>
|
|
3381
|
+
}: NavigationMenuContentProps) => react_jsx_runtime284.JSX.Element;
|
|
2698
3382
|
Icon: ({
|
|
2699
3383
|
className,
|
|
2700
3384
|
children,
|
|
2701
3385
|
...props
|
|
2702
|
-
}: NavigationMenuIconProps) =>
|
|
3386
|
+
}: NavigationMenuIconProps) => react_jsx_runtime284.JSX.Element;
|
|
2703
3387
|
Item: ({
|
|
2704
3388
|
className,
|
|
2705
3389
|
...props
|
|
2706
|
-
}: NavigationMenuItemProps) =>
|
|
3390
|
+
}: NavigationMenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
2707
3391
|
Link: ({
|
|
2708
3392
|
className,
|
|
2709
3393
|
...props
|
|
2710
|
-
}: NavigationMenuLinkProps) =>
|
|
3394
|
+
}: NavigationMenuLinkProps) => react_jsx_runtime284.JSX.Element;
|
|
2711
3395
|
List: ({
|
|
2712
3396
|
className,
|
|
2713
3397
|
...props
|
|
2714
|
-
}: NavigationMenuListProps) =>
|
|
3398
|
+
}: NavigationMenuListProps) => react_jsx_runtime284.JSX.Element;
|
|
2715
3399
|
Popup: ({
|
|
2716
3400
|
className,
|
|
2717
3401
|
...props
|
|
2718
|
-
}: NavigationMenuPopupProps) =>
|
|
3402
|
+
}: NavigationMenuPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
2719
3403
|
Portal: ({
|
|
2720
3404
|
...props
|
|
2721
|
-
}: NavigationMenuPortalProps) =>
|
|
3405
|
+
}: NavigationMenuPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
2722
3406
|
Positioner: ({
|
|
2723
3407
|
className,
|
|
2724
3408
|
...props
|
|
2725
|
-
}: NavigationMenuPositionerProps) =>
|
|
3409
|
+
}: NavigationMenuPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
2726
3410
|
Root: ({
|
|
2727
3411
|
className,
|
|
2728
3412
|
...props
|
|
2729
|
-
}: NavigationMenuProps) =>
|
|
3413
|
+
}: NavigationMenuProps) => react_jsx_runtime284.JSX.Element;
|
|
2730
3414
|
Trigger: ({
|
|
2731
3415
|
className,
|
|
2732
3416
|
children,
|
|
2733
3417
|
...props
|
|
2734
|
-
}: NavigationMenuTriggerProps) =>
|
|
3418
|
+
}: NavigationMenuTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
2735
3419
|
Viewport: ({
|
|
2736
3420
|
className,
|
|
2737
3421
|
...props
|
|
2738
|
-
}: NavigationMenuViewportProps) =>
|
|
3422
|
+
}: NavigationMenuViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
2739
3423
|
};
|
|
2740
3424
|
//#endregion
|
|
2741
3425
|
//#region src/components/number-field/number-field.variants.d.ts
|
|
@@ -2802,49 +3486,82 @@ declare const numberFieldVariants: tailwind_variants1.TVReturnType<{
|
|
|
2802
3486
|
}, undefined, unknown, unknown, undefined>>;
|
|
2803
3487
|
type NumberFieldVariants = VariantProps<typeof numberFieldVariants>;
|
|
2804
3488
|
//#endregion
|
|
2805
|
-
//#region src/components/number-field/number-field.d.ts
|
|
2806
|
-
interface NumberFieldProps extends NumberFieldVariants, NumberField.Root.Props {}
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
interface
|
|
2812
|
-
|
|
2813
|
-
|
|
3489
|
+
//#region src/components/number-field/number-field.d.ts
|
|
3490
|
+
interface NumberFieldProps extends NumberFieldVariants, NumberField$1.Root.Props {}
|
|
3491
|
+
declare const NumberFieldRoot: ({
|
|
3492
|
+
className,
|
|
3493
|
+
...props
|
|
3494
|
+
}: NumberFieldProps) => react_jsx_runtime284.JSX.Element;
|
|
3495
|
+
interface NumberFieldScrubAreaProps extends NumberField$1.ScrubArea.Props {}
|
|
3496
|
+
declare const NumberFieldScrubArea: ({
|
|
3497
|
+
className,
|
|
3498
|
+
...props
|
|
3499
|
+
}: NumberFieldScrubAreaProps) => react_jsx_runtime284.JSX.Element;
|
|
3500
|
+
interface NumberFieldGroupProps extends NumberField$1.Group.Props {}
|
|
3501
|
+
declare const NumberFieldGroup: ({
|
|
3502
|
+
className,
|
|
3503
|
+
...props
|
|
3504
|
+
}: NumberFieldGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
3505
|
+
interface NumberFieldScrubAreaCursorProps extends NumberField$1.ScrubAreaCursor.Props {}
|
|
3506
|
+
declare const NumberFieldScrubAreaCursor: ({
|
|
3507
|
+
className,
|
|
3508
|
+
children,
|
|
3509
|
+
...props
|
|
3510
|
+
}: NumberFieldScrubAreaCursorProps) => react_jsx_runtime284.JSX.Element;
|
|
3511
|
+
interface NumberFieldDecrementProps extends NumberField$1.Decrement.Props {}
|
|
3512
|
+
declare const NumberFieldDecrement: ({
|
|
3513
|
+
className,
|
|
3514
|
+
children,
|
|
3515
|
+
...props
|
|
3516
|
+
}: NumberFieldDecrementProps) => react_jsx_runtime284.JSX.Element;
|
|
3517
|
+
interface NumberFieldInputProps extends NumberField$1.Input.Props {}
|
|
3518
|
+
declare const NumberFieldInput: ({
|
|
3519
|
+
className,
|
|
3520
|
+
...props
|
|
3521
|
+
}: NumberFieldInputProps) => react_jsx_runtime284.JSX.Element;
|
|
3522
|
+
interface NumberFieldIncrementProps extends NumberField$1.Increment.Props {}
|
|
3523
|
+
declare const NumberFieldIncrement: ({
|
|
3524
|
+
className,
|
|
3525
|
+
children,
|
|
3526
|
+
...props
|
|
3527
|
+
}: NumberFieldIncrementProps) => react_jsx_runtime284.JSX.Element;
|
|
3528
|
+
//#endregion
|
|
3529
|
+
//#region src/components/number-field/index.d.ts
|
|
3530
|
+
declare const NumberField: (({
|
|
2814
3531
|
className,
|
|
2815
3532
|
...props
|
|
2816
|
-
}: NumberFieldProps) =>
|
|
3533
|
+
}: NumberFieldProps) => react_jsx_runtime284.JSX.Element) & {
|
|
2817
3534
|
Decrement: ({
|
|
2818
3535
|
className,
|
|
2819
3536
|
children,
|
|
2820
3537
|
...props
|
|
2821
|
-
}: NumberFieldDecrementProps) =>
|
|
3538
|
+
}: NumberFieldDecrementProps) => react_jsx_runtime284.JSX.Element;
|
|
2822
3539
|
Group: ({
|
|
2823
3540
|
className,
|
|
2824
3541
|
...props
|
|
2825
|
-
}: NumberFieldGroupProps) =>
|
|
3542
|
+
}: NumberFieldGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
2826
3543
|
Increment: ({
|
|
2827
3544
|
className,
|
|
2828
3545
|
children,
|
|
2829
3546
|
...props
|
|
2830
|
-
}: NumberFieldIncrementProps) =>
|
|
3547
|
+
}: NumberFieldIncrementProps) => react_jsx_runtime284.JSX.Element;
|
|
2831
3548
|
Input: ({
|
|
2832
3549
|
className,
|
|
2833
3550
|
...props
|
|
2834
|
-
}: NumberFieldInputProps) =>
|
|
3551
|
+
}: NumberFieldInputProps) => react_jsx_runtime284.JSX.Element;
|
|
2835
3552
|
Root: ({
|
|
2836
3553
|
className,
|
|
2837
3554
|
...props
|
|
2838
|
-
}: NumberFieldProps) =>
|
|
3555
|
+
}: NumberFieldProps) => react_jsx_runtime284.JSX.Element;
|
|
2839
3556
|
ScrubArea: ({
|
|
2840
3557
|
className,
|
|
2841
3558
|
...props
|
|
2842
|
-
}: NumberFieldScrubAreaProps) =>
|
|
3559
|
+
}: NumberFieldScrubAreaProps) => react_jsx_runtime284.JSX.Element;
|
|
2843
3560
|
ScrubAreaCursor: ({
|
|
2844
3561
|
className,
|
|
2845
3562
|
children,
|
|
2846
3563
|
...props
|
|
2847
|
-
}: NumberFieldScrubAreaCursorProps) =>
|
|
3564
|
+
}: NumberFieldScrubAreaCursorProps) => react_jsx_runtime284.JSX.Element;
|
|
2848
3565
|
};
|
|
2849
3566
|
//#endregion
|
|
2850
3567
|
//#region src/components/popover/popover.variants.d.ts
|
|
@@ -2852,10 +3569,10 @@ declare const popoverVariants: tailwind_variants1.TVReturnType<{
|
|
|
2852
3569
|
[key: string]: {
|
|
2853
3570
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2854
3571
|
content?: tailwind_merge0.ClassNameValue;
|
|
2855
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
2856
3572
|
root?: tailwind_merge0.ClassNameValue;
|
|
2857
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
2858
3573
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
3574
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
3575
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
2859
3576
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
2860
3577
|
close?: tailwind_merge0.ClassNameValue;
|
|
2861
3578
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -2869,10 +3586,10 @@ declare const popoverVariants: tailwind_variants1.TVReturnType<{
|
|
|
2869
3586
|
[x: string]: {
|
|
2870
3587
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
2871
3588
|
content?: tailwind_merge0.ClassNameValue;
|
|
2872
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
2873
3589
|
root?: tailwind_merge0.ClassNameValue;
|
|
2874
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
2875
3590
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
3591
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
3592
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
2876
3593
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
2877
3594
|
close?: tailwind_merge0.ClassNameValue;
|
|
2878
3595
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -2899,10 +3616,10 @@ declare const popoverVariants: tailwind_variants1.TVReturnType<{
|
|
|
2899
3616
|
[key: string]: {
|
|
2900
3617
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
2901
3618
|
content?: tailwind_merge0.ClassNameValue;
|
|
2902
|
-
description?: tailwind_merge0.ClassNameValue;
|
|
2903
3619
|
root?: tailwind_merge0.ClassNameValue;
|
|
2904
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
2905
3620
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
3621
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
3622
|
+
description?: tailwind_merge0.ClassNameValue;
|
|
2906
3623
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
2907
3624
|
close?: tailwind_merge0.ClassNameValue;
|
|
2908
3625
|
popup?: tailwind_merge0.ClassNameValue;
|
|
@@ -2942,64 +3659,110 @@ declare const popoverVariants: tailwind_variants1.TVReturnType<{
|
|
|
2942
3659
|
type PopoverVariants = VariantProps<typeof popoverVariants>;
|
|
2943
3660
|
//#endregion
|
|
2944
3661
|
//#region src/components/popover/popover.d.ts
|
|
2945
|
-
interface PopoverProps extends PopoverVariants, Popover.Root.Props {}
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
interface
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
interface
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
...props
|
|
2958
|
-
}:
|
|
3662
|
+
interface PopoverProps extends PopoverVariants, Popover$1.Root.Props {}
|
|
3663
|
+
declare const PopoverRoot: ({
|
|
3664
|
+
...props
|
|
3665
|
+
}: PopoverProps) => react_jsx_runtime284.JSX.Element;
|
|
3666
|
+
interface PopoverTriggerProps extends Popover$1.Trigger.Props {}
|
|
3667
|
+
declare const PopoverTrigger: ({
|
|
3668
|
+
className,
|
|
3669
|
+
...props
|
|
3670
|
+
}: PopoverTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
3671
|
+
interface PopoverPortalProps extends Popover$1.Portal.Props {}
|
|
3672
|
+
declare const PopoverPortal: ({
|
|
3673
|
+
className,
|
|
3674
|
+
...props
|
|
3675
|
+
}: PopoverPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
3676
|
+
interface PopoverBackdropProps extends Popover$1.Backdrop.Props {}
|
|
3677
|
+
declare const PopoverBackdrop: ({
|
|
3678
|
+
className,
|
|
3679
|
+
...props
|
|
3680
|
+
}: PopoverBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
3681
|
+
interface PopoverPositionerProps extends Popover$1.Positioner.Props {}
|
|
3682
|
+
declare const PopoverPositioner: ({
|
|
3683
|
+
className,
|
|
3684
|
+
...props
|
|
3685
|
+
}: PopoverPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
3686
|
+
interface PopoverPopupProps extends Popover$1.Popup.Props {}
|
|
3687
|
+
declare const PopoverPopup: ({
|
|
3688
|
+
className,
|
|
3689
|
+
...props
|
|
3690
|
+
}: PopoverPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
3691
|
+
interface PopoverArrowProps extends Popover$1.Arrow.Props {}
|
|
3692
|
+
declare const PopoverArrow: ({
|
|
3693
|
+
className,
|
|
3694
|
+
...props
|
|
3695
|
+
}: PopoverArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
3696
|
+
interface PopoverViewportProps extends Popover$1.Viewport.Props {}
|
|
3697
|
+
declare const PopoverViewport: ({
|
|
3698
|
+
className,
|
|
3699
|
+
...props
|
|
3700
|
+
}: PopoverViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
3701
|
+
interface PopoverTitleProps extends Popover$1.Title.Props {}
|
|
3702
|
+
declare const PopoverTitle: ({
|
|
3703
|
+
className,
|
|
3704
|
+
...props
|
|
3705
|
+
}: PopoverTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
3706
|
+
interface PopoverDescriptionProps extends Popover$1.Description.Props {}
|
|
3707
|
+
declare const PopoverDescription: ({
|
|
3708
|
+
className,
|
|
3709
|
+
...props
|
|
3710
|
+
}: PopoverDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
3711
|
+
interface PopoverCloseProps extends Popover$1.Close.Props {}
|
|
3712
|
+
declare const PopoverClose: ({
|
|
3713
|
+
className,
|
|
3714
|
+
children,
|
|
3715
|
+
...props
|
|
3716
|
+
}: PopoverCloseProps) => react_jsx_runtime284.JSX.Element;
|
|
3717
|
+
//#endregion
|
|
3718
|
+
//#region src/components/popover/index.d.ts
|
|
3719
|
+
declare const Popover: (({
|
|
3720
|
+
...props
|
|
3721
|
+
}: PopoverProps) => react_jsx_runtime284.JSX.Element) & {
|
|
2959
3722
|
Arrow: ({
|
|
2960
3723
|
className,
|
|
2961
3724
|
...props
|
|
2962
|
-
}: PopoverArrowProps) =>
|
|
3725
|
+
}: PopoverArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
2963
3726
|
Backdrop: ({
|
|
2964
3727
|
className,
|
|
2965
3728
|
...props
|
|
2966
|
-
}: PopoverBackdropProps) =>
|
|
3729
|
+
}: PopoverBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
2967
3730
|
Close: ({
|
|
2968
3731
|
className,
|
|
2969
3732
|
children,
|
|
2970
3733
|
...props
|
|
2971
|
-
}: PopoverCloseProps) =>
|
|
3734
|
+
}: PopoverCloseProps) => react_jsx_runtime284.JSX.Element;
|
|
2972
3735
|
Description: ({
|
|
2973
3736
|
className,
|
|
2974
3737
|
...props
|
|
2975
|
-
}: PopoverDescriptionProps) =>
|
|
3738
|
+
}: PopoverDescriptionProps) => react_jsx_runtime284.JSX.Element;
|
|
2976
3739
|
Popup: ({
|
|
2977
3740
|
className,
|
|
2978
3741
|
...props
|
|
2979
|
-
}: PopoverPopupProps) =>
|
|
3742
|
+
}: PopoverPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
2980
3743
|
Portal: ({
|
|
2981
3744
|
className,
|
|
2982
3745
|
...props
|
|
2983
|
-
}: PopoverPortalProps) =>
|
|
3746
|
+
}: PopoverPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
2984
3747
|
Positioner: ({
|
|
2985
3748
|
className,
|
|
2986
3749
|
...props
|
|
2987
|
-
}: PopoverPositionerProps) =>
|
|
3750
|
+
}: PopoverPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
2988
3751
|
Root: ({
|
|
2989
3752
|
...props
|
|
2990
|
-
}: PopoverProps) =>
|
|
3753
|
+
}: PopoverProps) => react_jsx_runtime284.JSX.Element;
|
|
2991
3754
|
Title: ({
|
|
2992
3755
|
className,
|
|
2993
3756
|
...props
|
|
2994
|
-
}: PopoverTitleProps) =>
|
|
3757
|
+
}: PopoverTitleProps) => react_jsx_runtime284.JSX.Element;
|
|
2995
3758
|
Trigger: ({
|
|
2996
3759
|
className,
|
|
2997
3760
|
...props
|
|
2998
|
-
}: PopoverTriggerProps) =>
|
|
3761
|
+
}: PopoverTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
2999
3762
|
Viewport: ({
|
|
3000
3763
|
className,
|
|
3001
3764
|
...props
|
|
3002
|
-
}: PopoverViewportProps) =>
|
|
3765
|
+
}: PopoverViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
3003
3766
|
};
|
|
3004
3767
|
//#endregion
|
|
3005
3768
|
//#region src/components/preview-card/preview-card.variants.d.ts
|
|
@@ -3067,43 +3830,72 @@ declare const previewCardVariants: tailwind_variants1.TVReturnType<{
|
|
|
3067
3830
|
type PreviewCardVariants = VariantProps<typeof previewCardVariants>;
|
|
3068
3831
|
//#endregion
|
|
3069
3832
|
//#region src/components/preview-card/preview-card.d.ts
|
|
3070
|
-
interface PreviewCardProps extends PreviewCardVariants, PreviewCard.Root.Props {}
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
interface
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3833
|
+
interface PreviewCardProps extends PreviewCardVariants, PreviewCard$1.Root.Props {}
|
|
3834
|
+
declare const PreviewCardRoot: ({
|
|
3835
|
+
...props
|
|
3836
|
+
}: PreviewCardProps) => react_jsx_runtime284.JSX.Element;
|
|
3837
|
+
interface PreviewCardTriggerProps extends PreviewCard$1.Trigger.Props {}
|
|
3838
|
+
declare const PreviewCardTrigger: ({
|
|
3839
|
+
className,
|
|
3840
|
+
...props
|
|
3841
|
+
}: PreviewCardTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
3842
|
+
interface PreviewCardPortalProps extends PreviewCard$1.Portal.Props {}
|
|
3843
|
+
declare const PreviewCardPortal: ({
|
|
3844
|
+
className,
|
|
3845
|
+
...props
|
|
3846
|
+
}: PreviewCardPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
3847
|
+
interface PreviewCardBackdropProps extends PreviewCard$1.Backdrop.Props {}
|
|
3848
|
+
declare const PreviewCardBackdrop: ({
|
|
3849
|
+
className,
|
|
3850
|
+
...props
|
|
3851
|
+
}: PreviewCardBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
3852
|
+
interface PreviewCardPositionerProps extends PreviewCard$1.Positioner.Props {}
|
|
3853
|
+
declare const PreviewCardPositioner: ({
|
|
3854
|
+
className,
|
|
3855
|
+
...props
|
|
3856
|
+
}: PreviewCardPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
3857
|
+
interface PreviewCardPopupProps extends PreviewCard$1.Popup.Props {}
|
|
3858
|
+
declare const PreviewCardPopup: ({
|
|
3859
|
+
className,
|
|
3860
|
+
...props
|
|
3861
|
+
}: PreviewCardPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
3862
|
+
interface PreviewCardArrowProps extends PreviewCard$1.Arrow.Props {}
|
|
3863
|
+
declare const PreviewCardArrow: ({
|
|
3864
|
+
className,
|
|
3865
|
+
...props
|
|
3866
|
+
}: PreviewCardArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
3867
|
+
//#endregion
|
|
3868
|
+
//#region src/components/preview-card/index.d.ts
|
|
3869
|
+
declare const PreviewCard: (({
|
|
3870
|
+
...props
|
|
3871
|
+
}: PreviewCardProps) => react_jsx_runtime284.JSX.Element) & {
|
|
3080
3872
|
Arrow: ({
|
|
3081
3873
|
className,
|
|
3082
3874
|
...props
|
|
3083
|
-
}: PreviewCardArrowProps) =>
|
|
3875
|
+
}: PreviewCardArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
3084
3876
|
Backdrop: ({
|
|
3085
3877
|
className,
|
|
3086
3878
|
...props
|
|
3087
|
-
}: PreviewCardBackdropProps) =>
|
|
3879
|
+
}: PreviewCardBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
3088
3880
|
Popup: ({
|
|
3089
3881
|
className,
|
|
3090
3882
|
...props
|
|
3091
|
-
}: PreviewCardPopupProps) =>
|
|
3883
|
+
}: PreviewCardPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
3092
3884
|
Portal: ({
|
|
3093
3885
|
className,
|
|
3094
3886
|
...props
|
|
3095
|
-
}: PreviewCardPortalProps) =>
|
|
3887
|
+
}: PreviewCardPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
3096
3888
|
Positioner: ({
|
|
3097
3889
|
className,
|
|
3098
3890
|
...props
|
|
3099
|
-
}: PreviewCardPositionerProps) =>
|
|
3891
|
+
}: PreviewCardPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
3100
3892
|
Root: ({
|
|
3101
3893
|
...props
|
|
3102
|
-
}: PreviewCardProps) =>
|
|
3894
|
+
}: PreviewCardProps) => react_jsx_runtime284.JSX.Element;
|
|
3103
3895
|
Trigger: ({
|
|
3104
3896
|
className,
|
|
3105
3897
|
...props
|
|
3106
|
-
}: PreviewCardTriggerProps) =>
|
|
3898
|
+
}: PreviewCardTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
3107
3899
|
};
|
|
3108
3900
|
//#endregion
|
|
3109
3901
|
//#region src/components/progress/progress.variants.d.ts
|
|
@@ -3207,54 +3999,78 @@ declare const progressVariants: tailwind_variants1.TVReturnType<{
|
|
|
3207
3999
|
type ProgressVariants = VariantProps<typeof progressVariants>;
|
|
3208
4000
|
//#endregion
|
|
3209
4001
|
//#region src/components/progress/progress.d.ts
|
|
3210
|
-
interface ProgressProps extends ProgressVariants, Progress.Root.Props {}
|
|
3211
|
-
|
|
3212
|
-
interface ProgressValueProps extends Progress.Value.Props {}
|
|
3213
|
-
interface ProgressTrackProps extends Progress.Track.Props {}
|
|
3214
|
-
interface ProgressIndicatorProps extends Progress.Indicator.Props {}
|
|
3215
|
-
declare const _default$22: (({
|
|
4002
|
+
interface ProgressProps extends ProgressVariants, Progress$1.Root.Props {}
|
|
4003
|
+
declare const ProgressRoot: ({
|
|
3216
4004
|
className,
|
|
3217
4005
|
variant,
|
|
3218
4006
|
size,
|
|
3219
4007
|
...props
|
|
3220
|
-
}: ProgressProps) =>
|
|
4008
|
+
}: ProgressProps) => react_jsx_runtime284.JSX.Element;
|
|
4009
|
+
interface ProgressLabelProps extends Progress$1.Label.Props {}
|
|
4010
|
+
declare const ProgressLabel: ({
|
|
4011
|
+
className,
|
|
4012
|
+
...props
|
|
4013
|
+
}: ProgressLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
4014
|
+
interface ProgressValueProps extends Progress$1.Value.Props {}
|
|
4015
|
+
declare const ProgressValue: ({
|
|
4016
|
+
className,
|
|
4017
|
+
...props
|
|
4018
|
+
}: ProgressValueProps) => react_jsx_runtime284.JSX.Element;
|
|
4019
|
+
interface ProgressTrackProps extends Progress$1.Track.Props {}
|
|
4020
|
+
declare const ProgressTrack: ({
|
|
4021
|
+
className,
|
|
4022
|
+
...props
|
|
4023
|
+
}: ProgressTrackProps) => react_jsx_runtime284.JSX.Element;
|
|
4024
|
+
interface ProgressIndicatorProps extends Progress$1.Indicator.Props {}
|
|
4025
|
+
declare const ProgressIndicator: ({
|
|
4026
|
+
className,
|
|
4027
|
+
...props
|
|
4028
|
+
}: ProgressIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
4029
|
+
//#endregion
|
|
4030
|
+
//#region src/components/progress/index.d.ts
|
|
4031
|
+
declare const Progress: (({
|
|
4032
|
+
className,
|
|
4033
|
+
variant,
|
|
4034
|
+
size,
|
|
4035
|
+
...props
|
|
4036
|
+
}: ProgressProps) => react_jsx_runtime284.JSX.Element) & {
|
|
3221
4037
|
Indicator: ({
|
|
3222
4038
|
className,
|
|
3223
4039
|
...props
|
|
3224
|
-
}: ProgressIndicatorProps) =>
|
|
4040
|
+
}: ProgressIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
3225
4041
|
Label: ({
|
|
3226
4042
|
className,
|
|
3227
4043
|
...props
|
|
3228
|
-
}: ProgressLabelProps) =>
|
|
4044
|
+
}: ProgressLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
3229
4045
|
Root: ({
|
|
3230
4046
|
className,
|
|
3231
4047
|
variant,
|
|
3232
4048
|
size,
|
|
3233
4049
|
...props
|
|
3234
|
-
}: ProgressProps) =>
|
|
4050
|
+
}: ProgressProps) => react_jsx_runtime284.JSX.Element;
|
|
3235
4051
|
Track: ({
|
|
3236
4052
|
className,
|
|
3237
4053
|
...props
|
|
3238
|
-
}: ProgressTrackProps) =>
|
|
4054
|
+
}: ProgressTrackProps) => react_jsx_runtime284.JSX.Element;
|
|
3239
4055
|
Value: ({
|
|
3240
4056
|
className,
|
|
3241
4057
|
...props
|
|
3242
|
-
}: ProgressValueProps) =>
|
|
4058
|
+
}: ProgressValueProps) => react_jsx_runtime284.JSX.Element;
|
|
3243
4059
|
};
|
|
3244
4060
|
//#endregion
|
|
3245
4061
|
//#region src/components/radio/radio.variants.d.ts
|
|
3246
4062
|
declare const radioVariants: tailwind_variants1.TVReturnType<{
|
|
3247
4063
|
[key: string]: {
|
|
3248
4064
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
3249
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
3250
4065
|
root?: tailwind_merge0.ClassNameValue;
|
|
4066
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
3251
4067
|
};
|
|
3252
4068
|
};
|
|
3253
4069
|
} | {
|
|
3254
4070
|
[x: string]: {
|
|
3255
4071
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
3256
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
3257
4072
|
root?: tailwind_merge0.ClassNameValue;
|
|
4073
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
3258
4074
|
};
|
|
3259
4075
|
};
|
|
3260
4076
|
} | {}, {
|
|
@@ -3263,8 +4079,8 @@ declare const radioVariants: tailwind_variants1.TVReturnType<{
|
|
|
3263
4079
|
}, undefined, {
|
|
3264
4080
|
[key: string]: {
|
|
3265
4081
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
3266
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
3267
4082
|
root?: tailwind_merge0.ClassNameValue;
|
|
4083
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
3268
4084
|
};
|
|
3269
4085
|
};
|
|
3270
4086
|
} | {}, {
|
|
@@ -3277,20 +4093,30 @@ declare const radioVariants: tailwind_variants1.TVReturnType<{
|
|
|
3277
4093
|
type RadioVariants = VariantProps<typeof radioVariants>;
|
|
3278
4094
|
//#endregion
|
|
3279
4095
|
//#region src/components/radio/radio.d.ts
|
|
3280
|
-
interface RadioProps extends RadioVariants, Radio.Root.Props {}
|
|
3281
|
-
|
|
3282
|
-
|
|
4096
|
+
interface RadioProps extends RadioVariants, Radio$1.Root.Props {}
|
|
4097
|
+
declare const RadioRoot: ({
|
|
4098
|
+
className,
|
|
4099
|
+
...props
|
|
4100
|
+
}: RadioProps) => react_jsx_runtime284.JSX.Element;
|
|
4101
|
+
interface RadioIndicatorProps extends Radio$1.Indicator.Props {}
|
|
4102
|
+
declare const RadioIndicator: ({
|
|
4103
|
+
className,
|
|
4104
|
+
...props
|
|
4105
|
+
}: RadioIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
4106
|
+
//#endregion
|
|
4107
|
+
//#region src/components/radio/index.d.ts
|
|
4108
|
+
declare const Radio: (({
|
|
3283
4109
|
className,
|
|
3284
4110
|
...props
|
|
3285
|
-
}: RadioProps) =>
|
|
4111
|
+
}: RadioProps) => react_jsx_runtime284.JSX.Element) & {
|
|
3286
4112
|
Indicator: ({
|
|
3287
4113
|
className,
|
|
3288
4114
|
...props
|
|
3289
|
-
}: RadioIndicatorProps) =>
|
|
4115
|
+
}: RadioIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
3290
4116
|
Root: ({
|
|
3291
4117
|
className,
|
|
3292
4118
|
...props
|
|
3293
|
-
}: RadioProps) =>
|
|
4119
|
+
}: RadioProps) => react_jsx_runtime284.JSX.Element;
|
|
3294
4120
|
};
|
|
3295
4121
|
//#endregion
|
|
3296
4122
|
//#region src/components/radio-group/radio-group.variants.d.ts
|
|
@@ -3302,7 +4128,7 @@ interface RadioGroupProps extends RadioGroupVariants, RadioGroup$1.Props {}
|
|
|
3302
4128
|
declare const RadioGroup: ({
|
|
3303
4129
|
className,
|
|
3304
4130
|
...props
|
|
3305
|
-
}: RadioGroupProps) =>
|
|
4131
|
+
}: RadioGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
3306
4132
|
//#endregion
|
|
3307
4133
|
//#region src/components/scroll-area/scroll-area.variants.d.ts
|
|
3308
4134
|
declare const scrollAreaVariants: tailwind_variants1.TVReturnType<{
|
|
@@ -3363,43 +4189,65 @@ declare const scrollAreaVariants: tailwind_variants1.TVReturnType<{
|
|
|
3363
4189
|
type ScrollAreaVariants = VariantProps<typeof scrollAreaVariants>;
|
|
3364
4190
|
//#endregion
|
|
3365
4191
|
//#region src/components/scroll-area/scroll-area.d.ts
|
|
3366
|
-
interface ScrollAreaProps extends ScrollAreaVariants, ScrollArea.Root.Props {}
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
4192
|
+
interface ScrollAreaProps extends ScrollAreaVariants, ScrollArea$1.Root.Props {}
|
|
4193
|
+
declare const ScrollAreaRoot: ({
|
|
4194
|
+
className,
|
|
4195
|
+
...props
|
|
4196
|
+
}: ScrollAreaProps) => react_jsx_runtime284.JSX.Element;
|
|
4197
|
+
interface ScrollAreaViewportProps extends ScrollArea$1.Viewport.Props {}
|
|
4198
|
+
declare const ScrollAreaViewport: ({
|
|
4199
|
+
className,
|
|
4200
|
+
...props
|
|
4201
|
+
}: ScrollAreaViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
4202
|
+
interface ScrollAreaContentProps extends ScrollArea$1.Content.Props {}
|
|
4203
|
+
declare const ScrollAreaContent: ({
|
|
4204
|
+
className,
|
|
4205
|
+
...props
|
|
4206
|
+
}: ScrollAreaContentProps) => react_jsx_runtime284.JSX.Element;
|
|
4207
|
+
interface ScrollAreaScrollbarProps extends ScrollArea$1.Scrollbar.Props {}
|
|
4208
|
+
declare const ScrollAreaScrollbar: ({
|
|
4209
|
+
className,
|
|
4210
|
+
...props
|
|
4211
|
+
}: ScrollAreaScrollbarProps) => react_jsx_runtime284.JSX.Element;
|
|
4212
|
+
interface ScrollAreaThumbProps extends ScrollArea$1.Thumb.Props {}
|
|
4213
|
+
declare const ScrollAreaThumb: ({
|
|
3372
4214
|
className,
|
|
3373
4215
|
...props
|
|
3374
|
-
}:
|
|
4216
|
+
}: ScrollAreaThumbProps) => react_jsx_runtime284.JSX.Element;
|
|
4217
|
+
//#endregion
|
|
4218
|
+
//#region src/components/scroll-area/index.d.ts
|
|
4219
|
+
declare const ScrollArea: (({
|
|
4220
|
+
className,
|
|
4221
|
+
...props
|
|
4222
|
+
}: ScrollAreaProps) => react_jsx_runtime284.JSX.Element) & {
|
|
3375
4223
|
Content: ({
|
|
3376
4224
|
className,
|
|
3377
4225
|
...props
|
|
3378
|
-
}: ScrollAreaContentProps) =>
|
|
4226
|
+
}: ScrollAreaContentProps) => react_jsx_runtime284.JSX.Element;
|
|
3379
4227
|
Root: ({
|
|
3380
4228
|
className,
|
|
3381
4229
|
...props
|
|
3382
|
-
}: ScrollAreaProps) =>
|
|
4230
|
+
}: ScrollAreaProps) => react_jsx_runtime284.JSX.Element;
|
|
3383
4231
|
Scrollbar: ({
|
|
3384
4232
|
className,
|
|
3385
4233
|
...props
|
|
3386
|
-
}: ScrollAreaScrollbarProps) =>
|
|
4234
|
+
}: ScrollAreaScrollbarProps) => react_jsx_runtime284.JSX.Element;
|
|
3387
4235
|
Thumb: ({
|
|
3388
4236
|
className,
|
|
3389
4237
|
...props
|
|
3390
|
-
}: ScrollAreaThumbProps) =>
|
|
4238
|
+
}: ScrollAreaThumbProps) => react_jsx_runtime284.JSX.Element;
|
|
3391
4239
|
Viewport: ({
|
|
3392
4240
|
className,
|
|
3393
4241
|
...props
|
|
3394
|
-
}: ScrollAreaViewportProps) =>
|
|
4242
|
+
}: ScrollAreaViewportProps) => react_jsx_runtime284.JSX.Element;
|
|
3395
4243
|
};
|
|
3396
4244
|
//#endregion
|
|
3397
4245
|
//#region src/components/select/select.variants.d.ts
|
|
3398
4246
|
declare const selectVariants: tailwind_variants1.TVReturnType<{
|
|
3399
4247
|
[key: string]: {
|
|
3400
4248
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
3401
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
3402
4249
|
item?: tailwind_merge0.ClassNameValue;
|
|
4250
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
3403
4251
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
3404
4252
|
value?: tailwind_merge0.ClassNameValue;
|
|
3405
4253
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
@@ -3419,8 +4267,8 @@ declare const selectVariants: tailwind_variants1.TVReturnType<{
|
|
|
3419
4267
|
} | {
|
|
3420
4268
|
[x: string]: {
|
|
3421
4269
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
3422
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
3423
4270
|
item?: tailwind_merge0.ClassNameValue;
|
|
4271
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
3424
4272
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
3425
4273
|
value?: tailwind_merge0.ClassNameValue;
|
|
3426
4274
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
@@ -3457,8 +4305,8 @@ declare const selectVariants: tailwind_variants1.TVReturnType<{
|
|
|
3457
4305
|
}, undefined, {
|
|
3458
4306
|
[key: string]: {
|
|
3459
4307
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
3460
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
3461
4308
|
item?: tailwind_merge0.ClassNameValue;
|
|
4309
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
3462
4310
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
3463
4311
|
value?: tailwind_merge0.ClassNameValue;
|
|
3464
4312
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
@@ -3513,86 +4361,155 @@ declare const selectVariants: tailwind_variants1.TVReturnType<{
|
|
|
3513
4361
|
type SelectVariants = VariantProps<typeof selectVariants>;
|
|
3514
4362
|
//#endregion
|
|
3515
4363
|
//#region src/components/select/select.d.ts
|
|
3516
|
-
interface SelectProps extends SelectVariants, Select.Root.Props<unknown, boolean> {}
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
interface
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
interface
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
interface
|
|
3532
|
-
declare const
|
|
3533
|
-
|
|
3534
|
-
|
|
4364
|
+
interface SelectProps extends SelectVariants, Select$1.Root.Props<unknown, boolean> {}
|
|
4365
|
+
declare const SelectRoot: ({
|
|
4366
|
+
...props
|
|
4367
|
+
}: SelectProps) => react_jsx_runtime284.JSX.Element;
|
|
4368
|
+
interface SelectTriggerProps extends Select$1.Trigger.Props {}
|
|
4369
|
+
declare const SelectTrigger: ({
|
|
4370
|
+
className,
|
|
4371
|
+
...props
|
|
4372
|
+
}: SelectTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
4373
|
+
interface SelectIconProps extends Select$1.Icon.Props {}
|
|
4374
|
+
declare const SelectIcon: ({
|
|
4375
|
+
className,
|
|
4376
|
+
children,
|
|
4377
|
+
...props
|
|
4378
|
+
}: SelectIconProps) => react_jsx_runtime284.JSX.Element;
|
|
4379
|
+
interface SelectValueProps extends Select$1.Value.Props {}
|
|
4380
|
+
declare const SelectValue: ({
|
|
4381
|
+
className,
|
|
4382
|
+
...props
|
|
4383
|
+
}: SelectValueProps) => react_jsx_runtime284.JSX.Element;
|
|
4384
|
+
interface SelectPortalProps extends Select$1.Portal.Props {}
|
|
4385
|
+
declare const SelectPortal: ({
|
|
4386
|
+
...props
|
|
4387
|
+
}: SelectPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
4388
|
+
interface SelectBackdropProps extends Select$1.Backdrop.Props {}
|
|
4389
|
+
declare const SelectBackdrop: ({
|
|
4390
|
+
className,
|
|
4391
|
+
...props
|
|
4392
|
+
}: SelectBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
4393
|
+
interface SelectPositionerProps extends Select$1.Positioner.Props {}
|
|
4394
|
+
declare const SelectPositioner: ({
|
|
4395
|
+
className,
|
|
4396
|
+
...props
|
|
4397
|
+
}: SelectPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
4398
|
+
interface SelectPopupProps extends Select$1.Popup.Props {}
|
|
4399
|
+
declare const SelectPopup: ({
|
|
4400
|
+
className,
|
|
4401
|
+
...props
|
|
4402
|
+
}: SelectPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
4403
|
+
interface SelectArrowProps extends Select$1.Arrow.Props {}
|
|
4404
|
+
declare const SelectArrow: ({
|
|
4405
|
+
className,
|
|
4406
|
+
...props
|
|
4407
|
+
}: SelectArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
4408
|
+
interface SelectListProps extends Select$1.List.Props {}
|
|
4409
|
+
declare const SelectList: ({
|
|
4410
|
+
className,
|
|
4411
|
+
...props
|
|
4412
|
+
}: SelectListProps) => react_jsx_runtime284.JSX.Element;
|
|
4413
|
+
interface SelectItemIndicatorProps extends Select$1.ItemIndicator.Props {}
|
|
4414
|
+
declare const SelectItemIndicator: ({
|
|
4415
|
+
className,
|
|
4416
|
+
children,
|
|
4417
|
+
...props
|
|
4418
|
+
}: SelectItemIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
4419
|
+
interface SelectItemTextProps extends Select$1.ItemText.Props {}
|
|
4420
|
+
declare const SelectItemText: ({
|
|
4421
|
+
className,
|
|
4422
|
+
...props
|
|
4423
|
+
}: SelectItemTextProps) => react_jsx_runtime284.JSX.Element;
|
|
4424
|
+
interface SelectItemProps extends Select$1.Item.Props {}
|
|
4425
|
+
declare const SelectItem: ({
|
|
4426
|
+
className,
|
|
4427
|
+
...props
|
|
4428
|
+
}: SelectItemProps) => react_jsx_runtime284.JSX.Element;
|
|
4429
|
+
interface SelectGroupProps extends Select$1.Group.Props {}
|
|
4430
|
+
declare const SelectGroup: ({
|
|
4431
|
+
className,
|
|
4432
|
+
...props
|
|
4433
|
+
}: SelectGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
4434
|
+
interface SelectGroupLabelProps extends Select$1.GroupLabel.Props {}
|
|
4435
|
+
declare const SelectGroupLabel: ({
|
|
4436
|
+
className,
|
|
4437
|
+
...props
|
|
4438
|
+
}: SelectGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
4439
|
+
interface SelectSeparatorProps extends Select$1.Separator.Props {}
|
|
4440
|
+
declare const SelectSeparator: ({
|
|
4441
|
+
className,
|
|
4442
|
+
...props
|
|
4443
|
+
}: SelectSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
4444
|
+
//#endregion
|
|
4445
|
+
//#region src/components/select/index.d.ts
|
|
4446
|
+
declare const Select: (({
|
|
4447
|
+
...props
|
|
4448
|
+
}: SelectProps) => react_jsx_runtime284.JSX.Element) & {
|
|
3535
4449
|
Arrow: ({
|
|
3536
4450
|
className,
|
|
3537
4451
|
...props
|
|
3538
|
-
}: SelectArrowProps) =>
|
|
4452
|
+
}: SelectArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
3539
4453
|
Backdrop: ({
|
|
3540
4454
|
className,
|
|
3541
4455
|
...props
|
|
3542
|
-
}: SelectBackdropProps) =>
|
|
4456
|
+
}: SelectBackdropProps) => react_jsx_runtime284.JSX.Element;
|
|
3543
4457
|
Group: ({
|
|
3544
4458
|
className,
|
|
3545
4459
|
...props
|
|
3546
|
-
}: SelectGroupProps) =>
|
|
4460
|
+
}: SelectGroupProps) => react_jsx_runtime284.JSX.Element;
|
|
3547
4461
|
GroupLabel: ({
|
|
3548
4462
|
className,
|
|
3549
4463
|
...props
|
|
3550
|
-
}: SelectGroupLabelProps) =>
|
|
4464
|
+
}: SelectGroupLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
3551
4465
|
Icon: ({
|
|
3552
4466
|
className,
|
|
3553
4467
|
children,
|
|
3554
4468
|
...props
|
|
3555
|
-
}: SelectIconProps) =>
|
|
4469
|
+
}: SelectIconProps) => react_jsx_runtime284.JSX.Element;
|
|
3556
4470
|
Item: ({
|
|
3557
4471
|
className,
|
|
3558
4472
|
...props
|
|
3559
|
-
}: SelectItemProps) =>
|
|
4473
|
+
}: SelectItemProps) => react_jsx_runtime284.JSX.Element;
|
|
3560
4474
|
ItemIndicator: ({
|
|
3561
4475
|
className,
|
|
3562
4476
|
children,
|
|
3563
4477
|
...props
|
|
3564
|
-
}: SelectItemIndicatorProps) =>
|
|
4478
|
+
}: SelectItemIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
3565
4479
|
ItemText: ({
|
|
3566
4480
|
className,
|
|
3567
4481
|
...props
|
|
3568
|
-
}: SelectItemTextProps) =>
|
|
4482
|
+
}: SelectItemTextProps) => react_jsx_runtime284.JSX.Element;
|
|
3569
4483
|
List: ({
|
|
3570
4484
|
className,
|
|
3571
4485
|
...props
|
|
3572
|
-
}: SelectListProps) =>
|
|
4486
|
+
}: SelectListProps) => react_jsx_runtime284.JSX.Element;
|
|
3573
4487
|
Popup: ({
|
|
3574
4488
|
className,
|
|
3575
4489
|
...props
|
|
3576
|
-
}: SelectPopupProps) =>
|
|
4490
|
+
}: SelectPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
3577
4491
|
Portal: ({
|
|
3578
4492
|
...props
|
|
3579
|
-
}: SelectPortalProps) =>
|
|
4493
|
+
}: SelectPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
3580
4494
|
Positioner: ({
|
|
3581
4495
|
className,
|
|
3582
4496
|
...props
|
|
3583
|
-
}: SelectPositionerProps) =>
|
|
4497
|
+
}: SelectPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
4498
|
+
Root: ({
|
|
4499
|
+
...props
|
|
4500
|
+
}: SelectProps) => react_jsx_runtime284.JSX.Element;
|
|
3584
4501
|
Separator: ({
|
|
3585
4502
|
className,
|
|
3586
4503
|
...props
|
|
3587
|
-
}: SelectSeparatorProps) =>
|
|
4504
|
+
}: SelectSeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
3588
4505
|
Trigger: ({
|
|
3589
4506
|
className,
|
|
3590
4507
|
...props
|
|
3591
|
-
}: SelectTriggerProps) =>
|
|
4508
|
+
}: SelectTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
3592
4509
|
Value: ({
|
|
3593
4510
|
className,
|
|
3594
4511
|
...props
|
|
3595
|
-
}: SelectValueProps) =>
|
|
4512
|
+
}: SelectValueProps) => react_jsx_runtime284.JSX.Element;
|
|
3596
4513
|
};
|
|
3597
4514
|
//#endregion
|
|
3598
4515
|
//#region src/components/separator/separator.variants.d.ts
|
|
@@ -3620,19 +4537,19 @@ declare const Separator: ({
|
|
|
3620
4537
|
className,
|
|
3621
4538
|
orientation,
|
|
3622
4539
|
...props
|
|
3623
|
-
}: SeparatorProps) =>
|
|
4540
|
+
}: SeparatorProps) => react_jsx_runtime284.JSX.Element;
|
|
3624
4541
|
//#endregion
|
|
3625
4542
|
//#region src/components/sidebar/sidebar.variants.d.ts
|
|
3626
4543
|
declare const sidebarVariants: tailwind_variants1.TVReturnType<{
|
|
3627
4544
|
[key: string]: {
|
|
3628
4545
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
3629
4546
|
content?: tailwind_merge0.ClassNameValue;
|
|
3630
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
3631
|
-
footer?: tailwind_merge0.ClassNameValue;
|
|
3632
4547
|
header?: tailwind_merge0.ClassNameValue;
|
|
3633
|
-
menu?: tailwind_merge0.ClassNameValue;
|
|
3634
4548
|
panel?: tailwind_merge0.ClassNameValue;
|
|
4549
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
3635
4550
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
4551
|
+
footer?: tailwind_merge0.ClassNameValue;
|
|
4552
|
+
menu?: tailwind_merge0.ClassNameValue;
|
|
3636
4553
|
menuItem?: tailwind_merge0.ClassNameValue;
|
|
3637
4554
|
menuLabel?: tailwind_merge0.ClassNameValue;
|
|
3638
4555
|
outlet?: tailwind_merge0.ClassNameValue;
|
|
@@ -3642,12 +4559,12 @@ declare const sidebarVariants: tailwind_variants1.TVReturnType<{
|
|
|
3642
4559
|
[x: string]: {
|
|
3643
4560
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
3644
4561
|
content?: tailwind_merge0.ClassNameValue;
|
|
3645
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
3646
|
-
footer?: tailwind_merge0.ClassNameValue;
|
|
3647
4562
|
header?: tailwind_merge0.ClassNameValue;
|
|
3648
|
-
menu?: tailwind_merge0.ClassNameValue;
|
|
3649
4563
|
panel?: tailwind_merge0.ClassNameValue;
|
|
4564
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
3650
4565
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
4566
|
+
footer?: tailwind_merge0.ClassNameValue;
|
|
4567
|
+
menu?: tailwind_merge0.ClassNameValue;
|
|
3651
4568
|
menuItem?: tailwind_merge0.ClassNameValue;
|
|
3652
4569
|
menuLabel?: tailwind_merge0.ClassNameValue;
|
|
3653
4570
|
outlet?: tailwind_merge0.ClassNameValue;
|
|
@@ -3668,12 +4585,12 @@ declare const sidebarVariants: tailwind_variants1.TVReturnType<{
|
|
|
3668
4585
|
[key: string]: {
|
|
3669
4586
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
3670
4587
|
content?: tailwind_merge0.ClassNameValue;
|
|
3671
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
3672
|
-
footer?: tailwind_merge0.ClassNameValue;
|
|
3673
4588
|
header?: tailwind_merge0.ClassNameValue;
|
|
3674
|
-
menu?: tailwind_merge0.ClassNameValue;
|
|
3675
4589
|
panel?: tailwind_merge0.ClassNameValue;
|
|
4590
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
3676
4591
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
4592
|
+
footer?: tailwind_merge0.ClassNameValue;
|
|
4593
|
+
menu?: tailwind_merge0.ClassNameValue;
|
|
3677
4594
|
menuItem?: tailwind_merge0.ClassNameValue;
|
|
3678
4595
|
menuLabel?: tailwind_merge0.ClassNameValue;
|
|
3679
4596
|
outlet?: tailwind_merge0.ClassNameValue;
|
|
@@ -3709,74 +4626,119 @@ interface SidebarProps extends SidebarVariants, React$1.ComponentProps<"div"> {
|
|
|
3709
4626
|
isOpen?: boolean;
|
|
3710
4627
|
onOpenChange?: (isOpen: boolean) => void;
|
|
3711
4628
|
}
|
|
4629
|
+
declare const SidebarRoot: ({
|
|
4630
|
+
className,
|
|
4631
|
+
isOpen,
|
|
4632
|
+
onOpenChange,
|
|
4633
|
+
...props
|
|
4634
|
+
}: SidebarProps) => react_jsx_runtime284.JSX.Element;
|
|
3712
4635
|
interface SidebarPanelProps extends React$1.ComponentProps<"aside"> {}
|
|
4636
|
+
declare const SidebarPanel: ({
|
|
4637
|
+
className,
|
|
4638
|
+
...props
|
|
4639
|
+
}: SidebarPanelProps) => react_jsx_runtime284.JSX.Element;
|
|
3713
4640
|
interface SidebarHeaderProps extends React$1.ComponentProps<"header"> {}
|
|
4641
|
+
declare const SidebarHeader: ({
|
|
4642
|
+
className,
|
|
4643
|
+
...props
|
|
4644
|
+
}: SidebarHeaderProps) => react_jsx_runtime284.JSX.Element;
|
|
3714
4645
|
interface SidebarContentProps extends React$1.ComponentProps<"div"> {}
|
|
4646
|
+
declare const SidebarContent: ({
|
|
4647
|
+
className,
|
|
4648
|
+
...props
|
|
4649
|
+
}: SidebarContentProps) => react_jsx_runtime284.JSX.Element;
|
|
3715
4650
|
interface SidebarFooterProps extends React$1.ComponentProps<"footer"> {}
|
|
4651
|
+
declare const SidebarFooter: ({
|
|
4652
|
+
className,
|
|
4653
|
+
...props
|
|
4654
|
+
}: SidebarFooterProps) => react_jsx_runtime284.JSX.Element;
|
|
3716
4655
|
interface SidebarTriggerProps extends React$1.ComponentProps<"button"> {}
|
|
4656
|
+
declare const SidebarTrigger: ({
|
|
4657
|
+
className,
|
|
4658
|
+
children,
|
|
4659
|
+
...props
|
|
4660
|
+
}: SidebarTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
3717
4661
|
interface SidebarOutletProps extends React$1.ComponentProps<"div"> {}
|
|
4662
|
+
declare const SidebarOutlet: ({
|
|
4663
|
+
className,
|
|
4664
|
+
...props
|
|
4665
|
+
}: SidebarOutletProps) => react_jsx_runtime284.JSX.Element;
|
|
3718
4666
|
interface SidebarMenuProps extends React$1.ComponentProps<"nav"> {}
|
|
4667
|
+
declare const SidebarMenu: ({
|
|
4668
|
+
className,
|
|
4669
|
+
...props
|
|
4670
|
+
}: SidebarMenuProps) => react_jsx_runtime284.JSX.Element;
|
|
3719
4671
|
interface SidebarMenuItemProps extends React$1.ComponentProps<"li"> {}
|
|
4672
|
+
declare const SidebarMenuItem: ({
|
|
4673
|
+
className,
|
|
4674
|
+
...props
|
|
4675
|
+
}: SidebarMenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
3720
4676
|
interface SidebarMenuLabelProps extends React$1.ComponentProps<"div"> {}
|
|
3721
|
-
declare const
|
|
4677
|
+
declare const SidebarMenuLabel: ({
|
|
4678
|
+
className,
|
|
4679
|
+
...props
|
|
4680
|
+
}: SidebarMenuLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
4681
|
+
//#endregion
|
|
4682
|
+
//#region src/components/sidebar/index.d.ts
|
|
4683
|
+
declare const Sidebar: (({
|
|
3722
4684
|
className,
|
|
3723
4685
|
isOpen,
|
|
3724
4686
|
onOpenChange,
|
|
3725
4687
|
...props
|
|
3726
|
-
}: SidebarProps) =>
|
|
4688
|
+
}: SidebarProps) => react_jsx_runtime284.JSX.Element) & {
|
|
3727
4689
|
Content: ({
|
|
3728
4690
|
className,
|
|
3729
4691
|
...props
|
|
3730
|
-
}: SidebarContentProps) =>
|
|
4692
|
+
}: SidebarContentProps) => react_jsx_runtime284.JSX.Element;
|
|
3731
4693
|
Footer: ({
|
|
3732
4694
|
className,
|
|
3733
4695
|
...props
|
|
3734
|
-
}: SidebarFooterProps) =>
|
|
4696
|
+
}: SidebarFooterProps) => react_jsx_runtime284.JSX.Element;
|
|
3735
4697
|
Header: ({
|
|
3736
4698
|
className,
|
|
3737
4699
|
...props
|
|
3738
|
-
}: SidebarHeaderProps) =>
|
|
4700
|
+
}: SidebarHeaderProps) => react_jsx_runtime284.JSX.Element;
|
|
3739
4701
|
Menu: ({
|
|
3740
4702
|
className,
|
|
3741
4703
|
...props
|
|
3742
|
-
}: SidebarMenuProps) =>
|
|
4704
|
+
}: SidebarMenuProps) => react_jsx_runtime284.JSX.Element;
|
|
3743
4705
|
MenuItem: ({
|
|
3744
4706
|
className,
|
|
3745
4707
|
...props
|
|
3746
|
-
}: SidebarMenuItemProps) =>
|
|
4708
|
+
}: SidebarMenuItemProps) => react_jsx_runtime284.JSX.Element;
|
|
3747
4709
|
MenuLabel: ({
|
|
3748
4710
|
className,
|
|
3749
4711
|
...props
|
|
3750
|
-
}: SidebarMenuLabelProps) =>
|
|
4712
|
+
}: SidebarMenuLabelProps) => react_jsx_runtime284.JSX.Element;
|
|
3751
4713
|
Outlet: ({
|
|
3752
4714
|
className,
|
|
3753
4715
|
...props
|
|
3754
|
-
}: SidebarOutletProps) =>
|
|
4716
|
+
}: SidebarOutletProps) => react_jsx_runtime284.JSX.Element;
|
|
3755
4717
|
Panel: ({
|
|
3756
4718
|
className,
|
|
3757
4719
|
...props
|
|
3758
|
-
}: SidebarPanelProps) =>
|
|
4720
|
+
}: SidebarPanelProps) => react_jsx_runtime284.JSX.Element;
|
|
3759
4721
|
Root: ({
|
|
3760
4722
|
className,
|
|
3761
4723
|
isOpen,
|
|
3762
4724
|
onOpenChange,
|
|
3763
4725
|
...props
|
|
3764
|
-
}: SidebarProps) =>
|
|
4726
|
+
}: SidebarProps) => react_jsx_runtime284.JSX.Element;
|
|
3765
4727
|
Trigger: ({
|
|
3766
4728
|
className,
|
|
3767
4729
|
children,
|
|
3768
4730
|
...props
|
|
3769
|
-
}: SidebarTriggerProps) =>
|
|
4731
|
+
}: SidebarTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
3770
4732
|
};
|
|
3771
4733
|
//#endregion
|
|
3772
4734
|
//#region src/components/slider/slider.variants.d.ts
|
|
3773
4735
|
declare const sliderVariants: tailwind_variants1.TVReturnType<{
|
|
3774
4736
|
[key: string]: {
|
|
3775
4737
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
3776
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
3777
4738
|
root?: tailwind_merge0.ClassNameValue;
|
|
3778
4739
|
track?: tailwind_merge0.ClassNameValue;
|
|
3779
4740
|
value?: tailwind_merge0.ClassNameValue;
|
|
4741
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
3780
4742
|
control?: tailwind_merge0.ClassNameValue;
|
|
3781
4743
|
thumb?: tailwind_merge0.ClassNameValue;
|
|
3782
4744
|
};
|
|
@@ -3784,10 +4746,10 @@ declare const sliderVariants: tailwind_variants1.TVReturnType<{
|
|
|
3784
4746
|
} | {
|
|
3785
4747
|
[x: string]: {
|
|
3786
4748
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
3787
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
3788
4749
|
root?: tailwind_merge0.ClassNameValue;
|
|
3789
4750
|
track?: tailwind_merge0.ClassNameValue;
|
|
3790
4751
|
value?: tailwind_merge0.ClassNameValue;
|
|
4752
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
3791
4753
|
control?: tailwind_merge0.ClassNameValue;
|
|
3792
4754
|
thumb?: tailwind_merge0.ClassNameValue;
|
|
3793
4755
|
};
|
|
@@ -3802,10 +4764,10 @@ declare const sliderVariants: tailwind_variants1.TVReturnType<{
|
|
|
3802
4764
|
}, undefined, {
|
|
3803
4765
|
[key: string]: {
|
|
3804
4766
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
3805
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
3806
4767
|
root?: tailwind_merge0.ClassNameValue;
|
|
3807
4768
|
track?: tailwind_merge0.ClassNameValue;
|
|
3808
4769
|
value?: tailwind_merge0.ClassNameValue;
|
|
4770
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
3809
4771
|
control?: tailwind_merge0.ClassNameValue;
|
|
3810
4772
|
thumb?: tailwind_merge0.ClassNameValue;
|
|
3811
4773
|
};
|
|
@@ -3828,35 +4790,61 @@ declare const sliderVariants: tailwind_variants1.TVReturnType<{
|
|
|
3828
4790
|
type SliderVariants = VariantProps<typeof sliderVariants>;
|
|
3829
4791
|
//#endregion
|
|
3830
4792
|
//#region src/components/slider/slider.d.ts
|
|
3831
|
-
interface SliderProps extends SliderVariants, Slider.Root.Props {}
|
|
3832
|
-
declare const
|
|
4793
|
+
interface SliderProps extends SliderVariants, Slider$1.Root.Props {}
|
|
4794
|
+
declare const SliderRoot: ({
|
|
4795
|
+
className,
|
|
4796
|
+
...props
|
|
4797
|
+
}: SliderProps) => react_jsx_runtime284.JSX.Element;
|
|
4798
|
+
declare const SliderValue: ({
|
|
4799
|
+
className,
|
|
4800
|
+
...props
|
|
4801
|
+
}: Slider$1.Value.Props) => react_jsx_runtime284.JSX.Element;
|
|
4802
|
+
declare const SliderControl: ({
|
|
4803
|
+
className,
|
|
4804
|
+
...props
|
|
4805
|
+
}: Slider$1.Control.Props) => react_jsx_runtime284.JSX.Element;
|
|
4806
|
+
declare const SliderTrack: ({
|
|
3833
4807
|
className,
|
|
3834
4808
|
...props
|
|
3835
|
-
}:
|
|
4809
|
+
}: Slider$1.Track.Props) => react_jsx_runtime284.JSX.Element;
|
|
4810
|
+
declare const SliderIndicator: ({
|
|
4811
|
+
className,
|
|
4812
|
+
...props
|
|
4813
|
+
}: Slider$1.Indicator.Props) => react_jsx_runtime284.JSX.Element;
|
|
4814
|
+
declare const SliderThumb: ({
|
|
4815
|
+
className,
|
|
4816
|
+
...props
|
|
4817
|
+
}: Slider$1.Thumb.Props) => react_jsx_runtime284.JSX.Element;
|
|
4818
|
+
//#endregion
|
|
4819
|
+
//#region src/components/slider/index.d.ts
|
|
4820
|
+
declare const Slider: (({
|
|
4821
|
+
className,
|
|
4822
|
+
...props
|
|
4823
|
+
}: SliderProps) => react_jsx_runtime284.JSX.Element) & {
|
|
3836
4824
|
Control: ({
|
|
3837
4825
|
className,
|
|
3838
4826
|
...props
|
|
3839
|
-
}:
|
|
4827
|
+
}: _base_ui_react0.SliderControl.Props) => react_jsx_runtime284.JSX.Element;
|
|
3840
4828
|
Indicator: ({
|
|
3841
4829
|
className,
|
|
3842
4830
|
...props
|
|
3843
|
-
}:
|
|
4831
|
+
}: _base_ui_react0.SliderIndicator.Props) => react_jsx_runtime284.JSX.Element;
|
|
3844
4832
|
Root: ({
|
|
3845
4833
|
className,
|
|
3846
4834
|
...props
|
|
3847
|
-
}: SliderProps) =>
|
|
4835
|
+
}: SliderProps) => react_jsx_runtime284.JSX.Element;
|
|
3848
4836
|
Thumb: ({
|
|
3849
4837
|
className,
|
|
3850
4838
|
...props
|
|
3851
|
-
}:
|
|
4839
|
+
}: _base_ui_react0.SliderThumb.Props) => react_jsx_runtime284.JSX.Element;
|
|
3852
4840
|
Track: ({
|
|
3853
4841
|
className,
|
|
3854
4842
|
...props
|
|
3855
|
-
}:
|
|
4843
|
+
}: _base_ui_react0.SliderTrack.Props) => react_jsx_runtime284.JSX.Element;
|
|
3856
4844
|
Value: ({
|
|
3857
4845
|
className,
|
|
3858
4846
|
...props
|
|
3859
|
-
}:
|
|
4847
|
+
}: _base_ui_react0.SliderValue.Props) => react_jsx_runtime284.JSX.Element;
|
|
3860
4848
|
};
|
|
3861
4849
|
//#endregion
|
|
3862
4850
|
//#region src/components/spinner/spinner.variants.d.ts
|
|
@@ -3907,9 +4895,8 @@ declare const Spinner: ({
|
|
|
3907
4895
|
className,
|
|
3908
4896
|
size,
|
|
3909
4897
|
variant,
|
|
3910
|
-
asChild,
|
|
3911
4898
|
...props
|
|
3912
|
-
}: SpinnerProps) =>
|
|
4899
|
+
}: SpinnerProps) => react_jsx_runtime284.JSX.Element;
|
|
3913
4900
|
//#endregion
|
|
3914
4901
|
//#region src/components/switch/switch.variants.d.ts
|
|
3915
4902
|
declare const switchVariants: tailwind_variants1.TVReturnType<{
|
|
@@ -3961,21 +4948,32 @@ declare const switchVariants: tailwind_variants1.TVReturnType<{
|
|
|
3961
4948
|
type SwitchVariants = VariantProps<typeof switchVariants>;
|
|
3962
4949
|
//#endregion
|
|
3963
4950
|
//#region src/components/switch/switch.d.ts
|
|
3964
|
-
interface SwitchProps extends SwitchVariants, Switch.Root.Props {}
|
|
3965
|
-
declare const
|
|
4951
|
+
interface SwitchProps extends SwitchVariants, Switch$1.Root.Props {}
|
|
4952
|
+
declare const SwitchRoot: ({
|
|
4953
|
+
className,
|
|
4954
|
+
size,
|
|
4955
|
+
...props
|
|
4956
|
+
}: SwitchProps) => react_jsx_runtime284.JSX.Element;
|
|
4957
|
+
declare const SwitchThumb: ({
|
|
4958
|
+
className,
|
|
4959
|
+
...props
|
|
4960
|
+
}: Switch$1.Thumb.Props) => react_jsx_runtime284.JSX.Element;
|
|
4961
|
+
//#endregion
|
|
4962
|
+
//#region src/components/switch/index.d.ts
|
|
4963
|
+
declare const Switch: (({
|
|
3966
4964
|
className,
|
|
3967
4965
|
size,
|
|
3968
4966
|
...props
|
|
3969
|
-
}: SwitchProps) =>
|
|
4967
|
+
}: SwitchProps) => react_jsx_runtime284.JSX.Element) & {
|
|
3970
4968
|
Root: ({
|
|
3971
4969
|
className,
|
|
3972
4970
|
size,
|
|
3973
4971
|
...props
|
|
3974
|
-
}: SwitchProps) =>
|
|
4972
|
+
}: SwitchProps) => react_jsx_runtime284.JSX.Element;
|
|
3975
4973
|
Thumb: ({
|
|
3976
4974
|
className,
|
|
3977
4975
|
...props
|
|
3978
|
-
}:
|
|
4976
|
+
}: _base_ui_react0.SwitchThumb.Props) => react_jsx_runtime284.JSX.Element;
|
|
3979
4977
|
};
|
|
3980
4978
|
//#endregion
|
|
3981
4979
|
//#region src/components/table/table.variants.d.ts
|
|
@@ -4044,53 +5042,83 @@ type TableVariants = VariantProps<typeof tableVariants>;
|
|
|
4044
5042
|
//#endregion
|
|
4045
5043
|
//#region src/components/table/table.d.ts
|
|
4046
5044
|
interface TableProps extends TableVariants, React.ComponentProps<"table"> {}
|
|
5045
|
+
declare const TableRoot: ({
|
|
5046
|
+
className,
|
|
5047
|
+
...props
|
|
5048
|
+
}: TableProps) => react_jsx_runtime284.JSX.Element;
|
|
4047
5049
|
interface TableHeadProps extends React.ComponentProps<"thead"> {}
|
|
5050
|
+
declare const TableHead: ({
|
|
5051
|
+
className,
|
|
5052
|
+
...props
|
|
5053
|
+
}: TableHeadProps) => react_jsx_runtime284.JSX.Element;
|
|
4048
5054
|
interface TableRowProps extends React.ComponentProps<"tr"> {}
|
|
5055
|
+
declare const TableRow: ({
|
|
5056
|
+
className,
|
|
5057
|
+
...props
|
|
5058
|
+
}: TableRowProps) => react_jsx_runtime284.JSX.Element;
|
|
4049
5059
|
interface TableHeaderCellProps extends React.ComponentProps<"th"> {}
|
|
5060
|
+
declare const TableHeaderCell: ({
|
|
5061
|
+
className,
|
|
5062
|
+
...props
|
|
5063
|
+
}: TableHeaderCellProps) => react_jsx_runtime284.JSX.Element;
|
|
4050
5064
|
interface TableBodyProps extends React.ComponentProps<"tbody"> {}
|
|
5065
|
+
declare const TableBody: ({
|
|
5066
|
+
className,
|
|
5067
|
+
...props
|
|
5068
|
+
}: TableBodyProps) => react_jsx_runtime284.JSX.Element;
|
|
4051
5069
|
interface TableDataCellProps extends React.ComponentProps<"td"> {}
|
|
5070
|
+
declare const TableDataCell: ({
|
|
5071
|
+
className,
|
|
5072
|
+
...props
|
|
5073
|
+
}: TableDataCellProps) => react_jsx_runtime284.JSX.Element;
|
|
4052
5074
|
interface TableFooterProps extends React.ComponentProps<"tfoot"> {}
|
|
4053
|
-
declare const
|
|
5075
|
+
declare const TableFooter: ({
|
|
5076
|
+
className,
|
|
5077
|
+
...props
|
|
5078
|
+
}: TableFooterProps) => react_jsx_runtime284.JSX.Element;
|
|
5079
|
+
//#endregion
|
|
5080
|
+
//#region src/components/table/index.d.ts
|
|
5081
|
+
declare const Table: (({
|
|
4054
5082
|
className,
|
|
4055
5083
|
...props
|
|
4056
|
-
}: TableProps) =>
|
|
5084
|
+
}: TableProps) => react_jsx_runtime284.JSX.Element) & {
|
|
4057
5085
|
Body: ({
|
|
4058
5086
|
className,
|
|
4059
5087
|
...props
|
|
4060
|
-
}: TableBodyProps) =>
|
|
5088
|
+
}: TableBodyProps) => react_jsx_runtime284.JSX.Element;
|
|
4061
5089
|
DataCell: ({
|
|
4062
5090
|
className,
|
|
4063
5091
|
...props
|
|
4064
|
-
}: TableDataCellProps) =>
|
|
5092
|
+
}: TableDataCellProps) => react_jsx_runtime284.JSX.Element;
|
|
4065
5093
|
Footer: ({
|
|
4066
5094
|
className,
|
|
4067
5095
|
...props
|
|
4068
|
-
}: TableFooterProps) =>
|
|
5096
|
+
}: TableFooterProps) => react_jsx_runtime284.JSX.Element;
|
|
4069
5097
|
Head: ({
|
|
4070
5098
|
className,
|
|
4071
5099
|
...props
|
|
4072
|
-
}: TableHeadProps) =>
|
|
5100
|
+
}: TableHeadProps) => react_jsx_runtime284.JSX.Element;
|
|
4073
5101
|
HeaderCell: ({
|
|
4074
5102
|
className,
|
|
4075
5103
|
...props
|
|
4076
|
-
}: TableHeaderCellProps) =>
|
|
5104
|
+
}: TableHeaderCellProps) => react_jsx_runtime284.JSX.Element;
|
|
4077
5105
|
Root: ({
|
|
4078
5106
|
className,
|
|
4079
5107
|
...props
|
|
4080
|
-
}: TableProps) =>
|
|
5108
|
+
}: TableProps) => react_jsx_runtime284.JSX.Element;
|
|
4081
5109
|
Row: ({
|
|
4082
5110
|
className,
|
|
4083
5111
|
...props
|
|
4084
|
-
}: TableRowProps) =>
|
|
5112
|
+
}: TableRowProps) => react_jsx_runtime284.JSX.Element;
|
|
4085
5113
|
};
|
|
4086
5114
|
//#endregion
|
|
4087
5115
|
//#region src/components/tabs/tabs.variants.d.ts
|
|
4088
5116
|
declare const tabsVariants: tailwind_variants1.TVReturnType<{
|
|
4089
5117
|
[key: string]: {
|
|
4090
5118
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
4091
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
4092
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
4093
5119
|
panel?: tailwind_merge0.ClassNameValue;
|
|
5120
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
5121
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
4094
5122
|
list?: tailwind_merge0.ClassNameValue;
|
|
4095
5123
|
tab?: tailwind_merge0.ClassNameValue;
|
|
4096
5124
|
};
|
|
@@ -4098,9 +5126,9 @@ declare const tabsVariants: tailwind_variants1.TVReturnType<{
|
|
|
4098
5126
|
} | {
|
|
4099
5127
|
[x: string]: {
|
|
4100
5128
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
4101
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
4102
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
4103
5129
|
panel?: tailwind_merge0.ClassNameValue;
|
|
5130
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
5131
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
4104
5132
|
list?: tailwind_merge0.ClassNameValue;
|
|
4105
5133
|
tab?: tailwind_merge0.ClassNameValue;
|
|
4106
5134
|
};
|
|
@@ -4114,9 +5142,9 @@ declare const tabsVariants: tailwind_variants1.TVReturnType<{
|
|
|
4114
5142
|
}, undefined, {
|
|
4115
5143
|
[key: string]: {
|
|
4116
5144
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
4117
|
-
indicator?: tailwind_merge0.ClassNameValue;
|
|
4118
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
4119
5145
|
panel?: tailwind_merge0.ClassNameValue;
|
|
5146
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
5147
|
+
indicator?: tailwind_merge0.ClassNameValue;
|
|
4120
5148
|
list?: tailwind_merge0.ClassNameValue;
|
|
4121
5149
|
tab?: tailwind_merge0.ClassNameValue;
|
|
4122
5150
|
};
|
|
@@ -4137,35 +5165,57 @@ declare const tabsVariants: tailwind_variants1.TVReturnType<{
|
|
|
4137
5165
|
type TabsVariants = VariantProps<typeof tabsVariants>;
|
|
4138
5166
|
//#endregion
|
|
4139
5167
|
//#region src/components/tabs/tabs.d.ts
|
|
4140
|
-
interface TabsProps extends TabsVariants, Tabs.Root.Props {}
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
5168
|
+
interface TabsProps extends TabsVariants, Tabs$1.Root.Props {}
|
|
5169
|
+
declare const TabsRoot: ({
|
|
5170
|
+
className,
|
|
5171
|
+
...props
|
|
5172
|
+
}: TabsProps) => react_jsx_runtime284.JSX.Element;
|
|
5173
|
+
interface TabsListProps extends Tabs$1.List.Props {}
|
|
5174
|
+
declare const TabsList: ({
|
|
5175
|
+
className,
|
|
5176
|
+
...props
|
|
5177
|
+
}: TabsListProps) => react_jsx_runtime284.JSX.Element;
|
|
5178
|
+
interface TabsTabProps extends Tabs$1.Tab.Props {}
|
|
5179
|
+
declare const TabsTab: ({
|
|
5180
|
+
className,
|
|
5181
|
+
...props
|
|
5182
|
+
}: TabsTabProps) => react_jsx_runtime284.JSX.Element;
|
|
5183
|
+
interface TabsIndicatorProps extends Tabs$1.Indicator.Props {}
|
|
5184
|
+
declare const TabsIndicator: ({
|
|
5185
|
+
className,
|
|
5186
|
+
...props
|
|
5187
|
+
}: TabsIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
5188
|
+
interface TabsPanelProps extends Tabs$1.Panel.Props {}
|
|
5189
|
+
declare const TabsPanel: ({
|
|
4146
5190
|
className,
|
|
4147
5191
|
...props
|
|
4148
|
-
}:
|
|
5192
|
+
}: TabsPanelProps) => react_jsx_runtime284.JSX.Element;
|
|
5193
|
+
//#endregion
|
|
5194
|
+
//#region src/components/tabs/index.d.ts
|
|
5195
|
+
declare const Tabs: (({
|
|
5196
|
+
className,
|
|
5197
|
+
...props
|
|
5198
|
+
}: TabsProps) => react_jsx_runtime284.JSX.Element) & {
|
|
4149
5199
|
Indicator: ({
|
|
4150
5200
|
className,
|
|
4151
5201
|
...props
|
|
4152
|
-
}: TabsIndicatorProps) =>
|
|
5202
|
+
}: TabsIndicatorProps) => react_jsx_runtime284.JSX.Element;
|
|
4153
5203
|
List: ({
|
|
4154
5204
|
className,
|
|
4155
5205
|
...props
|
|
4156
|
-
}: TabsListProps) =>
|
|
5206
|
+
}: TabsListProps) => react_jsx_runtime284.JSX.Element;
|
|
4157
5207
|
Panel: ({
|
|
4158
5208
|
className,
|
|
4159
5209
|
...props
|
|
4160
|
-
}: TabsPanelProps) =>
|
|
5210
|
+
}: TabsPanelProps) => react_jsx_runtime284.JSX.Element;
|
|
4161
5211
|
Root: ({
|
|
4162
5212
|
className,
|
|
4163
5213
|
...props
|
|
4164
|
-
}: TabsProps) =>
|
|
5214
|
+
}: TabsProps) => react_jsx_runtime284.JSX.Element;
|
|
4165
5215
|
Tab: ({
|
|
4166
5216
|
className,
|
|
4167
5217
|
...props
|
|
4168
|
-
}: TabsTabProps) =>
|
|
5218
|
+
}: TabsTabProps) => react_jsx_runtime284.JSX.Element;
|
|
4169
5219
|
};
|
|
4170
5220
|
//#endregion
|
|
4171
5221
|
//#region src/components/toggle-button/toggle-button.variants.d.ts
|
|
@@ -4277,7 +5327,7 @@ declare const ToggleButton: ({
|
|
|
4277
5327
|
variant,
|
|
4278
5328
|
size,
|
|
4279
5329
|
...props
|
|
4280
|
-
}: ToggleButtonProps) =>
|
|
5330
|
+
}: ToggleButtonProps) => react_jsx_runtime284.JSX.Element;
|
|
4281
5331
|
//#endregion
|
|
4282
5332
|
//#region src/components/tooltip/tooltip.variants.d.ts
|
|
4283
5333
|
declare const tooltipVariants: tailwind_variants1.TVReturnType<{
|
|
@@ -4338,40 +5388,64 @@ declare const tooltipVariants: tailwind_variants1.TVReturnType<{
|
|
|
4338
5388
|
type TooltipVariants = VariantProps<typeof tooltipVariants>;
|
|
4339
5389
|
//#endregion
|
|
4340
5390
|
//#region src/components/tooltip/tooltip.d.ts
|
|
4341
|
-
interface TooltipProps extends TooltipVariants, Tooltip.Root.Props {}
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
interface
|
|
4346
|
-
|
|
4347
|
-
|
|
4348
|
-
...props
|
|
4349
|
-
}:
|
|
5391
|
+
interface TooltipProps extends TooltipVariants, Tooltip$1.Root.Props {}
|
|
5392
|
+
declare const TooltipRoot: ({
|
|
5393
|
+
...props
|
|
5394
|
+
}: TooltipProps) => react_jsx_runtime284.JSX.Element;
|
|
5395
|
+
interface TooltipTriggerProps extends Tooltip$1.Trigger.Props {}
|
|
5396
|
+
declare const TooltipTrigger: ({
|
|
5397
|
+
className,
|
|
5398
|
+
...props
|
|
5399
|
+
}: TooltipTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
5400
|
+
interface TooltipPortalProps extends Tooltip$1.Portal.Props {}
|
|
5401
|
+
declare const TooltipPortal: ({
|
|
5402
|
+
className,
|
|
5403
|
+
...props
|
|
5404
|
+
}: TooltipPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
5405
|
+
interface TooltipPositionerProps extends Tooltip$1.Positioner.Props {}
|
|
5406
|
+
declare const TooltipPositioner: ({
|
|
5407
|
+
className,
|
|
5408
|
+
...props
|
|
5409
|
+
}: TooltipPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
5410
|
+
interface TooltipPopupProps extends Tooltip$1.Popup.Props {}
|
|
5411
|
+
declare const TooltipPopup: ({
|
|
5412
|
+
className,
|
|
5413
|
+
...props
|
|
5414
|
+
}: TooltipPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
5415
|
+
interface TooltipArrowProps extends Tooltip$1.Arrow.Props {}
|
|
5416
|
+
declare const TooltipArrow: ({
|
|
5417
|
+
className,
|
|
5418
|
+
...props
|
|
5419
|
+
}: TooltipArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
5420
|
+
//#endregion
|
|
5421
|
+
//#region src/components/tooltip/index.d.ts
|
|
5422
|
+
declare const Tooltip: (({
|
|
5423
|
+
...props
|
|
5424
|
+
}: TooltipProps) => react_jsx_runtime284.JSX.Element) & {
|
|
4350
5425
|
Arrow: ({
|
|
4351
5426
|
className,
|
|
4352
5427
|
...props
|
|
4353
|
-
}: TooltipArrowProps) =>
|
|
5428
|
+
}: TooltipArrowProps) => react_jsx_runtime284.JSX.Element;
|
|
4354
5429
|
Popup: ({
|
|
4355
5430
|
className,
|
|
4356
5431
|
...props
|
|
4357
|
-
}: TooltipPopupProps) =>
|
|
5432
|
+
}: TooltipPopupProps) => react_jsx_runtime284.JSX.Element;
|
|
4358
5433
|
Portal: ({
|
|
4359
5434
|
className,
|
|
4360
5435
|
...props
|
|
4361
|
-
}: TooltipPortalProps) =>
|
|
5436
|
+
}: TooltipPortalProps) => react_jsx_runtime284.JSX.Element;
|
|
4362
5437
|
Positioner: ({
|
|
4363
5438
|
className,
|
|
4364
5439
|
...props
|
|
4365
|
-
}: TooltipPositionerProps) =>
|
|
4366
|
-
Provider: react0.FC<_base_ui_react0.TooltipProviderProps>;
|
|
5440
|
+
}: TooltipPositionerProps) => react_jsx_runtime284.JSX.Element;
|
|
4367
5441
|
Root: ({
|
|
4368
5442
|
...props
|
|
4369
|
-
}: TooltipProps) =>
|
|
5443
|
+
}: TooltipProps) => react_jsx_runtime284.JSX.Element;
|
|
4370
5444
|
Trigger: ({
|
|
4371
5445
|
className,
|
|
4372
5446
|
...props
|
|
4373
|
-
}: TooltipTriggerProps) =>
|
|
5447
|
+
}: TooltipTriggerProps) => react_jsx_runtime284.JSX.Element;
|
|
4374
5448
|
};
|
|
4375
5449
|
//#endregion
|
|
4376
|
-
export { _default as Accordion, AccordionVariants, _default$1 as Alert, _default$2 as AlertDialog, AlertDialogVariants, AlertVariants, _default$3 as Autocomplete, AutocompleteVariants, _default$4 as Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, _default$5 as Card, CardVariants, _default$6 as Checkbox, CheckboxGroup, CheckboxGroupVariants, CheckboxVariants, Chip, ChipVariants, _default$7 as Collapsible, _default$8 as Combobox, ComboboxVariants, Container, ContainerVariants, _default$9 as ContextMenu, ContextMenuVariants, _default$10 as Dialog, DialogVariants, _default$11 as Drawer, DrawerVariants, _default$12 as Field, FieldVariants, _default$13 as Fieldset, FieldsetVariants, Form, FormVariants, IconButton, IconButtonVariants, Input, InputVariants, Label, LabelVariants, Link, LinkVariants, _default$14 as List, ListVariants, _default$15 as Menu, MenuVariants, _default$16 as Meter, MeterVariants, _default$17 as Navbar, NavbarVariants, _default$18 as NavigationMenu, NavigationMenuVariants, _default$19 as NumberField, NumberFieldVariants, _default$20 as Popover, PopoverVariants, _default$21 as PreviewCard, PreviewCardVariants, _default$22 as Progress, ProgressVariants, _default$23 as Radio, RadioGroup, RadioGroupVariants, RadioVariants, _default$24 as ScrollArea, ScrollAreaVariants, _default$25 as Select, SelectVariants, Separator, SeparatorVariants, _default$26 as Sidebar, SidebarVariants, _default$27 as Slider, SliderVariants, Spinner, SpinnerVariants, _default$28 as Switch, SwitchVariants, _default$29 as Table, TableVariants, _default$30 as Tabs, TabsVariants, ToggleButton, ToggleButtonVariants, _default$31 as Tooltip, accordionVariants, alertDialogVariants, alertVariants, autocompleteVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, checkboxVariants, chipVariants, cn, comboboxVariants, containerVariants, contextMenuVariants, dialogVariants, drawerVariants, fieldVariants, fieldsetVariants, formVariants, iconButtonVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, navigationMenuVariants, numberFieldVariants, popoverVariants, previewCardVariants, progressVariants, radioGroupVariants, radioVariants, scrollAreaVariants, selectVariants, separatorVariants, sidebarVariants, sliderVariants, spinnerVariants, switchVariants, tableVariants, tabsVariants, toggleButtonVariants };
|
|
5450
|
+
export { Accordion, AccordionContent, AccordionContentProps, AccordionHeader, AccordionHeaderProps, AccordionItem, AccordionItemProps, AccordionPanel, AccordionPanelProps, AccordionProps, AccordionRoot, AccordionTrigger, AccordionTriggerIcon, AccordionTriggerIconProps, AccordionTriggerProps, type AccordionVariants, Alert, AlertContent, type AlertContentProps, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogBackdrop, AlertDialogBackdropProps, AlertDialogClose, AlertDialogCloseProps, AlertDialogDescription, AlertDialogDescriptionProps, AlertDialogPopup, AlertDialogPopupProps, AlertDialogPortal, AlertDialogPortalProps, AlertDialogProps, AlertDialogRoot, AlertDialogTitle, AlertDialogTitleProps, AlertDialogTrigger, AlertDialogTriggerProps, type AlertDialogVariants, AlertDialogViewport, AlertDialogViewportProps, AlertIndicator, type AlertIndicatorProps, type AlertProps, AlertRoot, AlertTitle, type AlertTitleProps, type AlertVariants, Autocomplete, AutocompleteArrow, AutocompleteArrowProps, AutocompleteBackdrop, AutocompleteBackdropProps, AutocompleteClear, AutocompleteClearProps, AutocompleteEmpty, AutocompleteEmptyProps, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteGroupLabelProps, AutocompleteGroupProps, AutocompleteIcon, AutocompleteIconProps, AutocompleteInput, AutocompleteInputProps, AutocompleteItem, AutocompleteItemProps, AutocompleteList, AutocompleteListProps, AutocompletePopup, AutocompletePopupProps, AutocompletePortal, AutocompletePortalProps, AutocompletePositioner, AutocompletePositionerProps, AutocompleteProps, AutocompleteRoot, AutocompleteRow, AutocompleteRowProps, AutocompleteSeparator, AutocompleteSeparatorProps, AutocompleteStatus, AutocompleteStatusProps, AutocompleteTrigger, AutocompleteTriggerProps, AutocompleteValue, AutocompleteValueProps, type AutocompleteVariants, Avatar, AvatarFallback, AvatarFallbackProps, AvatarImage, AvatarImageProps, AvatarProps, AvatarRoot, type AvatarVariants, Button, ButtonGroup, ButtonGroupProps, type ButtonGroupVariants, ButtonProps, type ButtonVariants, Card, CardContent, CardContentProps, CardDescription, CardDescriptionProps, CardFooterProps, CardHeader, CardHeaderProps, CardRoot, CardRootProps, CardTitle, type CardVariants, Checkbox, CheckboxGroup, CheckboxGroupProps, type CheckboxGroupVariants, CheckboxIndicator, CheckboxIndicatorProps, CheckboxProps, CheckboxRoot, type CheckboxVariants, Chip, ChipProps, type ChipVariants, Collapsible, CollapsibleContent, CollapsibleContentProps, CollapsiblePanel, CollapsiblePanelProps, CollapsibleProps, CollapsibleRoot, CollapsibleTrigger, CollapsibleTriggerIcon, CollapsibleTriggerIconProps, CollapsibleTriggerProps, type CollapsibleVariants, Combobox, ComboboxArrow, ComboboxArrowProps, ComboboxBackdrop, ComboboxBackdropProps, ComboboxChip, ComboboxChipProps, ComboboxChipRemove, ComboboxChipRemoveProps, ComboboxChips, ComboboxChipsProps, ComboboxClear, ComboboxClearProps, ComboboxEmpty, ComboboxEmptyProps, ComboboxGroup, ComboboxGroupLabel, ComboboxGroupLabelProps, ComboboxGroupProps, ComboboxInput, ComboboxInputProps, ComboboxItem, ComboboxItemIndicator, ComboboxItemIndicatorProps, ComboboxItemProps, ComboboxList, ComboboxListProps, ComboboxPopup, ComboboxPopupProps, ComboboxPortal, ComboboxPortalProps, ComboboxPositioner, ComboboxPositionerProps, ComboboxProps, ComboboxRoot, ComboboxRow, ComboboxRowProps, ComboboxSeparator, ComboboxSeparatorProps, ComboboxStatus, ComboboxStatusProps, ComboboxTrigger, ComboboxTriggerProps, ComboboxValue, ComboboxValueProps, type ComboboxVariants, Container, ContainerProps, type ContainerVariants, ContextMenu, ContextMenuArrow, ContextMenuArrowProps, ContextMenuBackdrop, ContextMenuBackdropProps, ContextMenuGroup, ContextMenuGroupLabel, ContextMenuGroupLabelProps, ContextMenuGroupProps, ContextMenuItem, ContextMenuItemProps, ContextMenuPopup, ContextMenuPopupProps, ContextMenuPortal, ContextMenuPortalProps, ContextMenuPositioner, ContextMenuPositionerProps, ContextMenuProps, ContextMenuRoot, ContextMenuSeparator, ContextMenuSeparatorProps, ContextMenuSubmenu, ContextMenuSubmenuProps, ContextMenuSubmenuTrigger, ContextMenuSubmenuTriggerProps, ContextMenuTrigger, ContextMenuTriggerProps, type ContextMenuVariants, Dialog, DialogBackdrop, DialogBackdropProps, DialogClose, DialogCloseProps, DialogDescription, DialogDescriptionProps, DialogPopup, DialogPopupProps, DialogPortal, DialogPortalProps, DialogProps, DialogRoot, DialogTitle, DialogTitleProps, DialogTrigger, DialogTriggerProps, type DialogVariants, DialogViewport, DialogViewportProps, Drawer, DrawerBackdrop, DrawerBackdropProps, DrawerClose, DrawerCloseProps, DrawerDescription, DrawerDescriptionProps, DrawerPopup, DrawerPopupProps, DrawerPortal, DrawerPortalProps, DrawerProps, DrawerRoot, DrawerTitle, DrawerTitleProps, DrawerTrigger, DrawerTriggerProps, type DrawerVariants, DrawerViewport, DrawerViewportProps, Field, FieldControl, FieldControlProps, FieldDescription, FieldDescriptionProps, FieldError, FieldErrorProps, FieldLabel, FieldLabelProps, FieldRoot, FieldRootProps, type FieldVariants, Fieldset, FieldsetLegend, FieldsetLegendProps, FieldsetProps, FieldsetRoot, type FieldsetVariants, Form, FormProps, type FormVariants, IconButton, IconButtonProps, type IconButtonVariants, Input, InputProps, type InputVariants, Label, LabelProps, type LabelVariants, Link, LinkProps, type LinkVariants, List, ListItem, ListItemProps, ListProps, ListRoot, type ListVariants, Menu, MenuArrow, MenuArrowProps, MenuBackdrop, MenuBackdropProps, MenuCheckboxItem, MenuCheckboxItemProps, MenuGroup, MenuGroupLabel, MenuGroupLabelProps, MenuGroupProps, MenuItem, MenuItemProps, MenuPopup, MenuPopupProps, MenuPortal, MenuPortalProps, MenuPositioner, MenuPositionerProps, MenuProps, MenuRadioGroup, MenuRadioGroupProps, MenuRadioItem, MenuRadioItemProps, MenuRoot, MenuSeparator, MenuSeparatorProps, MenuSubmenu, MenuSubmenuProps, MenuSubmenuTrigger, MenuSubmenuTriggerProps, MenuTrigger, MenuTriggerProps, type MenuVariants, Meter, MeterIndicator, MeterIndicatorProps, MeterLabel, MeterLabelProps, MeterProps, MeterRoot, MeterTrack, MeterTrackProps, MeterValue, MeterValueProps, type MeterVariants, Navbar, NavbarContainer, NavbarContainerProps, NavbarContent, NavbarContentProps, NavbarList, NavbarListItem, NavbarListItemProps, NavbarListProps, NavbarMenu, NavbarMenuItem, NavbarMenuItemProps, NavbarMenuProps, NavbarProps, NavbarRoot, NavbarToggle, NavbarToggleProps, type NavbarVariants, NavigationMenu, NavigationMenuArrow, NavigationMenuArrowProps, NavigationMenuBackdrop, NavigationMenuBackdropProps, NavigationMenuContent, NavigationMenuContentProps, NavigationMenuIcon, NavigationMenuIconProps, NavigationMenuItem, NavigationMenuItemProps, NavigationMenuLink, NavigationMenuLinkProps, NavigationMenuList, NavigationMenuListProps, NavigationMenuPopup, NavigationMenuPopupProps, NavigationMenuPortal, NavigationMenuPortalProps, NavigationMenuPositioner, NavigationMenuPositionerProps, NavigationMenuProps, NavigationMenuRoot, NavigationMenuTrigger, NavigationMenuTriggerProps, type NavigationMenuVariants, NavigationMenuViewport, NavigationMenuViewportProps, NumberField, NumberFieldDecrement, NumberFieldDecrementProps, NumberFieldGroup, NumberFieldGroupProps, NumberFieldIncrement, NumberFieldIncrementProps, NumberFieldInput, NumberFieldInputProps, NumberFieldProps, NumberFieldRoot, NumberFieldScrubArea, NumberFieldScrubAreaCursor, NumberFieldScrubAreaCursorProps, NumberFieldScrubAreaProps, type NumberFieldVariants, Popover, PopoverArrow, PopoverArrowProps, PopoverBackdrop, PopoverBackdropProps, PopoverClose, PopoverCloseProps, PopoverDescription, PopoverDescriptionProps, PopoverPopup, PopoverPopupProps, PopoverPortal, PopoverPortalProps, PopoverPositioner, PopoverPositionerProps, PopoverProps, PopoverRoot, PopoverTitle, PopoverTitleProps, PopoverTrigger, PopoverTriggerProps, type PopoverVariants, PopoverViewport, PopoverViewportProps, PreviewCard, PreviewCardArrow, PreviewCardArrowProps, PreviewCardBackdrop, PreviewCardBackdropProps, PreviewCardPopup, PreviewCardPopupProps, PreviewCardPortal, PreviewCardPortalProps, PreviewCardPositioner, PreviewCardPositionerProps, PreviewCardProps, PreviewCardRoot, PreviewCardTrigger, PreviewCardTriggerProps, type PreviewCardVariants, Progress, ProgressIndicator, ProgressIndicatorProps, ProgressLabel, ProgressLabelProps, ProgressProps, ProgressRoot, ProgressTrack, ProgressTrackProps, ProgressValue, ProgressValueProps, type ProgressVariants, Radio, RadioGroup, RadioGroupProps, type RadioGroupVariants, RadioIndicator, RadioIndicatorProps, RadioProps, RadioRoot, type RadioVariants, ScrollArea, ScrollAreaContent, ScrollAreaContentProps, ScrollAreaProps, ScrollAreaRoot, ScrollAreaScrollbar, ScrollAreaScrollbarProps, ScrollAreaThumb, ScrollAreaThumbProps, type ScrollAreaVariants, ScrollAreaViewport, ScrollAreaViewportProps, Select, SelectArrow, SelectArrowProps, SelectBackdrop, SelectBackdropProps, SelectGroup, SelectGroupLabel, SelectGroupLabelProps, SelectGroupProps, SelectIcon, SelectIconProps, SelectItem, SelectItemIndicator, SelectItemIndicatorProps, SelectItemProps, SelectItemText, SelectItemTextProps, SelectList, SelectListProps, SelectPopup, SelectPopupProps, SelectPortal, SelectPortalProps, SelectPositioner, SelectPositionerProps, SelectProps, SelectRoot, SelectSeparator, SelectSeparatorProps, SelectTrigger, SelectTriggerProps, SelectValue, SelectValueProps, type SelectVariants, Separator, SeparatorProps, type SeparatorVariants, Sidebar, SidebarContent, SidebarContentProps, SidebarFooter, SidebarFooterProps, SidebarHeader, SidebarHeaderProps, SidebarMenu, SidebarMenuItem, SidebarMenuItemProps, SidebarMenuLabel, SidebarMenuLabelProps, SidebarMenuProps, SidebarOutlet, SidebarOutletProps, SidebarPanel, SidebarPanelProps, SidebarProps, SidebarRoot, SidebarTrigger, SidebarTriggerProps, type SidebarVariants, Slider, SliderControl, SliderIndicator, SliderProps, SliderRoot, SliderThumb, SliderTrack, SliderValue, type SliderVariants, Spinner, SpinnerProps, type SpinnerVariants, Switch, SwitchProps, SwitchRoot, SwitchThumb, type SwitchVariants, Table, TableBody, TableBodyProps, TableDataCell, TableDataCellProps, TableFooter, TableFooterProps, TableHead, TableHeadProps, TableHeaderCell, TableHeaderCellProps, TableProps, TableRoot, TableRow, TableRowProps, type TableVariants, Tabs, TabsIndicator, TabsIndicatorProps, TabsList, TabsListProps, TabsPanel, TabsPanelProps, TabsProps, TabsRoot, TabsTab, TabsTabProps, type TabsVariants, ToggleButton, ToggleButtonProps, type ToggleButtonVariants, Tooltip, TooltipArrow, TooltipArrowProps, TooltipPopup, TooltipPopupProps, TooltipPortal, TooltipPortalProps, TooltipPositioner, TooltipPositionerProps, TooltipProps, TooltipRoot, TooltipTrigger, TooltipTriggerProps, type TooltipVariants, accordionVariants, alertDialogVariants, alertVariants, autocompleteVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, checkboxVariants, chipVariants, cn, collapsibleVariants, comboboxVariants, containerVariants, contextMenuVariants, dialogVariants, drawerVariants, fieldVariants, fieldsetVariants, formVariants, iconButtonVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, navigationMenuVariants, numberFieldVariants, popoverVariants, previewCardVariants, progressVariants, radioGroupVariants, radioVariants, scrollAreaVariants, selectVariants, separatorVariants, sidebarVariants, sliderVariants, spinnerVariants, switchVariants, tableVariants, tabsVariants, toggleButtonVariants, tooltipVariants };
|
|
4377
5451
|
//# sourceMappingURL=index.d.mts.map
|