react-crud-mobile 1.0.760 → 1.0.761
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 +7 -3
- 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 +7 -3
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +3 -3
|
@@ -1642,14 +1642,15 @@ function UIElement(props) {
|
|
|
1642
1642
|
});
|
|
1643
1643
|
};
|
|
1644
1644
|
var Include = function Include(_ref) {
|
|
1645
|
-
var name = _ref.name
|
|
1645
|
+
var name = _ref.name,
|
|
1646
|
+
style = _ref.style;
|
|
1646
1647
|
if (props[name]) {
|
|
1647
1648
|
var define = reactCrudUtils.ComponentUtils.getDefine(props, name);
|
|
1648
1649
|
if (!reactCrudUtils.Utils.isEmpty(define)) {
|
|
1649
1650
|
return /*#__PURE__*/jsxRuntime.jsx(UIChildren, _extends({}, props, {
|
|
1650
1651
|
scope: scope,
|
|
1651
1652
|
crud: crud,
|
|
1652
|
-
style: getStyle(name),
|
|
1653
|
+
style: getStyle(name, style),
|
|
1653
1654
|
children: define
|
|
1654
1655
|
}));
|
|
1655
1656
|
}
|
|
@@ -1677,7 +1678,10 @@ function UIElement(props) {
|
|
|
1677
1678
|
style: getStyle('label'),
|
|
1678
1679
|
children: scope.getLabel()
|
|
1679
1680
|
}), /*#__PURE__*/jsxRuntime.jsx(Include, {
|
|
1680
|
-
name: "actions"
|
|
1681
|
+
name: "actions",
|
|
1682
|
+
style: {
|
|
1683
|
+
width: 'auto'
|
|
1684
|
+
}
|
|
1681
1685
|
})]
|
|
1682
1686
|
}), isShowInner() && /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1683
1687
|
children: [/*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|