igniteui-angular 20.0.0 → 20.0.1

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.
@@ -44912,7 +44912,7 @@ class IgxColumnComponent {
44912
44912
  // estimate the exact index at which column will be inserted
44913
44913
  // takes into account initial unpinned index of the column
44914
44914
  if (!hasIndex) {
44915
- const indices = grid.unpinnedColumns.map(col => col.index);
44915
+ const indices = grid._unpinnedColumns.map(col => col.index);
44916
44916
  indices.push(this.index);
44917
44917
  indices.sort((a, b) => a - b);
44918
44918
  index = indices.indexOf(this.index);