igniteui-angular 15.1.25 → 15.1.26
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.
|
@@ -66533,7 +66533,6 @@ class IgxGridBaseDirective extends DisplayDensityBase {
|
|
|
66533
66533
|
computedWidth = this.calcWidth ||
|
|
66534
66534
|
parseInt(this.document.defaultView.getComputedStyle(this.nativeElement).getPropertyValue('width'), 10);
|
|
66535
66535
|
}
|
|
66536
|
-
computedWidth -= this.featureColumnsWidth();
|
|
66537
66536
|
const visibleChildColumns = this.visibleColumns.filter(c => !c.columnGroup);
|
|
66538
66537
|
// Column layouts related
|
|
66539
66538
|
let visibleCols = [];
|
|
@@ -66564,6 +66563,7 @@ class IgxGridBaseDirective extends DisplayDensityBase {
|
|
|
66564
66563
|
if (!sumExistingWidths && !columnsToSize) {
|
|
66565
66564
|
return '0px';
|
|
66566
66565
|
}
|
|
66566
|
+
computedWidth -= this.featureColumnsWidth();
|
|
66567
66567
|
const columnWidth = Math.floor(!Number.isFinite(sumExistingWidths) ?
|
|
66568
66568
|
Math.max(computedWidth / columnsToSize, this.minColumnWidth) :
|
|
66569
66569
|
Math.max((computedWidth - sumExistingWidths) / columnsToSize, this.minColumnWidth));
|
|
@@ -67808,8 +67808,8 @@ class IgxGridBaseDirective extends DisplayDensityBase {
|
|
|
67808
67808
|
sizing process which of course, uses values from the caches, thus resulting
|
|
67809
67809
|
in a broken layout.
|
|
67810
67810
|
*/
|
|
67811
|
-
this.resetCaches(recalcFeatureWidth);
|
|
67812
67811
|
this.cdr.detectChanges();
|
|
67812
|
+
this.resetCaches(recalcFeatureWidth);
|
|
67813
67813
|
const hasScroll = this.hasVerticalScroll();
|
|
67814
67814
|
this.calculateGridWidth();
|
|
67815
67815
|
this.resetCaches(recalcFeatureWidth);
|