react-crud-mobile 1.0.802 → 1.0.804

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.802",
2
+ "version": "1.0.804",
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.304",
47
+ "react-crud-utils": "^0.1.305",
48
48
  "react-dom": "19.0.0",
49
49
  "react-native": "0.79.2",
50
50
  "react-native-gesture-handler": "~2.24.0",
@@ -203,6 +203,8 @@ export default function UIElement(props: ElementType) {
203
203
  let def = { ...styles[key] };
204
204
  let hasChild = hasChildren();
205
205
 
206
+ type = Utils.nvl(original.layout, type);
207
+
206
208
  if (!part && !hasChild) {
207
209
  def = { ...def };
208
210
  }
@@ -66,6 +66,11 @@ export default function UIButton(props: ChildType) {
66
66
  css.minWidth = h;
67
67
  }
68
68
  }
69
+
70
+ if (element.variant === 'text') {
71
+ css.backgroundColor = 'transparent';
72
+ css.color = '#000';
73
+ }
69
74
  return css;
70
75
  });
71
76
  return (