react-crud-mobile 1.3.362 → 1.3.363
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 +8 -4
- 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 +8 -4
- 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
@@ -784,6 +784,8 @@ elementStyle.view = {
|
|
784
784
|
width: '100%',
|
785
785
|
alignItems: 'normal',
|
786
786
|
flex: 1,
|
787
|
+
flexDirection: 'row',
|
788
|
+
justifyContent: 'space-between',
|
787
789
|
},
|
788
790
|
container: {
|
789
791
|
width: '100%',
|
@@ -807,9 +809,9 @@ elementStyle.input = StyleSheet.create({
|
|
807
809
|
flex: 1,
|
808
810
|
width: '100%',
|
809
811
|
padding: 0,
|
810
|
-
|
811
|
-
justifyContent: 'space-between',
|
812
|
+
gap: 10,
|
812
813
|
alignSelf: 'flex-start',
|
814
|
+
flexDirection: 'row',
|
813
815
|
flexWrap: 'wrap',
|
814
816
|
},
|
815
817
|
});
|
@@ -863,7 +865,11 @@ const styles = StyleSheet.create({
|
|
863
865
|
paddingVertical: 3,
|
864
866
|
color: 'labelColor',
|
865
867
|
},
|
866
|
-
inner: {
|
868
|
+
inner: {
|
869
|
+
width: '100%',
|
870
|
+
flexDirection: 'row',
|
871
|
+
justifyContent: 'space-between',
|
872
|
+
},
|
867
873
|
});
|
868
874
|
|
869
875
|
const withChildStyles = StyleSheet.create({
|