@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.
- package/@syncfusion/ej2-angular-gantt.es5.js +98 -20
- package/@syncfusion/ej2-angular-gantt.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-gantt.js +94 -20
- package/@syncfusion/ej2-angular-gantt.js.map +1 -1
- package/dist/ej2-angular-gantt.umd.js +101 -20
- package/dist/ej2-angular-gantt.umd.js.map +1 -1
- package/dist/ej2-angular-gantt.umd.min.js +2 -2
- package/dist/ej2-angular-gantt.umd.min.js.map +1 -1
- package/ej2-angular-gantt.metadata.json +1 -1
- package/package.json +9 -9
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/gantt/gantt.component.d.ts +8 -0
- package/src/gantt/weekworkingtime.directive.d.ts +38 -0
- package/src/index.d.ts +1 -0
- package/styles/bootstrap-dark.css +2188 -1
- package/styles/bootstrap.css +2318 -1
- package/styles/bootstrap4.css +2531 -1
- package/styles/bootstrap5-dark.css +2213 -1
- package/styles/bootstrap5.css +2213 -1
- package/styles/fabric-dark.css +2133 -1
- package/styles/fabric.css +2121 -1
- package/styles/fluent-dark.css +2209 -1
- package/styles/fluent.css +2209 -1
- package/styles/fluent2.css +3458 -0
- package/styles/fluent2.scss +1 -0
- package/styles/gantt/bootstrap-dark.css +2188 -1
- package/styles/gantt/bootstrap.css +2318 -1
- package/styles/gantt/bootstrap4.css +2531 -1
- package/styles/gantt/bootstrap5-dark.css +2213 -1
- package/styles/gantt/bootstrap5.css +2213 -1
- package/styles/gantt/fabric-dark.css +2133 -1
- package/styles/gantt/fabric.css +2121 -1
- package/styles/gantt/fluent-dark.css +2209 -1
- package/styles/gantt/fluent.css +2209 -1
- package/styles/gantt/fluent2.css +3458 -0
- package/styles/gantt/fluent2.scss +1 -0
- package/styles/gantt/highcontrast-light.css +2092 -1
- package/styles/gantt/highcontrast.css +2219 -1
- package/styles/gantt/material-dark.css +2240 -1
- package/styles/gantt/material.css +2292 -1
- package/styles/gantt/material3-dark.css +2367 -1
- package/styles/gantt/material3.css +2479 -1
- package/styles/gantt/tailwind-dark.css +2218 -1
- package/styles/gantt/tailwind.css +2218 -1
- package/styles/highcontrast-light.css +2092 -1
- package/styles/highcontrast.css +2219 -1
- package/styles/material-dark.css +2240 -1
- package/styles/material.css +2292 -1
- package/styles/material3-dark.css +2367 -1
- package/styles/material3.css +2479 -1
- package/styles/tailwind-dark.css +2218 -1
- package/styles/tailwind.css +2218 -1
- package/CHANGELOG.md +0 -2396
- package/postinstall/tagchange.js +0 -18
|
@@ -298,8 +298,73 @@ DayWorkingTimeCollectionDirective.decorators = [
|
|
|
298
298
|
* @nocollapse
|
|
299
299
|
*/
|
|
300
300
|
DayWorkingTimeCollectionDirective.ctorParameters = function () { return []; };
|
|
301
|
-
var input$4 = ['
|
|
301
|
+
var input$4 = ['dayOfWeek', 'timeRange'];
|
|
302
302
|
var outputs$4 = [];
|
|
303
|
+
/**
|
|
304
|
+
* `e-week-working-times` directive represent a working time ranges in a day.
|
|
305
|
+
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
306
|
+
* ```html
|
|
307
|
+
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
308
|
+
* <e-week-working-times>
|
|
309
|
+
* <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
|
|
310
|
+
* <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
|
|
311
|
+
* </e-week-working-times>
|
|
312
|
+
* </ejs-gantt>
|
|
313
|
+
* ```
|
|
314
|
+
*/
|
|
315
|
+
var WeekWorkingTimeDirective = /** @class */ (function (_super) {
|
|
316
|
+
__extends(WeekWorkingTimeDirective, _super);
|
|
317
|
+
/**
|
|
318
|
+
* @param {?} viewContainerRef
|
|
319
|
+
*/
|
|
320
|
+
function WeekWorkingTimeDirective(viewContainerRef) {
|
|
321
|
+
var _this = _super.call(this) || this;
|
|
322
|
+
_this.viewContainerRef = viewContainerRef;
|
|
323
|
+
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
324
|
+
_this.registerEvents(outputs$4);
|
|
325
|
+
_this.directivePropList = input$4;
|
|
326
|
+
return _this;
|
|
327
|
+
}
|
|
328
|
+
return WeekWorkingTimeDirective;
|
|
329
|
+
}(ComplexBase));
|
|
330
|
+
WeekWorkingTimeDirective.decorators = [
|
|
331
|
+
{ type: Directive, args: [{
|
|
332
|
+
selector: 'ejs-gantt>e-week-working-times>e-week-working-time',
|
|
333
|
+
inputs: input$4,
|
|
334
|
+
outputs: outputs$4,
|
|
335
|
+
queries: {}
|
|
336
|
+
},] },
|
|
337
|
+
];
|
|
338
|
+
/**
|
|
339
|
+
* @nocollapse
|
|
340
|
+
*/
|
|
341
|
+
WeekWorkingTimeDirective.ctorParameters = function () { return [
|
|
342
|
+
{ type: ViewContainerRef, },
|
|
343
|
+
]; };
|
|
344
|
+
/**
|
|
345
|
+
* WeekWorkingTime Array Directive
|
|
346
|
+
*/
|
|
347
|
+
var WeekWorkingTimesDirective = /** @class */ (function (_super) {
|
|
348
|
+
__extends(WeekWorkingTimesDirective, _super);
|
|
349
|
+
function WeekWorkingTimesDirective() {
|
|
350
|
+
return _super.call(this, 'weekworkingtime') || this;
|
|
351
|
+
}
|
|
352
|
+
return WeekWorkingTimesDirective;
|
|
353
|
+
}(ArrayBase));
|
|
354
|
+
WeekWorkingTimesDirective.decorators = [
|
|
355
|
+
{ type: Directive, args: [{
|
|
356
|
+
selector: 'ejs-gantt>e-week-working-times',
|
|
357
|
+
queries: {
|
|
358
|
+
children: new ContentChildren(WeekWorkingTimeDirective)
|
|
359
|
+
},
|
|
360
|
+
},] },
|
|
361
|
+
];
|
|
362
|
+
/**
|
|
363
|
+
* @nocollapse
|
|
364
|
+
*/
|
|
365
|
+
WeekWorkingTimesDirective.ctorParameters = function () { return []; };
|
|
366
|
+
var input$5 = ['cssClass', 'from', 'label', 'to'];
|
|
367
|
+
var outputs$5 = [];
|
|
303
368
|
/**
|
|
304
369
|
* `e-holidays` directive represent a holidays collection in Gantt.
|
|
305
370
|
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
@@ -321,8 +386,8 @@ var HolidayDirective = /** @class */ (function (_super) {
|
|
|
321
386
|
var _this = _super.call(this) || this;
|
|
322
387
|
_this.viewContainerRef = viewContainerRef;
|
|
323
388
|
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
324
|
-
_this.registerEvents(outputs$
|
|
325
|
-
_this.directivePropList = input$
|
|
389
|
+
_this.registerEvents(outputs$5);
|
|
390
|
+
_this.directivePropList = input$5;
|
|
326
391
|
return _this;
|
|
327
392
|
}
|
|
328
393
|
return HolidayDirective;
|
|
@@ -330,8 +395,8 @@ var HolidayDirective = /** @class */ (function (_super) {
|
|
|
330
395
|
HolidayDirective.decorators = [
|
|
331
396
|
{ type: Directive, args: [{
|
|
332
397
|
selector: 'ejs-gantt>e-holidays>e-holidays',
|
|
333
|
-
inputs: input$
|
|
334
|
-
outputs: outputs$
|
|
398
|
+
inputs: input$5,
|
|
399
|
+
outputs: outputs$5,
|
|
335
400
|
queries: {}
|
|
336
401
|
},] },
|
|
337
402
|
];
|
|
@@ -363,8 +428,8 @@ HolidaysDirective.decorators = [
|
|
|
363
428
|
* @nocollapse
|
|
364
429
|
*/
|
|
365
430
|
HolidaysDirective.ctorParameters = function () { return []; };
|
|
366
|
-
var input$
|
|
367
|
-
var outputs$
|
|
431
|
+
var input$6 = ['cssClass', 'day', 'label'];
|
|
432
|
+
var outputs$6 = [];
|
|
368
433
|
/**
|
|
369
434
|
* `e-event-markers` directive represent a event marker collection in Gantt.
|
|
370
435
|
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
@@ -385,8 +450,8 @@ var EventMarkerDirective = /** @class */ (function (_super) {
|
|
|
385
450
|
var _this = _super.call(this) || this;
|
|
386
451
|
_this.viewContainerRef = viewContainerRef;
|
|
387
452
|
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
388
|
-
_this.registerEvents(outputs$
|
|
389
|
-
_this.directivePropList = input$
|
|
453
|
+
_this.registerEvents(outputs$6);
|
|
454
|
+
_this.directivePropList = input$6;
|
|
390
455
|
return _this;
|
|
391
456
|
}
|
|
392
457
|
return EventMarkerDirective;
|
|
@@ -394,8 +459,8 @@ var EventMarkerDirective = /** @class */ (function (_super) {
|
|
|
394
459
|
EventMarkerDirective.decorators = [
|
|
395
460
|
{ type: Directive, args: [{
|
|
396
461
|
selector: 'ejs-gantt>e-event-markers>e-event-marker',
|
|
397
|
-
inputs: input$
|
|
398
|
-
outputs: outputs$
|
|
462
|
+
inputs: input$6,
|
|
463
|
+
outputs: outputs$6,
|
|
399
464
|
queries: {}
|
|
400
465
|
},] },
|
|
401
466
|
];
|
|
@@ -441,8 +506,8 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
|
441
506
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
442
507
|
return Reflect.metadata(k, v);
|
|
443
508
|
};
|
|
444
|
-
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'];
|
|
445
|
-
var outputs$
|
|
509
|
+
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', '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'];
|
|
510
|
+
var 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'];
|
|
446
511
|
var twoWays = ['dataSource'];
|
|
447
512
|
/**
|
|
448
513
|
* `ejs-gantt` represents the Angular Gantt Component.
|
|
@@ -464,7 +529,7 @@ var GanttComponent = /** @class */ (function (_super) {
|
|
|
464
529
|
_this.srenderer = srenderer;
|
|
465
530
|
_this.viewContainerRef = viewContainerRef;
|
|
466
531
|
_this.injector = injector;
|
|
467
|
-
_this.tags = ['columns', 'addDialogFields', 'editDialogFields', 'dayWorkingTime', 'holidays', 'eventMarkers'];
|
|
532
|
+
_this.tags = ['columns', 'addDialogFields', 'editDialogFields', 'dayWorkingTime', 'weekWorkingTime', 'holidays', 'eventMarkers'];
|
|
468
533
|
_this.element = _this.ngEle.nativeElement;
|
|
469
534
|
_this.injectedModules = _this.injectedModules || [];
|
|
470
535
|
try {
|
|
@@ -579,7 +644,7 @@ var GanttComponent = /** @class */ (function (_super) {
|
|
|
579
644
|
}
|
|
580
645
|
}
|
|
581
646
|
catch (_r) { }
|
|
582
|
-
_this.registerEvents(outputs$
|
|
647
|
+
_this.registerEvents(outputs$7);
|
|
583
648
|
_this.addTwoWay.call(_this, twoWays);
|
|
584
649
|
setValue('currentInstance', _this, _this.viewContainerRef);
|
|
585
650
|
_this.context = new ComponentBase();
|
|
@@ -617,11 +682,14 @@ var GanttComponent = /** @class */ (function (_super) {
|
|
|
617
682
|
if (this.childDayWorkingTime) {
|
|
618
683
|
this.tagObjects[3].instance = this.childDayWorkingTime;
|
|
619
684
|
}
|
|
685
|
+
if (this.childWeekWorkingTime) {
|
|
686
|
+
this.tagObjects[4].instance = this.childWeekWorkingTime;
|
|
687
|
+
}
|
|
620
688
|
if (this.childHolidays) {
|
|
621
|
-
this.tagObjects[
|
|
689
|
+
this.tagObjects[5].instance = this.childHolidays;
|
|
622
690
|
}
|
|
623
691
|
if (this.childEventMarkers) {
|
|
624
|
-
this.tagObjects[
|
|
692
|
+
this.tagObjects[6].instance = this.childEventMarkers;
|
|
625
693
|
}
|
|
626
694
|
this.context.ngAfterContentChecked(this);
|
|
627
695
|
};
|
|
@@ -631,7 +699,7 @@ GanttComponent.decorators = [
|
|
|
631
699
|
{ type: Component, args: [{
|
|
632
700
|
selector: 'ejs-gantt',
|
|
633
701
|
inputs: inputs,
|
|
634
|
-
outputs: outputs$
|
|
702
|
+
outputs: outputs$7,
|
|
635
703
|
template: '',
|
|
636
704
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
637
705
|
queries: {
|
|
@@ -639,6 +707,7 @@ GanttComponent.decorators = [
|
|
|
639
707
|
childAddDialogFields: new ContentChild(AddDialogFieldsDirective),
|
|
640
708
|
childEditDialogFields: new ContentChild(EditDialogFieldsDirective),
|
|
641
709
|
childDayWorkingTime: new ContentChild(DayWorkingTimeCollectionDirective),
|
|
710
|
+
childWeekWorkingTime: new ContentChild(WeekWorkingTimesDirective),
|
|
642
711
|
childHolidays: new ContentChild(HolidaysDirective),
|
|
643
712
|
childEventMarkers: new ContentChild(EventMarkersDirective)
|
|
644
713
|
}
|
|
@@ -655,6 +724,7 @@ GanttComponent.ctorParameters = function () { return [
|
|
|
655
724
|
]; };
|
|
656
725
|
GanttComponent.propDecorators = {
|
|
657
726
|
'parentTaskbarTemplate': [{ type: ContentChild, args: ['parentTaskbarTemplate',] },],
|
|
727
|
+
'timelineTemplate': [{ type: ContentChild, args: ['timelineTemplate',] },],
|
|
658
728
|
'milestoneTemplate': [{ type: ContentChild, args: ['milestoneTemplate',] },],
|
|
659
729
|
'taskbarTemplate': [{ type: ContentChild, args: ['taskbarTemplate',] },],
|
|
660
730
|
'labelSettings_rightLabel': [{ type: ContentChild, args: ['labelSettingsRightLabel',] },],
|
|
@@ -669,6 +739,10 @@ __decorate$1([
|
|
|
669
739
|
Template(),
|
|
670
740
|
__metadata$1("design:type", Object)
|
|
671
741
|
], GanttComponent.prototype, "parentTaskbarTemplate", void 0);
|
|
742
|
+
__decorate$1([
|
|
743
|
+
Template(),
|
|
744
|
+
__metadata$1("design:type", Object)
|
|
745
|
+
], GanttComponent.prototype, "timelineTemplate", void 0);
|
|
672
746
|
__decorate$1([
|
|
673
747
|
Template(),
|
|
674
748
|
__metadata$1("design:type", Object)
|
|
@@ -733,6 +807,8 @@ GanttModule.decorators = [
|
|
|
733
807
|
EditDialogFieldsDirective,
|
|
734
808
|
DayWorkingTimeDirective,
|
|
735
809
|
DayWorkingTimeCollectionDirective,
|
|
810
|
+
WeekWorkingTimeDirective,
|
|
811
|
+
WeekWorkingTimesDirective,
|
|
736
812
|
HolidayDirective,
|
|
737
813
|
HolidaysDirective,
|
|
738
814
|
EventMarkerDirective,
|
|
@@ -748,6 +824,8 @@ GanttModule.decorators = [
|
|
|
748
824
|
EditDialogFieldsDirective,
|
|
749
825
|
DayWorkingTimeDirective,
|
|
750
826
|
DayWorkingTimeCollectionDirective,
|
|
827
|
+
WeekWorkingTimeDirective,
|
|
828
|
+
WeekWorkingTimesDirective,
|
|
751
829
|
HolidayDirective,
|
|
752
830
|
HolidaysDirective,
|
|
753
831
|
EventMarkerDirective,
|
|
@@ -816,6 +894,6 @@ GanttAllModule.ctorParameters = function () { return []; };
|
|
|
816
894
|
/**
|
|
817
895
|
* Generated bundle index. Do not edit.
|
|
818
896
|
*/
|
|
819
|
-
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$
|
|
820
|
-
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';
|
|
897
|
+
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 };
|
|
898
|
+
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';
|
|
821
899
|
//# sourceMappingURL=ej2-angular-gantt.es5.js.map
|