react-crud-mobile 1.0.547 → 1.0.549
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 -3
- 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 -3
- 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,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.
|
|
2
|
+
"version": "1.0.549",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"description": "Uma biblioteca de componentes para React Native",
|
|
5
5
|
"main": "dist/index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@react-native-vector-icons/ionicons": "^7.4.0",
|
|
45
45
|
"@react-native-vector-icons/material-icons": "^0.0.1",
|
|
46
46
|
"react": "19.0.0",
|
|
47
|
-
"react-crud-utils": "^0.1.
|
|
47
|
+
"react-crud-utils": "^0.1.202",
|
|
48
48
|
"react-dom": "19.0.0",
|
|
49
49
|
"react-native": "0.79.2",
|
|
50
50
|
"react-native-gesture-handler": "~2.24.0",
|
|
@@ -168,7 +168,7 @@ export default function UIElement(props: ElementType) {
|
|
|
168
168
|
def = { ...def, ...withChildStyles[part] };
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
-
if (isInput) {
|
|
171
|
+
if (scope.isInput()) {
|
|
172
172
|
def = { ...def, ...elementStyle.input[key] };
|
|
173
173
|
}
|
|
174
174
|
|
|
@@ -480,6 +480,9 @@ elementStyle.card = StyleSheet.create({
|
|
|
480
480
|
});
|
|
481
481
|
|
|
482
482
|
elementStyle.input = StyleSheet.create({
|
|
483
|
+
label: {
|
|
484
|
+
paddingLeft: 8,
|
|
485
|
+
},
|
|
483
486
|
inner: {
|
|
484
487
|
flex: 1,
|
|
485
488
|
width: '100%',
|
|
@@ -540,7 +543,6 @@ const styles = StyleSheet.create({
|
|
|
540
543
|
fontWeight: 400,
|
|
541
544
|
fontSize: 12,
|
|
542
545
|
color: 'labelColor',
|
|
543
|
-
paddingLeft: 8,
|
|
544
546
|
},
|
|
545
547
|
inner: { width: '100%' },
|
|
546
548
|
});
|