@fea-ui/react 0.1.0-alpha.7 → 0.1.0-alpha.9

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