@onesaz/ui 0.3.2 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -5,6 +5,9 @@ import { ClassValue } from 'clsx';
5
5
  import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
6
6
  import * as SelectPrimitive from '@radix-ui/react-select';
7
7
  import * as DialogPrimitive from '@radix-ui/react-dialog';
8
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
9
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
10
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
8
11
 
9
12
  interface ThemeProviderProps {
10
13
  children: React.ReactNode;
@@ -186,8 +189,19 @@ declare const Caption: React.ForwardRefExoticComponent<Omit<TypographyProps, "va
186
189
  interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
187
190
  variant?: 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link';
188
191
  size?: 'default' | 'sm' | 'lg' | 'icon';
192
+ /** Whether the button should take the full width of its container */
193
+ fullWidth?: boolean;
189
194
  }
190
195
  declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
196
+ interface IconButtonProps extends Omit<ButtonProps, 'size'> {
197
+ /** Size of the icon button */
198
+ size?: 'xs' | 'sm' | 'md' | 'lg';
199
+ /** Whether the button is rounded (circular) */
200
+ rounded?: boolean;
201
+ /** Aria label for accessibility (required for icon-only buttons) */
202
+ 'aria-label': string;
203
+ }
204
+ declare const IconButton: React.ForwardRefExoticComponent<IconButtonProps & React.RefAttributes<HTMLButtonElement>>;
191
205
 
192
206
  interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
193
207
  /** Input size variant */
@@ -198,9 +212,42 @@ interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
198
212
  startAdornment?: React.ReactNode;
199
213
  /** End adornment */
200
214
  endAdornment?: React.ReactNode;
215
+ /** Wrapper class (when using adornments) */
216
+ containerClassName?: string;
201
217
  }
202
218
  declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
203
219
 
220
+ interface InputAdornmentProps extends React.HTMLAttributes<HTMLDivElement> {
221
+ /** Position of the adornment */
222
+ position?: 'start' | 'end';
223
+ /** Disable pointer events (useful for icons) */
224
+ disablePointerEvents?: boolean;
225
+ }
226
+ /**
227
+ * InputAdornment - A wrapper component for input adornments (icons, text, etc.)
228
+ *
229
+ * Can be used standalone or with Input/TextField components.
230
+ *
231
+ * @example
232
+ * ```tsx
233
+ * <Input
234
+ * startAdornment={
235
+ * <InputAdornment position="start">
236
+ * <SearchIcon className="h-4 w-4" />
237
+ * </InputAdornment>
238
+ * }
239
+ * />
240
+ *
241
+ * // Or with text
242
+ * <Input
243
+ * startAdornment={
244
+ * <InputAdornment position="start">$</InputAdornment>
245
+ * }
246
+ * />
247
+ * ```
248
+ */
249
+ declare const InputAdornment: React.ForwardRefExoticComponent<InputAdornmentProps & React.RefAttributes<HTMLDivElement>>;
250
+
204
251
  interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
205
252
  }
206
253
  declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
@@ -215,9 +262,26 @@ interface TextFieldProps extends Omit<InputProps, 'inputSize' | 'size'> {
215
262
  /** Required indicator */
216
263
  required?: boolean;
217
264
  /** Size of the text field */
218
- size?: 'sm' | 'md' | 'lg';
265
+ size?: 'sm' | 'md' | 'lg' | 'small' | 'medium';
219
266
  /** Full width mode */
220
267
  fullWidth?: boolean;
268
+ /** Start adornment (icon, text, etc.) */
269
+ startAdornment?: React.ReactNode;
270
+ /** End adornment (icon, text, etc.) */
271
+ endAdornment?: React.ReactNode;
272
+ /** Input element props (MUI-compatible) */
273
+ inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
274
+ /** Input container/slot props (MUI-compatible) */
275
+ InputProps?: {
276
+ startAdornment?: React.ReactNode;
277
+ endAdornment?: React.ReactNode;
278
+ className?: string;
279
+ containerClassName?: string;
280
+ };
281
+ /** Input label props (MUI-compatible) */
282
+ InputLabelProps?: React.LabelHTMLAttributes<HTMLLabelElement>;
283
+ /** Input ref (MUI-compatible) */
284
+ inputRef?: React.Ref<HTMLInputElement>;
221
285
  }
222
286
  declare const TextField: React.ForwardRefExoticComponent<TextFieldProps & React.RefAttributes<HTMLInputElement>>;
223
287
 
@@ -380,11 +444,123 @@ declare const DialogNamespace: React.FC<DialogPrimitive.DialogProps> & {
380
444
  Description: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
381
445
  };
382
446
 
