@clr/angular
Version:
Angular components for Clarity
13 lines (12 loc) • 810 B
TypeScript
import { CellCoordinates } from '../key-navigation-grid.controller';
import { ExpandedRowKeyNavigationStrategy } from './expanded-row';
export declare class ExpandedColumnsRowKeyNavigationStrategy extends ExpandedRowKeyNavigationStrategy {
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;
}