@mmb-digital/design-system-web 0.1.335 → 0.1.336
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
|
@@ -1715,11 +1715,11 @@ interface RadioGroupControlProps extends FieldControlProps, DesignSystemBaseProp
|
|
|
1715
1715
|
declare const RadioGroupControl: React__default.ForwardRefExoticComponent<RadioGroupControlProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1716
1716
|
|
|
1717
1717
|
declare const RadioGroup: React__default.ForwardRefExoticComponent<Omit<RadioGroupControlProps & {
|
|
1718
|
-
colorScheme?: ColorScheme | undefined;
|
|
1719
|
-
mediaType?: MediaType | undefined;
|
|
1720
1718
|
label?: React__default.ReactNode;
|
|
1721
1719
|
name?: string | undefined;
|
|
1722
1720
|
invalid?: boolean | undefined;
|
|
1721
|
+
colorScheme?: ColorScheme | undefined;
|
|
1722
|
+
mediaType?: MediaType | undefined;
|
|
1723
1723
|
addons?: FieldAddon[] | undefined;
|
|
1724
1724
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1725
1725
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1787,11 +1787,11 @@ interface RadioButtonGroupControlProps extends DesignSystemBaseProps, FieldContr
|
|
|
1787
1787
|
declare const RadioButtonGroupControl: React__default.ForwardRefExoticComponent<RadioButtonGroupControlProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
1788
1788
|
|
|
1789
1789
|
declare const RadioButtonGroup: React__default.ForwardRefExoticComponent<Omit<RadioButtonGroupControlProps & {
|
|
1790
|
-
colorScheme?: ColorScheme | undefined;
|
|
1791
|
-
mediaType?: MediaType | undefined;
|
|
1792
1790
|
label?: React__default.ReactNode;
|
|
1793
1791
|
name?: string | undefined;
|
|
1794
1792
|
invalid?: boolean | undefined;
|
|
1793
|
+
colorScheme?: ColorScheme | undefined;
|
|
1794
|
+
mediaType?: MediaType | undefined;
|
|
1795
1795
|
addons?: FieldAddon[] | undefined;
|
|
1796
1796
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1797
1797
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1820,11 +1820,11 @@ declare const RadioButtonGroupField: (props: RadioButtonGroupFieldProps) => Reac
|
|
|
1820
1820
|
interface TextAreaControlProps extends TextareaHTMLAttributes<HTMLTextAreaElement>, FieldControlProps {
|
|
1821
1821
|
}
|
|
1822
1822
|
declare const TextArea: React__default.ForwardRefExoticComponent<TextAreaControlProps & {
|
|
1823
|
-
colorScheme?: ColorScheme | undefined;
|
|
1824
|
-
mediaType?: MediaType | undefined;
|
|
1825
1823
|
label?: React__default.ReactNode;
|
|
1826
1824
|
name?: string | undefined;
|
|
1827
1825
|
invalid?: boolean | undefined;
|
|
1826
|
+
colorScheme?: ColorScheme | undefined;
|
|
1827
|
+
mediaType?: MediaType | undefined;
|
|
1828
1828
|
addons?: FieldAddon[] | undefined;
|
|
1829
1829
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1830
1830
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1906,11 +1906,11 @@ interface EmailInputControlProps extends InputProps {
|
|
|
1906
1906
|
placeholder?: string;
|
|
1907
1907
|
}
|
|
1908
1908
|
declare const EmailInput: React__default.ForwardRefExoticComponent<EmailInputControlProps & {
|
|
1909
|
-
colorScheme?: ColorScheme | undefined;
|
|
1910
|
-
mediaType?: MediaType | undefined;
|
|
1911
1909
|
label?: React__default.ReactNode;
|
|
1912
1910
|
name?: string | undefined;
|
|
1913
1911
|
invalid?: boolean | undefined;
|
|
1912
|
+
colorScheme?: ColorScheme | undefined;
|
|
1913
|
+
mediaType?: MediaType | undefined;
|
|
1914
1914
|
addons?: FieldAddon[] | undefined;
|
|
1915
1915
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1916
1916
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1944,11 +1944,11 @@ interface MaskedInputBaseProps extends InputBaseProps {
|
|
|
1944
1944
|
declare const MaskedInputBase: React__default.ForwardRefExoticComponent<Omit<MaskedInputBaseProps, "ref"> & React__default.RefAttributes<HTMLInputElement>>;
|
|
1945
1945
|
|
|
1946
1946
|
declare const MaskedInput: React.ForwardRefExoticComponent<Omit<MaskedInputBaseProps & {
|
|
1947
|
-
colorScheme?: ColorScheme | undefined;
|
|
1948
|
-
mediaType?: MediaType | undefined;
|
|
1949
1947
|
label?: React.ReactNode;
|
|
1950
1948
|
name?: string | undefined;
|
|
1951
1949
|
invalid?: boolean | undefined;
|
|
1950
|
+
colorScheme?: ColorScheme | undefined;
|
|
1951
|
+
mediaType?: MediaType | undefined;
|
|
1952
1952
|
addons?: FieldAddon[] | undefined;
|
|
1953
1953
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1954
1954
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -1974,11 +1974,11 @@ declare const withMaskedInputField: <TProps extends ManagedMaskedInputProps>(Com
|
|
|
1974
1974
|
options?: RegisterOptions<TFieldValues>;
|
|
1975
1975
|
}) => React__default.JSX.Element;
|
|
1976
1976
|
declare const MaskedInputField: <TFieldValues extends FieldValues>(props: Omit<MaskedInputBaseProps & {
|
|
1977
|
-
colorScheme?: ColorScheme | undefined;
|
|
1978
|
-
mediaType?: MediaType | undefined;
|
|
1979
1977
|
label?: React__default.ReactNode;
|
|
1980
1978
|
name?: string | undefined;
|
|
1981
1979
|
invalid?: boolean | undefined;
|
|
1980
|
+
colorScheme?: ColorScheme | undefined;
|
|
1981
|
+
mediaType?: MediaType | undefined;
|
|
1982
1982
|
addons?: FieldAddon[] | undefined;
|
|
1983
1983
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
1984
1984
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2034,11 +2034,11 @@ interface SearchInputControlProps extends InputProps {
|
|
|
2034
2034
|
placeholder?: string;
|
|
2035
2035
|
}
|
|
2036
2036
|
declare const SearchInput: React__default.ForwardRefExoticComponent<SearchInputControlProps & {
|
|
2037
|
-
colorScheme?: ColorScheme | undefined;
|
|
2038
|
-
mediaType?: MediaType | undefined;
|
|
2039
2037
|
label?: React__default.ReactNode;
|
|
2040
2038
|
name?: string | undefined;
|
|
2041
2039
|
invalid?: boolean | undefined;
|
|
2040
|
+
colorScheme?: ColorScheme | undefined;
|
|
2041
|
+
mediaType?: MediaType | undefined;
|
|
2042
2042
|
addons?: FieldAddon[] | undefined;
|
|
2043
2043
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2044
2044
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2144,11 +2144,11 @@ interface TextInputControlProps extends InputProps {
|
|
|
2144
2144
|
placeholder?: string;
|
|
2145
2145
|
}
|
|
2146
2146
|
declare const TextInput: React__default.ForwardRefExoticComponent<TextInputControlProps & {
|
|
2147
|
-
colorScheme?: ColorScheme | undefined;
|
|
2148
|
-
mediaType?: MediaType | undefined;
|
|
2149
2147
|
label?: React__default.ReactNode;
|
|
2150
2148
|
name?: string | undefined;
|
|
2151
2149
|
invalid?: boolean | undefined;
|
|
2150
|
+
colorScheme?: ColorScheme | undefined;
|
|
2151
|
+
mediaType?: MediaType | undefined;
|
|
2152
2152
|
addons?: FieldAddon[] | undefined;
|
|
2153
2153
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2154
2154
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2178,11 +2178,11 @@ interface TrailingTextInputControlProps extends InputProps {
|
|
|
2178
2178
|
suffix?: ReactNode;
|
|
2179
2179
|
}
|
|
2180
2180
|
declare const TrailingTextInput: React__default.ForwardRefExoticComponent<TrailingTextInputControlProps & {
|
|
2181
|
-
colorScheme?: ColorScheme | undefined;
|
|
2182
|
-
mediaType?: MediaType | undefined;
|
|
2183
2181
|
label?: React__default.ReactNode;
|
|
2184
2182
|
name?: string | undefined;
|
|
2185
2183
|
invalid?: boolean | undefined;
|
|
2184
|
+
colorScheme?: ColorScheme | undefined;
|
|
2185
|
+
mediaType?: MediaType | undefined;
|
|
2186
2186
|
addons?: FieldAddon[] | undefined;
|
|
2187
2187
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2188
2188
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2231,11 +2231,11 @@ interface DatePickerControlProps extends Pick<DatePickerProps$1, 'chooseDayAriaL
|
|
|
2231
2231
|
declare const DatePickerControl: React__default.ForwardRefExoticComponent<DatePickerControlProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
2232
2232
|
|
|
2233
2233
|
declare const DatePicker: React.ForwardRefExoticComponent<DatePickerControlProps & {
|
|
2234
|
-
colorScheme?: ColorScheme | undefined;
|
|
2235
|
-
mediaType?: MediaType | undefined;
|
|
2236
2234
|
label?: React.ReactNode;
|
|
2237
2235
|
name?: string | undefined;
|
|
2238
2236
|
invalid?: boolean | undefined;
|
|
2237
|
+
colorScheme?: ColorScheme | undefined;
|
|
2238
|
+
mediaType?: MediaType | undefined;
|
|
2239
2239
|
addons?: FieldAddon[] | undefined;
|
|
2240
2240
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2241
2241
|
controlSectionWidth?: csstype.Property.Width | undefined;
|
|
@@ -2732,11 +2732,11 @@ interface FileInputControlProps extends FileInputSettings, DesignSystemBaseProps
|
|
|
2732
2732
|
declare const FileInputControl: React__default.ForwardRefExoticComponent<FileInputControlProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2733
2733
|
|
|
2734
2734
|
declare const FileInput: React__default.ForwardRefExoticComponent<Omit<FileInputControlProps & {
|
|
2735
|
-
colorScheme?: ColorScheme | undefined;
|
|
2736
|
-
mediaType?: MediaType | undefined;
|
|
2737
2735
|
label?: React__default.ReactNode;
|
|
2738
2736
|
name?: string | undefined;
|
|
2739
2737
|
invalid?: boolean | undefined;
|
|
2738
|
+
colorScheme?: ColorScheme | undefined;
|
|
2739
|
+
mediaType?: MediaType | undefined;
|
|
2740
2740
|
addons?: FieldAddon[] | undefined;
|
|
2741
2741
|
controlMobileWidth?: csstype.Property.Width | undefined;
|
|
2742
2742
|
controlSectionWidth?: csstype.Property.Width | undefined;
|