react-crud-mobile 1.3.242 → 1.3.244
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 +3 -1
- 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 +3 -1
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +1 -0
- package/src/elements/core/UIModal.tsx +2 -0
@@ -1403,6 +1403,7 @@ function UIModal(_ref) {
|
|
1403
1403
|
};
|
1404
1404
|
var curr = (_scope$currentDialog2 = scope.currentDialog) == null ? void 0 : _scope$currentDialog2.crud;
|
1405
1405
|
var main = ViewUtils.getCrud('view');
|
1406
|
+
console.log(curr);
|
1406
1407
|
if (!curr) {
|
1407
1408
|
return /*#__PURE__*/jsx(Fragment, {});
|
1408
1409
|
}
|
@@ -2292,7 +2293,8 @@ function UIElement(props) {
|
|
2292
2293
|
component: component,
|
2293
2294
|
scope: dialogScope,
|
2294
2295
|
close: close,
|
2295
|
-
props: event.props
|
2296
|
+
props: event.props,
|
2297
|
+
debug: event.debug
|
2296
2298
|
};
|
2297
2299
|
main.dialog = dialog;
|
2298
2300
|
scope.toggleDialog(true);
|