447
+ declare const AlertDialog: React.FC<AlertDialogPrimitive.AlertDialogProps>;
448
+ declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
449
+ declare const AlertDialogPortal: React.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
450
+ declare const AlertDialogOverlay: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
451
+ interface AlertDialogContentProps extends React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Content> {
452
+ /** Visual variant of the alert dialog */
453
+ variant?: 'default' | 'destructive' | 'success' | 'warning' | 'info';
454
+ /** Whether to show an icon */
455
+ showIcon?: boolean;
456
+ }
457
+ declare const AlertDialogContent: React.ForwardRefExoticComponent<AlertDialogContentProps & React.RefAttributes<HTMLDivElement>>;
458
+ interface AlertDialogHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
459
+ }
460
+ declare const AlertDialogHeader: React.ForwardRefExoticComponent<AlertDialogHeaderProps & React.RefAttributes<HTMLDivElement>>;
461
+ interface AlertDialogFooterProps extends React.HTMLAttributes<HTMLDivElement> {
462
+ }
463
+ declare const AlertDialogFooter: React.ForwardRefExoticComponent<AlertDialogFooterProps & React.RefAttributes<HTMLDivElement>>;
464
+ declare const AlertDialogTitle: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
465
+ declare const AlertDialogDescription: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
466
+ declare const AlertDialogAction: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
467
+ declare const AlertDialogCancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
468
+
383
469
  interface SpinnerProps extends React.HTMLAttributes<HTMLDivElement> {
384
470
  size?: 'sm' | 'default' | 'lg';
385
471
  }
386
472
  declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<HTMLDivElement>>;
387
473
 
474
+ interface AlertProps extends React.HTMLAttributes<HTMLDivElement> {
475
+ /** The variant/severity of the alert */
476
+ variant?: 'default' | 'info' | 'success' | 'warning' | 'error' | 'destructive';
477
+ /** Whether the alert is dismissible */
478
+ dismissible?: boolean;
479
+ /** Callback when dismissed */
480
+ onDismiss?: () => void;
481
+ /** Icon to show (if undefined, a default icon is used based on variant) */
482
+ icon?: React.ReactNode;
483
+ /** Whether to show the default icon */
484
+ showIcon?: boolean;
485
+ }
486
+ declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
487
+ interface AlertTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
488
+ }
489
+ declare const AlertTitle: React.ForwardRefExoticComponent<AlertTitleProps & React.RefAttributes<HTMLHeadingElement>>;
490
+ interface AlertDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
491
+ }
492
+ declare const AlertDescription: React.ForwardRefExoticComponent<AlertDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
493
+
494
+ declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
495
+ declare const TooltipRoot: React.FC<TooltipPrimitive.TooltipProps>;
496
+ declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
497
+ declare const TooltipPortal: React.FC<TooltipPrimitive.TooltipPortalProps>;
498
+ declare const TooltipArrow: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipArrowProps & React.RefAttributes<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
499
+ interface TooltipContentProps extends React.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content> {
500
+ /** Whether to show an arrow pointing to the trigger */
501
+ showArrow?: boolean;
502
+ }
503
+ declare const TooltipContent: React.ForwardRefExoticComponent<TooltipContentProps & React.RefAttributes<HTMLDivElement>>;
504
+ interface TooltipProps {
505
+ /** The content to show in the tooltip */
506
+ content: React.ReactNode;
507
+ /** The element that triggers the tooltip */
508
+ children: React.ReactNode;
509
+ /** Side where the tooltip appears */
510
+ side?: 'top' | 'right' | 'bottom' | 'left';
511
+ /** Alignment of the tooltip */
512
+ align?: 'start' | 'center' | 'end';
513
+ /** Delay before showing (ms) */
514
+ delayDuration?: number;
515
+ /** Whether the tooltip is open (controlled) */
516
+ open?: boolean;
517
+ /** Callback when open state changes */
518
+ onOpenChange?: (open: boolean) => void;
519
+ /** Whether the tooltip should be disabled */
520
+ disabled?: boolean;
521
+ /** Whether to show an arrow */
522
+ showArrow?: boolean;
523
+ /** Additional className for the content */
524
+ className?: string;
525
+ }
526
+ declare const Tooltip: React.ForwardRefExoticComponent<TooltipProps & React.RefAttributes<HTMLButtonElement>>;
527
+
528
+ interface LinearProgressProps extends React.HTMLAttributes<HTMLDivElement> {
529
+ /** Progress value (0-100). If undefined, shows indeterminate state */
530
+ value?: number;
531
+ /** Color variant */
532
+ variant?: 'default' | 'success' | 'warning' | 'error' | 'info';
533
+ /** Size of the progress bar */
534
+ size?: 'sm' | 'md' | 'lg';
535
+ /** Whether to show the value label */
536
+ showValue?: boolean;
537
+ /** Custom label format */
538
+ formatValue?: (value: number) => string;
539
+ /** Whether to animate (only for determinate progress) */
540
+ animated?: boolean;
541
+ }
542
+ declare const LinearProgress: React.ForwardRefExoticComponent<LinearProgressProps & React.RefAttributes<HTMLDivElement>>;
543
+ interface CircularProgressProps extends React.HTMLAttributes<HTMLDivElement> {
544
+ /** Progress value (0-100). If undefined, shows indeterminate state */
545
+ value?: number;
546
+ /** Color variant */
547
+ variant?: 'default' | 'success' | 'warning' | 'error' | 'info';
548
+ /** Size of the circular progress */
549
+ size?: 'sm' | 'md' | 'lg' | 'xl' | number;
550
+ /** Thickness of the progress ring */
551
+ thickness?: number;
552
+ /** Whether to show the value in the center */
553
+ showValue?: boolean;
554
+ /** Custom label format */
555
+ formatValue?: (value: number) => string;
556
+ /** Content to show in the center */
557
+ children?: React.ReactNode;
558
+ }
559
+ declare const CircularProgress: React.ForwardRefExoticComponent<CircularProgressProps & React.RefAttributes<HTMLDivElement>>;
560
+ interface ProgressProps extends LinearProgressProps {
561
+ }
562
+ declare const Progress: React.ForwardRefExoticComponent<ProgressProps & React.RefAttributes<HTMLDivElement>>;
563
+
388
564
  declare const TableHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
