react-crud-mobile 1.3.300 → 1.3.301
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 +3 -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 +3 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIInput.tsx +1 -1
@@ -826,11 +826,12 @@ function UIInput(props) {
|
|
826
826
|
children: [/*#__PURE__*/jsxs(View, {
|
827
827
|
style: style('base'),
|
828
828
|
children: [scope.getPart('left'), /*#__PURE__*/jsx(TextInput, _extends({
|
829
|
-
style: inputStyle,
|
830
829
|
onChangeText: onChange,
|
831
830
|
value: value,
|
832
831
|
placeholder: placeholder
|
833
|
-
}, defs
|
832
|
+
}, defs, {
|
833
|
+
style: inputStyle
|
834
|
+
})), /*#__PURE__*/jsx(CustomIcon, {})]
|
834
835
|
}), scope.getPart('right')]
|
835
836
|
});
|
836
837
|
}
|