@syncfusion/ej2-angular-kanban 30.1.39-ngcc → 30.2.4-ngcc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@syncfusion/ej2-angular-kanban.es5.js +355 -0
- package/@syncfusion/ej2-angular-kanban.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-kanban.js +323 -0
- package/@syncfusion/ej2-angular-kanban.js.map +1 -0
- package/LICENSE +10 -0
- package/dist/ej2-angular-kanban.umd.js +397 -0
- package/dist/ej2-angular-kanban.umd.js.map +1 -0
- package/dist/ej2-angular-kanban.umd.min.js +11 -0
- package/dist/ej2-angular-kanban.umd.min.js.map +1 -0
- package/ej2-angular-kanban.d.ts +5 -0
- package/ej2-angular-kanban.metadata.json +1 -0
- package/package.json +10 -23
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/index.d.ts +6 -6
- package/src/kanban/columns.directive.d.ts +90 -95
- package/src/kanban/kanban-all.module.d.ts +5 -11
- package/src/kanban/kanban.component.d.ts +59 -62
- package/src/kanban/kanban.module.d.ts +5 -13
- package/src/kanban/stackedheaders.directive.d.ts +36 -41
- package/CHANGELOG.md +0 -507
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/index.mjs +0 -7
- package/esm2020/src/kanban/columns.directive.mjs +0 -66
- package/esm2020/src/kanban/kanban-all.module.mjs +0 -23
- package/esm2020/src/kanban/kanban.component.mjs +0 -100
- package/esm2020/src/kanban/kanban.module.mjs +0 -43
- package/esm2020/src/kanban/stackedheaders.directive.mjs +0 -58
- package/esm2020/syncfusion-ej2-angular-kanban.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-kanban.mjs +0 -277
- package/fesm2015/syncfusion-ej2-angular-kanban.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-kanban.mjs +0 -277
- package/fesm2020/syncfusion-ej2-angular-kanban.mjs.map +0 -1
- package/syncfusion-ej2-angular-kanban.d.ts +0 -5
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-kanban",
|
|
3
|
-
"version": "30.
|
|
3
|
+
"version": "30.2.4-ngcc",
|
|
4
4
|
"description": "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",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
7
7
|
"schematics": "./schematics/collection.json",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@syncfusion/ej2-base": "~30.
|
|
10
|
-
"@syncfusion/ej2-angular-base": "~30.
|
|
11
|
-
"@syncfusion/ej2-kanban": "30.
|
|
9
|
+
"@syncfusion/ej2-base": "~30.2.4",
|
|
10
|
+
"@syncfusion/ej2-angular-base": "~30.2.4",
|
|
11
|
+
"@syncfusion/ej2-kanban": "30.2.4"
|
|
12
12
|
},
|
|
13
|
+
"devDependencies": {},
|
|
13
14
|
"keywords": [
|
|
14
15
|
"angular",
|
|
15
16
|
"ng",
|
|
@@ -22,24 +23,10 @@
|
|
|
22
23
|
"url": "https://github.com/syncfusion/ej2-angular-ui-components.git"
|
|
23
24
|
},
|
|
24
25
|
"sideEffects": false,
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"typings": "syncfusion-ej2-angular-kanban.d.ts",
|
|
31
|
-
"exports": {
|
|
32
|
-
"./package.json": {
|
|
33
|
-
"default": "./package.json"
|
|
34
|
-
},
|
|
35
|
-
".": {
|
|
36
|
-
"types": "./syncfusion-ej2-angular-kanban.d.ts",
|
|
37
|
-
"esm2020": "./esm2020/syncfusion-ej2-angular-kanban.mjs",
|
|
38
|
-
"es2020": "./fesm2020/syncfusion-ej2-angular-kanban.mjs",
|
|
39
|
-
"es2015": "./fesm2015/syncfusion-ej2-angular-kanban.mjs",
|
|
40
|
-
"node": "./fesm2015/syncfusion-ej2-angular-kanban.mjs",
|
|
41
|
-
"default": "./fesm2020/syncfusion-ej2-angular-kanban.mjs"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
26
|
+
"main": "dist/ej2-angular-kanban.umd.js",
|
|
27
|
+
"module": "@syncfusion/ej2-angular-kanban.es5.js",
|
|
28
|
+
"es2015": "@syncfusion/ej2-angular-kanban.js",
|
|
29
|
+
"typings": "ej2-angular-kanban.d.ts",
|
|
30
|
+
"metadata": "ej2-angular-kanban.metadata.json",
|
|
44
31
|
"homepage": "https://www.syncfusion.com/angular-components"
|
|
45
32
|
}
|
package/public_api.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './src/index';
|
|
1
|
+
export * from './src/index';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-kanban";
|
|
2
|
-
export declare const pkgVer = "^
|
|
2
|
+
export declare const pkgVer = "^30.1.37";
|
|
3
3
|
export declare const moduleName = "KanbanModule";
|
|
4
|
-
export declare const themeVer = "~
|
|
4
|
+
export declare const themeVer = "~30.1.37";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-kanban';
|
|
4
|
-
exports.pkgVer = '^30.
|
|
4
|
+
exports.pkgVer = '^30.2.4';
|
|
5
5
|
exports.moduleName = 'KanbanModule';
|
|
6
|
-
exports.themeVer = '~30.
|
|
6
|
+
exports.themeVer = '~30.2.4';
|
package/src/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { ColumnDirective, ColumnsDirective } from './kanban/columns.directive';
|
|
2
|
-
export { StackedHeaderDirective, StackedHeadersDirective } from './kanban/stackedheaders.directive';
|
|
3
|
-
export { KanbanComponent } from './kanban/kanban.component';
|
|
4
|
-
export { KanbanModule } from './kanban/kanban.module';
|
|
5
|
-
export { KanbanAllModule } from './kanban/kanban-all.module';
|
|
6
|
-
export * from '@syncfusion/ej2-kanban';
|
|
1
|
+
export { ColumnDirective, ColumnsDirective } from './kanban/columns.directive';
|
|
2
|
+
export { StackedHeaderDirective, StackedHeadersDirective } from './kanban/stackedheaders.directive';
|
|
3
|
+
export { KanbanComponent } from './kanban/kanban.component';
|
|
4
|
+
export { KanbanModule } from './kanban/kanban.module';
|
|
5
|
+
export { KanbanAllModule } from './kanban/kanban-all.module';
|
|
6
|
+
export * from '@syncfusion/ej2-kanban';
|
|
@@ -1,95 +1,90 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-column keyField='
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
*
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
*
|
|
52
|
-
* @
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
*
|
|
58
|
-
* @
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
*
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
*
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
*
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
*
|
|
79
|
-
* @
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
|
|
92
|
-
constructor();
|
|
93
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsDirective, never>;
|
|
94
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsDirective, "ejs-kanban>e-columns", never, {}, {}, ["children"]>;
|
|
95
|
-
}
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
/**
|
|
4
|
+
* `e-columns` directive represent a columns of the Kanban board.
|
|
5
|
+
* It must be contained in a Kanban component(`ejs-kanban`).
|
|
6
|
+
* ```html
|
|
7
|
+
* <ejs-kanban>
|
|
8
|
+
* <e-columns>
|
|
9
|
+
* <e-column keyField='Open' textField='To Do'></e-column>
|
|
10
|
+
* <e-column keyField='Close' textField='Completed'></e-column>
|
|
11
|
+
* </e-columns>
|
|
12
|
+
* </ejs-kanban>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
|
|
16
|
+
private viewContainerRef;
|
|
17
|
+
directivePropList: any;
|
|
18
|
+
/**
|
|
19
|
+
* Enable or disable column drag
|
|
20
|
+
* @default true
|
|
21
|
+
*/
|
|
22
|
+
allowDrag: any;
|
|
23
|
+
/**
|
|
24
|
+
* Enable or disable column drop
|
|
25
|
+
* @default true
|
|
26
|
+
*/
|
|
27
|
+
allowDrop: any;
|
|
28
|
+
/**
|
|
29
|
+
* Enable or disable toggle column
|
|
30
|
+
* @default false
|
|
31
|
+
*/
|
|
32
|
+
allowToggle: any;
|
|
33
|
+
/**
|
|
34
|
+
* Defines the column header title
|
|
35
|
+
* @default null
|
|
36
|
+
*/
|
|
37
|
+
headerText: any;
|
|
38
|
+
/**
|
|
39
|
+
* Defines the collapsed or expandable state
|
|
40
|
+
* @default true
|
|
41
|
+
*/
|
|
42
|
+
isExpanded: any;
|
|
43
|
+
/**
|
|
44
|
+
* Defines the column keyField. It supports both number and string type.
|
|
45
|
+
* String type supports the multiple column keys and number type does not support the multiple column keys.
|
|
46
|
+
* @default null
|
|
47
|
+
*/
|
|
48
|
+
keyField: any;
|
|
49
|
+
/**
|
|
50
|
+
* Defines the maximum card count in column
|
|
51
|
+
* @default null
|
|
52
|
+
* @asptype int
|
|
53
|
+
*/
|
|
54
|
+
maxCount: any;
|
|
55
|
+
/**
|
|
56
|
+
* Defines the minimum card count in column
|
|
57
|
+
* @default null
|
|
58
|
+
* @asptype int
|
|
59
|
+
*/
|
|
60
|
+
minCount: any;
|
|
61
|
+
/**
|
|
62
|
+
* Enable or disable cell add button
|
|
63
|
+
* @default false
|
|
64
|
+
*/
|
|
65
|
+
showAddButton: any;
|
|
66
|
+
/**
|
|
67
|
+
* Enable or disable card count in column
|
|
68
|
+
* @default true
|
|
69
|
+
*/
|
|
70
|
+
showItemCount: any;
|
|
71
|
+
/**
|
|
72
|
+
* Defines the column transition
|
|
73
|
+
* @default []
|
|
74
|
+
*/
|
|
75
|
+
transitionColumns: any;
|
|
76
|
+
/**
|
|
77
|
+
* Defines the column template
|
|
78
|
+
* @default null
|
|
79
|
+
* @asptype string
|
|
80
|
+
*/
|
|
81
|
+
template: any;
|
|
82
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Column Array Directive
|
|
86
|
+
* @private
|
|
87
|
+
*/
|
|
88
|
+
export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
|
|
89
|
+
constructor();
|
|
90
|
+
}
|
|
@@ -1,11 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
*/
|
|
7
|
-
export declare class KanbanAllModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KanbanAllModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KanbanAllModule, never, [typeof i1.CommonModule, typeof i2.KanbanModule], [typeof i2.KanbanModule]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KanbanAllModule>;
|
|
11
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the Kanban component with providers.
|
|
3
|
+
*/
|
|
4
|
+
export declare class KanbanAllModule {
|
|
5
|
+
}
|
|
@@ -1,62 +1,59 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { Kanban } from '@syncfusion/ej2-kanban';
|
|
4
|
-
import { ColumnsDirective } from './columns.directive';
|
|
5
|
-
import { StackedHeadersDirective } from './stackedheaders.directive';
|
|
6
|
-
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
*
|
|
45
|
-
* @
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KanbanComponent, never>;
|
|
61
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KanbanComponent, "ejs-kanban", never, { "allowDragAndDrop": "allowDragAndDrop"; "allowKeyboard": "allowKeyboard"; "cardHeight": "cardHeight"; "cardSettings": "cardSettings"; "columns": "columns"; "constraintType": "constraintType"; "cssClass": "cssClass"; "dataSource": "dataSource"; "dialogSettings": "dialogSettings"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableTooltip": "enableTooltip"; "enableVirtualization": "enableVirtualization"; "externalDropId": "externalDropId"; "height": "height"; "keyField": "keyField"; "locale": "locale"; "query": "query"; "showEmptyColumn": "showEmptyColumn"; "sortSettings": "sortSettings"; "stackedHeaders": "stackedHeaders"; "swimlaneSettings": "swimlaneSettings"; "tooltipTemplate": "tooltipTemplate"; "width": "width"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; "cardClick": "cardClick"; "cardDoubleClick": "cardDoubleClick"; "cardRendered": "cardRendered"; "created": "created"; "dataBinding": "dataBinding"; "dataBound": "dataBound"; "dataSourceChanged": "dataSourceChanged"; "dataStateChange": "dataStateChange"; "dialogClose": "dialogClose"; "dialogOpen": "dialogOpen"; "drag": "drag"; "dragStart": "dragStart"; "dragStop": "dragStop"; "queryCellInfo": "queryCellInfo"; }, ["tooltipTemplate", "columns_template", "swimlaneSettings_template", "cardSettings_template", "dialogSettings_template", "childColumns", "childStackedHeaders"], never>;
|
|
62
|
-
}
|
|
1
|
+
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { Kanban } from '@syncfusion/ej2-kanban';
|
|
4
|
+
import { ColumnsDirective } from './columns.directive';
|
|
5
|
+
import { StackedHeadersDirective } from './stackedheaders.directive';
|
|
6
|
+
export declare const inputs: string[];
|
|
7
|
+
export declare const outputs: string[];
|
|
8
|
+
export declare const twoWays: string[];
|
|
9
|
+
/**
|
|
10
|
+
* `ej-kanban` represents the Angular Kanban Component.
|
|
11
|
+
* ```html
|
|
12
|
+
* <ejs-kanban></ejs-kanban>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class KanbanComponent extends Kanban implements IComponentBase {
|
|
16
|
+
private ngEle;
|
|
17
|
+
private srenderer;
|
|
18
|
+
private viewContainerRef;
|
|
19
|
+
private injector;
|
|
20
|
+
context: any;
|
|
21
|
+
tagObjects: any;
|
|
22
|
+
actionBegin: any;
|
|
23
|
+
actionComplete: any;
|
|
24
|
+
actionFailure: any;
|
|
25
|
+
cardClick: any;
|
|
26
|
+
cardDoubleClick: any;
|
|
27
|
+
cardRendered: any;
|
|
28
|
+
created: any;
|
|
29
|
+
dataBinding: any;
|
|
30
|
+
dataBound: any;
|
|
31
|
+
dataSourceChanged: any;
|
|
32
|
+
dataStateChange: any;
|
|
33
|
+
dialogClose: any;
|
|
34
|
+
dialogOpen: any;
|
|
35
|
+
drag: any;
|
|
36
|
+
dragStart: any;
|
|
37
|
+
dragStop: any;
|
|
38
|
+
queryCellInfo: any;
|
|
39
|
+
childColumns: QueryList<ColumnsDirective>;
|
|
40
|
+
childStackedHeaders: QueryList<StackedHeadersDirective>;
|
|
41
|
+
tags: string[];
|
|
42
|
+
/**
|
|
43
|
+
* Defines the template content to card’s tooltip. The property works by enabling the ‘enableTooltip’ property.
|
|
44
|
+
* @default null
|
|
45
|
+
* @asptype string
|
|
46
|
+
*/
|
|
47
|
+
tooltipTemplate: any;
|
|
48
|
+
columns_template: any;
|
|
49
|
+
swimlaneSettings_template: any;
|
|
50
|
+
cardSettings_template: any;
|
|
51
|
+
dialogSettings_template: any;
|
|
52
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
53
|
+
ngOnInit(): void;
|
|
54
|
+
ngAfterViewInit(): void;
|
|
55
|
+
ngOnDestroy(): void;
|
|
56
|
+
ngAfterContentChecked(): void;
|
|
57
|
+
registerEvents: (eventList: string[]) => void;
|
|
58
|
+
addTwoWay: (propList: string[]) => void;
|
|
59
|
+
}
|
|
@@ -1,13 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* NgModule definition for the Kanban component.
|
|
8
|
-
*/
|
|
9
|
-
export declare class KanbanModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KanbanModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KanbanModule, [typeof i1.KanbanComponent, typeof i2.ColumnDirective, typeof i2.ColumnsDirective, typeof i3.StackedHeaderDirective, typeof i3.StackedHeadersDirective], [typeof i4.CommonModule], [typeof i1.KanbanComponent, typeof i2.ColumnDirective, typeof i2.ColumnsDirective, typeof i3.StackedHeaderDirective, typeof i3.StackedHeadersDirective]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KanbanModule>;
|
|
13
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the Kanban component.
|
|
3
|
+
*/
|
|
4
|
+
export declare class KanbanModule {
|
|
5
|
+
}
|
|
@@ -1,41 +1,36 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-stackedHeader keyField='
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
export declare class StackedHeadersDirective extends ArrayBase<StackedHeadersDirective> {
|
|
38
|
-
constructor();
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StackedHeadersDirective, never>;
|
|
40
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<StackedHeadersDirective, "ejs-kanban>e-stackedHeaders", never, {}, {}, ["children"]>;
|
|
41
|
-
}
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
/**
|
|
4
|
+
* `e-stackedHeaders` directive represent a stacked header of the Kanban board.
|
|
5
|
+
* It must be contained in a Kanban component(`ejs-kanban`).
|
|
6
|
+
* ```html
|
|
7
|
+
* <ejs-kanban>
|
|
8
|
+
* <e-stackedHeaders>
|
|
9
|
+
* <e-stackedHeader keyField='Open' text='To Do'></e-stackedHeader>
|
|
10
|
+
* <e-stackedHeader keyField='Close' text='Completed'></e-stackedHeader>
|
|
11
|
+
* </e-stackedHeaders>
|
|
12
|
+
* </ejs-kanban>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class StackedHeaderDirective extends ComplexBase<StackedHeaderDirective> {
|
|
16
|
+
private viewContainerRef;
|
|
17
|
+
directivePropList: any;
|
|
18
|
+
/**
|
|
19
|
+
* Defines the multiple columns keyField
|
|
20
|
+
* @default null
|
|
21
|
+
*/
|
|
22
|
+
keyFields: any;
|
|
23
|
+
/**
|
|
24
|
+
* Defines the column header text
|
|
25
|
+
* @default null
|
|
26
|
+
*/
|
|
27
|
+
text: any;
|
|
28
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* StackedHeader Array Directive
|
|
32
|
+
* @private
|
|
33
|
+
*/
|
|
34
|
+
export declare class StackedHeadersDirective extends ArrayBase<StackedHeadersDirective> {
|
|
35
|
+
constructor();
|
|
36
|
+
}
|