389
565
  declare const TableBody: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
390
566
  declare const TableFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
@@ -402,6 +578,81 @@ declare const TableNamespace: React.ForwardRefExoticComponent<React.HTMLAttribut
402
578
  Caption: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableCaptionElement> & React.RefAttributes<HTMLTableCaptionElement>>;
403
579
  };
404
580
 
581
+ interface AvatarProps extends React.HTMLAttributes<HTMLDivElement> {
582
+ /** Image source URL */
583
+ src?: string;
584
+ /** Alt text for the image */
585
+ alt?: string;
586
+ /** Size of the avatar */
587
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
588
+ /** Fallback text (usually initials) when no image */
589
+ fallback?: string;
590
+ /** Shape of the avatar */
591
+ shape?: 'circle' | 'square';
592
+ /** Whether to show a border */
593
+ bordered?: boolean;
594
+ /** Custom fallback element */
595
+ fallbackElement?: React.ReactNode;
596
+ }
597
+ declare const Avatar: React.ForwardRefExoticComponent<AvatarProps & React.RefAttributes<HTMLDivElement>>;
598
+ interface AvatarGroupProps extends React.HTMLAttributes<HTMLDivElement> {
599
+ /** Maximum number of avatars to show */
600
+ max?: number;
601
+ /** Size for all avatars in the group */
602
+ size?: AvatarProps['size'];
603
+ /** Children should be Avatar components */
604
+ children: React.ReactNode;
605
+ }
606
+ declare const AvatarGroup: React.ForwardRefExoticComponent<AvatarGroupProps & React.RefAttributes<HTMLDivElement>>;
607
+
608
+ interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
609
+ /** Variant of the skeleton shape */
610
+ variant?: 'text' | 'circular' | 'rectangular' | 'rounded';
611
+ /** Width of the skeleton (can be number for px or string for any CSS value) */
612
+ width?: number | string;
613
+ /** Height of the skeleton (can be number for px or string for any CSS value) */
614
+ height?: number | string;
615
+ /** Whether to animate the skeleton */
616
+ animation?: 'pulse' | 'wave' | 'none';
617
+ }
618
+ declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.RefAttributes<HTMLDivElement>>;
619
+ interface SkeletonTextProps extends React.HTMLAttributes<HTMLDivElement> {
620
+ /** Number of lines */
621
+ lines?: number;
622
+ /** Width of the last line (percentage or 'full') */
623
+ lastLineWidth?: number | 'full';
624
+ /** Gap between lines */
625
+ gap?: 'sm' | 'md' | 'lg';
626
+ /** Animation type */
627
+ animation?: SkeletonProps['animation'];
628
+ }
629
+ declare const SkeletonText: React.ForwardRefExoticComponent<SkeletonTextProps & React.RefAttributes<HTMLDivElement>>;
630
+ interface SkeletonAvatarProps extends React.HTMLAttributes<HTMLDivElement> {
631
+ /** Size of the avatar skeleton */
632
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
633
+ /** Animation type */
634
+ animation?: SkeletonProps['animation'];
635
+ }
636
+ declare const SkeletonAvatar: React.ForwardRefExoticComponent<SkeletonAvatarProps & React.RefAttributes<HTMLDivElement>>;
637
+ interface SkeletonCardProps extends React.HTMLAttributes<HTMLDivElement> {
638
+ /** Whether to show an image placeholder */
639
+ hasImage?: boolean;
640
+ /** Image height */
641
+ imageHeight?: number;
642
+ /** Number of text lines */
643
+ lines?: number;
644
+ /** Animation type */
645
+ animation?: SkeletonProps['animation'];
646
+ }
647
+ declare const SkeletonCard: React.ForwardRefExoticComponent<SkeletonCardProps & React.RefAttributes<HTMLDivElement>>;
648
+ interface SkeletonTableRowProps extends React.HTMLAttributes<HTMLDivElement> {
649
+ /** Number of columns */
650
+ columns?: number;
651
+ /** Animation type */
652
+ animation?: SkeletonProps['animation'];
653
+ }
654
+ declare const SkeletonTableRow: React.ForwardRefExoticComponent<SkeletonTableRowProps & React.RefAttributes<HTMLDivElement>>;
655
+
405
656
  interface PaginationProps extends React.HTMLAttributes<HTMLElement> {
406
657
  }
407
658
  declare const PaginationContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLUListElement> & React.RefAttributes<HTMLUListElement>>;
@@ -427,17 +678,45 @@ interface ComboboxOption {
427
678
  label: string;
428
679
  disabled?: boolean;
429
680
  }
