react-crud-mobile 1.3.230 → 1.3.232
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 +2 -2
- package/src/elements/UIElement.tsx +11 -1
@@ -2155,7 +2155,11 @@ function UIElement(props) {
|
|
2155
2155
|
style: getStyle('inner'),
|
2156
2156
|
children: /*#__PURE__*/jsxRuntime.jsx(Inner, {})
|
2157
2157
|
}), error && /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
2158
|
-
style: getStyle('error'
|
2158
|
+
style: getStyle('error', {
|
2159
|
+
fontSize: 12,
|
2160
|
+
paddingTop: 4,
|
2161
|
+
color: '#e55b5b'
|
2162
|
+
}),
|
2159
2163
|
children: error
|
2160
2164
|
})]
|
2161
2165
|
}), scope.isType('list', 'repeat') && /*#__PURE__*/jsxRuntime.jsx(UIList, _extends({}, props, {
|