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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/CHANGELOG.md +2812 -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 +78 -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 +285 -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 +833 -0
  16. package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-gantt.mjs +833 -0
  18. package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  19. package/package.json +20 -7
  20. package/public_api.d.ts +1 -1
  21. package/src/gantt/adddialogfields.directive.d.ts +58 -53
  22. package/src/gantt/columns.directive.d.ts +212 -207
  23. package/src/gantt/dayworkingtime.directive.d.ts +41 -36
  24. package/src/gantt/editdialogfields.directive.d.ts +58 -53
  25. package/src/gantt/eventmarkers.directive.d.ts +47 -42
  26. package/src/gantt/gantt-all.module.d.ts +28 -22
  27. package/src/gantt/gantt.component.d.ts +144 -141
  28. package/src/gantt/gantt.module.d.ts +18 -5
  29. package/src/gantt/holidays.directive.d.ts +51 -46
  30. package/src/gantt/weekworkingtime.directive.d.ts +43 -38
  31. package/src/index.d.ts +11 -11
  32. package/syncfusion-ej2-angular-gantt.d.ts +5 -0
  33. package/@syncfusion/ej2-angular-gantt.es5.js +0 -914
  34. package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
  35. package/@syncfusion/ej2-angular-gantt.js +0 -862
  36. package/@syncfusion/ej2-angular-gantt.js.map +0 -1
  37. package/LICENSE +0 -10
  38. package/dist/ej2-angular-gantt.umd.js +0 -1035
  39. package/dist/ej2-angular-gantt.umd.js.map +0 -1
  40. package/dist/ej2-angular-gantt.umd.min.js +0 -11
  41. package/dist/ej2-angular-gantt.umd.min.js.map +0 -1
  42. package/ej2-angular-gantt.d.ts +0 -5
  43. package/ej2-angular-gantt.metadata.json +0 -1
