react-crud-mobile 1.3.173 → 1.3.175
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 -1
- 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 -1
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/elements/UIElement.tsx +4 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-crud-mobile",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.175",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "Uma biblioteca de componentes para React Native",
|
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.394",
|
50
50
|
"react-dom": "19.1.0",
|
51
51
|
"react-native": "0.81.4",
|
52
52
|
"react-native-draggable-flatlist": "^4.0.3",
|
@@ -591,7 +591,9 @@ export default function UIElement(props: ElementType) {
|
|
591
591
|
|
592
592
|
if (scope.isInput() || original.container) {
|
593
593
|
return (
|
594
|
-
<View
|
594
|
+
<View
|
595
|
+
style={getStyle('container', { paddingHorizontal: 5, width: '100%' })}
|
596
|
+
>
|
595
597
|
{props.children}
|
596
598
|
</View>
|
597
599
|
);
|
@@ -718,7 +720,7 @@ let boxStyle = StyleSheet.create({
|
|
718
720
|
const box: any = {
|
719
721
|
...boxStyle.box,
|
720
722
|
};
|
721
|
-
//
|
723
|
+
//v3
|
722
724
|
const elementStyle: any = {};
|
723
725
|
|
724
726
|
elementStyle.view = {
|