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.
- package/dist/react-crud-mobile.cjs.development.js +18 -14
- 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 +18 -14
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UISelect.tsx +19 -11
|
@@ -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: "
|
|
536
|
-
size:
|
|
537
|
-
color:
|
|
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
|
-
|
|
604
|
-
|
|
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
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
624
|
+
width: '100%',
|
|
625
|
+
alignSelf: 'flex-start',
|
|
626
|
+
flexDirection: 'row',
|
|
627
|
+
flexWrap: 'wrap',
|
|
628
|
+
padding: 20
|
|
625
629
|
}
|
|
626
630
|
});
|
|
627
631
|
|