@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.
22 lines (21 loc) • 551 B
TypeScript
import { TreeView } from '@syncfusion/ej2-navigations';
import { Popup } from '@syncfusion/ej2-popups';
import { Kanban } from './kanban';
/**
* Kanban mobile layout rendering module
*
*/
export declare class MobileLayout {
parent: Kanban;
popupOverlay: HTMLElement;
treeViewObj: TreeView;
treePopup: Popup;
constructor(parent: Kanban);
renderSwimlaneHeader(): void;
renderSwimlaneTree(): void;
private menuClick;
private treeSwimlaneClick;
hidePopup(): void;
getWidth(): number;
private drawNode;
}