react-crud-mobile 1.0.548 → 1.0.550
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 +4 -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 +4 -2
- 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.550",
|
|
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
|
|
|
@@ -505,8 +505,10 @@ elementStyle.quantity = {
|
|
|
505
505
|
backgroundColor: 'primarySoft',
|
|
506
506
|
fontWeight: 600,
|
|
507
507
|
fontSize: 16,
|
|
508
|
-
padding: 5,
|
|
509
508
|
borderRadius: 25,
|
|
509
|
+
borderWidth: 0,
|
|
510
|
+
paddingHorizontal: 5,
|
|
511
|
+
paddingVertical: 5,
|
|
510
512
|
flexWrap: 'nowrap',
|
|
511
513
|
flex: 1,
|
|
512
514
|
flexDirection: 'row',
|