react-crud-mobile 1.3.225 → 1.3.226
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 +5 -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 +5 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIButton.tsx +3 -3
- package/src/elements/core/UISelect.tsx +3 -0
@@ -397,7 +397,7 @@ function UIButton(props) {
|
|
397
397
|
buttonLabel: {
|
398
398
|
color: '#ffffff',
|
399
399
|
fontWeight: '500',
|
400
|
-
fontSize:
|
400
|
+
fontSize: 14
|
401
401
|
},
|
402
402
|
buttonInner: {
|
403
403
|
flexDirection: 'row',
|
@@ -408,7 +408,7 @@ function UIButton(props) {
|
|
408
408
|
},
|
409
409
|
buttonIcon: {
|
410
410
|
color: '#fff',
|
411
|
-
fontSize:
|
411
|
+
fontSize: 16
|
412
412
|
},
|
413
413
|
button: {
|
414
414
|
backgroundColor: color,
|
@@ -629,6 +629,9 @@ var styles$3 = /*#__PURE__*/reactNative.StyleSheet.create({
|
|
629
629
|
flexDirection: 'row',
|
630
630
|
borderRadius: 5,
|
631
631
|
paddingHorizontal: 15,
|
632
|
+
borderWidth: 1,
|
633
|
+
borderStyle: 'solid',
|
634
|
+
borderColor: '#dedede',
|
632
635
|
paddingVertical: 10
|
633
636
|
},
|
634
637
|
selectLabel: {
|