@bizy/core 19.0.12 → 19.0.13
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
|
@@ -2610,6 +2610,13 @@ class BizyGridComponent {
|
|
|
2610
2610
|
this.document = document;
|
|
2611
2611
|
this.renderer = renderer;
|
|
2612
2612
|
this.elementRef = elementRef;
|
|
2613
|
+
effect(() => {
|
|
2614
|
+
this.#updateView();
|
|
2615
|
+
if (!this.#view) {
|
|
2616
|
+
this.#view = this.gridDirective.viewContainerRef;
|
|
2617
|
+
this.#view.createEmbeddedView(this.content);
|
|
2618
|
+
}
|
|
2619
|
+
});
|
|
2613
2620
|
}
|
|
2614
2621
|
ngAfterContentInit() {
|
|
2615
2622
|
this.#rowScrollingMutationObserver = new MutationObserver(() => {
|
|
@@ -2617,13 +2624,6 @@ class BizyGridComponent {
|
|
|
2617
2624
|
return;
|
|
2618
2625
|
}
|
|
2619
2626
|
this.items = this.gridDirective.items;
|
|
2620
|
-
effect(() => {
|
|
2621
|
-
this.#updateView();
|
|
2622
|
-
if (!this.#view) {
|
|
2623
|
-
this.#view = this.gridDirective.viewContainerRef;
|
|
2624
|
-
this.#view.createEmbeddedView(this.content);
|
|
2625
|
-
}
|
|
2626
|
-
});
|
|
2627
2627
|
this.#rowScrollingMutationObserver.disconnect();
|
|
2628
2628
|
this.ref.detectChanges();
|
|
2629
2629
|
});
|