@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.
Files changed (36) hide show
  1. package/@syncfusion/ej2-angular-kanban.es5.js +355 -0
  2. package/@syncfusion/ej2-angular-kanban.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-kanban.js +323 -0
  4. package/@syncfusion/ej2-angular-kanban.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-kanban.umd.js +397 -0
  7. package/dist/ej2-angular-kanban.umd.js.map +1 -0
  8. package/dist/ej2-angular-kanban.umd.min.js +11 -0
  9. package/dist/ej2-angular-kanban.umd.min.js.map +1 -0
  10. package/ej2-angular-kanban.d.ts +5 -0
  11. package/ej2-angular-kanban.metadata.json +1 -0
  12. package/package.json +10 -23
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.d.ts +2 -2
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +2 -2
  17. package/src/index.d.ts +6 -6
  18. package/src/kanban/columns.directive.d.ts +90 -95
  19. package/src/kanban/kanban-all.module.d.ts +5 -11
  20. package/src/kanban/kanban.component.d.ts +59 -62
  21. package/src/kanban/kanban.module.d.ts +5 -13
  22. package/src/kanban/stackedheaders.directive.d.ts +36 -41
  23. package/CHANGELOG.md +0 -507
  24. package/esm2020/public_api.mjs +0 -2
  25. package/esm2020/src/index.mjs +0 -7
  26. package/esm2020/src/kanban/columns.directive.mjs +0 -66
  27. package/esm2020/src/kanban/kanban-all.module.mjs +0 -23
  28. package/esm2020/src/kanban/kanban.component.mjs +0 -100
  29. package/esm2020/src/kanban/kanban.module.mjs +0 -43
  30. package/esm2020/src/kanban/stackedheaders.directive.mjs +0 -58
  31. package/esm2020/syncfusion-ej2-angular-kanban.mjs +0 -5
  32. package/fesm2015/syncfusion-ej2-angular-kanban.mjs +0 -277
  33. package/fesm2015/syncfusion-ej2-angular-kanban.mjs.map +0 -1
  34. package/fesm2020/syncfusion-ej2-angular-kanban.mjs +0 -277
  35. package/fesm2020/syncfusion-ej2-angular-kanban.mjs.map +0 -1
  36. 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.1.39-ngcc",
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.1.38",
10
- "@syncfusion/ej2-angular-base": "~30.1.37",
11
- "@syncfusion/ej2-kanban": "30.1.39"
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
- "module": "fesm2015/syncfusion-ej2-angular-kanban.mjs",
26
- "es2020": "fesm2020/syncfusion-ej2-angular-kanban.mjs",
27
- "esm2020": "esm2020/syncfusion-ej2-angular-kanban.mjs",
28
- "fesm2020": "fesm2020/syncfusion-ej2-angular-kanban.mjs",
29
- "fesm2015": "fesm2015/syncfusion-ej2-angular-kanban.mjs",
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 = "^28.1.33";
2
+ export declare const pkgVer = "^30.1.37";
3
3
  export declare const moduleName = "KanbanModule";
4
- export declare const themeVer = "~28.1.33";
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.1.39';
4
+ exports.pkgVer = '^30.2.4';
5
5
  exports.moduleName = 'KanbanModule';
6
- exports.themeVer = '~30.1.39';
6
+ exports.themeVer = '~30.2.4';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-kanban';
2
- export const pkgVer = '^30.1.39';
2
+ export const pkgVer = '^30.2.4';
3
3
  export const moduleName = 'KanbanModule';
