@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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-gantt.umd.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 26.1.35
|
|
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
|
|
@@ -309,8 +309,73 @@ DayWorkingTimeCollectionDirective.decorators = [
|
|
|
309
309
|
* @nocollapse
|
|
310
310
|
*/
|
|
311
311
|
DayWorkingTimeCollectionDirective.ctorParameters = function () { return []; };
|
|
312
|
-
var input$4 = ['
|
|
312
|
+
var input$4 = ['dayOfWeek', 'timeRange'];
|
|
313
313
|
var outputs$4 = [];
|
|
314
|
+
/**
|
|
315
|
+
* `e-week-working-times` directive represent a working time ranges in a day.
|
|
316
|
+
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
317
|
+
* ```html
|
|
318
|
+
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
319
|
+
* <e-week-working-times>
|
|
320
|
+
* <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
|
|
321
|
+
* <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
|
|
322
|
+
* </e-week-working-times>
|
|
323
|
+
* </ejs-gantt>
|
|
324
|
+
* ```
|
|
325
|
+
*/
|
|
326
|
+
var WeekWorkingTimeDirective = /** @class */ (function (_super) {
|
|
327
|
+
__extends(WeekWorkingTimeDirective, _super);
|
|
328
|
+
/**
|
|
329
|
+
* @param {?} viewContainerRef
|
|
330
|
+
*/
|
|
331
|
+
function WeekWorkingTimeDirective(viewContainerRef) {
|
|
332
|
+
var _this = _super.call(this) || this;
|
|
333
|
+
_this.viewContainerRef = viewContainerRef;
|
|
334
|
+
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
335
|
+
_this.registerEvents(outputs$4);
|
|
336
|
+
_this.directivePropList = input$4;
|
|
337
|
+
return _this;
|
|
338
|
+
}
|
|
339
|
+
return WeekWorkingTimeDirective;
|
|
340
|
+
}(ej2AngularBase.ComplexBase));
|
|
341
|
+
WeekWorkingTimeDirective.decorators = [
|
|
342
|
+
{ type: core.Directive, args: [{
|
|
343
|
+
selector: 'ejs-gantt>e-week-working-times>e-week-working-time',
|
|
344
|
+
inputs: input$4,
|
|
345
|
+
outputs: outputs$4,
|
|
346
|
+
queries: {}
|
|
347
|
+
},] },
|
|
348
|
+
];
|
|
349
|
+
/**
|
|
350
|
+
* @nocollapse
|
|
351
|
+
*/
|
|
352
|
+
WeekWorkingTimeDirective.ctorParameters = function () { return [
|
|
353
|
+
{ type: core.ViewContainerRef, },
|
|
354
|
+
]; };
|
|
355
|
+
/**
|
|
356
|
+
* WeekWorkingTime Array Directive
|
|
357
|
+
*/
|
|
358
|
+
var WeekWorkingTimesDirective = /** @class */ (function (_super) {
|
|
359
|
+
__extends(WeekWorkingTimesDirective, _super);
|
|
360
|
+
function WeekWorkingTimesDirective() {
|
|
361
|
+
return _super.call(this, 'weekworkingtime') || this;
|
|
362
|
+
}
|
|
363
|
+
return WeekWorkingTimesDirective;
|
|
364
|
+
}(ej2AngularBase.ArrayBase));
|
|
365
|
+
WeekWorkingTimesDirective.decorators = [
|
|
366
|
+
{ type: core.Directive, args: [{
|
|
367
|
+
selector: 'ejs-gantt>e-week-working-times',
|
|
368
|
+
queries: {
|
|
369
|
+
children: new core.ContentChildren(WeekWorkingTimeDirective)
|
|
370
|
+
},
|
|
371
|
+
},] },
|
|
372
|
+
];
|
|
373
|
+
/**
|
|
374
|
+
* @nocollapse
|
|
375
|
+
*/
|
|
376
|
+
WeekWorkingTimesDirective.ctorParameters = function () { return []; };
|
|
377
|
+
var input$5 = ['cssClass', 'from', 'label', 'to'];
|
|
378
|
+
var outputs$5 = [];
|
|
314
379
|
/**
|
|
315
380
|
* `e-holidays` directive represent a holidays collection in Gantt.
|
|
316
381
|
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
@@ -332,8 +397,8 @@ var HolidayDirective = /** @class */ (function (_super) {
|
|
|
332
397
|
var _this = _super.call(this) || this;
|
|
333
398
|
_this.viewContainerRef = viewContainerRef;
|
|
334
399
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
335
|
-
_this.registerEvents(outputs$
|
|
336
|
-
_this.directivePropList = input$
|
|
400
|
+
_this.registerEvents(outputs$5);
|
|
401
|
+
_this.directivePropList = input$5;
|
|
337
402
|
return _this;
|
|
338
403
|
}
|
|
339
404
|
return HolidayDirective;
|
|
@@ -341,8 +406,8 @@ var HolidayDirective = /** @class */ (function (_super) {
|
|
|
341
406
|
HolidayDirective.decorators = [
|
|
342
407
|
{ type: core.Directive, args: [{
|
|
343
408
|
selector: 'ejs-gantt>e-holidays>e-holidays',
|
|
344
|
-
inputs: input$
|
|
345
|
-
outputs: outputs$
|
|
409
|
+
inputs: input$5,
|
|
410
|
+
outputs: outputs$5,
|
|
346
411
|
queries: {}
|
|
347
412
|
},] },
|
|
348
413
|
];
|
|
@@ -374,8 +439,8 @@ HolidaysDirective.decorators = [
|
|
|
374
439
|
* @nocollapse
|
|
375
440
|
*/
|
|
376
441
|
HolidaysDirective.ctorParameters = function () { return []; };
|
|
377
|
-
var input$
|
|
378
|
-
var outputs$
|
|
442
|
+
var input$6 = ['cssClass', 'day', 'label'];
|
|
443
|
+
var outputs$6 = [];
|
|
379
444
|
/**
|
|
380
445
|
* `e-event-markers` directive represent a event marker collection in Gantt.
|
|
381
446
|
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
@@ -396,8 +461,8 @@ var EventMarkerDirective = /** @class */ (function (_super) {
|
|
|
396
461
|
var _this = _super.call(this) || this;
|
|
397
462
|
_this.viewContainerRef = viewContainerRef;
|
|
398
463
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
399
|
-
_this.registerEvents(outputs$
|
|
400
|
-
_this.directivePropList = input$
|
|
464
|
+
_this.registerEvents(outputs$6);
|
|
465
|
+
_this.directivePropList = input$6;
|
|
401
466
|
return _this;
|
|
402
467
|
}
|
|
403
468
|
return EventMarkerDirective;
|
|
@@ -405,8 +470,8 @@ var EventMarkerDirective = /** @class */ (function (_super) {
|
|
|
405
470
|
EventMarkerDirective.decorators = [
|
|
406
471
|
{ type: core.Directive, args: [{
|
|
407
472
|
selector: 'ejs-gantt>e-event-markers>e-event-marker',
|
|
408
|
-
inputs: input$
|
|
409
|
-
outputs: outputs$
|
|
473
|
+
inputs: input$6,
|
|
474
|
+
outputs: outputs$6,
|
|
410
475
|
queries: {}
|
|
411
476
|
},] },
|
|
412
477
|
];
|
|
@@ -452,8 +517,8 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
|
452
517
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
|
|
453
518
|
return Reflect.metadata(k, v);
|
|
454
519
|
};
|
|
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'];
|
|
456
|
-
var outputs$
|
|
520
|
+
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'];
|
|
521
|
+
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'];
|
|
457
522
|
var twoWays = ['dataSource'];
|
|
458
523
|
/**
|
|
459
524
|
* `ejs-gantt` represents the Angular Gantt Component.
|
|
@@ -475,7 +540,7 @@ exports.GanttComponent = /** @class */ (function (_super) {
|
|
|
475
540
|
_this.srenderer = srenderer;
|
|
476
541
|
_this.viewContainerRef = viewContainerRef;
|
|
477
542
|
_this.injector = injector;
|
|
478
|
-
_this.tags = ['columns', 'addDialogFields', 'editDialogFields', 'dayWorkingTime', 'holidays', 'eventMarkers'];
|
|
543
|
+
_this.tags = ['columns', 'addDialogFields', 'editDialogFields', 'dayWorkingTime', 'weekWorkingTime', 'holidays', 'eventMarkers'];
|
|
479
544
|
_this.element = _this.ngEle.nativeElement;
|
|
480
545
|
_this.injectedModules = _this.injectedModules || [];
|
|
481
546
|
try {
|
|
@@ -590,7 +655,7 @@ exports.GanttComponent = /** @class */ (function (_super) {
|
|
|
590
655
|
}
|
|
591
656
|
}
|
|
592
657
|
catch (_r) { }
|
|
593
|
-
_this.registerEvents(outputs$
|
|
658
|
+
_this.registerEvents(outputs$7);
|
|
594
659
|
_this.addTwoWay.call(_this, twoWays);
|
|
595
660
|
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
|
|
596
661
|
_this.context = new ej2AngularBase.ComponentBase();
|
|
@@ -628,11 +693,14 @@ exports.GanttComponent = /** @class */ (function (_super) {
|
|
|
628
693
|
if (this.childDayWorkingTime) {
|
|
629
694
|
this.tagObjects[3].instance = this.childDayWorkingTime;
|
|
630
695
|
}
|
|
696
|
+
if (this.childWeekWorkingTime) {
|
|
697
|
+
this.tagObjects[4].instance = this.childWeekWorkingTime;
|
|
698
|
+
}
|
|
631
699
|
if (this.childHolidays) {
|
|
632
|
-
this.tagObjects[
|
|
700
|
+
this.tagObjects[5].instance = this.childHolidays;
|
|
633
701
|
}
|
|
634
702
|
if (this.childEventMarkers) {
|
|
635
|
-
this.tagObjects[
|
|
703
|
+
this.tagObjects[6].instance = this.childEventMarkers;
|
|
636
704
|
}
|
|
637
705
|
this.context.ngAfterContentChecked(this);
|
|
638
706
|
};
|
|
@@ -642,7 +710,7 @@ exports.GanttComponent.decorators = [
|
|
|
642
710
|
{ type: core.Component, args: [{
|
|
643
711
|
selector: 'ejs-gantt',
|
|
644
712
|
inputs: inputs,
|
|
645
|
-
outputs: outputs$
|
|
713
|
+
outputs: outputs$7,
|
|
646
714
|
template: '',
|
|
647
715
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
648
716
|
queries: {
|
|
@@ -650,6 +718,7 @@ exports.GanttComponent.decorators = [
|
|
|
650
718
|
childAddDialogFields: new core.ContentChild(AddDialogFieldsDirective),
|
|
651
719
|
childEditDialogFields: new core.ContentChild(EditDialogFieldsDirective),
|
|
652
720
|
childDayWorkingTime: new core.ContentChild(DayWorkingTimeCollectionDirective),
|
|
721
|
+
childWeekWorkingTime: new core.ContentChild(WeekWorkingTimesDirective),
|
|
653
722
|
childHolidays: new core.ContentChild(HolidaysDirective),
|
|
654
723
|
childEventMarkers: new core.ContentChild(EventMarkersDirective)
|
|
655
724
|
}
|
|
@@ -666,6 +735,7 @@ exports.GanttComponent.ctorParameters = function () { return [
|
|
|
666
735
|
]; };
|
|
667
736
|
exports.GanttComponent.propDecorators = {
|
|
668
737
|
'parentTaskbarTemplate': [{ type: core.ContentChild, args: ['parentTaskbarTemplate',] },],
|
|
738
|
+
'timelineTemplate': [{ type: core.ContentChild, args: ['timelineTemplate',] },],
|
|
669
739
|
'milestoneTemplate': [{ type: core.ContentChild, args: ['milestoneTemplate',] },],
|
|
670
740
|
'taskbarTemplate': [{ type: core.ContentChild, args: ['taskbarTemplate',] },],
|
|
671
741
|
'labelSettings_rightLabel': [{ type: core.ContentChild, args: ['labelSettingsRightLabel',] },],
|
|
@@ -680,6 +750,10 @@ __decorate$1([
|
|
|
680
750
|
ej2AngularBase.Template(),
|
|
681
751
|
__metadata$1("design:type", Object)
|
|
682
752
|
], exports.GanttComponent.prototype, "parentTaskbarTemplate", void 0);
|
|
753
|
+
__decorate$1([
|
|
754
|
+
ej2AngularBase.Template(),
|
|
755
|
+
__metadata$1("design:type", Object)
|
|
756
|
+
], exports.GanttComponent.prototype, "timelineTemplate", void 0);
|
|
683
757
|
__decorate$1([
|
|
684
758
|
ej2AngularBase.Template(),
|
|
685
759
|
__metadata$1("design:type", Object)
|
|
@@ -744,6 +818,8 @@ GanttModule.decorators = [
|
|
|
744
818
|
EditDialogFieldsDirective,
|
|
745
819
|
DayWorkingTimeDirective,
|
|
746
820
|
DayWorkingTimeCollectionDirective,
|
|
821
|
+
WeekWorkingTimeDirective,
|
|
822
|
+
WeekWorkingTimesDirective,
|
|
747
823
|
HolidayDirective,
|
|
748
824
|
HolidaysDirective,
|
|
749
825
|
EventMarkerDirective,
|
|
@@ -759,6 +835,8 @@ GanttModule.decorators = [
|
|
|
759
835
|
EditDialogFieldsDirective,
|
|
760
836
|
DayWorkingTimeDirective,
|
|
761
837
|
DayWorkingTimeCollectionDirective,
|
|
838
|
+
WeekWorkingTimeDirective,
|
|
839
|
+
WeekWorkingTimesDirective,
|
|
762
840
|
HolidayDirective,
|
|
763
841
|
HolidaysDirective,
|
|
764
842
|
EventMarkerDirective,
|
|
@@ -833,6 +911,8 @@ exports.EditDialogFieldDirective = EditDialogFieldDirective;
|
|
|
833
911
|
exports.EditDialogFieldsDirective = EditDialogFieldsDirective;
|
|
834
912
|
exports.DayWorkingTimeDirective = DayWorkingTimeDirective;
|
|
835
913
|
exports.DayWorkingTimeCollectionDirective = DayWorkingTimeCollectionDirective;
|
|
914
|
+
exports.WeekWorkingTimeDirective = WeekWorkingTimeDirective;
|
|
915
|
+
exports.WeekWorkingTimesDirective = WeekWorkingTimesDirective;
|
|
836
916
|
exports.HolidayDirective = HolidayDirective;
|
|
837
917
|
exports.HolidaysDirective = HolidaysDirective;
|
|
838
918
|
exports.EventMarkerDirective = EventMarkerDirective;
|
|
@@ -856,7 +936,7 @@ exports.VirtualScrollService = VirtualScrollService;
|
|
|
856
936
|
exports.CriticalPathService = CriticalPathService;
|
|
857
937
|
exports.UndoRedoService = UndoRedoService;
|
|
858
938
|
exports.ɵa = inputs;
|
|
859
|
-
exports.ɵb = outputs$
|
|
939
|
+
exports.ɵb = outputs$7;
|
|
860
940
|
exports.Gantt = ej2Gantt.Gantt;
|
|
861
941
|
exports.PdfHorizontalOverflowType = ej2Gantt.PdfHorizontalOverflowType;
|
|
862
942
|
exports.parentsUntil = ej2Gantt.parentsUntil;
|
|
@@ -913,6 +993,7 @@ exports.SortDescriptor = ej2Gantt.SortDescriptor;
|
|
|
913
993
|
exports.SortSettings = ej2Gantt.SortSettings;
|
|
914
994
|
exports.ResourceFields = ej2Gantt.ResourceFields;
|
|
915
995
|
exports.LoadingIndicator = ej2Gantt.LoadingIndicator;
|
|
996
|
+
exports.WeekWorkingTime = ej2Gantt.WeekWorkingTime;
|
|
916
997
|
exports.TemporaryDictionary = ej2Gantt.TemporaryDictionary;
|
|
917
998
|
exports.PdfBorders = ej2Gantt.PdfBorders;
|
|
918
999
|
exports.PdfPaddings = ej2Gantt.PdfPaddings;
|