react-crud-mobile 1.3.363 → 1.3.364
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 +2 -6
- 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 +2 -6
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/elements/UIElement.tsx +1 -7
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-crud-mobile",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.364",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "Uma biblioteca de componentes para React Native v1",
|
6
6
|
"main": "dist/index.js",
|
@@ -46,7 +46,7 @@
|
|
46
46
|
"@react-native-vector-icons/material-icons": "^0.0.1",
|
47
47
|
"expo-status-bar": "~3.0.8",
|
48
48
|
"react": "19.1.0",
|
49
|
-
"react-crud-utils": "^0.1.
|
49
|
+
"react-crud-utils": "^0.1.459",
|
50
50
|
"react-dom": "19.1.0",
|
51
51
|
"react-native": "0.81.4",
|
52
52
|
"react-native-draggable-flatlist": "^4.0.3",
|
@@ -784,8 +784,6 @@ elementStyle.view = {
|
|
784
784
|
width: '100%',
|
785
785
|
alignItems: 'normal',
|
786
786
|
flex: 1,
|
787
|
-
flexDirection: 'row',
|
788
|
-
justifyContent: 'space-between',
|
789
787
|
},
|
790
788
|
container: {
|
791
789
|
width: '100%',
|
@@ -865,11 +863,7 @@ const styles = StyleSheet.create({
|
|
865
863
|
paddingVertical: 3,
|
866
864
|
color: 'labelColor',
|
867
865
|
},
|
868
|
-
inner: {
|
869
|
-
width: '100%',
|
870
|
-
flexDirection: 'row',
|
871
|
-
justifyContent: 'space-between',
|
872
|
-
},
|
866
|
+
inner: { width: '100%' },
|
873
867
|
});
|
874
868
|
|
875
869
|
const withChildStyles = StyleSheet.create({
|