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.
@@ -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
  }