react-crud-mobile 1.3.223 → 1.3.225
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 +6 -4
- 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 +6 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +9 -1
- package/src/elements/core/UIModal.tsx +3 -2
@@ -1460,10 +1460,11 @@ function UIModal(_ref) {
|
|
1460
1460
|
var ModalInner = function ModalInner() {
|
1461
1461
|
var Content = function Content() {
|
1462
1462
|
if (dialog != null && dialog.component) {
|
1463
|
-
var
|
1464
|
-
|
1463
|
+
var cprops = dialog.props;
|
1464
|
+
var Aux = dialog.component;
|
1465
|
+
return /*#__PURE__*/jsxRuntime.jsx(Aux, _extends({
|
1465
1466
|
crud: curr
|
1466
|
-
}, curr.uuid);
|
1467
|
+
}, cprops), curr.uuid);
|
1467
1468
|
}
|
1468
1469
|
return /*#__PURE__*/jsxRuntime.jsx(UIChildren, {
|
1469
1470
|
scope: scope,
|
@@ -2267,7 +2268,8 @@ function UIElement(props) {
|
|
2267
2268
|
parent: parent,
|
2268
2269
|
component: component,
|
2269
2270
|
scope: dialogScope,
|
2270
|
-
close: close
|
2271
|
+
close: close,
|
2272
|
+
props: event.props
|
2271
2273
|
};
|
2272
2274
|
main.dialog = dialog;
|
2273
2275
|
scope.toggleDialog(true);
|