@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.
- package/esm2020/lib/components/private/add-form-field/add-form-field.component.mjs +6 -4
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +5 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +5 -3
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -9319,17 +9319,19 @@ class AddFormFieldComponent {
|
|
|
9319
9319
|
this.dialogQERef = this.dialog.open(this.dialogQE, {
|
|
9320
9320
|
disableClose: true,
|
|
9321
9321
|
hasBackdrop: true,
|
|
9322
|
-
|
|
9322
|
+
panelClass: 'query-editor-modal',
|
|
9323
|
+
width: '90%'
|
|
9323
9324
|
});
|
|
9324
9325
|
}
|
|
9325
9326
|
closeQEModal() {
|
|
9326
9327
|
this.dialogQERef.close();
|
|
9327
9328
|
}
|
|
9328
9329
|
onExternalComponentOut(ev) {
|
|
9329
|
-
|
|
9330
|
+
console.log("event out on dynamic module", ev);
|
|
9331
|
+
if (ev.Behaviours.indexOf("send-out") != -1) {
|
|
9330
9332
|
this.out.emit(ev);
|
|
9331
9333
|
}
|
|
9332
|
-
if (ev.Behaviours.indexOf("close-modal")) {
|
|
9334
|
+
if (ev.Behaviours.indexOf("close-modal") != -1) {
|
|
9333
9335
|
this.closeQEModal();
|
|
9334
9336
|
}
|
|
9335
9337
|
}
|