@syncfusion/ej2-angular-gantt 29.1.33-ngcc → 29.1.33

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 (40) hide show
  1. package/CHANGELOG.md +2749 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/gantt/adddialogfields.directive.mjs +58 -0
  4. package/esm2020/src/gantt/columns.directive.mjs +72 -0
  5. package/esm2020/src/gantt/dayworkingtime.directive.mjs +58 -0
  6. package/esm2020/src/gantt/editdialogfields.directive.mjs +58 -0
  7. package/esm2020/src/gantt/eventmarkers.directive.mjs +57 -0
  8. package/esm2020/src/gantt/gantt-all.module.mjs +74 -0
  9. package/esm2020/src/gantt/gantt.component.mjs +279 -0
  10. package/esm2020/src/gantt/gantt.module.mjs +88 -0
  11. package/esm2020/src/gantt/holidays.directive.mjs +58 -0
  12. package/esm2020/src/gantt/weekworkingtime.directive.mjs +58 -0
  13. package/esm2020/src/index.mjs +12 -0
  14. package/esm2020/syncfusion-ej2-angular-gantt.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-gantt.mjs +821 -0
  16. package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-gantt.mjs +821 -0
  18. package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  19. package/package.json +24 -11
  20. package/src/gantt/adddialogfields.directive.d.ts +5 -0
  21. package/src/gantt/columns.directive.d.ts +5 -0
  22. package/src/gantt/dayworkingtime.directive.d.ts +5 -0
  23. package/src/gantt/editdialogfields.directive.d.ts +5 -0
  24. package/src/gantt/eventmarkers.directive.d.ts +5 -0
  25. package/src/gantt/gantt-all.module.d.ts +6 -0
  26. package/src/gantt/gantt.component.d.ts +3 -0
  27. package/src/gantt/gantt.module.d.ts +13 -0
  28. package/src/gantt/holidays.directive.d.ts +5 -0
  29. package/src/gantt/weekworkingtime.directive.d.ts +5 -0
  30. package/{ej2-angular-gantt.d.ts → syncfusion-ej2-angular-gantt.d.ts} +1 -1
  31. package/@syncfusion/ej2-angular-gantt.es5.js +0 -904
  32. package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
  33. package/@syncfusion/ej2-angular-gantt.js +0 -852
  34. package/@syncfusion/ej2-angular-gantt.js.map +0 -1
  35. package/dist/ej2-angular-gantt.umd.js +0 -1023
  36. package/dist/ej2-angular-gantt.umd.js.map +0 -1
  37. package/dist/ej2-angular-gantt.umd.min.js +0 -11
  38. package/dist/ej2-angular-gantt.umd.min.js.map +0 -1
  39. package/ej2-angular-gantt.metadata.json +0 -1
  40. package/license +0 -10
