@eqproject/eqp-dynamic-module 2.4.19 → 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 +4 -3
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +3 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +3 -2
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -9300,10 +9300,11 @@ class AddFormFieldComponent {
|
|
|
9300
9300
|
this.dialogQERef.close();
|
|
9301
9301
|
}
|
|
9302
9302
|
onExternalComponentOut(ev) {
|
|
9303
|
-
|
|
9303
|
+
console.log("event out on dynamic module", ev);
|
|
9304
|
+
if (ev.Behaviours.indexOf("send-out") != -1) {
|
|
9304
9305
|
this.out.emit(ev);
|
|
9305
9306
|
}
|
|
9306
|
-
if (ev.Behaviours.indexOf("close-modal")) {
|
|
9307
|
+
if (ev.Behaviours.indexOf("close-modal") != -1) {
|
|
9307
9308
|
this.closeQEModal();
|
|
9308
9309
|
}
|
|
9309
9310
|
}
|