igniteui-angular 22.0.5 → 22.0.6

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.
@@ -2977,7 +2977,9 @@ class IgxPivotGridComponent extends IgxGridBaseDirective {
2977
2977
  onResourceChangeHandle(this.destroy$, () => {
2978
2978
  this.setDateDimensionsLocaleData();
2979
2979
  // Since the columns are kinda static, due to assigning DisplayName on init, they need to be regenerated.
2980
- this.setupColumns();
2980
+ Promise.resolve().then(() => {
2981
+ this.setupColumns();
2982
+ });
2981
2983
  }, this);
2982
2984
  });
2983
2985
  if (this.valueChipTemplateDirective) {