4
- export const themeVer = '~30.1.39';
4
+ export const 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
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-columns` directive represent a columns of the Kanban board.
6
- * It must be contained in a Kanban component(`ejs-kanban`).
7
- * ```html
8
- * <ejs-kanban>
9
- * <e-columns>
10
- * <e-column keyField='Open' textField='To Do'></e-column>
11
- * <e-column keyField='Close' textField='Completed'></e-column>
12
- * </e-columns>
13
- * </ejs-kanban>
14
- * ```
15
- */
16
- export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * Enable or disable column drag
21
- * @default true
22
- */
23
- allowDrag: any;
24
- /**
25
- * Enable or disable column drop
26
- * @default true
27
- */
28
- allowDrop: any;
29
- /**
30
- * Enable or disable toggle column
31
- * @default false
32
- */
33
- allowToggle: any;
34
- /**
35
- * Defines the column header title
36
- * @default null
37
- */
38
- headerText: any;
39
- /**
40
- * Defines the collapsed or expandable state
41
- * @default true
42
- */
43
- isExpanded: any;
44
- /**
45
- * Defines the column keyField. It supports both number and string type.
46
- * String type supports the multiple column keys and number type does not support the multiple column keys.
47
- * @default null
48
- */
49
- keyField: any;
50
- /**
51
- * Defines the maximum card count in column
52
- * @default null
53
- * @asptype int
54
- */
55
- maxCount: any;
56
- /**
57
- * Defines the minimum card count in column
58
- * @default null
59
- * @asptype int
60
- */
61
- minCount: any;
62
- /**
63
- * Enable or disable cell add button
64
- * @default false
65
- */
66
- showAddButton: any;
67
- /**
68
- * Enable or disable card count in column
69
- * @default true
70
- */
71
- showItemCount: any;
72
- /**
73
- * Defines the column transition
74
- * @default []
75
- */
76
- transitionColumns: any;
77
- /**
78
- * Defines the column template
79
- * @default null
80
- * @asptype string
81
- */
82
- template: any;
83
- constructor(viewContainerRef: ViewContainerRef);
84
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnDirective, never>;
85
- 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"]>;
86
- }
87
- /**
88
- * Column Array Directive
89
- * @private
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
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/common";
3
- import * as i2 from "./kanban.module";
4
- /**
5
- * NgModule definition for the Kanban component with providers.
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
- import * as i0 from "@angular/core";
7
- export declare const inputs: string[];
8
- export declare const outputs: string[];
9
- export declare const twoWays: string[];
10
- /**
11
- * `ej-kanban` represents the Angular Kanban Component.
12
- * ```html
13
- * <ejs-kanban></ejs-kanban>
14
- * ```
15
- */
16
- export declare class KanbanComponent extends Kanban implements IComponentBase {
17
- private ngEle;
18
- private srenderer;
19
- private viewContainerRef;
20
- private injector;
21
- context: any;
22
- tagObjects: any;
23
- actionBegin: any;
24
- actionComplete: any;
25
- actionFailure: any;
26
- cardClick: any;
27
- cardDoubleClick: any;
28
- cardRendered: any;
29
- created: any;
30
- dataBinding: any;
31
- dataBound: any;
32
- dataSourceChanged: any;
33
- dataStateChange: any;
34
- dialogClose: any;
35
- dialogOpen: any;
36
- drag: any;
37
- dragStart: any;
38
- dragStop: any;
39
- queryCellInfo: any;
40
- childColumns: QueryList<ColumnsDirective>;
41
- childStackedHeaders: QueryList<StackedHeadersDirective>;
42
- tags: string[];
43
- /**
44
- * Defines the template content to card’s tooltip. The property works by enabling the ‘enableTooltip’ property.
45
- * @default null
46
- * @asptype string
47
- */
48
- tooltipTemplate: any;
49
- columns_template: any;
50
- swimlaneSettings_template: any;
51
- cardSettings_template: any;
52
- dialogSettings_template: any;
53
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
54
- ngOnInit(): void;
55
- ngAfterViewInit(): void;
56
- ngOnDestroy(): void;
57
- ngAfterContentChecked(): void;
58
- registerEvents: (eventList: string[]) => void;
59
- addTwoWay: (propList: string[]) => void;
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
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kanban.component";
3
- import * as i2 from "./columns.directive";
4
- import * as i3 from "./stackedheaders.directive";
5
- import * as i4 from "@angular/common";
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
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-stackedHeaders` directive represent a stacked header of the Kanban board.
6
- * It must be contained in a Kanban component(`ejs-kanban`).
7
- * ```html
8
- * <ejs-kanban>
9
- * <e-stackedHeaders>
10
- * <e-stackedHeader keyField='Open' text='To Do'></e-stackedHeader>
11
- * <e-stackedHeader keyField='Close' text='Completed'></e-stackedHeader>
12
- * </e-stackedHeaders>
13
- * </ejs-kanban>
14
- * ```
15
- */
16
- export declare class StackedHeaderDirective extends ComplexBase<StackedHeaderDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * Defines the multiple columns keyField
21
- * @default null
22
- */
23
- keyFields: any;
24
- /**
25
- * Defines the column header text
26
- * @default null
27
- */
28
- text: any;
29
- constructor(viewContainerRef: ViewContainerRef);
30
- static ɵfac: i0.ɵɵFactoryDeclaration<StackedHeaderDirective, never>;
31
- static ɵdir: i0.ɵɵDirectiveDeclaration<StackedHeaderDirective, "e-stackedHeaders>e-stackedHeader", never, { "keyFields": "keyFields"; "text": "text"; }, {}, never>;
32
- }
33
- /**
34
- * StackedHeader Array Directive
35
- * @private
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
+ }