react-crud-mobile 1.3.219 → 1.3.220
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 +8 -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 +8 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIModal.tsx +3 -2
@@ -1450,10 +1450,14 @@ function UIModal(_ref) {
|
|
1450
1450
|
var ModalInner = function ModalInner() {
|
1451
1451
|
var Content = function Content() {
|
1452
1452
|
if (dialog != null && dialog.component) {
|
1453
|
-
var Aux = dialog == null ? void 0 : dialog.component
|
1454
|
-
|
1455
|
-
|
1456
|
-
}
|
1453
|
+
var Aux = dialog == null ? void 0 : dialog.component({
|
1454
|
+
crud: dialog.crud,
|
1455
|
+
scope: dialog.scope
|
1456
|
+
});
|
1457
|
+
console.log(Aux);
|
1458
|
+
return /*#__PURE__*/jsx(Fragment, {
|
1459
|
+
children: Aux
|
1460
|
+
});
|
1457
1461
|
}
|
1458
1462
|
return /*#__PURE__*/jsx(UIChildren, {
|
1459
1463
|
scope: scope,
|