@mmb-digital/design-system-web 0.1.21 → 0.1.22
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.js +98 -87
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +418 -413
- package/dist/index.esm.js +114 -103
- package/dist/index.esm.js.map +1 -1
- package/dist/jest.config.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -127,24 +127,29 @@ declare enum TabsVariant {
|
|
|
127
127
|
secondary = "secondary",
|
|
128
128
|
tertiary = "tertiary"
|
|
129
129
|
}
|
|
130
|
-
interface
|
|
131
|
-
colorScheme: ColorScheme;
|
|
130
|
+
interface TabItemType {
|
|
132
131
|
icon?: ReactNode;
|
|
133
132
|
id: string;
|
|
134
133
|
isActive?: boolean;
|
|
135
134
|
onClick?: () => void;
|
|
136
|
-
text?:
|
|
135
|
+
text?: ReactElement | string;
|
|
136
|
+
}
|
|
137
|
+
interface TabsType {
|
|
138
|
+
tabItems: TabItemType[];
|
|
137
139
|
variant: TabsVariant;
|
|
138
140
|
}
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
steps: TabsItemProps[];
|
|
141
|
+
|
|
142
|
+
interface TabsItemProps extends TabItemType {
|
|
143
|
+
colorScheme: ColorScheme;
|
|
143
144
|
variant: TabsVariant;
|
|
144
145
|
}
|
|
145
146
|
|
|
146
147
|
declare const TabsItem: FC<TabsItemProps>;
|
|
147
148
|
|
|
149
|
+
interface TabsProps extends TabsType {
|
|
150
|
+
colorScheme: ColorScheme;
|
|
151
|
+
}
|
|
152
|
+
|
|
148
153
|
declare const Tabs: FC<TabsProps>;
|
|
149
154
|
|
|
150
155
|
declare enum IconProductType {
|
|
@@ -752,531 +757,531 @@ type StackProps = HTMLAttributes<HTMLDivElement> & {
|
|
|
752
757
|
declare const Stack: React.FC<StackProps>;
|
|
753
758
|
|
|
754
759
|
declare const theme: {
|
|
755
|
-
palette: {
|
|
756
|
-
gold100:
|
|
757
|
-
gold200:
|
|
758
|
-
gold500:
|
|
759
|
-
gold600:
|
|
760
|
-
gold700:
|
|
761
|
-
gold800:
|
|
762
|
-
pink100:
|
|
763
|
-
pink200:
|
|
764
|
-
pink300:
|
|
765
|
-
pink400:
|
|
766
|
-
pink500:
|
|
767
|
-
pink600:
|
|
768
|
-
pink700:
|
|
769
|
-
pink800:
|
|
770
|
-
pink900:
|
|
771
|
-
pink1000:
|
|
772
|
-
grey100:
|
|
773
|
-
grey200:
|
|
774
|
-
grey300:
|
|
775
|
-
grey400:
|
|
776
|
-
grey500:
|
|
777
|
-
grey600:
|
|
778
|
-
grey700:
|
|
779
|
-
grey800:
|
|
780
|
-
grey900:
|
|
781
|
-
grey1000:
|
|
782
|
-
black:
|
|
783
|
-
white:
|
|
784
|
-
transparent:
|
|
785
|
-
yellow100:
|
|
786
|
-
yellow200:
|
|
787
|
-
yellow300:
|
|
788
|
-
yellow400:
|
|
789
|
-
yellow500:
|
|
790
|
-
yellow600:
|
|
791
|
-
yellow700:
|
|
792
|
-
yellow800:
|
|
793
|
-
yellow900:
|
|
794
|
-
yellow1000:
|
|
795
|
-
green100:
|
|
796
|
-
green200:
|
|
797
|
-
green300:
|
|
798
|
-
green400:
|
|
799
|
-
green500:
|
|
800
|
-
green600:
|
|
801
|
-
green700:
|
|
802
|
-
green800:
|
|
803
|
-
green900:
|
|
804
|
-
green1000:
|
|
805
|
-
red100:
|
|
806
|
-
red200:
|
|
807
|
-
red300:
|
|
808
|
-
red400:
|
|
809
|
-
red500:
|
|
810
|
-
red600:
|
|
811
|
-
red700:
|
|
812
|
-
red800:
|
|
813
|
-
red900:
|
|
814
|
-
red1000:
|
|
815
|
-
blue100:
|
|
816
|
-
blue200:
|
|
817
|
-
blue300:
|
|
818
|
-
blue400:
|
|
819
|
-
blue500:
|
|
820
|
-
blue600:
|
|
821
|
-
blue700:
|
|
822
|
-
blue800:
|
|
823
|
-
blue900:
|
|
824
|
-
blue1000:
|
|
760
|
+
readonly palette: {
|
|
761
|
+
readonly gold100: "#fffcee";
|
|
762
|
+
readonly gold200: "#fbf9f4";
|
|
763
|
+
readonly gold500: "#a58b4b";
|
|
764
|
+
readonly gold600: "#85703d";
|
|
765
|
+
readonly gold700: "#776437";
|
|
766
|
+
readonly gold800: "#62532d";
|
|
767
|
+
readonly pink100: "#fef6fc";
|
|
768
|
+
readonly pink200: "#fae0f5";
|
|
769
|
+
readonly pink300: "#f3b4e6";
|
|
770
|
+
readonly pink400: "#ec88d7";
|
|
771
|
+
readonly pink500: "#e55cc8";
|
|
772
|
+
readonly pink600: "#de31b9";
|
|
773
|
+
readonly pink700: "#bd1e9b";
|
|
774
|
+
readonly pink800: "#911777";
|
|
775
|
+
readonly pink900: "#651053";
|
|
776
|
+
readonly pink1000: "#39092f";
|
|
777
|
+
readonly grey100: "#fafcff";
|
|
778
|
+
readonly grey200: "#e4e7ec";
|
|
779
|
+
readonly grey300: "#c6ccd7";
|
|
780
|
+
readonly grey400: "#a8b2c2";
|
|
781
|
+
readonly grey500: "#8a97ad";
|
|
782
|
+
readonly grey600: "#6c7d98";
|
|
783
|
+
readonly grey700: "#56647b";
|
|
784
|
+
readonly grey800: "#414c5d";
|
|
785
|
+
readonly grey900: "#2c333f";
|
|
786
|
+
readonly grey1000: "#171b21";
|
|
787
|
+
readonly black: "#000000";
|
|
788
|
+
readonly white: "#ffffff";
|
|
789
|
+
readonly transparent: "rgba(255, 255, 255, 0.0000)";
|
|
790
|
+
readonly yellow100: "#fffcee";
|
|
791
|
+
readonly yellow200: "#fff9db";
|
|
792
|
+
readonly yellow300: "#fdf6d8";
|
|
793
|
+
readonly yellow400: "#fae9a3";
|
|
794
|
+
readonly yellow500: "#d7b45b";
|
|
795
|
+
readonly yellow600: "#b17902";
|
|
796
|
+
readonly yellow700: "#ab6802";
|
|
797
|
+
readonly yellow800: "#885202";
|
|
798
|
+
readonly yellow900: "#704300";
|
|
799
|
+
readonly yellow1000: "#3d2500";
|
|
800
|
+
readonly green100: "#f7fffb";
|
|
801
|
+
readonly green200: "#e9fff4";
|
|
802
|
+
readonly green300: "#def7e6";
|
|
803
|
+
readonly green400: "#99e5b3";
|
|
804
|
+
readonly green500: "#6cd07b";
|
|
805
|
+
readonly green600: "#2e9721";
|
|
806
|
+
readonly green700: "#258a19";
|
|
807
|
+
readonly green800: "#1c6c13";
|
|
808
|
+
readonly green900: "#1d5a16";
|
|
809
|
+
readonly green1000: "#10310c";
|
|
810
|
+
readonly red100: "#fff8f7";
|
|
811
|
+
readonly red200: "#ffebe9";
|
|
812
|
+
readonly red300: "#fbddda";
|
|
813
|
+
readonly red400: "#f5aea8";
|
|
814
|
+
readonly red500: "#eb827a";
|
|
815
|
+
readonly red600: "#dc3628";
|
|
816
|
+
readonly red700: "#ca2e21";
|
|
817
|
+
readonly red800: "#b92518";
|
|
818
|
+
readonly red900: "#a0271c";
|
|
819
|
+
readonly red1000: "#57150f";
|
|
820
|
+
readonly blue100: "#f0f5ff";
|
|
821
|
+
readonly blue200: "#d7e4ff";
|
|
822
|
+
readonly blue300: "#b3ccfe";
|
|
823
|
+
readonly blue400: "#81a9fe";
|
|
824
|
+
readonly blue500: "#4e86fe";
|
|
825
|
+
readonly blue600: "#1c65fd";
|
|
826
|
+
readonly blue700: "#024be3";
|
|
827
|
+
readonly blue800: "#023ab1";
|
|
828
|
+
readonly blue900: "#012a7e";
|
|
829
|
+
readonly blue1000: "#01194c";
|
|
825
830
|
};
|
|
826
|
-
colors: {
|
|
827
|
-
fg: {
|
|
828
|
-
neutral: {
|
|
829
|
-
default: {
|
|
830
|
-
light:
|
|
831
|
-
dark:
|
|
831
|
+
readonly colors: {
|
|
832
|
+
readonly fg: {
|
|
833
|
+
readonly neutral: {
|
|
834
|
+
readonly default: {
|
|
835
|
+
readonly light: "#01194c";
|
|
836
|
+
readonly dark: "#ffffff";
|
|
832
837
|
};
|
|
833
|
-
subtle: {
|
|
834
|
-
light:
|
|
835
|
-
dark:
|
|
838
|
+
readonly subtle: {
|
|
839
|
+
readonly light: "#56647b";
|
|
840
|
+
readonly dark: "#a8b2c2";
|
|
836
841
|
};
|
|
837
|
-
subtlest: {
|
|
838
|
-
light:
|
|
839
|
-
dark:
|
|
842
|
+
readonly subtlest: {
|
|
843
|
+
readonly light: "#6c7d98";
|
|
844
|
+
readonly dark: "#6c7d98";
|
|
840
845
|
};
|
|
841
|
-
white: {
|
|
842
|
-
light:
|
|
843
|
-
dark:
|
|
846
|
+
readonly white: {
|
|
847
|
+
readonly light: "#ffffff";
|
|
848
|
+
readonly dark: "#ffffff";
|
|
844
849
|
};
|
|
845
850
|
};
|
|
846
|
-
disabled: {
|
|
847
|
-
light:
|
|
848
|
-
dark:
|
|
851
|
+
readonly disabled: {
|
|
852
|
+
readonly light: "#8a97ad";
|
|
853
|
+
readonly dark: "#6c7d98";
|
|
849
854
|
};
|
|
850
|
-
inverse: {
|
|
851
|
-
light:
|
|
852
|
-
dark:
|
|
855
|
+
readonly inverse: {
|
|
856
|
+
readonly light: "#ffffff";
|
|
857
|
+
readonly dark: "#171b21";
|
|
853
858
|
};
|
|
854
|
-
link: {
|
|
855
|
-
default: {
|
|
856
|
-
light:
|
|
857
|
-
dark:
|
|
859
|
+
readonly link: {
|
|
860
|
+
readonly default: {
|
|
861
|
+
readonly light: "#1c65fd";
|
|
862
|
+
readonly dark: "#4e86fe";
|
|
858
863
|
};
|
|
859
|
-
hover: {
|
|
860
|
-
light:
|
|
861
|
-
dark:
|
|
864
|
+
readonly hover: {
|
|
865
|
+
readonly light: "#024be3";
|
|
866
|
+
readonly dark: "#81a9fe";
|
|
862
867
|
};
|
|
863
|
-
pressed: {
|
|
864
|
-
light:
|
|
865
|
-
dark:
|
|
868
|
+
readonly pressed: {
|
|
869
|
+
readonly light: "#023ab1";
|
|
870
|
+
readonly dark: "#b3ccfe";
|
|
866
871
|
};
|
|
867
872
|
};
|
|
868
|
-
success: {
|
|
869
|
-
light:
|
|
870
|
-
dark:
|
|
873
|
+
readonly success: {
|
|
874
|
+
readonly light: "#1c6c13";
|
|
875
|
+
readonly dark: "#99e5b3";
|
|
871
876
|
};
|
|
872
|
-
warning: {
|
|
873
|
-
light:
|
|
874
|
-
dark:
|
|
877
|
+
readonly warning: {
|
|
878
|
+
readonly light: "#85703d";
|
|
879
|
+
readonly dark: "#fae9a3";
|
|
875
880
|
};
|
|
876
|
-
error: {
|
|
877
|
-
light:
|
|
878
|
-
dark:
|
|
881
|
+
readonly error: {
|
|
882
|
+
readonly light: "#ca2e21";
|
|
883
|
+
readonly dark: "#f5aea8";
|
|
879
884
|
};
|
|
880
|
-
info: {
|
|
881
|
-
light:
|
|
882
|
-
dark:
|
|
885
|
+
readonly info: {
|
|
886
|
+
readonly light: "#1c65fd";
|
|
887
|
+
readonly dark: "#4e86fe";
|
|
883
888
|
};
|
|
884
|
-
promo: {
|
|
885
|
-
light:
|
|
886
|
-
dark:
|
|
889
|
+
readonly promo: {
|
|
890
|
+
readonly light: "#85703d";
|
|
891
|
+
readonly dark: "#a58b4b";
|
|
887
892
|
};
|
|
888
|
-
brand: {
|
|
889
|
-
default: {
|
|
890
|
-
light:
|
|
891
|
-
dark:
|
|
893
|
+
readonly brand: {
|
|
894
|
+
readonly default: {
|
|
895
|
+
readonly light: "#1c65fd";
|
|
896
|
+
readonly dark: "#1c65fd";
|
|
892
897
|
};
|
|
893
|
-
bold: {
|
|
894
|
-
light:
|
|
895
|
-
dark:
|
|
898
|
+
readonly bold: {
|
|
899
|
+
readonly light: "#024be3";
|
|
900
|
+
readonly dark: "#4e86fe";
|
|
896
901
|
};
|
|
897
902
|
};
|
|
898
|
-
accent: {
|
|
899
|
-
default: {
|
|
900
|
-
light:
|
|
901
|
-
dark:
|
|
903
|
+
readonly accent: {
|
|
904
|
+
readonly default: {
|
|
905
|
+
readonly light: "#de31b9";
|
|
906
|
+
readonly dark: "#de31b9";
|
|
902
907
|
};
|
|
903
|
-
bold: {
|
|
904
|
-
light:
|
|
905
|
-
dark:
|
|
908
|
+
readonly bold: {
|
|
909
|
+
readonly light: "#bd1e9b";
|
|
910
|
+
readonly dark: "#e55cc8";
|
|
906
911
|
};
|
|
907
912
|
};
|
|
908
913
|
};
|
|
909
|
-
bg: {
|
|
910
|
-
neutral: {
|
|
911
|
-
default: {
|
|
912
|
-
light:
|
|
913
|
-
dark:
|
|
914
|
+
readonly bg: {
|
|
915
|
+
readonly neutral: {
|
|
916
|
+
readonly default: {
|
|
917
|
+
readonly light: "#a8b2c2";
|
|
918
|
+
readonly dark: "#56647b";
|
|
914
919
|
};
|
|
915
|
-
subtle: {
|
|
916
|
-
light:
|
|
917
|
-
dark:
|
|
920
|
+
readonly subtle: {
|
|
921
|
+
readonly light: "#c6ccd7";
|
|
922
|
+
readonly dark: "#414c5d";
|
|
918
923
|
};
|
|
919
|
-
subtlest: {
|
|
920
|
-
light:
|
|
921
|
-
dark:
|
|
924
|
+
readonly subtlest: {
|
|
925
|
+
readonly light: "#e4e7ec";
|
|
926
|
+
readonly dark: "#171b21";
|
|
922
927
|
};
|
|
923
|
-
white: {
|
|
924
|
-
light:
|
|
925
|
-
dark:
|
|
928
|
+
readonly white: {
|
|
929
|
+
readonly light: "#ffffff";
|
|
930
|
+
readonly dark: "#ffffff";
|
|
926
931
|
};
|
|
927
932
|
};
|
|
928
|
-
disabled: {
|
|
929
|
-
light:
|
|
930
|
-
dark:
|
|
933
|
+
readonly disabled: {
|
|
934
|
+
readonly light: "#e4e7ec";
|
|
935
|
+
readonly dark: "#414c5d";
|
|
931
936
|
};
|
|
932
|
-
promo: {
|
|
933
|
-
default: {
|
|
934
|
-
light:
|
|
935
|
-
dark:
|
|
937
|
+
readonly promo: {
|
|
938
|
+
readonly default: {
|
|
939
|
+
readonly light: "#fbf9f4";
|
|
940
|
+
readonly dark: "#62532d";
|
|
936
941
|
};
|
|
937
|
-
bold: {
|
|
938
|
-
light:
|
|
939
|
-
dark:
|
|
942
|
+
readonly bold: {
|
|
943
|
+
readonly light: "#a58b4b";
|
|
944
|
+
readonly dark: "#a58b4b";
|
|
940
945
|
};
|
|
941
946
|
};
|
|
942
|
-
error: {
|
|
943
|
-
default: {
|
|
944
|
-
light:
|
|
945
|
-
dark:
|
|
947
|
+
readonly error: {
|
|
948
|
+
readonly default: {
|
|
949
|
+
readonly light: "#fff8f7";
|
|
950
|
+
readonly dark: "#a0271c";
|
|
946
951
|
};
|
|
947
|
-
bold: {
|
|
948
|
-
light:
|
|
949
|
-
dark:
|
|
952
|
+
readonly bold: {
|
|
953
|
+
readonly light: "#dc3628";
|
|
954
|
+
readonly dark: "#f5aea8";
|
|
950
955
|
};
|
|
951
956
|
};
|
|
952
|
-
warning: {
|
|
953
|
-
default: {
|
|
954
|
-
light:
|
|
955
|
-
dark:
|
|
957
|
+
readonly warning: {
|
|
958
|
+
readonly default: {
|
|
959
|
+
readonly light: "#fff9db";
|
|
960
|
+
readonly dark: "#fffcee";
|
|
956
961
|
};
|
|
957
|
-
bold: {
|
|
958
|
-
light:
|
|
959
|
-
dark:
|
|
962
|
+
readonly bold: {
|
|
963
|
+
readonly light: "#fae9a3";
|
|
964
|
+
readonly dark: "#b17902";
|
|
960
965
|
};
|
|
961
966
|
};
|
|
962
|
-
inverse: {
|
|
963
|
-
light:
|
|
964
|
-
dark:
|
|
967
|
+
readonly inverse: {
|
|
968
|
+
readonly light: "#171b21";
|
|
969
|
+
readonly dark: "#fafcff";
|
|
965
970
|
};
|
|
966
|
-
success: {
|
|
967
|
-
default: {
|
|
968
|
-
light:
|
|
969
|
-
dark:
|
|
971
|
+
readonly success: {
|
|
972
|
+
readonly default: {
|
|
973
|
+
readonly light: "#e9fff4";
|
|
974
|
+
readonly dark: "#1d5a16";
|
|
970
975
|
};
|
|
971
|
-
bold: {
|
|
972
|
-
light:
|
|
973
|
-
dark:
|
|
976
|
+
readonly bold: {
|
|
977
|
+
readonly light: "#2e9721";
|
|
978
|
+
readonly dark: "#99e5b3";
|
|
974
979
|
};
|
|
975
980
|
};
|
|
976
|
-
info: {
|
|
977
|
-
default: {
|
|
978
|
-
light:
|
|
979
|
-
dark:
|
|
981
|
+
readonly info: {
|
|
982
|
+
readonly default: {
|
|
983
|
+
readonly light: "#f0f5ff";
|
|
984
|
+
readonly dark: "#01194c";
|
|
980
985
|
};
|
|
981
|
-
bold: {
|
|
982
|
-
light:
|
|
983
|
-
dark:
|
|
986
|
+
readonly bold: {
|
|
987
|
+
readonly light: "#1c65fd";
|
|
988
|
+
readonly dark: "#4e86fe";
|
|
984
989
|
};
|
|
985
990
|
};
|
|
986
|
-
accent: {
|
|
987
|
-
light:
|
|
988
|
-
dark:
|
|
991
|
+
readonly accent: {
|
|
992
|
+
readonly light: "#fef6fc";
|
|
993
|
+
readonly dark: "#651053";
|
|
989
994
|
};
|
|
990
|
-
brand: {
|
|
991
|
-
default: {
|
|
992
|
-
light:
|
|
993
|
-
dark:
|
|
994
|
-
hover: {
|
|
995
|
-
light:
|
|
996
|
-
dark:
|
|
995
|
+
readonly brand: {
|
|
996
|
+
readonly default: {
|
|
997
|
+
readonly light: "#f0f5ff";
|
|
998
|
+
readonly dark: "#01194c";
|
|
999
|
+
readonly hover: {
|
|
1000
|
+
readonly light: "#d7e4ff";
|
|
1001
|
+
readonly dark: "#023ab1";
|
|
997
1002
|
};
|
|
998
|
-
pressed: {
|
|
999
|
-
light:
|
|
1000
|
-
dark:
|
|
1003
|
+
readonly pressed: {
|
|
1004
|
+
readonly light: "#d7e4ff";
|
|
1005
|
+
readonly dark: "#023ab1";
|
|
1001
1006
|
};
|
|
1002
1007
|
};
|
|
1003
|
-
bold: {
|
|
1004
|
-
light:
|
|
1005
|
-
dark:
|
|
1006
|
-
hover: {
|
|
1007
|
-
light:
|
|
1008
|
-
dark:
|
|
1008
|
+
readonly bold: {
|
|
1009
|
+
readonly light: "#1c65fd";
|
|
1010
|
+
readonly dark: "#1c65fd";
|
|
1011
|
+
readonly hover: {
|
|
1012
|
+
readonly light: "#024be3";
|
|
1013
|
+
readonly dark: "#024be3";
|
|
1009
1014
|
};
|
|
1010
|
-
pressed: {
|
|
1011
|
-
light:
|
|
1012
|
-
dark:
|
|
1015
|
+
readonly pressed: {
|
|
1016
|
+
readonly light: "#023ab1";
|
|
1017
|
+
readonly dark: "#023ab1";
|
|
1013
1018
|
};
|
|
1014
1019
|
};
|
|
1015
1020
|
};
|
|
1016
1021
|
};
|
|
1017
|
-
surface: {
|
|
1018
|
-
overlay: {
|
|
1019
|
-
light:
|
|
1020
|
-
dark:
|
|
1022
|
+
readonly surface: {
|
|
1023
|
+
readonly overlay: {
|
|
1024
|
+
readonly light: "#f0f5ff";
|
|
1025
|
+
readonly dark: "#171b21";
|
|
1021
1026
|
};
|
|
1022
|
-
risen: {
|
|
1023
|
-
light:
|
|
1024
|
-
dark:
|
|
1027
|
+
readonly risen: {
|
|
1028
|
+
readonly light: "#ffffff";
|
|
1029
|
+
readonly dark: "#2c333f";
|
|
1025
1030
|
};
|
|
1026
|
-
default: {
|
|
1027
|
-
light:
|
|
1028
|
-
dark:
|
|
1031
|
+
readonly default: {
|
|
1032
|
+
readonly light: "#fafcff";
|
|
1033
|
+
readonly dark: "#171b21";
|
|
1029
1034
|
};
|
|
1030
|
-
sunken: {
|
|
1031
|
-
light:
|
|
1032
|
-
dark:
|
|
1035
|
+
readonly sunken: {
|
|
1036
|
+
readonly light: "#c6ccd7";
|
|
1037
|
+
readonly dark: "#56647b";
|
|
1033
1038
|
};
|
|
1034
1039
|
};
|
|
1035
|
-
border: {
|
|
1036
|
-
neutral: {
|
|
1037
|
-
default: {
|
|
1038
|
-
light:
|
|
1039
|
-
dark:
|
|
1040
|
+
readonly border: {
|
|
1041
|
+
readonly neutral: {
|
|
1042
|
+
readonly default: {
|
|
1043
|
+
readonly light: "#56647b";
|
|
1044
|
+
readonly dark: "#c6ccd7";
|
|
1040
1045
|
};
|
|
1041
|
-
subtle: {
|
|
1042
|
-
light:
|
|
1043
|
-
dark:
|
|
1046
|
+
readonly subtle: {
|
|
1047
|
+
readonly light: "#a8b2c2";
|
|
1048
|
+
readonly dark: "#6c7d98";
|
|
1044
1049
|
};
|
|
1045
|
-
subtlest: {
|
|
1046
|
-
light:
|
|
1047
|
-
dark:
|
|
1050
|
+
readonly subtlest: {
|
|
1051
|
+
readonly light: "#e4e7ec";
|
|
1052
|
+
readonly dark: "#56647b";
|
|
1048
1053
|
};
|
|
1049
1054
|
};
|
|
1050
|
-
disabled: {
|
|
1051
|
-
light:
|
|
1052
|
-
dark:
|
|
1055
|
+
readonly disabled: {
|
|
1056
|
+
readonly light: "#c6ccd7";
|
|
1057
|
+
readonly dark: "#56647b";
|
|
1053
1058
|
};
|
|
1054
|
-
success: {
|
|
1055
|
-
light:
|
|
1056
|
-
dark:
|
|
1059
|
+
readonly success: {
|
|
1060
|
+
readonly light: "#2e9721";
|
|
1061
|
+
readonly dark: "#2e9721";
|
|
1057
1062
|
};
|
|
1058
|
-
warning: {
|
|
1059
|
-
light:
|
|
1060
|
-
dark:
|
|
1063
|
+
readonly warning: {
|
|
1064
|
+
readonly light: "#b17902";
|
|
1065
|
+
readonly dark: "#b17902";
|
|
1061
1066
|
};
|
|
1062
|
-
error: {
|
|
1063
|
-
light:
|
|
1064
|
-
dark:
|
|
1067
|
+
readonly error: {
|
|
1068
|
+
readonly light: "#ca2e21";
|
|
1069
|
+
readonly dark: "#dc3628";
|
|
1065
1070
|
};
|
|
1066
|
-
promo: {
|
|
1067
|
-
light:
|
|
1068
|
-
dark:
|
|
1071
|
+
readonly promo: {
|
|
1072
|
+
readonly light: "#a58b4b";
|
|
1073
|
+
readonly dark: "#a58b4b";
|
|
1069
1074
|
};
|
|
1070
|
-
brand: {
|
|
1071
|
-
bold: {
|
|
1072
|
-
light:
|
|
1073
|
-
dark:
|
|
1075
|
+
readonly brand: {
|
|
1076
|
+
readonly bold: {
|
|
1077
|
+
readonly light: "#024be3";
|
|
1078
|
+
readonly dark: "#024be3";
|
|
1074
1079
|
};
|
|
1075
|
-
default: {
|
|
1076
|
-
light:
|
|
1077
|
-
dark:
|
|
1080
|
+
readonly default: {
|
|
1081
|
+
readonly light: "#1c65fd";
|
|
1082
|
+
readonly dark: "#1c65fd";
|
|
1078
1083
|
};
|
|
1079
|
-
subtle: {
|
|
1080
|
-
light:
|
|
1081
|
-
dark:
|
|
1084
|
+
readonly subtle: {
|
|
1085
|
+
readonly light: "#81a9fe";
|
|
1086
|
+
readonly dark: "#1c65fd";
|
|
1082
1087
|
};
|
|
1083
|
-
subtlest: {
|
|
1084
|
-
light:
|
|
1085
|
-
dark:
|
|
1088
|
+
readonly subtlest: {
|
|
1089
|
+
readonly light: "#d7e4ff";
|
|
1090
|
+
readonly dark: "#023ab1";
|
|
1086
1091
|
};
|
|
1087
1092
|
};
|
|
1088
|
-
inverse: {
|
|
1089
|
-
light:
|
|
1090
|
-
dark:
|
|
1093
|
+
readonly inverse: {
|
|
1094
|
+
readonly light: "rgba(255, 255, 255, 0.1000)";
|
|
1095
|
+
readonly dark: "rgba(255, 255, 255, 0.1000)";
|
|
1091
1096
|
};
|
|
1092
|
-
accent: {
|
|
1093
|
-
light:
|
|
1094
|
-
dark:
|
|
1097
|
+
readonly accent: {
|
|
1098
|
+
readonly light: "#fae0f5";
|
|
1099
|
+
readonly dark: "#911777";
|
|
1095
1100
|
};
|
|
1096
1101
|
};
|
|
1097
|
-
icon: {
|
|
1098
|
-
bg: {
|
|
1099
|
-
light:
|
|
1100
|
-
dark:
|
|
1102
|
+
readonly icon: {
|
|
1103
|
+
readonly bg: {
|
|
1104
|
+
readonly light: "#ffffff";
|
|
1105
|
+
readonly dark: "rgba(255, 255, 255, 0.0000)";
|
|
1101
1106
|
};
|
|
1102
|
-
brand: {
|
|
1103
|
-
light:
|
|
1104
|
-
dark:
|
|
1107
|
+
readonly brand: {
|
|
1108
|
+
readonly light: "#1c65fd";
|
|
1109
|
+
readonly dark: "#a8b2c2";
|
|
1105
1110
|
};
|
|
1106
|
-
neutral: {
|
|
1107
|
-
light:
|
|
1108
|
-
dark:
|
|
1111
|
+
readonly neutral: {
|
|
1112
|
+
readonly light: "#56647b";
|
|
1113
|
+
readonly dark: "#a8b2c2";
|
|
1109
1114
|
};
|
|
1110
|
-
inverse: {
|
|
1111
|
-
light:
|
|
1112
|
-
dark:
|
|
1115
|
+
readonly inverse: {
|
|
1116
|
+
readonly light: "#ffffff";
|
|
1117
|
+
readonly dark: "#000000";
|
|
1113
1118
|
};
|
|
1114
|
-
disabled: {
|
|
1115
|
-
light:
|
|
1116
|
-
dark:
|
|
1119
|
+
readonly disabled: {
|
|
1120
|
+
readonly light: "#c6ccd7";
|
|
1121
|
+
readonly dark: "#ffffff";
|
|
1117
1122
|
};
|
|
1118
|
-
error: {
|
|
1119
|
-
light:
|
|
1120
|
-
dark:
|
|
1123
|
+
readonly error: {
|
|
1124
|
+
readonly light: "#dc3628";
|
|
1125
|
+
readonly dark: "#dc3628";
|
|
1121
1126
|
};
|
|
1122
1127
|
};
|
|
1123
|
-
shadow: {
|
|
1124
|
-
buttonFocus:
|
|
1125
|
-
cards:
|
|
1126
|
-
ultraStrongBlueLg:
|
|
1127
|
-
strongBlueMd:
|
|
1128
|
+
readonly shadow: {
|
|
1129
|
+
readonly buttonFocus: "0px 0px 0px 2px #FFF, 0px 0px 0px 5px #024BE3";
|
|
1130
|
+
readonly cards: "0px 1px 40px 0px rgba(0, 0, 0, 0.05)";
|
|
1131
|
+
readonly ultraStrongBlueLg: "0px 4px 25px 0px rgba(28, 101, 253, 0.08), 0px 4px 4px 0px rgba(28, 101, 253, 0.04)";
|
|
1132
|
+
readonly strongBlueMd: "0px 4px 4px 0px rgba(28, 101, 253, 0.02), 0px 4px 25px 0px rgba(28, 101, 253, 0.06)";
|
|
1128
1133
|
};
|
|
1129
|
-
focus: {
|
|
1130
|
-
light:
|
|
1131
|
-
dark:
|
|
1134
|
+
readonly focus: {
|
|
1135
|
+
readonly light: "#024be3";
|
|
1136
|
+
readonly dark: "#024be3";
|
|
1132
1137
|
};
|
|
1133
1138
|
};
|
|
1134
|
-
font: {
|
|
1135
|
-
size: {
|
|
1136
|
-
heading: {
|
|
1137
|
-
h1: {
|
|
1138
|
-
desktop:
|
|
1139
|
-
mobile:
|
|
1139
|
+
readonly font: {
|
|
1140
|
+
readonly size: {
|
|
1141
|
+
readonly heading: {
|
|
1142
|
+
readonly h1: {
|
|
1143
|
+
readonly desktop: "4rem";
|
|
1144
|
+
readonly mobile: "2rem";
|
|
1140
1145
|
};
|
|
1141
|
-
h2: {
|
|
1142
|
-
desktop:
|
|
1143
|
-
mobile:
|
|
1146
|
+
readonly h2: {
|
|
1147
|
+
readonly desktop: "2.625rem";
|
|
1148
|
+
readonly mobile: "2rem";
|
|
1144
1149
|
};
|
|
1145
|
-
h3: {
|
|
1146
|
-
desktop:
|
|
1147
|
-
mobile:
|
|
1150
|
+
readonly h3: {
|
|
1151
|
+
readonly desktop: "2rem";
|
|
1152
|
+
readonly mobile: "1.5rem";
|
|
1148
1153
|
};
|
|
1149
|
-
h4: {
|
|
1150
|
-
desktop:
|
|
1151
|
-
mobile:
|
|
1154
|
+
readonly h4: {
|
|
1155
|
+
readonly desktop: "1.5rem";
|
|
1156
|
+
readonly mobile: "1.125rem";
|
|
1152
1157
|
};
|
|
1153
|
-
h5: {
|
|
1154
|
-
desktop:
|
|
1155
|
-
mobile:
|
|
1158
|
+
readonly h5: {
|
|
1159
|
+
readonly desktop: "1.125rem";
|
|
1160
|
+
readonly mobile: "1.125rem";
|
|
1156
1161
|
};
|
|
1157
1162
|
};
|
|
1158
|
-
body: {
|
|
1159
|
-
xs:
|
|
1160
|
-
sm:
|
|
1161
|
-
md:
|
|
1162
|
-
lg:
|
|
1163
|
+
readonly body: {
|
|
1164
|
+
readonly xs: "12px";
|
|
1165
|
+
readonly sm: "14px";
|
|
1166
|
+
readonly md: "16px";
|
|
1167
|
+
readonly lg: "18px";
|
|
1163
1168
|
};
|
|
1164
1169
|
};
|
|
1165
|
-
lineHeight: {
|
|
1166
|
-
heading: {
|
|
1167
|
-
h1: {
|
|
1168
|
-
desktop:
|
|
1169
|
-
mobile:
|
|
1170
|
+
readonly lineHeight: {
|
|
1171
|
+
readonly heading: {
|
|
1172
|
+
readonly h1: {
|
|
1173
|
+
readonly desktop: "4.375rem";
|
|
1174
|
+
readonly mobile: "2.5rem";
|
|
1170
1175
|
};
|
|
1171
|
-
h2: {
|
|
1172
|
-
desktop:
|
|
1173
|
-
mobile:
|
|
1176
|
+
readonly h2: {
|
|
1177
|
+
readonly desktop: "3.375rem";
|
|
1178
|
+
readonly mobile: "2.5rem";
|
|
1174
1179
|
};
|
|
1175
|
-
h3: {
|
|
1176
|
-
desktop:
|
|
1177
|
-
mobile:
|
|
1180
|
+
readonly h3: {
|
|
1181
|
+
readonly desktop: "2.5rem";
|
|
1182
|
+
readonly mobile: "2rem";
|
|
1178
1183
|
};
|
|
1179
|
-
h4: {
|
|
1180
|
-
desktop:
|
|
1181
|
-
mobile:
|
|
1184
|
+
readonly h4: {
|
|
1185
|
+
readonly desktop: "2rem";
|
|
1186
|
+
readonly mobile: "1.5rem";
|
|
1182
1187
|
};
|
|
1183
|
-
h5: {
|
|
1184
|
-
desktop:
|
|
1185
|
-
mobile:
|
|
1188
|
+
readonly h5: {
|
|
1189
|
+
readonly desktop: "1.5rem";
|
|
1190
|
+
readonly mobile: "1.5rem";
|
|
1186
1191
|
};
|
|
1187
1192
|
};
|
|
1188
|
-
body: {
|
|
1189
|
-
lg:
|
|
1190
|
-
md:
|
|
1191
|
-
sm:
|
|
1192
|
-
xs:
|
|
1193
|
+
readonly body: {
|
|
1194
|
+
readonly lg: "28px";
|
|
1195
|
+
readonly md: "24px";
|
|
1196
|
+
readonly sm: "20px";
|
|
1197
|
+
readonly xs: "16px";
|
|
1193
1198
|
};
|
|
1194
1199
|
};
|
|
1195
|
-
weight: {
|
|
1196
|
-
thin:
|
|
1197
|
-
extraLight:
|
|
1198
|
-
light:
|
|
1199
|
-
normal:
|
|
1200
|
-
medium:
|
|
1201
|
-
semiBold:
|
|
1202
|
-
bold:
|
|
1203
|
-
extraBold:
|
|
1204
|
-
heavy:
|
|
1205
|
-
ultra:
|
|
1200
|
+
readonly weight: {
|
|
1201
|
+
readonly thin: 100;
|
|
1202
|
+
readonly extraLight: 200;
|
|
1203
|
+
readonly light: 300;
|
|
1204
|
+
readonly normal: 400;
|
|
1205
|
+
readonly medium: 500;
|
|
1206
|
+
readonly semiBold: 600;
|
|
1207
|
+
readonly bold: 700;
|
|
1208
|
+
readonly extraBold: 800;
|
|
1209
|
+
readonly heavy: 900;
|
|
1210
|
+
readonly ultra: 950;
|
|
1206
1211
|
};
|
|
1207
|
-
letterSpacing: {
|
|
1208
|
-
heading: {
|
|
1209
|
-
h1: {
|
|
1210
|
-
desktop:
|
|
1211
|
-
mobile:
|
|
1212
|
+
readonly letterSpacing: {
|
|
1213
|
+
readonly heading: {
|
|
1214
|
+
readonly h1: {
|
|
1215
|
+
readonly desktop: "-1.28px";
|
|
1216
|
+
readonly mobile: "-1px";
|
|
1212
1217
|
};
|
|
1213
|
-
h2: {
|
|
1214
|
-
desktop:
|
|
1215
|
-
mobile:
|
|
1218
|
+
readonly h2: {
|
|
1219
|
+
readonly desktop: "-1px";
|
|
1220
|
+
readonly mobile: "-1px";
|
|
1216
1221
|
};
|
|
1217
|
-
h3: {
|
|
1218
|
-
desktop:
|
|
1219
|
-
mobile:
|
|
1222
|
+
readonly h3: {
|
|
1223
|
+
readonly desktop: "-1px";
|
|
1224
|
+
readonly mobile: "0";
|
|
1220
1225
|
};
|
|
1221
|
-
h4: {
|
|
1222
|
-
desktop:
|
|
1223
|
-
mobile:
|
|
1226
|
+
readonly h4: {
|
|
1227
|
+
readonly desktop: "0";
|
|
1228
|
+
readonly mobile: "0";
|
|
1224
1229
|
};
|
|
1225
|
-
h5: {
|
|
1226
|
-
desktop:
|
|
1227
|
-
mobile:
|
|
1230
|
+
readonly h5: {
|
|
1231
|
+
readonly desktop: "0";
|
|
1232
|
+
readonly mobile: "0";
|
|
1228
1233
|
};
|
|
1229
1234
|
};
|
|
1230
|
-
body: {
|
|
1231
|
-
lg:
|
|
1232
|
-
md:
|
|
1233
|
-
sm:
|
|
1234
|
-
xs:
|
|
1235
|
+
readonly body: {
|
|
1236
|
+
readonly lg: "0";
|
|
1237
|
+
readonly md: "0";
|
|
1238
|
+
readonly sm: "-0.2px";
|
|
1239
|
+
readonly xs: "-0.2px";
|
|
1235
1240
|
};
|
|
1236
1241
|
};
|
|
1237
1242
|
};
|
|
1238
|
-
spacing: {
|
|
1239
|
-
xxs:
|
|
1240
|
-
xs:
|
|
1241
|
-
sm:
|
|
1242
|
-
md:
|
|
1243
|
-
lg:
|
|
1244
|
-
xl:
|
|
1245
|
-
xxl:
|
|
1246
|
-
xxxl:
|
|
1247
|
-
xxxxl:
|
|
1248
|
-
xxxxxl:
|
|
1243
|
+
readonly spacing: {
|
|
1244
|
+
readonly xxs: "4px";
|
|
1245
|
+
readonly xs: "8px";
|
|
1246
|
+
readonly sm: "12px";
|
|
1247
|
+
readonly md: "16px";
|
|
1248
|
+
readonly lg: "24px";
|
|
1249
|
+
readonly xl: "32px";
|
|
1250
|
+
readonly xxl: "40px";
|
|
1251
|
+
readonly xxxl: "48px";
|
|
1252
|
+
readonly xxxxl: "56px";
|
|
1253
|
+
readonly xxxxxl: "64px";
|
|
1249
1254
|
};
|
|
1250
|
-
borderRadius: {
|
|
1251
|
-
xxs:
|
|
1252
|
-
xs:
|
|
1253
|
-
sm:
|
|
1254
|
-
md:
|
|
1255
|
-
lg:
|
|
1256
|
-
xl:
|
|
1257
|
-
full:
|
|
1255
|
+
readonly borderRadius: {
|
|
1256
|
+
readonly xxs: "4px";
|
|
1257
|
+
readonly xs: "8px";
|
|
1258
|
+
readonly sm: "12px";
|
|
1259
|
+
readonly md: "16px";
|
|
1260
|
+
readonly lg: "24px";
|
|
1261
|
+
readonly xl: "32px";
|
|
1262
|
+
readonly full: "9999px";
|
|
1258
1263
|
};
|
|
1259
|
-
shadow: {
|
|
1260
|
-
box: {
|
|
1261
|
-
sm:
|
|
1262
|
-
md:
|
|
1263
|
-
lg:
|
|
1264
|
+
readonly shadow: {
|
|
1265
|
+
readonly box: {
|
|
1266
|
+
readonly sm: "0px 0px 8px 0px rgba(28, 101, 253, 0.06), 0px 1px 1px 0px rgba(28, 101, 253, 0.02)";
|
|
1267
|
+
readonly md: "0px 4px 25px 0px rgba(28, 101, 253, 0.06), 0px 4px 4px 0px rgba(28, 101, 253, 0.02)";
|
|
1268
|
+
readonly lg: "0px 4px 25px 0px rgba(28, 101, 253, 0.08), 0px 4px 4px 0px rgba(28, 101, 253, 0.04)";
|
|
1264
1269
|
};
|
|
1265
|
-
border: {
|
|
1266
|
-
sm:
|
|
1270
|
+
readonly border: {
|
|
1271
|
+
readonly sm: "0px 1px 2px 0px rgba(16, 24, 40, 0.06), 0px 1px 3px 0px rgba(16, 24, 40, 0.10)";
|
|
1267
1272
|
};
|
|
1268
1273
|
};
|
|
1269
|
-
container: {
|
|
1270
|
-
xl:
|
|
1274
|
+
readonly container: {
|
|
1275
|
+
readonly xl: "1200px";
|
|
1271
1276
|
};
|
|
1272
|
-
breakpoints: {
|
|
1273
|
-
xs:
|
|
1274
|
-
sm:
|
|
1275
|
-
md:
|
|
1276
|
-
lg:
|
|
1277
|
-
xl:
|
|
1278
|
-
xxl:
|
|
1277
|
+
readonly breakpoints: {
|
|
1278
|
+
readonly xs: "375px";
|
|
1279
|
+
readonly sm: "576px";
|
|
1280
|
+
readonly md: "768px";
|
|
1281
|
+
readonly lg: "992px";
|
|
1282
|
+
readonly xl: "1280px";
|
|
1283
|
+
readonly xxl: "1920px";
|
|
1279
1284
|
};
|
|
1280
1285
|
};
|
|
1281
1286
|
|
|
1282
|
-
export { AsyncSelect, Button, type ButtonProps, ButtonSize, ButtonStyle, ButtonType, CalculatorResult, CalculatorResultBox, type CalculatorResultBoxModal, type CalculatorResultBoxProps, type CalculatorResultProps, Checkbox, type CheckboxLabel, CheckboxPosition, type CheckboxProps, type ChooseColor, ColorScheme, type ColorSchemeObject, DatePicker, type DatePickerProps, EmailInput, type EmailInputProps, FieldWrapper, type FieldWrapperValues, _default as FormattedAmount, FormattedHtmlMessage, type FormattedHtmlMessageProps, FormattedMessage, type FormattedMessageProps, type FormattedMessageTypes, _default$1 as FormattedPercentage, GapSize, type GetColor, IconProduct, IconProductSize, IconProductType, IconSystem, IconSystemSize, IconSystemType, TooltipInfoConditional as InfoConditional, Infobox, type InfoboxProps, InfoboxSize, InfoboxVariant, InputBase, type InputBaseProps, InputLabel, type InputLabelProps, InputSize, Loader, LoaderOverlayBox, type LoaderOverlayBoxProps, type LoaderProps, LoaderSize, MediaType, Modal, type ModalOnClose, type ModalProps, PhoneInput, type PhoneInputProps, Radio, type RadioBaseWithLabelProps, RadioButton, type RadioButtonLabel, type RadioButtonProps, RadioButtonsHorizontal, type RadioButtonsHorizontalItem, type RadioButtonsHorizontalLabel, type RadioButtonsHorizontalProps, type RadioLabel, RadioPosition, ReasonForClosing, SearchInput, type SearchInputProps, Select, SelectBase, SelectField, type SelectOption, type SelectProps, type SingleValue, Slider, type SliderBreakpoint, SliderInput, type SliderInputLabel, type SliderInputMinMax, type SliderInputProps, type SliderProps, SliderStepType, type SliderSteps, Stack, StackDirection, type StackProps, Table, TableBody, TableData, TableHead, TableHeadData, TableRow, TableVariant, Tabs, TabsItem, TextArea, type TextAreaProps, TextInput, type TextInputProps, Toggle, type ToggleProps, type TooltipFloatingElement, TooltipGeneral, type TooltipGeneralProps, TooltipInfo, type TooltipInfoConditionalProps, TooltipInfoDisplayMethod, TooltipInfoDisplayableCheck, type TooltipInfoDisplayableCheckProps, type TooltipInfoProps, type TooltipParentElement, type TooltipParentElementProps, TooltipPlacement, TrailingTextInput, type TrailingTextInputProps, Typography, type TypographyProps, TypographyTextAlign, TypographyVariant, TypographyWeight, getColor, theme, useColorScheme, useCreateTooltipFloatingElement, useFormatAmount, useFormattedPercentage, useIsMessageDisplayable };
|
|
1287
|
+
export { AsyncSelect, Button, type ButtonProps, ButtonSize, ButtonStyle, ButtonType, CalculatorResult, CalculatorResultBox, type CalculatorResultBoxModal, type CalculatorResultBoxProps, type CalculatorResultProps, Checkbox, type CheckboxLabel, CheckboxPosition, type CheckboxProps, type ChooseColor, ColorScheme, type ColorSchemeObject, DatePicker, type DatePickerProps, EmailInput, type EmailInputProps, FieldWrapper, type FieldWrapperValues, _default as FormattedAmount, FormattedHtmlMessage, type FormattedHtmlMessageProps, FormattedMessage, type FormattedMessageProps, type FormattedMessageTypes, _default$1 as FormattedPercentage, GapSize, type GetColor, IconProduct, IconProductSize, IconProductType, IconSystem, IconSystemSize, IconSystemType, TooltipInfoConditional as InfoConditional, Infobox, type InfoboxProps, InfoboxSize, InfoboxVariant, InputBase, type InputBaseProps, InputLabel, type InputLabelProps, InputSize, Loader, LoaderOverlayBox, type LoaderOverlayBoxProps, type LoaderProps, LoaderSize, MediaType, Modal, type ModalOnClose, type ModalProps, PhoneInput, type PhoneInputProps, Radio, type RadioBaseWithLabelProps, RadioButton, type RadioButtonLabel, type RadioButtonProps, RadioButtonsHorizontal, type RadioButtonsHorizontalItem, type RadioButtonsHorizontalLabel, type RadioButtonsHorizontalProps, type RadioLabel, RadioPosition, ReasonForClosing, SearchInput, type SearchInputProps, Select, SelectBase, SelectField, type SelectOption, type SelectProps, type SingleValue, Slider, type SliderBreakpoint, SliderInput, type SliderInputLabel, type SliderInputMinMax, type SliderInputProps, type SliderProps, SliderStepType, type SliderSteps, Stack, StackDirection, type StackProps, type TabItemType, Table, TableBody, TableData, TableHead, TableHeadData, TableRow, TableVariant, Tabs, TabsItem, type TabsProps, type TabsType, TabsVariant, TextArea, type TextAreaProps, TextInput, type TextInputProps, Toggle, type ToggleProps, type TooltipFloatingElement, TooltipGeneral, type TooltipGeneralProps, TooltipInfo, type TooltipInfoConditionalProps, TooltipInfoDisplayMethod, TooltipInfoDisplayableCheck, type TooltipInfoDisplayableCheckProps, type TooltipInfoProps, type TooltipParentElement, type TooltipParentElementProps, TooltipPlacement, TrailingTextInput, type TrailingTextInputProps, Typography, type TypographyProps, TypographyTextAlign, TypographyVariant, TypographyWeight, getColor, theme, useColorScheme, useCreateTooltipFloatingElement, useFormatAmount, useFormattedPercentage, useIsMessageDisplayable };
|