react-crud-mobile 1.3.361 → 1.3.362
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 +10 -5
- 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 +10 -5
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +9 -3
package/package.json
CHANGED
@@ -789,6 +789,7 @@ elementStyle.view = {
|
|
789
789
|
width: '100%',
|
790
790
|
backgroundColor: 'background',
|
791
791
|
flex: 1,
|
792
|
+
gap: 10,
|
792
793
|
},
|
793
794
|
root: {
|
794
795
|
width: '100%',
|
@@ -806,8 +807,9 @@ elementStyle.input = StyleSheet.create({
|
|
806
807
|
flex: 1,
|
807
808
|
width: '100%',
|
808
809
|
padding: 0,
|
809
|
-
alignSelf: 'flex-start',
|
810
810
|
flexDirection: 'row',
|
811
|
+
justifyContent: 'space-between',
|
812
|
+
alignSelf: 'flex-start',
|
811
813
|
flexWrap: 'wrap',
|
812
814
|
},
|
813
815
|
});
|
@@ -838,6 +840,7 @@ elementStyle.toggle = StyleSheet.create({
|
|
838
840
|
...box,
|
839
841
|
flex: 1,
|
840
842
|
width: '100%',
|
843
|
+
gap: 10,
|
841
844
|
borderRadius: 2,
|
842
845
|
justifyContent: 'center',
|
843
846
|
flexDirection: 'row',
|
@@ -848,6 +851,7 @@ elementStyle.toggle = StyleSheet.create({
|
|
848
851
|
|
849
852
|
const styles = StyleSheet.create({
|
850
853
|
root: {
|
854
|
+
gap: 5,
|
851
855
|
flexDirection: 'column',
|
852
856
|
flexWrap: 'wrap',
|
853
857
|
width: '100%',
|
@@ -859,11 +863,13 @@ const styles = StyleSheet.create({
|
|
859
863
|
paddingVertical: 3,
|
860
864
|
color: 'labelColor',
|
861
865
|
},
|
862
|
-
inner: {
|
866
|
+
inner: { width: '100%' },
|
863
867
|
});
|
864
868
|
|
865
869
|
const withChildStyles = StyleSheet.create({
|
866
|
-
root: {
|
870
|
+
root: {
|
871
|
+
gap: 10,
|
872
|
+
},
|
867
873
|
label: {
|
868
874
|
width: '100%',
|
869
875
|
fontWeight: 500,
|