@syncfusion/ej2-angular-gantt 25.2.7-ngcc → 26.1.35-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.
Files changed (55) hide show
  1. package/@syncfusion/ej2-angular-gantt.es5.js +98 -20
  2. package/@syncfusion/ej2-angular-gantt.es5.js.map +1 -1
  3. package/@syncfusion/ej2-angular-gantt.js +94 -20
  4. package/@syncfusion/ej2-angular-gantt.js.map +1 -1
  5. package/dist/ej2-angular-gantt.umd.js +101 -20
  6. package/dist/ej2-angular-gantt.umd.js.map +1 -1
  7. package/dist/ej2-angular-gantt.umd.min.js +2 -2
  8. package/dist/ej2-angular-gantt.umd.min.js.map +1 -1
  9. package/ej2-angular-gantt.metadata.json +1 -1
  10. package/package.json +9 -9
  11. package/schematics/utils/lib-details.js +2 -2
  12. package/schematics/utils/lib-details.ts +2 -2
  13. package/src/gantt/gantt.component.d.ts +8 -0
  14. package/src/gantt/weekworkingtime.directive.d.ts +38 -0
  15. package/src/index.d.ts +1 -0
  16. package/styles/bootstrap-dark.css +2188 -1
  17. package/styles/bootstrap.css +2318 -1
  18. package/styles/bootstrap4.css +2531 -1
  19. package/styles/bootstrap5-dark.css +2213 -1
  20. package/styles/bootstrap5.css +2213 -1
  21. package/styles/fabric-dark.css +2133 -1
  22. package/styles/fabric.css +2121 -1
  23. package/styles/fluent-dark.css +2209 -1
  24. package/styles/fluent.css +2209 -1
  25. package/styles/fluent2.css +3458 -0
  26. package/styles/fluent2.scss +1 -0
  27. package/styles/gantt/bootstrap-dark.css +2188 -1
  28. package/styles/gantt/bootstrap.css +2318 -1
  29. package/styles/gantt/bootstrap4.css +2531 -1
  30. package/styles/gantt/bootstrap5-dark.css +2213 -1
  31. package/styles/gantt/bootstrap5.css +2213 -1
  32. package/styles/gantt/fabric-dark.css +2133 -1
  33. package/styles/gantt/fabric.css +2121 -1
  34. package/styles/gantt/fluent-dark.css +2209 -1
  35. package/styles/gantt/fluent.css +2209 -1
  36. package/styles/gantt/fluent2.css +3458 -0
  37. package/styles/gantt/fluent2.scss +1 -0
  38. package/styles/gantt/highcontrast-light.css +2092 -1
  39. package/styles/gantt/highcontrast.css +2219 -1
  40. package/styles/gantt/material-dark.css +2240 -1
  41. package/styles/gantt/material.css +2292 -1
  42. package/styles/gantt/material3-dark.css +2367 -1
  43. package/styles/gantt/material3.css +2479 -1
  44. package/styles/gantt/tailwind-dark.css +2218 -1
  45. package/styles/gantt/tailwind.css +2218 -1
  46. package/styles/highcontrast-light.css +2092 -1
  47. package/styles/highcontrast.css +2219 -1
  48. package/styles/material-dark.css +2240 -1
  49. package/styles/material.css +2292 -1
  50. package/styles/material3-dark.css +2367 -1
  51. package/styles/material3.css +2479 -1
  52. package/styles/tailwind-dark.css +2218 -1
  53. package/styles/tailwind.css +2218 -1
  54. package/CHANGELOG.md +0 -2396
  55. package/postinstall/tagchange.js +0 -18
