react-crud-mobile 1.3.218 → 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 +9 -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 +9 -4
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIModal.tsx +5 -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,
|
@@ -1462,6 +1466,7 @@ function UIModal(_ref) {
|
|
1462
1466
|
});
|
1463
1467
|
};
|
1464
1468
|
var content = /*#__PURE__*/jsx(Content, {});
|
1469
|
+
console.log(content);
|
1465
1470
|
if (original["transient"]) {
|
1466
1471
|
return /*#__PURE__*/jsx(View, {
|
1467
1472
|
style: style('modalSafe'),
|