react-crud-mobile 1.3.216 → 1.3.217
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 -0
- 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 -0
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIModal.tsx +4 -0
@@ -1451,6 +1451,11 @@ function UIModal(_ref) {
|
|
1451
1451
|
var Content = function Content() {
|
1452
1452
|
if (dialog != null && dialog.component) {
|
1453
1453
|
var Aux = dialog == null ? void 0 : dialog.component;
|
1454
|
+
var x = Aux({
|
1455
|
+
crud: dialog.crud,
|
1456
|
+
scope: dialog.scope
|
1457
|
+
});
|
1458
|
+
console.log(x);
|
1454
1459
|
return /*#__PURE__*/jsx(Aux, {
|
1455
1460
|
crud: curr
|
1456
1461
|
}, curr.uuid);
|