react-crud-mobile 1.3.229 → 1.3.231

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,6 +1,6 @@
1
1
  {
2
2
  "name": "react-crud-mobile",
3
- "version": "1.3.229",
3
+ "version": "1.3.231",
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.408",
49
+ "react-crud-utils": "^0.1.409",
50
50
  "react-dom": "19.1.0",
51
51
  "react-native": "0.81.4",
52
52
  "react-native-draggable-flatlist": "^4.0.3",
@@ -522,7 +522,17 @@ export default function UIElement(props: ElementType) {
522
522
  <View style={getStyle('inner')}>
523
523
  <Inner />
524
524
  </View>
525
- {error && <View style={getStyle('error')}>{error}</View>}
525
+ {error && (
526
+ <View
527
+ style={getStyle('error', {
528
+ fontSize: 12,
529
+ paddingTop: 4,
530
+ color: '#e55b5b',
531
+ })}
532
+ >
533
+ {error}
534
+ </View>
535
+ )}
526
536
  </>
527
537
  )}
528
538
  {scope.isType('list', 'repeat') && (