@bizy/core 19.13.3 → 19.13.4
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/fesm2022/bizy-core.mjs
CHANGED
|
@@ -4602,13 +4602,13 @@ class BizyPopupWrapperComponent {
|
|
|
4602
4602
|
this.disableDrag = this.#data.disableDrag;
|
|
4603
4603
|
}
|
|
4604
4604
|
}
|
|
4605
|
-
loadDynamicComponent() {
|
|
4605
|
+
loadDynamicComponent = () => {
|
|
4606
4606
|
if (this.#data && this.#data.component) {
|
|
4607
4607
|
this.dynamicComponentContainer.clear();
|
|
4608
4608
|
this.dynamicComponentContainer.createComponent(this.#data.component);
|
|
4609
4609
|
this.#ref.detectChanges();
|
|
4610
4610
|
}
|
|
4611
|
-
}
|
|
4611
|
+
};
|
|
4612
4612
|
async close() {
|
|
4613
4613
|
this.disabled = true;
|
|
4614
4614
|
this.#popup.close({ id: this.#dialogRef.id });
|
|
@@ -4705,13 +4705,13 @@ class BizyFullScreenPopupWrapperComponent {
|
|
|
4705
4705
|
ngAfterViewInit() {
|
|
4706
4706
|
this.loadDynamicComponent();
|
|
4707
4707
|
}
|
|
4708
|
-
loadDynamicComponent() {
|
|
4708
|
+
loadDynamicComponent = () => {
|
|
4709
4709
|
if (this.#component) {
|
|
4710
4710
|
this.dynamicComponentContainer.clear();
|
|
4711
4711
|
this.dynamicComponentContainer.createComponent(this.#component);
|
|
4712
4712
|
this.#ref.detectChanges();
|
|
4713
4713
|
}
|
|
4714
|
-
}
|
|
4714
|
+
};
|
|
4715
4715
|
async close() {
|
|
4716
4716
|
this.disabled = true;
|
|
4717
4717
|
this.#popup.close({ id: this.#dialogRef.id });
|