@clr/angular
Version:
Angular components for Clarity
13 lines (12 loc) • 790 B
TypeScript
import { CellCoordinates } from '../key-navigation-grid.controller';
import { DefaultKeyNavigationStrategy } from './default';
export declare class ExpandedRowKeyNavigationStrategy extends DefaultKeyNavigationStrategy {
keyUp(currentCellCoords: CellCoordinates): CellCoordinates;
keyDown(currentCellCoords: CellCoordinates): CellCoordinates;
keyLeft(currentCellCoords: CellCoordinates): CellCoordinates;
keyRight(currentCellCoords: CellCoordinates): CellCoordinates;
keyEnd(currentCellCoords: CellCoordinates, ctrlKey: boolean): CellCoordinates;
keyHome(currentCellCoords: CellCoordinates, ctrlKey: boolean): CellCoordinates;
keyPageUp(currentCellCoords: CellCoordinates): CellCoordinates;
keyPageDown(currentCellCoords: CellCoordinates): CellCoordinates;
}