react-crud-mobile 1.3.27 → 1.3.29
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 +5 -2
- 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 +5 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +2 -2
- package/src/elements/core/UISelect.tsx +9 -2
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.3.
|
|
2
|
+
"version": "1.3.29",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"description": "Uma biblioteca de componentes para React Native",
|
|
5
5
|
"main": "dist/index.js",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@react-native-vector-icons/ionicons": "^7.4.0",
|
|
46
46
|
"@react-native-vector-icons/material-icons": "^0.0.1",
|
|
47
47
|
"react": "19.0.0",
|
|
48
|
-
"react-crud-utils": "^0.1.
|
|
48
|
+
"react-crud-utils": "^0.1.357",
|
|
49
49
|
"react-dom": "19.0.0",
|
|
50
50
|
"react-native": "0.79.2",
|
|
51
51
|
"react-native-gesture-handler": "~2.24.0",
|
|
@@ -62,7 +62,10 @@ export default function UISelect(props: ChildType) {
|
|
|
62
62
|
}, [modalVisible]);
|
|
63
63
|
|
|
64
64
|
return (
|
|
65
|
-
<View
|
|
65
|
+
<View
|
|
66
|
+
key={scope.getName(`${scope.getPart('modal')}_${modalVisible}`)}
|
|
67
|
+
style={style('selectRoot')}
|
|
68
|
+
>
|
|
66
69
|
<TouchableOpacity onPress={handlePress} style={style('selectInput')}>
|
|
67
70
|
<Text style={style('selectLabel')}>
|
|
68
71
|
{Utils.nvl(value, placeholder)}
|
|
@@ -102,7 +105,11 @@ export default function UISelect(props: ChildType) {
|
|
|
102
105
|
name={scope.getName('list')}
|
|
103
106
|
layout="card"
|
|
104
107
|
click={onClick}
|
|
105
|
-
rowStyle={
|
|
108
|
+
rowStyle={{
|
|
109
|
+
paddingLeft: 15,
|
|
110
|
+
paddinRight: 15,
|
|
111
|
+
...scope.original?.rowStyle,
|
|
112
|
+
}}
|
|
106
113
|
>
|
|
107
114
|
<UI.Value value="#{@this.label}" />
|
|
108
115
|
</UI.List>
|