@@ -0,0 +1,821 @@
1
+ import { __decorate } from 'tslib';
2
+ import * as i0 from '@angular/core';
3
+ import { Directive, ContentChild, ContentChildren, Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
4
+ import { ComplexBase, setValue, Template, ArrayBase, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
5
+ import { Gantt, Filter, Selection, Sort, Reorder, Resize, Edit, DayMarkers, Toolbar, ContextMenu, ExcelExport, RowDD, ColumnMenu, PdfExport, VirtualScroll, CriticalPath, UndoRedo } from '@syncfusion/ej2-gantt';
6
+ export * from '@syncfusion/ej2-gantt';
7
+ import { CommonModule } from '@angular/common';
8
+
9
+ let input$6 = ['allowEditing', 'allowFiltering', 'allowReordering', 'allowResizing', 'allowSorting', 'clipMode', 'customAttributes', 'disableHtmlEncode', 'displayAsCheckBox', 'edit', 'editType', 'field', 'filter', 'format', 'formatter', 'headerTemplate', 'headerText', 'headerTextAlign', 'hideAtMedia', 'isPrimaryKey', 'maxWidth', 'minWidth', 'sortComparer', 'template', 'textAlign', 'type', 'validationRules', 'valueAccessor', 'visible', 'width'];
10
+ let outputs$7 = [];
11
+ /**
12
+ * `e-column` directive represent a column of the Angular Gantt.
13
+ * It must be contained in a Gantt component(`ejs-gantt`).
14
+ * ```html
15
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
16
+ * <e-columns>
17
+ * <e-column field='ID' width='150'></e-column>
18
+ * <e-column field='taskName' headerText='Task Name' width='200'></e-column>
19
+ * </e-columns>
20
+ * </ejs-gantt>
21
+ * ```
22
+ */
23
+ class ColumnDirective extends ComplexBase {
24
+ constructor(viewContainerRef) {
25
+ super();
26
+ this.viewContainerRef = viewContainerRef;
27
+ setValue('currentInstance', this, this.viewContainerRef);
28
+ this.registerEvents(outputs$7);
29
+ this.directivePropList = input$6;
30
+ }
31
+ }
32
+ ColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
33
+ ColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColumnDirective, selector: "ejs-gantt>e-columns>e-column", inputs: { allowEditing: "allowEditing", allowFiltering: "allowFiltering", allowReordering: "allowReordering", allowResizing: "allowResizing", allowSorting: "allowSorting", clipMode: "clipMode", customAttributes: "customAttributes", disableHtmlEncode: "disableHtmlEncode", displayAsCheckBox: "displayAsCheckBox", edit: "edit", editType: "editType", field: "field", filter: "filter", format: "format", formatter: "formatter", headerTemplate: "headerTemplate", headerText: "headerText", headerTextAlign: "headerTextAlign", hideAtMedia: "hideAtMedia", isPrimaryKey: "isPrimaryKey", maxWidth: "maxWidth", minWidth: "minWidth", sortComparer: "sortComparer", template: "template", textAlign: "textAlign", type: "type", validationRules: "validationRules", valueAccessor: "valueAccessor", visible: "visible", width: "width" }, queries: [{ propertyName: "template", first: true, predicate: ["template"], descendants: true }, { propertyName: "headerTemplate", first: true, predicate: ["headerTemplate"], descendants: true }], usesInheritance: true, ngImport: i0 });
34
+ __decorate([
35
+ Template()
36
+ ], ColumnDirective.prototype, "template", void 0);
37
+ __decorate([
38
+ Template()
39
+ ], ColumnDirective.prototype, "headerTemplate", void 0);
40
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnDirective, decorators: [{
41
+ type: Directive,
42
+ args: [{
43
+ selector: 'ejs-gantt>e-columns>e-column',
44
+ inputs: input$6,
45
+ outputs: outputs$7,
46
+ queries: {}
47
+ }]
48
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { template: [{
49
+ type: ContentChild,
50
+ args: ['template']
51
+ }], headerTemplate: [{
52
+ type: ContentChild,
53
+ args: ['headerTemplate']
54
+ }] } });
55
+ /**
56
+ * Column Array Directive
57
+ * @private
58
+ */
59
+ class ColumnsDirective extends ArrayBase {
60
+ constructor() {
61
+ super('columns');
62
+ }
63
+ }
64
+ ColumnsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
65
+ ColumnsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: ColumnsDirective, selector: "ejs-gantt>e-columns", queries: [{ propertyName: "children", predicate: ColumnDirective }], usesInheritance: true, ngImport: i0 });
66
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: ColumnsDirective, decorators: [{
67
+ type: Directive,
68
+ args: [{
69
+ selector: 'ejs-gantt>e-columns',
70
+ queries: {
71
+ children: new ContentChildren(ColumnDirective)
72
+ },
73
+ }]
74
+ }], ctorParameters: function () { return []; } });
75
+
76
+ let input$5 = ['additionalParams', 'fields', 'headerText', 'type'];
77
+ let outputs$6 = [];
78
+ /**
79
+ * `e-add-dialog-field` directive represent a add dialog fields collection in Gantt task add dialog.
80
+ * It must be contained in a Gantt component(`ejs-gantt`).
81
+ * ```html
82
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
83
+ * <e-add-dialog-fields>
84
+ * <e-add-dialog-field type='General' headerText='General'></e-add-dialog-field>
85
+ * <e-add-dialog-field type='Dependency' headerText='Dependency'></e-add-dialog-field>
86
+ * </e-add-dialog-fields>
87
+ * </ejs-gantt>
88
+ * ```
89
+ */
90
+ class AddDialogFieldDirective extends ComplexBase {
91
+ constructor(viewContainerRef) {
92
+ super();
93
+ this.viewContainerRef = viewContainerRef;
94
+ setValue('currentInstance', this, this.viewContainerRef);
95
+ this.registerEvents(outputs$6);
96
+ this.directivePropList = input$5;
97
+ }
98
+ }
99
+ AddDialogFieldDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AddDialogFieldDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
100
+ AddDialogFieldDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AddDialogFieldDirective, selector: "ejs-gantt>e-add-dialog-fields>e-add-dialog-field", inputs: { additionalParams: "additionalParams", fields: "fields", headerText: "headerText", type: "type" }, usesInheritance: true, ngImport: i0 });
101
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AddDialogFieldDirective, decorators: [{
102
+ type: Directive,
103
+ args: [{
104
+ selector: 'ejs-gantt>e-add-dialog-fields>e-add-dialog-field',
105
+ inputs: input$5,
106
+ outputs: outputs$6,
107
+ queries: {}
108
+ }]
109
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
110
+ /**
111
+ * AddDialogField Array Directive
112
+ * @private
113
+ */
114
+ class AddDialogFieldsDirective extends ArrayBase {
115
+ constructor() {
116
+ super('adddialogfields');
117
+ }
118
+ }
119
+ AddDialogFieldsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AddDialogFieldsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
120
+ AddDialogFieldsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: AddDialogFieldsDirective, selector: "ejs-gantt>e-add-dialog-fields", queries: [{ propertyName: "children", predicate: AddDialogFieldDirective }], usesInheritance: true, ngImport: i0 });
121
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: AddDialogFieldsDirective, decorators: [{
122
+ type: Directive,
123
+ args: [{
124
+ selector: 'ejs-gantt>e-add-dialog-fields',
125
+ queries: {
126
+ children: new ContentChildren(AddDialogFieldDirective)
127
+ },
128
+ }]
129
+ }], ctorParameters: function () { return []; } });
130
+
131
+ let input$4 = ['additionalParams', 'fields', 'headerText', 'type'];
132
+ let outputs$5 = [];
133
+ /**
134
+ * `e-edit-dialog-field` directive represent a edit dialog fields collection in Gantt task add dialog.
135
+ * It must be contained in a Gantt component(`ejs-gantt`).
136
+ * ```html
137
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
138
+ * <e-edit-dialog-fields>
139
+ * <e-edit-dialog-field type='General' headerText='General'></e-edit-dialog-field>
140
+ * <e-edit-dialog-field type='Dependency' headerText='Dependency'></e-edit-dialog-field>
141
+ * </e-edit-dialog-fields>
142
+ * </ejs-gantt>
143
+ * ```
144
+ */
145
+ class EditDialogFieldDirective extends ComplexBase {
146
+ constructor(viewContainerRef) {
147
+ super();
148
+ this.viewContainerRef = viewContainerRef;
149
+ setValue('currentInstance', this, this.viewContainerRef);
150
+ this.registerEvents(outputs$5);
151
+ this.directivePropList = input$4;
152
+ }
153
+ }
154
+ EditDialogFieldDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: EditDialogFieldDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
155
+ EditDialogFieldDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: EditDialogFieldDirective, selector: "ejs-gantt>e-edit-dialog-fields>e-edit-dialog-field", inputs: { additionalParams: "additionalParams", fields: "fields", headerText: "headerText", type: "type" }, usesInheritance: true, ngImport: i0 });
156
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: EditDialogFieldDirective, decorators: [{
157
+ type: Directive,
158
+ args: [{
159
+ selector: 'ejs-gantt>e-edit-dialog-fields>e-edit-dialog-field',
160
+ inputs: input$4,
161
+ outputs: outputs$5,
162
+ queries: {}
163
+ }]
164
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
165
+ /**
166
+ * EditDialogField Array Directive
167
+ * @private
168
+ */
169
+ class EditDialogFieldsDirective extends ArrayBase {
170
+ constructor() {
171
+ super('editdialogfields');
172
+ }
173
+ }
174
+ EditDialogFieldsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: EditDialogFieldsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
175
+ EditDialogFieldsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: EditDialogFieldsDirective, selector: "ejs-gantt>e-edit-dialog-fields", queries: [{ propertyName: "children", predicate: EditDialogFieldDirective }], usesInheritance: true, ngImport: i0 });
176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: EditDialogFieldsDirective, decorators: [{
177
+ type: Directive,
178
+ args: [{
179
+ selector: 'ejs-gantt>e-edit-dialog-fields',
180
+ queries: {
181
+ children: new ContentChildren(EditDialogFieldDirective)
182
+ },
183
+ }]
184
+ }], ctorParameters: function () { return []; } });
185
+
186
+ let input$3 = ['from', 'to'];
187
+ let outputs$4 = [];
188
+ /**
189
+ * `e-day-working-time-collection` directive represent a working time ranges in a day.
190
+ * It must be contained in a Gantt component(`ejs-gantt`).
191
+ * ```html
192
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
193
+ * <e-day-working-time-collection>
194
+ * <e-day-working-time from='8' to='12'></e-day-working-time>
195
+ * <e-day-working-time from='13' to='17'></e-day-working-time>
196
+ * </e-day-working-time-collection>
197
+ * </ejs-gantt>
198
+ * ```
199
+ */
200
+ class DayWorkingTimeDirective extends ComplexBase {
201
+ constructor(viewContainerRef) {
202
+ super();
203
+ this.viewContainerRef = viewContainerRef;
204
+ setValue('currentInstance', this, this.viewContainerRef);
205
+ this.registerEvents(outputs$4);
206
+ this.directivePropList = input$3;
207
+ }
208
+ }
209
+ DayWorkingTimeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DayWorkingTimeDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
210
+ DayWorkingTimeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: DayWorkingTimeDirective, selector: "ejs-gantt>e-day-working-time-collection>e-day-working-time", inputs: { from: "from", to: "to" }, usesInheritance: true, ngImport: i0 });
211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DayWorkingTimeDirective, decorators: [{
212
+ type: Directive,
213
+ args: [{
214
+ selector: 'ejs-gantt>e-day-working-time-collection>e-day-working-time',
215
+ inputs: input$3,
216
+ outputs: outputs$4,
217
+ queries: {}
218
+ }]
219
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
220
+ /**
221
+ * DayWorkingTime Array Directive
222
+ * @private
223
+ */
224
+ class DayWorkingTimeCollectionDirective extends ArrayBase {
225
+ constructor() {
226
+ super('dayworkingtime');
227
+ }
228
+ }
229
+ DayWorkingTimeCollectionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DayWorkingTimeCollectionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
230
+ DayWorkingTimeCollectionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: DayWorkingTimeCollectionDirective, selector: "ejs-gantt>e-day-working-time-collection", queries: [{ propertyName: "children", predicate: DayWorkingTimeDirective }], usesInheritance: true, ngImport: i0 });
231
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DayWorkingTimeCollectionDirective, decorators: [{
232
+ type: Directive,
233
+ args: [{
234
+ selector: 'ejs-gantt>e-day-working-time-collection',
235
+ queries: {
236
+ children: new ContentChildren(DayWorkingTimeDirective)
237
+ },
238
+ }]
239
+ }], ctorParameters: function () { return []; } });
240
+
241
+ let input$2 = ['dayOfWeek', 'timeRange'];
242
+ let outputs$3 = [];
243
+ /**
244
+ * `e-week-working-times` directive represent a working time ranges in a day.
245
+ * It must be contained in a Gantt component(`ejs-gantt`).
246
+ * ```html
247
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
248
+ * <e-week-working-times>
249
+ * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
250
+ * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
251
+ * </e-week-working-times>
252
+ * </ejs-gantt>
253
+ * ```
254
+ */
255
+ class WeekWorkingTimeDirective extends ComplexBase {
256
+ constructor(viewContainerRef) {
257
+ super();
258
+ this.viewContainerRef = viewContainerRef;
259
+ setValue('currentInstance', this, this.viewContainerRef);
260
+ this.registerEvents(outputs$3);
261
+ this.directivePropList = input$2;
262
+ }
263
+ }
264
+ WeekWorkingTimeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: WeekWorkingTimeDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
265
+ WeekWorkingTimeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: WeekWorkingTimeDirective, selector: "ejs-gantt>e-week-working-times>e-week-working-time", inputs: { dayOfWeek: "dayOfWeek", timeRange: "timeRange" }, usesInheritance: true, ngImport: i0 });
266
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: WeekWorkingTimeDirective, decorators: [{
267
+ type: Directive,
268
+ args: [{
269
+ selector: 'ejs-gantt>e-week-working-times>e-week-working-time',
270
+ inputs: input$2,
271
+ outputs: outputs$3,
272
+ queries: {}
273
+ }]
274
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
275
+ /**
276
+ * WeekWorkingTime Array Directive
277
+ * @private
278
+ */
279
+ class WeekWorkingTimesDirective extends ArrayBase {
280
+ constructor() {
281
+ super('weekworkingtime');
282
+ }
283
+ }
284
+ WeekWorkingTimesDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: WeekWorkingTimesDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
285
+ WeekWorkingTimesDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: WeekWorkingTimesDirective, selector: "ejs-gantt>e-week-working-times", queries: [{ propertyName: "children", predicate: WeekWorkingTimeDirective }], usesInheritance: true, ngImport: i0 });
286
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: WeekWorkingTimesDirective, decorators: [{
287
+ type: Directive,
288
+ args: [{
289
+ selector: 'ejs-gantt>e-week-working-times',
290
+ queries: {
291
+ children: new ContentChildren(WeekWorkingTimeDirective)
292
+ },
293
+ }]
294
+ }], ctorParameters: function () { return []; } });
295
+
296
+ let input$1 = ['cssClass', 'from', 'label', 'to'];
297
+ let outputs$2 = [];
298
+ /**
299
+ * `e-holidays` directive represent a holidays collection in Gantt.
300
+ * It must be contained in a Gantt component(`ejs-gantt`).
301
+ * ```html
302
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
303
+ * <e-holidays>
304
+ * <e-holiday from='02/20/2018' label='Holiday 1'></e-holiday>
305
+ * <e-holiday from='05/15/2018' label='Holiday 2'></e-holiday>
306
+ * </e-holidays>
307
+ * </ejs-gantt>
308
+ * ```
309
+ */
310
+ class HolidayDirective extends ComplexBase {
311
+ constructor(viewContainerRef) {
312
+ super();
313
+ this.viewContainerRef = viewContainerRef;
314
+ setValue('currentInstance', this, this.viewContainerRef);
315
+ this.registerEvents(outputs$2);
316
+ this.directivePropList = input$1;
317
+ }
318
+ }
319
+ HolidayDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: HolidayDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
320
+ HolidayDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: HolidayDirective, selector: "ejs-gantt>e-holidays>e-holidays", inputs: { cssClass: "cssClass", from: "from", label: "label", to: "to" }, usesInheritance: true, ngImport: i0 });
321
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: HolidayDirective, decorators: [{
322
+ type: Directive,
323
+ args: [{
324
+ selector: 'ejs-gantt>e-holidays>e-holidays',
325
+ inputs: input$1,
326
+ outputs: outputs$2,
327
+ queries: {}
328
+ }]
329
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
330
+ /**
331
+ * Holiday Array Directive
332
+ * @private
333
+ */
334
+ class HolidaysDirective extends ArrayBase {
335
+ constructor() {
336
+ super('holidays');
337
+ }
338
+ }
339
+ HolidaysDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: HolidaysDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
340
+ HolidaysDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: HolidaysDirective, selector: "ejs-gantt>e-holidays", queries: [{ propertyName: "children", predicate: HolidayDirective }], usesInheritance: true, ngImport: i0 });
341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: HolidaysDirective, decorators: [{
342
+ type: Directive,
343
+ args: [{
344
+ selector: 'ejs-gantt>e-holidays',
345
+ queries: {
346
+ children: new ContentChildren(HolidayDirective)
347
+ },
348
+ }]
349
+ }], ctorParameters: function () { return []; } });
350
+
351
+ let input = ['cssClass', 'day', 'label'];
352
+ let outputs$1 = [];
353
+ /**
354
+ * `e-event-markers` directive represent a event marker collection in Gantt.
355
+ * It must be contained in a Gantt component(`ejs-gantt`).
356
+ * ```html
357
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
358
+ * <e-event-markers>
359
+ * <e-event-marker day='02/10/2018' label='Project Starts'></e-event-marker>
360
+ * </e-event-markers>
361
+ * </ejs-gantt>
362
+ * ```
363
+ */
364
+ class EventMarkerDirective extends ComplexBase {
365
+ constructor(viewContainerRef) {
366
+ super();
367
+ this.viewContainerRef = viewContainerRef;
368
+ setValue('currentInstance', this, this.viewContainerRef);
369
+ this.registerEvents(outputs$1);
370
+ this.directivePropList = input;
371
+ }
372
+ }
373
+ EventMarkerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: EventMarkerDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
374
+ EventMarkerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: EventMarkerDirective, selector: "ejs-gantt>e-event-markers>e-event-marker", inputs: { cssClass: "cssClass", day: "day", label: "label" }, usesInheritance: true, ngImport: i0 });
375
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: EventMarkerDirective, decorators: [{
376
+ type: Directive,
377
+ args: [{
378
+ selector: 'ejs-gantt>e-event-markers>e-event-marker',
379
+ inputs: input,
380
+ outputs: outputs$1,
381
+ queries: {}
382
+ }]
383
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
384
+ /**
385
+ * EventMarker Array Directive
386
+ * @private
387
+ */
388
+ class EventMarkersDirective extends ArrayBase {
389
+ constructor() {
390
+ super('eventmarkers');
391
+ }
392
+ }
393
+ EventMarkersDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: EventMarkersDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
394
+ EventMarkersDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.3", type: EventMarkersDirective, selector: "ejs-gantt>e-event-markers", queries: [{ propertyName: "children", predicate: EventMarkerDirective }], usesInheritance: true, ngImport: i0 });
395
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: EventMarkersDirective, decorators: [{
396
+ type: Directive,
397
+ args: [{
398
+ selector: 'ejs-gantt>e-event-markers',
399
+ queries: {
400
+ children: new ContentChildren(EventMarkerDirective)
401
+ },
402
+ }]
403
+ }], ctorParameters: function () { return []; } });
404
+
405
+ const inputs = ['UpdateOffsetOnTaskbarEdit', 'addDialogFields', 'allowExcelExport', 'allowFiltering', 'allowKeyboard', 'allowParentDependency', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTaskbarDragAndDrop', 'allowTaskbarOverlap', 'allowUnscheduledTasks', 'autoCalculateDateScheduling', 'autoFocusTasks', 'baselineColor', 'collapseAllParentTasks', 'columnMenuItems', 'columns', 'connectorLineBackground', 'connectorLineWidth', 'contextMenuItems', 'dataSource', 'dateFormat', 'dayWorkingTime', 'disableHtmlEncode', 'durationUnit', 'editDialogFields', 'editSettings', 'enableAdaptiveUI', 'enableContextMenu', 'enableCriticalPath', 'enableHtmlSanitizer', 'enableImmutableMode', 'enableMultiTaskbar', 'enablePersistence', 'enablePredecessorValidation', 'enableRtl', 'enableTimelineVirtualization', 'enableUndoRedo', 'enableVirtualMaskRow', 'enableVirtualization', 'eventMarkers', 'filterSettings', 'gridLines', 'height', 'highlightWeekends', 'holidays', 'includeWeekend', 'labelSettings', 'loadChildOnDemand', 'loadingIndicator', 'locale', 'milestoneTemplate', 'parentTaskbarTemplate', 'projectEndDate', 'projectStartDate', 'query', 'readOnly', 'renderBaseline', 'resourceFields', 'resourceIDMapping', 'resourceNameMapping', 'resources', 'rowHeight', 'searchSettings', 'segmentData', 'selectedRowIndex', 'selectionSettings', 'showColumnMenu', 'showInlineNotes', 'showOverAllocation', 'sortSettings', 'splitterSettings', 'taskFields', 'taskMode', 'taskType', 'taskbarHeight', 'taskbarTemplate', 'timelineSettings', 'timelineTemplate', 'timezone', 'toolbar', 'tooltipSettings', 'treeColumnIndex', 'undoRedoActions', 'undoRedoStepsCount', 'updateOffsetOnTaskbarEdit', 'validateManualTasksOnLinking', 'viewType', 'weekWorkingTime', 'width', 'workUnit', 'workWeek', 'zoomingLevels'];
406
+ const outputs = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeExcelExport', 'beforePdfExport', 'beforeTooltipRender', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSelected', 'cellSelecting', 'collapsed', 'collapsing', 'columnDrag', 'columnDragStart', 'columnDrop', 'columnMenuClick', 'columnMenuOpen', 'contextMenuClick', 'contextMenuOpen', 'created', 'dataBound', 'dataStateChange', 'destroyed', 'endEdit', 'excelExportComplete', 'excelHeaderQueryCellInfo', 'excelQueryCellInfo', 'expanded', 'expanding', 'headerCellInfo', 'load', 'onMouseMove', 'onTaskbarClick', 'pdfColumnHeaderQueryCellInfo', 'pdfExportComplete', 'pdfQueryCellInfo', 'pdfQueryTaskbarInfo', 'pdfQueryTimelineCellInfo', 'queryCellInfo', 'queryTaskbarInfo', 'recordDoubleClick', 'resizeStart', 'resizeStop', 'resizing', 'rowDataBound', 'rowDeselected', 'rowDeselecting', 'rowDrag', 'rowDragStart', 'rowDragStartHelper', 'rowDrop', 'rowSelected', 'rowSelecting', 'splitterResizeStart', 'splitterResized', 'splitterResizing', 'taskbarEdited', 'taskbarEditing', 'toolbarClick', 'dataSourceChange'];
407
+ const twoWays = ['dataSource'];
408
+ /**
409
+ * `ejs-gantt` represents the Angular Gantt Component.
410
+ * ```html
411
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'></ejs-gantt>
412
+ * ```
413
+ */
414
+ let GanttComponent = class GanttComponent extends Gantt {
415
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
416
+ super();
417
+ this.ngEle = ngEle;
418
+ this.srenderer = srenderer;
419
+ this.viewContainerRef = viewContainerRef;
420
+ this.injector = injector;
421
+ this.tags = ['columns', 'addDialogFields', 'editDialogFields', 'dayWorkingTime', 'weekWorkingTime', 'holidays', 'eventMarkers'];
422
+ this.element = this.ngEle.nativeElement;
423
+ this.injectedModules = this.injectedModules || [];
424
+ try {
425
+ let mod = this.injector.get('GanttFilter');
426
+ if (this.injectedModules.indexOf(mod) === -1) {
427
+ this.injectedModules.push(mod);
428
+ }
429
+ }
430
+ catch (_a) { }
431
+ try {
432
+ let mod = this.injector.get('GanttSelection');
433
+ if (this.injectedModules.indexOf(mod) === -1) {
434
+ this.injectedModules.push(mod);
435
+ }
436
+ }
437
+ catch (_b) { }
438
+ try {
439
+ let mod = this.injector.get('GanttSort');
440
+ if (this.injectedModules.indexOf(mod) === -1) {
441
+ this.injectedModules.push(mod);
442
+ }
443
+ }
444
+ catch (_c) { }
445
+ try {
446
+ let mod = this.injector.get('GanttReorder');
447
+ if (this.injectedModules.indexOf(mod) === -1) {
448
+ this.injectedModules.push(mod);
449
+ }
450
+ }
451
+ catch (_d) { }
452
+ try {
453
+ let mod = this.injector.get('GanttResize');
454
+ if (this.injectedModules.indexOf(mod) === -1) {
455
+ this.injectedModules.push(mod);
456
+ }
457
+ }
458
+ catch (_e) { }
459
+ try {
460
+ let mod = this.injector.get('GanttEdit');
461
+ if (this.injectedModules.indexOf(mod) === -1) {
462
+ this.injectedModules.push(mod);
463
+ }
464
+ }
465
+ catch (_f) { }
466
+ try {
467
+ let mod = this.injector.get('GanttDayMarkers');
468
+ if (this.injectedModules.indexOf(mod) === -1) {
469
+ this.injectedModules.push(mod);
470
+ }
471
+ }
472
+ catch (_g) { }
473
+ try {
474
+ let mod = this.injector.get('GanttToolbar');
475
+ if (this.injectedModules.indexOf(mod) === -1) {
476
+ this.injectedModules.push(mod);
477
+ }
478
+ }
479
+ catch (_h) { }
480
+ try {
481
+ let mod = this.injector.get('GanttContextMenu');
482
+ if (this.injectedModules.indexOf(mod) === -1) {
483
+ this.injectedModules.push(mod);
484
+ }
485
+ }
486
+ catch (_j) { }
487
+ try {
488
+ let mod = this.injector.get('GanttExcelExport');
489
+ if (this.injectedModules.indexOf(mod) === -1) {
490
+ this.injectedModules.push(mod);
491
+ }
492
+ }
493
+ catch (_k) { }
494
+ try {
495
+ let mod = this.injector.get('GanttRowDD');
496
+ if (this.injectedModules.indexOf(mod) === -1) {
497
+ this.injectedModules.push(mod);
498
+ }
499
+ }
500
+ catch (_l) { }
501
+ try {
502
+ let mod = this.injector.get('GanttColumnMenu');
503
+ if (this.injectedModules.indexOf(mod) === -1) {
504
+ this.injectedModules.push(mod);
505
+ }
506
+ }
507
+ catch (_m) { }
508
+ try {
509
+ let mod = this.injector.get('GanttPdfExport');
510
+ if (this.injectedModules.indexOf(mod) === -1) {
511
+ this.injectedModules.push(mod);
512
+ }
513
+ }
514
+ catch (_o) { }
515
+ try {
516
+ let mod = this.injector.get('GanttVirtualScroll');
517
+ if (this.injectedModules.indexOf(mod) === -1) {
518
+ this.injectedModules.push(mod);
519
+ }
520
+ }
521
+ catch (_p) { }
522
+ try {
523
+ let mod = this.injector.get('GanttCriticalPath');
524
+ if (this.injectedModules.indexOf(mod) === -1) {
525
+ this.injectedModules.push(mod);
526
+ }
527
+ }
528
+ catch (_q) { }
529
+ try {
530
+ let mod = this.injector.get('GanttUndoRedo');
531
+ if (this.injectedModules.indexOf(mod) === -1) {
532
+ this.injectedModules.push(mod);
533
+ }
534
+ }
535
+ catch (_r) { }
536
+ this.registerEvents(outputs);
537
+ this.addTwoWay.call(this, twoWays);
538
+ setValue('currentInstance', this, this.viewContainerRef);
539
+ this.context = new ComponentBase();
540
+ }
541
+ ngOnInit() {
542
+ this.context.ngOnInit(this);
543
+ }
544
+ ngAfterViewInit() {
545
+ this.context.ngAfterViewInit(this);
546
+ }
547
+ ngOnDestroy() {
548
+ this.context.ngOnDestroy(this);
549
+ }
550
+ ngAfterContentChecked() {
551
+ this.tagObjects[0].instance = this.childColumns;
552
+ if (this.childAddDialogFields) {
553
+ this.tagObjects[1].instance = this.childAddDialogFields;
554
+ }
555
+ if (this.childEditDialogFields) {
556
+ this.tagObjects[2].instance = this.childEditDialogFields;
557
+ }
558
+ if (this.childDayWorkingTime) {
559
+ this.tagObjects[3].instance = this.childDayWorkingTime;
560
+ }
561
+ if (this.childWeekWorkingTime) {
562
+ this.tagObjects[4].instance = this.childWeekWorkingTime;
563
+ }
564
+ if (this.childHolidays) {
565
+ this.tagObjects[5].instance = this.childHolidays;
566
+ }
567
+ if (this.childEventMarkers) {
568
+ this.tagObjects[6].instance = this.childEventMarkers;
569
+ }
570
+ this.context.ngAfterContentChecked(this);
571
+ }
572
+ };
573
+ GanttComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
574
+ GanttComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: GanttComponent, selector: "ejs-gantt", inputs: { UpdateOffsetOnTaskbarEdit: "UpdateOffsetOnTaskbarEdit", addDialogFields: "addDialogFields", allowExcelExport: "allowExcelExport", allowFiltering: "allowFiltering", allowKeyboard: "allowKeyboard", allowParentDependency: "allowParentDependency", allowPdfExport: "allowPdfExport", allowReordering: "allowReordering", allowResizing: "allowResizing", allowRowDragAndDrop: "allowRowDragAndDrop", allowSelection: "allowSelection", allowSorting: "allowSorting", allowTaskbarDragAndDrop: "allowTaskbarDragAndDrop", allowTaskbarOverlap: "allowTaskbarOverlap", allowUnscheduledTasks: "allowUnscheduledTasks", autoCalculateDateScheduling: "autoCalculateDateScheduling", autoFocusTasks: "autoFocusTasks", baselineColor: "baselineColor", collapseAllParentTasks: "collapseAllParentTasks", columnMenuItems: "columnMenuItems", columns: "columns", connectorLineBackground: "connectorLineBackground", connectorLineWidth: "connectorLineWidth", contextMenuItems: "contextMenuItems", dataSource: "dataSource", dateFormat: "dateFormat", dayWorkingTime: "dayWorkingTime", disableHtmlEncode: "disableHtmlEncode", durationUnit: "durationUnit", editDialogFields: "editDialogFields", editSettings: "editSettings", enableAdaptiveUI: "enableAdaptiveUI", enableContextMenu: "enableContextMenu", enableCriticalPath: "enableCriticalPath", enableHtmlSanitizer: "enableHtmlSanitizer", enableImmutableMode: "enableImmutableMode", enableMultiTaskbar: "enableMultiTaskbar", enablePersistence: "enablePersistence", enablePredecessorValidation: "enablePredecessorValidation", enableRtl: "enableRtl", enableTimelineVirtualization: "enableTimelineVirtualization", enableUndoRedo: "enableUndoRedo", enableVirtualMaskRow: "enableVirtualMaskRow", enableVirtualization: "enableVirtualization", eventMarkers: "eventMarkers", filterSettings: "filterSettings", gridLines: "gridLines", height: "height", highlightWeekends: "highlightWeekends", holidays: "holidays", includeWeekend: "includeWeekend", labelSettings: "labelSettings", loadChildOnDemand: "loadChildOnDemand", loadingIndicator: "loadingIndicator", locale: "locale", milestoneTemplate: "milestoneTemplate", parentTaskbarTemplate: "parentTaskbarTemplate", projectEndDate: "projectEndDate", projectStartDate: "projectStartDate", query: "query", readOnly: "readOnly", renderBaseline: "renderBaseline", resourceFields: "resourceFields", resourceIDMapping: "resourceIDMapping", resourceNameMapping: "resourceNameMapping", resources: "resources", rowHeight: "rowHeight", searchSettings: "searchSettings", segmentData: "segmentData", selectedRowIndex: "selectedRowIndex", selectionSettings: "selectionSettings", showColumnMenu: "showColumnMenu", showInlineNotes: "showInlineNotes", showOverAllocation: "showOverAllocation", sortSettings: "sortSettings", splitterSettings: "splitterSettings", taskFields: "taskFields", taskMode: "taskMode", taskType: "taskType", taskbarHeight: "taskbarHeight", taskbarTemplate: "taskbarTemplate", timelineSettings: "timelineSettings", timelineTemplate: "timelineTemplate", timezone: "timezone", toolbar: "toolbar", tooltipSettings: "tooltipSettings", treeColumnIndex: "treeColumnIndex", undoRedoActions: "undoRedoActions", undoRedoStepsCount: "undoRedoStepsCount", updateOffsetOnTaskbarEdit: "updateOffsetOnTaskbarEdit", validateManualTasksOnLinking: "validateManualTasksOnLinking", viewType: "viewType", weekWorkingTime: "weekWorkingTime", width: "width", workUnit: "workUnit", workWeek: "workWeek", zoomingLevels: "zoomingLevels" }, outputs: { actionBegin: "actionBegin", actionComplete: "actionComplete", actionFailure: "actionFailure", beforeExcelExport: "beforeExcelExport", beforePdfExport: "beforePdfExport", beforeTooltipRender: "beforeTooltipRender", cellDeselected: "cellDeselected", cellDeselecting: "cellDeselecting", cellEdit: "cellEdit", cellSelected: "cellSelected", cellSelecting: "cellSelecting", collapsed: "collapsed", collapsing: "collapsing", columnDrag: "columnDrag", columnDragStart: "columnDragStart", columnDrop: "columnDrop", columnMenuClick: "columnMenuClick", columnMenuOpen: "columnMenuOpen", contextMenuClick: "contextMenuClick", contextMenuOpen: "contextMenuOpen", created: "created", dataBound: "dataBound", dataStateChange: "dataStateChange", destroyed: "destroyed", endEdit: "endEdit", excelExportComplete: "excelExportComplete", excelHeaderQueryCellInfo: "excelHeaderQueryCellInfo", excelQueryCellInfo: "excelQueryCellInfo", expanded: "expanded", expanding: "expanding", headerCellInfo: "headerCellInfo", load: "load", onMouseMove: "onMouseMove", onTaskbarClick: "onTaskbarClick", pdfColumnHeaderQueryCellInfo: "pdfColumnHeaderQueryCellInfo", pdfExportComplete: "pdfExportComplete", pdfQueryCellInfo: "pdfQueryCellInfo", pdfQueryTaskbarInfo: "pdfQueryTaskbarInfo", pdfQueryTimelineCellInfo: "pdfQueryTimelineCellInfo", queryCellInfo: "queryCellInfo", queryTaskbarInfo: "queryTaskbarInfo", recordDoubleClick: "recordDoubleClick", resizeStart: "resizeStart", resizeStop: "resizeStop", resizing: "resizing", rowDataBound: "rowDataBound", rowDeselected: "rowDeselected", rowDeselecting: "rowDeselecting", rowDrag: "rowDrag", rowDragStart: "rowDragStart", rowDragStartHelper: "rowDragStartHelper", rowDrop: "rowDrop", rowSelected: "rowSelected", rowSelecting: "rowSelecting", splitterResizeStart: "splitterResizeStart", splitterResized: "splitterResized", splitterResizing: "splitterResizing", taskbarEdited: "taskbarEdited", taskbarEditing: "taskbarEditing", toolbarClick: "toolbarClick", dataSourceChange: "dataSourceChange" }, queries: [{ propertyName: "parentTaskbarTemplate", first: true, predicate: ["parentTaskbarTemplate"], descendants: true }, { propertyName: "timelineTemplate", first: true, predicate: ["timelineTemplate"], descendants: true }, { propertyName: "milestoneTemplate", first: true, predicate: ["milestoneTemplate"], descendants: true }, { propertyName: "taskbarTemplate", first: true, predicate: ["taskbarTemplate"], descendants: true }, { propertyName: "labelSettings_rightLabel", first: true, predicate: ["labelSettingsRightLabel"], descendants: true }, { propertyName: "labelSettings_leftLabel", first: true, predicate: ["labelSettingsLeftLabel"], descendants: true }, { propertyName: "labelSettings_taskLabel", first: true, predicate: ["labelSettingsTaskLabel"], descendants: true }, { propertyName: "tooltipSettings_taskbar", first: true, predicate: ["tooltipSettingsTaskbar"], descendants: true }, { propertyName: "tooltipSettings_baseline", first: true, predicate: ["tooltipSettingsBaseline"], descendants: true }, { propertyName: "tooltipSettings_connectorLine", first: true, predicate: ["tooltipSettingsConnectorLine"], descendants: true }, { propertyName: "tooltipSettings_editing", first: true, predicate: ["tooltipSettingsEditing"], descendants: true }, { propertyName: "tooltipSettings_timeline", first: true, predicate: ["tooltipSettingsTimeline"], descendants: true }, { propertyName: "childColumns", first: true, predicate: ColumnsDirective, descendants: true }, { propertyName: "childAddDialogFields", first: true, predicate: AddDialogFieldsDirective, descendants: true }, { propertyName: "childEditDialogFields", first: true, predicate: EditDialogFieldsDirective, descendants: true }, { propertyName: "childDayWorkingTime", first: true, predicate: DayWorkingTimeCollectionDirective, descendants: true }, { propertyName: "childWeekWorkingTime", first: true, predicate: WeekWorkingTimesDirective, descendants: true }, { propertyName: "childHolidays", first: true, predicate: HolidaysDirective, descendants: true }, { propertyName: "childEventMarkers", first: true, predicate: EventMarkersDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
575
+ __decorate([
576
+ Template()
577
+ ], GanttComponent.prototype, "parentTaskbarTemplate", void 0);
578
+ __decorate([
579
+ Template()
580
+ ], GanttComponent.prototype, "timelineTemplate", void 0);
581
+ __decorate([
582
+ Template()
583
+ ], GanttComponent.prototype, "milestoneTemplate", void 0);
584
+ __decorate([
585
+ Template()
586
+ ], GanttComponent.prototype, "taskbarTemplate", void 0);
587
+ __decorate([
588
+ Template()
589
+ ], GanttComponent.prototype, "labelSettings_rightLabel", void 0);
590
+ __decorate([
591
+ Template()
592
+ ], GanttComponent.prototype, "labelSettings_leftLabel", void 0);
593
+ __decorate([
594
+ Template()
595
+ ], GanttComponent.prototype, "labelSettings_taskLabel", void 0);
596
+ __decorate([
597
+ Template()
598
+ ], GanttComponent.prototype, "tooltipSettings_taskbar", void 0);
599
+ __decorate([
600
+ Template()
601
+ ], GanttComponent.prototype, "tooltipSettings_baseline", void 0);
602
+ __decorate([
603
+ Template()
604
+ ], GanttComponent.prototype, "tooltipSettings_connectorLine", void 0);
605
+ __decorate([
606
+ Template()
607
+ ], GanttComponent.prototype, "tooltipSettings_editing", void 0);
608
+ __decorate([
609
+ Template()
610
+ ], GanttComponent.prototype, "tooltipSettings_timeline", void 0);
611
+ GanttComponent = __decorate([
612
+ ComponentMixins([ComponentBase])
613
+ ], GanttComponent);
614
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttComponent, decorators: [{
615
+ type: Component,
616
+ args: [{
617
+ selector: 'ejs-gantt',
618
+ inputs: inputs,
619
+ outputs: outputs,
620
+ template: '',
621
+ changeDetection: ChangeDetectionStrategy.OnPush,
622
+ queries: {
623
+ childColumns: new ContentChild(ColumnsDirective),
624
+ childAddDialogFields: new ContentChild(AddDialogFieldsDirective),
625
+ childEditDialogFields: new ContentChild(EditDialogFieldsDirective),
626
+ childDayWorkingTime: new ContentChild(DayWorkingTimeCollectionDirective),
627
+ childWeekWorkingTime: new ContentChild(WeekWorkingTimesDirective),
628
+ childHolidays: new ContentChild(HolidaysDirective),
629
+ childEventMarkers: new ContentChild(EventMarkersDirective)
630
+ }
631
+ }]
632
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; }, propDecorators: { parentTaskbarTemplate: [{
633
+ type: ContentChild,
634
+ args: ['parentTaskbarTemplate']
635
+ }], timelineTemplate: [{
636
+ type: ContentChild,
637
+ args: ['timelineTemplate']
638
+ }], milestoneTemplate: [{
639
+ type: ContentChild,
640
+ args: ['milestoneTemplate']
641
+ }], taskbarTemplate: [{
642
+ type: ContentChild,
643
+ args: ['taskbarTemplate']
644
+ }], labelSettings_rightLabel: [{
645
+ type: ContentChild,
646
+ args: ['labelSettingsRightLabel']
647
+ }], labelSettings_leftLabel: [{
648
+ type: ContentChild,
649
+ args: ['labelSettingsLeftLabel']
650
+ }], labelSettings_taskLabel: [{
651
+ type: ContentChild,
652
+ args: ['labelSettingsTaskLabel']
653
+ }], tooltipSettings_taskbar: [{
654
+ type: ContentChild,
655
+ args: ['tooltipSettingsTaskbar']
656
+ }], tooltipSettings_baseline: [{
657
+ type: ContentChild,
658
+ args: ['tooltipSettingsBaseline']
659
+ }], tooltipSettings_connectorLine: [{
660
+ type: ContentChild,
661
+ args: ['tooltipSettingsConnectorLine']
662
+ }], tooltipSettings_editing: [{
663
+ type: ContentChild,
664
+ args: ['tooltipSettingsEditing']
665
+ }], tooltipSettings_timeline: [{
666
+ type: ContentChild,
667
+ args: ['tooltipSettingsTimeline']
668
+ }] } });
669
+
670
+ /**
671
+ * NgModule definition for the Gantt component.
672
+ */
673
+ class GanttModule {
674
+ }
675
+ GanttModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
676
+ GanttModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttModule, declarations: [GanttComponent,
677
+ ColumnDirective,
678
+ ColumnsDirective,
679
+ AddDialogFieldDirective,
680
+ AddDialogFieldsDirective,
681
+ EditDialogFieldDirective,
682
+ EditDialogFieldsDirective,
683
+ DayWorkingTimeDirective,
684
+ DayWorkingTimeCollectionDirective,
685
+ WeekWorkingTimeDirective,
686
+ WeekWorkingTimesDirective,
687
+ HolidayDirective,
688
+ HolidaysDirective,
689
+ EventMarkerDirective,
690
+ EventMarkersDirective], imports: [CommonModule], exports: [GanttComponent,
691
+ ColumnDirective,
692
+ ColumnsDirective,
693
+ AddDialogFieldDirective,
694
+ AddDialogFieldsDirective,
695
+ EditDialogFieldDirective,
696
+ EditDialogFieldsDirective,
697
+ DayWorkingTimeDirective,
698
+ DayWorkingTimeCollectionDirective,
699
+ WeekWorkingTimeDirective,
700
+ WeekWorkingTimesDirective,
701
+ HolidayDirective,
702
+ HolidaysDirective,
703
+ EventMarkerDirective,
704
+ EventMarkersDirective] });
705
+ GanttModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttModule, imports: [[CommonModule]] });
706
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttModule, decorators: [{
707
+ type: NgModule,
708
+ args: [{
709
+ imports: [CommonModule],
710
+ declarations: [
711
+ GanttComponent,
712
+ ColumnDirective,
713
+ ColumnsDirective,
714
+ AddDialogFieldDirective,
715
+ AddDialogFieldsDirective,
716
+ EditDialogFieldDirective,
717
+ EditDialogFieldsDirective,
718
+ DayWorkingTimeDirective,
719
+ DayWorkingTimeCollectionDirective,
720
+ WeekWorkingTimeDirective,
721
+ WeekWorkingTimesDirective,
722
+ HolidayDirective,
723
+ HolidaysDirective,
724
+ EventMarkerDirective,
725
+ EventMarkersDirective
726
+ ],
727
+ exports: [
728
+ GanttComponent,
729
+ ColumnDirective,
730
+ ColumnsDirective,
731
+ AddDialogFieldDirective,
732
+ AddDialogFieldsDirective,
733
+ EditDialogFieldDirective,
734
+ EditDialogFieldsDirective,
735
+ DayWorkingTimeDirective,
736
+ DayWorkingTimeCollectionDirective,
737
+ WeekWorkingTimeDirective,
738
+ WeekWorkingTimesDirective,
739
+ HolidayDirective,
740
+ HolidaysDirective,
741
+ EventMarkerDirective,
742
+ EventMarkersDirective
743
+ ]
744
+ }]
745
+ }] });
746
+
747
+ const FilterService = { provide: 'GanttFilter', useValue: Filter };
748
+ const SelectionService = { provide: 'GanttSelection', useValue: Selection };
749
+ const SortService = { provide: 'GanttSort', useValue: Sort };
750
+ const ReorderService = { provide: 'GanttReorder', useValue: Reorder };
751
+ const ResizeService = { provide: 'GanttResize', useValue: Resize };
752
+ const EditService = { provide: 'GanttEdit', useValue: Edit };
753
+ const DayMarkersService = { provide: 'GanttDayMarkers', useValue: DayMarkers };
754
+ const ToolbarService = { provide: 'GanttToolbar', useValue: Toolbar };
755
+ const ContextMenuService = { provide: 'GanttContextMenu', useValue: ContextMenu };
756
+ const ExcelExportService = { provide: 'GanttExcelExport', useValue: ExcelExport };
757
+ const RowDDService = { provide: 'GanttRowDD', useValue: RowDD };
758
+ const ColumnMenuService = { provide: 'GanttColumnMenu', useValue: ColumnMenu };
759
+ const PdfExportService = { provide: 'GanttPdfExport', useValue: PdfExport };
760
+ const VirtualScrollService = { provide: 'GanttVirtualScroll', useValue: VirtualScroll };
761
+ const CriticalPathService = { provide: 'GanttCriticalPath', useValue: CriticalPath };
762
+ const UndoRedoService = { provide: 'GanttUndoRedo', useValue: UndoRedo };
763
+ /**
764
+ * NgModule definition for the Gantt component with providers.
765
+ */
766
+ class GanttAllModule {
767
+ }
768
+ GanttAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
769
+ GanttAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttAllModule, imports: [CommonModule, GanttModule], exports: [GanttModule] });
770
+ GanttAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttAllModule, providers: [
771
+ FilterService,
772
+ SelectionService,
773
+ SortService,
774
+ ReorderService,
775
+ ResizeService,
776
+ EditService,
777
+ DayMarkersService,
778
+ ToolbarService,
779
+ ContextMenuService,
780
+ ExcelExportService,
781
+ RowDDService,
782
+ ColumnMenuService,
783
+ PdfExportService,
784
+ VirtualScrollService,
785
+ CriticalPathService,
786
+ UndoRedoService
787
+ ], imports: [[CommonModule, GanttModule], GanttModule] });
788
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: GanttAllModule, decorators: [{
789
+ type: NgModule,
790
+ args: [{
791
+ imports: [CommonModule, GanttModule],
792
+ exports: [
793
+ GanttModule
794
+ ],
795
+ providers: [
796
+ FilterService,
797
+ SelectionService,
798
+ SortService,
799
+ ReorderService,
800
+ ResizeService,
801
+ EditService,
802
+ DayMarkersService,
803
+ ToolbarService,
804
+ ContextMenuService,
805
+ ExcelExportService,
806
+ RowDDService,
807
+ ColumnMenuService,
808
+ PdfExportService,
809
+ VirtualScrollService,
810
+ CriticalPathService,
811
+ UndoRedoService
812
+ ]
813
+ }]
814
+ }] });
815
+
816
+ /**
817
+ * Generated bundle index. Do not edit.
818
+ */
819
+
820
+ export { AddDialogFieldDirective, AddDialogFieldsDirective, ColumnDirective, ColumnMenuService, ColumnsDirective, ContextMenuService, CriticalPathService, DayMarkersService, DayWorkingTimeCollectionDirective, DayWorkingTimeDirective, EditDialogFieldDirective, EditDialogFieldsDirective, EditService, EventMarkerDirective, EventMarkersDirective, ExcelExportService, FilterService, GanttAllModule, GanttComponent, GanttModule, HolidayDirective, HolidaysDirective, PdfExportService, ReorderService, ResizeService, RowDDService, SelectionService, SortService, ToolbarService, UndoRedoService, VirtualScrollService, WeekWorkingTimeDirective, WeekWorkingTimesDirective };
821
+ //# sourceMappingURL=syncfusion-ej2-angular-gantt.mjs.map