react-crud-mobile 1.3.186 → 1.3.187

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.
@@ -2194,6 +2194,8 @@ function UIElement(props) {
2194
2194
  };
2195
2195
  scope.dialogShow = function (args) {
2196
2196
  var _event$dialog;
2197
+ var event = Utils.nvl(args == null ? void 0 : args.event, {});
2198
+ if (event != null && event.debug) console.log(args);
2197
2199
  var main = ViewUtils.getCrud('view');
2198
2200
  var parent = main.dialog;
2199
2201
  var crud = args.crud;
@@ -2201,7 +2203,6 @@ function UIElement(props) {
2201
2203
  var edit = args.edit === true;
2202
2204
  var def = {};
2203
2205
  var rowItem = null;
2204
- var event = Utils.nvl(args == null ? void 0 : args.event, {});
2205
2206
  var component = event == null ? void 0 : event.component;
2206
2207
  if (crud.is('row')) {
2207
2208
  def.parent = crud.parent.parent;