@syncfusion/ej2-angular-gantt 30.2.5 → 31.1.17-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 +934 -0
- package/@syncfusion/ej2-angular-gantt.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-gantt.js +882 -0
- package/@syncfusion/ej2-angular-gantt.js.map +1 -0
- package/LICENSE +10 -0
- package/dist/ej2-angular-gantt.umd.js +1055 -0
- package/dist/ej2-angular-gantt.umd.js.map +1 -0
- package/dist/ej2-angular-gantt.umd.min.js +11 -0
- package/dist/ej2-angular-gantt.umd.min.js.map +1 -0
- package/ej2-angular-gantt.d.ts +5 -0
- package/ej2-angular-gantt.metadata.json +1 -0
- package/package.json +10 -23
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/gantt/adddialogfields.directive.d.ts +53 -58
- package/src/gantt/columns.directive.d.ts +209 -214
- package/src/gantt/dayworkingtime.directive.d.ts +36 -41
- package/src/gantt/editdialogfields.directive.d.ts +53 -58
- package/src/gantt/eventmarkers.directive.d.ts +42 -47
- package/src/gantt/gantt-all.module.d.ts +22 -28
- package/src/gantt/gantt.component.d.ts +143 -146
- package/src/gantt/gantt.module.d.ts +5 -18
- package/src/gantt/holidays.directive.d.ts +46 -51
- package/src/gantt/weekworkingtime.directive.d.ts +38 -43
- package/src/index.d.ts +11 -11
- package/CHANGELOG.md +0 -2833
- package/esm2020/public_api.mjs +0 -2
- package/esm2020/src/gantt/adddialogfields.directive.mjs +0 -58
- package/esm2020/src/gantt/columns.directive.mjs +0 -90
- package/esm2020/src/gantt/dayworkingtime.directive.mjs +0 -58
- package/esm2020/src/gantt/editdialogfields.directive.mjs +0 -58
- package/esm2020/src/gantt/eventmarkers.directive.mjs +0 -57
- package/esm2020/src/gantt/gantt-all.module.mjs +0 -74
- package/esm2020/src/gantt/gantt.component.mjs +0 -297
- package/esm2020/src/gantt/gantt.module.mjs +0 -88
- package/esm2020/src/gantt/holidays.directive.mjs +0 -58
- package/esm2020/src/gantt/weekworkingtime.directive.mjs +0 -58
- package/esm2020/src/index.mjs +0 -12
- package/esm2020/syncfusion-ej2-angular-gantt.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs +0 -857
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs +0 -857
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +0 -1
- package/syncfusion-ej2-angular-gantt.d.ts +0 -5
|
@@ -1,47 +1,42 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
*
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
export declare class EventMarkersDirective extends ArrayBase<EventMarkersDirective> {
|
|
44
|
-
constructor();
|
|
45
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EventMarkersDirective, never>;
|
|
46
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EventMarkersDirective, "ejs-gantt>e-event-markers", never, {}, {}, ["children"]>;
|
|
47
|
-
}
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
/**
|
|
4
|
+
* `e-event-markers` directive represent a event marker collection in Gantt.
|
|
5
|
+
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
6
|
+
* ```html
|
|
7
|
+
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
8
|
+
* <e-event-markers>
|
|
9
|
+
* <e-event-marker day='02/10/2018' label='Project Starts'></e-event-marker>
|
|
10
|
+
* </e-event-markers>
|
|
11
|
+
* </ejs-gantt>
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class EventMarkerDirective extends ComplexBase<EventMarkerDirective> {
|
|
15
|
+
private viewContainerRef;
|
|
16
|
+
directivePropList: any;
|
|
17
|
+
/**
|
|
18
|
+
* Specifies a custom CSS class for the event marker.
|
|
19
|
+
* This can be used to apply custom styles to the line and label of the marker.
|
|
20
|
+
* @default null
|
|
21
|
+
*/
|
|
22
|
+
cssClass: any;
|
|
23
|
+
/**
|
|
24
|
+
* Specifies the date or day of the event marker.
|
|
25
|
+
* The value can be a `Date` object or a date string.
|
|
26
|
+
* @default null
|
|
27
|
+
*/
|
|
28
|
+
day: any;
|
|
29
|
+
/**
|
|
30
|
+
* Specifies the label for the event marker.
|
|
31
|
+
* @default null
|
|
32
|
+
*/
|
|
33
|
+
label: any;
|
|
34
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* EventMarker Array Directive
|
|
38
|
+
* @private
|
|
39
|
+
*/
|
|
40
|
+
export declare class EventMarkersDirective extends ArrayBase<EventMarkersDirective> {
|
|
41
|
+
constructor();
|
|
42
|
+
}
|
|
@@ -1,28 +1,22 @@
|
|
|
1
|
-
import { ValueProvider } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export declare const
|
|
6
|
-
export declare const
|
|
7
|
-
export declare const
|
|
8
|
-
export declare const
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
export declare const
|
|
15
|
-
export declare const
|
|
16
|
-
export declare const
|
|
17
|
-
export declare const
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
*/
|
|
24
|
-
export declare class GanttAllModule {
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttAllModule, never>;
|
|
26
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GanttAllModule, never, [typeof i1.CommonModule, typeof i2.GanttModule], [typeof i2.GanttModule]>;
|
|
27
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<GanttAllModule>;
|
|
28
|
-
}
|
|
1
|
+
import { ValueProvider } from '@angular/core';
|
|
2
|
+
export declare const FilterService: ValueProvider;
|
|
3
|
+
export declare const SelectionService: ValueProvider;
|
|
4
|
+
export declare const SortService: ValueProvider;
|
|
5
|
+
export declare const ReorderService: ValueProvider;
|
|
6
|
+
export declare const ResizeService: ValueProvider;
|
|
7
|
+
export declare const EditService: ValueProvider;
|
|
8
|
+
export declare const DayMarkersService: ValueProvider;
|
|
9
|
+
export declare const ToolbarService: ValueProvider;
|
|
10
|
+
export declare const ContextMenuService: ValueProvider;
|
|
11
|
+
export declare const ExcelExportService: ValueProvider;
|
|
12
|
+
export declare const RowDDService: ValueProvider;
|
|
13
|
+
export declare const ColumnMenuService: ValueProvider;
|
|
14
|
+
export declare const PdfExportService: ValueProvider;
|
|
15
|
+
export declare const VirtualScrollService: ValueProvider;
|
|
16
|
+
export declare const CriticalPathService: ValueProvider;
|
|
17
|
+
export declare const UndoRedoService: ValueProvider;
|
|
18
|
+
/**
|
|
19
|
+
* NgModule definition for the Gantt component with providers.
|
|
20
|
+
*/
|
|
21
|
+
export declare class GanttAllModule {
|
|
22
|
+
}
|
|
@@ -1,146 +1,143 @@
|
|
|
1
|
-
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
-
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
import { Gantt } from '@syncfusion/ej2-gantt';
|
|
4
|
-
import { ColumnsDirective } from './columns.directive';
|
|
5
|
-
import { AddDialogFieldsDirective } from './adddialogfields.directive';
|
|
6
|
-
import { EditDialogFieldsDirective } from './editdialogfields.directive';
|
|
7
|
-
import { DayWorkingTimeCollectionDirective } from './dayworkingtime.directive';
|
|
8
|
-
import { WeekWorkingTimesDirective } from './weekworkingtime.directive';
|
|
9
|
-
import { HolidaysDirective } from './holidays.directive';
|
|
10
|
-
import { EventMarkersDirective } from './eventmarkers.directive';
|
|
11
|
-
|
|
12
|
-
export declare const
|
|
13
|
-
export declare const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
private
|
|
23
|
-
private
|
|
24
|
-
private
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
* @
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
*
|
|
108
|
-
* @
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
*
|
|
114
|
-
* @
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
* @
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttComponent, never>;
|
|
145
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GanttComponent, "ejs-gantt", never, { "UpdateOffsetOnTaskbarEdit": "UpdateOffsetOnTaskbarEdit"; "addDialogFields": "addDialogFields"; "allowExcelExport": "allowExcelExport"; "allowFiltering": "allowFiltering"; "allowKeyboard": "allowKeyboard"; "allowParentDependency": "allowParentDependency"; "allowPdfExport": "allowPdfExport"; "allowReordering": "allowReordering"; "allowResizing": "allowResizing"; "allowRowDragAndDrop": "allowRowDragAndDrop"; "allowSelection": "allowSelection"; "allowSorting": "allowSorting"; "allowTaskbarDragAndDrop": "allowTaskbarDragAndDrop"; "allowTaskbarOverlap": "allowTaskbarOverlap"; "allowUnscheduledTasks": "allowUnscheduledTasks"; "autoCalculateDateScheduling": "autoCalculateDateScheduling"; "autoFocusTasks": "autoFocusTasks"; "baselineColor": "baselineColor"; "collapseAllParentTasks": "collapseAllParentTasks"; "columnMenuItems": "columnMenuItems"; "columns": "columns"; "connectorLineBackground": "connectorLineBackground"; "connectorLineWidth": "connectorLineWidth"; "contextMenuItems": "contextMenuItems"; "dataSource": "dataSource"; "dateFormat": "dateFormat"; "dayWorkingTime": "dayWorkingTime"; "disableHtmlEncode": "disableHtmlEncode"; "durationUnit": "durationUnit"; "editDialogFields": "editDialogFields"; "editSettings": "editSettings"; "enableAdaptiveUI": "enableAdaptiveUI"; "enableAutoWbsUpdate": "enableAutoWbsUpdate"; "enableContextMenu": "enableContextMenu"; "enableCriticalPath": "enableCriticalPath"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enableImmutableMode": "enableImmutableMode"; "enableMultiTaskbar": "enableMultiTaskbar"; "enablePersistence": "enablePersistence"; "enablePredecessorValidation": "enablePredecessorValidation"; "enableRtl": "enableRtl"; "enableTimelineVirtualization": "enableTimelineVirtualization"; "enableUndoRedo": "enableUndoRedo"; "enableVirtualMaskRow": "enableVirtualMaskRow"; "enableVirtualization": "enableVirtualization"; "enableWBS": "enableWBS"; "eventMarkers": "eventMarkers"; "filterSettings": "filterSettings"; "gridLines": "gridLines"; "height": "height"; "highlightWeekends": "highlightWeekends"; "holidays": "holidays"; "includeWeekend": "includeWeekend"; "labelSettings": "labelSettings"; "loadChildOnDemand": "loadChildOnDemand"; "loadingIndicator": "loadingIndicator"; "locale": "locale"; "milestoneTemplate": "milestoneTemplate"; "parentTaskbarTemplate": "parentTaskbarTemplate"; "projectEndDate": "projectEndDate"; "projectStartDate": "projectStartDate"; "query": "query"; "readOnly": "readOnly"; "renderBaseline": "renderBaseline"; "resourceFields": "resourceFields"; "resourceIDMapping": "resourceIDMapping"; "resourceNameMapping": "resourceNameMapping"; "resources": "resources"; "rowHeight": "rowHeight"; "searchSettings": "searchSettings"; "segmentData": "segmentData"; "selectedRowIndex": "selectedRowIndex"; "selectionSettings": "selectionSettings"; "showColumnMenu": "showColumnMenu"; "showInlineNotes": "showInlineNotes"; "showOverAllocation": "showOverAllocation"; "sortSettings": "sortSettings"; "splitterSettings": "splitterSettings"; "taskFields": "taskFields"; "taskMode": "taskMode"; "taskType": "taskType"; "taskbarHeight": "taskbarHeight"; "taskbarTemplate": "taskbarTemplate"; "timelineSettings": "timelineSettings"; "timelineTemplate": "timelineTemplate"; "timezone": "timezone"; "toolbar": "toolbar"; "tooltipSettings": "tooltipSettings"; "treeColumnIndex": "treeColumnIndex"; "undoRedoActions": "undoRedoActions"; "undoRedoStepsCount": "undoRedoStepsCount"; "updateOffsetOnTaskbarEdit": "updateOffsetOnTaskbarEdit"; "validateManualTasksOnLinking": "validateManualTasksOnLinking"; "viewType": "viewType"; "weekWorkingTime": "weekWorkingTime"; "width": "width"; "workUnit": "workUnit"; "workWeek": "workWeek"; "zoomingLevels": "zoomingLevels"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; "beforeDataBound": "beforeDataBound"; "beforeExcelExport": "beforeExcelExport"; "beforePdfExport": "beforePdfExport"; "beforeTooltipRender": "beforeTooltipRender"; "cellDeselected": "cellDeselected"; "cellDeselecting": "cellDeselecting"; "cellEdit": "cellEdit"; "cellSave": "cellSave"; "cellSelected": "cellSelected"; "cellSelecting": "cellSelecting"; "collapsed": "collapsed"; "collapsing": "collapsing"; "columnDrag": "columnDrag"; "columnDragStart": "columnDragStart"; "columnDrop": "columnDrop"; "columnMenuClick": "columnMenuClick"; "columnMenuOpen": "columnMenuOpen"; "contextMenuClick": "contextMenuClick"; "contextMenuOpen": "contextMenuOpen"; "created": "created"; "dataBound": "dataBound"; "dataStateChange": "dataStateChange"; "destroyed": "destroyed"; "endEdit": "endEdit"; "excelExportComplete": "excelExportComplete"; "excelHeaderQueryCellInfo": "excelHeaderQueryCellInfo"; "excelQueryCellInfo": "excelQueryCellInfo"; "expanded": "expanded"; "expanding": "expanding"; "headerCellInfo": "headerCellInfo"; "load": "load"; "onMouseMove": "onMouseMove"; "onTaskbarClick": "onTaskbarClick"; "pdfColumnHeaderQueryCellInfo": "pdfColumnHeaderQueryCellInfo"; "pdfExportComplete": "pdfExportComplete"; "pdfQueryCellInfo": "pdfQueryCellInfo"; "pdfQueryTaskbarInfo": "pdfQueryTaskbarInfo"; "pdfQueryTimelineCellInfo": "pdfQueryTimelineCellInfo"; "queryCellInfo": "queryCellInfo"; "queryTaskbarInfo": "queryTaskbarInfo"; "recordDoubleClick": "recordDoubleClick"; "resizeStart": "resizeStart"; "resizeStop": "resizeStop"; "resizing": "resizing"; "rowDataBound": "rowDataBound"; "rowDeselected": "rowDeselected"; "rowDeselecting": "rowDeselecting"; "rowDrag": "rowDrag"; "rowDragStart": "rowDragStart"; "rowDragStartHelper": "rowDragStartHelper"; "rowDrop": "rowDrop"; "rowSelected": "rowSelected"; "rowSelecting": "rowSelecting"; "splitterResizeStart": "splitterResizeStart"; "splitterResized": "splitterResized"; "splitterResizing": "splitterResizing"; "taskbarEdited": "taskbarEdited"; "taskbarEditing": "taskbarEditing"; "toolbarClick": "toolbarClick"; "dataSourceChange": "dataSourceChange"; }, ["parentTaskbarTemplate", "timelineTemplate", "milestoneTemplate", "taskbarTemplate", "editTemplate", "labelSettings_rightLabel", "labelSettings_leftLabel", "labelSettings_taskLabel", "tooltipSettings_taskbar", "tooltipSettings_baseline", "tooltipSettings_connectorLine", "tooltipSettings_editing", "tooltipSettings_timeline", "filter_itemTemplate", "filterTemplate", "childColumns", "childAddDialogFields", "childEditDialogFields", "childDayWorkingTime", "childWeekWorkingTime", "childHolidays", "childEventMarkers"], never>;
|
|
146
|
-
}
|
|
1
|
+
import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
|
|
2
|
+
import { IComponentBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
import { Gantt } from '@syncfusion/ej2-gantt';
|
|
4
|
+
import { ColumnsDirective } from './columns.directive';
|
|
5
|
+
import { AddDialogFieldsDirective } from './adddialogfields.directive';
|
|
6
|
+
import { EditDialogFieldsDirective } from './editdialogfields.directive';
|
|
7
|
+
import { DayWorkingTimeCollectionDirective } from './dayworkingtime.directive';
|
|
8
|
+
import { WeekWorkingTimesDirective } from './weekworkingtime.directive';
|
|
9
|
+
import { HolidaysDirective } from './holidays.directive';
|
|
10
|
+
import { EventMarkersDirective } from './eventmarkers.directive';
|
|
11
|
+
export declare const inputs: string[];
|
|
12
|
+
export declare const outputs: string[];
|
|
13
|
+
export declare const twoWays: string[];
|
|
14
|
+
/**
|
|
15
|
+
* `ejs-gantt` represents the Angular Gantt Component.
|
|
16
|
+
* ```html
|
|
17
|
+
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'></ejs-gantt>
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export declare class GanttComponent extends Gantt implements IComponentBase {
|
|
21
|
+
private ngEle;
|
|
22
|
+
private srenderer;
|
|
23
|
+
private viewContainerRef;
|
|
24
|
+
private injector;
|
|
25
|
+
context: any;
|
|
26
|
+
tagObjects: any;
|
|
27
|
+
actionBegin: any;
|
|
28
|
+
actionComplete: any;
|
|
29
|
+
actionFailure: any;
|
|
30
|
+
beforeDataBound: any;
|
|
31
|
+
beforeExcelExport: any;
|
|
32
|
+
beforePdfExport: any;
|
|
33
|
+
beforeTooltipRender: any;
|
|
34
|
+
cellDeselected: any;
|
|
35
|
+
cellDeselecting: any;
|
|
36
|
+
cellEdit: any;
|
|
37
|
+
cellSave: any;
|
|
38
|
+
cellSelected: any;
|
|
39
|
+
cellSelecting: any;
|
|
40
|
+
collapsed: any;
|
|
41
|
+
collapsing: any;
|
|
42
|
+
columnDrag: any;
|
|
43
|
+
columnDragStart: any;
|
|
44
|
+
columnDrop: any;
|
|
45
|
+
columnMenuClick: any;
|
|
46
|
+
columnMenuOpen: any;
|
|
47
|
+
contextMenuClick: any;
|
|
48
|
+
contextMenuOpen: any;
|
|
49
|
+
created: any;
|
|
50
|
+
dataBound: any;
|
|
51
|
+
dataStateChange: any;
|
|
52
|
+
destroyed: any;
|
|
53
|
+
endEdit: any;
|
|
54
|
+
excelExportComplete: any;
|
|
55
|
+
excelHeaderQueryCellInfo: any;
|
|
56
|
+
excelQueryCellInfo: any;
|
|
57
|
+
expanded: any;
|
|
58
|
+
expanding: any;
|
|
59
|
+
headerCellInfo: any;
|
|
60
|
+
load: any;
|
|
61
|
+
onMouseMove: any;
|
|
62
|
+
onTaskbarClick: any;
|
|
63
|
+
pdfColumnHeaderQueryCellInfo: any;
|
|
64
|
+
pdfExportComplete: any;
|
|
65
|
+
pdfQueryCellInfo: any;
|
|
66
|
+
pdfQueryTaskbarInfo: any;
|
|
67
|
+
pdfQueryTimelineCellInfo: any;
|
|
68
|
+
queryCellInfo: any;
|
|
69
|
+
queryTaskbarInfo: any;
|
|
70
|
+
recordDoubleClick: any;
|
|
71
|
+
resizeStart: any;
|
|
72
|
+
resizeStop: any;
|
|
73
|
+
resizing: any;
|
|
74
|
+
rowDataBound: any;
|
|
75
|
+
rowDeselected: any;
|
|
76
|
+
rowDeselecting: any;
|
|
77
|
+
rowDrag: any;
|
|
78
|
+
rowDragStart: any;
|
|
79
|
+
rowDragStartHelper: any;
|
|
80
|
+
rowDrop: any;
|
|
81
|
+
rowSelected: any;
|
|
82
|
+
rowSelecting: any;
|
|
83
|
+
splitterResizeStart: any;
|
|
84
|
+
splitterResized: any;
|
|
85
|
+
splitterResizing: any;
|
|
86
|
+
taskbarEdited: any;
|
|
87
|
+
taskbarEditing: any;
|
|
88
|
+
toolbarClick: any;
|
|
89
|
+
dataSourceChange: any;
|
|
90
|
+
childColumns: QueryList<ColumnsDirective>;
|
|
91
|
+
childAddDialogFields: QueryList<AddDialogFieldsDirective>;
|
|
92
|
+
childEditDialogFields: QueryList<EditDialogFieldsDirective>;
|
|
93
|
+
childDayWorkingTime: QueryList<DayWorkingTimeCollectionDirective>;
|
|
94
|
+
childWeekWorkingTime: QueryList<WeekWorkingTimesDirective>;
|
|
95
|
+
childHolidays: QueryList<HolidaysDirective>;
|
|
96
|
+
childEventMarkers: QueryList<EventMarkersDirective>;
|
|
97
|
+
tags: string[];
|
|
98
|
+
/**
|
|
99
|
+
* Defines a custom template for rendering parent task bars in the Gantt chart. This template allows you to customize the appearance of parent task bars.
|
|
100
|
+
* {% codeBlock src='gantt/parentTaskbarTemplate/index.md' %}{% endcodeBlock %}
|
|
101
|
+
* @default null
|
|
102
|
+
* @asptype string
|
|
103
|
+
*/
|
|
104
|
+
parentTaskbarTemplate: any;
|
|
105
|
+
/**
|
|
106
|
+
* Renders customized html elements for timeline cell from the given template.
|
|
107
|
+
* @default null
|
|
108
|
+
* @asptype string
|
|
109
|
+
*/
|
|
110
|
+
timelineTemplate: any;
|
|
111
|
+
/**
|
|
112
|
+
* Defines a custom template for rendering milestone tasks in the Gantt chart. This template allows you to customize the appearance of milestone tasks.
|
|
113
|
+
* @default null
|
|
114
|
+
* @asptype string
|
|
115
|
+
*/
|
|
116
|
+
milestoneTemplate: any;
|
|
117
|
+
/**
|
|
118
|
+
* The task bar template that renders customized child task bars from the given template.
|
|
119
|
+
* This property allows users to define a custom template for rendering child task bars in the Gantt chart.
|
|
120
|
+
* {% codeBlock src='gantt/taskbarTemplate/index.md' %}{% endcodeBlock %}
|
|
121
|
+
* @default null
|
|
122
|
+
* @asptype string
|
|
123
|
+
*/
|
|
124
|
+
taskbarTemplate: any;
|
|
125
|
+
editTemplate: any;
|
|
126
|
+
labelSettings_rightLabel: any;
|
|
127
|
+
labelSettings_leftLabel: any;
|
|
128
|
+
labelSettings_taskLabel: any;
|
|
129
|
+
tooltipSettings_taskbar: any;
|
|
130
|
+
tooltipSettings_baseline: any;
|
|
131
|
+
tooltipSettings_connectorLine: any;
|
|
132
|
+
tooltipSettings_editing: any;
|
|
133
|
+
tooltipSettings_timeline: any;
|
|
134
|
+
filter_itemTemplate: any;
|
|
135
|
+
filterTemplate: any;
|
|
136
|
+
constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
|
|
137
|
+
ngOnInit(): void;
|
|
138
|
+
ngAfterViewInit(): void;
|
|
139
|
+
ngOnDestroy(): void;
|
|
140
|
+
ngAfterContentChecked(): void;
|
|
141
|
+
registerEvents: (eventList: string[]) => void;
|
|
142
|
+
addTwoWay: (propList: string[]) => void;
|
|
143
|
+
}
|
|
@@ -1,18 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import * as i5 from "./dayworkingtime.directive";
|
|
7
|
-
import * as i6 from "./weekworkingtime.directive";
|
|
8
|
-
import * as i7 from "./holidays.directive";
|
|
9
|
-
import * as i8 from "./eventmarkers.directive";
|
|
10
|
-
import * as i9 from "@angular/common";
|
|
11
|
-
/**
|
|
12
|
-
* NgModule definition for the Gantt component.
|
|
13
|
-
*/
|
|
14
|
-
export declare class GanttModule {
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GanttModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GanttModule, [typeof i1.GanttComponent, typeof i2.ColumnDirective, typeof i2.ColumnsDirective, typeof i3.AddDialogFieldDirective, typeof i3.AddDialogFieldsDirective, typeof i4.EditDialogFieldDirective, typeof i4.EditDialogFieldsDirective, typeof i5.DayWorkingTimeDirective, typeof i5.DayWorkingTimeCollectionDirective, typeof i6.WeekWorkingTimeDirective, typeof i6.WeekWorkingTimesDirective, typeof i7.HolidayDirective, typeof i7.HolidaysDirective, typeof i8.EventMarkerDirective, typeof i8.EventMarkersDirective], [typeof i9.CommonModule], [typeof i1.GanttComponent, typeof i2.ColumnDirective, typeof i2.ColumnsDirective, typeof i3.AddDialogFieldDirective, typeof i3.AddDialogFieldsDirective, typeof i4.EditDialogFieldDirective, typeof i4.EditDialogFieldsDirective, typeof i5.DayWorkingTimeDirective, typeof i5.DayWorkingTimeCollectionDirective, typeof i6.WeekWorkingTimeDirective, typeof i6.WeekWorkingTimesDirective, typeof i7.HolidayDirective, typeof i7.HolidaysDirective, typeof i8.EventMarkerDirective, typeof i8.EventMarkersDirective]>;
|
|
17
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<GanttModule>;
|
|
18
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* NgModule definition for the Gantt component.
|
|
3
|
+
*/
|
|
4
|
+
export declare class GanttModule {
|
|
5
|
+
}
|
|
@@ -1,51 +1,46 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-holiday from='
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
*
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
export declare class HolidaysDirective extends ArrayBase<HolidaysDirective> {
|
|
48
|
-
constructor();
|
|
49
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HolidaysDirective, never>;
|
|
50
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<HolidaysDirective, "ejs-gantt>e-holidays", never, {}, {}, ["children"]>;
|
|
51
|
-
}
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
+
/**
|
|
4
|
+
* `e-holidays` directive represent a holidays collection in Gantt.
|
|
5
|
+
* It must be contained in a Gantt component(`ejs-gantt`).
|
|
6
|
+
* ```html
|
|
7
|
+
* <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
|
|
8
|
+
* <e-holidays>
|
|
9
|
+
* <e-holiday from='02/20/2018' label='Holiday 1'></e-holiday>
|
|
10
|
+
* <e-holiday from='05/15/2018' label='Holiday 2'></e-holiday>
|
|
11
|
+
* </e-holidays>
|
|
12
|
+
* </ejs-gantt>
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare class HolidayDirective extends ComplexBase<HolidayDirective> {
|
|
16
|
+
private viewContainerRef;
|
|
17
|
+
directivePropList: any;
|
|
18
|
+
/**
|
|
19
|
+
* Defines custom css class of holiday to customize background and label.
|
|
20
|
+
* @default null
|
|
21
|
+
*/
|
|
22
|
+
cssClass: any;
|
|
23
|
+
/**
|
|
24
|
+
* Defines start date of holiday.
|
|
25
|
+
* @default null
|
|
26
|
+
*/
|
|
27
|
+
from: any;
|
|
28
|
+
/**
|
|
29
|
+
* Defines label of holiday.
|
|
30
|
+
* @default null
|
|
31
|
+
*/
|
|
32
|
+
label: any;
|
|
33
|
+
/**
|
|
34
|
+
* Defines end date of holiday.
|
|
35
|
+
* @default null
|
|
36
|
+
*/
|
|
37
|
+
to: any;
|
|
38
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Holiday Array Directive
|
|
42
|
+
* @private
|
|
43
|
+
*/
|
|
44
|
+
export declare class HolidaysDirective extends ArrayBase<HolidaysDirective> {
|
|
45
|
+
constructor();
|
|
46
|
+
}
|