@syncfusion/ej2-angular-gantt 25.2.5-ngcc → 25.2.6-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,13 +6,26 @@
6
6
 
7
7
  #### Bug fixes
8
8
 
9
+ - `#I587507` - Custom value task type does not render initially issue has been fixed.
10
+ - `#I586668` - When the context menu is used to add a record task index position value changes issue has been fixed.
11
+ - `#I591687` - Dependency value not get updated issue has been fixed.
12
+ - `#I588524` - Custom value in segment not maintained issue has been fixed.
13
+ - `#I586548` - Console error occurs when datasource updated dynamically issue has been fixed.
14
+ - `#I582746` - Critical path of task connected dependent tasks have not changed to critical issue has been fixed.
15
+
16
+ - `F159354` - Issue in locale text of predecessor tooltip has been fixed.
17
+
18
+ ## 25.2.5 (2024-05-21)
19
+
20
+ ### GanttChart
21
+
22
+ #### Bug fixes
23
+
9
24
  - `#I586588` - Event markers are hidden behind the taskbar in PDF exported file issue has been fixed.
10
25
  - `#I586588` - Console error throws while merging two segments with duration of one day issue has been fixed.
11
26
  - `#I463798` - Parent date changes when Unscheduled task is added issue has been fixed.
12
27
  - `#I582983` - The issue about date miscalculation when dragging the taskbar with timeline virtualization has been fixed.
13
28
 
14
- - `F159354` - Issue in locale text of predecessor tooltip has been fixed.
15
-
16
29
  ## 25.2.3 (2024-05-08)
17
30
 
18
31
  - `#I570803` - Tree Grid and Gantt chart side was not synchronized issue has been fixed.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-gantt.umd.js
3
- * version : 25.2.5
3
+ * version : 25.2.6
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,10 +39,23 @@ 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
- var ColumnDirective = (function (_super) {
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) {
44
55
  __extends(ColumnDirective, _super);
45
-
56
+ /**
57
+ * @param {?} viewContainerRef
58
+ */
46
59
  function ColumnDirective(viewContainerRef) {
47
60
  var _this = _super.call(this) || this;
48
61
  _this.viewContainerRef = viewContainerRef;
@@ -61,7 +74,9 @@ ColumnDirective.decorators = [
61
74
  queries: {}
62
75
  },] },
63
76
  ];
64
-
77
+ /**
78
+ * @nocollapse
79
+ */
65
80
  ColumnDirective.ctorParameters = function () { return [
66
81
  { type: core.ViewContainerRef, },
67
82
  ]; };
@@ -77,8 +92,10 @@ __decorate([
77
92
  ej2AngularBase.Template(),
78
93
  __metadata("design:type", Object)
79
94
  ], ColumnDirective.prototype, "headerTemplate", void 0);
