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
@@ -806,7 +806,7 @@ function UIInput(props) {
|
|
806
806
|
}
|
807
807
|
return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {});
|
808
808
|
};
|
809
|
-
var type = scope.getPart('type', '
|
809
|
+
var type = scope.getPart('type', 'text');
|
810
810
|
var decode = {
|
811
811
|
textarea: {
|
812
812
|
multiline: true,
|
@@ -819,7 +819,7 @@ function UIInput(props) {
|
|
819
819
|
children: [/*#__PURE__*/jsxRuntime.jsxs(reactNative.View, {
|
820
820
|
style: style('base'),
|
821
821
|
children: [scope.getPart('left'), /*#__PURE__*/jsxRuntime.jsx(reactNative.TextInput, _extends({
|
822
|
-
style: style('input'),
|
822
|
+
style: style('input', scope.getStyle(type)),
|
823
823
|
onChangeText: onChange,
|
824
824
|
value: value,
|
825
825
|
placeholder: placeholder
|