@syncfusion/ej2-angular-kanban 30.2.4-ngcc → 30.2.4

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 (33) hide show
  1. package/CHANGELOG.md +513 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +7 -0
  4. package/esm2020/src/kanban/columns.directive.mjs +66 -0
  5. package/esm2020/src/kanban/kanban-all.module.mjs +23 -0
  6. package/esm2020/src/kanban/kanban.component.mjs +100 -0
  7. package/esm2020/src/kanban/kanban.module.mjs +43 -0
  8. package/esm2020/src/kanban/stackedheaders.directive.mjs +58 -0
  9. package/esm2020/syncfusion-ej2-angular-kanban.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-kanban.mjs +277 -0
  11. package/fesm2015/syncfusion-ej2-angular-kanban.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-kanban.mjs +277 -0
  13. package/fesm2020/syncfusion-ej2-angular-kanban.mjs.map +1 -0
  14. package/package.json +20 -7
  15. package/public_api.d.ts +1 -1
  16. package/src/index.d.ts +6 -6
  17. package/src/kanban/columns.directive.d.ts +95 -90
  18. package/src/kanban/kanban-all.module.d.ts +11 -5
  19. package/src/kanban/kanban.component.d.ts +62 -59
  20. package/src/kanban/kanban.module.d.ts +13 -5
  21. package/src/kanban/stackedheaders.directive.d.ts +41 -36
  22. package/syncfusion-ej2-angular-kanban.d.ts +5 -0
  23. package/@syncfusion/ej2-angular-kanban.es5.js +0 -355
  24. package/@syncfusion/ej2-angular-kanban.es5.js.map +0 -1
  25. package/@syncfusion/ej2-angular-kanban.js +0 -323
  26. package/@syncfusion/ej2-angular-kanban.js.map +0 -1
  27. package/LICENSE +0 -10
  28. package/dist/ej2-angular-kanban.umd.js +0 -397
  29. package/dist/ej2-angular-kanban.umd.js.map +0 -1
  30. package/dist/ej2-angular-kanban.umd.min.js +0 -11
  31. package/dist/ej2-angular-kanban.umd.min.js.map +0 -1
  32. package/ej2-angular-kanban.d.ts +0 -5
  33. package/ej2-angular-kanban.metadata.json +0 -1
