react-crud-mobile 1.3.15 → 1.3.16

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.
@@ -532,9 +532,10 @@ function UISelect(props) {
532
532
  style: style('selectLabel'),
533
533
  children: reactCrudUtils.Utils.nvl(value, placeholder)
534
534
  }), /*#__PURE__*/jsxRuntime.jsx(vectorIcons.Ionicons, {
535
- name: "arrow-down",
536
- size: 20,
537
- color: "#888"
535
+ name: "chevron-back-outline",
536
+ size: 24,
537
+ color: scope.getPart('iconColor', null, 'white'),
538
+ style: style('modalCloseText', {})
538
539
  })]
539
540
  }), /*#__PURE__*/jsxRuntime.jsxs(reactNative.Modal, {
540
541
  animationType: "slide",
@@ -594,14 +595,16 @@ var styles$3 = /*#__PURE__*/reactNative.StyleSheet.create({
594
595
  selectLabel: {
595
596
  flex: 1
596
597
  },
597
- modalTop: {
598
- backgroundColor: 'primary',
599
- width: '100%'
600
- },
601
598
  modalSafe: {
602
599
  flex: 1,
603
- width: '100%',
604
- backgroundColor: 'background'
600
+ backgroundColor: 'background',
601
+ paddingTop: reactNative.StatusBar.currentHeight || 0
602
+ },
603
+ modalHeader: {
604
+ flexDirection: 'row',
605
+ alignItems: 'center',
606
+ padding: 15,
607
+ backgroundColor: '#6200ea'
605
608
  },
606
609
  modalCloseButton: {
607
610
  padding: 10
@@ -612,16 +615,17 @@ var styles$3 = /*#__PURE__*/reactNative.StyleSheet.create({
612
615
  },
613
616
  modalTitle: {
614
617
  fontSize: 18,
618
+ color: 'white',
615
619
  fontWeight: 'bold',
616
620
  marginLeft: 10
617
621
  },
618
622
  modalContent: {
619
623
  flex: 1,
620
- backgroundColor: 'background',
621
- paddingTop: 10,
622
- paddingBottom: 10,
623
- paddingLeft: 15,
624
- paddingRight: 15
624
+ width: '100%',
625
+ alignSelf: 'flex-start',
626
+ flexDirection: 'row',
627
+ flexWrap: 'wrap',
628
+ padding: 20
625
629
  }
626
630
  });
627
631