@syncfusion/ej2-kanban
Version:
The Kanban board is an efficient way to visualize the workflow at each stage along its path to completion. The most important features available are Swim lane, filtering, and editing.
26 lines (25 loc) • 639 B
TypeScript
import { Kanban } from '../base';
/**
* Kanban keyboard module
*/
export declare class Keyboard {
private parent;
private keyboardModule;
private multiSelection;
private keyConfigs;
/**
* Constructor for keyboard module
*
* @param {Kanban} parent Accepts the kanban instance
*/
constructor(parent: Kanban);
private keyActionHandler;
private processCardSelection;
private processLeftRightArrow;
private processUpDownArrow;
private removeSelection;
cardTabIndexRemove(): void;
private processEnter;
addRemoveTabIndex(action: string): void;
destroy(): void;
}