igniteui-angular 12.3.17 → 12.3.18

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.
@@ -48545,8 +48545,10 @@
48545
48545
  });
48546
48546
  }
48547
48547
  else {
48548
- var range = { rowStart: this.activeNode.row, rowEnd: this.activeNode.row,
48549
- columnStart: this.activeNode.column, columnEnd: this.activeNode.column };
48548
+ var range = {
48549
+ rowStart: this.activeNode.row, rowEnd: this.activeNode.row,
48550
+ columnStart: this.activeNode.column, columnEnd: this.activeNode.column
48551
+ };
48550
48552
  this.grid.selectRange(range);
48551
48553
  this.grid.notifyChanges();
48552
48554
  }
@@ -49108,11 +49110,15 @@
49108
49110
  .find(function (c) { return _this.isColumnFullyVisible(c.visibleIndex); })) === null || _a === void 0 ? void 0 : _a.visibleIndex;
49109
49111
  var column = this.grid.visibleColumns.find(function (col) { return !col.columnLayout && col.visibleIndex === colIndex; });
49110
49112
  var rowInd = rowIndex ? rowIndex : (_b = this.grid.rowList.find(function (r) { return !_this.shouldPerformVerticalScroll(r.index, colIndex); })) === null || _b === void 0 ? void 0 : _b.index;
49111
- var node = { row: rowInd !== null && rowInd !== void 0 ? rowInd : 0,
49113
+ var node = {
49114
+ row: rowInd !== null && rowInd !== void 0 ? rowInd : 0,
49112
49115
  column: (_c = column === null || column === void 0 ? void 0 : column.visibleIndex) !== null && _c !== void 0 ? _c : 0, level: (_d = column === null || column === void 0 ? void 0 : column.level) !== null && _d !== void 0 ? _d : 0,
49113
49116
  mchCache: column ? { level: column.level, visibleIndex: column.visibleIndex } : {},
49114
- layout: column && column.columnLayoutChild ? { rowStart: column.rowStart, colStart: column.colStart,
49115
- rowEnd: column.rowEnd, colEnd: column.colEnd, columnVisibleIndex: column.visibleIndex } : null };
49117
+ layout: column && column.columnLayoutChild ? {
49118
+ rowStart: column.rowStart, colStart: column.colStart,
49119
+ rowEnd: column.rowEnd, colEnd: column.colEnd, columnVisibleIndex: column.visibleIndex
49120
+ } : null
49121
+ };
49116
49122
  return node;
49117
49123
  };
49118
49124
  IgxGridNavigationService.prototype.handleMCHeaderNav = function (key, ctrl) {
@@ -75612,8 +75618,8 @@
75612
75618
  };
75613
75619
  IgxHierarchicalGridNavigationService.prototype.clearActivation = function () {
75614
75620
  // clear if previous activation exists.
75615
- if (this.activeNode) {
75616
- this.activeNode.row = null;
75621
+ if (this.activeNode && Object.keys(this.activeNode).length) {
75622
+ this.activeNode = Object.assign({});
75617
75623
  }
75618
75624
  };
75619
75625
  IgxHierarchicalGridNavigationService.prototype.hasNextTarget = function (grid, index, isNext) {