react-crud-mobile 1.3.230 → 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/dist/react-crud-mobile.cjs.development.js +5 -1
- 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 -1
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +11 -1
package/package.json
CHANGED
@@ -522,7 +522,17 @@ export default function UIElement(props: ElementType) {
|
|
522
522
|
<View style={getStyle('inner')}>
|
523
523
|
<Inner />
|
524
524
|
</View>
|
525
|
-
{error &&
|
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') && (
|