tf-checkout-react 1.0.76 → 1.0.77
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/tf-checkout-react.cjs.development.js +7 -7
- package/dist/tf-checkout-react.cjs.development.js.map +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
- package/dist/tf-checkout-react.esm.js +7 -7
- package/dist/tf-checkout-react.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/common/CheckboxField.tsx +1 -1
- package/src/components/common/CustomField.tsx +2 -2
- package/src/components/common/FormikPhoneNumberField.tsx +2 -2
- package/src/components/common/SelectField.tsx +2 -2
|
@@ -1837,10 +1837,10 @@ var CustomField = function CustomField(_ref) {
|
|
|
1837
1837
|
}
|
|
1838
1838
|
},
|
|
1839
1839
|
InputLabelProps: {
|
|
1840
|
-
sx: customTheme.input
|
|
1840
|
+
sx: customTheme == null ? void 0 : customTheme.input
|
|
1841
1841
|
},
|
|
1842
1842
|
inputProps: {
|
|
1843
|
-
sx: customTheme.input
|
|
1843
|
+
sx: customTheme == null ? void 0 : customTheme.input
|
|
1844
1844
|
}
|
|
1845
1845
|
}, field), isSelectField ? _map(selectOptions, function (option) {
|
|
1846
1846
|
return React__default.createElement("option", {
|
|
@@ -1862,7 +1862,7 @@ var CheckboxField = function CheckboxField(_ref) {
|
|
|
1862
1862
|
control: React__default.createElement(Checkbox, Object.assign({}, field, rest)),
|
|
1863
1863
|
label: label,
|
|
1864
1864
|
componentsProps: {
|
|
1865
|
-
typography: customTheme.checkbox
|
|
1865
|
+
typography: customTheme == null ? void 0 : customTheme.checkbox
|
|
1866
1866
|
}
|
|
1867
1867
|
}));
|
|
1868
1868
|
};
|
|
@@ -1886,7 +1886,7 @@ var SelectField = function SelectField(_ref) {
|
|
|
1886
1886
|
return React__default.createElement(material.FormControl, {
|
|
1887
1887
|
fullWidth: true
|
|
1888
1888
|
}, React__default.createElement(material.InputLabel, {
|
|
1889
|
-
style: customTheme.input,
|
|
1889
|
+
style: customTheme == null ? void 0 : customTheme.input,
|
|
1890
1890
|
htmlFor: field.name,
|
|
1891
1891
|
error: !!error && isTouched,
|
|
1892
1892
|
shrink: true
|
|
@@ -1905,7 +1905,7 @@ var SelectField = function SelectField(_ref) {
|
|
|
1905
1905
|
className: theme
|
|
1906
1906
|
}
|
|
1907
1907
|
}, field, {
|
|
1908
|
-
style: customTheme.input
|
|
1908
|
+
style: customTheme == null ? void 0 : customTheme.input
|
|
1909
1909
|
}), _map(selectOptions, function (option) {
|
|
1910
1910
|
return React__default.createElement("option", {
|
|
1911
1911
|
key: option.value,
|
|
@@ -2018,10 +2018,10 @@ var FormikPhoneNumberField = function FormikPhoneNumberField(_ref) {
|
|
|
2018
2018
|
helperText: isTouched && error,
|
|
2019
2019
|
fullWidth: true,
|
|
2020
2020
|
InputLabelProps: {
|
|
2021
|
-
sx: customTheme.input
|
|
2021
|
+
sx: customTheme == null ? void 0 : customTheme.input
|
|
2022
2022
|
},
|
|
2023
2023
|
InputProps: {
|
|
2024
|
-
sx: customTheme.input
|
|
2024
|
+
sx: customTheme == null ? void 0 : customTheme.input
|
|
2025
2025
|
},
|
|
2026
2026
|
autoFormat: false
|
|
2027
2027
|
}, rest));
|