react-crud-mobile 1.3.48 → 1.3.50

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.
@@ -589,7 +589,11 @@ function UISelect(props) {
589
589
  ref: scrollRef,
590
590
  children: /*#__PURE__*/jsx(View, {
591
591
  style: {
592
- flex: 1
592
+ flex: 1,
593
+ paddingLeft: 15,
594
+ paddingRight: 15,
595
+ paddingTop: 10,
596
+ paddingBottom: 10
593
597
  },
594
598
  children: /*#__PURE__*/jsx(UI.List, _extends({
595
599
  data: items,
@@ -650,11 +654,7 @@ var styles$3 = /*#__PURE__*/StyleSheet.create({
650
654
  },
651
655
  modalContent: {
652
656
  flex: 1,
653
- backgroundColor: 'background',
654
- paddingTop: 10,
655
- paddingBottom: 10,
656
- paddingLeft: 15,
657
- paddingRight: 15
657
+ backgroundColor: 'background'
658
658
  }
659
659
  });
660
660
 
@@ -1421,6 +1421,7 @@ function UIModal(props) {
1421
1421
  return /*#__PURE__*/jsx(Fragment, {});
1422
1422
  }
1423
1423
  var headerRight = ComponentUtils.getDefine(props, 'header', 'right');
1424
+ var bottom = ComponentUtils.getDefine(props, 'bottom');
1424
1425
  scope.put('scrollRef', scrollRef);
1425
1426
  ComponentUtils.setViewScope(scope);
1426
1427
  var color = Utils.nvl(headerStyle.color, 'white');
@@ -1467,7 +1468,11 @@ function UIModal(props) {
1467
1468
  ref: scrollRef,
1468
1469
  children: /*#__PURE__*/jsx(View, {
1469
1470
  style: {
1470
- flex: 1
1471
+ flex: 1,
1472
+ paddingLeft: 15,
1473
+ paddingRight: 15,
1474
+ paddingTop: 10,
1475
+ paddingBottom: 10
1471
1476
  },
1472
1477
  children: /*#__PURE__*/jsx(UIChildren, {
1473
1478
  scope: scope,
@@ -1475,7 +1480,7 @@ function UIModal(props) {
1475
1480
  children: props.children
1476
1481
  })
1477
1482
  })
1478
- })]
1483
+ }), bottom]
1479
1484
  }), /*#__PURE__*/jsx(UIToast, {})]
1480
1485
  }, key);
1481
1486
  }
@@ -1503,11 +1508,7 @@ var styles$8 = /*#__PURE__*/StyleSheet.create({
1503
1508
  },
1504
1509
  modalContent: {
1505
1510
  flex: 1,
1506
- backgroundColor: 'background',
1507
- paddingTop: 10,
1508
- paddingBottom: 10,
1509
- paddingLeft: 15,
1510
- paddingRight: 15
1511
+ backgroundColor: 'background'
1511
1512
  }
1512
1513
  });
1513
1514