react-crud-mobile 1.3.219 → 1.3.221
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 +4 -2
@@ -1459,10 +1459,14 @@ function UIModal(_ref) {
|
|
1459
1459
|
var ModalInner = function ModalInner() {
|
1460
1460
|
var Content = function Content() {
|
1461
1461
|
if (dialog != null && dialog.component) {
|
1462
|
-
var Aux = dialog == null ? void 0 : dialog.component
|
1463
|
-
|
1464
|
-
|
1465
|
-
}
|
1462
|
+
var Aux = dialog == null ? void 0 : dialog.component({
|
1463
|
+
crud: dialog.crud,
|
1464
|
+
scope: dialog.scope
|
1465
|
+
});
|
1466
|
+
console.log(Aux);
|
1467
|
+
return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
|
1468
|
+
children: Aux
|
1469
|
+
});
|
1466
1470
|
}
|
1467
1471
|
return /*#__PURE__*/jsxRuntime.jsx(UIChildren, {
|
1468
1472
|
scope: scope,
|
@@ -1471,6 +1475,7 @@ function UIModal(_ref) {
|
|
1471
1475
|
});
|
1472
1476
|
};
|
1473
1477
|
var content = /*#__PURE__*/jsxRuntime.jsx(Content, {});
|
1478
|
+
//v1
|
1474
1479
|
console.log(content);
|
1475
1480
|
if (original["transient"]) {
|
1476
1481
|
return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
|