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.
- package/bundles/igniteui-angular.umd.js +13 -7
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/grids/grid-navigation.service.js +12 -6
- package/esm2015/lib/grids/hierarchical-grid/hierarchical-grid-navigation.service.js +3 -3
- package/fesm2015/igniteui-angular.js +13 -7
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/package.json +1 -1
|
@@ -48545,8 +48545,10 @@
|
|
|
48545
48545
|
});
|
|
48546
48546
|
}
|
|
48547
48547
|
else {
|
|
48548
|
-
var range = {
|
|
48549
|
-
|
|
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 = {
|
|
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 ? {
|
|
49115
|
-
|
|
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
|
|
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) {
|