react-crud-mobile 1.3.225 → 1.3.227
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 +6 -3
- 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 +6 -3
- 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
@@ -387,8 +387,8 @@ function UIButton(props) {
|
|
387
387
|
var styles = {
|
388
388
|
buttonLabel: {
|
389
389
|
color: '#ffffff',
|
390
|
-
fontWeight:
|
391
|
-
fontSize:
|
390
|
+
fontWeight: 400,
|
391
|
+
fontSize: 15
|
392
392
|
},
|
393
393
|
buttonInner: {
|
394
394
|
flexDirection: 'row',
|
@@ -399,7 +399,7 @@ function UIButton(props) {
|
|
399
399
|
},
|
400
400
|
buttonIcon: {
|
401
401
|
color: '#fff',
|
402
|
-
fontSize:
|
402
|
+
fontSize: 16
|
403
403
|
},
|
404
404
|
button: {
|
405
405
|
backgroundColor: color,
|
@@ -620,6 +620,9 @@ var styles$3 = /*#__PURE__*/StyleSheet.create({
|
|
620
620
|
flexDirection: 'row',
|
621
621
|
borderRadius: 5,
|
622
622
|
paddingHorizontal: 15,
|
623
|
+
borderWidth: 1,
|
624
|
+
borderStyle: 'solid',
|
625
|
+
borderColor: '#dedede',
|
623
626
|
paddingVertical: 10
|
624
627
|
},
|
625
628
|
selectLabel: {
|