@mithunsalinda/veyqor-ui 0.1.0

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.
@@ -0,0 +1,1029 @@
1
+ import * as react from 'react';
2
+ import { HTMLAttributes, ReactNode, ImgHTMLAttributes, ButtonHTMLAttributes, Ref, InputHTMLAttributes, FocusEventHandler, ChangeEventHandler, FieldsetHTMLAttributes, ReactElement, CSSProperties, TableHTMLAttributes, TdHTMLAttributes, ThHTMLAttributes, AnchorHTMLAttributes } from 'react';
3
+ import * as _base_ui_react from '@base-ui/react';
4
+ import { ToastObject, UseToastManagerReturnValue, ToastManagerAddOptions, ToastManagerPromiseOptions, ToastManagerUpdateOptions, Toast } from '@base-ui/react/toast';
5
+
6
+ interface AccordionItem {
7
+ value: string;
8
+ title: ReactNode;
9
+ content: ReactNode;
10
+ disabled?: boolean;
11
+ }
12
+ type AccordionSize = "sm" | "md";
13
+ type AccordionVariant = "plain" | "outlined";
14
+ interface AccordionProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
15
+ items: AccordionItem[];
16
+ value?: string[];
17
+ defaultValue?: string[];
18
+ onValueChange?: (value: string[]) => void;
19
+ multiple?: boolean;
20
+ disabled?: boolean;
21
+ keepMounted?: boolean;
22
+ size?: AccordionSize;
23
+ variant?: AccordionVariant;
24
+ }
25
+
26
+ declare const Accordion: react.ForwardRefExoticComponent<AccordionProps & react.RefAttributes<HTMLDivElement>>;
27
+
28
+ type AlertIntent = "neutral" | "info" | "success" | "warning" | "danger";
29
+ type AlertVariant = "soft" | "outline";
30
+ interface AlertProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
31
+ title?: ReactNode;
32
+ children?: ReactNode;
33
+ intent?: AlertIntent;
34
+ variant?: AlertVariant;
35
+ icon?: ReactNode;
36
+ action?: ReactNode;
37
+ dismissible?: boolean;
38
+ closeLabel?: string;
39
+ onDismiss?: () => void;
40
+ }
41
+
42
+ declare const Alert: react.ForwardRefExoticComponent<AlertProps & react.RefAttributes<HTMLDivElement>>;
43
+
44
+ type AvatarSize = "xs" | "sm" | "md" | "lg" | "xl";
45
+ type AvatarShape = "circle" | "rounded";
46
+ interface AvatarProps extends Omit<HTMLAttributes<HTMLSpanElement>, "children"> {
47
+ name?: string;
48
+ src?: string;
49
+ alt?: string;
50
+ initials?: string;
51
+ fallback?: ReactNode;
52
+ size?: AvatarSize;
53
+ shape?: AvatarShape;
54
+ status?: ReactNode;
55
+ fallbackDelay?: number;
56
+ imageProps?: Omit<ImgHTMLAttributes<HTMLImageElement>, "alt" | "src">;
57
+ onLoadingStatusChange?: (status: "idle" | "loading" | "loaded" | "error") => void;
58
+ }
59
+
60
+ declare const Avatar: react.ForwardRefExoticComponent<AvatarProps & react.RefAttributes<HTMLSpanElement>>;
61
+
62
+ type ButtonVariant = "primary" | "secondary" | "outline" | "ghost" | "destructive";
63
+ type ButtonSize = "sm" | "md" | "lg";
64
+ interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
65
+ variant?: ButtonVariant;
66
+ size?: ButtonSize;
67
+ loading?: boolean;
68
+ loadingLabel?: string;
69
+ leftIcon?: ReactNode;
70
+ rightIcon?: ReactNode;
71
+ }
72
+
73
+ declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
74
+
75
+ type BadgeIntent = "neutral" | "info" | "success" | "warning" | "danger";
76
+ type BadgeVariant = "soft" | "solid" | "outline";
77
+ type BadgeSize = "sm" | "md";
78
+ type BadgeShape = "rounded" | "pill";
79
+ interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
80
+ children?: ReactNode;
81
+ intent?: BadgeIntent;
82
+ variant?: BadgeVariant;
83
+ size?: BadgeSize;
84
+ shape?: BadgeShape;
85
+ dot?: boolean;
86
+ count?: number;
87
+ max?: number;
88
+ showZero?: boolean;
89
+ ariaLabel?: string;
90
+ }
91
+
92
+ declare const Badge: react.ForwardRefExoticComponent<BadgeProps & react.RefAttributes<HTMLSpanElement>>;
93
+
94
+ interface BreadcrumbItem {
95
+ label: ReactNode;
96
+ href?: string;
97
+ current?: boolean;
98
+ disabled?: boolean;
99
+ }
100
+ type BreadcrumbSize = "sm" | "md";
101
+ interface BreadcrumbProps extends HTMLAttributes<HTMLElement> {
102
+ items: BreadcrumbItem[];
103
+ separator?: ReactNode;
104
+ size?: BreadcrumbSize;
105
+ maxItems?: number;
106
+ }
107
+
108
+ declare const Breadcrumb: react.ForwardRefExoticComponent<BreadcrumbProps & react.RefAttributes<HTMLElement>>;
109
+
110
+ type CardVariant = "surface" | "outlined" | "elevated";
111
+ type CardPadding = "none" | "sm" | "md" | "lg";
112
+ interface CardProps extends HTMLAttributes<HTMLDivElement> {
113
+ variant?: CardVariant;
114
+ padding?: CardPadding;
115
+ interactive?: boolean;
116
+ }
117
+ type CardSectionProps = HTMLAttributes<HTMLDivElement>;
118
+ type CardMediaProps = HTMLAttributes<HTMLDivElement>;
119
+ type CardTitleProps = HTMLAttributes<HTMLHeadingElement>;
120
+ type CardDescriptionProps = HTMLAttributes<HTMLParagraphElement>;
121
+
122
+ declare const Card: react.ForwardRefExoticComponent<CardProps & react.RefAttributes<HTMLDivElement>>;
123
+ declare const CardHeader: react.ForwardRefExoticComponent<CardSectionProps & react.RefAttributes<HTMLDivElement>>;
124
+ declare const CardTitle: react.ForwardRefExoticComponent<CardTitleProps & react.RefAttributes<HTMLHeadingElement>>;
125
+ declare const CardDescription: react.ForwardRefExoticComponent<CardDescriptionProps & react.RefAttributes<HTMLParagraphElement>>;
126
+ declare const CardContent: react.ForwardRefExoticComponent<CardSectionProps & react.RefAttributes<HTMLDivElement>>;
127
+ declare const CardFooter: react.ForwardRefExoticComponent<CardSectionProps & react.RefAttributes<HTMLDivElement>>;
128
+ declare const CardMedia: react.ForwardRefExoticComponent<CardMediaProps & react.RefAttributes<HTMLDivElement>>;
129
+
130
+ interface CheckboxProps {
131
+ id?: string;
132
+ name?: string;
133
+ value?: string;
134
+ checked?: boolean;
135
+ defaultChecked?: boolean;
136
+ indeterminate?: boolean;
137
+ disabled?: boolean;
138
+ readOnly?: boolean;
139
+ required?: boolean;
140
+ invalid?: boolean;
141
+ label?: ReactNode;
142
+ description?: ReactNode;
143
+ className?: string;
144
+ onCheckedChange?: (checked: boolean) => void;
145
+ }
146
+
147
+ declare const Checkbox: react.ForwardRefExoticComponent<CheckboxProps & react.RefAttributes<HTMLSpanElement>>;
148
+
149
+ type CollapsibleSize = "sm" | "md";
150
+ type CollapsibleVariant = "plain" | "outlined";
151
+ interface CollapsibleProps extends Omit<HTMLAttributes<HTMLDivElement>, "content" | "title"> {
152
+ title: ReactNode;
153
+ content: ReactNode;
154
+ description?: ReactNode;
155
+ open?: boolean;
156
+ defaultOpen?: boolean;
157
+ onOpenChange?: (open: boolean) => void;
158
+ disabled?: boolean;
159
+ keepMounted?: boolean;
160
+ hiddenUntilFound?: boolean;
161
+ size?: CollapsibleSize;
162
+ variant?: CollapsibleVariant;
163
+ }
164
+
165
+ declare const Collapsible: react.ForwardRefExoticComponent<CollapsibleProps & react.RefAttributes<HTMLDivElement>>;
166
+
167
+ type ComboboxSize = "sm" | "md" | "lg";
168
+ interface ComboboxOption {
169
+ value: string;
170
+ label: ReactNode;
171
+ description?: ReactNode;
172
+ disabled?: boolean;
173
+ textValue?: string;
174
+ }
175
+ interface ComboboxProps extends Omit<HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
176
+ options: ComboboxOption[];
177
+ value?: string | null;
178
+ defaultValue?: string | null;
179
+ onValueChange?: (value: string | null) => void;
180
+ inputValue?: string;
181
+ defaultInputValue?: string;
182
+ onInputValueChange?: (value: string) => void;
183
+ label?: string;
184
+ description?: string;
185
+ error?: string;
186
+ placeholder?: string;
187
+ emptyMessage?: string;
188
+ disabled?: boolean;
189
+ readOnly?: boolean;
190
+ required?: boolean;
191
+ invalid?: boolean;
192
+ name?: string;
193
+ id?: string;
194
+ inputRef?: Ref<HTMLInputElement>;
195
+ comboboxSize?: ComboboxSize;
196
+ clearLabel?: string;
197
+ openLabel?: string;
198
+ }
199
+
200
+ declare const Combobox: react.ForwardRefExoticComponent<ComboboxProps & react.RefAttributes<HTMLDivElement>>;
201
+
202
+ type DialogSize = "sm" | "md" | "lg";
203
+ interface DialogProps {
204
+ open?: boolean;
205
+ defaultOpen?: boolean;
206
+ trigger?: ReactNode;
207
+ title: ReactNode;
208
+ description?: ReactNode;
209
+ children?: ReactNode;
210
+ footer?: ReactNode;
211
+ size?: DialogSize;
212
+ modal?: boolean | "trap-focus";
213
+ disablePointerDismissal?: boolean;
214
+ showCloseButton?: boolean;
215
+ closeLabel?: string;
216
+ className?: string;
217
+ triggerClassName?: string;
218
+ contentClassName?: string;
219
+ footerClassName?: string;
220
+ onOpenChange?: (open: boolean) => void;
221
+ }
222
+
223
+ declare const Dialog: react.ForwardRefExoticComponent<DialogProps & react.RefAttributes<HTMLDivElement>>;
224
+
225
+ type CommandSize = "sm" | "md";
226
+ interface CommandAction {
227
+ id: string;
228
+ label: ReactNode;
229
+ description?: ReactNode;
230
+ keywords?: string[];
231
+ shortcut?: ReactNode;
232
+ disabled?: boolean;
233
+ onSelect?: () => void;
234
+ }
235
+ interface CommandGroup {
236
+ heading?: ReactNode;
237
+ actions: CommandAction[];
238
+ }
239
+ interface CommandProps extends Omit<HTMLAttributes<HTMLDivElement>, "onSelect"> {
240
+ groups: CommandGroup[];
241
+ ariaLabel?: string;
242
+ defaultQuery?: string;
243
+ emptyMessage?: ReactNode;
244
+ inputLabel?: string;
245
+ onActionSelect?: (action: CommandAction) => void;
246
+ onQueryChange?: (query: string) => void;
247
+ placeholder?: string;
248
+ query?: string;
249
+ size?: CommandSize;
250
+ }
251
+ interface CommandDialogProps extends Omit<CommandProps, "className" | "title">, Pick<DialogProps, "closeLabel" | "defaultOpen" | "description" | "disablePointerDismissal" | "modal" | "onOpenChange" | "open" | "showCloseButton" | "title" | "trigger" | "triggerClassName"> {
252
+ className?: string | undefined;
253
+ contentClassName?: string | undefined;
254
+ }
255
+
256
+ declare const Command: react.ForwardRefExoticComponent<CommandProps & react.RefAttributes<HTMLDivElement>>;
257
+ declare const CommandDialog: react.ForwardRefExoticComponent<CommandDialogProps & react.RefAttributes<HTMLDivElement>>;
258
+
259
+ type ContextMenuAlign = "start" | "center" | "end";
260
+ type ContextMenuSide = "top" | "right" | "bottom" | "left";
261
+ type ContextMenuSize = "sm" | "md";
262
+ type ContextMenuItem = {
263
+ type?: "item";
264
+ label: ReactNode;
265
+ description?: ReactNode;
266
+ disabled?: boolean;
267
+ destructive?: boolean;
268
+ closeOnClick?: boolean;
269
+ onSelect?: () => void;
270
+ } | {
271
+ type: "link";
272
+ label: ReactNode;
273
+ description?: ReactNode;
274
+ href: string;
275
+ closeOnClick?: boolean;
276
+ } | {
277
+ type: "separator";
278
+ };
279
+ interface ContextMenuProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
280
+ align?: ContextMenuAlign;
281
+ children?: ReactNode;
282
+ defaultOpen?: boolean;
283
+ disabled?: boolean;
284
+ items: ContextMenuItem[];
285
+ loopFocus?: boolean;
286
+ onOpenChange?: (open: boolean) => void;
287
+ open?: boolean;
288
+ showArrow?: boolean;
289
+ side?: ContextMenuSide;
290
+ sideOffset?: number;
291
+ size?: ContextMenuSize;
292
+ triggerClassName?: string;
293
+ }
294
+
295
+ declare const ContextMenu: react.ForwardRefExoticComponent<ContextMenuProps & react.RefAttributes<HTMLDivElement>>;
296
+
297
+ type DatePickerSize = "sm" | "md" | "lg";
298
+ interface DatePickerProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "aria-describedby" | "aria-invalid" | "children" | "className" | "onChange" | "size" | "type"> {
299
+ className?: string;
300
+ datePickerSize?: DatePickerSize;
301
+ description?: ReactNode;
302
+ error?: ReactNode;
303
+ inputClassName?: string;
304
+ invalid?: boolean;
305
+ label?: ReactNode;
306
+ onBlur?: FocusEventHandler<HTMLInputElement>;
307
+ onChange?: ChangeEventHandler<HTMLInputElement>;
308
+ onValueChange?: (value: string) => void;
309
+ clearLabel?: string;
310
+ showClearButton?: boolean;
311
+ }
312
+
313
+ declare const DatePicker: react.ForwardRefExoticComponent<DatePickerProps & react.RefAttributes<HTMLInputElement>>;
314
+
315
+ type DropdownMenuAlign = "start" | "center" | "end";
316
+ type DropdownMenuSide = "top" | "right" | "bottom" | "left";
317
+ type DropdownMenuSize = "sm" | "md";
318
+ type DropdownMenuItem = {
319
+ type?: "item";
320
+ label: ReactNode;
321
+ description?: ReactNode;
322
+ disabled?: boolean;
323
+ destructive?: boolean;
324
+ closeOnClick?: boolean;
325
+ onSelect?: () => void;
326
+ } | {
327
+ type: "link";
328
+ label: ReactNode;
329
+ description?: ReactNode;
330
+ href: string;
331
+ closeOnClick?: boolean;
332
+ } | {
333
+ type: "separator";
334
+ };
335
+ interface DropdownMenuProps extends HTMLAttributes<HTMLDivElement> {
336
+ trigger: ReactNode;
337
+ items: DropdownMenuItem[];
338
+ open?: boolean;
339
+ defaultOpen?: boolean;
340
+ onOpenChange?: (open: boolean) => void;
341
+ disabled?: boolean;
342
+ modal?: boolean;
343
+ loopFocus?: boolean;
344
+ align?: DropdownMenuAlign;
345
+ side?: DropdownMenuSide;
346
+ sideOffset?: number;
347
+ size?: DropdownMenuSize;
348
+ showArrow?: boolean;
349
+ triggerClassName?: string;
350
+ }
351
+
352
+ declare const DropdownMenu: react.ForwardRefExoticComponent<DropdownMenuProps & react.RefAttributes<HTMLDivElement>>;
353
+
354
+ type DrawerSide = "top" | "right" | "bottom" | "left";
355
+ type DrawerSize = "sm" | "md" | "lg" | "full";
356
+ interface DrawerProps {
357
+ open?: boolean;
358
+ defaultOpen?: boolean;
359
+ trigger?: ReactNode;
360
+ title: ReactNode;
361
+ description?: ReactNode;
362
+ children?: ReactNode;
363
+ footer?: ReactNode;
364
+ side?: DrawerSide;
365
+ size?: DrawerSize;
366
+ modal?: boolean | "trap-focus";
367
+ disablePointerDismissal?: boolean;
368
+ showCloseButton?: boolean;
369
+ closeLabel?: string;
370
+ className?: string;
371
+ triggerClassName?: string;
372
+ contentClassName?: string;
373
+ footerClassName?: string;
374
+ onOpenChange?: (open: boolean) => void;
375
+ }
376
+
377
+ declare const Drawer: react.ForwardRefExoticComponent<DrawerProps & react.RefAttributes<HTMLDivElement>>;
378
+
379
+ type EmptyStateAlign = "start" | "center";
380
+ type EmptyStateDensity = "compact" | "comfortable";
381
+ type EmptyStateTone = "neutral" | "info" | "success" | "warning" | "danger";
382
+ interface EmptyStateProps extends Omit<HTMLAttributes<HTMLElement>, "title"> {
383
+ title: ReactNode;
384
+ description?: ReactNode;
385
+ icon?: ReactNode;
386
+ media?: ReactNode;
387
+ action?: ReactNode;
388
+ secondaryAction?: ReactNode;
389
+ align?: EmptyStateAlign;
390
+ as?: "section" | "div";
391
+ density?: EmptyStateDensity;
392
+ tone?: EmptyStateTone;
393
+ }
394
+
395
+ declare const EmptyState: react.ForwardRefExoticComponent<EmptyStateProps & react.RefAttributes<HTMLElement>>;
396
+
397
+ type FieldsetDensity = "compact" | "comfortable";
398
+ type FieldsetVariant = "plain" | "outlined" | "filled";
399
+ interface FieldsetProps extends Omit<FieldsetHTMLAttributes<HTMLFieldSetElement>, "children"> {
400
+ children?: ReactNode;
401
+ description?: ReactNode;
402
+ density?: FieldsetDensity;
403
+ error?: ReactNode;
404
+ legend: ReactNode;
405
+ required?: boolean;
406
+ variant?: FieldsetVariant;
407
+ }
408
+
409
+ declare const Fieldset: react.ForwardRefExoticComponent<FieldsetProps & react.RefAttributes<HTMLFieldSetElement>>;
410
+
411
+ interface FormFieldControlProps {
412
+ id?: string;
413
+ "aria-describedby"?: string;
414
+ "aria-invalid"?: boolean | "false" | "true";
415
+ invalid?: boolean;
416
+ }
417
+ interface FormFieldProps {
418
+ children: ReactElement<FormFieldControlProps>;
419
+ id?: string;
420
+ label: ReactNode;
421
+ description?: ReactNode;
422
+ error?: ReactNode;
423
+ required?: boolean;
424
+ className?: string;
425
+ }
426
+
427
+ declare function FormField({ children, className, description, error, id, label, required, }: FormFieldProps): react.JSX.Element;
428
+
429
+ type InputSize = "sm" | "md" | "lg";
430
+ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
431
+ inputSize?: InputSize;
432
+ invalid?: boolean;
433
+ }
434
+
435
+ declare const Input: react.ForwardRefExoticComponent<InputProps & react.RefAttributes<HTMLInputElement>>;
436
+
437
+ type MenubarAlign = "start" | "center" | "end";
438
+ type MenubarOrientation = "horizontal" | "vertical";
439
+ type MenubarSize = "sm" | "md";
440
+ type MenubarMenuItem = {
441
+ type?: "item";
442
+ label: ReactNode;
443
+ description?: ReactNode;
444
+ disabled?: boolean;
445
+ destructive?: boolean;
446
+ closeOnClick?: boolean;
447
+ onSelect?: () => void;
448
+ } | {
449
+ type: "link";
450
+ label: ReactNode;
451
+ description?: ReactNode;
452
+ href: string;
453
+ closeOnClick?: boolean;
454
+ } | {
455
+ type: "separator";
456
+ };
457
+ interface MenubarMenu {
458
+ label: ReactNode;
459
+ items: MenubarMenuItem[];
460
+ disabled?: boolean;
461
+ open?: boolean;
462
+ defaultOpen?: boolean;
463
+ onOpenChange?: (open: boolean) => void;
464
+ }
465
+ interface MenubarProps extends HTMLAttributes<HTMLDivElement> {
466
+ menus: MenubarMenu[];
467
+ align?: MenubarAlign;
468
+ disabled?: boolean;
469
+ loopFocus?: boolean;
470
+ modal?: boolean;
471
+ orientation?: MenubarOrientation;
472
+ popupClassName?: string;
473
+ showArrow?: boolean;
474
+ sideOffset?: number;
475
+ size?: MenubarSize;
476
+ }
477
+
478
+ declare const Menubar: react.ForwardRefExoticComponent<MenubarProps & react.RefAttributes<HTMLDivElement>>;
479
+
480
+ type NavigationMenuAlign = "start" | "center" | "end";
481
+ type NavigationMenuOrientation = "horizontal" | "vertical";
482
+ type NavigationMenuSide = "top" | "right" | "bottom" | "left";
483
+ type NavigationMenuSize = "sm" | "md";
484
+ interface NavigationMenuLinkItem {
485
+ label: ReactNode;
486
+ href: string;
487
+ description?: ReactNode;
488
+ active?: boolean;
489
+ disabled?: boolean;
490
+ closeOnClick?: boolean;
491
+ }
492
+ interface NavigationMenuFeaturedItem {
493
+ label: ReactNode;
494
+ href: string;
495
+ description?: ReactNode;
496
+ eyebrow?: ReactNode;
497
+ }
498
+ type NavigationMenuItem = {
499
+ type?: "link";
500
+ label: ReactNode;
501
+ href: string;
502
+ active?: boolean;
503
+ disabled?: boolean;
504
+ } | {
505
+ type: "section";
506
+ label: ReactNode;
507
+ value: string;
508
+ links: NavigationMenuLinkItem[];
509
+ featured?: NavigationMenuFeaturedItem;
510
+ disabled?: boolean;
511
+ };
512
+ interface NavigationMenuProps extends Omit<HTMLAttributes<HTMLElement>, "defaultValue"> {
513
+ items: NavigationMenuItem[];
514
+ align?: NavigationMenuAlign;
515
+ closeDelay?: number;
516
+ defaultValue?: string | null;
517
+ delay?: number;
518
+ onValueChange?: (value: string | null) => void;
519
+ orientation?: NavigationMenuOrientation;
520
+ popupClassName?: string;
521
+ showArrow?: boolean;
522
+ side?: NavigationMenuSide;
523
+ sideOffset?: number;
524
+ size?: NavigationMenuSize;
525
+ value?: string | null;
526
+ }
527
+
528
+ declare const NavigationMenu: react.ForwardRefExoticComponent<NavigationMenuProps & react.RefAttributes<HTMLElement>>;
529
+
530
+ type NumberFieldSize = "sm" | "md" | "lg";
531
+ interface NumberFieldProps extends Omit<HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
532
+ value?: number | null;
533
+ defaultValue?: number;
534
+ onValueChange?: (value: number | null) => void;
535
+ onValueCommitted?: (value: number | null) => void;
536
+ label?: string;
537
+ description?: string;
538
+ error?: string;
539
+ placeholder?: string;
540
+ disabled?: boolean;
541
+ readOnly?: boolean;
542
+ required?: boolean;
543
+ invalid?: boolean;
544
+ min?: number;
545
+ max?: number;
546
+ step?: number | "any";
547
+ smallStep?: number;
548
+ largeStep?: number;
549
+ allowOutOfRange?: boolean;
550
+ allowWheelScrub?: boolean;
551
+ snapOnStep?: boolean;
552
+ format?: Intl.NumberFormatOptions;
553
+ locale?: Intl.LocalesArgument;
554
+ name?: string;
555
+ inputProps?: Omit<InputHTMLAttributes<HTMLInputElement>, "defaultValue" | "disabled" | "value">;
556
+ inputRef?: Ref<HTMLInputElement>;
557
+ size?: NumberFieldSize;
558
+ showSteppers?: boolean;
559
+ }
560
+
561
+ declare const NumberField: react.ForwardRefExoticComponent<NumberFieldProps & react.RefAttributes<HTMLDivElement>>;
562
+
563
+ type OTPFieldSize = "sm" | "md" | "lg";
564
+ type OTPFieldValidationType = "numeric" | "alpha" | "alphanumeric" | "none";
565
+ interface OTPFieldProps extends Omit<HTMLAttributes<HTMLDivElement>, "children" | "onChange"> {
566
+ autoComplete?: string;
567
+ autoSubmit?: boolean;
568
+ defaultValue?: string;
569
+ description?: ReactNode;
570
+ disabled?: boolean;
571
+ error?: ReactNode;
572
+ form?: string;
573
+ id?: string;
574
+ inputMode?: InputHTMLAttributes<HTMLInputElement>["inputMode"];
575
+ inputRef?: Ref<HTMLInputElement>;
576
+ invalid?: boolean;
577
+ label?: ReactNode;
578
+ length?: number;
579
+ mask?: boolean;
580
+ name?: string;
581
+ normalizeValue?: (value: string) => string;
582
+ onValueChange?: (value: string) => void;
583
+ onValueComplete?: (value: string) => void;
584
+ onValueInvalid?: (value: string) => void;
585
+ readOnly?: boolean;
586
+ required?: boolean;
587
+ separatorEvery?: number;
588
+ separatorLabel?: string;
589
+ size?: OTPFieldSize;
590
+ validationType?: OTPFieldValidationType;
591
+ value?: string;
592
+ }
593
+
594
+ declare const OTPField: react.ForwardRefExoticComponent<OTPFieldProps & react.RefAttributes<HTMLDivElement>>;
595
+
596
+ type PaginationSize = "sm" | "md";
597
+ type PaginationSiblingCount = 0 | 1 | 2;
598
+ interface PaginationProps extends HTMLAttributes<HTMLElement> {
599
+ page: number;
600
+ totalPages: number;
601
+ onPageChange?: (page: number) => void;
602
+ siblingCount?: PaginationSiblingCount;
603
+ size?: PaginationSize;
604
+ disabled?: boolean;
605
+ getPageHref?: (page: number) => string;
606
+ }
607
+
608
+ declare const Pagination: react.ForwardRefExoticComponent<PaginationProps & react.RefAttributes<HTMLElement>>;
609
+
610
+ type PopoverSide = "top" | "right" | "bottom" | "left";
611
+ type PopoverAlign = "start" | "center" | "end";
612
+ type PopoverSize = "sm" | "md";
613
+ interface PopoverProps {
614
+ open?: boolean;
615
+ defaultOpen?: boolean;
616
+ trigger: ReactNode;
617
+ title?: ReactNode;
618
+ description?: ReactNode;
619
+ children?: ReactNode;
620
+ footer?: ReactNode;
621
+ side?: PopoverSide;
622
+ align?: PopoverAlign;
623
+ sideOffset?: number;
624
+ size?: PopoverSize;
625
+ modal?: boolean | "trap-focus";
626
+ openOnHover?: boolean;
627
+ delay?: number;
628
+ closeDelay?: number;
629
+ showArrow?: boolean;
630
+ showCloseButton?: boolean;
631
+ closeLabel?: string;
632
+ className?: string;
633
+ triggerClassName?: string;
634
+ contentClassName?: string;
635
+ footerClassName?: string;
636
+ onOpenChange?: (open: boolean) => void;
637
+ }
638
+
639
+ declare const Popover: react.ForwardRefExoticComponent<PopoverProps & react.RefAttributes<HTMLDivElement>>;
640
+
641
+ type ProgressIntent = "neutral" | "info" | "success" | "warning" | "danger";
642
+ type ProgressSize = "sm" | "md" | "lg";
643
+ interface ProgressProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
644
+ description?: ReactNode;
645
+ format?: Intl.NumberFormatOptions;
646
+ getAriaValueText?: (formattedValue: string, value: number | null) => string;
647
+ intent?: ProgressIntent;
648
+ label?: ReactNode;
649
+ locale?: Intl.LocalesArgument;
650
+ max?: number;
651
+ min?: number;
652
+ showValue?: boolean;
653
+ size?: ProgressSize;
654
+ value: number | null;
655
+ valueLabel?: ReactNode;
656
+ }
657
+ interface MeterProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
658
+ description?: ReactNode;
659
+ format?: Intl.NumberFormatOptions;
660
+ getAriaValueText?: (formattedValue: string, value: number) => string;
661
+ intent?: ProgressIntent;
662
+ label?: ReactNode;
663
+ locale?: Intl.LocalesArgument;
664
+ max?: number;
665
+ min?: number;
666
+ showValue?: boolean;
667
+ size?: ProgressSize;
668
+ value: number;
669
+ valueLabel?: ReactNode;
670
+ }
671
+
672
+ declare const Progress: react.ForwardRefExoticComponent<ProgressProps & react.RefAttributes<HTMLDivElement>>;
673
+ declare const Meter: react.ForwardRefExoticComponent<MeterProps & react.RefAttributes<HTMLDivElement>>;
674
+
675
+ type RadioGroupOrientation = "vertical" | "horizontal";
676
+ interface RadioGroupOption {
677
+ value: string;
678
+ label: ReactNode;
679
+ description?: ReactNode;
680
+ disabled?: boolean;
681
+ }
682
+ interface RadioGroupProps {
683
+ id?: string;
684
+ name?: string;
685
+ value?: string;
686
+ defaultValue?: string;
687
+ label?: ReactNode;
688
+ description?: ReactNode;
689
+ options: RadioGroupOption[];
690
+ orientation?: RadioGroupOrientation;
691
+ disabled?: boolean;
692
+ readOnly?: boolean;
693
+ required?: boolean;
694
+ invalid?: boolean;
695
+ className?: string;
696
+ onValueChange?: (value: string) => void;
697
+ }
698
+
699
+ declare const RadioGroup: react.ForwardRefExoticComponent<RadioGroupProps & react.RefAttributes<HTMLDivElement>>;
700
+
701
+ type SelectSize = "sm" | "md" | "lg";
702
+ interface SelectOption {
703
+ value: string;
704
+ label: ReactNode;
705
+ description?: ReactNode;
706
+ disabled?: boolean;
707
+ textValue?: string;
708
+ }
709
+ interface SelectProps {
710
+ id?: string;
711
+ name?: string;
712
+ value?: string | null;
713
+ defaultValue?: string | null;
714
+ label?: ReactNode;
715
+ description?: ReactNode;
716
+ placeholder?: ReactNode;
717
+ options: SelectOption[];
718
+ selectSize?: SelectSize;
719
+ disabled?: boolean;
720
+ readOnly?: boolean;
721
+ required?: boolean;
722
+ invalid?: boolean;
723
+ className?: string;
724
+ triggerClassName?: string;
725
+ ariaLabel?: string;
726
+ onValueChange?: (value: string | null) => void;
727
+ }
728
+
729
+ declare const Select: react.ForwardRefExoticComponent<SelectProps & react.RefAttributes<HTMLButtonElement>>;
730
+
731
+ type ScrollAreaScrollbarVisibility = "auto" | "always" | "none";
732
+ type ScrollAreaSize = "sm" | "md" | "lg";
733
+ interface ScrollAreaProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
734
+ children?: ReactNode;
735
+ contentClassName?: string;
736
+ height?: CSSProperties["height"];
737
+ maxHeight?: CSSProperties["maxHeight"];
738
+ maxWidth?: CSSProperties["maxWidth"];
739
+ minHeight?: CSSProperties["minHeight"];
740
+ minWidth?: CSSProperties["minWidth"];
741
+ overflowEdgeThreshold?: number | Partial<{
742
+ xStart: number;
743
+ xEnd: number;
744
+ yStart: number;
745
+ yEnd: number;
746
+ }>;
747
+ scrollbarVisibility?: ScrollAreaScrollbarVisibility;
748
+ showEdgeShadows?: boolean;
749
+ size?: ScrollAreaSize;
750
+ viewportClassName?: string;
751
+ viewportRef?: Ref<HTMLDivElement>;
752
+ width?: CSSProperties["width"];
753
+ }
754
+
755
+ declare const ScrollArea: react.ForwardRefExoticComponent<ScrollAreaProps & react.RefAttributes<HTMLDivElement>>;
756
+
757
+ type SeparatorOrientation = "horizontal" | "vertical";
758
+ type SeparatorSpacing = "none" | "xs" | "sm" | "md" | "lg";
759
+ type SeparatorVariant = "subtle" | "strong";
760
+ interface SeparatorProps extends HTMLAttributes<HTMLDivElement> {
761
+ orientation?: SeparatorOrientation;
762
+ spacing?: SeparatorSpacing;
763
+ variant?: SeparatorVariant;
764
+ decorative?: boolean;
765
+ }
766
+
767
+ declare const Separator: react.ForwardRefExoticComponent<SeparatorProps & react.RefAttributes<HTMLDivElement>>;
768
+
769
+ type SidePanelPosition = "left" | "right";
770
+ type SidePanelSize = "sm" | "md" | "lg";
771
+ type SidePanelVariant = "plain" | "bordered" | "elevated";
772
+ interface SidePanelProps extends Omit<HTMLAttributes<HTMLElement>, "title"> {
773
+ title?: ReactNode;
774
+ description?: ReactNode;
775
+ children?: ReactNode;
776
+ footer?: ReactNode;
777
+ position?: SidePanelPosition;
778
+ size?: SidePanelSize;
779
+ sticky?: boolean;
780
+ variant?: SidePanelVariant;
781
+ contentClassName?: string;
782
+ footerClassName?: string;
783
+ headerClassName?: string;
784
+ }
785
+
786
+ declare const SidePanel: react.ForwardRefExoticComponent<SidePanelProps & react.RefAttributes<HTMLElement>>;
787
+
788
+ type SliderOrientation = "horizontal" | "vertical";
789
+ type SliderSize = "sm" | "md";
790
+ type SliderValue = number | number[];
791
+ interface SliderProps extends Omit<HTMLAttributes<HTMLDivElement>, "defaultValue" | "onChange"> {
792
+ value?: SliderValue;
793
+ defaultValue?: SliderValue;
794
+ onValueChange?: (value: SliderValue) => void;
795
+ onValueCommitted?: (value: SliderValue) => void;
796
+ label?: string;
797
+ description?: string;
798
+ showValue?: boolean;
799
+ valueSuffix?: string;
800
+ thumbLabels?: string[];
801
+ disabled?: boolean;
802
+ invalid?: boolean;
803
+ min?: number;
804
+ max?: number;
805
+ step?: number;
806
+ largeStep?: number;
807
+ minStepsBetweenValues?: number;
808
+ name?: string;
809
+ orientation?: SliderOrientation;
810
+ size?: SliderSize;
811
+ }
812
+
813
+ declare const Slider: react.ForwardRefExoticComponent<SliderProps & react.RefAttributes<HTMLDivElement>>;
814
+
815
+ type SkeletonShape = "text" | "rectangle" | "circle";
816
+ interface SkeletonProps extends HTMLAttributes<HTMLSpanElement> {
817
+ shape?: SkeletonShape;
818
+ width?: number | string;
819
+ height?: number | string;
820
+ lines?: number;
821
+ animated?: boolean;
822
+ }
823
+
824
+ declare const Skeleton: react.ForwardRefExoticComponent<SkeletonProps & react.RefAttributes<HTMLSpanElement>>;
825
+
826
+ type SpinnerSize = "sm" | "md" | "lg";
827
+ type SpinnerIntent = "neutral" | "primary" | "success" | "warning" | "danger";
828
+ interface SpinnerProps extends HTMLAttributes<HTMLSpanElement> {
829
+ size?: SpinnerSize;
830
+ intent?: SpinnerIntent;
831
+ label?: string;
832
+ }
833
+
834
+ declare const Spinner: react.ForwardRefExoticComponent<SpinnerProps & react.RefAttributes<HTMLSpanElement>>;
835
+
836
+ interface SwitchProps {
837
+ id?: string;
838
+ name?: string;
839
+ value?: string;
840
+ uncheckedValue?: string;
841
+ checked?: boolean;
842
+ defaultChecked?: boolean;
843
+ disabled?: boolean;
844
+ readOnly?: boolean;
845
+ required?: boolean;
846
+ invalid?: boolean;
847
+ label?: ReactNode;
848
+ description?: ReactNode;
849
+ className?: string;
850
+ onCheckedChange?: (checked: boolean) => void;
851
+ }
852
+
853
+ declare const Switch: react.ForwardRefExoticComponent<SwitchProps & react.RefAttributes<HTMLElement>>;
854
+
855
+ type TabsOrientation = "horizontal" | "vertical";
856
+ type TabsVariant = "line" | "contained";
857
+ interface TabsItem {
858
+ value: string;
859
+ label: ReactNode;
860
+ content: ReactNode;
861
+ disabled?: boolean;
862
+ }
863
+ interface TabsProps {
864
+ value?: string | null;
865
+ defaultValue?: string | null;
866
+ items: TabsItem[];
867
+ orientation?: TabsOrientation;
868
+ variant?: TabsVariant;
869
+ keepMounted?: boolean;
870
+ className?: string;
871
+ listClassName?: string;
872
+ panelClassName?: string;
873
+ ariaLabel?: string;
874
+ onValueChange?: (value: string | null) => void;
875
+ }
876
+
877
+ declare const Tabs: react.ForwardRefExoticComponent<TabsProps & react.RefAttributes<HTMLDivElement>>;
878
+
879
+ type TableDensity = "compact" | "comfortable";
880
+ type TableVariant = "plain" | "outlined";
881
+ interface TableRootProps extends HTMLAttributes<HTMLDivElement> {
882
+ density?: TableDensity;
883
+ variant?: TableVariant;
884
+ }
885
+ type TableProps = TableHTMLAttributes<HTMLTableElement>;
886
+ type TableSectionProps = HTMLAttributes<HTMLTableSectionElement>;
887
+ type TableRowProps = HTMLAttributes<HTMLTableRowElement>;
888
+ type TableHeaderCellProps = ThHTMLAttributes<HTMLTableCellElement>;
889
+ type TableCellProps = TdHTMLAttributes<HTMLTableCellElement>;
890
+ type TableCaptionProps = HTMLAttributes<HTMLTableCaptionElement>;
891
+
892
+ declare const TableRoot: react.ForwardRefExoticComponent<TableRootProps & react.RefAttributes<HTMLDivElement>>;
893
+ declare const Table: react.ForwardRefExoticComponent<TableProps & react.RefAttributes<HTMLTableElement>>;
894
+ declare const TableHeader: react.ForwardRefExoticComponent<TableSectionProps & react.RefAttributes<HTMLTableSectionElement>>;
895
+ declare const TableBody: react.ForwardRefExoticComponent<TableSectionProps & react.RefAttributes<HTMLTableSectionElement>>;
896
+ declare const TableFooter: react.ForwardRefExoticComponent<TableSectionProps & react.RefAttributes<HTMLTableSectionElement>>;
897
+ declare const TableRow: react.ForwardRefExoticComponent<TableRowProps & react.RefAttributes<HTMLTableRowElement>>;
898
+ declare const TableHeaderCell: react.ForwardRefExoticComponent<TableHeaderCellProps & react.RefAttributes<HTMLTableCellElement>>;
899
+ declare const TableCell: react.ForwardRefExoticComponent<TableCellProps & react.RefAttributes<HTMLTableCellElement>>;
900
+ declare const TableCaption: react.ForwardRefExoticComponent<TableCaptionProps & react.RefAttributes<HTMLTableCaptionElement>>;
901
+
902
+ type ToastPlacement = "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right";
903
+ type ToastIntent = "info" | "success" | "warning" | "error" | (string & {});
904
+ type ToastOptions<Data extends object = Record<string, never>> = ToastManagerAddOptions<Data>;
905
+ type ToastUpdateOptions<Data extends object = Record<string, never>> = ToastManagerUpdateOptions<Data>;
906
+ type ToastPromiseOptions<Value, Data extends object = Record<string, never>> = ToastManagerPromiseOptions<Value, Data>;
907
+ type ToastItem<Data extends object = Record<string, never>> = ToastObject<Data>;
908
+ type ToastManager<Data extends object = Record<string, never>> = UseToastManagerReturnValue<Data>;
909
+ interface ToastProviderProps {
910
+ children?: ReactNode;
911
+ limit?: number;
912
+ timeout?: number;
913
+ }
914
+ interface ToastViewportProps {
915
+ placement?: ToastPlacement;
916
+ className?: string;
917
+ toastClassName?: string;
918
+ closeLabel?: string;
919
+ swipeDirection?: "up" | "down" | "left" | "right" | ("up" | "down" | "left" | "right")[];
920
+ }
921
+
922
+ declare function ToastProvider({ children, limit, timeout }: ToastProviderProps): react.JSX.Element;
923
+ declare function ToastViewport({ className, closeLabel, placement, swipeDirection, toastClassName, }: ToastViewportProps): react.JSX.Element;
924
+ declare function useToast(): _base_ui_react.UseToastManagerReturnValue<any>;
925
+ declare const createToastManager: typeof Toast.createToastManager;
926
+
927
+ type ToggleSize = "sm" | "md";
928
+ type ToggleVariant = "plain" | "outlined";
929
+ type ToggleGroupOrientation = "horizontal" | "vertical";
930
+ interface ToggleProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "value"> {
931
+ pressed?: boolean;
932
+ defaultPressed?: boolean;
933
+ onPressedChange?: (pressed: boolean) => void;
934
+ size?: ToggleSize;
935
+ variant?: ToggleVariant;
936
+ value?: string;
937
+ }
938
+ interface ToggleGroupItem {
939
+ value: string;
940
+ label: ReactNode;
941
+ disabled?: boolean;
942
+ }
943
+ interface ToggleGroupProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange"> {
944
+ items: ToggleGroupItem[];
945
+ value?: string[];
946
+ defaultValue?: string[];
947
+ onValueChange?: (value: string[]) => void;
948
+ multiple?: boolean;
949
+ disabled?: boolean;
950
+ loopFocus?: boolean;
951
+ orientation?: ToggleGroupOrientation;
952
+ size?: ToggleSize;
953
+ variant?: ToggleVariant;
954
+ ariaLabel?: string;
955
+ }
956
+
957
+ declare const Toggle: react.ForwardRefExoticComponent<ToggleProps & react.RefAttributes<HTMLButtonElement>>;
958
+
959
+ declare const ToggleGroup: react.ForwardRefExoticComponent<ToggleGroupProps & react.RefAttributes<HTMLDivElement>>;
960
+
961
+ type ToolbarOrientation = "horizontal" | "vertical";
962
+ type ToolbarSize = "sm" | "md";
963
+ type ToolbarVariant = "plain" | "outlined";
964
+ interface ToolbarProps extends HTMLAttributes<HTMLDivElement> {
965
+ children: ReactNode;
966
+ disabled?: boolean;
967
+ loopFocus?: boolean;
968
+ orientation?: ToolbarOrientation;
969
+ size?: ToolbarSize;
970
+ variant?: ToolbarVariant;
971
+ ariaLabel?: string;
972
+ }
973
+ interface ToolbarGroupProps extends HTMLAttributes<HTMLDivElement> {
974
+ children: ReactNode;
975
+ disabled?: boolean;
976
+ }
977
+ interface ToolbarButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
978
+ focusableWhenDisabled?: boolean;
979
+ }
980
+ interface ToolbarLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
981
+ children: ReactNode;
982
+ }
983
+ interface ToolbarInputProps extends InputHTMLAttributes<HTMLInputElement> {
984
+ focusableWhenDisabled?: boolean;
985
+ }
986
+ interface ToolbarSeparatorProps extends HTMLAttributes<HTMLDivElement> {
987
+ orientation?: ToolbarOrientation;
988
+ }
989
+
990
+ declare const Toolbar: react.ForwardRefExoticComponent<ToolbarProps & react.RefAttributes<HTMLDivElement>>;
991
+ declare const ToolbarGroup: react.ForwardRefExoticComponent<ToolbarGroupProps & react.RefAttributes<HTMLDivElement>>;
992
+ declare const ToolbarButton: react.ForwardRefExoticComponent<ToolbarButtonProps & react.RefAttributes<HTMLButtonElement>>;
993
+ declare const ToolbarLink: react.ForwardRefExoticComponent<ToolbarLinkProps & react.RefAttributes<HTMLAnchorElement>>;
994
+ declare const ToolbarInput: react.ForwardRefExoticComponent<ToolbarInputProps & react.RefAttributes<HTMLInputElement>>;
995
+ declare const ToolbarSeparator: react.ForwardRefExoticComponent<ToolbarSeparatorProps & react.RefAttributes<HTMLDivElement>>;
996
+
997
+ type TooltipSide = "top" | "right" | "bottom" | "left";
998
+ type TooltipAlign = "start" | "center" | "end";
999
+ interface TooltipProviderProps {
1000
+ children?: ReactNode;
1001
+ delay?: number;
1002
+ closeDelay?: number;
1003
+ timeout?: number;
1004
+ }
1005
+ interface TooltipProps {
1006
+ children: ReactNode;
1007
+ content: ReactNode;
1008
+ ariaLabel?: string;
1009
+ open?: boolean;
1010
+ defaultOpen?: boolean;
1011
+ disabled?: boolean;
1012
+ side?: TooltipSide;
1013
+ align?: TooltipAlign;
1014
+ sideOffset?: number;
1015
+ delay?: number;
1016
+ closeDelay?: number;
1017
+ closeOnClick?: boolean;
1018
+ className?: string;
1019
+ triggerClassName?: string;
1020
+ onOpenChange?: (open: boolean) => void;
1021
+ }
1022
+
1023
+ declare function TooltipProvider({ children, closeDelay, delay, timeout }: TooltipProviderProps): react.JSX.Element;
1024
+ declare function Tooltip({ align, ariaLabel, children, className, closeDelay, closeOnClick, content, defaultOpen, delay, disabled, onOpenChange, open, side, sideOffset, triggerClassName, }: TooltipProps): react.JSX.Element;
1025
+
1026
+ declare const UI_PACKAGE_NAME = "@mithunsalinda/veyqor-ui";
1027
+ declare const UI_PACKAGE_VERSION = "0.1.0";
1028
+
1029
+ export { Accordion, type AccordionItem, type AccordionProps, type AccordionSize, type AccordionVariant, Alert, type AlertIntent, type AlertProps, type AlertVariant, Avatar, type AvatarProps, type AvatarShape, type AvatarSize, Badge, type BadgeIntent, type BadgeProps, type BadgeShape, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, type BreadcrumbSize, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, CardContent, CardDescription, type CardDescriptionProps, CardFooter, CardHeader, CardMedia, type CardMediaProps, type CardPadding, type CardProps, type CardSectionProps, CardTitle, type CardTitleProps, type CardVariant, Checkbox, type CheckboxProps, Collapsible, type CollapsibleProps, type CollapsibleSize, type CollapsibleVariant, Combobox, type ComboboxOption, type ComboboxProps, type ComboboxSize, Command, type CommandAction, CommandDialog, type CommandDialogProps, type CommandGroup, type CommandProps, type CommandSize, ContextMenu, type ContextMenuAlign, type ContextMenuItem, type ContextMenuProps, type ContextMenuSide, type ContextMenuSize, DatePicker, type DatePickerProps, type DatePickerSize, Dialog, type DialogProps, type DialogSize, Drawer, type DrawerProps, type DrawerSide, type DrawerSize, DropdownMenu, type DropdownMenuAlign, type DropdownMenuItem, type DropdownMenuProps, type DropdownMenuSide, type DropdownMenuSize, EmptyState, type EmptyStateAlign, type EmptyStateDensity, type EmptyStateProps, type EmptyStateTone, Fieldset, type FieldsetDensity, type FieldsetProps, type FieldsetVariant, FormField, type FormFieldControlProps, type FormFieldProps, Input, type InputProps, type InputSize, Menubar, type MenubarAlign, type MenubarMenu, type MenubarMenuItem, type MenubarOrientation, type MenubarProps, type MenubarSize, Meter, type MeterProps, NavigationMenu, type NavigationMenuAlign, type NavigationMenuFeaturedItem, type NavigationMenuItem, type NavigationMenuLinkItem, type NavigationMenuOrientation, type NavigationMenuProps, type NavigationMenuSide, type NavigationMenuSize, NumberField, type NumberFieldProps, type NumberFieldSize, OTPField, type OTPFieldProps, type OTPFieldSize, type OTPFieldValidationType, Pagination, type PaginationProps, type PaginationSiblingCount, type PaginationSize, Popover, type PopoverAlign, type PopoverProps, type PopoverSide, type PopoverSize, Progress, type ProgressIntent, type ProgressProps, type ProgressSize, RadioGroup, type RadioGroupOption, type RadioGroupOrientation, type RadioGroupProps, ScrollArea, type ScrollAreaProps, type ScrollAreaScrollbarVisibility, type ScrollAreaSize, Select, type SelectOption, type SelectProps, type SelectSize, Separator, type SeparatorOrientation, type SeparatorProps, type SeparatorSpacing, type SeparatorVariant, SidePanel, type SidePanelPosition, type SidePanelProps, type SidePanelSize, type SidePanelVariant, Skeleton, type SkeletonProps, type SkeletonShape, Slider, type SliderOrientation, type SliderProps, type SliderSize, type SliderValue, Spinner, type SpinnerIntent, type SpinnerProps, type SpinnerSize, Switch, type SwitchProps, Table, TableBody, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, type TableDensity, TableFooter, TableHeader, TableHeaderCell, type TableHeaderCellProps, type TableProps, TableRoot, type TableRootProps, TableRow, type TableRowProps, type TableSectionProps, type TableVariant, Tabs, type TabsItem, type TabsOrientation, type TabsProps, type TabsVariant, type ToastIntent, type ToastItem, type ToastManager, type ToastOptions, type ToastPlacement, type ToastPromiseOptions, ToastProvider, type ToastProviderProps, type ToastUpdateOptions, ToastViewport, type ToastViewportProps, Toggle, ToggleGroup, type ToggleGroupItem, type ToggleGroupOrientation, type ToggleGroupProps, type ToggleProps, type ToggleSize, type ToggleVariant, Toolbar, ToolbarButton, type ToolbarButtonProps, ToolbarGroup, type ToolbarGroupProps, ToolbarInput, type ToolbarInputProps, ToolbarLink, type ToolbarLinkProps, type ToolbarOrientation, type ToolbarProps, ToolbarSeparator, type ToolbarSeparatorProps, type ToolbarSize, type ToolbarVariant, Tooltip, type TooltipAlign, type TooltipProps, TooltipProvider, type TooltipProviderProps, type TooltipSide, UI_PACKAGE_NAME, UI_PACKAGE_VERSION, createToastManager, useToast };