react-crud-mobile 1.0.827 → 1.0.828
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 +9 -2
- 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 +9 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +6 -2
|
@@ -1767,8 +1767,15 @@ function UIElement(props) {
|
|
|
1767
1767
|
var isCard = scope.is('type|layout', 'card');
|
|
1768
1768
|
if (isCard) {
|
|
1769
1769
|
return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
|
1770
|
-
style: getStyle('card', _extends({}, boxStyle.box
|
|
1771
|
-
|
|
1770
|
+
style: getStyle('card', _extends({}, boxStyle.box, {
|
|
1771
|
+
alignSelf: 'stretch'
|
|
1772
|
+
})),
|
|
1773
|
+
children: /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|
|
1774
|
+
style: getStyle('cardInner', {
|
|
1775
|
+
padding: 5
|
|
1776
|
+
}),
|
|
1777
|
+
children: props.children
|
|
1778
|
+
})
|
|
1772
1779
|
});
|
|
1773
1780
|
}
|
|
1774
1781
|
return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|