@syncfusion/ej2-angular-gantt 25.2.3-ngcc → 25.2.4-ngcc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -6,10 +6,20 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug fixes
|
|
8
8
|
|
|
9
|
-
- `#
|
|
9
|
+
- `#I583075` - Duration is not calculated properly issue has been fixed.
|
|
10
|
+
- `#I578781` - Delay in update of multiple dependency task issue has been fixed.
|
|
11
|
+
- `#I574986` - Console error occurs while adding segments via dialog in Gantt issue has been fixed.
|
|
12
|
+
- `#I585348` - Record gets disappeared when adding new record in last page issue has been fixed.
|
|
13
|
+
- `#I565931` - Taskbar render outside the grid line and bottom tier misalign issue has been fixed.
|
|
14
|
+
- `#F187977` - The script error caused by multiple resources assigned to a single task issue has been resolved.
|
|
15
|
+
- `#I580459` - When Germany `timezone` use, alignment issue occurs in weekend highlight and taskbar issue has been fixed.
|
|
10
16
|
|
|
11
17
|
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
|
12
18
|
|
|
19
|
+
## 25.2.3 (2024-05-08)
|
|
20
|
+
|
|
21
|
+
- `#I570803` - Tree Grid and Gantt chart side was not synchronized issue has been fixed.
|
|
22
|
+
|
|
13
23
|
## 25.1.42 (2024-04-30)
|
|
14
24
|
|
|
15
25
|
### GanttChart
|
|
@@ -23,6 +33,7 @@
|
|
|
23
33
|
- `#I576290` - Dialog edit not working properly for multiple dependency issue has been fixed.
|
|
24
34
|
- `#I577597` - `queryTaskbarInfo` event using style is not applied when resource view in collapsed state in tasks issue has been fixed.
|
|
25
35
|
|
|
36
|
+
- `#I574986` - Console error occurs while adding segments via dialog in Gantt issue has been fixed.
|
|
26
37
|
- `#I578380` - When using tooltip template, an exception is thrown issue has been fixed.
|
|
27
38
|
- `#I577597` - `queryTaskbarInfo` event using style is not applied when resource view in collapsed state in tasks issue has been fixed.
|
|
28
39
|
- `#I576290` - Dialog edit not working properly for multiple dependency issue has been fixed.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-gantt.umd.js
|
|
3
|
-
* version : 25.2.
|
|
3
|
+
* version : 25.2.4
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -39,23 +39,10 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
39
39
|
};
|
|
40
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
41
|
var outputs = [];
|
|
42
|
-
|
|
43
|
-
|
|
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) {
|
|
42
|
+
|
|
43
|
+
var ColumnDirective = (function (_super) {
|
|
55
44
|
__extends(ColumnDirective, _super);
|
|
56
|
-
|
|
57
|
-
* @param {?} viewContainerRef
|
|
58
|
-
*/
|
|
45
|
+
|
|
59
46
|
function ColumnDirective(viewContainerRef) {
|
|
60
47
|
var _this = _super.call(this) || this;
|
|
61
48
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -74,9 +61,7 @@ ColumnDirective.decorators = [
|
|
|
74
61
|
queries: {}
|
|
75
62
|
},] },
|
|
76
63
|
];
|
|
77
|
-
|
|
78
|
-
* @nocollapse
|
|
79
|
-
*/
|
|
64
|
+
|
|
80
65
|
ColumnDirective.ctorParameters = function () { return [
|
|
81
66
|
{ type: core.ViewContainerRef, },
|
|
82
67
|
]; };
|
|
@@ -92,10 +77,8 @@ __decorate([
|
|
|
92
77
|
ej2AngularBase.Template(),
|
|
93
78
|
__metadata("design:type", Object)
|
|
94
79
|
], ColumnDirective.prototype, "headerTemplate", void 0);
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
*/
|
|
98
|
-
var ColumnsDirective = /** @class */ (function (_super) {
|
|
80
|
+
|
|
81
|
+
var ColumnsDirective = (function (_super) {
|
|
99
82
|
__extends(ColumnsDirective, _super);
|
|
100
83
|
function ColumnsDirective() {
|
|
101
84
|
return _super.call(this, 'columns') || this;
|
|
@@ -110,29 +93,14 @@ ColumnsDirective.decorators = [
|
|
|
110
93
|
},
|
|
111
94
|
},] },
|
|
112
95
|
];
|
|
113
|
-
|
|
114
|
-
* @nocollapse
|
|
115
|
-
*/
|
|
96
|
+
|
|
116
97
|
ColumnsDirective.ctorParameters = function () { return []; };
|
|
117
98
|
var input$1 = ['additionalParams', 'fields', 'headerText', 'type'];
|
|
118
99
|
var outputs$1 = [];
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
122
|
-
* ```html
|
|
123
|
-
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
124
|
-
* <e-add-dialog-fields>
|
|
125
|
-
* <e-add-dialog-field type='General' headerText='General'></e-add-dialog-field>
|
|
126
|
-
* <e-add-dialog-field type='Dependency' headerText='Dependency'></e-add-dialog-field>
|
|
127
|
-
* </e-add-dialog-fields>
|
|
128
|
-
* </ejs-gantt>
|
|
129
|
-
* ```
|
|
130
|
-
*/
|
|
131
|
-
var AddDialogFieldDirective = /** @class */ (function (_super) {
|
|
100
|
+
|
|
101
|
+
var AddDialogFieldDirective = (function (_super) {
|
|
132
102
|
__extends(AddDialogFieldDirective, _super);
|
|
133
|
-
|
|
134
|
-
* @param {?} viewContainerRef
|
|
135
|
-
*/
|
|
103
|
+
|
|
136
104
|
function AddDialogFieldDirective(viewContainerRef) {
|
|
137
105
|
var _this = _super.call(this) || this;
|
|
138
106
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -151,16 +119,12 @@ AddDialogFieldDirective.decorators = [
|
|
|
151
119
|
queries: {}
|
|
152
120
|
},] },
|
|
153
121
|
];
|
|
154
|
-
|
|
155
|
-
* @nocollapse
|
|
156
|
-
*/
|
|
122
|
+
|
|
157
123
|
AddDialogFieldDirective.ctorParameters = function () { return [
|
|
158
124
|
{ type: core.ViewContainerRef, },
|
|
159
125
|
]; };
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
*/
|
|
163
|
-
var AddDialogFieldsDirective = /** @class */ (function (_super) {
|
|
126
|
+
|
|
127
|
+
var AddDialogFieldsDirective = (function (_super) {
|
|
164
128
|
__extends(AddDialogFieldsDirective, _super);
|
|
165
129
|
function AddDialogFieldsDirective() {
|
|
166
130
|
return _super.call(this, 'adddialogfields') || this;
|
|
@@ -175,29 +139,14 @@ AddDialogFieldsDirective.decorators = [
|
|
|
175
139
|
},
|
|
176
140
|
},] },
|
|
177
141
|
];
|
|
178
|
-
|
|
179
|
-
* @nocollapse
|
|
180
|
-
*/
|
|
142
|
+
|
|
181
143
|
AddDialogFieldsDirective.ctorParameters = function () { return []; };
|
|
182
144
|
var input$2 = ['additionalParams', 'fields', 'headerText', 'type'];
|
|
183
145
|
var outputs$2 = [];
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
187
|
-
* ```html
|
|
188
|
-
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
189
|
-
* <e-edit-dialog-fields>
|
|
190
|
-
* <e-edit-dialog-field type='General' headerText='General'></e-edit-dialog-field>
|
|
191
|
-
* <e-edit-dialog-field type='Dependency' headerText='Dependency'></e-edit-dialog-field>
|
|
192
|
-
* </e-edit-dialog-fields>
|
|
193
|
-
* </ejs-gantt>
|
|
194
|
-
* ```
|
|
195
|
-
*/
|
|
196
|
-
var EditDialogFieldDirective = /** @class */ (function (_super) {
|
|
146
|
+
|
|
147
|
+
var EditDialogFieldDirective = (function (_super) {
|
|
197
148
|
__extends(EditDialogFieldDirective, _super);
|
|
198
|
-
|
|
199
|
-
* @param {?} viewContainerRef
|
|
200
|
-
*/
|
|
149
|
+
|
|
201
150
|
function EditDialogFieldDirective(viewContainerRef) {
|
|
202
151
|
var _this = _super.call(this) || this;
|
|
203
152
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -216,16 +165,12 @@ EditDialogFieldDirective.decorators = [
|
|
|
216
165
|
queries: {}
|
|
217
166
|
},] },
|
|
218
167
|
];
|
|
219
|
-
|
|
220
|
-
* @nocollapse
|
|
221
|
-
*/
|
|
168
|
+
|
|
222
169
|
EditDialogFieldDirective.ctorParameters = function () { return [
|
|
223
170
|
{ type: core.ViewContainerRef, },
|
|
224
171
|
]; };
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
*/
|
|
228
|
-
var EditDialogFieldsDirective = /** @class */ (function (_super) {
|
|
172
|
+
|
|
173
|
+
var EditDialogFieldsDirective = (function (_super) {
|
|
229
174
|
__extends(EditDialogFieldsDirective, _super);
|
|
230
175
|
function EditDialogFieldsDirective() {
|
|
231
176
|
return _super.call(this, 'editdialogfields') || this;
|
|
@@ -240,29 +185,14 @@ EditDialogFieldsDirective.decorators = [
|
|
|
240
185
|
},
|
|
241
186
|
},] },
|
|
242
187
|
];
|
|
243
|
-
|
|
244
|
-
* @nocollapse
|
|
245
|
-
*/
|
|
188
|
+
|
|
246
189
|
EditDialogFieldsDirective.ctorParameters = function () { return []; };
|
|
247
190
|
var input$3 = ['from', 'to'];
|
|
248
191
|
var outputs$3 = [];
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
252
|
-
* ```html
|
|
253
|
-
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
254
|
-
* <e-day-working-time-collection>
|
|
255
|
-
* <e-day-working-time from='8' to='12'></e-day-working-time>
|
|
256
|
-
* <e-day-working-time from='13' to='17'></e-day-working-time>
|
|
257
|
-
* </e-day-working-time-collection>
|
|
258
|
-
* </ejs-gantt>
|
|
259
|
-
* ```
|
|
260
|
-
*/
|
|
261
|
-
var DayWorkingTimeDirective = /** @class */ (function (_super) {
|
|
192
|
+
|
|
193
|
+
var DayWorkingTimeDirective = (function (_super) {
|
|
262
194
|
__extends(DayWorkingTimeDirective, _super);
|
|
263
|
-
|
|
264
|
-
* @param {?} viewContainerRef
|
|
265
|
-
*/
|
|
195
|
+
|
|
266
196
|
function DayWorkingTimeDirective(viewContainerRef) {
|
|
267
197
|
var _this = _super.call(this) || this;
|
|
268
198
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -281,16 +211,12 @@ DayWorkingTimeDirective.decorators = [
|
|
|
281
211
|
queries: {}
|
|
282
212
|
},] },
|
|
283
213
|
];
|
|
284
|
-
|
|
285
|
-
* @nocollapse
|
|
286
|
-
*/
|
|
214
|
+
|
|
287
215
|
DayWorkingTimeDirective.ctorParameters = function () { return [
|
|
288
216
|
{ type: core.ViewContainerRef, },
|
|
289
217
|
]; };
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
*/
|
|
293
|
-
var DayWorkingTimeCollectionDirective = /** @class */ (function (_super) {
|
|
218
|
+
|
|
219
|
+
var DayWorkingTimeCollectionDirective = (function (_super) {
|
|
294
220
|
__extends(DayWorkingTimeCollectionDirective, _super);
|
|
295
221
|
function DayWorkingTimeCollectionDirective() {
|
|
296
222
|
return _super.call(this, 'dayworkingtime') || this;
|
|
@@ -305,29 +231,14 @@ DayWorkingTimeCollectionDirective.decorators = [
|
|
|
305
231
|
},
|
|
306
232
|
},] },
|
|
307
233
|
];
|
|
308
|
-
|
|
309
|
-
* @nocollapse
|
|
310
|
-
*/
|
|
234
|
+
|
|
311
235
|
DayWorkingTimeCollectionDirective.ctorParameters = function () { return []; };
|
|
312
236
|
var input$4 = ['cssClass', 'from', 'label', 'to'];
|
|
313
237
|
var outputs$4 = [];
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
317
|
-
* ```html
|
|
318
|
-
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
319
|
-
* <e-holidays>
|
|
320
|
-
* <e-holiday from='02/20/2018' label='Holiday 1'></e-holiday>
|
|
321
|
-
* <e-holiday from='05/15/2018' label='Holiday 2'></e-holiday>
|
|
322
|
-
* </e-holidays>
|
|
323
|
-
* </ejs-gantt>
|
|
324
|
-
* ```
|
|
325
|
-
*/
|
|
326
|
-
var HolidayDirective = /** @class */ (function (_super) {
|
|
238
|
+
|
|
239
|
+
var HolidayDirective = (function (_super) {
|
|
327
240
|
__extends(HolidayDirective, _super);
|
|
328
|
-
|
|
329
|
-
* @param {?} viewContainerRef
|
|
330
|
-
*/
|
|
241
|
+
|
|
331
242
|
function HolidayDirective(viewContainerRef) {
|
|
332
243
|
var _this = _super.call(this) || this;
|
|
333
244
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -346,16 +257,12 @@ HolidayDirective.decorators = [
|
|
|
346
257
|
queries: {}
|
|
347
258
|
},] },
|
|
348
259
|
];
|
|
349
|
-
|
|
350
|
-
* @nocollapse
|
|
351
|
-
*/
|
|
260
|
+
|
|
352
261
|
HolidayDirective.ctorParameters = function () { return [
|
|
353
262
|
{ type: core.ViewContainerRef, },
|
|
354
263
|
]; };
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
*/
|
|
358
|
-
var HolidaysDirective = /** @class */ (function (_super) {
|
|
264
|
+
|
|
265
|
+
var HolidaysDirective = (function (_super) {
|
|
359
266
|
__extends(HolidaysDirective, _super);
|
|
360
267
|
function HolidaysDirective() {
|
|
361
268
|
return _super.call(this, 'holidays') || this;
|
|
@@ -370,28 +277,14 @@ HolidaysDirective.decorators = [
|
|
|
370
277
|
},
|
|
371
278
|
},] },
|
|
372
279
|
];
|
|
373
|
-
|
|
374
|
-
* @nocollapse
|
|
375
|
-
*/
|
|
280
|
+
|
|
376
281
|
HolidaysDirective.ctorParameters = function () { return []; };
|
|
377
282
|
var input$5 = ['cssClass', 'day', 'label'];
|
|
378
283
|
var outputs$5 = [];
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
382
|
-
* ```html
|
|
383
|
-
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
384
|
-
* <e-event-markers>
|
|
385
|
-
* <e-event-marker day='02/10/2018' label='Project Starts'></e-event-marker>
|
|
386
|
-
* </e-event-markers>
|
|
387
|
-
* </ejs-gantt>
|
|
388
|
-
* ```
|
|
389
|
-
*/
|
|
390
|
-
var EventMarkerDirective = /** @class */ (function (_super) {
|
|
284
|
+
|
|
285
|
+
var EventMarkerDirective = (function (_super) {
|
|
391
286
|
__extends(EventMarkerDirective, _super);
|
|
392
|
-
|
|
393
|
-
* @param {?} viewContainerRef
|
|
394
|
-
*/
|
|
287
|
+
|
|
395
288
|
function EventMarkerDirective(viewContainerRef) {
|
|
396
289
|
var _this = _super.call(this) || this;
|
|
397
290
|
_this.viewContainerRef = viewContainerRef;
|
|
@@ -410,16 +303,12 @@ EventMarkerDirective.decorators = [
|
|
|
410
303
|
queries: {}
|
|
411
304
|
},] },
|
|
412
305
|
];
|
|
413
|
-
|
|
414
|
-
* @nocollapse
|
|
415
|
-
*/
|
|
306
|
+
|
|
416
307
|
EventMarkerDirective.ctorParameters = function () { return [
|
|
417
308
|
{ type: core.ViewContainerRef, },
|
|
418
309
|
]; };
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
*/
|
|
422
|
-
var EventMarkersDirective = /** @class */ (function (_super) {
|
|
310
|
+
|
|
311
|
+
var EventMarkersDirective = (function (_super) {
|
|
423
312
|
__extends(EventMarkersDirective, _super);
|
|
424
313
|
function EventMarkersDirective() {
|
|
425
314
|
return _super.call(this, 'eventmarkers') || this;
|
|
@@ -434,9 +323,7 @@ EventMarkersDirective.decorators = [
|
|
|
434
323
|
},
|
|
435
324
|
},] },
|
|
436
325
|
];
|
|
437
|
-
|
|
438
|
-
* @nocollapse
|
|
439
|
-
*/
|
|
326
|
+
|
|
440
327
|
EventMarkersDirective.ctorParameters = function () { return []; };
|
|
441
328
|
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
442
329
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
@@ -455,20 +342,10 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
|
455
342
|
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', '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', 'timezone', 'toolbar', 'tooltipSettings', 'treeColumnIndex', 'undoRedoActions', 'undoRedoStepsCount', 'validateManualTasksOnLinking', 'viewType', 'width', 'workUnit', 'workWeek', 'zoomingLevels'];
|
|
456
343
|
var outputs$6 = ['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'];
|
|
457
344
|
var twoWays = ['dataSource'];
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
* ```html
|
|
461
|
-
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'></ejs-gantt>
|
|
462
|
-
* ```
|
|
463
|
-
*/
|
|
464
|
-
exports.GanttComponent = /** @class */ (function (_super) {
|
|
345
|
+
|
|
346
|
+
exports.GanttComponent = (function (_super) {
|
|
465
347
|
__extends(GanttComponent, _super);
|
|
466
|
-
|
|
467
|
-
* @param {?} ngEle
|
|
468
|
-
* @param {?} srenderer
|
|
469
|
-
* @param {?} viewContainerRef
|
|
470
|
-
* @param {?} injector
|
|
471
|
-
*/
|
|
348
|
+
|
|
472
349
|
function GanttComponent(ngEle, srenderer, viewContainerRef, injector) {
|
|
473
350
|
var _this = _super.call(this) || this;
|
|
474
351
|
_this.ngEle = ngEle;
|
|
@@ -596,27 +473,19 @@ exports.GanttComponent = /** @class */ (function (_super) {
|
|
|
596
473
|
_this.context = new ej2AngularBase.ComponentBase();
|
|
597
474
|
return _this;
|
|
598
475
|
}
|
|
599
|
-
|
|
600
|
-
* @return {?}
|
|
601
|
-
*/
|
|
476
|
+
|
|
602
477
|
GanttComponent.prototype.ngOnInit = function () {
|
|
603
478
|
this.context.ngOnInit(this);
|
|
604
479
|
};
|
|
605
|
-
|
|
606
|
-
* @return {?}
|
|
607
|
-
*/
|
|
480
|
+
|
|
608
481
|
GanttComponent.prototype.ngAfterViewInit = function () {
|
|
609
482
|
this.context.ngAfterViewInit(this);
|
|
610
483
|
};
|
|
611
|
-
|
|
612
|
-
* @return {?}
|
|
613
|
-
*/
|
|
484
|
+
|
|
614
485
|
GanttComponent.prototype.ngOnDestroy = function () {
|
|
615
486
|
this.context.ngOnDestroy(this);
|
|
616
487
|
};
|
|
617
|
-
|
|
618
|
-
* @return {?}
|
|
619
|
-
*/
|
|
488
|
+
|
|
620
489
|
GanttComponent.prototype.ngAfterContentChecked = function () {
|
|
621
490
|
this.tagObjects[0].instance = this.childColumns;
|
|
622
491
|
if (this.childAddDialogFields) {
|
|
@@ -655,9 +524,7 @@ exports.GanttComponent.decorators = [
|
|
|
655
524
|
}
|
|
656
525
|
},] },
|
|
657
526
|
];
|
|
658
|
-
|
|
659
|
-
* @nocollapse
|
|
660
|
-
*/
|
|
527
|
+
|
|
661
528
|
exports.GanttComponent.ctorParameters = function () { return [
|
|
662
529
|
{ type: core.ElementRef, },
|
|
663
530
|
{ type: core.Renderer2, },
|
|
@@ -723,10 +590,8 @@ exports.GanttComponent = __decorate$1([
|
|
|
723
590
|
core.ViewContainerRef,
|
|
724
591
|
core.Injector])
|
|
725
592
|
], exports.GanttComponent);
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
*/
|
|
729
|
-
var GanttModule = /** @class */ (function () {
|
|
593
|
+
|
|
594
|
+
var GanttModule = (function () {
|
|
730
595
|
function GanttModule() {
|
|
731
596
|
}
|
|
732
597
|
return GanttModule;
|
|
@@ -766,9 +631,7 @@ GanttModule.decorators = [
|
|
|
766
631
|
]
|
|
767
632
|
},] },
|
|
768
633
|
];
|
|
769
|
-
|
|
770
|
-
* @nocollapse
|
|
771
|
-
*/
|
|
634
|
+
|
|
772
635
|
GanttModule.ctorParameters = function () { return []; };
|
|
773
636
|
var FilterService = { provide: 'GanttFilter', useValue: ej2Gantt.Filter };
|
|
774
637
|
var SelectionService = { provide: 'GanttSelection', useValue: ej2Gantt.Selection };
|
|
@@ -786,10 +649,8 @@ var PdfExportService = { provide: 'GanttPdfExport', useValue: ej2Gantt.PdfExport
|
|
|
786
649
|
var VirtualScrollService = { provide: 'GanttVirtualScroll', useValue: ej2Gantt.VirtualScroll };
|
|
787
650
|
var CriticalPathService = { provide: 'GanttCriticalPath', useValue: ej2Gantt.CriticalPath };
|
|
788
651
|
var UndoRedoService = { provide: 'GanttUndoRedo', useValue: ej2Gantt.UndoRedo };
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
*/
|
|
792
|
-
var GanttAllModule = /** @class */ (function () {
|
|
652
|
+
|
|
653
|
+
var GanttAllModule = (function () {
|
|
793
654
|
function GanttAllModule() {
|
|
794
655
|
}
|
|
795
656
|
return GanttAllModule;
|
|
@@ -820,9 +681,7 @@ GanttAllModule.decorators = [
|
|
|
820
681
|
]
|
|
821
682
|
},] },
|
|
822
683
|
];
|
|
823
|
-
|
|
824
|
-
* @nocollapse
|
|
825
|
-
*/
|
|
684
|
+
|
|
826
685
|
GanttAllModule.ctorParameters = function () { return []; };
|
|
827
686
|
|
|
828
687
|
exports.ColumnDirective = ColumnDirective;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-gantt.umd.min.js
|
|
3
|
-
* version : 25.2.
|
|
3
|
+
* version : 25.2.4
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-gantt@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-gantt@25.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-gantt@25.2.3",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-a1uOrzF+kbw77INRrG4mOPOeeHx0TKT7SGOxmIDwnnp/L3ohfF2WWaw0boG0QSjpnynZP3XIOPAYdnvWK4fiJw==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-gantt",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-gantt/-/ej2-angular-gantt-25.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-gantt/-/ej2-angular-gantt-25.2.3.tgz",
|
|
23
|
+
"_shasum": "ac8d8a6ccbe1b6bfecf153460280079caeedd106",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-gantt@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~25.2.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~25.2.4",
|
|
35
35
|
"@syncfusion/ej2-base": "~25.2.3",
|
|
36
|
-
"@syncfusion/ej2-gantt": "25.2.
|
|
36
|
+
"@syncfusion/ej2-gantt": "25.2.4"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 Gantt Component for Angular",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"schematics": "./schematics/collection.json",
|
|
58
58
|
"sideEffects": false,
|
|
59
59
|
"typings": "ej2-angular-gantt.d.ts",
|
|
60
|
-
"version": "25.2.
|
|
60
|
+
"version": "25.2.4-ngcc"
|
|
61
61
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-gantt";
|
|
2
|
-
export declare const pkgVer = "^25.
|
|
2
|
+
export declare const pkgVer = "^25.2.3";
|
|
3
3
|
export declare const moduleName = "GanttModule";
|
|
4
|
-
export declare const themeVer = "~25.
|
|
4
|
+
export declare const themeVer = "~25.2.3";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-gantt';
|
|
4
|
-
exports.pkgVer = '^25.2.
|
|
4
|
+
exports.pkgVer = '^25.2.4';
|
|
5
5
|
exports.moduleName = 'GanttModule';
|
|
6
|
-
exports.themeVer = '~25.2.
|
|
6
|
+
exports.themeVer = '~25.2.4';
|