react-crud-mobile 1.3.290 → 1.3.291
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/react-crud-mobile.cjs.development.js +2 -2
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +2 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIInput.tsx +2 -2
@@ -797,7 +797,7 @@ function UIInput(props) {
|
|
797
797
|
}
|
798
798
|
return /*#__PURE__*/jsx(Fragment, {});
|
799
799
|
};
|
800
|
-
var type = scope.getPart('type', '
|
800
|
+
var type = scope.getPart('type', 'text');
|
801
801
|
var decode = {
|
802
802
|
textarea: {
|
803
803
|
multiline: true,
|
@@ -810,7 +810,7 @@ function UIInput(props) {
|
|
810
810
|
children: [/*#__PURE__*/jsxs(View, {
|
811
811
|
style: style('base'),
|
812
812
|
children: [scope.getPart('left'), /*#__PURE__*/jsx(TextInput, _extends({
|
813
|
-
style: style('input'),
|
813
|
+
style: style('input', scope.getStyle(type)),
|
814
814
|
onChangeText: onChange,
|
815
815
|
value: value,
|
816
816
|
placeholder: placeholder
|