@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.
20 lines (19 loc) • 747 B
TypeScript
import { Kanban } from '../base/kanban';
/**
* Kanban CRUD module
*/
export declare class Crud {
private parent;
/**
* Constructor for CRUD module
*
* @param {Kanban} parent Accepts the kanban instance
* @private
*/
constructor(parent: Kanban);
addCard(cardData: Record<string, any> | Record<string, any>[], index?: number): void;
private getIndexFromData;
updateCard(cardData: Record<string, any> | Record<string, any>[], index?: number, isDropped?: boolean, dataDropIndexKeyFieldValue?: string, draggedKey?: string, droppedKey?: string, isMultipleDrag?: boolean): void;
deleteCard(cardData: string | number | Record<string, any> | Record<string, any>[]): void;
private priorityOrder;
}