react-crud-mobile 1.3.319 → 1.3.320
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 +4 -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 +4 -3
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +2 -1
- package/src/elements/core/UIToggle.tsx +2 -2
package/package.json
CHANGED
@@ -826,13 +826,14 @@ elementStyle.quantity = {
|
|
826
826
|
|
827
827
|
elementStyle.toggle = StyleSheet.create({
|
828
828
|
root: {
|
829
|
-
height:
|
829
|
+
height: 'auto',
|
830
830
|
},
|
831
831
|
inner: {
|
832
832
|
...box,
|
833
833
|
flex: 1,
|
834
834
|
width: '100%',
|
835
835
|
gap: 10,
|
836
|
+
borderRadius: 2,
|
836
837
|
justifyContent: 'center',
|
837
838
|
flexDirection: 'row',
|
838
839
|
alignSelf: 'flex-start',
|
@@ -82,7 +82,6 @@ const styles = StyleSheet.create({
|
|
82
82
|
container: {
|
83
83
|
flex: 1,
|
84
84
|
width: '100%',
|
85
|
-
margin: 5,
|
86
85
|
justifyContent: 'center',
|
87
86
|
flexDirection: 'row',
|
88
87
|
alignItems: 'center',
|
@@ -94,7 +93,8 @@ const styles = StyleSheet.create({
|
|
94
93
|
width: 'auto',
|
95
94
|
flexDirection: 'row',
|
96
95
|
flex: 1,
|
97
|
-
|
96
|
+
padding: 5,
|
97
|
+
borderRadius: 2,
|
98
98
|
},
|
99
99
|
text: {
|
100
100
|
fontSize: 15,
|