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
@@ -2146,7 +2146,11 @@ function UIElement(props) {
|
|
2146
2146
|
style: getStyle('inner'),
|
2147
2147
|
children: /*#__PURE__*/jsx(Inner, {})
|
2148
2148
|
}), error && /*#__PURE__*/jsx(View, {
|
2149
|
-
style: getStyle('error'
|
2149
|
+
style: getStyle('error', {
|
2150
|
+
fontSize: 12,
|
2151
|
+
paddingTop: 4,
|
2152
|
+
color: '#e55b5b'
|
2153
|
+
}),
|
2150
2154
|
children: error
|
2151
2155
|
})]
|
2152
2156
|
}), scope.isType('list', 'repeat') && /*#__PURE__*/jsx(UIList, _extends({}, props, {
|