@@ -1,1035 +0,0 @@
1
- /*!
2
- * filename: ej2-angular-gantt.umd.js
3
- * version : 30.2.4
4
- * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
- * Use of this code is subject to the terms of our license.
6
- * A copy of the current license can be obtained at any time by e-mailing
7
- * licensing@syncfusion.com. Any infringement will be prosecuted under
8
- * applicable laws.
9
- */
10
- (function (global, factory) {
11
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@syncfusion/ej2-angular-base'), require('@syncfusion/ej2-gantt'), require('@angular/common')) :
12
- typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@syncfusion/ej2-angular-base', '@syncfusion/ej2-gantt', '@angular/common'], factory) :
13
- (factory((global['ej2-angular-gantt'] = {}),global.ng.core,global.ej2.angular.base,global.ej2.gantt,global.ng.common));
14
- }(this, (function (exports,core,ej2AngularBase,ej2Gantt,common) { 'use strict';
15
-
16
- var __extends = (this && this.__extends) || (function () {
17
- var extendStatics = Object.setPrototypeOf ||
18
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
20
- return function (d, b) {
21
- extendStatics(d, b);
22
- function __() { this.constructor = d; }
23
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
24
- };
25
- })();
26
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
27
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
28
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
29
- r = Reflect.decorate(decorators, target, key, desc);
30
- else
31
- for (var i = decorators.length - 1; i >= 0; i--)
32
- if (d = decorators[i])
33
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
34
- return c > 3 && r && Object.defineProperty(target, key, r), r;
35
- };
36
- var __metadata = (this && this.__metadata) || function (k, v) {
37
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
38
- return Reflect.metadata(k, v);
39
- };
40
- var input = ['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'];
41
- var outputs = [];
42
- /**
43
- * `e-column` directive represent a column of the Angular Gantt.
44
- * It must be contained in a Gantt component(`ejs-gantt`).
45
- * ```html
46
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
47
- * <e-columns>
48
- * <e-column field='ID' width='150'></e-column>
49
- * <e-column field='taskName' headerText='Task Name' width='200'></e-column>
50
- * </e-columns>
51
- * </ejs-gantt>
52
- * ```
53
- */
54
- var ColumnDirective = /** @class */ (function (_super) {
55
- __extends(ColumnDirective, _super);
56
- /**
57
- * @param {?} viewContainerRef
58
- */
59
- function ColumnDirective(viewContainerRef) {
60
- var _this = _super.call(this) || this;
61
- _this.viewContainerRef = viewContainerRef;
62
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
63
- _this.registerEvents(outputs);
64
- _this.directivePropList = input;
65
- return _this;
66
- }
67
- return ColumnDirective;
68
- }(ej2AngularBase.ComplexBase));
69
- ColumnDirective.decorators = [
70
- { type: core.Directive, args: [{
71
- selector: 'ejs-gantt>e-columns>e-column',
72
- inputs: input,
73
- outputs: outputs,
74
- queries: {}
75
- },] },
76
- ];
77
- /**
78
- * @nocollapse
79
- */
80
- ColumnDirective.ctorParameters = function () { return [
81
- { type: core.ViewContainerRef, },
82
- ]; };
83
- ColumnDirective.propDecorators = {
84
- 'template': [{ type: core.ContentChild, args: ['template',] },],
85
- 'headerTemplate': [{ type: core.ContentChild, args: ['headerTemplate',] },],
86
- 'editTemplate': [{ type: core.ContentChild, args: ['editTemplate',] },],
87
- };
88
- __decorate([
89
- ej2AngularBase.Template(),
90
- __metadata("design:type", Object)
91
- ], ColumnDirective.prototype, "template", void 0);
92
- __decorate([
93
- ej2AngularBase.Template(),
94
- __metadata("design:type", Object)
95
- ], ColumnDirective.prototype, "headerTemplate", void 0);
96
- __decorate([
97
- ej2AngularBase.Template(),
98
- __metadata("design:type", Object)
99
- ], ColumnDirective.prototype, "editTemplate", void 0);
100
- /**
101
- * Column Array Directive
102
- */
103
- var ColumnsDirective = /** @class */ (function (_super) {
104
- __extends(ColumnsDirective, _super);
105
- function ColumnsDirective() {
106
- return _super.call(this, 'columns') || this;
107
- }
108
- return ColumnsDirective;
109
- }(ej2AngularBase.ArrayBase));
110
- ColumnsDirective.decorators = [
111
- { type: core.Directive, args: [{
112
- selector: 'ejs-gantt>e-columns',
113
- queries: {
114
- children: new core.ContentChildren(ColumnDirective)
115
- },
116
- },] },
117
- ];
118
- /**
119
- * @nocollapse
120
- */
121
- ColumnsDirective.ctorParameters = function () { return []; };
122
- var input$1 = ['additionalParams', 'fields', 'headerText', 'type'];
123
- var outputs$1 = [];
124
- /**
125
- * `e-add-dialog-field` directive represent a add dialog fields collection in Gantt task add dialog.
126
- * It must be contained in a Gantt component(`ejs-gantt`).
127
- * ```html
128
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
129
- * <e-add-dialog-fields>
130
- * <e-add-dialog-field type='General' headerText='General'></e-add-dialog-field>
131
- * <e-add-dialog-field type='Dependency' headerText='Dependency'></e-add-dialog-field>
132
- * </e-add-dialog-fields>
133
- * </ejs-gantt>
134
- * ```
135
- */
136
- var AddDialogFieldDirective = /** @class */ (function (_super) {
137
- __extends(AddDialogFieldDirective, _super);
138
- /**
139
- * @param {?} viewContainerRef
140
- */
141
- function AddDialogFieldDirective(viewContainerRef) {
142
- var _this = _super.call(this) || this;
143
- _this.viewContainerRef = viewContainerRef;
144
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
145
- _this.registerEvents(outputs$1);
146
- _this.directivePropList = input$1;
147
- return _this;
148
- }
149
- return AddDialogFieldDirective;
150
- }(ej2AngularBase.ComplexBase));
151
- AddDialogFieldDirective.decorators = [
152
- { type: core.Directive, args: [{
153
- selector: 'ejs-gantt>e-add-dialog-fields>e-add-dialog-field',
154
- inputs: input$1,
155
- outputs: outputs$1,
156
- queries: {}
157
- },] },
158
- ];
159
- /**
160
- * @nocollapse
161
- */
162
- AddDialogFieldDirective.ctorParameters = function () { return [
163
- { type: core.ViewContainerRef, },
164
- ]; };
165
- /**
166
- * AddDialogField Array Directive
167
- */
168
- var AddDialogFieldsDirective = /** @class */ (function (_super) {
169
- __extends(AddDialogFieldsDirective, _super);
170
- function AddDialogFieldsDirective() {
171
- return _super.call(this, 'adddialogfields') || this;
172
- }
173
- return AddDialogFieldsDirective;
174
- }(ej2AngularBase.ArrayBase));
175
- AddDialogFieldsDirective.decorators = [
176
- { type: core.Directive, args: [{
177
- selector: 'ejs-gantt>e-add-dialog-fields',
178
- queries: {
179
- children: new core.ContentChildren(AddDialogFieldDirective)
180
- },
181
- },] },
182
- ];
183
- /**
184
- * @nocollapse
185
- */
186
- AddDialogFieldsDirective.ctorParameters = function () { return []; };
187
- var input$2 = ['additionalParams', 'fields', 'headerText', 'type'];
188
- var outputs$2 = [];
189
- /**
190
- * `e-edit-dialog-field` directive represent a edit dialog fields collection in Gantt task add dialog.
191
- * It must be contained in a Gantt component(`ejs-gantt`).
192
- * ```html
193
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
194
- * <e-edit-dialog-fields>
195
- * <e-edit-dialog-field type='General' headerText='General'></e-edit-dialog-field>
196
- * <e-edit-dialog-field type='Dependency' headerText='Dependency'></e-edit-dialog-field>
197
- * </e-edit-dialog-fields>
198
- * </ejs-gantt>
199
- * ```
200
- */
201
- var EditDialogFieldDirective = /** @class */ (function (_super) {
202
- __extends(EditDialogFieldDirective, _super);
203
- /**
204
- * @param {?} viewContainerRef
205
- */
206
- function EditDialogFieldDirective(viewContainerRef) {
207
- var _this = _super.call(this) || this;
208
- _this.viewContainerRef = viewContainerRef;
209
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
210
- _this.registerEvents(outputs$2);
211
- _this.directivePropList = input$2;
212
- return _this;
213
- }
214
- return EditDialogFieldDirective;
215
- }(ej2AngularBase.ComplexBase));
216
- EditDialogFieldDirective.decorators = [
217
- { type: core.Directive, args: [{
218
- selector: 'ejs-gantt>e-edit-dialog-fields>e-edit-dialog-field',
219
- inputs: input$2,
220
- outputs: outputs$2,
221
- queries: {}
222
- },] },
223
- ];
224
- /**
225
- * @nocollapse
226
- */
227
- EditDialogFieldDirective.ctorParameters = function () { return [
228
- { type: core.ViewContainerRef, },
229
- ]; };
230
- /**
231
- * EditDialogField Array Directive
232
- */
233
- var EditDialogFieldsDirective = /** @class */ (function (_super) {
234
- __extends(EditDialogFieldsDirective, _super);
235
- function EditDialogFieldsDirective() {
236
- return _super.call(this, 'editdialogfields') || this;
237
- }
238
- return EditDialogFieldsDirective;
239
- }(ej2AngularBase.ArrayBase));
240
- EditDialogFieldsDirective.decorators = [
241
- { type: core.Directive, args: [{
242
- selector: 'ejs-gantt>e-edit-dialog-fields',
243
- queries: {
244
- children: new core.ContentChildren(EditDialogFieldDirective)
245
- },
246
- },] },
247
- ];
248
- /**
249
- * @nocollapse
250
- */
251
- EditDialogFieldsDirective.ctorParameters = function () { return []; };
252
- var input$3 = ['from', 'to'];
253
- var outputs$3 = [];
254
- /**
255
- * `e-day-working-time-collection` directive represent a working time ranges in a day.
256
- * It must be contained in a Gantt component(`ejs-gantt`).
257
- * ```html
258
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
259
- * <e-day-working-time-collection>
260
- * <e-day-working-time from='8' to='12'></e-day-working-time>
261
- * <e-day-working-time from='13' to='17'></e-day-working-time>
262
- * </e-day-working-time-collection>
263
- * </ejs-gantt>
264
- * ```
265
- */
266
- var DayWorkingTimeDirective = /** @class */ (function (_super) {
267
- __extends(DayWorkingTimeDirective, _super);
268
- /**
269
- * @param {?} viewContainerRef
270
- */
271
- function DayWorkingTimeDirective(viewContainerRef) {
272
- var _this = _super.call(this) || this;
273
- _this.viewContainerRef = viewContainerRef;
274
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
275
- _this.registerEvents(outputs$3);
276
- _this.directivePropList = input$3;
277
- return _this;
278
- }
279
- return DayWorkingTimeDirective;
280
- }(ej2AngularBase.ComplexBase));
281
- DayWorkingTimeDirective.decorators = [
282
- { type: core.Directive, args: [{
283
- selector: 'ejs-gantt>e-day-working-time-collection>e-day-working-time',
284
- inputs: input$3,
285
- outputs: outputs$3,
286
- queries: {}
287
- },] },
288
- ];
289
- /**
290
- * @nocollapse
291
- */
292
- DayWorkingTimeDirective.ctorParameters = function () { return [
293
- { type: core.ViewContainerRef, },
294
- ]; };
295
- /**
296
- * DayWorkingTime Array Directive
297
- */
298
- var DayWorkingTimeCollectionDirective = /** @class */ (function (_super) {
299
- __extends(DayWorkingTimeCollectionDirective, _super);
300
- function DayWorkingTimeCollectionDirective() {
301
- return _super.call(this, 'dayworkingtime') || this;
302
- }
303
- return DayWorkingTimeCollectionDirective;
304
- }(ej2AngularBase.ArrayBase));
305
- DayWorkingTimeCollectionDirective.decorators = [
306
- { type: core.Directive, args: [{
307
- selector: 'ejs-gantt>e-day-working-time-collection',
308
- queries: {
309
- children: new core.ContentChildren(DayWorkingTimeDirective)
310
- },
311
- },] },
312
- ];
313
- /**
314
- * @nocollapse
315
- */
316
- DayWorkingTimeCollectionDirective.ctorParameters = function () { return []; };
317
- var input$4 = ['dayOfWeek', 'timeRange'];
318
- var outputs$4 = [];
319
- /**
320
- * `e-week-working-times` directive represent a working time ranges in a day.
321
- * It must be contained in a Gantt component(`ejs-gantt`).
322
- * ```html
323
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
324
- * <e-week-working-times>
325
- * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
326
- * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
327
- * </e-week-working-times>
328
- * </ejs-gantt>
329
- * ```
330
- */
331
- var WeekWorkingTimeDirective = /** @class */ (function (_super) {
332
- __extends(WeekWorkingTimeDirective, _super);
333
- /**
334
- * @param {?} viewContainerRef
335
- */
336
- function WeekWorkingTimeDirective(viewContainerRef) {
337
- var _this = _super.call(this) || this;
338
- _this.viewContainerRef = viewContainerRef;
339
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
340
- _this.registerEvents(outputs$4);
341
- _this.directivePropList = input$4;
342
- return _this;
343
- }
344
- return WeekWorkingTimeDirective;
345
- }(ej2AngularBase.ComplexBase));
346
- WeekWorkingTimeDirective.decorators = [
347
- { type: core.Directive, args: [{
348
- selector: 'ejs-gantt>e-week-working-times>e-week-working-time',
349
- inputs: input$4,
350
- outputs: outputs$4,
351
- queries: {}
352
- },] },
353
- ];
354
- /**
355
- * @nocollapse
356
- */
357
- WeekWorkingTimeDirective.ctorParameters = function () { return [
358
- { type: core.ViewContainerRef, },
359
- ]; };
360
- /**
361
- * WeekWorkingTime Array Directive
362
- */
363
- var WeekWorkingTimesDirective = /** @class */ (function (_super) {
364
- __extends(WeekWorkingTimesDirective, _super);
365
- function WeekWorkingTimesDirective() {
366
- return _super.call(this, 'weekworkingtime') || this;
367
- }
368
- return WeekWorkingTimesDirective;
369
- }(ej2AngularBase.ArrayBase));
370
- WeekWorkingTimesDirective.decorators = [
371
- { type: core.Directive, args: [{
372
- selector: 'ejs-gantt>e-week-working-times',
373
- queries: {
374
- children: new core.ContentChildren(WeekWorkingTimeDirective)
375
- },
376
- },] },
377
- ];
378
- /**
379
- * @nocollapse
380
- */
381
- WeekWorkingTimesDirective.ctorParameters = function () { return []; };
382
- var input$5 = ['cssClass', 'from', 'label', 'to'];
383
- var outputs$5 = [];
384
- /**
385
- * `e-holidays` directive represent a holidays collection in Gantt.
386
- * It must be contained in a Gantt component(`ejs-gantt`).
387
- * ```html
388
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
389
- * <e-holidays>
390
- * <e-holiday from='02/20/2018' label='Holiday 1'></e-holiday>
391
- * <e-holiday from='05/15/2018' label='Holiday 2'></e-holiday>
392
- * </e-holidays>
393
- * </ejs-gantt>
394
- * ```
395
- */
396
- var HolidayDirective = /** @class */ (function (_super) {
397
- __extends(HolidayDirective, _super);
398
- /**
399
- * @param {?} viewContainerRef
400
- */
401
- function HolidayDirective(viewContainerRef) {
402
- var _this = _super.call(this) || this;
403
- _this.viewContainerRef = viewContainerRef;
404
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
405
- _this.registerEvents(outputs$5);
406
- _this.directivePropList = input$5;
407
- return _this;
408
- }
409
- return HolidayDirective;
410
- }(ej2AngularBase.ComplexBase));
411
- HolidayDirective.decorators = [
412
- { type: core.Directive, args: [{
413
- selector: 'ejs-gantt>e-holidays>e-holidays',
414
- inputs: input$5,
415
- outputs: outputs$5,
416
- queries: {}
417
- },] },
418
- ];
419
- /**
420
- * @nocollapse
421
- */
422
- HolidayDirective.ctorParameters = function () { return [
423
- { type: core.ViewContainerRef, },
424
- ]; };
425
- /**
426
- * Holiday Array Directive
427
- */
428
- var HolidaysDirective = /** @class */ (function (_super) {
429
- __extends(HolidaysDirective, _super);
430
- function HolidaysDirective() {
431
- return _super.call(this, 'holidays') || this;
432
- }
433
- return HolidaysDirective;
434
- }(ej2AngularBase.ArrayBase));
435
- HolidaysDirective.decorators = [
436
- { type: core.Directive, args: [{
437
- selector: 'ejs-gantt>e-holidays',
438
- queries: {
439
- children: new core.ContentChildren(HolidayDirective)
440
- },
441
- },] },
442
- ];
443
- /**
444
- * @nocollapse
445
- */
446
- HolidaysDirective.ctorParameters = function () { return []; };
447
- var input$6 = ['cssClass', 'day', 'label'];
448
- var outputs$6 = [];
449
- /**
450
- * `e-event-markers` directive represent a event marker collection in Gantt.
451
- * It must be contained in a Gantt component(`ejs-gantt`).
452
- * ```html
453
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
454
- * <e-event-markers>
455
- * <e-event-marker day='02/10/2018' label='Project Starts'></e-event-marker>
456
- * </e-event-markers>
457
- * </ejs-gantt>
458
- * ```
459
- */
460
- var EventMarkerDirective = /** @class */ (function (_super) {
461
- __extends(EventMarkerDirective, _super);
462
- /**
463
- * @param {?} viewContainerRef
464
- */
465
- function EventMarkerDirective(viewContainerRef) {
466
- var _this = _super.call(this) || this;
467
- _this.viewContainerRef = viewContainerRef;
468
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
469
- _this.registerEvents(outputs$6);
470
- _this.directivePropList = input$6;
471
- return _this;
472
- }
473
- return EventMarkerDirective;
474
- }(ej2AngularBase.ComplexBase));
475
- EventMarkerDirective.decorators = [
476
- { type: core.Directive, args: [{
477
- selector: 'ejs-gantt>e-event-markers>e-event-marker',
478
- inputs: input$6,
479
- outputs: outputs$6,
480
- queries: {}
481
- },] },
482
- ];
483
- /**
484
- * @nocollapse
485
- */
486
- EventMarkerDirective.ctorParameters = function () { return [
487
- { type: core.ViewContainerRef, },
488
- ]; };
489
- /**
490
- * EventMarker Array Directive
491
- */
492
- var EventMarkersDirective = /** @class */ (function (_super) {
493
- __extends(EventMarkersDirective, _super);
494
- function EventMarkersDirective() {
495
- return _super.call(this, 'eventmarkers') || this;
496
- }
497
- return EventMarkersDirective;
498
- }(ej2AngularBase.ArrayBase));
499
- EventMarkersDirective.decorators = [
500
- { type: core.Directive, args: [{
501
- selector: 'ejs-gantt>e-event-markers',
502
- queries: {
503
- children: new core.ContentChildren(EventMarkerDirective)
504
- },
505
- },] },
506
- ];
507
- /**
508
- * @nocollapse
509
- */
510
- EventMarkersDirective.ctorParameters = function () { return []; };
511
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
512
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
513
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
514
- r = Reflect.decorate(decorators, target, key, desc);
515
- else
516
- for (var i = decorators.length - 1; i >= 0; i--)
517
- if (d = decorators[i])
518
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
519
- return c > 3 && r && Object.defineProperty(target, key, r), r;
520
- };
521
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
522
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
523
- return Reflect.metadata(k, v);
524
- };
525
- var 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', 'enableAutoWbsUpdate', 'enableContextMenu', 'enableCriticalPath', 'enableHtmlSanitizer', 'enableImmutableMode', 'enableMultiTaskbar', 'enablePersistence', 'enablePredecessorValidation', 'enableRtl', 'enableTimelineVirtualization', 'enableUndoRedo', 'enableVirtualMaskRow', 'enableVirtualization', 'enableWBS', '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'];
526
- var outputs$7 = ['actionBegin', 'actionComplete', 'actionFailure', 'beforeDataBound', 'beforeExcelExport', 'beforePdfExport', 'beforeTooltipRender', 'cellDeselected', 'cellDeselecting', 'cellEdit', 'cellSave', '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'];
527
- var twoWays = ['dataSource'];
528
- /**
529
- * `ejs-gantt` represents the Angular Gantt Component.
530
- * ```html
531
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'></ejs-gantt>
532
- * ```
533
- */
534
- exports.GanttComponent = /** @class */ (function (_super) {
535
- __extends(GanttComponent, _super);
536
- /**
537
- * @param {?} ngEle
538
- * @param {?} srenderer
539
- * @param {?} viewContainerRef
540
- * @param {?} injector
541
- */
542
- function GanttComponent(ngEle, srenderer, viewContainerRef, injector) {
543
- var _this = _super.call(this) || this;
544
- _this.ngEle = ngEle;
545
- _this.srenderer = srenderer;
546
- _this.viewContainerRef = viewContainerRef;
547
- _this.injector = injector;
548
- _this.tags = ['columns', 'addDialogFields', 'editDialogFields', 'dayWorkingTime', 'weekWorkingTime', 'holidays', 'eventMarkers'];
549
- _this.element = _this.ngEle.nativeElement;
550
- _this.injectedModules = _this.injectedModules || [];
551
- try {
552
- var mod = _this.injector.get('GanttFilter');
553
- if (_this.injectedModules.indexOf(mod) === -1) {
554
- _this.injectedModules.push(mod);
555
- }
556
- }
557
- catch (_a) { }
558
- try {
559
- var mod = _this.injector.get('GanttSelection');
560
- if (_this.injectedModules.indexOf(mod) === -1) {
561
- _this.injectedModules.push(mod);
562
- }
563
- }
564
- catch (_b) { }
565
- try {
566
- var mod = _this.injector.get('GanttSort');
567
- if (_this.injectedModules.indexOf(mod) === -1) {
568
- _this.injectedModules.push(mod);
569
- }
570
- }
571
- catch (_c) { }
572
- try {
573
- var mod = _this.injector.get('GanttReorder');
574
- if (_this.injectedModules.indexOf(mod) === -1) {
575
- _this.injectedModules.push(mod);
576
- }
577
- }
578
- catch (_d) { }
579
- try {
580
- var mod = _this.injector.get('GanttResize');
581
- if (_this.injectedModules.indexOf(mod) === -1) {
582
- _this.injectedModules.push(mod);
583
- }
584
- }
585
- catch (_e) { }
586
- try {
587
- var mod = _this.injector.get('GanttEdit');
588
- if (_this.injectedModules.indexOf(mod) === -1) {
589
- _this.injectedModules.push(mod);
590
- }
591
- }
592
- catch (_f) { }
593
- try {
594
- var mod = _this.injector.get('GanttDayMarkers');
595
- if (_this.injectedModules.indexOf(mod) === -1) {
596
- _this.injectedModules.push(mod);
597
- }
598
- }
599
- catch (_g) { }
600
- try {
601
- var mod = _this.injector.get('GanttToolbar');
602
- if (_this.injectedModules.indexOf(mod) === -1) {
603
- _this.injectedModules.push(mod);
604
- }
605
- }
606
- catch (_h) { }
607
- try {
608
- var mod = _this.injector.get('GanttContextMenu');
609
- if (_this.injectedModules.indexOf(mod) === -1) {
610
- _this.injectedModules.push(mod);
611
- }
612
- }
613
- catch (_j) { }
614
- try {
615
- var mod = _this.injector.get('GanttExcelExport');
616
- if (_this.injectedModules.indexOf(mod) === -1) {
617
- _this.injectedModules.push(mod);
618
- }
619
- }
620
- catch (_k) { }
621
- try {
622
- var mod = _this.injector.get('GanttRowDD');
623
- if (_this.injectedModules.indexOf(mod) === -1) {
624
- _this.injectedModules.push(mod);
625
- }
626
- }
627
- catch (_l) { }
628
- try {
629
- var mod = _this.injector.get('GanttColumnMenu');
630
- if (_this.injectedModules.indexOf(mod) === -1) {
631
- _this.injectedModules.push(mod);
632
- }
633
- }
634
- catch (_m) { }
635
- try {
636
- var mod = _this.injector.get('GanttPdfExport');
637
- if (_this.injectedModules.indexOf(mod) === -1) {
638
- _this.injectedModules.push(mod);
639
- }
640
- }
641
- catch (_o) { }
642
- try {
643
- var mod = _this.injector.get('GanttVirtualScroll');
644
- if (_this.injectedModules.indexOf(mod) === -1) {
645
- _this.injectedModules.push(mod);
646
- }
647
- }
648
- catch (_p) { }
649
- try {
650
- var mod = _this.injector.get('GanttCriticalPath');
651
- if (_this.injectedModules.indexOf(mod) === -1) {
652
- _this.injectedModules.push(mod);
653
- }
654
- }
655
- catch (_q) { }
656
- try {
657
- var mod = _this.injector.get('GanttUndoRedo');
658
- if (_this.injectedModules.indexOf(mod) === -1) {
659
- _this.injectedModules.push(mod);
660
- }
661
- }
662
- catch (_r) { }
663
- _this.registerEvents(outputs$7);
664
- _this.addTwoWay.call(_this, twoWays);
665
- ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
666
- _this.context = new ej2AngularBase.ComponentBase();
667
- return _this;
668
- }
669
- /**
670
- * @return {?}
671
- */
672
- GanttComponent.prototype.ngOnInit = function () {
673
- this.context.ngOnInit(this);
674
- };
675
- /**
676
- * @return {?}
677
- */
678
- GanttComponent.prototype.ngAfterViewInit = function () {
679
- this.context.ngAfterViewInit(this);
680
- };
681
- /**
682
- * @return {?}
683
- */
684
- GanttComponent.prototype.ngOnDestroy = function () {
685
- this.context.ngOnDestroy(this);
686
- };
687
- /**
688
- * @return {?}
689
- */
690
- GanttComponent.prototype.ngAfterContentChecked = function () {
691
- this.tagObjects[0].instance = this.childColumns;
692
- if (this.childAddDialogFields) {
693
- this.tagObjects[1].instance = this.childAddDialogFields;
694
- }
695
- if (this.childEditDialogFields) {
696
- this.tagObjects[2].instance = this.childEditDialogFields;
697
- }
698
- if (this.childDayWorkingTime) {
699
- this.tagObjects[3].instance = this.childDayWorkingTime;
700
- }
701
- if (this.childWeekWorkingTime) {
702
- this.tagObjects[4].instance = this.childWeekWorkingTime;
703
- }
704
- if (this.childHolidays) {
705
- this.tagObjects[5].instance = this.childHolidays;
706
- }
707
- if (this.childEventMarkers) {
708
- this.tagObjects[6].instance = this.childEventMarkers;
709
- }
710
- this.context.ngAfterContentChecked(this);
711
- };
712
- return GanttComponent;
713
- }(ej2Gantt.Gantt));
714
- exports.GanttComponent.decorators = [
715
- { type: core.Component, args: [{
716
- selector: 'ejs-gantt',
717
- inputs: inputs,
718
- outputs: outputs$7,
719
- template: '',
720
- changeDetection: core.ChangeDetectionStrategy.OnPush,
721
- queries: {
722
- childColumns: new core.ContentChild(ColumnsDirective),
723
- childAddDialogFields: new core.ContentChild(AddDialogFieldsDirective),
724
- childEditDialogFields: new core.ContentChild(EditDialogFieldsDirective),
725
- childDayWorkingTime: new core.ContentChild(DayWorkingTimeCollectionDirective),
726
- childWeekWorkingTime: new core.ContentChild(WeekWorkingTimesDirective),
727
- childHolidays: new core.ContentChild(HolidaysDirective),
728
- childEventMarkers: new core.ContentChild(EventMarkersDirective)
729
- }
730
- },] },
731
- ];
732
- /**
733
- * @nocollapse
734
- */
735
- exports.GanttComponent.ctorParameters = function () { return [
736
- { type: core.ElementRef, },
737
- { type: core.Renderer2, },
738
- { type: core.ViewContainerRef, },
739
- { type: core.Injector, },
740
- ]; };
741
- exports.GanttComponent.propDecorators = {
742
- 'parentTaskbarTemplate': [{ type: core.ContentChild, args: ['parentTaskbarTemplate',] },],
743
- 'timelineTemplate': [{ type: core.ContentChild, args: ['timelineTemplate',] },],
744
- 'milestoneTemplate': [{ type: core.ContentChild, args: ['milestoneTemplate',] },],
745
- 'taskbarTemplate': [{ type: core.ContentChild, args: ['taskbarTemplate',] },],
746
- 'editTemplate': [{ type: core.ContentChild, args: ['editTemplate',] },],
747
- 'labelSettings_rightLabel': [{ type: core.ContentChild, args: ['labelSettingsRightLabel',] },],
748
- 'labelSettings_leftLabel': [{ type: core.ContentChild, args: ['labelSettingsLeftLabel',] },],
749
- 'labelSettings_taskLabel': [{ type: core.ContentChild, args: ['labelSettingsTaskLabel',] },],
750
- 'tooltipSettings_taskbar': [{ type: core.ContentChild, args: ['tooltipSettingsTaskbar',] },],
751
- 'tooltipSettings_baseline': [{ type: core.ContentChild, args: ['tooltipSettingsBaseline',] },],
752
- 'tooltipSettings_connectorLine': [{ type: core.ContentChild, args: ['tooltipSettingsConnectorLine',] },],
753
- 'tooltipSettings_editing': [{ type: core.ContentChild, args: ['tooltipSettingsEditing',] },],
754
- 'tooltipSettings_timeline': [{ type: core.ContentChild, args: ['tooltipSettingsTimeline',] },],
755
- };
756
- __decorate$1([
757
- ej2AngularBase.Template(),
758
- __metadata$1("design:type", Object)
759
- ], exports.GanttComponent.prototype, "parentTaskbarTemplate", void 0);
760
- __decorate$1([
761
- ej2AngularBase.Template(),
762
- __metadata$1("design:type", Object)
763
- ], exports.GanttComponent.prototype, "timelineTemplate", void 0);
764
- __decorate$1([
765
- ej2AngularBase.Template(),
766
- __metadata$1("design:type", Object)
767
- ], exports.GanttComponent.prototype, "milestoneTemplate", void 0);
768
- __decorate$1([
769
- ej2AngularBase.Template(),
770
- __metadata$1("design:type", Object)
771
- ], exports.GanttComponent.prototype, "taskbarTemplate", void 0);
772
- __decorate$1([
773
- ej2AngularBase.Template(),
774
- __metadata$1("design:type", Object)
775
- ], exports.GanttComponent.prototype, "editTemplate", void 0);
776
- __decorate$1([
777
- ej2AngularBase.Template(),
778
- __metadata$1("design:type", Object)
779
- ], exports.GanttComponent.prototype, "labelSettings_rightLabel", void 0);
780
- __decorate$1([
781
- ej2AngularBase.Template(),
782
- __metadata$1("design:type", Object)
783
- ], exports.GanttComponent.prototype, "labelSettings_leftLabel", void 0);
784
- __decorate$1([
785
- ej2AngularBase.Template(),
786
- __metadata$1("design:type", Object)
787
- ], exports.GanttComponent.prototype, "labelSettings_taskLabel", void 0);
788
- __decorate$1([
789
- ej2AngularBase.Template(),
790
- __metadata$1("design:type", Object)
791
- ], exports.GanttComponent.prototype, "tooltipSettings_taskbar", void 0);
792
- __decorate$1([
793
- ej2AngularBase.Template(),
794
- __metadata$1("design:type", Object)
795
- ], exports.GanttComponent.prototype, "tooltipSettings_baseline", void 0);
796
- __decorate$1([
797
- ej2AngularBase.Template(),
798
- __metadata$1("design:type", Object)
799
- ], exports.GanttComponent.prototype, "tooltipSettings_connectorLine", void 0);
800
- __decorate$1([
801
- ej2AngularBase.Template(),
802
- __metadata$1("design:type", Object)
803
- ], exports.GanttComponent.prototype, "tooltipSettings_editing", void 0);
804
- __decorate$1([
805
- ej2AngularBase.Template(),
806
- __metadata$1("design:type", Object)
807
- ], exports.GanttComponent.prototype, "tooltipSettings_timeline", void 0);
808
- exports.GanttComponent = __decorate$1([
809
- ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
810
- __metadata$1("design:paramtypes", [core.ElementRef,
811
- core.Renderer2,
812
- core.ViewContainerRef,
813
- core.Injector])
814
- ], exports.GanttComponent);
815
- /**
816
- * NgModule definition for the Gantt component.
817
- */
818
- var GanttModule = /** @class */ (function () {
819
- function GanttModule() {
820
- }
821
- return GanttModule;
822
- }());
823
- GanttModule.decorators = [
824
- { type: core.NgModule, args: [{
825
- imports: [common.CommonModule],
826
- declarations: [
827
- exports.GanttComponent,
828
- ColumnDirective,
829
- ColumnsDirective,
830
- AddDialogFieldDirective,
831
- AddDialogFieldsDirective,
832
- EditDialogFieldDirective,
833
- EditDialogFieldsDirective,
834
- DayWorkingTimeDirective,
835
- DayWorkingTimeCollectionDirective,
836
- WeekWorkingTimeDirective,
837
- WeekWorkingTimesDirective,
838
- HolidayDirective,
839
- HolidaysDirective,
840
- EventMarkerDirective,
841
- EventMarkersDirective
842
- ],
843
- exports: [
844
- exports.GanttComponent,
845
- ColumnDirective,
846
- ColumnsDirective,
847
- AddDialogFieldDirective,
848
- AddDialogFieldsDirective,
849
- EditDialogFieldDirective,
850
- EditDialogFieldsDirective,
851
- DayWorkingTimeDirective,
852
- DayWorkingTimeCollectionDirective,
853
- WeekWorkingTimeDirective,
854
- WeekWorkingTimesDirective,
855
- HolidayDirective,
856
- HolidaysDirective,
857
- EventMarkerDirective,
858
- EventMarkersDirective
859
- ]
860
- },] },
861
- ];
862
- /**
863
- * @nocollapse
864
- */
865
- GanttModule.ctorParameters = function () { return []; };
866
- var FilterService = { provide: 'GanttFilter', useValue: ej2Gantt.Filter };
867
- var SelectionService = { provide: 'GanttSelection', useValue: ej2Gantt.Selection };
868
- var SortService = { provide: 'GanttSort', useValue: ej2Gantt.Sort };
869
- var ReorderService = { provide: 'GanttReorder', useValue: ej2Gantt.Reorder };
870
- var ResizeService = { provide: 'GanttResize', useValue: ej2Gantt.Resize };
871
- var EditService = { provide: 'GanttEdit', useValue: ej2Gantt.Edit };
872
- var DayMarkersService = { provide: 'GanttDayMarkers', useValue: ej2Gantt.DayMarkers };
873
- var ToolbarService = { provide: 'GanttToolbar', useValue: ej2Gantt.Toolbar };
874
- var ContextMenuService = { provide: 'GanttContextMenu', useValue: ej2Gantt.ContextMenu };
875
- var ExcelExportService = { provide: 'GanttExcelExport', useValue: ej2Gantt.ExcelExport };
876
- var RowDDService = { provide: 'GanttRowDD', useValue: ej2Gantt.RowDD };
877
- var ColumnMenuService = { provide: 'GanttColumnMenu', useValue: ej2Gantt.ColumnMenu };
878
- var PdfExportService = { provide: 'GanttPdfExport', useValue: ej2Gantt.PdfExport };
879
- var VirtualScrollService = { provide: 'GanttVirtualScroll', useValue: ej2Gantt.VirtualScroll };
880
- var CriticalPathService = { provide: 'GanttCriticalPath', useValue: ej2Gantt.CriticalPath };
881
- var UndoRedoService = { provide: 'GanttUndoRedo', useValue: ej2Gantt.UndoRedo };
882
- /**
883
- * NgModule definition for the Gantt component with providers.
884
- */
885
- var GanttAllModule = /** @class */ (function () {
886
- function GanttAllModule() {
887
- }
888
- return GanttAllModule;
889
- }());
890
- GanttAllModule.decorators = [
891
- { type: core.NgModule, args: [{
892
- imports: [common.CommonModule, GanttModule],
893
- exports: [
894
- GanttModule
895
- ],
896
- providers: [
897
- FilterService,
898
- SelectionService,
899
- SortService,
900
- ReorderService,
901
- ResizeService,
902
- EditService,
903
- DayMarkersService,
904
- ToolbarService,
905
- ContextMenuService,
906
- ExcelExportService,
907
- RowDDService,
908
- ColumnMenuService,
909
- PdfExportService,
910
- VirtualScrollService,
911
- CriticalPathService,
912
- UndoRedoService
913
- ]
914
- },] },
915
- ];
916
- /**
917
- * @nocollapse
918
- */
919
- GanttAllModule.ctorParameters = function () { return []; };
920
-
921
- exports.ColumnDirective = ColumnDirective;
922
- exports.ColumnsDirective = ColumnsDirective;
923
- exports.AddDialogFieldDirective = AddDialogFieldDirective;
924
- exports.AddDialogFieldsDirective = AddDialogFieldsDirective;
925
- exports.EditDialogFieldDirective = EditDialogFieldDirective;
926
- exports.EditDialogFieldsDirective = EditDialogFieldsDirective;
927
- exports.DayWorkingTimeDirective = DayWorkingTimeDirective;
928
- exports.DayWorkingTimeCollectionDirective = DayWorkingTimeCollectionDirective;
929
- exports.WeekWorkingTimeDirective = WeekWorkingTimeDirective;
930
- exports.WeekWorkingTimesDirective = WeekWorkingTimesDirective;
931
- exports.HolidayDirective = HolidayDirective;
932
- exports.HolidaysDirective = HolidaysDirective;
933
- exports.EventMarkerDirective = EventMarkerDirective;
934
- exports.EventMarkersDirective = EventMarkersDirective;
935
- exports.GanttModule = GanttModule;
936
- exports.GanttAllModule = GanttAllModule;
937
- exports.FilterService = FilterService;
938
- exports.SelectionService = SelectionService;
939
- exports.SortService = SortService;
940
- exports.ReorderService = ReorderService;
941
- exports.ResizeService = ResizeService;
942
- exports.EditService = EditService;
943
- exports.DayMarkersService = DayMarkersService;
944
- exports.ToolbarService = ToolbarService;
945
- exports.ContextMenuService = ContextMenuService;
946
- exports.ExcelExportService = ExcelExportService;
947
- exports.RowDDService = RowDDService;
948
- exports.ColumnMenuService = ColumnMenuService;
949
- exports.PdfExportService = PdfExportService;
950
- exports.VirtualScrollService = VirtualScrollService;
951
- exports.CriticalPathService = CriticalPathService;
952
- exports.UndoRedoService = UndoRedoService;
953
- exports.ɵa = inputs;
954
- exports.ɵb = outputs$7;
955
- exports.Gantt = ej2Gantt.Gantt;
956
- exports.PdfHorizontalOverflowType = ej2Gantt.PdfHorizontalOverflowType;
957
- exports.parentsUntil = ej2Gantt.parentsUntil;
958
- exports.isScheduledTask = ej2Gantt.isScheduledTask;
959
- exports.isCountRequired = ej2Gantt.isCountRequired;
960
- exports.getSwapKey = ej2Gantt.getSwapKey;
961
- exports.isEmptyObject = ej2Gantt.isEmptyObject;
962
- exports.getUniversalTime = ej2Gantt.getUniversalTime;
963
- exports.isRemoteData = ej2Gantt.isRemoteData;
964
- exports.getTaskData = ej2Gantt.getTaskData;
965
- exports.updateDates = ej2Gantt.updateDates;
966
- exports.formatString = ej2Gantt.formatString;
967
- exports.getIndex = ej2Gantt.getIndex;
968
- exports.pixelToPoint = ej2Gantt.pixelToPoint;
969
- exports.pointToPixel = ej2Gantt.pointToPixel;
970
- exports.getUid = ej2Gantt.getUid;
971
- exports.ConstraintType = ej2Gantt.ConstraintType;
972
- exports.load = ej2Gantt.load;
973
- exports.rowDataBound = ej2Gantt.rowDataBound;
974
- exports.queryCellInfo = ej2Gantt.queryCellInfo;
975
- exports.toolbarClick = ej2Gantt.toolbarClick;
976
- exports.keyPressed = ej2Gantt.keyPressed;
977
- exports.Edit = ej2Gantt.Edit;
978
- exports.Reorder = ej2Gantt.Reorder;
979
- exports.Resize = ej2Gantt.Resize;
980
- exports.Filter = ej2Gantt.Filter;
981
- exports.Sort = ej2Gantt.Sort;
982
- exports.Dependency = ej2Gantt.Dependency;
983
- exports.Selection = ej2Gantt.Selection;
984
- exports.Toolbar = ej2Gantt.Toolbar;
985
- exports.DayMarkers = ej2Gantt.DayMarkers;
986
- exports.CriticalPath = ej2Gantt.CriticalPath;
987
- exports.UndoRedo = ej2Gantt.UndoRedo;
988
- exports.ContextMenu = ej2Gantt.ContextMenu;
989
- exports.ExcelExport = ej2Gantt.ExcelExport;
990
- exports.ColumnMenu = ej2Gantt.ColumnMenu;
991
- exports.RowDD = ej2Gantt.RowDD;
992
- exports.PdfExport = ej2Gantt.PdfExport;
993
- exports.VirtualScroll = ej2Gantt.VirtualScroll;
994
- exports.Column = ej2Gantt.Column;
995
- exports.DayWorkingTime = ej2Gantt.DayWorkingTime;
996
- exports.AddDialogFieldSettings = ej2Gantt.AddDialogFieldSettings;
997
- exports.EditDialogFieldSettings = ej2Gantt.EditDialogFieldSettings;
998
- exports.EditSettings = ej2Gantt.EditSettings;
999
- exports.EventMarker = ej2Gantt.EventMarker;
1000
- exports.FilterSettings = ej2Gantt.FilterSettings;
1001
- exports.SearchSettings = ej2Gantt.SearchSettings;
1002
- exports.Holiday = ej2Gantt.Holiday;
1003
- exports.LabelSettings = ej2Gantt.LabelSettings;
1004
- exports.SelectionSettings = ej2Gantt.SelectionSettings;
1005
- exports.SplitterSettings = ej2Gantt.SplitterSettings;
1006
- exports.TaskFields = ej2Gantt.TaskFields;
1007
- exports.TimelineTierSettings = ej2Gantt.TimelineTierSettings;
1008
- exports.TimelineSettings = ej2Gantt.TimelineSettings;
1009
- exports.TooltipSettings = ej2Gantt.TooltipSettings;
1010
- exports.SortDescriptor = ej2Gantt.SortDescriptor;
1011
- exports.SortSettings = ej2Gantt.SortSettings;
1012
- exports.ResourceFields = ej2Gantt.ResourceFields;
1013
- exports.LoadingIndicator = ej2Gantt.LoadingIndicator;
1014
- exports.WeekWorkingTime = ej2Gantt.WeekWorkingTime;
1015
- exports.TemporaryDictionary = ej2Gantt.TemporaryDictionary;
1016
- exports.PdfBorders = ej2Gantt.PdfBorders;
1017
- exports.PdfPaddings = ej2Gantt.PdfPaddings;
1018
- exports.PdfTreeGridStyleBase = ej2Gantt.PdfTreeGridStyleBase;
1019
- exports.PdfTreeGridStyle = ej2Gantt.PdfTreeGridStyle;
1020
- exports.PdfGanttTheme = ej2Gantt.PdfGanttTheme;
1021
- exports.PdfTreeGridLayouter = ej2Gantt.PdfTreeGridLayouter;
1022
- exports.PdfTreeGridLayoutResult = ej2Gantt.PdfTreeGridLayoutResult;
1023
- exports.PdfTreeGridLayoutFormat = ej2Gantt.PdfTreeGridLayoutFormat;
1024
- exports.PdfTreeGridCell = ej2Gantt.PdfTreeGridCell;
1025
- exports.PdfTreeGridCellCollection = ej2Gantt.PdfTreeGridCellCollection;
1026
- exports.PdfTreeGridRow = ej2Gantt.PdfTreeGridRow;
1027
- exports.PdfTreeGridRowCollection = ej2Gantt.PdfTreeGridRowCollection;
1028
- exports.PdfTreeGridHeaderCollection = ej2Gantt.PdfTreeGridHeaderCollection;
1029
- exports.PdfTreeGridColumn = ej2Gantt.PdfTreeGridColumn;
1030
- exports.PdfTreeGridColumnCollection = ej2Gantt.PdfTreeGridColumnCollection;
1031
-
1032
- Object.defineProperty(exports, '__esModule', { value: true });
1033
-
1034
- })));
1035
- //# sourceMappingURL=ej2-angular-gantt.umd.js.map