@syncfusion/ej2-angular-kanban 20.2.38-ngcc → 20.2.43
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +7 -0
- package/esm2020/src/kanban/columns.directive.mjs +66 -0
- package/esm2020/src/kanban/kanban-all.module.mjs +23 -0
- package/esm2020/src/kanban/kanban.component.mjs +100 -0
- package/esm2020/src/kanban/kanban.module.mjs +43 -0
- package/esm2020/src/kanban/stackedheaders.directive.mjs +58 -0
- package/esm2020/syncfusion-ej2-angular-kanban.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-kanban.mjs +279 -0
- package/fesm2015/syncfusion-ej2-angular-kanban.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-kanban.mjs +279 -0
- package/fesm2020/syncfusion-ej2-angular-kanban.mjs.map +1 -0
- package/package.json +29 -15
- package/schematics/utils/lib-details.ts +2 -2
- package/src/kanban/columns.directive.d.ts +5 -0
- package/src/kanban/kanban-all.module.d.ts +6 -0
- package/src/kanban/kanban.component.d.ts +3 -0
- package/src/kanban/kanban.module.d.ts +8 -0
- package/src/kanban/stackedheaders.directive.d.ts +5 -0
- package/styles/bootstrap-dark.css +18 -16
- package/styles/bootstrap.css +18 -16
- package/styles/bootstrap4.css +18 -15
- package/styles/bootstrap5-dark.css +20 -17
- package/styles/bootstrap5.css +20 -17
- package/styles/fabric-dark.css +19 -17
- package/styles/fabric.css +19 -17
- package/styles/fluent-dark.css +19 -16
- package/styles/fluent.css +19 -16
- package/styles/highcontrast-light.css +22 -17
- package/styles/highcontrast.css +22 -17
- package/styles/kanban/_all.scss +2 -0
- package/styles/kanban/_bootstrap-dark-definition.scss +224 -0
- package/styles/kanban/_bootstrap-definition.scss +223 -0
- package/styles/kanban/_bootstrap4-definition.scss +224 -0
- package/styles/kanban/_bootstrap5-dark-definition.scss +1 -0
- package/styles/kanban/_bootstrap5-definition.scss +233 -0
- package/styles/kanban/_fabric-dark-definition.scss +223 -0
- package/styles/kanban/_fabric-definition.scss +223 -0
- package/styles/kanban/_fluent-dark-definition.scss +1 -0
- package/styles/kanban/_fluent-definition.scss +225 -0
- package/styles/kanban/_fusionnew-definition.scss +233 -0
- package/styles/kanban/_highcontrast-definition.scss +224 -0
- package/styles/kanban/_highcontrast-light-definition.scss +224 -0
- package/styles/kanban/_layout.scss +976 -0
- package/styles/kanban/_material-dark-definition.scss +223 -0
- package/styles/kanban/_material-definition.scss +223 -0
- package/styles/kanban/_material3-definition.scss +233 -0
- package/styles/kanban/_tailwind-dark-definition.scss +1 -0
- package/styles/kanban/_tailwind-definition.scss +234 -0
- package/styles/kanban/_theme.scss +148 -0
- package/styles/kanban/bootstrap-dark.css +18 -16
- package/styles/kanban/bootstrap-dark.scss +15 -1
- package/styles/kanban/bootstrap.css +18 -16
- package/styles/kanban/bootstrap.scss +15 -1
- package/styles/kanban/bootstrap4.css +18 -15
- package/styles/kanban/bootstrap4.scss +15 -1
- package/styles/kanban/bootstrap5-dark.css +20 -17
- package/styles/kanban/bootstrap5-dark.scss +15 -1
- package/styles/kanban/bootstrap5.css +20 -17
- package/styles/kanban/bootstrap5.scss +15 -1
- package/styles/kanban/fabric-dark.css +19 -17
- package/styles/kanban/fabric-dark.scss +15 -1
- package/styles/kanban/fabric.css +19 -17
- package/styles/kanban/fabric.scss +15 -1
- package/styles/kanban/fluent-dark.css +19 -16
- package/styles/kanban/fluent-dark.scss +15 -1
- package/styles/kanban/fluent.css +19 -16
- package/styles/kanban/fluent.scss +15 -1
- package/styles/kanban/highcontrast-light.css +22 -17
- package/styles/kanban/highcontrast-light.scss +15 -1
- package/styles/kanban/highcontrast.css +22 -17
- package/styles/kanban/highcontrast.scss +15 -1
- package/styles/kanban/icons/_bootstrap-dark.scss +47 -0
- package/styles/kanban/icons/_bootstrap.scss +47 -0
- package/styles/kanban/icons/_bootstrap4.scss +47 -0
- package/styles/kanban/icons/_bootstrap5-dark.scss +1 -0
- package/styles/kanban/icons/_bootstrap5.scss +47 -0
- package/styles/kanban/icons/_fabric-dark.scss +47 -0
- package/styles/kanban/icons/_fabric.scss +47 -0
- package/styles/kanban/icons/_fluent-dark.scss +1 -0
- package/styles/kanban/icons/_fluent.scss +47 -0
- package/styles/kanban/icons/_fusionnew.scss +47 -0
- package/styles/kanban/icons/_highcontrast-light.scss +47 -0
- package/styles/kanban/icons/_highcontrast.scss +47 -0
- package/styles/kanban/icons/_material-dark.scss +47 -0
- package/styles/kanban/icons/_material.scss +47 -0
- package/styles/kanban/icons/_material3.scss +47 -0
- package/styles/kanban/icons/_tailwind-dark.scss +1 -0
- package/styles/kanban/icons/_tailwind.scss +47 -0
- package/styles/kanban/material-dark.css +18 -16
- package/styles/kanban/material-dark.scss +15 -1
- package/styles/kanban/material.css +18 -16
- package/styles/kanban/material.scss +15 -1
- package/styles/kanban/tailwind-dark.css +20 -17
- package/styles/kanban/tailwind-dark.scss +15 -1
- package/styles/kanban/tailwind.css +20 -17
- package/styles/kanban/tailwind.scss +15 -1
- package/styles/material-dark.css +18 -16
- package/styles/material.css +18 -16
- package/styles/tailwind-dark.css +20 -17
- package/styles/tailwind.css +20 -17
- package/syncfusion-ej2-angular-kanban.d.ts +5 -0
- package/@syncfusion/ej2-angular-kanban.es5.js +0 -355
- package/@syncfusion/ej2-angular-kanban.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-kanban.js +0 -323
- package/@syncfusion/ej2-angular-kanban.js.map +0 -1
- package/CHANGELOG.md +0 -387
- package/dist/ej2-angular-kanban.umd.js +0 -397
- package/dist/ej2-angular-kanban.umd.js.map +0 -1
- package/dist/ej2-angular-kanban.umd.min.js +0 -11
- package/dist/ej2-angular-kanban.umd.min.js.map +0 -1
- package/ej2-angular-kanban.d.ts +0 -5
- package/ej2-angular-kanban.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -10
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/tailwind-dark.css
CHANGED
|
@@ -124,7 +124,10 @@
|
|
|
124
124
|
height: 100%;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
/*! TreeView's tailwind theme wise override definitions and variables */
|
|
127
|
+
/* stylelint-disable-line no-empty-source */ /*! TreeView's tailwind theme wise override definitions and variables */
|
|
128
|
+
/* stylelint-disable */
|
|
129
|
+
/* stylelint-disable-line no-empty-source */
|
|
130
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
128
131
|
@keyframes material-spinner-rotate {
|
|
129
132
|
0% {
|
|
130
133
|
transform: rotate(0);
|
|
@@ -208,7 +211,7 @@
|
|
|
208
211
|
}
|
|
209
212
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
210
213
|
font-size: 14px;
|
|
211
|
-
font-weight:
|
|
214
|
+
font-weight: normal;
|
|
212
215
|
line-height: 1.5;
|
|
213
216
|
padding: 0 0 0 8px;
|
|
214
217
|
}
|
|
@@ -398,7 +401,7 @@
|
|
|
398
401
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
399
402
|
display: inline-block;
|
|
400
403
|
font-size: 13px;
|
|
401
|
-
font-weight:
|
|
404
|
+
font-weight: normal;
|
|
402
405
|
opacity: 0.57;
|
|
403
406
|
}
|
|
404
407
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -637,7 +640,7 @@
|
|
|
637
640
|
}
|
|
638
641
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
639
642
|
font-size: 14px;
|
|
640
|
-
font-weight:
|
|
643
|
+
font-weight: normal;
|
|
641
644
|
line-height: 1.5;
|
|
642
645
|
padding: 0 0 0 8px;
|
|
643
646
|
}
|
|
@@ -984,15 +987,15 @@
|
|
|
984
987
|
width: 100%;
|
|
985
988
|
}
|
|
986
989
|
|
|
987
|
-
.e-kanban-dialog {
|
|
990
|
+
.e-kanban-dialog.e-dialog {
|
|
988
991
|
min-width: 350px;
|
|
989
992
|
}
|
|
990
|
-
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
991
|
-
.e-kanban-dialog .e-kanban-form-container table {
|
|
993
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table,
|
|
994
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table {
|
|
992
995
|
width: 100%;
|
|
993
996
|
}
|
|
994
|
-
.e-kanban-dialog .e-kanban-form-wrapper table td,
|
|
995
|
-
.e-kanban-dialog .e-kanban-form-container table td {
|
|
997
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td,
|
|
998
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td {
|
|
996
999
|
color: #d1d5db;
|
|
997
1000
|
font-size: 14px;
|
|
998
1001
|
font-weight: 500;
|
|
@@ -1002,17 +1005,17 @@
|
|
|
1002
1005
|
padding: 8px 0;
|
|
1003
1006
|
text-align: left;
|
|
1004
1007
|
}
|
|
1005
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-label,
|
|
1006
|
-
.e-kanban-dialog .e-kanban-form-container table .e-label {
|
|
1008
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1009
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1007
1010
|
padding-right: 10px;
|
|
1008
1011
|
vertical-align: top;
|
|
1009
1012
|
width: 70px;
|
|
1010
1013
|
}
|
|
1011
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-field,
|
|
1012
|
-
.e-kanban-dialog .e-kanban-form-container table .e-field {
|
|
1014
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-field,
|
|
1015
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-field {
|
|
1013
1016
|
width: 100%;
|
|
1014
1017
|
}
|
|
1015
|
-
.e-kanban-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1018
|
+
.e-kanban-dialog.e-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1016
1019
|
float: left;
|
|
1017
1020
|
margin-left: 0;
|
|
1018
1021
|
}
|
|
@@ -1106,16 +1109,16 @@
|
|
|
1106
1109
|
color: #8b919e;
|
|
1107
1110
|
}
|
|
1108
1111
|
|
|
1109
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1112
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
|
|
1110
1113
|
background-color: initial;
|
|
1111
1114
|
color: #fff;
|
|
1112
1115
|
min-width: 70%;
|
|
1113
|
-
font-weight:
|
|
1116
|
+
font-weight: normal;
|
|
1114
1117
|
border-color: #d1d5db;
|
|
1115
1118
|
border-radius: 4px;
|
|
1116
1119
|
outline: none;
|
|
1117
1120
|
padding: 4px 8px 4px 12px;
|
|
1118
1121
|
}
|
|
1119
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1122
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1120
1123
|
box-shadow: 0 0 0 2px #22d3ee;
|
|
1121
1124
|
}
|
package/styles/tailwind.css
CHANGED
|
@@ -124,7 +124,10 @@
|
|
|
124
124
|
height: 100%;
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
/*! TreeView's tailwind theme wise override definitions and variables */
|
|
127
|
+
/* stylelint-disable-line no-empty-source */ /*! TreeView's tailwind theme wise override definitions and variables */
|
|
128
|
+
/* stylelint-disable */
|
|
129
|
+
/* stylelint-disable-line no-empty-source */
|
|
130
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
128
131
|
@keyframes material-spinner-rotate {
|
|
129
132
|
0% {
|
|
130
133
|
transform: rotate(0);
|
|
@@ -208,7 +211,7 @@
|
|
|
208
211
|
}
|
|
209
212
|
.e-kanban .e-frozen-swimlane-row .e-frozen-row .e-swimlane-header .e-swimlane-text {
|
|
210
213
|
font-size: 14px;
|
|
211
|
-
font-weight:
|
|
214
|
+
font-weight: normal;
|
|
212
215
|
line-height: 1.5;
|
|
213
216
|
padding: 0 0 0 8px;
|
|
214
217
|
}
|
|
@@ -398,7 +401,7 @@
|
|
|
398
401
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells.e-collapsed .e-collapse-header-text .e-item-count {
|
|
399
402
|
display: inline-block;
|
|
400
403
|
font-size: 13px;
|
|
401
|
-
font-weight:
|
|
404
|
+
font-weight: normal;
|
|
402
405
|
opacity: 0.57;
|
|
403
406
|
}
|
|
404
407
|
.e-kanban .e-kanban-content .e-content-row .e-content-cells .e-show-add-button {
|
|
@@ -637,7 +640,7 @@
|
|
|
637
640
|
}
|
|
638
641
|
.e-kanban .e-kanban-content .e-content-row.e-swimlane-row .e-content-cells .e-swimlane-header .e-swimlane-text {
|
|
639
642
|
font-size: 14px;
|
|
640
|
-
font-weight:
|
|
643
|
+
font-weight: normal;
|
|
641
644
|
line-height: 1.5;
|
|
642
645
|
padding: 0 0 0 8px;
|
|
643
646
|
}
|
|
@@ -984,15 +987,15 @@
|
|
|
984
987
|
width: 100%;
|
|
985
988
|
}
|
|
986
989
|
|
|
987
|
-
.e-kanban-dialog {
|
|
990
|
+
.e-kanban-dialog.e-dialog {
|
|
988
991
|
min-width: 350px;
|
|
989
992
|
}
|
|
990
|
-
.e-kanban-dialog .e-kanban-form-wrapper table,
|
|
991
|
-
.e-kanban-dialog .e-kanban-form-container table {
|
|
993
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table,
|
|
994
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table {
|
|
992
995
|
width: 100%;
|
|
993
996
|
}
|
|
994
|
-
.e-kanban-dialog .e-kanban-form-wrapper table td,
|
|
995
|
-
.e-kanban-dialog .e-kanban-form-container table td {
|
|
997
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table td,
|
|
998
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table td {
|
|
996
999
|
color: #374151;
|
|
997
1000
|
font-size: 14px;
|
|
998
1001
|
font-weight: 500;
|
|
@@ -1002,17 +1005,17 @@
|
|
|
1002
1005
|
padding: 8px 0;
|
|
1003
1006
|
text-align: left;
|
|
1004
1007
|
}
|
|
1005
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-label,
|
|
1006
|
-
.e-kanban-dialog .e-kanban-form-container table .e-label {
|
|
1008
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-label,
|
|
1009
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-label {
|
|
1007
1010
|
padding-right: 10px;
|
|
1008
1011
|
vertical-align: top;
|
|
1009
1012
|
width: 70px;
|
|
1010
1013
|
}
|
|
1011
|
-
.e-kanban-dialog .e-kanban-form-wrapper table .e-field,
|
|
1012
|
-
.e-kanban-dialog .e-kanban-form-container table .e-field {
|
|
1014
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table .e-field,
|
|
1015
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-container table .e-field {
|
|
1013
1016
|
width: 100%;
|
|
1014
1017
|
}
|
|
1015
|
-
.e-kanban-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1018
|
+
.e-kanban-dialog.e-dialog .e-footer-content .e-dialog-delete.e-btn {
|
|
1016
1019
|
float: left;
|
|
1017
1020
|
margin-left: 0;
|
|
1018
1021
|
}
|
|
@@ -1106,16 +1109,16 @@
|
|
|
1106
1109
|
color: #9ca3af;
|
|
1107
1110
|
}
|
|
1108
1111
|
|
|
1109
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea {
|
|
1112
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea {
|
|
1110
1113
|
background-color: initial;
|
|
1111
1114
|
color: #111827;
|
|
1112
1115
|
min-width: 70%;
|
|
1113
|
-
font-weight:
|
|
1116
|
+
font-weight: normal;
|
|
1114
1117
|
border-color: #d1d5db;
|
|
1115
1118
|
border-radius: 4px;
|
|
1116
1119
|
outline: none;
|
|
1117
1120
|
padding: 4px 8px 4px 12px;
|
|
1118
1121
|
}
|
|
1119
|
-
.e-kanban-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1122
|
+
.e-kanban-dialog.e-dialog .e-kanban-form-wrapper table textarea:focus {
|
|
1120
1123
|
box-shadow: 0 0 0 2px #4f46e5;
|
|
1121
1124
|
}
|
|
@@ -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', 'cardSettings', 'columns', 'constraintType', 'cssClass', 'dataSource', 'dialogSettings', 'enablePersistence', 'enableRtl', 'enableTooltip', '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,CardClickEventArgs,QueryCellInfoEventArgs,CardRenderedEventArgs,DragEventArgs,DialogEventArgs,DialogCloseEventArgs,SaveChanges,EJ2Instance,DragArgs,HeaderArgs,DragEdges,ScrollPosition,ScrollOffset,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','cardSettings','columns','constraintType','cssClass','dataSource','dialogSettings','enablePersistence','enableRtl','enableTooltip','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 */\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 * @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 */\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 * @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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"}
|