react-crud-mobile 1.3.95 → 1.3.96

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.3.95",
2
+ "version": "1.3.96",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -606,6 +606,7 @@ export default function UIElement(props: ElementType) {
606
606
  let edit = args.edit === true;
607
607
  let def: any = {};
608
608
  let rowItem = null;
609
+ let component = args?.event?.component;
609
610
 
610
611
  if (crud.is('row')) {
611
612
  def.parent = crud.parent.parent;
@@ -629,7 +630,7 @@ export default function UIElement(props: ElementType) {
629
630
  ...def,
630
631
  });
631
632
 
632
- let dialog = { crud: d, parent };
633
+ let dialog = { crud: d, parent, component };
633
634
 
634
635
  main.dialog = dialog;
635
636
  scope.toggleDialog(true);