@hai3/uikit 0.3.0-alpha.0 → 0.4.0-alpha.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.
- package/dist/index.cjs +979 -499
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +613 -129
- package/dist/index.d.ts +613 -129
- package/dist/index.js +978 -499
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/applyTheme.ts +102 -0
package/dist/index.d.cts
CHANGED
|
@@ -61,9 +61,24 @@ declare function EmptyTitle({ className, ...props }: React$1.ComponentProps<"div
|
|
|
61
61
|
declare function EmptyDescription({ className, ...props }: React$1.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
62
62
|
declare function EmptyContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
63
63
|
|
|
64
|
-
declare const Avatar:
|
|
65
|
-
|
|
66
|
-
|
|
64
|
+
declare const Avatar: {
|
|
65
|
+
({ ref, className, ...props }: Omit<AvatarPrimitive.AvatarProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & {
|
|
66
|
+
ref?: React$1.Ref<HTMLSpanElement> | undefined;
|
|
67
|
+
}): react_jsx_runtime.JSX.Element;
|
|
68
|
+
displayName: string | undefined;
|
|
69
|
+
};
|
|
70
|
+
declare const AvatarImage: {
|
|
71
|
+
({ ref, className, ...props }: Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & {
|
|
72
|
+
ref?: React$1.Ref<HTMLImageElement> | undefined;
|
|
73
|
+
}): react_jsx_runtime.JSX.Element;
|
|
74
|
+
displayName: string | undefined;
|
|
75
|
+
};
|
|
76
|
+
declare const AvatarFallback: {
|
|
77
|
+
({ ref, className, ...props }: Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & {
|
|
78
|
+
ref?: React$1.Ref<HTMLSpanElement> | undefined;
|
|
79
|
+
}): react_jsx_runtime.JSX.Element;
|
|
80
|
+
displayName: string | undefined;
|
|
81
|
+
};
|
|
67
82
|
|
|
68
83
|
/**
|
|
69
84
|
* @hai3/uikit - Type Definitions
|
|
@@ -463,7 +478,12 @@ declare const buttonVariants: (props?: ({
|
|
|
463
478
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
464
479
|
asChild?: boolean;
|
|
465
480
|
}
|
|
466
|
-
declare const Button:
|
|
481
|
+
declare const Button: {
|
|
482
|
+
({ ref, className, variant, size, asChild, ...props }: ButtonProps & {
|
|
483
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
484
|
+
}): react_jsx_runtime.JSX.Element;
|
|
485
|
+
displayName: string;
|
|
486
|
+
};
|
|
467
487
|
|
|
468
488
|
declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
469
489
|
|
|
@@ -507,7 +527,12 @@ declare function InputOTPSlot({ index, className, ...props }: React$1.ComponentP
|
|
|
507
527
|
}): react_jsx_runtime.JSX.Element;
|
|
508
528
|
declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
509
529
|
|
|
510
|
-
declare const Input:
|
|
530
|
+
declare const Input: {
|
|
531
|
+
({ ref, className, type, ...props }: React$1.ClassAttributes<HTMLInputElement> & React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
532
|
+
ref?: React$1.Ref<HTMLInputElement> | undefined;
|
|
533
|
+
}): react_jsx_runtime.JSX.Element;
|
|
534
|
+
displayName: string;
|
|
535
|
+
};
|
|
511
536
|
|
|
512
537
|
declare function Label({ className, ...props }: React$1.ComponentProps<typeof LabelPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
513
538
|
|
|
@@ -574,9 +599,19 @@ interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaEleme
|
|
|
574
599
|
*/
|
|
575
600
|
size?: 'sm' | 'default' | 'lg';
|
|
576
601
|
}
|
|
577
|
-
declare const Textarea:
|
|
602
|
+
declare const Textarea: {
|
|
603
|
+
({ ref, className, autoResize, minHeight, maxHeight, size, onChange, ...props }: TextareaProps & {
|
|
604
|
+
ref?: React$1.Ref<HTMLTextAreaElement> | undefined;
|
|
605
|
+
}): react_jsx_runtime.JSX.Element;
|
|
606
|
+
displayName: string;
|
|
607
|
+
};
|
|
578
608
|
|
|
579
|
-
declare const Switch:
|
|
609
|
+
declare const Switch: {
|
|
610
|
+
({ ref, className, ...props }: Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
611
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
612
|
+
}): react_jsx_runtime.JSX.Element;
|
|
613
|
+
displayName: string | undefined;
|
|
614
|
+
};
|
|
580
615
|
|
|
581
616
|
declare function Table({ className, ...props }: React$1.ComponentProps<"table">): react_jsx_runtime.JSX.Element;
|
|
582
617
|
declare function TableHeader({ className, ...props }: React$1.ComponentProps<"thead">): react_jsx_runtime.JSX.Element;
|
|
@@ -642,14 +677,44 @@ interface SpinnerProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
642
677
|
}>;
|
|
643
678
|
size?: string;
|
|
644
679
|
}
|
|
645
|
-
declare const Spinner:
|
|
680
|
+
declare const Spinner: {
|
|
681
|
+
({ ref, className, icon: Icon, size, ...props }: SpinnerProps & {
|
|
682
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
683
|
+
}): react_jsx_runtime.JSX.Element;
|
|
684
|
+
displayName: string;
|
|
685
|
+
};
|
|
646
686
|
|
|
647
|
-
declare const Slider:
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
687
|
+
declare const Slider: {
|
|
688
|
+
({ ref, className, ...props }: Omit<SliderPrimitive.SliderProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & {
|
|
689
|
+
ref?: React$1.Ref<HTMLSpanElement> | undefined;
|
|
690
|
+
}): react_jsx_runtime.JSX.Element;
|
|
691
|
+
displayName: string | undefined;
|
|
692
|
+
};
|
|
693
|
+
declare const SliderTrack: {
|
|
694
|
+
({ ref, className, ...props }: Omit<SliderPrimitive.SliderTrackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & {
|
|
695
|
+
ref?: React$1.Ref<HTMLSpanElement> | undefined;
|
|
696
|
+
}): react_jsx_runtime.JSX.Element;
|
|
697
|
+
displayName: string | undefined;
|
|
698
|
+
};
|
|
699
|
+
declare const SliderRange: {
|
|
700
|
+
({ ref, className, ...props }: Omit<SliderPrimitive.SliderRangeProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & {
|
|
701
|
+
ref?: React$1.Ref<HTMLSpanElement> | undefined;
|
|
702
|
+
}): react_jsx_runtime.JSX.Element;
|
|
703
|
+
displayName: string | undefined;
|
|
704
|
+
};
|
|
705
|
+
declare const SliderThumb: {
|
|
706
|
+
({ ref, className, ...props }: Omit<SliderPrimitive.SliderThumbProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & {
|
|
707
|
+
ref?: React$1.Ref<HTMLSpanElement> | undefined;
|
|
708
|
+
}): react_jsx_runtime.JSX.Element;
|
|
709
|
+
displayName: string | undefined;
|
|
710
|
+
};
|
|
651
711
|
|
|
652
|
-
declare const Progress:
|
|
712
|
+
declare const Progress: {
|
|
713
|
+
({ ref, className, value, ...props }: Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
714
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
715
|
+
}): react_jsx_runtime.JSX.Element;
|
|
716
|
+
displayName: string | undefined;
|
|
717
|
+
};
|
|
653
718
|
|
|
654
719
|
declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
|
|
655
720
|
|
|
@@ -705,24 +770,89 @@ declare const Tooltip: {
|
|
|
705
770
|
({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
706
771
|
displayName: string | undefined;
|
|
707
772
|
};
|
|
708
|
-
declare const TooltipTrigger:
|
|
709
|
-
|
|
773
|
+
declare const TooltipTrigger: {
|
|
774
|
+
({ ref, ...props }: Omit<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
775
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
776
|
+
}): react_jsx_runtime.JSX.Element;
|
|
777
|
+
displayName: string | undefined;
|
|
778
|
+
};
|
|
779
|
+
declare const TooltipContent: {
|
|
780
|
+
({ ref, className, sideOffset, ...props }: Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
781
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
782
|
+
}): react_jsx_runtime.JSX.Element;
|
|
783
|
+
displayName: string | undefined;
|
|
784
|
+
};
|
|
710
785
|
|
|
711
786
|
declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
712
|
-
declare const PopoverTrigger:
|
|
713
|
-
|
|
714
|
-
|
|
787
|
+
declare const PopoverTrigger: {
|
|
788
|
+
({ ref, ...props }: Omit<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
789
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
790
|
+
}): react_jsx_runtime.JSX.Element;
|
|
791
|
+
displayName: string;
|
|
792
|
+
};
|
|
793
|
+
declare const PopoverContent: {
|
|
794
|
+
({ ref, className, align, sideOffset, ...props }: Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
795
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
796
|
+
}): react_jsx_runtime.JSX.Element;
|
|
797
|
+
displayName: string;
|
|
798
|
+
};
|
|
799
|
+
declare const PopoverAnchor: {
|
|
800
|
+
({ ref, ...props }: Omit<PopoverPrimitive.PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
801
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
802
|
+
}): react_jsx_runtime.JSX.Element;
|
|
803
|
+
displayName: string;
|
|
804
|
+
};
|
|
715
805
|
|
|
716
806
|
declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
|
|
717
|
-
declare const HoverCardTrigger:
|
|
718
|
-
|
|
807
|
+
declare const HoverCardTrigger: {
|
|
808
|
+
({ ref, ...props }: Omit<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>, "ref"> & {
|
|
809
|
+
ref?: React$1.Ref<HTMLAnchorElement> | undefined;
|
|
810
|
+
}): react_jsx_runtime.JSX.Element;
|
|
811
|
+
displayName: string;
|
|
812
|
+
};
|
|
813
|
+
declare const HoverCardContent: {
|
|
814
|
+
({ ref, className, align, sideOffset, ...props }: Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
815
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
816
|
+
}): react_jsx_runtime.JSX.Element;
|
|
817
|
+
displayName: string;
|
|
818
|
+
};
|
|
719
819
|
|
|
720
|
-
declare const Card:
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
820
|
+
declare const Card: {
|
|
821
|
+
({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
822
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
823
|
+
}): react_jsx_runtime.JSX.Element;
|
|
824
|
+
displayName: string;
|
|
825
|
+
};
|
|
826
|
+
declare const CardHeader: {
|
|
827
|
+
({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
828
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
829
|
+
}): react_jsx_runtime.JSX.Element;
|
|
830
|
+
displayName: string;
|
|
831
|
+
};
|
|
832
|
+
declare const CardTitle: {
|
|
833
|
+
({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
834
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
835
|
+
}): react_jsx_runtime.JSX.Element;
|
|
836
|
+
displayName: string;
|
|
837
|
+
};
|
|
838
|
+
declare const CardDescription: {
|
|
839
|
+
({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
840
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
841
|
+
}): react_jsx_runtime.JSX.Element;
|
|
842
|
+
displayName: string;
|
|
843
|
+
};
|
|
844
|
+
declare const CardContent: {
|
|
845
|
+
({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
846
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
847
|
+
}): react_jsx_runtime.JSX.Element;
|
|
848
|
+
displayName: string;
|
|
849
|
+
};
|
|
850
|
+
declare const CardFooter: {
|
|
851
|
+
({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
852
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
853
|
+
}): react_jsx_runtime.JSX.Element;
|
|
854
|
+
displayName: string;
|
|
855
|
+
};
|
|
726
856
|
|
|
727
857
|
/**
|
|
728
858
|
* Header Props
|
|
@@ -737,16 +867,51 @@ interface HeaderProps {
|
|
|
737
867
|
* HAI3 custom component (not from shadcn)
|
|
738
868
|
* Accepts children for flexible content (user info, actions, etc.)
|
|
739
869
|
*/
|
|
740
|
-
declare const Header:
|
|
870
|
+
declare const Header: {
|
|
871
|
+
({ ref, children, className }: HeaderProps & {
|
|
872
|
+
ref?: React__default.Ref<HTMLElement> | undefined;
|
|
873
|
+
}): react_jsx_runtime.JSX.Element;
|
|
874
|
+
displayName: string;
|
|
875
|
+
};
|
|
741
876
|
|
|
742
|
-
declare const NavigationMenu:
|
|
743
|
-
|
|
877
|
+
declare const NavigationMenu: {
|
|
878
|
+
({ ref, className, children, ...props }: Omit<NavigationMenuPrimitive.NavigationMenuProps & React$1.RefAttributes<HTMLElement>, "ref"> & {
|
|
879
|
+
ref?: React$1.Ref<HTMLElement> | undefined;
|
|
880
|
+
}): react_jsx_runtime.JSX.Element;
|
|
881
|
+
displayName: string | undefined;
|
|
882
|
+
};
|
|
883
|
+
declare const NavigationMenuList: {
|
|
884
|
+
({ ref, className, ...props }: Omit<NavigationMenuPrimitive.NavigationMenuListProps & React$1.RefAttributes<HTMLUListElement>, "ref"> & {
|
|
885
|
+
ref?: React$1.Ref<HTMLUListElement> | undefined;
|
|
886
|
+
}): react_jsx_runtime.JSX.Element;
|
|
887
|
+
displayName: string | undefined;
|
|
888
|
+
};
|
|
744
889
|
declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
745
|
-
declare const NavigationMenuTrigger:
|
|
746
|
-
|
|
890
|
+
declare const NavigationMenuTrigger: {
|
|
891
|
+
({ ref, className, children, ...props }: Omit<NavigationMenuPrimitive.NavigationMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
892
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
893
|
+
}): react_jsx_runtime.JSX.Element;
|
|
894
|
+
displayName: string | undefined;
|
|
895
|
+
};
|
|
896
|
+
declare const NavigationMenuContent: {
|
|
897
|
+
({ ref, className, ...props }: Omit<NavigationMenuPrimitive.NavigationMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
898
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
899
|
+
}): react_jsx_runtime.JSX.Element;
|
|
900
|
+
displayName: string | undefined;
|
|
901
|
+
};
|
|
747
902
|
declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
748
|
-
declare const NavigationMenuViewport:
|
|
749
|
-
|
|
903
|
+
declare const NavigationMenuViewport: {
|
|
904
|
+
({ ref, className, ...props }: Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
905
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
906
|
+
}): react_jsx_runtime.JSX.Element;
|
|
907
|
+
displayName: string | undefined;
|
|
908
|
+
};
|
|
909
|
+
declare const NavigationMenuIndicator: {
|
|
910
|
+
({ ref, className, ...props }: Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
911
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
912
|
+
}): react_jsx_runtime.JSX.Element;
|
|
913
|
+
displayName: string | undefined;
|
|
914
|
+
};
|
|
750
915
|
|
|
751
916
|
declare function Breadcrumb({ ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
752
917
|
declare function BreadcrumbList({ className, ...props }: React$1.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
@@ -804,13 +969,23 @@ declare const Sheet: React$1.FC<SheetPrimitive.DialogProps>;
|
|
|
804
969
|
declare const SheetTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
805
970
|
declare const SheetClose: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
806
971
|
declare const SheetPortal: React$1.FC<SheetPrimitive.DialogPortalProps>;
|
|
807
|
-
declare const SheetOverlay:
|
|
972
|
+
declare const SheetOverlay: {
|
|
973
|
+
({ ref, className, ...props }: Omit<SheetPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
974
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
975
|
+
}): react_jsx_runtime.JSX.Element;
|
|
976
|
+
displayName: string | undefined;
|
|
977
|
+
};
|
|
808
978
|
declare const sheetVariants: (props?: ({
|
|
809
979
|
side?: "left" | "right" | "top" | "bottom" | null | undefined;
|
|
810
980
|
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
811
981
|
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
812
982
|
}
|
|
813
|
-
declare const SheetContent:
|
|
983
|
+
declare const SheetContent: {
|
|
984
|
+
({ ref, side, className, children, ...props }: SheetContentProps & {
|
|
985
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
986
|
+
}): react_jsx_runtime.JSX.Element;
|
|
987
|
+
displayName: string | undefined;
|
|
988
|
+
};
|
|
814
989
|
declare const SheetHeader: {
|
|
815
990
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
816
991
|
displayName: string;
|
|
@@ -819,15 +994,35 @@ declare const SheetFooter: {
|
|
|
819
994
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
820
995
|
displayName: string;
|
|
821
996
|
};
|
|
822
|
-
declare const SheetTitle:
|
|
823
|
-
|
|
997
|
+
declare const SheetTitle: {
|
|
998
|
+
({ ref, className, ...props }: Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & {
|
|
999
|
+
ref?: React$1.Ref<HTMLHeadingElement> | undefined;
|
|
1000
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1001
|
+
displayName: string | undefined;
|
|
1002
|
+
};
|
|
1003
|
+
declare const SheetDescription: {
|
|
1004
|
+
({ ref, className, ...props }: Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & {
|
|
1005
|
+
ref?: React$1.Ref<HTMLParagraphElement> | undefined;
|
|
1006
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1007
|
+
displayName: string | undefined;
|
|
1008
|
+
};
|
|
824
1009
|
|
|
825
1010
|
declare const Dialog: React$1.FC<SheetPrimitive.DialogProps>;
|
|
826
1011
|
declare const DialogTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
827
1012
|
declare const DialogPortal: React$1.FC<SheetPrimitive.DialogPortalProps>;
|
|
828
1013
|
declare const DialogClose: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
829
|
-
declare const DialogOverlay:
|
|
830
|
-
|
|
1014
|
+
declare const DialogOverlay: {
|
|
1015
|
+
({ ref, className, ...props }: Omit<SheetPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1016
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1017
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1018
|
+
displayName: string | undefined;
|
|
1019
|
+
};
|
|
1020
|
+
declare const DialogContent: {
|
|
1021
|
+
({ ref, className, children, ...props }: Omit<SheetPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1022
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1023
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1024
|
+
displayName: string | undefined;
|
|
1025
|
+
};
|
|
831
1026
|
declare const DialogHeader: {
|
|
832
1027
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
833
1028
|
displayName: string;
|
|
@@ -836,20 +1031,45 @@ declare const DialogFooter: {
|
|
|
836
1031
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
837
1032
|
displayName: string;
|
|
838
1033
|
};
|
|
839
|
-
declare const DialogTitle:
|
|
840
|
-
|
|
1034
|
+
declare const DialogTitle: {
|
|
1035
|
+
({ ref, className, ...props }: Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & {
|
|
1036
|
+
ref?: React$1.Ref<HTMLHeadingElement> | undefined;
|
|
1037
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1038
|
+
displayName: string | undefined;
|
|
1039
|
+
};
|
|
1040
|
+
declare const DialogDescription: {
|
|
1041
|
+
({ ref, className, ...props }: Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & {
|
|
1042
|
+
ref?: React$1.Ref<HTMLParagraphElement> | undefined;
|
|
1043
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1044
|
+
displayName: string | undefined;
|
|
1045
|
+
};
|
|
841
1046
|
|
|
842
1047
|
declare const AlertDialog: {
|
|
843
1048
|
({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
844
1049
|
displayName: string;
|
|
845
1050
|
};
|
|
846
|
-
declare const AlertDialogTrigger:
|
|
1051
|
+
declare const AlertDialogTrigger: {
|
|
1052
|
+
({ ref, ...props }: Omit<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1053
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1054
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1055
|
+
displayName: string | undefined;
|
|
1056
|
+
};
|
|
847
1057
|
declare const AlertDialogPortal: {
|
|
848
1058
|
({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
849
1059
|
displayName: string;
|
|
850
1060
|
};
|
|
851
|
-
declare const AlertDialogOverlay:
|
|
852
|
-
|
|
1061
|
+
declare const AlertDialogOverlay: {
|
|
1062
|
+
({ ref, className, ...props }: Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1063
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1064
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1065
|
+
displayName: string | undefined;
|
|
1066
|
+
};
|
|
1067
|
+
declare const AlertDialogContent: {
|
|
1068
|
+
({ ref, className, ...props }: Omit<AlertDialogPrimitive.AlertDialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1069
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1070
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1071
|
+
displayName: string | undefined;
|
|
1072
|
+
};
|
|
853
1073
|
declare const AlertDialogHeader: {
|
|
854
1074
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
855
1075
|
displayName: string;
|
|
@@ -858,23 +1078,63 @@ declare const AlertDialogFooter: {
|
|
|
858
1078
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
859
1079
|
displayName: string;
|
|
860
1080
|
};
|
|
861
|
-
declare const AlertDialogTitle:
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
1081
|
+
declare const AlertDialogTitle: {
|
|
1082
|
+
({ ref, className, ...props }: Omit<AlertDialogPrimitive.AlertDialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & {
|
|
1083
|
+
ref?: React$1.Ref<HTMLHeadingElement> | undefined;
|
|
1084
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1085
|
+
displayName: string | undefined;
|
|
1086
|
+
};
|
|
1087
|
+
declare const AlertDialogDescription: {
|
|
1088
|
+
({ ref, className, ...props }: Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & {
|
|
1089
|
+
ref?: React$1.Ref<HTMLParagraphElement> | undefined;
|
|
1090
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1091
|
+
displayName: string | undefined;
|
|
1092
|
+
};
|
|
1093
|
+
declare const AlertDialogAction: {
|
|
1094
|
+
({ ref, className, ...props }: Omit<AlertDialogPrimitive.AlertDialogActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1095
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1096
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1097
|
+
displayName: string | undefined;
|
|
1098
|
+
};
|
|
1099
|
+
declare const AlertDialogCancel: {
|
|
1100
|
+
({ ref, className, ...props }: Omit<AlertDialogPrimitive.AlertDialogCancelProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1101
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1102
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1103
|
+
displayName: string | undefined;
|
|
1104
|
+
};
|
|
865
1105
|
|
|
866
1106
|
declare const Drawer: {
|
|
867
1107
|
({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
|
|
868
1108
|
displayName: string;
|
|
869
1109
|
};
|
|
870
|
-
declare const DrawerTrigger:
|
|
1110
|
+
declare const DrawerTrigger: {
|
|
1111
|
+
({ ref, ...props }: Omit<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1112
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1113
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1114
|
+
displayName: string | undefined;
|
|
1115
|
+
};
|
|
871
1116
|
declare const DrawerPortal: {
|
|
872
1117
|
({ ...props }: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
|
|
873
1118
|
displayName: string;
|
|
874
1119
|
};
|
|
875
|
-
declare const DrawerClose:
|
|
876
|
-
|
|
877
|
-
|
|
1120
|
+
declare const DrawerClose: {
|
|
1121
|
+
({ ref, ...props }: Omit<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1122
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1123
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1124
|
+
displayName: string | undefined;
|
|
1125
|
+
};
|
|
1126
|
+
declare const DrawerOverlay: {
|
|
1127
|
+
({ ref, className, ...props }: Omit<Omit<SheetPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1128
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1129
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1130
|
+
displayName: string | undefined;
|
|
1131
|
+
};
|
|
1132
|
+
declare const DrawerContent: {
|
|
1133
|
+
({ ref, className, children, ...props }: Omit<Omit<SheetPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1134
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1135
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1136
|
+
displayName: string | undefined;
|
|
1137
|
+
};
|
|
878
1138
|
declare const DrawerHeader: {
|
|
879
1139
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
880
1140
|
displayName: string;
|
|
@@ -883,8 +1143,18 @@ declare const DrawerFooter: {
|
|
|
883
1143
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
884
1144
|
displayName: string;
|
|
885
1145
|
};
|
|
886
|
-
declare const DrawerTitle:
|
|
887
|
-
|
|
1146
|
+
declare const DrawerTitle: {
|
|
1147
|
+
({ ref, className, ...props }: Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & {
|
|
1148
|
+
ref?: React$1.Ref<HTMLHeadingElement> | undefined;
|
|
1149
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1150
|
+
displayName: string | undefined;
|
|
1151
|
+
};
|
|
1152
|
+
declare const DrawerDescription: {
|
|
1153
|
+
({ ref, className, ...props }: Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & {
|
|
1154
|
+
ref?: React$1.Ref<HTMLParagraphElement> | undefined;
|
|
1155
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1156
|
+
displayName: string | undefined;
|
|
1157
|
+
};
|
|
888
1158
|
|
|
889
1159
|
declare function ResizablePanelGroup({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime.JSX.Element;
|
|
890
1160
|
declare function ResizablePanel({ ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime.JSX.Element;
|
|
@@ -915,10 +1185,30 @@ declare function ItemActions({ className, ...props }: React$1.ComponentProps<"di
|
|
|
915
1185
|
declare function ItemHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
916
1186
|
declare function ItemFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
917
1187
|
|
|
918
|
-
declare const Accordion:
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
1188
|
+
declare const Accordion: {
|
|
1189
|
+
({ ref, ...props }: (Omit<AccordionPrimitive.AccordionSingleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> | Omit<AccordionPrimitive.AccordionMultipleProps & React$1.RefAttributes<HTMLDivElement>, "ref">) & {
|
|
1190
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1191
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1192
|
+
displayName: string;
|
|
1193
|
+
};
|
|
1194
|
+
declare const AccordionItem: {
|
|
1195
|
+
({ ref, className, ...props }: Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1196
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1197
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1198
|
+
displayName: string;
|
|
1199
|
+
};
|
|
1200
|
+
declare const AccordionTrigger: {
|
|
1201
|
+
({ ref, className, children, ...props }: Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1202
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1203
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1204
|
+
displayName: string;
|
|
1205
|
+
};
|
|
1206
|
+
declare const AccordionContent: {
|
|
1207
|
+
({ ref, className, children, ...props }: Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1208
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1209
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1210
|
+
displayName: string;
|
|
1211
|
+
};
|
|
922
1212
|
|
|
923
1213
|
type CarouselApi = UseEmblaCarouselType[1];
|
|
924
1214
|
type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
|
|
@@ -930,15 +1220,55 @@ type CarouselProps = {
|
|
|
930
1220
|
orientation?: "horizontal" | "vertical";
|
|
931
1221
|
setApi?: (api: CarouselApi) => void;
|
|
932
1222
|
};
|
|
933
|
-
declare const Carousel:
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
1223
|
+
declare const Carousel: {
|
|
1224
|
+
({ ref, orientation, opts, setApi, plugins, className, children, ...props }: React$1.HTMLAttributes<HTMLDivElement> & CarouselProps & {
|
|
1225
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1226
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1227
|
+
displayName: string;
|
|
1228
|
+
};
|
|
1229
|
+
declare const CarouselContent: {
|
|
1230
|
+
({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1231
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1232
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1233
|
+
displayName: string;
|
|
1234
|
+
};
|
|
1235
|
+
declare const CarouselItem: {
|
|
1236
|
+
({ ref, className, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1237
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1238
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1239
|
+
displayName: string;
|
|
1240
|
+
};
|
|
1241
|
+
declare const CarouselPrevious: {
|
|
1242
|
+
({ ref, className, variant, size, ...props }: ButtonProps & {
|
|
1243
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1244
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1245
|
+
displayName: string;
|
|
1246
|
+
};
|
|
1247
|
+
declare const CarouselNext: {
|
|
1248
|
+
({ ref, className, variant, size, ...props }: ButtonProps & {
|
|
1249
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1250
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1251
|
+
displayName: string;
|
|
1252
|
+
};
|
|
938
1253
|
|
|
939
|
-
declare const Collapsible:
|
|
940
|
-
|
|
941
|
-
|
|
1254
|
+
declare const Collapsible: {
|
|
1255
|
+
({ ref, ...props }: Omit<CollapsiblePrimitive.CollapsibleProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1256
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1257
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1258
|
+
displayName: string;
|
|
1259
|
+
};
|
|
1260
|
+
declare const CollapsibleTrigger: {
|
|
1261
|
+
({ ref, ...props }: Omit<CollapsiblePrimitive.CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1262
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1263
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1264
|
+
displayName: string;
|
|
1265
|
+
};
|
|
1266
|
+
declare const CollapsibleContent: {
|
|
1267
|
+
({ ref, ...props }: Omit<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1268
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1269
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1270
|
+
displayName: string;
|
|
1271
|
+
};
|
|
942
1272
|
|
|
943
1273
|
interface ChartContainerProps {
|
|
944
1274
|
className?: string;
|
|
@@ -977,13 +1307,48 @@ declare function ChartLegendContent({ className, payload, }: ChartLegendContentP
|
|
|
977
1307
|
declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
|
|
978
1308
|
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
979
1309
|
declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
980
|
-
declare const SelectTrigger:
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
declare const
|
|
1310
|
+
declare const SelectTrigger: {
|
|
1311
|
+
({ ref, className, children, ...props }: Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
1312
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1313
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1314
|
+
displayName: string | undefined;
|
|
1315
|
+
};
|
|
1316
|
+
declare const SelectScrollUpButton: {
|
|
1317
|
+
({ ref, className, ...props }: Omit<SelectPrimitive.SelectScrollUpButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1318
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1319
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1320
|
+
displayName: string | undefined;
|
|
1321
|
+
};
|
|
1322
|
+
declare const SelectScrollDownButton: {
|
|
1323
|
+
({ ref, className, ...props }: Omit<SelectPrimitive.SelectScrollDownButtonProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1324
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1325
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1326
|
+
displayName: string | undefined;
|
|
1327
|
+
};
|
|
1328
|
+
declare const SelectContent: {
|
|
1329
|
+
({ ref, className, children, position, ...props }: Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1330
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1331
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1332
|
+
displayName: string | undefined;
|
|
1333
|
+
};
|
|
1334
|
+
declare const SelectLabel: {
|
|
1335
|
+
({ ref, className, ...props }: Omit<SelectPrimitive.SelectLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1336
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1337
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1338
|
+
displayName: string | undefined;
|
|
1339
|
+
};
|
|
1340
|
+
declare const SelectItem: {
|
|
1341
|
+
({ ref, className, children, ...props }: Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1342
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1343
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1344
|
+
displayName: string | undefined;
|
|
1345
|
+
};
|
|
1346
|
+
declare const SelectSeparator: {
|
|
1347
|
+
({ ref, className, ...props }: Omit<SelectPrimitive.SelectSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1348
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1349
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1350
|
+
displayName: string | undefined;
|
|
1351
|
+
};
|
|
987
1352
|
|
|
988
1353
|
declare const DropdownMenu: {
|
|
989
1354
|
({ dir, ...props }: Omit<DropdownMenuPrimitive.DropdownMenuProps, "dir"> & {
|
|
@@ -996,24 +1361,59 @@ declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuP
|
|
|
996
1361
|
declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
997
1362
|
declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
998
1363
|
declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
999
|
-
declare const DropdownMenuSubTrigger:
|
|
1000
|
-
inset
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
} & React$1.RefAttributes<HTMLDivElement
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
declare const
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1364
|
+
declare const DropdownMenuSubTrigger: {
|
|
1365
|
+
({ ref, className, inset, children, ...props }: Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1366
|
+
inset?: boolean | undefined;
|
|
1367
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1368
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1369
|
+
displayName: string | undefined;
|
|
1370
|
+
};
|
|
1371
|
+
declare const DropdownMenuSubContent: {
|
|
1372
|
+
({ ref, className, container, ...props }: Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1373
|
+
container?: HTMLElement | null | undefined;
|
|
1374
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1375
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1376
|
+
displayName: string | undefined;
|
|
1377
|
+
};
|
|
1378
|
+
declare const DropdownMenuContent: {
|
|
1379
|
+
({ ref, className, sideOffset, container, ...props }: Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1380
|
+
container?: HTMLElement | null | undefined;
|
|
1381
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1382
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1383
|
+
displayName: string | undefined;
|
|
1384
|
+
};
|
|
1385
|
+
declare const DropdownMenuItem: {
|
|
1386
|
+
({ ref, className, inset, ...props }: Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1387
|
+
inset?: boolean | undefined;
|
|
1388
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1389
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1390
|
+
displayName: string | undefined;
|
|
1391
|
+
};
|
|
1392
|
+
declare const DropdownMenuCheckboxItem: {
|
|
1393
|
+
({ ref, className, children, checked, ...props }: Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1394
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1395
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1396
|
+
displayName: string | undefined;
|
|
1397
|
+
};
|
|
1398
|
+
declare const DropdownMenuRadioItem: {
|
|
1399
|
+
({ ref, className, children, ...props }: Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1400
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1401
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1402
|
+
displayName: string | undefined;
|
|
1403
|
+
};
|
|
1404
|
+
declare const DropdownMenuLabel: {
|
|
1405
|
+
({ ref, className, inset, ...props }: Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1406
|
+
inset?: boolean | undefined;
|
|
1407
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1408
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1409
|
+
displayName: string | undefined;
|
|
1410
|
+
};
|
|
1411
|
+
declare const DropdownMenuSeparator: {
|
|
1412
|
+
({ ref, className, ...props }: Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1413
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1414
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1415
|
+
displayName: string | undefined;
|
|
1416
|
+
};
|
|
1017
1417
|
declare const DropdownMenuShortcut: {
|
|
1018
1418
|
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
1019
1419
|
displayName: string;
|
|
@@ -1091,7 +1491,12 @@ interface IconButtonProps extends Omit<ButtonProps, 'size' | 'asChild'> {
|
|
|
1091
1491
|
size?: IconButtonSize;
|
|
1092
1492
|
'aria-label': string;
|
|
1093
1493
|
}
|
|
1094
|
-
declare const IconButton:
|
|
1494
|
+
declare const IconButton: {
|
|
1495
|
+
({ ref, variant, size, className, ...props }: IconButtonProps & {
|
|
1496
|
+
ref?: React__default.Ref<HTMLButtonElement> | undefined;
|
|
1497
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1498
|
+
displayName: string;
|
|
1499
|
+
};
|
|
1095
1500
|
|
|
1096
1501
|
/**
|
|
1097
1502
|
* DropdownButton Component
|
|
@@ -1104,18 +1509,51 @@ interface DropdownButtonProps extends React__default.ButtonHTMLAttributes<HTMLBu
|
|
|
1104
1509
|
variant?: ButtonVariant;
|
|
1105
1510
|
className?: string;
|
|
1106
1511
|
}
|
|
1107
|
-
declare const DropdownButton:
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1512
|
+
declare const DropdownButton: {
|
|
1513
|
+
({ ref, children, variant, className, ...props }: DropdownButtonProps & {
|
|
1514
|
+
ref?: React__default.Ref<HTMLButtonElement> | undefined;
|
|
1515
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1516
|
+
displayName: string;
|
|
1517
|
+
};
|
|
1518
|
+
|
|
1519
|
+
declare const InputGroup: {
|
|
1520
|
+
({ ref, className, ...props }: Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
1521
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1522
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1523
|
+
displayName: string;
|
|
1524
|
+
};
|
|
1525
|
+
declare const InputGroupAddon: {
|
|
1526
|
+
({ ref, className, align, ...props }: React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1527
|
+
align?: "inline-end" | "inline-start" | "block-end" | "block-start" | undefined;
|
|
1528
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1529
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1530
|
+
displayName: string;
|
|
1531
|
+
};
|
|
1532
|
+
declare const InputGroupButton: {
|
|
1533
|
+
({ ref, className, type, variant, size, ...props }: Omit<ButtonProps, "size"> & {
|
|
1534
|
+
size?: "sm" | "xs" | "icon-xs" | "icon-sm" | undefined;
|
|
1535
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1536
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1537
|
+
displayName: string;
|
|
1538
|
+
};
|
|
1539
|
+
declare const InputGroupText: {
|
|
1540
|
+
({ ref, className, ...props }: Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
|
|
1541
|
+
ref?: React$1.Ref<HTMLSpanElement> | undefined;
|
|
1542
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1543
|
+
displayName: string;
|
|
1544
|
+
};
|
|
1545
|
+
declare const InputGroupInput: {
|
|
1546
|
+
({ ref, className, ...props }: Omit<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
|
|
1547
|
+
ref?: React$1.Ref<HTMLInputElement> | undefined;
|
|
1548
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1549
|
+
displayName: string;
|
|
1550
|
+
};
|
|
1551
|
+
declare const InputGroupTextarea: {
|
|
1552
|
+
({ ref, className, ...props }: Omit<React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & {
|
|
1553
|
+
ref?: React$1.Ref<HTMLTextAreaElement> | undefined;
|
|
1554
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1555
|
+
displayName: string;
|
|
1556
|
+
};
|
|
1119
1557
|
|
|
1120
1558
|
interface DatePickerProps {
|
|
1121
1559
|
children: React$1.ReactNode;
|
|
@@ -1147,28 +1585,54 @@ interface DatePickerInputProps {
|
|
|
1147
1585
|
}
|
|
1148
1586
|
declare function DatePickerInput({ className, inputProps, placeholder, id, }: DatePickerInputProps): react_jsx_runtime.JSX.Element;
|
|
1149
1587
|
|
|
1150
|
-
declare const Sidebar:
|
|
1151
|
-
collapsed
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1588
|
+
declare const Sidebar: {
|
|
1589
|
+
({ ref, collapsed, className, children, ...props }: React$1.HTMLAttributes<HTMLElement> & {
|
|
1590
|
+
collapsed?: boolean | undefined;
|
|
1591
|
+
ref?: React$1.Ref<HTMLElement> | undefined;
|
|
1592
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1593
|
+
displayName: string;
|
|
1594
|
+
};
|
|
1595
|
+
declare const SidebarContent: {
|
|
1596
|
+
({ ref, className, ...props }: React$1.ClassAttributes<HTMLDivElement> & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
1597
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1598
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1599
|
+
displayName: string;
|
|
1600
|
+
};
|
|
1601
|
+
declare const SidebarMenu: {
|
|
1602
|
+
({ ref, className, ...props }: React$1.ClassAttributes<HTMLUListElement> & React$1.HTMLAttributes<HTMLUListElement> & {
|
|
1603
|
+
ref?: React$1.Ref<HTMLUListElement> | undefined;
|
|
1604
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1605
|
+
displayName: string;
|
|
1606
|
+
};
|
|
1607
|
+
declare const SidebarMenuItem: {
|
|
1608
|
+
({ ref, className, ...props }: React$1.ClassAttributes<HTMLLIElement> & React$1.LiHTMLAttributes<HTMLLIElement> & {
|
|
1609
|
+
ref?: React$1.Ref<HTMLLIElement> | undefined;
|
|
1610
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1611
|
+
displayName: string;
|
|
1612
|
+
};
|
|
1613
|
+
declare const SidebarMenuButton: {
|
|
1614
|
+
({ ref, asChild, isActive, variant, size, tooltip, className, ...props }: Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
1615
|
+
asChild?: boolean | undefined;
|
|
1616
|
+
isActive?: boolean | undefined;
|
|
1617
|
+
variant?: "default" | "outline" | undefined;
|
|
1618
|
+
size?: "default" | "sm" | "lg" | undefined;
|
|
1619
|
+
tooltip?: string | undefined;
|
|
1620
|
+
ref?: React$1.Ref<HTMLButtonElement> | undefined;
|
|
1621
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1622
|
+
displayName: string;
|
|
1623
|
+
};
|
|
1624
|
+
declare const SidebarMenuIcon: {
|
|
1625
|
+
({ ref, className, ...props }: React$1.ClassAttributes<HTMLSpanElement> & React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
1626
|
+
ref?: React$1.Ref<HTMLSpanElement> | undefined;
|
|
1627
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1628
|
+
displayName: string;
|
|
1629
|
+
};
|
|
1630
|
+
declare const SidebarMenuLabel: {
|
|
1631
|
+
({ ref, className, ...props }: React$1.ClassAttributes<HTMLSpanElement> & React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
1632
|
+
ref?: React$1.Ref<HTMLSpanElement> | undefined;
|
|
1633
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1634
|
+
displayName: string;
|
|
1635
|
+
};
|
|
1172
1636
|
|
|
1173
1637
|
interface SidebarHeaderProps extends React$1.ComponentProps<"div"> {
|
|
1174
1638
|
/**
|
|
@@ -1188,7 +1652,12 @@ interface SidebarHeaderProps extends React$1.ComponentProps<"div"> {
|
|
|
1188
1652
|
*/
|
|
1189
1653
|
onClick?: () => void;
|
|
1190
1654
|
}
|
|
1191
|
-
declare const SidebarHeader:
|
|
1655
|
+
declare const SidebarHeader: {
|
|
1656
|
+
({ ref, logo, logoText, collapsed, onClick, className, ...props }: SidebarHeaderProps & {
|
|
1657
|
+
ref?: React$1.Ref<HTMLDivElement> | undefined;
|
|
1658
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1659
|
+
displayName: string;
|
|
1660
|
+
};
|
|
1192
1661
|
|
|
1193
1662
|
/**
|
|
1194
1663
|
* User Info Props
|
|
@@ -1206,7 +1675,12 @@ interface UserInfoProps {
|
|
|
1206
1675
|
* Composite component combining shadcn Avatar + text
|
|
1207
1676
|
* Displays user avatar with fallback initials and name/email
|
|
1208
1677
|
*/
|
|
1209
|
-
declare const UserInfo:
|
|
1678
|
+
declare const UserInfo: {
|
|
1679
|
+
({ ref, displayName, email, avatarUrl, className, loading }: UserInfoProps & {
|
|
1680
|
+
ref?: React__default.Ref<HTMLDivElement> | undefined;
|
|
1681
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1682
|
+
displayName: string;
|
|
1683
|
+
};
|
|
1210
1684
|
|
|
1211
1685
|
/**
|
|
1212
1686
|
* MessageBubble - Chat message display component
|
|
@@ -1348,5 +1822,15 @@ declare const ChevronUpIcon: ({ className, ...props }: React__default.SVGProps<S
|
|
|
1348
1822
|
* @param themeName - Optional theme name for data attribute
|
|
1349
1823
|
*/
|
|
1350
1824
|
declare const applyTheme: (theme: Theme, themeName?: string) => void;
|
|
1825
|
+
/**
|
|
1826
|
+
* Apply theme to a shadow root by injecting CSS variables
|
|
1827
|
+
* Uses :host selector instead of document.documentElement
|
|
1828
|
+
* Idempotent - reuses existing style element with id __hai3-theme-vars__
|
|
1829
|
+
*
|
|
1830
|
+
* @param shadowRoot - The shadow root to inject theme variables into
|
|
1831
|
+
* @param theme - Theme object to apply
|
|
1832
|
+
* @param themeName - Optional theme name for data attribute
|
|
1833
|
+
*/
|
|
1834
|
+
declare const applyThemeToShadowRoot: (shadowRoot: ShadowRoot, theme: Theme, themeName?: string) => void;
|
|
1351
1835
|
|
|
1352
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonComponent, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, type ButtonProps$1 as ButtonPropsContract, ButtonSize, ButtonVariant, CLOSE_ICON_ID, Calendar, CalendarDayButton, CalendarIcon, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegendContent, ChartTooltipContent, ChatInput, type ChatInputProps, type ChatThread, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ComponentName, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, DataTableColumnHeader, type DataTableColumnHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableViewOptions, type DataTableViewOptionsProps, DatePicker, DatePickerContent, DatePickerInput, DatePickerTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonComponent, type DropdownButtonProps, type DropdownButtonProps$1 as DropdownButtonPropsContract, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuComponent, DropdownMenuContent, type DropdownMenuContentComponent, type DropdownMenuContentProps as DropdownMenuContentPropsContract, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemComponent, type DropdownMenuItemProps as DropdownMenuItemPropsContract, DropdownMenuLabel, DropdownMenuPortal, type DropdownMenuProps as DropdownMenuPropsContract, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, type DropdownMenuSubComponent, DropdownMenuSubContent, type DropdownMenuSubContentComponent, type DropdownMenuSubContentProps as DropdownMenuSubContentPropsContract, type DropdownMenuSubProps as DropdownMenuSubPropsContract, DropdownMenuSubTrigger, type DropdownMenuSubTriggerComponent, type DropdownMenuSubTriggerProps as DropdownMenuSubTriggerPropsContract, DropdownMenuTrigger, type DropdownMenuTriggerComponent, type DropdownMenuTriggerProps as DropdownMenuTriggerPropsContract, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Header, type HeaderComponent, type HeaderProps, type HeaderProps$1 as HeaderPropsContract, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonComponent, type IconButtonProps, type IconButtonProps$1 as IconButtonPropsContract, IconButtonSize, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, MENU_ICON_ID, MenuIcon, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MessageBubble, type MessageBubbleProps, MessageType, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, type SidebarComponent, SidebarContent, type SidebarContentComponent, type SidebarContentProps as SidebarContentPropsContract, SidebarHeader, type SidebarHeaderComponent, type SidebarHeaderProps, type SidebarHeaderProps$1 as SidebarHeaderPropsContract, SidebarMenu, SidebarMenuButton, type SidebarMenuButtonComponent, type SidebarMenuButtonProps as SidebarMenuButtonPropsContract, type SidebarMenuComponent, SidebarMenuIcon, type SidebarMenuIconComponent, type SidebarMenuIconProps as SidebarMenuIconPropsContract, SidebarMenuItem, type SidebarMenuItemComponent, type SidebarMenuItemProps as SidebarMenuItemPropsContract, SidebarMenuLabel, type SidebarMenuLabelComponent, type SidebarMenuLabelProps as SidebarMenuLabelPropsContract, type SidebarMenuProps as SidebarMenuPropsContract, type SidebarProps as SidebarPropsContract, Skeleton, type SkeletonComponent, type SkeletonProps$1 as SkeletonPropsContract, Slider, SliderRange, SliderThumb, SliderTrack, Spinner, type SpinnerComponent, type SpinnerProps, type SpinnerProps$1 as SpinnerPropsContract, Switch, type SwitchComponent, type SwitchProps as SwitchPropsContract, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextDirection, Textarea, type Theme, ThreadList, type ThreadListProps, type ToastOptions, type ToastPromiseOptions, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TypographyBlockquote, TypographyH1, TypographyH2, TypographyH3, TypographyH4, TypographyInlineCode, TypographyLarge, TypographyList, TypographyMuted, TypographyP, TypographySmall, UiKitComponent, type UiKitComponentMap, UiKitIcon, type UseToastOptions, type UseToastReturn, UserInfo, type UserInfoComponent, type UserInfoProps, type UserInfoProps$1 as UserInfoPropsContract, alertVariants, applyTheme, badgeVariants, buttonGroupVariants, emptyMediaVariants, toggleVariants, useFormField, useToast };
|
|
1836
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonComponent, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, type ButtonProps$1 as ButtonPropsContract, ButtonSize, ButtonVariant, CLOSE_ICON_ID, Calendar, CalendarDayButton, CalendarIcon, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegendContent, ChartTooltipContent, ChatInput, type ChatInputProps, type ChatThread, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ComponentName, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, DataTableColumnHeader, type DataTableColumnHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableViewOptions, type DataTableViewOptionsProps, DatePicker, DatePickerContent, DatePickerInput, DatePickerTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonComponent, type DropdownButtonProps, type DropdownButtonProps$1 as DropdownButtonPropsContract, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuComponent, DropdownMenuContent, type DropdownMenuContentComponent, type DropdownMenuContentProps as DropdownMenuContentPropsContract, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemComponent, type DropdownMenuItemProps as DropdownMenuItemPropsContract, DropdownMenuLabel, DropdownMenuPortal, type DropdownMenuProps as DropdownMenuPropsContract, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, type DropdownMenuSubComponent, DropdownMenuSubContent, type DropdownMenuSubContentComponent, type DropdownMenuSubContentProps as DropdownMenuSubContentPropsContract, type DropdownMenuSubProps as DropdownMenuSubPropsContract, DropdownMenuSubTrigger, type DropdownMenuSubTriggerComponent, type DropdownMenuSubTriggerProps as DropdownMenuSubTriggerPropsContract, DropdownMenuTrigger, type DropdownMenuTriggerComponent, type DropdownMenuTriggerProps as DropdownMenuTriggerPropsContract, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Header, type HeaderComponent, type HeaderProps, type HeaderProps$1 as HeaderPropsContract, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonComponent, type IconButtonProps, type IconButtonProps$1 as IconButtonPropsContract, IconButtonSize, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, MENU_ICON_ID, MenuIcon, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MessageBubble, type MessageBubbleProps, MessageType, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, type SidebarComponent, SidebarContent, type SidebarContentComponent, type SidebarContentProps as SidebarContentPropsContract, SidebarHeader, type SidebarHeaderComponent, type SidebarHeaderProps, type SidebarHeaderProps$1 as SidebarHeaderPropsContract, SidebarMenu, SidebarMenuButton, type SidebarMenuButtonComponent, type SidebarMenuButtonProps as SidebarMenuButtonPropsContract, type SidebarMenuComponent, SidebarMenuIcon, type SidebarMenuIconComponent, type SidebarMenuIconProps as SidebarMenuIconPropsContract, SidebarMenuItem, type SidebarMenuItemComponent, type SidebarMenuItemProps as SidebarMenuItemPropsContract, SidebarMenuLabel, type SidebarMenuLabelComponent, type SidebarMenuLabelProps as SidebarMenuLabelPropsContract, type SidebarMenuProps as SidebarMenuPropsContract, type SidebarProps as SidebarPropsContract, Skeleton, type SkeletonComponent, type SkeletonProps$1 as SkeletonPropsContract, Slider, SliderRange, SliderThumb, SliderTrack, Spinner, type SpinnerComponent, type SpinnerProps, type SpinnerProps$1 as SpinnerPropsContract, Switch, type SwitchComponent, type SwitchProps as SwitchPropsContract, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextDirection, Textarea, type Theme, ThreadList, type ThreadListProps, type ToastOptions, type ToastPromiseOptions, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TypographyBlockquote, TypographyH1, TypographyH2, TypographyH3, TypographyH4, TypographyInlineCode, TypographyLarge, TypographyList, TypographyMuted, TypographyP, TypographySmall, UiKitComponent, type UiKitComponentMap, UiKitIcon, type UseToastOptions, type UseToastReturn, UserInfo, type UserInfoComponent, type UserInfoProps, type UserInfoProps$1 as UserInfoPropsContract, alertVariants, applyTheme, applyThemeToShadowRoot, badgeVariants, buttonGroupVariants, emptyMediaVariants, toggleVariants, useFormField, useToast };
|