430
- interface ComboboxProps {
681
+ interface ComboboxSingleProps {
431
682
  options: ComboboxOption[];
432
- value?: string;
433
- defaultValue?: string;
434
- onValueChange?: (value: string) => void;
683
+ value?: ComboboxOption | null;
684
+ defaultValue?: ComboboxOption | null;
685
+ onChange?: (value: ComboboxOption | null) => void;
435
686
  placeholder?: string;
436
687
  searchPlaceholder?: string;
437
688
  emptyMessage?: string;
438
689
  disabled?: boolean;
439
690
  className?: string;
691
+ multiple?: false;
692
+ clearable?: boolean;
693
+ openOnFocus?: boolean;
694
+ inputValue?: string;
695
+ onInputChange?: (value: string) => void;
440
696
  }
697
+ interface ComboboxMultipleProps {
698
+ options: ComboboxOption[];
699
+ value?: ComboboxOption[];
700
+ defaultValue?: ComboboxOption[];
701
+ onChange?: (value: ComboboxOption[]) => void;
702
+ placeholder?: string;
703
+ searchPlaceholder?: string;
704
+ emptyMessage?: string;
705
+ disabled?: boolean;
706
+ className?: string;
707
+ multiple: true;
708
+ clearable?: boolean;
709
+ openOnFocus?: boolean;
710
+ inputValue?: string;
711
+ onInputChange?: (value: string) => void;
712
+ /** Show select-all option */
713
+ selectAll?: boolean;
714
+ /** Label for select-all option */
715
+ selectAllLabel?: string;
716
+ /** Maximum number of items to display as chips before showing "+N more" */
717
+ maxDisplayItems?: number;
718
+ }
719
+ type ComboboxProps = ComboboxSingleProps | ComboboxMultipleProps;
441
720
  declare const Combobox: React.ForwardRefExoticComponent<ComboboxProps & React.RefAttributes<HTMLInputElement>>;
442
721
 
443
722
  interface GridColDef<TData = any> {
@@ -564,6 +843,339 @@ declare namespace DataGrid {
564
843
  var displayName: string;
565
844
  }
566
845
 
846
+ interface ListProps extends React.HTMLAttributes<HTMLUListElement> {
847
+ /** Whether the list has dividers between items */
848
+ dividers?: boolean;
849
+ /** Padding for each list item */
850
+ dense?: boolean;
851
+ /** Whether items are clickable (adds hover styles) */
852
+ clickable?: boolean;
853
+ }
854
+ declare const List: React.ForwardRefExoticComponent<ListProps & React.RefAttributes<HTMLUListElement>>;
855
+ interface ListItemProps extends React.HTMLAttributes<HTMLLIElement> {
856
+ /** Whether this item is selected/active */
857
+ selected?: boolean;
858
+ /** Whether this item is disabled */
859
+ disabled?: boolean;
860
+ /** Whether this item is clickable */
861
+ clickable?: boolean;
862
+ /** Leading element (icon, avatar, etc.) */
863
+ leading?: React.ReactNode;
864
+ /** Trailing element (icon, action, etc.) */
865
+ trailing?: React.ReactNode;
866
+ /** Secondary action element */
867
+ secondaryAction?: React.ReactNode;
868
+ }
869
+ declare const ListItem: React.ForwardRefExoticComponent<ListItemProps & React.RefAttributes<HTMLLIElement>>;
870
+ interface ListItemTextProps extends React.HTMLAttributes<HTMLDivElement> {
871
+ /** Primary text */
872
+ primary?: React.ReactNode;
873
+ /** Secondary text */
874
+ secondary?: React.ReactNode;
875
+ /** Whether to prevent text wrapping */
876
+ noWrap?: boolean;
877
+ }
878
+ declare const ListItemText: React.ForwardRefExoticComponent<ListItemTextProps & React.RefAttributes<HTMLDivElement>>;
879
+ interface ListItemIconProps extends React.HTMLAttributes<HTMLDivElement> {
880
+ }
881
+ declare const ListItemIcon: React.ForwardRefExoticComponent<ListItemIconProps & React.RefAttributes<HTMLDivElement>>;
882
+ interface ListItemAvatarProps extends React.HTMLAttributes<HTMLDivElement> {
883
+ }
884
+ declare const ListItemAvatar: React.ForwardRefExoticComponent<ListItemAvatarProps & React.RefAttributes<HTMLDivElement>>;
885
+ interface ListSubheaderProps extends React.HTMLAttributes<HTMLLIElement> {
886
+ /** Whether the subheader is sticky */
887
+ sticky?: boolean;
888
+ }
889
+ declare const ListSubheader: React.ForwardRefExoticComponent<ListSubheaderProps & React.RefAttributes<HTMLLIElement>>;
890
+ interface ListDividerProps extends React.HTMLAttributes<HTMLLIElement> {
891
+ /** Whether the divider is inset (indented) */
892
+ inset?: boolean;
893
+ }
894
+ declare const ListDivider: React.ForwardRefExoticComponent<ListDividerProps & React.RefAttributes<HTMLLIElement>>;
895
+
896
+ interface BreadcrumbsProps extends React.HTMLAttributes<HTMLElement> {
897
+ /** Custom separator element */
898
+ separator?: React.ReactNode;
899
+ /** Maximum number of items to display before collapsing */
900
+ maxItems?: number;
901
+ /** Number of items to show at the beginning when collapsed */
902
+ itemsBeforeCollapse?: number;
903
+ /** Number of items to show at the end when collapsed */
904
+ itemsAfterCollapse?: number;
905
+ }
906
+ declare const Breadcrumbs: React.ForwardRefExoticComponent<BreadcrumbsProps & React.RefAttributes<HTMLElement>>;
907
+ interface BreadcrumbItemProps extends React.HTMLAttributes<HTMLSpanElement> {
908
+ /** Whether this is the current/active page */
909
+ current?: boolean;
910
+ /** Href for the breadcrumb link */
911
+ href?: string;
912
+ /** Click handler */
913
+ onClick?: React.MouseEventHandler<HTMLAnchorElement | HTMLSpanElement>;
914
+ }
915
+ declare const BreadcrumbItem: React.ForwardRefExoticComponent<BreadcrumbItemProps & React.RefAttributes<HTMLSpanElement>>;
916
+ interface BreadcrumbLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
917
+ }
918
+ declare const BreadcrumbLink: React.ForwardRefExoticComponent<BreadcrumbLinkProps & React.RefAttributes<HTMLAnchorElement>>;
919
+ interface BreadcrumbSeparatorProps extends React.HTMLAttributes<HTMLSpanElement> {
920
+ }
921
+ declare const BreadcrumbSeparator: React.ForwardRefExoticComponent<BreadcrumbSeparatorProps & React.RefAttributes<HTMLSpanElement>>;
922
+ interface BreadcrumbEllipsisProps extends React.HTMLAttributes<HTMLSpanElement> {
923
+ }
924
+ declare const BreadcrumbEllipsis: React.ForwardRefExoticComponent<BreadcrumbEllipsisProps & React.RefAttributes<HTMLSpanElement>>;
925
+ interface BreadcrumbPageProps extends React.HTMLAttributes<HTMLSpanElement> {
926
+ }
927
+ declare const BreadcrumbPage: React.ForwardRefExoticComponent<BreadcrumbPageProps & React.RefAttributes<HTMLSpanElement>>;
928
+
929
+ declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
930
+ declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
931
+ declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
932
+ declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
933
+ declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
934
+ declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
935
+ interface DropdownMenuSubTriggerProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> {
936
+ inset?: boolean;
937
+ }
938
+ declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>>;
939
+ declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
940
+ declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
941
+ interface DropdownMenuItemProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> {
942
+ inset?: boolean;
943
+ }
944
+ declare const DropdownMenuItem: React.ForwardRefExoticComponent<DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>>;
945
+ declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
946
+ declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
947
+ interface DropdownMenuLabelProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> {
948
+ inset?: boolean;
949
+ }
950
+ declare const DropdownMenuLabel: React.ForwardRefExoticComponent<DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>>;
951
+ declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
952
+ declare const DropdownMenuShortcut: {
953
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
954
+ displayName: string;
955
+ };
956
+
957
+ declare const Drawer: React.FC<DialogPrimitive.DialogProps>;
958
+ declare const DrawerTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
959
+ declare const DrawerClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
960
+ declare const DrawerPortal: React.FC<DialogPrimitive.DialogPortalProps>;
961
+ declare const DrawerOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
962
+ interface DrawerContentProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> {
963
+ /** Side from which the drawer slides in */
964
+ side?: 'left' | 'right' | 'top' | 'bottom';
965
+ /** Whether to show the close button */
966
+ showClose?: boolean;
967
+ }
968
+ declare const DrawerContent: React.ForwardRefExoticComponent<DrawerContentProps & React.RefAttributes<HTMLDivElement>>;
969
+ interface DrawerHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
970
+ }
971
+ declare const DrawerHeader: React.ForwardRefExoticComponent<DrawerHeaderProps & React.RefAttributes<HTMLDivElement>>;
972
+ declare const DrawerTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
973
+ declare const DrawerDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
974
+ interface DrawerBodyProps extends React.HTMLAttributes<HTMLDivElement> {
975
+ }
976
+ declare const DrawerBody: React.ForwardRefExoticComponent<DrawerBodyProps & React.RefAttributes<HTMLDivElement>>;
977
+ interface DrawerFooterProps extends React.HTMLAttributes<HTMLDivElement> {
978
+ }
979
+ declare const DrawerFooter: React.ForwardRefExoticComponent<DrawerFooterProps & React.RefAttributes<HTMLDivElement>>;
980
+ declare const Sheet: React.FC<DialogPrimitive.DialogProps>;
981
+ declare const SheetTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
982
+ declare const SheetClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
983
+ declare const SheetPortal: React.FC<DialogPrimitive.DialogPortalProps>;
984
+ declare const SheetOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
985
+ declare const SheetContent: React.ForwardRefExoticComponent<DrawerContentProps & React.RefAttributes<HTMLDivElement>>;
986
+ declare const SheetHeader: React.ForwardRefExoticComponent<DrawerHeaderProps & React.RefAttributes<HTMLDivElement>>;
987
+ declare const SheetTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
988
+ declare const SheetDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
989
+ declare const SheetBody: React.ForwardRefExoticComponent<DrawerBodyProps & React.RefAttributes<HTMLDivElement>>;
990
+ declare const SheetFooter: React.ForwardRefExoticComponent<DrawerFooterProps & React.RefAttributes<HTMLDivElement>>;
991
+
992
+ interface TopBarProps extends React.HTMLAttributes<HTMLElement> {
993
+ /** Whether the topbar has a bottom border */
994
+ bordered?: boolean;
995
+ /** Whether the topbar is sticky at the top */
996
+ sticky?: boolean;
997
+ /** Height variant */
998
+ size?: 'sm' | 'md' | 'lg';
999
+ }
1000
+ declare const TopBar: React.ForwardRefExoticComponent<TopBarProps & React.RefAttributes<HTMLElement>>;
1001
+ interface TopBarBrandProps extends React.HTMLAttributes<HTMLDivElement> {
1002
+ /** Logo element or image */
1003
+ logo?: React.ReactNode;
1004
+ /** Brand name text */
1005
+ name?: string;
1006
+ /** Link href for the brand */
1007
+ href?: string;
1008
+ }
1009
+ declare const TopBarBrand: React.ForwardRefExoticComponent<TopBarBrandProps & React.RefAttributes<HTMLDivElement>>;
1010
+ interface TopBarNavProps extends React.HTMLAttributes<HTMLElement> {
1011
+ }
1012
+ declare const TopBarNav: React.ForwardRefExoticComponent<TopBarNavProps & React.RefAttributes<HTMLElement>>;
1013
+ interface TopBarNavItemProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
1014
+ /** Whether this nav item is active */
1015
+ active?: boolean;
1016
+ }
1017
+ declare const TopBarNavItem: React.ForwardRefExoticComponent<TopBarNavItemProps & React.RefAttributes<HTMLAnchorElement>>;
1018
+ interface TopBarSectionProps extends React.HTMLAttributes<HTMLDivElement> {
1019
+ /** Alignment of the section */
1020
+ align?: 'left' | 'center' | 'right';
1021
+ }
1022
+ declare const TopBarSection: React.ForwardRefExoticComponent<TopBarSectionProps & React.RefAttributes<HTMLDivElement>>;
1023
+ interface TopBarDividerProps extends React.HTMLAttributes<HTMLDivElement> {
1024
+ }
1025
+ declare const TopBarDivider: React.ForwardRefExoticComponent<TopBarDividerProps & React.RefAttributes<HTMLDivElement>>;
1026
+
1027
+ interface SidebarContextValue {
1028
+ collapsed: boolean;
1029
+ setCollapsed: (collapsed: boolean) => void;
1030
+ }
1031
+ declare const useSidebar: () => SidebarContextValue;
1032
+ interface SidebarProps extends React.HTMLAttributes<HTMLElement> {
1033
+ /** Whether the sidebar is collapsed */
1034
+ collapsed?: boolean;
1035
+ /** Callback when collapsed state changes */
1036
+ onCollapsedChange?: (collapsed: boolean) => void;
1037
+ /** Default collapsed state (uncontrolled) */
1038
+ defaultCollapsed?: boolean;
1039
+ /** Width when expanded */
1040
+ width?: number | string;
1041
+ /** Width when collapsed */
1042
+ collapsedWidth?: number | string;
1043
+ /** Whether the sidebar has a right border */
1044
+ bordered?: boolean;
1045
+ }
1046
+ declare const Sidebar: React.ForwardRefExoticComponent<SidebarProps & React.RefAttributes<HTMLElement>>;
1047
+ interface SidebarHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
1048
+ }
1049
+ declare const SidebarHeader: React.ForwardRefExoticComponent<SidebarHeaderProps & React.RefAttributes<HTMLDivElement>>;
1050
+ interface SidebarContentProps extends React.HTMLAttributes<HTMLDivElement> {
1051
+ }
1052
+ declare const SidebarContent: React.ForwardRefExoticComponent<SidebarContentProps & React.RefAttributes<HTMLDivElement>>;
1053
+ interface SidebarFooterProps extends React.HTMLAttributes<HTMLDivElement> {
1054
+ }
1055
+ declare const SidebarFooter: React.ForwardRefExoticComponent<SidebarFooterProps & React.RefAttributes<HTMLDivElement>>;
1056
+ interface SidebarGroupProps extends React.HTMLAttributes<HTMLDivElement> {
1057
+ /** Group label */
1058
+ label?: string;
1059
+ }
1060
+ declare const SidebarGroup: React.ForwardRefExoticComponent<SidebarGroupProps & React.RefAttributes<HTMLDivElement>>;
1061
+ interface SidebarItemProps extends React.HTMLAttributes<HTMLDivElement> {
1062
+ /** Icon element */
1063
+ icon?: React.ReactNode;
1064
+ /** Whether this item is active */
1065
+ active?: boolean;
1066
+ /** Whether this item is disabled */
1067
+ disabled?: boolean;
1068
+ /** Badge or count to show */
1069
+ badge?: React.ReactNode;
1070
+ /** Click handler */
1071
+ onClick?: () => void;
1072
+ /** Link href */
1073
+ href?: string;
1074
+ }
1075
+ declare const SidebarItem: React.ForwardRefExoticComponent<SidebarItemProps & React.RefAttributes<HTMLDivElement>>;
1076
+ interface SidebarSubMenuProps extends React.HTMLAttributes<HTMLDivElement> {
1077
+ /** Icon element */
1078
+ icon?: React.ReactNode;
1079
+ /** Label text */
1080
+ label: string;
1081
+ /** Whether the submenu is open by default */
1082
+ defaultOpen?: boolean;
1083
+ }
1084
+ declare const SidebarSubMenu: React.ForwardRefExoticComponent<SidebarSubMenuProps & React.RefAttributes<HTMLDivElement>>;
1085
+ interface SidebarToggleProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
1086
+ }
1087
+ declare const SidebarToggle: React.ForwardRefExoticComponent<SidebarToggleProps & React.RefAttributes<HTMLButtonElement>>;
1088
+
1089
+ interface SidebarRailContextValue {
1090
+ activeRail: string | null;
1091
+ setActiveRail: (rail: string | null) => void;
1092
+ expanded: boolean;
1093
+ setExpanded: (expanded: boolean) => void;
1094
+ hoverExpand: boolean;
1095
+ railExpanded: boolean;
1096
+ setRailExpanded: (expanded: boolean) => void;
1097
+ overlayRail: boolean;
1098
+ expandableRail: boolean;
1099
+ }
1100
+ declare const useSidebarRail: () => SidebarRailContextValue;
1101
+ interface SidebarRailProps extends React.HTMLAttributes<HTMLDivElement> {
1102
+ /** Default active rail */
1103
+ defaultActiveRail?: string | null;
1104
+ /** Controlled active rail */
1105
+ activeRail?: string | null;
1106
+ /** Callback when active rail changes */
1107
+ onActiveRailChange?: (rail: string | null) => void;
1108
+ /** Whether the panel expands on hover (vs click) */
1109
+ hoverExpand?: boolean;
1110
+ /** Width of the icon rail */
1111
+ railWidth?: number;
1112
+ /** Width of the expanded panel */
1113
+ panelWidth?: number;
1114
+ /** Whether the icon rail can expand to show labels */
1115
+ expandableRail?: boolean;
1116
+ /** Default rail expanded state (uncontrolled) */
1117
+ defaultRailExpanded?: boolean;
1118
+ /** Controlled rail expanded state */
1119
+ railExpanded?: boolean;
1120
+ /** Callback when rail expanded state changes */
1121
+ onRailExpandedChange?: (expanded: boolean) => void;
1122
+ /** Width of expanded rail (labels visible) */
1123
+ railExpandedWidth?: number;
1124
+ /** Overlay expanded rail on top of secondary panel instead of taking layout space */
1125
+ overlayRail?: boolean;
1126
+ }
1127
+ declare const SidebarRail: React.ForwardRefExoticComponent<SidebarRailProps & React.RefAttributes<HTMLDivElement>>;
1128
+ interface IconRailProps extends React.HTMLAttributes<HTMLDivElement> {
1129
+ }
1130
+ declare const IconRail: React.ForwardRefExoticComponent<IconRailProps & React.RefAttributes<HTMLDivElement>>;
1131
+ interface IconRailHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
1132
+ }
1133
+ declare const IconRailHeader: React.ForwardRefExoticComponent<IconRailHeaderProps & React.RefAttributes<HTMLDivElement>>;
1134
+ interface IconRailContentProps extends React.HTMLAttributes<HTMLDivElement> {
1135
+ }
1136
+ declare const IconRailContent: React.ForwardRefExoticComponent<IconRailContentProps & React.RefAttributes<HTMLDivElement>>;
1137
+ interface IconRailFooterProps extends React.HTMLAttributes<HTMLDivElement> {
1138
+ }
1139
+ declare const IconRailFooter: React.ForwardRefExoticComponent<IconRailFooterProps & React.RefAttributes<HTMLDivElement>>;
1140
+ interface IconRailItemProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
1141
+ /** Unique identifier for this rail item */
1142
+ railId?: string;
1143
+ /** Icon to display */
1144
+ icon: React.ReactNode;
1145
+ /** Tooltip label */
1146
+ label?: string;
1147
+ /** Whether this is just a button (no panel) */
1148
+ asButton?: boolean;
1149
+ /** Toggle rail expansion when clicked */
1150
+ toggleRail?: boolean;
1151
+ }
1152
+ declare const IconRailItem: React.ForwardRefExoticComponent<IconRailItemProps & React.RefAttributes<HTMLButtonElement>>;
1153
+ interface RailPanelProps extends React.HTMLAttributes<HTMLDivElement> {
1154
+ /** Which rail this panel belongs to */
1155
+ railId: string;
1156
+ /** Panel title */
1157
+ title?: string;
1158
+ }
1159
+ declare const RailPanel: React.ForwardRefExoticComponent<RailPanelProps & React.RefAttributes<HTMLDivElement>>;
1160
+ interface RailPanelGroupProps extends React.HTMLAttributes<HTMLDivElement> {
1161
+ /** Group label */
1162
+ label?: string;
1163
+ }
1164
+ declare const RailPanelGroup: React.ForwardRefExoticComponent<RailPanelGroupProps & React.RefAttributes<HTMLDivElement>>;
1165
+ interface RailPanelItemProps extends React.HTMLAttributes<HTMLDivElement> {
1166
+ /** Icon element */
1167
+ icon?: React.ReactNode;
1168
+ /** Whether this item is active */
1169
+ active?: boolean;
1170
+ /** Whether this item is disabled */
1171
+ disabled?: boolean;
1172
+ /** Badge or count */
1173
+ badge?: React.ReactNode;
1174
+ /** Link href */
1175
+ href?: string;
1176
+ }
1177
+ declare const RailPanelItem: React.ForwardRefExoticComponent<RailPanelItemProps & React.RefAttributes<HTMLDivElement>>;
1178
+
567
1179
  declare const Playground: () => react_jsx_runtime.JSX.Element;
