igniteui-angular 21.1.4 → 21.1.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.
@@ -3766,7 +3766,7 @@ class DefaultMergeStrategy {
3766
3766
  index++;
3767
3767
  continue;
3768
3768
  }
3769
- const recToUpdateData = recData ?? { recordRef: grid.isGhostRecord(rec) ? rec.recordRef : rec, cellMergeMeta: new Map(), ghostRecord: rec.ghostRecord };
3769
+ const recToUpdateData = recData ?? { recordRef: grid.isGhostRecord(rec) ? rec.recordRef : rec, cellMergeMeta: new Map(), ghostRecord: rec.ghostRecord, index: index };
3770
3770
  recToUpdateData.cellMergeMeta.set(field, { rowSpan: 1, childRecords: [] });
3771
3771
  if (prev && comparer.call(this, prev.recordRef, recToUpdateData.recordRef, field, isDate, isTime) && prev.ghostRecord === recToUpdateData.ghostRecord) {
3772
3772
  const root = prev.cellMergeMeta.get(field)?.root ?? prev;