@acorex/components 4.2.26 → 4.2.29

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.
@@ -13486,7 +13486,8 @@ class AXTabPageHostComponent {
13486
13486
  active() {
13487
13487
  const func = this.componentRef?.instance?.onActivated;
13488
13488
  if (func) {
13489
- func.onActivated();
13489
+ const f = func.bind(this.componentRef.instance);
13490
+ f();
13490
13491
  }
13491
13492
  }
13492
13493
  async ngAfterViewInit() {
@@ -13605,7 +13606,7 @@ class AXTabPageRendererComponent {
13605
13606
  this.childs.push(componentRef);
13606
13607
  setTimeout(() => {
13607
13608
  componentRef.changeDetectorRef.detectChanges();
13608
- host.active();
13609
+ //host.active();
13609
13610
  }, 10);
13610
13611
  }
13611
13612
  catch (error) {