@fea-ui/react 0.1.0-alpha.3 → 1.0.0-alpha.5
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 +157 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +229 -50
- package/dist/index.d.mts +639 -460
- package/dist/index.mjs +155 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -6
package/dist/index.d.cts
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
import * as tailwind_variants0 from "tailwind-variants";
|
|
2
2
|
import { VariantProps, cn } from "tailwind-variants";
|
|
3
3
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
|
-
import { Accordion as Accordion$1, AlertDialog as AlertDialog$1, Avatar as Avatar$1, Button as Button$1, Checkbox as Checkbox$1, CheckboxGroup as CheckboxGroup$1, Dialog as Dialog$1, Field as Field$1, Input as Input$1, Menu as Menu$1, Meter as Meter$1, Progress as Progress$1, Separator as Separator$1, Slider as Slider$1, Switch as Switch$1, Tabs as Tabs$1, ToggleProps } from "@base-ui/react";
|
|
4
|
+
import { Accordion as Accordion$1, AlertDialog as AlertDialog$1, Avatar as Avatar$1, Button as Button$1, Checkbox as Checkbox$1, CheckboxGroup as CheckboxGroup$1, Dialog as Dialog$1, Field as Field$1, Fieldset as Fieldset$1, Input as Input$1, Menu as Menu$1, Meter as Meter$1, Progress as Progress$1, Separator as Separator$1, Slider as Slider$1, Switch as Switch$1, Tabs as Tabs$1, ToggleProps } from "@base-ui/react";
|
|
5
5
|
import * as tailwind_merge0 from "tailwind-merge";
|
|
6
6
|
|
|
7
7
|
//#region src/components/accordion/accordion.variants.d.ts
|
|
8
8
|
declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
9
9
|
[key: string]: {
|
|
10
10
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
11
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
12
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
13
|
-
header?: tailwind_merge0.ClassNameValue;
|
|
14
11
|
content?: tailwind_merge0.ClassNameValue;
|
|
12
|
+
header?: tailwind_merge0.ClassNameValue;
|
|
15
13
|
item?: tailwind_merge0.ClassNameValue;
|
|
16
14
|
panel?: tailwind_merge0.ClassNameValue;
|
|
15
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
16
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
17
17
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
20
20
|
} | {
|
|
21
21
|
[x: string]: {
|
|
22
22
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
23
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
24
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
25
|
-
header?: tailwind_merge0.ClassNameValue;
|
|
26
23
|
content?: tailwind_merge0.ClassNameValue;
|
|
24
|
+
header?: tailwind_merge0.ClassNameValue;
|
|
27
25
|
item?: tailwind_merge0.ClassNameValue;
|
|
28
26
|
panel?: tailwind_merge0.ClassNameValue;
|
|
27
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
28
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
29
29
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
@@ -40,12 +40,12 @@ declare const accordionVariants: tailwind_variants0.TVReturnType<{
|
|
|
40
40
|
}, undefined, {
|
|
41
41
|
[key: string]: {
|
|
42
42
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
43
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
44
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
45
|
-
header?: tailwind_merge0.ClassNameValue;
|
|
46
43
|
content?: tailwind_merge0.ClassNameValue;
|
|
44
|
+
header?: tailwind_merge0.ClassNameValue;
|
|
47
45
|
item?: tailwind_merge0.ClassNameValue;
|
|
48
46
|
panel?: tailwind_merge0.ClassNameValue;
|
|
47
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
48
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
49
49
|
triggerIcon?: tailwind_merge0.ClassNameValue;
|
|
50
50
|
};
|
|
51
51
|
};
|
|
@@ -112,28 +112,28 @@ interface AccordionContentProps extends React.ComponentProps<"div"> {}
|
|
|
112
112
|
declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
113
113
|
[key: string]: {
|
|
114
114
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
115
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
116
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
117
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
115
118
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
116
119
|
close?: tailwind_merge0.ClassNameValue;
|
|
117
120
|
description?: tailwind_merge0.ClassNameValue;
|
|
118
121
|
popup?: tailwind_merge0.ClassNameValue;
|
|
119
122
|
portal?: tailwind_merge0.ClassNameValue;
|
|
120
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
121
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
122
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
123
123
|
viewport?: tailwind_merge0.ClassNameValue;
|
|
124
124
|
};
|
|
125
125
|
};
|
|
126
126
|
} | {
|
|
127
127
|
[x: string]: {
|
|
128
128
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
129
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
130
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
131
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
129
132
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
130
133
|
close?: tailwind_merge0.ClassNameValue;
|
|
131
134
|
description?: tailwind_merge0.ClassNameValue;
|
|
132
135
|
popup?: tailwind_merge0.ClassNameValue;
|
|
133
136
|
portal?: tailwind_merge0.ClassNameValue;
|
|
134
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
135
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
136
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
137
137
|
viewport?: tailwind_merge0.ClassNameValue;
|
|
138
138
|
};
|
|
139
139
|
};
|
|
@@ -150,14 +150,14 @@ declare const alertDialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
150
150
|
}, undefined, {
|
|
151
151
|
[key: string]: {
|
|
152
152
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
153
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
154
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
155
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
153
156
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
154
157
|
close?: tailwind_merge0.ClassNameValue;
|
|
155
158
|
description?: tailwind_merge0.ClassNameValue;
|
|
156
159
|
popup?: tailwind_merge0.ClassNameValue;
|
|
157
160
|
portal?: tailwind_merge0.ClassNameValue;
|
|
158
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
159
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
160
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
161
161
|
viewport?: tailwind_merge0.ClassNameValue;
|
|
162
162
|
};
|
|
163
163
|
};
|
|
@@ -608,28 +608,28 @@ declare const Container: ({
|
|
|
608
608
|
declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
609
609
|
[key: string]: {
|
|
610
610
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
611
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
612
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
613
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
611
614
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
612
615
|
close?: tailwind_merge0.ClassNameValue;
|
|
613
616
|
description?: tailwind_merge0.ClassNameValue;
|
|
614
617
|
popup?: tailwind_merge0.ClassNameValue;
|
|
615
618
|
portal?: tailwind_merge0.ClassNameValue;
|
|
616
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
617
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
618
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
619
619
|
viewport?: tailwind_merge0.ClassNameValue;
|
|
620
620
|
};
|
|
621
621
|
};
|
|
622
622
|
} | {
|
|
623
623
|
[x: string]: {
|
|
624
624
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
625
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
626
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
627
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
625
628
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
626
629
|
close?: tailwind_merge0.ClassNameValue;
|
|
627
630
|
description?: tailwind_merge0.ClassNameValue;
|
|
628
631
|
popup?: tailwind_merge0.ClassNameValue;
|
|
629
632
|
portal?: tailwind_merge0.ClassNameValue;
|
|
630
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
631
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
632
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
633
633
|
viewport?: tailwind_merge0.ClassNameValue;
|
|
634
634
|
};
|
|
635
635
|
};
|
|
@@ -646,14 +646,14 @@ declare const dialogVariants: tailwind_variants0.TVReturnType<{
|
|
|
646
646
|
}, undefined, {
|
|
647
647
|
[key: string]: {
|
|
648
648
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
649
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
650
|
+
trigger?: tailwind_merge0.ClassNameValue;
|
|
651
|
+
title?: tailwind_merge0.ClassNameValue;
|
|
649
652
|
backdrop?: tailwind_merge0.ClassNameValue;
|
|
650
653
|
close?: tailwind_merge0.ClassNameValue;
|
|
651
654
|
description?: tailwind_merge0.ClassNameValue;
|
|
652
655
|
popup?: tailwind_merge0.ClassNameValue;
|
|
653
656
|
portal?: tailwind_merge0.ClassNameValue;
|
|
654
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
655
|
-
title?: tailwind_merge0.ClassNameValue;
|
|
656
|
-
trigger?: tailwind_merge0.ClassNameValue;
|
|
657
657
|
viewport?: tailwind_merge0.ClassNameValue;
|
|
658
658
|
};
|
|
659
659
|
};
|
|
@@ -729,6 +729,136 @@ interface DialogTitleProps extends Dialog$1.Title.Props {}
|
|
|
729
729
|
interface DialogDescriptionProps extends Dialog$1.Description.Props {}
|
|
730
730
|
interface DialogCloseProps extends Dialog$1.Close.Props {}
|
|
731
731
|
//#endregion
|
|
732
|
+
//#region src/components/drawer/drawer.variants.d.ts
|
|
733
|
+
declare const drawerVariants: tailwind_variants0.TVReturnType<{
|
|
734
|
+
position: {
|
|
735
|
+
bottom: {
|
|
736
|
+
popup: string;
|
|
737
|
+
};
|
|
738
|
+
left: {
|
|
739
|
+
popup: string;
|
|
740
|
+
};
|
|
741
|
+
right: {
|
|
742
|
+
popup: string;
|
|
743
|
+
};
|
|
744
|
+
top: {
|
|
745
|
+
popup: string;
|
|
746
|
+
};
|
|
747
|
+
};
|
|
748
|
+
}, {
|
|
749
|
+
backdrop: string;
|
|
750
|
+
close: string;
|
|
751
|
+
description: string;
|
|
752
|
+
popup: string;
|
|
753
|
+
portal: string;
|
|
754
|
+
root: string;
|
|
755
|
+
title: string;
|
|
756
|
+
trigger: string;
|
|
757
|
+
viewport: string;
|
|
758
|
+
}, undefined, {
|
|
759
|
+
position: {
|
|
760
|
+
bottom: {
|
|
761
|
+
popup: string;
|
|
762
|
+
};
|
|
763
|
+
left: {
|
|
764
|
+
popup: string;
|
|
765
|
+
};
|
|
766
|
+
right: {
|
|
767
|
+
popup: string;
|
|
768
|
+
};
|
|
769
|
+
top: {
|
|
770
|
+
popup: string;
|
|
771
|
+
};
|
|
772
|
+
};
|
|
773
|
+
}, {
|
|
774
|
+
backdrop: string;
|
|
775
|
+
close: string;
|
|
776
|
+
description: string;
|
|
777
|
+
popup: string;
|
|
778
|
+
portal: string;
|
|
779
|
+
root: string;
|
|
780
|
+
title: string;
|
|
781
|
+
trigger: string;
|
|
782
|
+
viewport: string;
|
|
783
|
+
}, tailwind_variants0.TVReturnType<{
|
|
784
|
+
position: {
|
|
785
|
+
bottom: {
|
|
786
|
+
popup: string;
|
|
787
|
+
};
|
|
788
|
+
left: {
|
|
789
|
+
popup: string;
|
|
790
|
+
};
|
|
791
|
+
right: {
|
|
792
|
+
popup: string;
|
|
793
|
+
};
|
|
794
|
+
top: {
|
|
795
|
+
popup: string;
|
|
796
|
+
};
|
|
797
|
+
};
|
|
798
|
+
}, {
|
|
799
|
+
backdrop: string;
|
|
800
|
+
close: string;
|
|
801
|
+
description: string;
|
|
802
|
+
popup: string;
|
|
803
|
+
portal: string;
|
|
804
|
+
root: string;
|
|
805
|
+
title: string;
|
|
806
|
+
trigger: string;
|
|
807
|
+
viewport: string;
|
|
808
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
809
|
+
type DrawerVariants = VariantProps<typeof drawerVariants>;
|
|
810
|
+
//#endregion
|
|
811
|
+
//#region src/components/drawer/drawer.d.ts
|
|
812
|
+
interface DrawerProps extends DrawerVariants, Dialog$1.Root.Props {}
|
|
813
|
+
declare const Drawer: {
|
|
814
|
+
({
|
|
815
|
+
position,
|
|
816
|
+
...props
|
|
817
|
+
}: DrawerProps): react_jsx_runtime0.JSX.Element;
|
|
818
|
+
Root: /*elided*/any;
|
|
819
|
+
Trigger: ({
|
|
820
|
+
className,
|
|
821
|
+
...props
|
|
822
|
+
}: DrawerTriggerProps) => react_jsx_runtime0.JSX.Element;
|
|
823
|
+
Portal: ({
|
|
824
|
+
className,
|
|
825
|
+
...props
|
|
826
|
+
}: DrawerPortalProps) => react_jsx_runtime0.JSX.Element;
|
|
827
|
+
Backdrop: ({
|
|
828
|
+
className,
|
|
829
|
+
...props
|
|
830
|
+
}: DrawerBackdropProps) => react_jsx_runtime0.JSX.Element;
|
|
831
|
+
Viewport: ({
|
|
832
|
+
className,
|
|
833
|
+
...props
|
|
834
|
+
}: DrawerViewportProps) => react_jsx_runtime0.JSX.Element;
|
|
835
|
+
Popup: ({
|
|
836
|
+
className,
|
|
837
|
+
...props
|
|
838
|
+
}: DrawerPopupProps) => react_jsx_runtime0.JSX.Element;
|
|
839
|
+
Title: ({
|
|
840
|
+
className,
|
|
841
|
+
...props
|
|
842
|
+
}: DrawerTitleProps) => react_jsx_runtime0.JSX.Element;
|
|
843
|
+
Description: ({
|
|
844
|
+
className,
|
|
845
|
+
...props
|
|
846
|
+
}: DrawerDescriptionProps) => react_jsx_runtime0.JSX.Element;
|
|
847
|
+
Close: ({
|
|
848
|
+
className,
|
|
849
|
+
children,
|
|
850
|
+
...props
|
|
851
|
+
}: DrawerCloseProps) => react_jsx_runtime0.JSX.Element;
|
|
852
|
+
};
|
|
853
|
+
interface DrawerTriggerProps extends Dialog$1.Trigger.Props {}
|
|
854
|
+
interface DrawerPortalProps extends Dialog$1.Portal.Props {}
|
|
855
|
+
interface DrawerBackdropProps extends Dialog$1.Backdrop.Props {}
|
|
856
|
+
interface DrawerViewportProps extends Dialog$1.Viewport.Props {}
|
|
857
|
+
interface DrawerPopupProps extends Dialog$1.Popup.Props {}
|
|
858
|
+
interface DrawerTitleProps extends Dialog$1.Title.Props {}
|
|
859
|
+
interface DrawerDescriptionProps extends Dialog$1.Description.Props {}
|
|
860
|
+
interface DrawerCloseProps extends Dialog$1.Close.Props {}
|
|
861
|
+
//#endregion
|
|
732
862
|
//#region src/components/field/field.variants.d.ts
|
|
733
863
|
declare const fieldVariants: tailwind_variants0.TVReturnType<{
|
|
734
864
|
size: {
|
|
@@ -818,6 +948,55 @@ interface FieldDescriptionProps extends React.ComponentProps<typeof Field$1.Desc
|
|
|
818
948
|
interface FieldControlProps extends React.ComponentProps<typeof Field$1.Control> {}
|
|
819
949
|
interface FieldErrorProps extends React.ComponentProps<typeof Field$1.Error> {}
|
|
820
950
|
//#endregion
|
|
951
|
+
//#region src/components/fieldset/fieldset.variants.d.ts
|
|
952
|
+
declare const fieldsetVariants: tailwind_variants0.TVReturnType<{
|
|
953
|
+
[key: string]: {
|
|
954
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
955
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
956
|
+
legend?: tailwind_merge0.ClassNameValue;
|
|
957
|
+
};
|
|
958
|
+
};
|
|
959
|
+
} | {
|
|
960
|
+
[x: string]: {
|
|
961
|
+
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
962
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
963
|
+
legend?: tailwind_merge0.ClassNameValue;
|
|
964
|
+
};
|
|
965
|
+
};
|
|
966
|
+
} | {}, {
|
|
967
|
+
legend: string;
|
|
968
|
+
root: string;
|
|
969
|
+
}, undefined, {
|
|
970
|
+
[key: string]: {
|
|
971
|
+
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
972
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
973
|
+
legend?: tailwind_merge0.ClassNameValue;
|
|
974
|
+
};
|
|
975
|
+
};
|
|
976
|
+
} | {}, {
|
|
977
|
+
legend: string;
|
|
978
|
+
root: string;
|
|
979
|
+
}, tailwind_variants0.TVReturnType<unknown, {
|
|
980
|
+
legend: string;
|
|
981
|
+
root: string;
|
|
982
|
+
}, undefined, unknown, unknown, undefined>>;
|
|
983
|
+
type FieldsetVariants = VariantProps<typeof fieldsetVariants>;
|
|
984
|
+
//#endregion
|
|
985
|
+
//#region src/components/fieldset/fieldset.d.ts
|
|
986
|
+
interface FieldsetProps extends FieldsetVariants, Fieldset$1.Root.Props {}
|
|
987
|
+
declare const Fieldset: {
|
|
988
|
+
({
|
|
989
|
+
className,
|
|
990
|
+
...props
|
|
991
|
+
}: FieldsetProps): react_jsx_runtime0.JSX.Element;
|
|
992
|
+
Root: /*elided*/any;
|
|
993
|
+
Legend: ({
|
|
994
|
+
className,
|
|
995
|
+
...props
|
|
996
|
+
}: FieldsetLegendProps) => react_jsx_runtime0.JSX.Element;
|
|
997
|
+
};
|
|
998
|
+
interface FieldsetLegendProps extends Fieldset$1.Legend.Props {}
|
|
999
|
+
//#endregion
|
|
821
1000
|
//#region src/components/form/form.variants.d.ts
|
|
822
1001
|
declare const formVariants: tailwind_variants0.TVReturnType<{} | {} | {}, undefined, "form", {} | {}, undefined, tailwind_variants0.TVReturnType<unknown, undefined, "form", unknown, unknown, undefined>>;
|
|
823
1002
|
type FormVariants = VariantProps<typeof formVariants>;
|
|
@@ -901,15 +1080,15 @@ declare const Link: ({
|
|
|
901
1080
|
declare const listVariants: tailwind_variants0.TVReturnType<{
|
|
902
1081
|
[key: string]: {
|
|
903
1082
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
904
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
905
1083
|
item?: tailwind_merge0.ClassNameValue;
|
|
1084
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
906
1085
|
};
|
|
907
1086
|
};
|
|
908
1087
|
} | {
|
|
909
1088
|
[x: string]: {
|
|
910
1089
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
911
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
912
1090
|
item?: tailwind_merge0.ClassNameValue;
|
|
1091
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
913
1092
|
};
|
|
914
1093
|
};
|
|
915
1094
|
} | {}, {
|
|
@@ -918,8 +1097,8 @@ declare const listVariants: tailwind_variants0.TVReturnType<{
|
|
|
918
1097
|
}, undefined, {
|
|
919
1098
|
[key: string]: {
|
|
920
1099
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
921
|
-
root?: tailwind_merge0.ClassNameValue;
|
|
922
1100
|
item?: tailwind_merge0.ClassNameValue;
|
|
1101
|
+
root?: tailwind_merge0.ClassNameValue;
|
|
923
1102
|
};
|
|
924
1103
|
};
|
|
925
1104
|
} | {}, {
|
|
@@ -950,13 +1129,13 @@ interface ListItemProps extends React.ComponentProps<"li"> {}
|
|
|
950
1129
|
declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
951
1130
|
[key: string]: {
|
|
952
1131
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
953
|
-
|
|
954
|
-
popup?: tailwind_merge0.ClassNameValue;
|
|
955
|
-
portal?: tailwind_merge0.ClassNameValue;
|
|
1132
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
956
1133
|
root?: tailwind_merge0.ClassNameValue;
|
|
957
1134
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
958
1135
|
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
959
|
-
|
|
1136
|
+
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1137
|
+
popup?: tailwind_merge0.ClassNameValue;
|
|
1138
|
+
portal?: tailwind_merge0.ClassNameValue;
|
|
960
1139
|
arrow?: tailwind_merge0.ClassNameValue;
|
|
961
1140
|
checkboxItem?: tailwind_merge0.ClassNameValue;
|
|
962
1141
|
group?: tailwind_merge0.ClassNameValue;
|
|
@@ -971,13 +1150,13 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
971
1150
|
} | {
|
|
972
1151
|
[x: string]: {
|
|
973
1152
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
974
|
-
|
|
975
|
-
popup?: tailwind_merge0.ClassNameValue;
|
|
976
|
-
portal?: tailwind_merge0.ClassNameValue;
|
|
1153
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
977
1154
|
root?: tailwind_merge0.ClassNameValue;
|
|
978
1155
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
979
1156
|
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
980
|
-
|
|
1157
|
+
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1158
|
+
popup?: tailwind_merge0.ClassNameValue;
|
|
1159
|
+
portal?: tailwind_merge0.ClassNameValue;
|
|
981
1160
|
arrow?: tailwind_merge0.ClassNameValue;
|
|
982
1161
|
checkboxItem?: tailwind_merge0.ClassNameValue;
|
|
983
1162
|
group?: tailwind_merge0.ClassNameValue;
|
|
@@ -1009,13 +1188,13 @@ declare const menuVariants: tailwind_variants0.TVReturnType<{
|
|
|
1009
1188
|
}, undefined, {
|
|
1010
1189
|
[key: string]: {
|
|
1011
1190
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1012
|
-
|
|
1013
|
-
popup?: tailwind_merge0.ClassNameValue;
|
|
1014
|
-
portal?: tailwind_merge0.ClassNameValue;
|
|
1191
|
+
item?: tailwind_merge0.ClassNameValue;
|
|
1015
1192
|
root?: tailwind_merge0.ClassNameValue;
|
|
1016
1193
|
trigger?: tailwind_merge0.ClassNameValue;
|
|
1017
1194
|
radioGroup?: tailwind_merge0.ClassNameValue;
|
|
1018
|
-
|
|
1195
|
+
backdrop?: tailwind_merge0.ClassNameValue;
|
|
1196
|
+
popup?: tailwind_merge0.ClassNameValue;
|
|
1197
|
+
portal?: tailwind_merge0.ClassNameValue;
|
|
1019
1198
|
arrow?: tailwind_merge0.ClassNameValue;
|
|
1020
1199
|
checkboxItem?: tailwind_merge0.ClassNameValue;
|
|
1021
1200
|
group?: tailwind_merge0.ClassNameValue;
|
|
@@ -1283,9 +1462,9 @@ interface MeterIndicatorProps extends Meter$1.Indicator.Props {}
|
|
|
1283
1462
|
declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
1284
1463
|
[key: string]: {
|
|
1285
1464
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1465
|
+
content?: tailwind_merge0.ClassNameValue;
|
|
1286
1466
|
root?: tailwind_merge0.ClassNameValue;
|
|
1287
1467
|
menu?: tailwind_merge0.ClassNameValue;
|
|
1288
|
-
content?: tailwind_merge0.ClassNameValue;
|
|
1289
1468
|
container?: tailwind_merge0.ClassNameValue;
|
|
1290
1469
|
list?: tailwind_merge0.ClassNameValue;
|
|
1291
1470
|
listItem?: tailwind_merge0.ClassNameValue;
|
|
@@ -1296,9 +1475,9 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1296
1475
|
} | {
|
|
1297
1476
|
[x: string]: {
|
|
1298
1477
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1478
|
+
content?: tailwind_merge0.ClassNameValue;
|
|
1299
1479
|
root?: tailwind_merge0.ClassNameValue;
|
|
1300
1480
|
menu?: tailwind_merge0.ClassNameValue;
|
|
1301
|
-
content?: tailwind_merge0.ClassNameValue;
|
|
1302
1481
|
container?: tailwind_merge0.ClassNameValue;
|
|
1303
1482
|
list?: tailwind_merge0.ClassNameValue;
|
|
1304
1483
|
listItem?: tailwind_merge0.ClassNameValue;
|
|
@@ -1318,9 +1497,9 @@ declare const navbarVariants: tailwind_variants0.TVReturnType<{
|
|
|
1318
1497
|
}, undefined, {
|
|
1319
1498
|
[key: string]: {
|
|
1320
1499
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1500
|
+
content?: tailwind_merge0.ClassNameValue;
|
|
1321
1501
|
root?: tailwind_merge0.ClassNameValue;
|
|
1322
1502
|
menu?: tailwind_merge0.ClassNameValue;
|
|
1323
|
-
content?: tailwind_merge0.ClassNameValue;
|
|
1324
1503
|
container?: tailwind_merge0.ClassNameValue;
|
|
1325
1504
|
list?: tailwind_merge0.ClassNameValue;
|
|
1326
1505
|
listItem?: tailwind_merge0.ClassNameValue;
|
|
@@ -1764,9 +1943,9 @@ interface TableFooterProps extends React.ComponentProps<"tfoot"> {}
|
|
|
1764
1943
|
declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
1765
1944
|
[key: string]: {
|
|
1766
1945
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1946
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
1767
1947
|
root?: tailwind_merge0.ClassNameValue;
|
|
1768
1948
|
indicator?: tailwind_merge0.ClassNameValue;
|
|
1769
|
-
panel?: tailwind_merge0.ClassNameValue;
|
|
1770
1949
|
list?: tailwind_merge0.ClassNameValue;
|
|
1771
1950
|
tab?: tailwind_merge0.ClassNameValue;
|
|
1772
1951
|
};
|
|
@@ -1774,9 +1953,9 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
1774
1953
|
} | {
|
|
1775
1954
|
[x: string]: {
|
|
1776
1955
|
[x: string]: tailwind_merge0.ClassNameValue | {
|
|
1956
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
1777
1957
|
root?: tailwind_merge0.ClassNameValue;
|
|
1778
1958
|
indicator?: tailwind_merge0.ClassNameValue;
|
|
1779
|
-
panel?: tailwind_merge0.ClassNameValue;
|
|
1780
1959
|
list?: tailwind_merge0.ClassNameValue;
|
|
1781
1960
|
tab?: tailwind_merge0.ClassNameValue;
|
|
1782
1961
|
};
|
|
@@ -1790,9 +1969,9 @@ declare const tabsVariants: tailwind_variants0.TVReturnType<{
|
|
|
1790
1969
|
}, undefined, {
|
|
1791
1970
|
[key: string]: {
|
|
1792
1971
|
[key: string]: tailwind_merge0.ClassNameValue | {
|
|
1972
|
+
panel?: tailwind_merge0.ClassNameValue;
|
|
1793
1973
|
root?: tailwind_merge0.ClassNameValue;
|
|
1794
1974
|
indicator?: tailwind_merge0.ClassNameValue;
|
|
1795
|
-
panel?: tailwind_merge0.ClassNameValue;
|
|
1796
1975
|
list?: tailwind_merge0.ClassNameValue;
|
|
1797
1976
|
tab?: tailwind_merge0.ClassNameValue;
|
|
1798
1977
|
};
|
|
@@ -2011,5 +2190,5 @@ declare const ToggleButton: ({
|
|
|
2011
2190
|
...props
|
|
2012
2191
|
}: ToggleButtonProps) => react_jsx_runtime0.JSX.Element;
|
|
2013
2192
|
//#endregion
|
|
2014
|
-
export { Accordion, AccordionVariants, AlertDialog, AlertDialogVariants, Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, Card, CardVariants, Checkbox, CheckboxGroup, CheckboxGroupVariants, CheckboxVariants, Chip, ChipVariants, Container, ContainerVariants, Dialog, DialogVariants, Field, FieldVariants, Form, FormVariants, Input, InputVariants, Label, LabelVariants, Link, LinkVariants, List, ListVariants, Menu, MenuVariants, Meter, MeterVariants, Navbar, NavbarVariants, Progress, ProgressVariants, Separator, SeparatorVariants, Slider, SliderVariants, Switch, SwitchVariants, Table, TableVariants, Tabs, TabsVariants, Text, TextVariants, Textarea, TextareaVariants, ToggleButton, ToggleButtonVariants, accordionVariants, alertDialogVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, checkboxVariants, chipVariants, cn, containerVariants, dialogVariants, fieldVariants, formVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, progressVariants, separatorVariants, sliderVariants, switchVariants, tableVariants, tabsVariants, textVariants, textareaVariants, toggleButtonVariants };
|
|
2193
|
+
export { Accordion, AccordionVariants, AlertDialog, AlertDialogVariants, Avatar, AvatarVariants, Button, ButtonGroup, ButtonGroupVariants, ButtonVariants, Card, CardVariants, Checkbox, CheckboxGroup, CheckboxGroupVariants, CheckboxVariants, Chip, ChipVariants, Container, ContainerVariants, Dialog, DialogVariants, Drawer, DrawerVariants, Field, FieldVariants, Fieldset, FieldsetVariants, Form, FormVariants, Input, InputVariants, Label, LabelVariants, Link, LinkVariants, List, ListVariants, Menu, MenuVariants, Meter, MeterVariants, Navbar, NavbarVariants, Progress, ProgressVariants, Separator, SeparatorVariants, Slider, SliderVariants, Switch, SwitchVariants, Table, TableVariants, Tabs, TabsVariants, Text, TextVariants, Textarea, TextareaVariants, ToggleButton, ToggleButtonVariants, accordionVariants, alertDialogVariants, avatarVariants, buttonGroupVariants, buttonVariants, cardVariants, checkboxGroupVariants, checkboxVariants, chipVariants, cn, containerVariants, dialogVariants, drawerVariants, fieldVariants, fieldsetVariants, formVariants, inputVariants, labelVariants, linkVariants, listVariants, menuVariants, meterVariants, navbarVariants, progressVariants, separatorVariants, sliderVariants, switchVariants, tableVariants, tabsVariants, textVariants, textareaVariants, toggleButtonVariants };
|
|
2015
2194
|
//# sourceMappingURL=index.d.cts.map
|