@@ -1,59 +1,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
+ 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,5 +1,13 @@
1
- /**
2
- * NgModule definition for the Kanban component.
3
- */
4
- export declare class KanbanModule {
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,36 +1,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
- }
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
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-kanban" />
5
+ export * from './public_api';
@@ -1,355 +0,0 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = Object.setPrototypeOf ||
3
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5
- return function (d, b) {
6
- extendStatics(d, b);
7
- function __() { this.constructor = d; }
8
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9
- };
10
- })();
11
- import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
12
- import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/ej2-angular-base';
13
- import { Kanban } from '@syncfusion/ej2-kanban';
14
- import { CommonModule } from '@angular/common';
15
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
16
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18
- r = Reflect.decorate(decorators, target, key, desc);
19
- else
20
- for (var i = decorators.length - 1; i >= 0; i--)
21
- if (d = decorators[i])
22
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
23
- return c > 3 && r && Object.defineProperty(target, key, r), r;
24
- };
25
- var __metadata = (this && this.__metadata) || function (k, v) {
26
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
27
- return Reflect.metadata(k, v);
28
- };
29
- var input = ['allowDrag', 'allowDrop', 'allowToggle', 'headerText', 'isExpanded', 'keyField', 'maxCount', 'minCount', 'showAddButton', 'showItemCount', 'template', 'transitionColumns'];
30
- var outputs = [];
31
- /**
32
- * `e-columns` directive represent a columns of the Kanban board.
33
- * It must be contained in a Kanban component(`ejs-kanban`).
34
- * ```html
35
- * <ejs-kanban>
36
- * <e-columns>
37
- * <e-column keyField='Open' textField='To Do'></e-column>
38
- * <e-column keyField='Close' textField='Completed'></e-column>
39
- * </e-columns>
40
- * </ejs-kanban>
41
- * ```
42
- */
43
- var ColumnDirective = /** @class */ (function (_super) {
44
- __extends(ColumnDirective, _super);
45
- /**
46
- * @param {?} viewContainerRef
47
- */
48
- function ColumnDirective(viewContainerRef) {
49
- var _this = _super.call(this) || this;
50
- _this.viewContainerRef = viewContainerRef;
51
- setValue('currentInstance', _this, _this.viewContainerRef);
52
- _this.registerEvents(outputs);
53
- _this.directivePropList = input;
54
- return _this;
55
- }
56
- return ColumnDirective;
57
- }(ComplexBase));
58
- ColumnDirective.decorators = [
59
- { type: Directive, args: [{
60
- selector: 'e-columns>e-column',
61
- inputs: input,
62
- outputs: outputs,
63
- queries: {}
64
- },] },
65
- ];
66
- /**
67
- * @nocollapse
68
- */
69
- ColumnDirective.ctorParameters = function () { return [
70
- { type: ViewContainerRef, },
71
- ]; };
72
- ColumnDirective.propDecorators = {
73
- 'template': [{ type: ContentChild, args: ['template',] },],
74
- };
75
- __decorate([
76
- Template(),
77
- __metadata("design:type", Object)
78
- ], ColumnDirective.prototype, "template", void 0);
79
- /**
80
- * Column Array Directive
81
- */
82
- var ColumnsDirective = /** @class */ (function (_super) {
83
- __extends(ColumnsDirective, _super);
84
- function ColumnsDirective() {
85
- return _super.call(this, 'columns') || this;
86
- }
87
- return ColumnsDirective;
88
- }(ArrayBase));
89
- ColumnsDirective.decorators = [
90
- { type: Directive, args: [{
91
- selector: 'ejs-kanban>e-columns',
92
- queries: {
93
- children: new ContentChildren(ColumnDirective)
94
- },
95
- },] },
96
- ];
97
- /**
98
- * @nocollapse
99
- */
100
- ColumnsDirective.ctorParameters = function () { return []; };
101
- var input$1 = ['keyFields', 'text'];
102
- var outputs$1 = [];
103
- /**
104
- * `e-stackedHeaders` directive represent a stacked header of the Kanban board.
105
- * It must be contained in a Kanban component(`ejs-kanban`).
106
- * ```html
107
- * <ejs-kanban>
108
- * <e-stackedHeaders>
109
- * <e-stackedHeader keyField='Open' text='To Do'></e-stackedHeader>
110
- * <e-stackedHeader keyField='Close' text='Completed'></e-stackedHeader>
111
- * </e-stackedHeaders>
112
- * </ejs-kanban>
113
- * ```
114
- */
115
- var StackedHeaderDirective = /** @class */ (function (_super) {
116
- __extends(StackedHeaderDirective, _super);
117
- /**
118
- * @param {?} viewContainerRef
119
- */
120
- function StackedHeaderDirective(viewContainerRef) {
121
- var _this = _super.call(this) || this;
122
- _this.viewContainerRef = viewContainerRef;
123
- setValue('currentInstance', _this, _this.viewContainerRef);
124
- _this.registerEvents(outputs$1);
125
- _this.directivePropList = input$1;
126
- return _this;
127
- }
128
- return StackedHeaderDirective;
129
- }(ComplexBase));
130
- StackedHeaderDirective.decorators = [
131
- { type: Directive, args: [{
132
- selector: 'e-stackedHeaders>e-stackedHeader',
133
- inputs: input$1,
134
- outputs: outputs$1,
135
- queries: {}
136
- },] },
137
- ];
138
- /**
139
- * @nocollapse
140
- */
141
- StackedHeaderDirective.ctorParameters = function () { return [
142
- { type: ViewContainerRef, },
143
- ]; };
144
- /**
145
- * StackedHeader Array Directive
146
- */
147
- var StackedHeadersDirective = /** @class */ (function (_super) {
148
- __extends(StackedHeadersDirective, _super);
149
- function StackedHeadersDirective() {
150
- return _super.call(this, 'stackedheaders') || this;
151
- }
152
- return StackedHeadersDirective;
153
- }(ArrayBase));
154
- StackedHeadersDirective.decorators = [
155
- { type: Directive, args: [{
156
- selector: 'ejs-kanban>e-stackedHeaders',
157
- queries: {
158
- children: new ContentChildren(StackedHeaderDirective)
159
- },
160
- },] },
161
- ];
162
- /**
163
- * @nocollapse
164
- */
165
- StackedHeadersDirective.ctorParameters = function () { return []; };
166
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
167
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
168
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
169
- r = Reflect.decorate(decorators, target, key, desc);
170
- else
171
- for (var i = decorators.length - 1; i >= 0; i--)
172
- if (d = decorators[i])
173
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
174
- return c > 3 && r && Object.defineProperty(target, key, r), r;
175
- };
176
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
177
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
178
- return Reflect.metadata(k, v);
179
- };
180
- var inputs = ['allowDragAndDrop', 'allowKeyboard', 'cardHeight', 'cardSettings', 'columns', 'constraintType', 'cssClass', 'dataSource', 'dialogSettings', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enableTooltip', 'enableVirtualization', 'externalDropId', 'height', 'keyField', 'locale', 'query', 'showEmptyColumn', 'sortSettings', 'stackedHeaders', 'swimlaneSettings', 'tooltipTemplate', 'width'];
181
- var outputs$2 = ['actionBegin', 'actionComplete', 'actionFailure', 'cardClick', 'cardDoubleClick', 'cardRendered', 'created', 'dataBinding', 'dataBound', 'dataSourceChanged', 'dataStateChange', 'dialogClose', 'dialogOpen', 'drag', 'dragStart', 'dragStop', 'queryCellInfo'];
182
- var twoWays = [''];
183
- /**
184
- * `ej-kanban` represents the Angular Kanban Component.
185
- * ```html
186
- * <ejs-kanban></ejs-kanban>
187
- * ```
188
- */
189
- var KanbanComponent = /** @class */ (function (_super) {
190
- __extends(KanbanComponent, _super);
191
- /**
192
- * @param {?} ngEle
193
- * @param {?} srenderer
194
- * @param {?} viewContainerRef
195
- * @param {?} injector
196
- */
197
- function KanbanComponent(ngEle, srenderer, viewContainerRef, injector) {
198
- var _this = _super.call(this) || this;
199
- _this.ngEle = ngEle;
200
- _this.srenderer = srenderer;
201
- _this.viewContainerRef = viewContainerRef;
202
- _this.injector = injector;
203
- _this.tags = ['columns', 'stackedHeaders'];
204
- _this.element = _this.ngEle.nativeElement;
205
- _this.injectedModules = _this.injectedModules || [];
206
- _this.registerEvents(outputs$2);
207
- _this.addTwoWay.call(_this, twoWays);
208
- setValue('currentInstance', _this, _this.viewContainerRef);
209
- _this.context = new ComponentBase();
210
- return _this;
211
- }
212
- /**
213
- * @return {?}
214
- */
215
- KanbanComponent.prototype.ngOnInit = function () {
216
- this.context.ngOnInit(this);
217
- };
218
- /**
219
- * @return {?}
220
- */
221
- KanbanComponent.prototype.ngAfterViewInit = function () {
222
- this.context.ngAfterViewInit(this);
223
- };
224
- /**
225
- * @return {?}
226
- */
227
- KanbanComponent.prototype.ngOnDestroy = function () {
228
- this.context.ngOnDestroy(this);
229
- };
230
- /**
231
- * @return {?}
232
- */
233
- KanbanComponent.prototype.ngAfterContentChecked = function () {
234
- this.tagObjects[0].instance = this.childColumns;
235
- if (this.childStackedHeaders) {
236
- this.tagObjects[1].instance = /** @type {?} */ (this.childStackedHeaders);
237
- }
238
- this.context.ngAfterContentChecked(this);
239
- };
240
- return KanbanComponent;
241
- }(Kanban));
242
- KanbanComponent.decorators = [
243
- { type: Component, args: [{
244
- selector: 'ejs-kanban',
245
- inputs: inputs,
246
- outputs: outputs$2,
247
- template: '',
248
- changeDetection: ChangeDetectionStrategy.OnPush,
249
- queries: {
250
- childColumns: new ContentChild(ColumnsDirective),
251
- childStackedHeaders: new ContentChild(StackedHeadersDirective)
252
- }
253
- },] },
254
- ];
255
- /**
256
- * @nocollapse
257
- */
258
- KanbanComponent.ctorParameters = function () { return [
259
- { type: ElementRef, },
260
- { type: Renderer2, },
261
- { type: ViewContainerRef, },
262
- { type: Injector, },
263
- ]; };
264
- KanbanComponent.propDecorators = {
265
- 'tooltipTemplate': [{ type: ContentChild, args: ['tooltipTemplate',] },],
266
- 'columns_template': [{ type: ContentChild, args: ['columnsTemplate',] },],
267
- 'swimlaneSettings_template': [{ type: ContentChild, args: ['swimlaneSettingsTemplate',] },],
268
- 'cardSettings_template': [{ type: ContentChild, args: ['cardSettingsTemplate',] },],
269
- 'dialogSettings_template': [{ type: ContentChild, args: ['dialogSettingsTemplate',] },],
270
- };
271
- __decorate$1([
272
- Template(),
273
- __metadata$1("design:type", Object)
274
- ], KanbanComponent.prototype, "tooltipTemplate", void 0);
275
- __decorate$1([
276
- Template(),
277
- __metadata$1("design:type", Object)
278
- ], KanbanComponent.prototype, "columns_template", void 0);
279
- __decorate$1([
280
- Template(),
281
- __metadata$1("design:type", Object)
282
- ], KanbanComponent.prototype, "swimlaneSettings_template", void 0);
283
- __decorate$1([
284
- Template(),
285
- __metadata$1("design:type", Object)
286
- ], KanbanComponent.prototype, "cardSettings_template", void 0);
287
- __decorate$1([
288
- Template(),
289
- __metadata$1("design:type", Object)
290
- ], KanbanComponent.prototype, "dialogSettings_template", void 0);
291
- KanbanComponent = __decorate$1([
292
- ComponentMixins([ComponentBase]),
293
- __metadata$1("design:paramtypes", [ElementRef,
294
- Renderer2,
295
- ViewContainerRef,
296
- Injector])
297
- ], KanbanComponent);
298
- /**
299
- * NgModule definition for the Kanban component.
300
- */
301
- var KanbanModule = /** @class */ (function () {
302
- function KanbanModule() {
303
- }
304
- return KanbanModule;
305
- }());
306
- KanbanModule.decorators = [
307
- { type: NgModule, args: [{
308
- imports: [CommonModule],
309
- declarations: [
310
- KanbanComponent,
311
- ColumnDirective,
312
- ColumnsDirective,
313
- StackedHeaderDirective,
314
- StackedHeadersDirective
315
- ],
316
- exports: [
317
- KanbanComponent,
318
- ColumnDirective,
319
- ColumnsDirective,
320
- StackedHeaderDirective,
321
- StackedHeadersDirective
322
- ]
323
- },] },
324
- ];
325
- /**
326
- * @nocollapse
327
- */
328
- KanbanModule.ctorParameters = function () { return []; };
329
- /**
330
- * NgModule definition for the Kanban component with providers.
331
- */
332
- var KanbanAllModule = /** @class */ (function () {
333
- function KanbanAllModule() {
334
- }
335
- return KanbanAllModule;
336
- }());
337
- KanbanAllModule.decorators = [
338
- { type: NgModule, args: [{
339
- imports: [CommonModule, KanbanModule],
340
- exports: [
341
- KanbanModule
342
- ],
343
- providers: []
344
- },] },
345
- ];
346
- /**
347
- * @nocollapse
348
- */
349
- KanbanAllModule.ctorParameters = function () { return []; };
350
- /**
351
- * Generated bundle index. Do not edit.
352
- */
353
- export { ColumnDirective, ColumnsDirective, StackedHeaderDirective, StackedHeadersDirective, KanbanComponent, KanbanModule, KanbanAllModule, inputs as ɵa, outputs$2 as ɵb };
354
- export { Kanban, actionBegin, actionComplete, actionFailure, cardClick, cardDoubleClick, cardRendered, queryCellInfo, dataBinding, dataBound, dragStart, drag, dragStop, documentClick, dialogOpen, dialogClose, contentReady, dataReady, bottomSpace, cardSpace, toggleWidth, dataSourceChanged, dataStateChange } from '@syncfusion/ej2-kanban';
355
- //# sourceMappingURL=ej2-angular-kanban.es5.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ej2-angular-kanban.es5.js","sources":["~/@syncfusion/ej2-angular-kanban/ej2-angular-kanban.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/kanban-all.module.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/kanban.module.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/kanban.component.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/stackedheaders.directive.ts","~/@syncfusion/ej2-angular-kanban/src/kanban/columns.directive.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {ColumnDirective,ColumnsDirective,StackedHeaderDirective,StackedHeadersDirective,KanbanComponent,KanbanModule,KanbanAllModule,Kanban,KanbanModel,actionBegin,actionComplete,actionFailure,cardClick,cardDoubleClick,cardRendered,queryCellInfo,dataBinding,dataBound,dragStart,drag,dragStop,documentClick,dialogOpen,dialogClose,contentReady,dataReady,bottomSpace,cardSpace,toggleWidth,dataSourceChanged,dataStateChange,ActionEventArgs,VirtualScrollInfo,FilterStateObj,CardClickEventArgs,QueryCellInfoEventArgs,CardRenderedEventArgs,DragEventArgs,DialogEventArgs,DialogCloseEventArgs,SaveChanges,EJ2Instance,DragArgs,HeaderArgs,DragEdges,ScrollPosition,ScrollOffset,VirtualScrollDataReturnType,SortComparerFunction,DataStateChangeEventArgs,PendingState,DataSourceChangedEventArgs,ReturnType,CurrentAction,SelectionType,SortDirection,SortOrderBy,ConstraintType,DialogFieldType,CardSettingsModel,ColumnsModel,SwimlaneSettingsModel,StackedHeadersModel,DialogSettingsModel,DialogFieldsModel,SortSettingsModel} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/kanban/kanban.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { StackedHeaderDirective, StackedHeadersDirective } from './stackedheaders.directive';\nimport { KanbanComponent } from './kanban.component';\nimport { KanbanModule } from './kanban.module';\n/**\n * NgModule definition for the Kanban component with providers.\n */\nexport class KanbanAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, KanbanModule],\n exports: [\n KanbanModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction KanbanAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nKanbanAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nKanbanAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ColumnDirective, ColumnsDirective } from './columns.directive';\nimport { StackedHeaderDirective, StackedHeadersDirective } from './stackedheaders.directive';\nimport { KanbanComponent } from './kanban.component';\n/**\n * NgModule definition for the Kanban component.\n */\nexport class KanbanModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n KanbanComponent,\n ColumnDirective,\n ColumnsDirective,\n StackedHeaderDirective,\n StackedHeadersDirective\n ],\n exports: [\n KanbanComponent,\n ColumnDirective,\n ColumnsDirective,\n StackedHeaderDirective,\n StackedHeadersDirective\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction KanbanModule_tsickle_Closure_declarations() {\n/** @type {?} */\nKanbanModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nKanbanModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider, ContentChild } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { Kanban } from '@syncfusion/ej2-kanban';\nimport { Template } from '@syncfusion/ej2-angular-base';\nimport { ColumnsDirective } from './columns.directive';\nimport { StackedHeadersDirective } from './stackedheaders.directive';\n\nexport const /** @type {?} */ inputs: string[] = ['allowDragAndDrop','allowKeyboard','cardHeight','cardSettings','columns','constraintType','cssClass','dataSource','dialogSettings','enableHtmlSanitizer','enablePersistence','enableRtl','enableTooltip','enableVirtualization','externalDropId','height','keyField','locale','query','showEmptyColumn','sortSettings','stackedHeaders','swimlaneSettings','tooltipTemplate','width'];\nexport const /** @type {?} */ outputs: string[] = ['actionBegin','actionComplete','actionFailure','cardClick','cardDoubleClick','cardRendered','created','dataBinding','dataBound','dataSourceChanged','dataStateChange','dialogClose','dialogOpen','drag','dragStart','dragStop','queryCellInfo'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * `ej-kanban` represents the Angular Kanban Component.\n * ```html\n * <ejs-kanban></ejs-kanban>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class KanbanComponent extends Kanban implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionComplete: any;\n\tactionFailure: any;\n\tcardClick: any;\n\tcardDoubleClick: any;\n\tcardRendered: any;\n\tcreated: any;\n\tdataBinding: any;\n\tdataBound: any;\n\tdataSourceChanged: any;\n\tdataStateChange: any;\n\tdialogClose: any;\n\tdialogOpen: any;\n\tdrag: any;\n\tdragStart: any;\n\tdragStop: any;\npublic queryCellInfo: any;\npublic childColumns: QueryList<ColumnsDirective>;\npublic childStackedHeaders: QueryList<StackedHeadersDirective>;\npublic tags: string[] = ['columns', 'stackedHeaders'];\n/**\n * Defines the template content to card’s tooltip. The property works by enabling the ‘enableTooltip’ property.\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public tooltipTemplate: any;\n \n @Template()\npublic columns_template: any;\n \n @Template()\npublic swimlaneSettings_template: any;\n \n @Template()\npublic cardSettings_template: any;\n \n @Template()\npublic dialogSettings_template: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n this.tagObjects[0].instance = this.childColumns;\n if (this.childStackedHeaders) {\n this.tagObjects[1].instance = /** @type {?} */(( this.childStackedHeaders as any));\n }\n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-kanban',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n childColumns: new ContentChild(ColumnsDirective), \n childStackedHeaders: new ContentChild(StackedHeadersDirective)\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'tooltipTemplate': [{ type: ContentChild, args: ['tooltipTemplate', ] },],\n'columns_template': [{ type: ContentChild, args: ['columnsTemplate', ] },],\n'swimlaneSettings_template': [{ type: ContentChild, args: ['swimlaneSettingsTemplate', ] },],\n'cardSettings_template': [{ type: ContentChild, args: ['cardSettingsTemplate', ] },],\n'dialogSettings_template': [{ type: ContentChild, args: ['dialogSettingsTemplate', ] },],\n};\n}\n\nfunction KanbanComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nKanbanComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nKanbanComponent.ctorParameters;\n/** @type {?} */\nKanbanComponent.propDecorators;\n/** @type {?} */\nKanbanComponent.prototype.context;\n/** @type {?} */\nKanbanComponent.prototype.tagObjects;\n/** @type {?} */\nKanbanComponent.prototype.actionBegin;\n/** @type {?} */\nKanbanComponent.prototype.actionComplete;\n/** @type {?} */\nKanbanComponent.prototype.actionFailure;\n/** @type {?} */\nKanbanComponent.prototype.cardClick;\n/** @type {?} */\nKanbanComponent.prototype.cardDoubleClick;\n/** @type {?} */\nKanbanComponent.prototype.cardRendered;\n/** @type {?} */\nKanbanComponent.prototype.created;\n/** @type {?} */\nKanbanComponent.prototype.dataBinding;\n/** @type {?} */\nKanbanComponent.prototype.dataBound;\n/** @type {?} */\nKanbanComponent.prototype.dataSourceChanged;\n/** @type {?} */\nKanbanComponent.prototype.dataStateChange;\n/** @type {?} */\nKanbanComponent.prototype.dialogClose;\n/** @type {?} */\nKanbanComponent.prototype.dialogOpen;\n/** @type {?} */\nKanbanComponent.prototype.drag;\n/** @type {?} */\nKanbanComponent.prototype.dragStart;\n/** @type {?} */\nKanbanComponent.prototype.dragStop;\n/** @type {?} */\nKanbanComponent.prototype.queryCellInfo;\n/** @type {?} */\nKanbanComponent.prototype.childColumns;\n/** @type {?} */\nKanbanComponent.prototype.childStackedHeaders;\n/** @type {?} */\nKanbanComponent.prototype.tags;\n/**\n * Defines the template content to card’s tooltip. The property works by enabling the ‘enableTooltip’ property.\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nKanbanComponent.prototype.tooltipTemplate;\n/** @type {?} */\nKanbanComponent.prototype.columns_template;\n/** @type {?} */\nKanbanComponent.prototype.swimlaneSettings_template;\n/** @type {?} */\nKanbanComponent.prototype.cardSettings_template;\n/** @type {?} */\nKanbanComponent.prototype.dialogSettings_template;\n/** @type {?} */\nKanbanComponent.prototype.registerEvents;\n/** @type {?} */\nKanbanComponent.prototype.addTwoWay;\n/** @type {?} */\nKanbanComponent.prototype.ngEle;\n/** @type {?} */\nKanbanComponent.prototype.srenderer;\n/** @type {?} */\nKanbanComponent.prototype.viewContainerRef;\n/** @type {?} */\nKanbanComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\n\n\n\nlet /** @type {?} */ input: string[] = ['keyFields', 'text'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-stackedHeaders` directive represent a stacked header of the Kanban board. \n * It must be contained in a Kanban component(`ejs-kanban`). \n * ```html\n * <ejs-kanban>\n * <e-stackedHeaders>\n * <e-stackedHeader keyField='Open' text='To Do'></e-stackedHeader>\n * <e-stackedHeader keyField='Close' text='Completed'></e-stackedHeader>\n * </e-stackedHeaders>\n * </ejs-kanban>\n * ```\n */\nexport class StackedHeaderDirective extends ComplexBase<StackedHeaderDirective> {\npublic directivePropList: any;\n/**\n * Defines the multiple columns keyField\n * \\@default null\n */\npublic keyFields: any;\n/**\n * Defines the column header text\n * \\@default null\n */\npublic text: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-stackedHeaders>e-stackedHeader',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\n}\n\nfunction StackedHeaderDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nStackedHeaderDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nStackedHeaderDirective.ctorParameters;\n/** @type {?} */\nStackedHeaderDirective.prototype.directivePropList;\n/**\n * Defines the multiple columns keyField\n * \\@default null\n * @type {?}\n */\nStackedHeaderDirective.prototype.keyFields;\n/**\n * Defines the column header text\n * \\@default null\n * @type {?}\n */\nStackedHeaderDirective.prototype.text;\n/** @type {?} */\nStackedHeaderDirective.prototype.viewContainerRef;\n}\n\n/**\n * StackedHeader Array Directive\n */\nexport class StackedHeadersDirective extends ArrayBase<StackedHeadersDirective> {\nconstructor() {\n super('stackedheaders');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-kanban>e-stackedHeaders',\n queries: {\n children: new ContentChildren(StackedHeaderDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction StackedHeadersDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nStackedHeadersDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nStackedHeadersDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Directive, ViewContainerRef, ContentChildren, ContentChild } from '@angular/core';\nimport { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nlet /** @type {?} */ input: string[] = ['allowDrag', 'allowDrop', 'allowToggle', 'headerText', 'isExpanded', 'keyField', 'maxCount', 'minCount', 'showAddButton', 'showItemCount', 'template', 'transitionColumns'];\nlet /** @type {?} */ outputs: string[] = [];\n/**\n * `e-columns` directive represent a columns of the Kanban board. \n * It must be contained in a Kanban component(`ejs-kanban`). \n * ```html\n * <ejs-kanban>\n * <e-columns>\n * <e-column keyField='Open' textField='To Do'></e-column>\n * <e-column keyField='Close' textField='Completed'></e-column>\n * </e-columns>\n * </ejs-kanban>\n * ```\n */\nexport class ColumnDirective extends ComplexBase<ColumnDirective> {\npublic directivePropList: any;\n/**\n * Enable or disable column drag\n * \\@default true\n */\npublic allowDrag: any;\n/**\n * Enable or disable column drop\n * \\@default true\n */\npublic allowDrop: any;\n/**\n * Enable or disable toggle column\n * \\@default false\n */\npublic allowToggle: any;\n/**\n * Defines the column header title\n * \\@default null\n */\npublic headerText: any;\n/**\n * Defines the collapsed or expandable state\n * \\@default true\n */\npublic isExpanded: any;\n/**\n * Defines the column keyField. It supports both number and string type. \n * String type supports the multiple column keys and number type does not support the multiple column keys.\n * \\@default null\n */\npublic keyField: any;\n/**\n * Defines the maximum card count in column\n * \\@default null\n * \\@asptype int\n */\npublic maxCount: any;\n/**\n * Defines the minimum card count in column\n * \\@default null\n * \\@asptype int\n */\npublic minCount: any;\n/**\n * Enable or disable cell add button\n * \\@default false\n */\npublic showAddButton: any;\n/**\n * Enable or disable card count in column\n * \\@default true\n */\npublic showItemCount: any;\n/**\n * Defines the column transition\n * \\@default []\n */\npublic transitionColumns: any;\n/**\n * Defines the column template\n * \\@default null\n * \\@asptype string\n */\n@Template()\n public template: any;\n/**\n * @param {?} viewContainerRef\n */\nconstructor(private viewContainerRef:ViewContainerRef) {\n super();\n setValue('currentInstance', this, this.viewContainerRef);\n this.registerEvents(outputs);\n this.directivePropList = input;\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'e-columns>e-column',\n inputs: input,\n outputs: outputs, \n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ViewContainerRef, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n};\n}\n\nfunction ColumnDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnDirective.ctorParameters;\n/** @type {?} */\nColumnDirective.propDecorators;\n/** @type {?} */\nColumnDirective.prototype.directivePropList;\n/**\n * Enable or disable column drag\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowDrag;\n/**\n * Enable or disable column drop\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.allowDrop;\n/**\n * Enable or disable toggle column\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.allowToggle;\n/**\n * Defines the column header title\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.headerText;\n/**\n * Defines the collapsed or expandable state\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.isExpanded;\n/**\n * Defines the column keyField. It supports both number and string type. \n * String type supports the multiple column keys and number type does not support the multiple column keys.\n * \\@default null\n * @type {?}\n */\nColumnDirective.prototype.keyField;\n/**\n * Defines the maximum card count in column\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.maxCount;\n/**\n * Defines the minimum card count in column\n * \\@default null\n * \\@asptype int\n * @type {?}\n */\nColumnDirective.prototype.minCount;\n/**\n * Enable or disable cell add button\n * \\@default false\n * @type {?}\n */\nColumnDirective.prototype.showAddButton;\n/**\n * Enable or disable card count in column\n * \\@default true\n * @type {?}\n */\nColumnDirective.prototype.showItemCount;\n/**\n * Defines the column transition\n * \\@default []\n * @type {?}\n */\nColumnDirective.prototype.transitionColumns;\n/**\n * Defines the column template\n * \\@default null\n * \\@asptype string\n * @type {?}\n */\nColumnDirective.prototype.template;\n/** @type {?} */\nColumnDirective.prototype.viewContainerRef;\n}\n\n/**\n * Column Array Directive\n */\nexport class ColumnsDirective extends ArrayBase<ColumnsDirective> {\nconstructor() {\n super('columns');\n }\nstatic decorators: DecoratorInvocation[] = [\n{ type: Directive, args: [{\n selector: 'ejs-kanban>e-columns',\n queries: {\n children: new ContentChildren(ColumnDirective)\n },\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction ColumnsDirective_tsickle_Closure_declarations() {\n/** @type {?} */\nColumnsDirective.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nColumnsDirective.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs","input"],"mappings":"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"}