igniteui-angular 16.0.23 → 16.0.24

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.
@@ -65816,7 +65816,6 @@ class IgxGridBaseDirective extends DisplayDensityBase {
65816
65816
  computedWidth = this.calcWidth ||
65817
65817
  parseInt(this.document.defaultView.getComputedStyle(this.nativeElement).getPropertyValue('width'), 10);
65818
65818
  }
65819
- computedWidth -= this.featureColumnsWidth();
65820
65819
  const visibleChildColumns = this.visibleColumns.filter(c => !c.columnGroup);
65821
65820
  // Column layouts related
65822
65821
  let visibleCols = [];
@@ -65847,6 +65846,7 @@ class IgxGridBaseDirective extends DisplayDensityBase {
65847
65846
  if (!sumExistingWidths && !columnsToSize) {
65848
65847
  return '0px';
65849
65848
  }
65849
+ computedWidth -= this.featureColumnsWidth();
65850
65850
  const columnWidth = Math.floor(!Number.isFinite(sumExistingWidths) ?
65851
65851
  Math.max(computedWidth / columnsToSize, this.minColumnWidth) :
65852
65852
  Math.max((computedWidth - sumExistingWidths) / columnsToSize, this.minColumnWidth));
@@ -67074,8 +67074,8 @@ class IgxGridBaseDirective extends DisplayDensityBase {
67074
67074
  sizing process which of course, uses values from the caches, thus resulting
67075
67075
  in a broken layout.
67076
67076
  */
67077
- this.resetCaches(recalcFeatureWidth);
67078
67077
  this.cdr.detectChanges();
67078
+ this.resetCaches(recalcFeatureWidth);
67079
67079
  const hasScroll = this.hasVerticalScroll();
67080
67080
  this.calculateGridWidth();
67081
67081
  this.resetCaches(recalcFeatureWidth);