@mmb-digital/design-system-web 0.1.335 → 0.1.337
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 +10 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +26 -24
- package/dist/index.esm.js +6 -6
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -476,7 +476,7 @@ declare enum Spacing {
|
|
|
476
476
|
xxxxl = "xxxxl",
|
|
477
477
|
xxxxxl = "xxxxxl"
|
|
478
478
|
}
|
|
479
|
-
declare const resolveSpacingValue: (theme: Theme$1, spacing: Spacing) => "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "40px" | "48px" | "56px" | "64px"
|
|
479
|
+
declare const resolveSpacingValue: (theme: Theme$1, spacing: Spacing) => "0" | "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "40px" | "48px" | "56px" | "64px";
|
|
480
480
|
|
|
481
481
|
declare enum WhiteSpace {
|
|
482
482
|
inherit = "inherit",
|
|
@@ -1059,7 +1059,7 @@ declare enum BorderRadius {
|
|
|
1059
1059
|
xl = "xl",
|
|
1060
1060
|
full = "full"
|
|
1061
1061
|
}
|
|
1062
|
-
declare const resolveBorderRadiusValue: (theme: Theme$1, borderRadius: BorderRadius) => "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "9999px"
|
|
1062
|
+
declare const resolveBorderRadiusValue: (theme: Theme$1, borderRadius: BorderRadius) => "0" | "4px" | "8px" | "12px" | "16px" | "24px" | "32px" | "9999px";
|
|
1063
1063
|
|
|
1064
1064
|
declare enum FlexWrap {
|
|
1065
1065
|
noWrap = "noWrap",
|
|
@@ -1165,6 +1165,7 @@ declare enum IconProductType {
|
|
|
1165
1165
|
check = "check",
|
|
1166
1166
|
coinsStack = "coinsStack",
|
|
1167
1167
|
creditCard = "creditCard",
|
|
1168
|
+
graphIncrease = "graphIncrease",
|
|
1168
1169
|
helpChat = "helpChat",
|
|
1169
1170
|
houseRefresh = "houseRefresh",
|
|
1170
1171
|
information = "information",
|
|
@@ -1174,6 +1175,7 @@ declare enum IconProductType {
|
|
|
1174
1175
|
moneta = "moneta",
|
|
1175
1176
|
moneyBag = "moneyBag",
|
|
1176
1177
|
passwordLock = "passwordLock",
|
|
1178
|
+
people = "people",
|
|
1177
1179
|
piggyBank = "piggyBank",
|
|
1178
1180
|
reward = "reward",
|
|
1179
1181
|
shieldCheck = "shieldCheck",
|
|
@@ -1715,11 +1717,11 @@ interface RadioGroupControlProps extends FieldControlProps, DesignSystemBaseProp
|
|
|
1715
1717
|
declare const RadioGroupControl: React__default.ForwardRefExoticComponent<RadioGroupControlProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1716
1718
|
|
|
1717
1719
|
declare const RadioGroup: React__default.ForwardRefExoticComponent<Omit<RadioGroupControlProps & {
|
|
1718
|
-
colorScheme?: ColorScheme | undefined;
|
|
1719
|
-
mediaType?: MediaType | undefined;
|
|
1720
1720
|
label?: React__default.ReactNode;
|
|
1721
1721
|
name?: string | undefined;
|
|
1722
1722
|
invalid?: boolean | undefined;
|
|
1723
|
+
colorScheme?: ColorScheme | undefined;
|
|
1724
|
+
mediaType?: MediaType | undefined;
|
|
1723
1725
|
addons?: FieldAddon[] | undefined;
|
|
1724
1726
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1725
1727
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1787,11 +1789,11 @@ interface RadioButtonGroupControlProps extends DesignSystemBaseProps, FieldContr
|
|
|
1787
1789
|
declare const RadioButtonGroupControl: React__default.ForwardRefExoticComponent<RadioButtonGroupControlProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1788
1790
|
|
|
1789
1791
|
declare const RadioButtonGroup: React__default.ForwardRefExoticComponent<Omit<RadioButtonGroupControlProps & {
|
|
1790
|
-
colorScheme?: ColorScheme | undefined;
|
|
1791
|
-
mediaType?: MediaType | undefined;
|
|
1792
1792
|
label?: React__default.ReactNode;
|
|
1793
1793
|
name?: string | undefined;
|
|
1794
1794
|
invalid?: boolean | undefined;
|
|
1795
|
+
colorScheme?: ColorScheme | undefined;
|
|
1796
|
+
mediaType?: MediaType | undefined;
|
|
1795
1797
|
addons?: FieldAddon[] | undefined;
|
|
1796
1798
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1797
1799
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1820,11 +1822,11 @@ declare const RadioButtonGroupField: (props: RadioButtonGroupFieldProps) => Reac
|
|
|
1820
1822
|
interface TextAreaControlProps extends TextareaHTMLAttributes<HTMLTextAreaElement>, FieldControlProps {
|
|
1821
1823
|
}
|
|
1822
1824
|
declare const TextArea: React__default.ForwardRefExoticComponent<TextAreaControlProps & {
|
|
1823
|
-
colorScheme?: ColorScheme | undefined;
|
|
1824
|
-
mediaType?: MediaType | undefined;
|
|
1825
1825
|
label?: React__default.ReactNode;
|
|
1826
1826
|
name?: string | undefined;
|
|
1827
1827
|
invalid?: boolean | undefined;
|
|
1828
|
+
colorScheme?: ColorScheme | undefined;
|
|
1829
|
+
mediaType?: MediaType | undefined;
|
|
1828
1830
|
addons?: FieldAddon[] | undefined;
|
|
1829
1831
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1830
1832
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1906,11 +1908,11 @@ interface EmailInputControlProps extends InputProps {
|
|
|
1906
1908
|
placeholder?: string;
|
|
1907
1909
|
}
|
|
1908
1910
|
declare const EmailInput: React__default.ForwardRefExoticComponent<EmailInputControlProps & {
|
|
1909
|
-
colorScheme?: ColorScheme | undefined;
|
|
1910
|
-
mediaType?: MediaType | undefined;
|
|
1911
1911
|
label?: React__default.ReactNode;
|
|
1912
1912
|
name?: string | undefined;
|
|
1913
1913
|
invalid?: boolean | undefined;
|
|
1914
|
+
colorScheme?: ColorScheme | undefined;
|
|
1915
|
+
mediaType?: MediaType | undefined;
|
|
1914
1916
|
addons?: FieldAddon[] | undefined;
|
|
1915
1917
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1916
1918
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1944,11 +1946,11 @@ interface MaskedInputBaseProps extends InputBaseProps {
|
|
|
1944
1946
|
declare const MaskedInputBase: React__default.ForwardRefExoticComponent<Omit<MaskedInputBaseProps, "ref"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1945
1947
|
|
|
1946
1948
|
declare const MaskedInput: React.ForwardRefExoticComponent<Omit<MaskedInputBaseProps & {
|
|
1947
|
-
colorScheme?: ColorScheme | undefined;
|
|
1948
|
-
mediaType?: MediaType | undefined;
|
|
1949
1949
|
label?: React.ReactNode;
|
|
1950
1950
|
name?: string | undefined;
|
|
1951
1951
|
invalid?: boolean | undefined;
|
|
1952
|
+
colorScheme?: ColorScheme | undefined;
|
|
1953
|
+
mediaType?: MediaType | undefined;
|
|
1952
1954
|
addons?: FieldAddon[] | undefined;
|
|
1953
1955
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1954
1956
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1974,11 +1976,11 @@ declare const withMaskedInputField: <TProps extends ManagedMaskedInputProps>(Com
|
|
|
1974
1976
|
options?: RegisterOptions<TFieldValues>;
|
|
1975
1977
|
}) => React__default.JSX.Element;
|
|
1976
1978
|
declare const MaskedInputField: <TFieldValues extends FieldValues>(props: Omit<MaskedInputBaseProps & {
|
|
1977
|
-
colorScheme?: ColorScheme | undefined;
|
|
1978
|
-
mediaType?: MediaType | undefined;
|
|
1979
1979
|
label?: React__default.ReactNode;
|
|
1980
1980
|
name?: string | undefined;
|
|
1981
1981
|
invalid?: boolean | undefined;
|
|
1982
|
+
colorScheme?: ColorScheme | undefined;
|
|
1983
|
+
mediaType?: MediaType | undefined;
|
|
1982
1984
|
addons?: FieldAddon[] | undefined;
|
|
1983
1985
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1984
1986
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2034,11 +2036,11 @@ interface SearchInputControlProps extends InputProps {
|
|
|
2034
2036
|
placeholder?: string;
|
|
2035
2037
|
}
|
|
2036
2038
|
declare const SearchInput: React__default.ForwardRefExoticComponent<SearchInputControlProps & {
|
|
2037
|
-
colorScheme?: ColorScheme | undefined;
|
|
2038
|
-
mediaType?: MediaType | undefined;
|
|
2039
2039
|
label?: React__default.ReactNode;
|
|
2040
2040
|
name?: string | undefined;
|
|
2041
2041
|
invalid?: boolean | undefined;
|
|
2042
|
+
colorScheme?: ColorScheme | undefined;
|
|
2043
|
+
mediaType?: MediaType | undefined;
|
|
2042
2044
|
addons?: FieldAddon[] | undefined;
|
|
2043
2045
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2044
2046
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2144,11 +2146,11 @@ interface TextInputControlProps extends InputProps {
|
|
|
2144
2146
|
placeholder?: string;
|
|
2145
2147
|
}
|
|
2146
2148
|
declare const TextInput: React__default.ForwardRefExoticComponent<TextInputControlProps & {
|
|
2147
|
-
colorScheme?: ColorScheme | undefined;
|
|
2148
|
-
mediaType?: MediaType | undefined;
|
|
2149
2149
|
label?: React__default.ReactNode;
|
|
2150
2150
|
name?: string | undefined;
|
|
2151
2151
|
invalid?: boolean | undefined;
|
|
2152
|
+
colorScheme?: ColorScheme | undefined;
|
|
2153
|
+
mediaType?: MediaType | undefined;
|
|
2152
2154
|
addons?: FieldAddon[] | undefined;
|
|
2153
2155
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2154
2156
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2178,11 +2180,11 @@ interface TrailingTextInputControlProps extends InputProps {
|
|
|
2178
2180
|
suffix?: ReactNode;
|
|
2179
2181
|
}
|
|
2180
2182
|
declare const TrailingTextInput: React__default.ForwardRefExoticComponent<TrailingTextInputControlProps & {
|
|
2181
|
-
colorScheme?: ColorScheme | undefined;
|
|
2182
|
-
mediaType?: MediaType | undefined;
|
|
2183
2183
|
label?: React__default.ReactNode;
|
|
2184
2184
|
name?: string | undefined;
|
|
2185
2185
|
invalid?: boolean | undefined;
|
|
2186
|
+
colorScheme?: ColorScheme | undefined;
|
|
2187
|
+
mediaType?: MediaType | undefined;
|
|
2186
2188
|
addons?: FieldAddon[] | undefined;
|
|
2187
2189
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2188
2190
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2231,11 +2233,11 @@ interface DatePickerControlProps extends Pick<DatePickerProps$1, 'chooseDayAriaL
|
|
|
2231
2233
|
declare const DatePickerControl: React__default.ForwardRefExoticComponent<DatePickerControlProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
2232
2234
|
|
|
2233
2235
|
declare const DatePicker: React.ForwardRefExoticComponent<DatePickerControlProps & {
|
|
2234
|
-
colorScheme?: ColorScheme | undefined;
|
|
2235
|
-
mediaType?: MediaType | undefined;
|
|
2236
2236
|
label?: React.ReactNode;
|
|
2237
2237
|
name?: string | undefined;
|
|
2238
2238
|
invalid?: boolean | undefined;
|
|
2239
|
+
colorScheme?: ColorScheme | undefined;
|
|
2240
|
+
mediaType?: MediaType | undefined;
|
|
2239
2241
|
addons?: FieldAddon[] | undefined;
|
|
2240
2242
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2241
2243
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2732,11 +2734,11 @@ interface FileInputControlProps extends FileInputSettings, DesignSystemBaseProps
|
|
|
2732
2734
|
declare const FileInputControl: React__default.ForwardRefExoticComponent<FileInputControlProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2733
2735
|
|
|
2734
2736
|
declare const FileInput: React__default.ForwardRefExoticComponent<Omit<FileInputControlProps & {
|
|
2735
|
-
colorScheme?: ColorScheme | undefined;
|
|
2736
|
-
mediaType?: MediaType | undefined;
|
|
2737
2737
|
label?: React__default.ReactNode;
|
|
2738
2738
|
name?: string | undefined;
|
|
2739
2739
|
invalid?: boolean | undefined;
|
|
2740
|
+
colorScheme?: ColorScheme | undefined;
|
|
2741
|
+
mediaType?: MediaType | undefined;
|
|
2740
2742
|
addons?: FieldAddon[] | undefined;
|
|
2741
2743
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2742
2744
|
controlSectionWidth?: csstype.Property.Width | undefined;
|