UNPKG

@syncfusion/ej2-angular-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 Angular

96 lines (95 loc) 2.96 kB
import { ViewContainerRef } from '@angular/core'; import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base'; import * as i0 from "@angular/core"; /** * `e-columns` directive represent a columns of the Kanban board. * It must be contained in a Kanban component(`ejs-kanban`). * ```html * <ejs-kanban> * <e-columns> * <e-column keyField='Open' textField='To Do'></e-column> * <e-column keyField='Close' textField='Completed'></e-column> * </e-columns> * </ejs-kanban> * ``` */ export declare class ColumnDirective extends ComplexBase<ColumnDirective> { private viewContainerRef; directivePropList: any; /** * Enable or disable column drag * @default true */ allowDrag: any; /** * Enable or disable column drop * @default true */ allowDrop: any; /** * Enable or disable toggle column * @default false */ allowToggle: any; /** * Defines the column header title * @default null */ headerText: any; /** * Defines the collapsed or expandable state * @default true */ isExpanded: any; /** * Defines the column keyField. It supports both number and string type. * String type supports the multiple column keys and number type does not support the multiple column keys. * @default null */ keyField: any; /** * Defines the maximum card count in column * @default null * @asptype int */ maxCount: any; /** * Defines the minimum card count in column * @default null * @asptype int */ minCount: any; /** * Enable or disable cell add button * @default false */ showAddButton: any; /** * Enable or disable card count in column * @default true */ showItemCount: any; /** * Defines the column transition * @default [] */ transitionColumns: any; /** * Defines the column template * @default null * @asptype string */ template: any; constructor(viewContainerRef: ViewContainerRef); static ɵfac: i0.ɵɵFactoryDeclaration<ColumnDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnDirective, "e-columns>e-column", never, { "allowDrag": "allowDrag"; "allowDrop": "allowDrop"; "allowToggle": "allowToggle"; "headerText": "headerText"; "isExpanded": "isExpanded"; "keyField": "keyField"; "maxCount": "maxCount"; "minCount": "minCount"; "showAddButton": "showAddButton"; "showItemCount": "showItemCount"; "template": "template"; "transitionColumns": "transitionColumns"; }, {}, ["template"]>; } /** * Column Array Directive * @private */ export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> { constructor(); static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsDirective, "ejs-kanban>e-columns", never, {}, {}, ["children"]>; }