igniteui-angular 20.1.23 → 20.1.25

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.
@@ -82157,6 +82157,9 @@ class IgxPivotGridComponent extends IgxGridBaseDirective {
82157
82157
  // Trigger pipes to recalc heights for the horizontal layout mrl rows.
82158
82158
  this.regroupTrigger++;
82159
82159
  }
82160
+ else {
82161
+ this.pipeTrigger++;
82162
+ }
82160
82163
  }
82161
82164
  /**
82162
82165
  * @hidden @internal
@@ -87902,6 +87905,7 @@ class IgxHierarchicalGridNavigationService extends IgxGridNavigationService {
87902
87905
  if (this.activeNode && Object.keys(this.activeNode).length) {
87903
87906
  this.activeNode = Object.assign({});
87904
87907
  }
87908
+ this.grid.activeNodeChange.emit();
87905
87909
  }
87906
87910
  hasNextTarget(grid, index, isNext) {
87907
87911
  const targetRowIndex = isNext ? index + 1 : index - 1;