igniteui-angular 21.1.5 → 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.
- package/fesm2022/igniteui-angular-grids-core.mjs +5 -0
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +9 -3
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs +4 -0
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-grids-grid.d.ts +1 -0
- package/types/igniteui-angular-grids-pivot-grid.d.ts +1 -0
|
@@ -22054,10 +22054,15 @@ class IgxGridNavigationService {
|
|
|
22054
22054
|
this.grid.selectionService.keyboardStateOnKeydown(this.activeNode, shift, shift && key === 'tab');
|
|
22055
22055
|
}
|
|
22056
22056
|
const position = this.getNextPosition(this.activeNode.row, this.activeNode.column, key, shift, ctrl, event);
|
|
22057
|
+
const shouldNotifyVirtualizedKeyboardSelection = ctrl && (key === 'arrowup' || key === 'up' || key === 'arrowdown' || key === 'down') &&
|
|
22058
|
+
this.shouldPerformVerticalScroll(position.rowIndex, position.colIndex);
|
|
22057
22059
|
if (NAVIGATION_KEYS.has(key)) {
|
|
22058
22060
|
event.preventDefault();
|
|
22059
22061
|
this.navigateInBody(position.rowIndex, position.colIndex, (obj) => {
|
|
22060
22062
|
obj.target.activate(event);
|
|
22063
|
+
if (shouldNotifyVirtualizedKeyboardSelection) {
|
|
22064
|
+
this.grid.notifyChanges();
|
|
22065
|
+
}
|
|
22061
22066
|
});
|
|
22062
22067
|
}
|
|
22063
22068
|
}
|