@eqproject/eqp-dynamic-module 2.4.18 → 2.4.20

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.
@@ -9292,17 +9292,19 @@ class AddFormFieldComponent {
9292
9292
  this.dialogQERef = this.dialog.open(this.dialogQE, {
9293
9293
  disableClose: true,
9294
9294
  hasBackdrop: true,
9295
- width: "75%"
9295
+ panelClass: 'query-editor-modal',
9296
+ width: '90%'
9296
9297
  });
9297
9298
  }
9298
9299
  closeQEModal() {
9299
9300
  this.dialogQERef.close();
9300
9301
  }
9301
9302
  onExternalComponentOut(ev) {
9302
- if (ev.Behaviours.indexOf("send-out")) {
9303
+ console.log("event out on dynamic module", ev);
9304
+ if (ev.Behaviours.indexOf("send-out") != -1) {
9303
9305
  this.out.emit(ev);
9304
9306
  }
9305
- if (ev.Behaviours.indexOf("close-modal")) {
9307
+ if (ev.Behaviours.indexOf("close-modal") != -1) {
9306
9308
  this.closeQEModal();
9307
9309
  }
9308
9310
  }