@@ -268,8 +268,69 @@ DayWorkingTimeCollectionDirective.decorators = [
268
268
  */
269
269
  DayWorkingTimeCollectionDirective.ctorParameters = () => [];
270
270
 
271
- let input$4 = ['cssClass', 'from', 'label', 'to'];
271
+ let input$4 = ['dayOfWeek', 'timeRange'];
272
272
  let outputs$4 = [];
273
+ /**
274
+ * `e-week-working-times` directive represent a working time ranges in a day.
275
+ * It must be contained in a Gantt component(`ejs-gantt`).
276
+ * ```html
277
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
278
+ * <e-week-working-times>
279
+ * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
280
+ * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
281
+ * </e-week-working-times>
282
+ * </ejs-gantt>
283
+ * ```
284
+ */
285
+ class WeekWorkingTimeDirective extends ComplexBase {
286
+ /**
287
+ * @param {?} viewContainerRef
288
+ */
289
+ constructor(viewContainerRef) {
290
+ super();
291
+ this.viewContainerRef = viewContainerRef;
292
+ setValue('currentInstance', this, this.viewContainerRef);
293
+ this.registerEvents(outputs$4);
294
+ this.directivePropList = input$4;
295
+ }
296
+ }
297
+ WeekWorkingTimeDirective.decorators = [
298
+ { type: Directive, args: [{
299
+ selector: 'ejs-gantt>e-week-working-times>e-week-working-time',
300
+ inputs: input$4,
301
+ outputs: outputs$4,
302
+ queries: {}
303
+ },] },
304
+ ];
305
+ /**
306
+ * @nocollapse
307
+ */
308
+ WeekWorkingTimeDirective.ctorParameters = () => [
309
+ { type: ViewContainerRef, },
310
+ ];
311
+ /**
312
+ * WeekWorkingTime Array Directive
313
+ */
314
+ class WeekWorkingTimesDirective extends ArrayBase {
315
+ constructor() {
316
+ super('weekworkingtime');
317
+ }
318
+ }
319
+ WeekWorkingTimesDirective.decorators = [
320
+ { type: Directive, args: [{
321
+ selector: 'ejs-gantt>e-week-working-times',
322
+ queries: {
323
+ children: new ContentChildren(WeekWorkingTimeDirective)
324
+ },
325
+ },] },
326
+ ];
327
+ /**
328
+ * @nocollapse
329
+ */
330
+ WeekWorkingTimesDirective.ctorParameters = () => [];
331
+
332
+ let input$5 = ['cssClass', 'from', 'label', 'to'];
333
+ let outputs$5 = [];
273
334
  /**
274
335
  * `e-holidays` directive represent a holidays collection in Gantt.
275
336
  * It must be contained in a Gantt component(`ejs-gantt`).
@@ -290,15 +351,15 @@ class HolidayDirective extends ComplexBase {
290
351
  super();
291
352
  this.viewContainerRef = viewContainerRef;
292
353
  setValue('currentInstance', this, this.viewContainerRef);
293
- this.registerEvents(outputs$4);
294
- this.directivePropList = input$4;
354
+ this.registerEvents(outputs$5);
355
+ this.directivePropList = input$5;
295
356
  }
296
357
  }
297
358
  HolidayDirective.decorators = [
298
359
  { type: Directive, args: [{
299
360
  selector: 'ejs-gantt>e-holidays>e-holidays',
300
- inputs: input$4,
301
- outputs: outputs$4,
361
+ inputs: input$5,
362
+ outputs: outputs$5,
302
363
  queries: {}
303
364
  },] },
304
365
  ];
@@ -329,8 +390,8 @@ HolidaysDirective.decorators = [
329
390
  */
330
391
  HolidaysDirective.ctorParameters = () => [];
331
392
 
332
- let input$5 = ['cssClass', 'day', 'label'];
333
- let outputs$5 = [];
393
+ let input$6 = ['cssClass', 'day', 'label'];
394
+ let outputs$6 = [];
334
395
  /**
335
396
  * `e-event-markers` directive represent a event marker collection in Gantt.
336
397
  * It must be contained in a Gantt component(`ejs-gantt`).
@@ -350,15 +411,15 @@ class EventMarkerDirective extends ComplexBase {
350
411
  super();
351
412
  this.viewContainerRef = viewContainerRef;
352
413
  setValue('currentInstance', this, this.viewContainerRef);
353
- this.registerEvents(outputs$5);
354
- this.directivePropList = input$5;
414
+ this.registerEvents(outputs$6);
415
+ this.directivePropList = input$6;
355
416
  }
356
417
  }
357
418
  EventMarkerDirective.decorators = [
358
419
  { type: Directive, args: [{
359
420
  selector: 'ejs-gantt>e-event-markers>e-event-marker',
360
- inputs: input$5,
361
- outputs: outputs$5,
421
+ inputs: input$6,
422
+ outputs: outputs$6,
362
423
  queries: {}
363
424
  },] },
364
425
  ];
@@ -398,8 +459,8 @@ var __decorate$1 = (this && this.__decorate) || function (decorators, target, ke
398
459
  var __metadata$1 = (this && this.__metadata) || function (k, v) {
399
460
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
400
461
  };
401
- const inputs = ['UpdateOffsetOnTaskbarEdit', 'addDialogFields', 'allowExcelExport', 'allowFiltering', 'allowKeyboard', 'allowParentDependency', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTaskbarDragAndDrop', 'allowTaskbarOverlap', 'allowUnscheduledTasks', 'autoCalculateDateScheduling', 'autoFocusTasks', 'baselineColor', 'collapseAllParentTasks', 'columnMenuItems', 'columns', 'connectorLineBackground', 'connectorLineWidth', 'contextMenuItems', 'dataSource', 'dateFormat', 'dayWorkingTime', 'disableHtmlEncode', 'durationUnit', 'editDialogFields', 'editSettings', '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'];
402
- const 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'];
462
+ const inputs = ['UpdateOffsetOnTaskbarEdit', 'addDialogFields', 'allowExcelExport', 'allowFiltering', 'allowKeyboard', 'allowParentDependency', 'allowPdfExport', 'allowReordering', 'allowResizing', 'allowRowDragAndDrop', 'allowSelection', 'allowSorting', 'allowTaskbarDragAndDrop', 'allowTaskbarOverlap', 'allowUnscheduledTasks', 'autoCalculateDateScheduling', 'autoFocusTasks', 'baselineColor', 'collapseAllParentTasks', 'columnMenuItems', 'columns', 'connectorLineBackground', 'connectorLineWidth', 'contextMenuItems', 'dataSource', 'dateFormat', 'dayWorkingTime', 'disableHtmlEncode', 'durationUnit', 'editDialogFields', 'editSettings', 'enableAdaptiveUI', 'enableContextMenu', 'enableCriticalPath', 'enableHtmlSanitizer', 'enableImmutableMode', 'enableMultiTaskbar', 'enablePersistence', 'enablePredecessorValidation', 'enableRtl', 'enableTimelineVirtualization', 'enableUndoRedo', 'enableVirtualMaskRow', 'enableVirtualization', 'eventMarkers', 'filterSettings', 'gridLines', 'height', 'highlightWeekends', 'holidays', 'includeWeekend', 'labelSettings', 'loadChildOnDemand', 'loadingIndicator', 'locale', 'milestoneTemplate', 'parentTaskbarTemplate', 'projectEndDate', 'projectStartDate', 'query', 'readOnly', 'renderBaseline', 'resourceFields', 'resourceIDMapping', 'resourceNameMapping', 'resources', 'rowHeight', 'searchSettings', 'segmentData', 'selectedRowIndex', 'selectionSettings', 'showColumnMenu', 'showInlineNotes', 'showOverAllocation', 'sortSettings', 'splitterSettings', 'taskFields', 'taskMode', 'taskType', 'taskbarHeight', 'taskbarTemplate', 'timelineSettings', 'timelineTemplate', 'timezone', 'toolbar', 'tooltipSettings', 'treeColumnIndex', 'undoRedoActions', 'undoRedoStepsCount', 'updateOffsetOnTaskbarEdit', 'validateManualTasksOnLinking', 'viewType', 'weekWorkingTime', 'width', 'workUnit', 'workWeek', 'zoomingLevels'];
463
+ const outputs$7 = ['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'];
403
464
  const twoWays = ['dataSource'];
404
465
  /**
405
466
  * `ejs-gantt` represents the Angular Gantt Component.
@@ -420,7 +481,7 @@ let GanttComponent = class GanttComponent extends Gantt {
420
481
  this.srenderer = srenderer;
421
482
  this.viewContainerRef = viewContainerRef;
422
483
  this.injector = injector;
423
- this.tags = ['columns', 'addDialogFields', 'editDialogFields', 'dayWorkingTime', 'holidays', 'eventMarkers'];
484
+ this.tags = ['columns', 'addDialogFields', 'editDialogFields', 'dayWorkingTime', 'weekWorkingTime', 'holidays', 'eventMarkers'];
424
485
  this.element = this.ngEle.nativeElement;
425
486
  this.injectedModules = this.injectedModules || [];
426
487
  try {
@@ -535,7 +596,7 @@ let GanttComponent = class GanttComponent extends Gantt {
535
596
  }
536
597
  }
537
598
  catch (_r) { }
538
- this.registerEvents(outputs$6);
599
+ this.registerEvents(outputs$7);
539
600
  this.addTwoWay.call(this, twoWays);
540
601
  setValue('currentInstance', this, this.viewContainerRef);
541
602
  this.context = new ComponentBase();
@@ -572,11 +633,14 @@ let GanttComponent = class GanttComponent extends Gantt {
572
633
  if (this.childDayWorkingTime) {
573
634
  this.tagObjects[3].instance = this.childDayWorkingTime;
574
635
  }
636
+ if (this.childWeekWorkingTime) {
637
+ this.tagObjects[4].instance = this.childWeekWorkingTime;
638
+ }
575
639
  if (this.childHolidays) {
576
- this.tagObjects[4].instance = this.childHolidays;
640
+ this.tagObjects[5].instance = this.childHolidays;
577
641
  }
578
642
  if (this.childEventMarkers) {
579
- this.tagObjects[5].instance = this.childEventMarkers;
643
+ this.tagObjects[6].instance = this.childEventMarkers;
580
644
  }
581
645
  this.context.ngAfterContentChecked(this);
582
646
  }
@@ -585,7 +649,7 @@ GanttComponent.decorators = [
585
649
  { type: Component, args: [{
586
650
  selector: 'ejs-gantt',
587
651
  inputs: inputs,
588
- outputs: outputs$6,
652
+ outputs: outputs$7,
589
653
  template: '',
590
654
  changeDetection: ChangeDetectionStrategy.OnPush,
591
655
  queries: {
@@ -593,6 +657,7 @@ GanttComponent.decorators = [
593
657
  childAddDialogFields: new ContentChild(AddDialogFieldsDirective),
594
658
  childEditDialogFields: new ContentChild(EditDialogFieldsDirective),
595
659
  childDayWorkingTime: new ContentChild(DayWorkingTimeCollectionDirective),
660
+ childWeekWorkingTime: new ContentChild(WeekWorkingTimesDirective),
596
661
  childHolidays: new ContentChild(HolidaysDirective),
597
662
  childEventMarkers: new ContentChild(EventMarkersDirective)
598
663
  }
@@ -609,6 +674,7 @@ GanttComponent.ctorParameters = () => [
609
674
  ];
610
675
  GanttComponent.propDecorators = {
611
676
  'parentTaskbarTemplate': [{ type: ContentChild, args: ['parentTaskbarTemplate',] },],
677
+ 'timelineTemplate': [{ type: ContentChild, args: ['timelineTemplate',] },],
612
678
  'milestoneTemplate': [{ type: ContentChild, args: ['milestoneTemplate',] },],
613
679
  'taskbarTemplate': [{ type: ContentChild, args: ['taskbarTemplate',] },],
614
680
  'labelSettings_rightLabel': [{ type: ContentChild, args: ['labelSettingsRightLabel',] },],
@@ -623,6 +689,10 @@ __decorate$1([
623
689
  Template(),
624
690
  __metadata$1("design:type", Object)
625
691
  ], GanttComponent.prototype, "parentTaskbarTemplate", void 0);
692
+ __decorate$1([
693
+ Template(),
694
+ __metadata$1("design:type", Object)
695
+ ], GanttComponent.prototype, "timelineTemplate", void 0);
626
696
  __decorate$1([
627
697
  Template(),
628
698
  __metadata$1("design:type", Object)
@@ -685,6 +755,8 @@ GanttModule.decorators = [
685
755
  EditDialogFieldsDirective,
686
756
  DayWorkingTimeDirective,
687
757
  DayWorkingTimeCollectionDirective,
758
+ WeekWorkingTimeDirective,
759
+ WeekWorkingTimesDirective,
688
760
  HolidayDirective,
689
761
  HolidaysDirective,
690
762
  EventMarkerDirective,
@@ -700,6 +772,8 @@ GanttModule.decorators = [
700
772
  EditDialogFieldsDirective,
701
773
  DayWorkingTimeDirective,
702
774
  DayWorkingTimeCollectionDirective,
775
+ WeekWorkingTimeDirective,
776
+ WeekWorkingTimesDirective,
703
777
  HolidayDirective,
704
778
  HolidaysDirective,
705
779
  EventMarkerDirective,
@@ -768,6 +842,6 @@ GanttAllModule.ctorParameters = () => [];
768
842
  * Generated bundle index. Do not edit.
769
843
  */
770
844
 
771
- export { ColumnDirective, ColumnsDirective, AddDialogFieldDirective, AddDialogFieldsDirective, EditDialogFieldDirective, EditDialogFieldsDirective, DayWorkingTimeDirective, DayWorkingTimeCollectionDirective, HolidayDirective, HolidaysDirective, EventMarkerDirective, EventMarkersDirective, GanttComponent, GanttModule, GanttAllModule, FilterService, SelectionService, SortService, ReorderService, ResizeService, EditService, DayMarkersService, ToolbarService, ContextMenuService, ExcelExportService, RowDDService, ColumnMenuService, PdfExportService, VirtualScrollService, CriticalPathService, UndoRedoService, inputs as ɵa, outputs$6 as ɵb };
772
- export { Gantt, PdfHorizontalOverflowType, parentsUntil, isScheduledTask, isCountRequired, getSwapKey, isRemoteData, getTaskData, updateDates, formatString, getIndex, pixelToPoint, pointToPixel, getUid, load, rowDataBound, queryCellInfo, toolbarClick, keyPressed, Edit, Reorder, Resize, Filter, Sort, Dependency, Selection, Toolbar, DayMarkers, CriticalPath, UndoRedo, ContextMenu, ExcelExport, ColumnMenu, RowDD, PdfExport, VirtualScroll, Column, DayWorkingTime, AddDialogFieldSettings, EditDialogFieldSettings, EditSettings, EventMarker, FilterSettings, SearchSettings, Holiday, LabelSettings, SelectionSettings, SplitterSettings, TaskFields, TimelineTierSettings, TimelineSettings, TooltipSettings, SortDescriptor, SortSettings, ResourceFields, LoadingIndicator, TemporaryDictionary, PdfBorders, PdfPaddings, PdfTreeGridStyleBase, PdfTreeGridStyle, PdfGanttTheme, PdfTreeGridLayouter, PdfTreeGridLayoutResult, PdfTreeGridLayoutFormat, PdfTreeGridCell, PdfTreeGridCellCollection, PdfTreeGridRow, PdfTreeGridRowCollection, PdfTreeGridHeaderCollection, PdfTreeGridColumn, PdfTreeGridColumnCollection } from '@syncfusion/ej2-gantt';
845
+ export { ColumnDirective, ColumnsDirective, AddDialogFieldDirective, AddDialogFieldsDirective, EditDialogFieldDirective, EditDialogFieldsDirective, DayWorkingTimeDirective, DayWorkingTimeCollectionDirective, WeekWorkingTimeDirective, WeekWorkingTimesDirective, HolidayDirective, HolidaysDirective, EventMarkerDirective, EventMarkersDirective, GanttComponent, GanttModule, GanttAllModule, FilterService, SelectionService, SortService, ReorderService, ResizeService, EditService, DayMarkersService, ToolbarService, ContextMenuService, ExcelExportService, RowDDService, ColumnMenuService, PdfExportService, VirtualScrollService, CriticalPathService, UndoRedoService, inputs as ɵa, outputs$7 as ɵb };
846
+ export { Gantt, PdfHorizontalOverflowType, parentsUntil, isScheduledTask, isCountRequired, getSwapKey, isRemoteData, getTaskData, updateDates, formatString, getIndex, pixelToPoint, pointToPixel, getUid, load, rowDataBound, queryCellInfo, toolbarClick, keyPressed, Edit, Reorder, Resize, Filter, Sort, Dependency, Selection, Toolbar, DayMarkers, CriticalPath, UndoRedo, ContextMenu, ExcelExport, ColumnMenu, RowDD, PdfExport, VirtualScroll, Column, DayWorkingTime, AddDialogFieldSettings, EditDialogFieldSettings, EditSettings, EventMarker, FilterSettings, SearchSettings, Holiday, LabelSettings, SelectionSettings, SplitterSettings, TaskFields, TimelineTierSettings, TimelineSettings, TooltipSettings, SortDescriptor, SortSettings, ResourceFields, LoadingIndicator, WeekWorkingTime, TemporaryDictionary, PdfBorders, PdfPaddings, PdfTreeGridStyleBase, PdfTreeGridStyle, PdfGanttTheme, PdfTreeGridLayouter, PdfTreeGridLayoutResult, PdfTreeGridLayoutFormat, PdfTreeGridCell, PdfTreeGridCellCollection, PdfTreeGridRow, PdfTreeGridRowCollection, PdfTreeGridHeaderCollection, PdfTreeGridColumn, PdfTreeGridColumnCollection } from '@syncfusion/ej2-gantt';
773
847
  //# sourceMappingURL=ej2-angular-gantt.js.map