react-crud-mobile 1.0.772 → 1.0.774

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.
@@ -643,7 +643,8 @@ function UIInput(props) {
643
643
  var style = function style(part, extra) {
644
644
  return _extends({}, scope.getStyle(part, styles$6[part]), extra);
645
645
  };
646
- return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
646
+ return /*#__PURE__*/jsxRuntime.jsxs(reactNative.View, {
647
+ style: style('base'),
647
648
  children: [scope.getPart('left'), /*#__PURE__*/jsxRuntime.jsx(reactNative.TextInput, {
648
649
  style: style('input'),
649
650
  onChangeText: onChange,
@@ -658,16 +659,18 @@ function UIInput(props) {
658
659
  }
659
660
  var styles$6 = /*#__PURE__*/reactNative.StyleSheet.create({
660
661
  base: {
661
- flexDirection: 'row',
662
+ flex: 1,
663
+ width: '100%',
664
+ paddingBottom: 0,
665
+ paddingTop: 0,
662
666
  alignItems: 'center',
663
667
  borderWidth: 1,
664
668
  borderColor: 'borderColor',
665
669
  borderRadius: 5,
666
- paddingHorizontal: 10,
667
- paddingVertical: 5,
668
- padding: 10,
669
- paddingLeft: 5,
670
- paddingRight: 10
670
+ paddingHorizontal: 15,
671
+ alignSelf: 'flex-start',
672
+ flexDirection: 'row',
673
+ flexWrap: 'wrap'
671
674
  },
672
675
  icon: {
673
676
  marginRight: 10
@@ -1771,13 +1774,7 @@ elementStyle.input = /*#__PURE__*/reactNative.StyleSheet.create({
1771
1774
  inner: {
1772
1775
  flex: 1,
1773
1776
  width: '100%',
1774
- paddingBottom: 0,
1775
- paddingTop: 0,
1776
- alignItems: 'center',
1777
- borderWidth: 1,
1778
- borderColor: 'borderColor',
1779
- borderRadius: 5,
1780
- paddingHorizontal: 15,
1777
+ padding: 0,
1781
1778
  alignSelf: 'flex-start',
1782
1779
  flexDirection: 'row',
1783
1780
  flexWrap: 'wrap'