@mmb-digital/design-system-web 0.1.337 → 0.1.339
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 +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +22 -22
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1717,11 +1717,11 @@ interface RadioGroupControlProps extends FieldControlProps, DesignSystemBaseProp
|
|
|
1717
1717
|
declare const RadioGroupControl: React__default.ForwardRefExoticComponent<RadioGroupControlProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1718
1718
|
|
|
1719
1719
|
declare const RadioGroup: React__default.ForwardRefExoticComponent<Omit<RadioGroupControlProps & {
|
|
1720
|
+
colorScheme?: ColorScheme | undefined;
|
|
1721
|
+
mediaType?: MediaType | undefined;
|
|
1720
1722
|
label?: React__default.ReactNode;
|
|
1721
1723
|
name?: string | undefined;
|
|
1722
1724
|
invalid?: boolean | undefined;
|
|
1723
|
-
colorScheme?: ColorScheme | undefined;
|
|
1724
|
-
mediaType?: MediaType | undefined;
|
|
1725
1725
|
addons?: FieldAddon[] | undefined;
|
|
1726
1726
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1727
1727
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1789,11 +1789,11 @@ interface RadioButtonGroupControlProps extends DesignSystemBaseProps, FieldContr
|
|
|
1789
1789
|
declare const RadioButtonGroupControl: React__default.ForwardRefExoticComponent<RadioButtonGroupControlProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1790
1790
|
|
|
1791
1791
|
declare const RadioButtonGroup: React__default.ForwardRefExoticComponent<Omit<RadioButtonGroupControlProps & {
|
|
1792
|
+
colorScheme?: ColorScheme | undefined;
|
|
1793
|
+
mediaType?: MediaType | undefined;
|
|
1792
1794
|
label?: React__default.ReactNode;
|
|
1793
1795
|
name?: string | undefined;
|
|
1794
1796
|
invalid?: boolean | undefined;
|
|
1795
|
-
colorScheme?: ColorScheme | undefined;
|
|
1796
|
-
mediaType?: MediaType | undefined;
|
|
1797
1797
|
addons?: FieldAddon[] | undefined;
|
|
1798
1798
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1799
1799
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1822,11 +1822,11 @@ declare const RadioButtonGroupField: (props: RadioButtonGroupFieldProps) => Reac
|
|
|
1822
1822
|
interface TextAreaControlProps extends TextareaHTMLAttributes<HTMLTextAreaElement>, FieldControlProps {
|
|
1823
1823
|
}
|
|
1824
1824
|
declare const TextArea: React__default.ForwardRefExoticComponent<TextAreaControlProps & {
|
|
1825
|
+
colorScheme?: ColorScheme | undefined;
|
|
1826
|
+
mediaType?: MediaType | undefined;
|
|
1825
1827
|
label?: React__default.ReactNode;
|
|
1826
1828
|
name?: string | undefined;
|
|
1827
1829
|
invalid?: boolean | undefined;
|
|
1828
|
-
colorScheme?: ColorScheme | undefined;
|
|
1829
|
-
mediaType?: MediaType | undefined;
|
|
1830
1830
|
addons?: FieldAddon[] | undefined;
|
|
1831
1831
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1832
1832
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1908,11 +1908,11 @@ interface EmailInputControlProps extends InputProps {
|
|
|
1908
1908
|
placeholder?: string;
|
|
1909
1909
|
}
|
|
1910
1910
|
declare const EmailInput: React__default.ForwardRefExoticComponent<EmailInputControlProps & {
|
|
1911
|
+
colorScheme?: ColorScheme | undefined;
|
|
1912
|
+
mediaType?: MediaType | undefined;
|
|
1911
1913
|
label?: React__default.ReactNode;
|
|
1912
1914
|
name?: string | undefined;
|
|
1913
1915
|
invalid?: boolean | undefined;
|
|
1914
|
-
colorScheme?: ColorScheme | undefined;
|
|
1915
|
-
mediaType?: MediaType | undefined;
|
|
1916
1916
|
addons?: FieldAddon[] | undefined;
|
|
1917
1917
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1918
1918
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1946,11 +1946,11 @@ interface MaskedInputBaseProps extends InputBaseProps {
|
|
|
1946
1946
|
declare const MaskedInputBase: React__default.ForwardRefExoticComponent<Omit<MaskedInputBaseProps, "ref"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1947
1947
|
|
|
1948
1948
|
declare const MaskedInput: React.ForwardRefExoticComponent<Omit<MaskedInputBaseProps & {
|
|
1949
|
+
colorScheme?: ColorScheme | undefined;
|
|
1950
|
+
mediaType?: MediaType | undefined;
|
|
1949
1951
|
label?: React.ReactNode;
|
|
1950
1952
|
name?: string | undefined;
|
|
1951
1953
|
invalid?: boolean | undefined;
|
|
1952
|
-
colorScheme?: ColorScheme | undefined;
|
|
1953
|
-
mediaType?: MediaType | undefined;
|
|
1954
1954
|
addons?: FieldAddon[] | undefined;
|
|
1955
1955
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1956
1956
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1976,11 +1976,11 @@ declare const withMaskedInputField: <TProps extends ManagedMaskedInputProps>(Com
|
|
|
1976
1976
|
options?: RegisterOptions<TFieldValues>;
|
|
1977
1977
|
}) => React__default.JSX.Element;
|
|
1978
1978
|
declare const MaskedInputField: <TFieldValues extends FieldValues>(props: Omit<MaskedInputBaseProps & {
|
|
1979
|
+
colorScheme?: ColorScheme | undefined;
|
|
1980
|
+
mediaType?: MediaType | undefined;
|
|
1979
1981
|
label?: React__default.ReactNode;
|
|
1980
1982
|
name?: string | undefined;
|
|
1981
1983
|
invalid?: boolean | undefined;
|
|
1982
|
-
colorScheme?: ColorScheme | undefined;
|
|
1983
|
-
mediaType?: MediaType | undefined;
|
|
1984
1984
|
addons?: FieldAddon[] | undefined;
|
|
1985
1985
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1986
1986
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2036,11 +2036,11 @@ interface SearchInputControlProps extends InputProps {
|
|
|
2036
2036
|
placeholder?: string;
|
|
2037
2037
|
}
|
|
2038
2038
|
declare const SearchInput: React__default.ForwardRefExoticComponent<SearchInputControlProps & {
|
|
2039
|
+
colorScheme?: ColorScheme | undefined;
|
|
2040
|
+
mediaType?: MediaType | undefined;
|
|
2039
2041
|
label?: React__default.ReactNode;
|
|
2040
2042
|
name?: string | undefined;
|
|
2041
2043
|
invalid?: boolean | undefined;
|
|
2042
|
-
colorScheme?: ColorScheme | undefined;
|
|
2043
|
-
mediaType?: MediaType | undefined;
|
|
2044
2044
|
addons?: FieldAddon[] | undefined;
|
|
2045
2045
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2046
2046
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2146,11 +2146,11 @@ interface TextInputControlProps extends InputProps {
|
|
|
2146
2146
|
placeholder?: string;
|
|
2147
2147
|
}
|
|
2148
2148
|
declare const TextInput: React__default.ForwardRefExoticComponent<TextInputControlProps & {
|
|
2149
|
+
colorScheme?: ColorScheme | undefined;
|
|
2150
|
+
mediaType?: MediaType | undefined;
|
|
2149
2151
|
label?: React__default.ReactNode;
|
|
2150
2152
|
name?: string | undefined;
|
|
2151
2153
|
invalid?: boolean | undefined;
|
|
2152
|
-
colorScheme?: ColorScheme | undefined;
|
|
2153
|
-
mediaType?: MediaType | undefined;
|
|
2154
2154
|
addons?: FieldAddon[] | undefined;
|
|
2155
2155
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2156
2156
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2180,11 +2180,11 @@ interface TrailingTextInputControlProps extends InputProps {
|
|
|
2180
2180
|
suffix?: ReactNode;
|
|
2181
2181
|
}
|
|
2182
2182
|
declare const TrailingTextInput: React__default.ForwardRefExoticComponent<TrailingTextInputControlProps & {
|
|
2183
|
+
colorScheme?: ColorScheme | undefined;
|
|
2184
|
+
mediaType?: MediaType | undefined;
|
|
2183
2185
|
label?: React__default.ReactNode;
|
|
2184
2186
|
name?: string | undefined;
|
|
2185
2187
|
invalid?: boolean | undefined;
|
|
2186
|
-
colorScheme?: ColorScheme | undefined;
|
|
2187
|
-
mediaType?: MediaType | undefined;
|
|
2188
2188
|
addons?: FieldAddon[] | undefined;
|
|
2189
2189
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2190
2190
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2233,11 +2233,11 @@ interface DatePickerControlProps extends Pick<DatePickerProps$1, 'chooseDayAriaL
|
|
|
2233
2233
|
declare const DatePickerControl: React__default.ForwardRefExoticComponent<DatePickerControlProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
2234
2234
|
|
|
2235
2235
|
declare const DatePicker: React.ForwardRefExoticComponent<DatePickerControlProps & {
|
|
2236
|
+
colorScheme?: ColorScheme | undefined;
|
|
2237
|
+
mediaType?: MediaType | undefined;
|
|
2236
2238
|
label?: React.ReactNode;
|
|
2237
2239
|
name?: string | undefined;
|
|
2238
2240
|
invalid?: boolean | undefined;
|
|
2239
|
-
colorScheme?: ColorScheme | undefined;
|
|
2240
|
-
mediaType?: MediaType | undefined;
|
|
2241
2241
|
addons?: FieldAddon[] | undefined;
|
|
2242
2242
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2243
2243
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2734,11 +2734,11 @@ interface FileInputControlProps extends FileInputSettings, DesignSystemBaseProps
|
|
|
2734
2734
|
declare const FileInputControl: React__default.ForwardRefExoticComponent<FileInputControlProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2735
2735
|
|
|
2736
2736
|
declare const FileInput: React__default.ForwardRefExoticComponent<Omit<FileInputControlProps & {
|
|
2737
|
+
colorScheme?: ColorScheme | undefined;
|
|
2738
|
+
mediaType?: MediaType | undefined;
|
|
2737
2739
|
label?: React__default.ReactNode;
|
|
2738
2740
|
name?: string | undefined;
|
|
2739
2741
|
invalid?: boolean | undefined;
|
|
2740
|
-
colorScheme?: ColorScheme | undefined;
|
|
2741
|
-
mediaType?: MediaType | undefined;
|
|
2742
2742
|
addons?: FieldAddon[] | undefined;
|
|
2743
2743
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2744
2744
|
controlSectionWidth?: csstype.Property.Width | undefined;
|