80
-
81
- var ColumnsDirective = (function (_super) {
95
+ /**
96
+ * Column Array Directive
97
+ */
98
+ var ColumnsDirective = /** @class */ (function (_super) {
82
99
  __extends(ColumnsDirective, _super);
83
100
  function ColumnsDirective() {
84
101
  return _super.call(this, 'columns') || this;
@@ -93,14 +110,29 @@ ColumnsDirective.decorators = [
93
110
  },
94
111
  },] },
95
112
  ];
96
-
113
+ /**
114
+ * @nocollapse
115
+ */
97
116
  ColumnsDirective.ctorParameters = function () { return []; };
98
117
  var input$1 = ['additionalParams', 'fields', 'headerText', 'type'];
99
118
  var outputs$1 = [];
100
-
101
- var AddDialogFieldDirective = (function (_super) {
119
+ /**
120
+ * `e-add-dialog-field` directive represent a add dialog fields collection in Gantt task add dialog.
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) {
102
132
  __extends(AddDialogFieldDirective, _super);
103
-
133
+ /**
134
+ * @param {?} viewContainerRef
135
+ */
104
136
  function AddDialogFieldDirective(viewContainerRef) {
105
137
  var _this = _super.call(this) || this;
106
138
  _this.viewContainerRef = viewContainerRef;
@@ -119,12 +151,16 @@ AddDialogFieldDirective.decorators = [
119
151
  queries: {}
120
152
  },] },
121
153
  ];
122
-
154
+ /**
155
+ * @nocollapse
156
+ */
123
157
  AddDialogFieldDirective.ctorParameters = function () { return [
124
158
  { type: core.ViewContainerRef, },
125
159
  ]; };
126
-
127
- var AddDialogFieldsDirective = (function (_super) {
160
+ /**
161
+ * AddDialogField Array Directive
162
+ */
163
+ var AddDialogFieldsDirective = /** @class */ (function (_super) {
128
164
  __extends(AddDialogFieldsDirective, _super);
129
165
  function AddDialogFieldsDirective() {
130
166
  return _super.call(this, 'adddialogfields') || this;
@@ -139,14 +175,29 @@ AddDialogFieldsDirective.decorators = [
139
175
  },
140
176
  },] },
141
177
  ];
142
-
178
+ /**
179
+ * @nocollapse
180
+ */
143
181
  AddDialogFieldsDirective.ctorParameters = function () { return []; };
144
182
  var input$2 = ['additionalParams', 'fields', 'headerText', 'type'];
145
183
  var outputs$2 = [];
146
-
147
- var EditDialogFieldDirective = (function (_super) {
184
+ /**
185
+ * `e-edit-dialog-field` directive represent a edit dialog fields collection in Gantt task add dialog.
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) {
148
197
  __extends(EditDialogFieldDirective, _super);
149
-
198
+ /**
199
+ * @param {?} viewContainerRef
200
+ */
150
201
  function EditDialogFieldDirective(viewContainerRef) {
151
202
  var _this = _super.call(this) || this;
152
203
  _this.viewContainerRef = viewContainerRef;
@@ -165,12 +216,16 @@ EditDialogFieldDirective.decorators = [
165
216
  queries: {}
166
217
  },] },
167
218
  ];
168
-
219
+ /**
220
+ * @nocollapse
221
+ */
169
222
  EditDialogFieldDirective.ctorParameters = function () { return [
170
223
  { type: core.ViewContainerRef, },
171
224
  ]; };
172
-
173
- var EditDialogFieldsDirective = (function (_super) {
225
+ /**
226
+ * EditDialogField Array Directive
227
+ */
228
+ var EditDialogFieldsDirective = /** @class */ (function (_super) {
174
229
  __extends(EditDialogFieldsDirective, _super);
175
230
  function EditDialogFieldsDirective() {
176
231
  return _super.call(this, 'editdialogfields') || this;
@@ -185,14 +240,29 @@ EditDialogFieldsDirective.decorators = [
185
240
  },
186
241
  },] },
187
242
  ];
188
-
243
+ /**
244
+ * @nocollapse
245
+ */
189
246
  EditDialogFieldsDirective.ctorParameters = function () { return []; };
190
247
  var input$3 = ['from', 'to'];
191
248
  var outputs$3 = [];
192
-
193
- var DayWorkingTimeDirective = (function (_super) {
249
+ /**
250
+ * `e-day-working-time-collection` directive represent a working time ranges in a day.
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) {
194
262
  __extends(DayWorkingTimeDirective, _super);
195
-
263
+ /**
264
+ * @param {?} viewContainerRef
265
+ */
196
266
  function DayWorkingTimeDirective(viewContainerRef) {
197
267
  var _this = _super.call(this) || this;
198
268
  _this.viewContainerRef = viewContainerRef;
@@ -211,12 +281,16 @@ DayWorkingTimeDirective.decorators = [
211
281
  queries: {}
212
282
  },] },
213
283
  ];
214
-
284
+ /**
285
+ * @nocollapse
286
+ */
215
287
  DayWorkingTimeDirective.ctorParameters = function () { return [
216
288
  { type: core.ViewContainerRef, },
217
289
  ]; };
218
-
219
- var DayWorkingTimeCollectionDirective = (function (_super) {
290
+ /**
291
+ * DayWorkingTime Array Directive
292
+ */
293
+ var DayWorkingTimeCollectionDirective = /** @class */ (function (_super) {
220
294
  __extends(DayWorkingTimeCollectionDirective, _super);
221
295
  function DayWorkingTimeCollectionDirective() {
222
296
  return _super.call(this, 'dayworkingtime') || this;
@@ -231,14 +305,29 @@ DayWorkingTimeCollectionDirective.decorators = [
231
305
  },
232
306
  },] },
233
307
  ];
234
-
308
+ /**
309
+ * @nocollapse
310
+ */
235
311
  DayWorkingTimeCollectionDirective.ctorParameters = function () { return []; };
236
312
  var input$4 = ['cssClass', 'from', 'label', 'to'];
237
313
  var outputs$4 = [];
238
-
239
- var HolidayDirective = (function (_super) {
314
+ /**
315
+ * `e-holidays` directive represent a holidays collection in Gantt.
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) {
240
327
  __extends(HolidayDirective, _super);
241
-
328
+ /**
329
+ * @param {?} viewContainerRef
330
+ */
242
331
  function HolidayDirective(viewContainerRef) {
243
332
  var _this = _super.call(this) || this;
244
333
  _this.viewContainerRef = viewContainerRef;
@@ -257,12 +346,16 @@ HolidayDirective.decorators = [
257
346
  queries: {}
258
347
  },] },
259
348
  ];
260
-
349
+ /**
350
+ * @nocollapse
351
+ */
261
352
  HolidayDirective.ctorParameters = function () { return [
262
353
  { type: core.ViewContainerRef, },
263
354
  ]; };
264
-
265
- var HolidaysDirective = (function (_super) {
355
+ /**
356
+ * Holiday Array Directive
357
+ */
358
+ var HolidaysDirective = /** @class */ (function (_super) {
266
359
  __extends(HolidaysDirective, _super);
267
360
  function HolidaysDirective() {
268
361
  return _super.call(this, 'holidays') || this;
@@ -277,14 +370,28 @@ HolidaysDirective.decorators = [
277
370
  },
278
371
  },] },
279
372
  ];
280
-
373
+ /**
374
+ * @nocollapse
375
+ */
281
376
  HolidaysDirective.ctorParameters = function () { return []; };
282
377
  var input$5 = ['cssClass', 'day', 'label'];
283
378
  var outputs$5 = [];
284
-
285
- var EventMarkerDirective = (function (_super) {
379
+ /**
380
+ * `e-event-markers` directive represent a event marker collection in Gantt.
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) {
286
391
  __extends(EventMarkerDirective, _super);
287
-
392
+ /**
393
+ * @param {?} viewContainerRef
394
+ */
288
395
  function EventMarkerDirective(viewContainerRef) {
289
396
  var _this = _super.call(this) || this;
290
397
  _this.viewContainerRef = viewContainerRef;
@@ -303,12 +410,16 @@ EventMarkerDirective.decorators = [
303
410
  queries: {}
304
411
  },] },
305
412
  ];
306
-
413
+ /**
414
+ * @nocollapse
415
+ */
307
416
  EventMarkerDirective.ctorParameters = function () { return [
308
417
  { type: core.ViewContainerRef, },
309
418
  ]; };
310
-
311
- var EventMarkersDirective = (function (_super) {
419
+ /**
420
+ * EventMarker Array Directive
421
+ */
422
+ var EventMarkersDirective = /** @class */ (function (_super) {
312
423
  __extends(EventMarkersDirective, _super);
313
424
  function EventMarkersDirective() {
314
425
  return _super.call(this, 'eventmarkers') || this;
@@ -323,7 +434,9 @@ EventMarkersDirective.decorators = [
323
434
  },
324
435
  },] },
325
436
  ];
326
-
437
+ /**
438
+ * @nocollapse
439
+ */
327
440
  EventMarkersDirective.ctorParameters = function () { return []; };
328
441
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
329
442
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -342,10 +455,20 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
342
455
  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'];
343
456
  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'];
344
457
  var twoWays = ['dataSource'];
345
-
346
- exports.GanttComponent = (function (_super) {
458
+ /**
459
+ * `ejs-gantt` represents the Angular Gantt Component.
460
+ * ```html
461
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'></ejs-gantt>
462
+ * ```
463
+ */
464
+ exports.GanttComponent = /** @class */ (function (_super) {
347
465
  __extends(GanttComponent, _super);
348
-
466
+ /**
467
+ * @param {?} ngEle
468
+ * @param {?} srenderer
469
+ * @param {?} viewContainerRef
470
+ * @param {?} injector
471
+ */
349
472
  function GanttComponent(ngEle, srenderer, viewContainerRef, injector) {
350
473
  var _this = _super.call(this) || this;
351
474
  _this.ngEle = ngEle;
@@ -473,19 +596,27 @@ exports.GanttComponent = (function (_super) {
473
596
  _this.context = new ej2AngularBase.ComponentBase();
474
597
  return _this;
475
598
  }
476
-
599
+ /**
600
+ * @return {?}
601
+ */
477
602
  GanttComponent.prototype.ngOnInit = function () {
478
603
  this.context.ngOnInit(this);
479
604
  };
480
-
605
+ /**
606
+ * @return {?}
607
+ */
481
608
  GanttComponent.prototype.ngAfterViewInit = function () {
482
609
  this.context.ngAfterViewInit(this);
483
610
  };
484
-
611
+ /**
612
+ * @return {?}
613
+ */
485
614
  GanttComponent.prototype.ngOnDestroy = function () {
486
615
  this.context.ngOnDestroy(this);
487
616
  };
488
-
617
+ /**
618
+ * @return {?}
619
+ */
489
620
  GanttComponent.prototype.ngAfterContentChecked = function () {
490
621
  this.tagObjects[0].instance = this.childColumns;
491
622
  if (this.childAddDialogFields) {
@@ -524,7 +655,9 @@ exports.GanttComponent.decorators = [
524
655
  }
525
656
  },] },
526
657
  ];
527
-
658
+ /**
659
+ * @nocollapse
660
+ */
528
661
  exports.GanttComponent.ctorParameters = function () { return [
529
662
  { type: core.ElementRef, },
530
663
  { type: core.Renderer2, },
@@ -590,8 +723,10 @@ exports.GanttComponent = __decorate$1([
590
723
  core.ViewContainerRef,
591
724
  core.Injector])
592
725
  ], exports.GanttComponent);
593
-
594
- var GanttModule = (function () {
726
+ /**
727
+ * NgModule definition for the Gantt component.
728
+ */
729
+ var GanttModule = /** @class */ (function () {
595
730
  function GanttModule() {
596
731
  }
597
732
  return GanttModule;
@@ -631,7 +766,9 @@ GanttModule.decorators = [
631
766
  ]
632
767
  },] },
633
768
  ];
634
-
769
+ /**
770
+ * @nocollapse
771
+ */
635
772
  GanttModule.ctorParameters = function () { return []; };
636
773
  var FilterService = { provide: 'GanttFilter', useValue: ej2Gantt.Filter };
637
774
  var SelectionService = { provide: 'GanttSelection', useValue: ej2Gantt.Selection };
@@ -649,8 +786,10 @@ var PdfExportService = { provide: 'GanttPdfExport', useValue: ej2Gantt.PdfExport
649
786
  var VirtualScrollService = { provide: 'GanttVirtualScroll', useValue: ej2Gantt.VirtualScroll };
650
787
  var CriticalPathService = { provide: 'GanttCriticalPath', useValue: ej2Gantt.CriticalPath };
651
788
  var UndoRedoService = { provide: 'GanttUndoRedo', useValue: ej2Gantt.UndoRedo };
652
-
653
- var GanttAllModule = (function () {
789
+ /**
790
+ * NgModule definition for the Gantt component with providers.
791
+ */
792
+ var GanttAllModule = /** @class */ (function () {
654
793
  function GanttAllModule() {
655
794
  }
656
795
  return GanttAllModule;
@@ -681,7 +820,9 @@ GanttAllModule.decorators = [
681
820
  ]
682
821
  },] },
683
822
  ];
684
-
823
+ /**
824
+ * @nocollapse
825
+ */
685
826
  GanttAllModule.ctorParameters = function () { return []; };
686
827
 
687
828
  exports.ColumnDirective = ColumnDirective;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-gantt.umd.min.js
3
- * version : 25.2.5
3
+ * version : 25.2.6
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.2.4",
3
+ "_id": "@syncfusion/ej2-angular-gantt@25.2.5",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-YzA8qJZ9UYqkEqt6ydpa7Xpm4Cv+oejMPJKeya2chijkOsw0OcshIL2B5eqfaL8acCEJjLG1mYxYATmN/xJvpA==",
5
+ "_integrity": "sha512-uCUapkUjS1JAK2zs3bq5XsMcvPwR59+mNr8wmcaOEL5epLPF79OKo+cNGchmk6mgJ2qEAU58/YtcB7tyK2B0iw==",
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.2.4.tgz",
23
- "_shasum": "163fc934db46ab460e2e78bf73aaf6eeb0db3682",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-gantt/-/ej2-angular-gantt-25.2.5.tgz",
23
+ "_shasum": "ad27bafb47e7cac9f9acbeb3bcbaeb3513a20e13",
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.4",
34
+ "@syncfusion/ej2-angular-base": "~25.2.6",
35
35
  "@syncfusion/ej2-base": "~25.2.5",
36
- "@syncfusion/ej2-gantt": "25.2.5"
36
+ "@syncfusion/ej2-gantt": "25.2.6"
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.5-ngcc"
60
+ "version": "25.2.6-ngcc"
61
61
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-gantt";
2
- export declare const pkgVer = "^25.2.4";
2
+ export declare const pkgVer = "^25.2.5";
3
3
  export declare const moduleName = "GanttModule";
4
- export declare const themeVer = "~25.2.4";
4
+ export declare const themeVer = "~25.2.5";
@@ -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.5';
4
+ exports.pkgVer = '^25.2.6';
5
5
  exports.moduleName = 'GanttModule';
6
- exports.themeVer = '~25.2.5';
6
+ exports.themeVer = '~25.2.6';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-gantt';
2
- export const pkgVer = '^25.2.5';
2
+ export const pkgVer = '^25.2.6';
3
3
  export const moduleName = 'GanttModule';
4
- export const themeVer = '~25.2.5';
4
+ export const themeVer = '~25.2.6';