@syncfusion/ej2-react-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. for React
27 lines (26 loc) • 931 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { ColumnsModel } from '@syncfusion/ej2-kanban';
export interface ColumnsDirTypecast {
template?: string | Function | any;
}
/**
* `ColumnsDirective` represent a columns of the react Kanban board.
* It must be contained in a Kanban component(`KanbanComponent`).
* ```tsx
* <KanbanComponent>
* <ColumnsDirective>
* <ColumnDirective keyField='Open' textField='To Do'></ColumnDirective>
* <ColumnDirective keyField='Close' textField='Completed'></ColumnDirective>
* <ColumnsDirective>
* </KanbanComponent>
* ```
*/
export declare class ColumnDirective extends ComplexBase<ColumnsModel | ColumnsDirTypecast & {
children?: React.ReactNode;
}, ColumnsModel | ColumnsDirTypecast> {
static moduleName: string;
}
export declare class ColumnsDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}