igniteui-webcomponents-grids 6.1.0-rc.0 → 6.1.0-rc.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.
package/grids/combined.js CHANGED
@@ -24462,6 +24462,7 @@ var vn = (() => {
24462
24462
  this.triggerAddAnimationClass = false, this.addAnimationEnd.emit(this);
24463
24463
  }
24464
24464
  getMergeCellSpan(e) {
24465
+ if (this.grid.shouldResize) return null;
24465
24466
  let t = this.metaData.cellMergeMeta.get(e.field).rowSpan, o = "", s = this.pinned && !this.disabled, a = this.grid.isRowPinningToTop && !s ? this.index - this.grid.pinnedRecordsCount : this.index;
24466
24467
  for (let l = a; l < a + t; l++) {
24467
24468
  let c = this.grid.verticalScrollContainer.getSizeAt(l);
@@ -24490,8 +24491,9 @@ var vn = (() => {
24490
24491
  return this.grid.isRecordMerged(t) && (t = e.recordRef), this.grid.isTreeRow && this.grid.isTreeRow(t) && (t = t.data), this.grid.primaryKey ? t[this.grid.primaryKey] : t;
24491
24492
  }
24492
24493
  getRowHeight() {
24494
+ if (this.grid.shouldResize) return null;
24493
24495
  let e = this.pinned && !this.disabled, t = this.grid.isRowPinningToTop && !e ? this.index - this.grid.pinnedRecordsCount : this.index;
24494
- return this.grid._cdrRequests && this.grid.verticalScrollContainer.recalcUpdateSizes(), this.grid.verticalScrollContainer.getSizeAt(t) - 1 || this.grid.rowHeight;
24496
+ return this.grid._cdrRequests && this.grid.verticalScrollContainer.recalcUpdateSizes(), this.grid.verticalScrollContainer.getSizeAt(t) || this.grid.rowHeight;
24495
24497
  }
24496
24498
  get resolveDragIndicatorClasses() {
24497
24499
  let e = "igx-grid__drag-indicator", t = this.grid.rowDragging && !this.dragging ? "igx-grid__drag-indicator--off" : "";
@@ -41745,7 +41747,7 @@ var Gc = (() => {
41745
41747
  return this.renderedActualRowHeight * Math.min(this._defaultTargetRecordNumber, this.paginator ? Math.min(e, this.paginator.perPage) : e);
41746
41748
  }
41747
41749
  get renderedRowHeight() {
41748
- return this.rowHeight + 1;
41750
+ return this.hasCellsToMerge ? this.rowHeight : this.rowHeight + 1;
41749
41751
  }
41750
41752
  get outerWidth() {
41751
41753
  return this.hasVerticalScroll() ? this.calcWidth + this.scrollSize : this.calcWidth;