react-crud-mobile 1.3.299 → 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 +4 -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 +4 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIInput.tsx +2 -1
@@ -835,11 +835,12 @@ function UIInput(props) {
|
|
835
835
|
children: [/*#__PURE__*/jsxRuntime.jsxs(reactNative.View, {
|
836
836
|
style: style('base'),
|
837
837
|
children: [scope.getPart('left'), /*#__PURE__*/jsxRuntime.jsx(reactNative.TextInput, _extends({
|
838
|
-
style: inputStyle,
|
839
838
|
onChangeText: onChange,
|
840
839
|
value: value,
|
841
840
|
placeholder: placeholder
|
842
|
-
}, defs
|
841
|
+
}, defs, {
|
842
|
+
style: inputStyle
|
843
|
+
})), /*#__PURE__*/jsxRuntime.jsx(CustomIcon, {})]
|
843
844
|
}), scope.getPart('right')]
|
844
845
|
});
|
845
846
|
}
|
@@ -874,6 +875,7 @@ var styles$6 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
874
875
|
marginVertical: 0,
|
875
876
|
width: '100%',
|
876
877
|
height: 'auto',
|
878
|
+
alignSelf: 'stretch',
|
877
879
|
flex: 1
|
878
880
|
}
|
879
881
|
});
|