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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-crud-mobile",
3
- "version": "1.3.361",
3
+ "version": "1.3.362",
4
4
  "license": "MIT",
5
5
  "description": "Uma biblioteca de componentes para React Native v1",
6
6
  "main": "dist/index.js",
@@ -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: { flexDirection: 'row', gap: 10 },
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,