568
1180
 
569
- export { Badge, type BadgeProps, Box, type BoxProps, Button, type ButtonProps, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type CheckboxProps, type ColumnVisibilityModel, Combobox, type ComboboxOption, type ComboboxProps, DataGrid, type DataGridProps, DataGrid as DataGridV0, DialogNamespace as Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, FormControl, type FormControlProps, FormGroup, type FormGroupProps, FormHelperText, type FormHelperTextProps, FormLabel, type FormLabelProps, Grid, type GridColDef, type GridProps, type GridRenderCellParams, type GridRenderHeaderParams, type GridRowSelectionModel, type GridValueFormatterParams, type GridValueGetterParams, H1, H2, H3, H4, H5, H6, HStack, Input, type InputProps, Label, type LabelProps, NativeSelect, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, PaginationNamespace as Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, type PaginationModel, PaginationNext, PaginationPrevious, type PaginationProps, Playground, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RadioProps, SelectNamespace as Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Spinner, type SpinnerProps, Stack, type StackProps, Switch, type SwitchProps, TableNamespace as Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Text, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeContext, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Typography, type TypographyProps, VStack, cn, useFormControl, useTheme };
1181
+ export { Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, Box, type BoxProps, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbPage, type BreadcrumbPageProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Breadcrumbs, type BreadcrumbsProps, Button, type ButtonProps, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type CheckboxProps, CircularProgress, type CircularProgressProps, type ColumnVisibilityModel, Combobox, type ComboboxMultipleProps, type ComboboxOption, type ComboboxProps, type ComboboxSingleProps, DataGrid, type DataGridProps, DataGrid as DataGridV0, DialogNamespace as Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, DrawerContent, type DrawerContentProps, DrawerDescription, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, FormControl, type FormControlProps, FormGroup, type FormGroupProps, FormHelperText, type FormHelperTextProps, FormLabel, type FormLabelProps, Grid, type GridColDef, type GridProps, type GridRenderCellParams, type GridRenderHeaderParams, type GridRowSelectionModel, type GridValueFormatterParams, type GridValueGetterParams, H1, H2, H3, H4, H5, H6, HStack, IconButton, type IconButtonProps, IconRail, IconRailContent, type IconRailContentProps, IconRailFooter, type IconRailFooterProps, IconRailHeader, type IconRailHeaderProps, IconRailItem, type IconRailItemProps, type IconRailProps, Input, InputAdornment, type InputAdornmentProps, type InputProps, Label, type LabelProps, LinearProgress, type LinearProgressProps, List, ListDivider, type ListDividerProps, ListItem, ListItemAvatar, type ListItemAvatarProps, ListItemIcon, type ListItemIconProps, type ListItemProps, ListItemText, type ListItemTextProps, type ListProps, ListSubheader, type ListSubheaderProps, NativeSelect, NativeSelectOption, type NativeSelectOptionProps, type NativeSelectProps, PaginationNamespace as Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, type PaginationModel, PaginationNext, PaginationPrevious, type PaginationProps, Playground, Progress, type ProgressProps, Radio, RadioGroup, RadioGroupItem, type RadioGroupItemProps, type RadioGroupProps, type RadioProps, RailPanel, RailPanelGroup, type RailPanelGroupProps, RailPanelItem, type RailPanelItemProps, type RailPanelProps, SelectNamespace as Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarItem, type SidebarItemProps, type SidebarProps, SidebarRail, type SidebarRailProps, SidebarSubMenu, type SidebarSubMenuProps, SidebarToggle, type SidebarToggleProps, Skeleton, SkeletonAvatar, type SkeletonAvatarProps, SkeletonCard, type SkeletonCardProps, type SkeletonProps, SkeletonTableRow, type SkeletonTableRowProps, SkeletonText, type SkeletonTextProps, Spinner, type SpinnerProps, Stack, type StackProps, Switch, type SwitchProps, TableNamespace as Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Text, TextField, type TextFieldProps, Textarea, type TextareaProps, ThemeContext, type ThemeContextValue, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipArrow, TooltipContent, type TooltipContentProps, TooltipPortal, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TopBar, TopBarBrand, type TopBarBrandProps, TopBarDivider, type TopBarDividerProps, TopBarNav, TopBarNavItem, type TopBarNavItemProps, type TopBarNavProps, type TopBarProps, TopBarSection, type TopBarSectionProps, Typography, type TypographyProps, VStack, cn, useFormControl, useSidebar, useSidebarRail, useTheme };