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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-crud-mobile",
3
- "version": "1.3.362",
3
+ "version": "1.3.363",
4
4
  "license": "MIT",
5
5
  "description": "Uma biblioteca de componentes para React Native v1",
6
6
  "main": "dist/index.js",
@@ -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
- flexDirection: 'row',
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: { width: '100%' },
868
+ inner: {
869
+ width: '100%',
870
+ flexDirection: 'row',
871
+ justifyContent: 'space-between',
872
+ },
867
873
  });
868
874
 
869
875
  const withChildStyles = StyleSheet.create({