@acorex/components 4.2.26 → 4.2.27

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