@syncfusion/ej2-angular-gantt 29.2.11-ngcc → 30.1.37-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.
@@ -1,42 +1,42 @@
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
+ 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,22 +1,22 @@
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
+ 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,139 +1,141 @@
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
- beforeExcelExport: any;
31
- beforePdfExport: any;
32
- beforeTooltipRender: any;
33
- cellDeselected: any;
34
- cellDeselecting: any;
35
- cellEdit: any;
36
- cellSelected: any;
37
- cellSelecting: any;
38
- collapsed: any;
39
- collapsing: any;
40
- columnDrag: any;
41
- columnDragStart: any;
42
- columnDrop: any;
43
- columnMenuClick: any;
44
- columnMenuOpen: any;
45
- contextMenuClick: any;
46
- contextMenuOpen: any;
47
- created: any;
48
- dataBound: any;
49
- dataStateChange: any;
50
- destroyed: any;
51
- endEdit: any;
52
- excelExportComplete: any;
53
- excelHeaderQueryCellInfo: any;
54
- excelQueryCellInfo: any;
55
- expanded: any;
56
- expanding: any;
57
- headerCellInfo: any;
58
- load: any;
59
- onMouseMove: any;
60
- onTaskbarClick: any;
61
- pdfColumnHeaderQueryCellInfo: any;
62
- pdfExportComplete: any;
63
- pdfQueryCellInfo: any;
64
- pdfQueryTaskbarInfo: any;
65
- pdfQueryTimelineCellInfo: any;
66
- queryCellInfo: any;
67
- queryTaskbarInfo: any;
68
- recordDoubleClick: any;
69
- resizeStart: any;
70
- resizeStop: any;
71
- resizing: any;
72
- rowDataBound: any;
73
- rowDeselected: any;
74
- rowDeselecting: any;
75
- rowDrag: any;
76
- rowDragStart: any;
77
- rowDragStartHelper: any;
78
- rowDrop: any;
79
- rowSelected: any;
80
- rowSelecting: any;
81
- splitterResizeStart: any;
82
- splitterResized: any;
83
- splitterResizing: any;
84
- taskbarEdited: any;
85
- taskbarEditing: any;
86
- toolbarClick: any;
87
- dataSourceChange: any;
88
- childColumns: QueryList<ColumnsDirective>;
89
- childAddDialogFields: QueryList<AddDialogFieldsDirective>;
90
- childEditDialogFields: QueryList<EditDialogFieldsDirective>;
91
- childDayWorkingTime: QueryList<DayWorkingTimeCollectionDirective>;
92
- childWeekWorkingTime: QueryList<WeekWorkingTimesDirective>;
93
- childHolidays: QueryList<HolidaysDirective>;
94
- childEventMarkers: QueryList<EventMarkersDirective>;
95
- tags: string[];
96
- /**
97
- * 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.
98
- * {% codeBlock src='gantt/parentTaskbarTemplate/index.md' %}{% endcodeBlock %}
99
- * @default null
100
- * @asptype string
101
- */
102
- parentTaskbarTemplate: any;
103
- /**
104
- * Renders customized html elements for timeline cell from the given template.
105
- * @default null
106
- * @asptype string
107
- */
108
- timelineTemplate: any;
109
- /**
110
- * Defines a custom template for rendering milestone tasks in the Gantt chart. This template allows you to customize the appearance of milestone tasks.
111
- * @default null
112
- * @asptype string
113
- */
114
- milestoneTemplate: any;
115
- /**
116
- * The task bar template that renders customized child task bars from the given template.
117
- * This property allows users to define a custom template for rendering child task bars in the Gantt chart.
118
- * {% codeBlock src='gantt/taskbarTemplate/index.md' %}{% endcodeBlock %}
119
- * @default null
120
- * @asptype string
121
- */
122
- taskbarTemplate: any;
123
- editTemplate: any;
124
- labelSettings_rightLabel: any;
125
- labelSettings_leftLabel: any;
126
- labelSettings_taskLabel: any;
127
- tooltipSettings_taskbar: any;
128
- tooltipSettings_baseline: any;
129
- tooltipSettings_connectorLine: any;
130
- tooltipSettings_editing: any;
131
- tooltipSettings_timeline: any;
132
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
133
- ngOnInit(): void;
134
- ngAfterViewInit(): void;
135
- ngOnDestroy(): void;
136
- ngAfterContentChecked(): void;
137
- registerEvents: (eventList: string[]) => void;
138
- addTwoWay: (propList: string[]) => void;
139
- }
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
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
135
+ ngOnInit(): void;
136
+ ngAfterViewInit(): void;
137
+ ngOnDestroy(): void;
138
+ ngAfterContentChecked(): void;
139
+ registerEvents: (eventList: string[]) => void;
140
+ addTwoWay: (propList: string[]) => void;
141
+ }
@@ -1,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Gantt component.
3
- */
4
- export declare class GanttModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Gantt component.
3
+ */
4
+ export declare class GanttModule {
5
+ }
@@ -1,46 +1,46 @@
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
- }
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
+ }
@@ -1,38 +1,38 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-week-working-times` directive represent a working time ranges in a day.
5
- * It must be contained in a Gantt component(`ejs-gantt`).
6
- * ```html
7
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
8
- * <e-week-working-times>
9
- * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
10
- * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
11
- * </e-week-working-times>
12
- * </ejs-gantt>
13
- * ```
14
- */
15
- export declare class WeekWorkingTimeDirective extends ComplexBase<WeekWorkingTimeDirective> {
16
- private viewContainerRef;
17
- directivePropList: any;
18
- /**
19
- * Defines the day of the week to apply customized working time.
20
- * @default null
21
- */
22
- dayOfWeek: any;
23
- /**
24
- * Defines the time range for each day of the week.
25
- * @default []
26
- * @asptype List<GanttDayWorkingTime>
27
-
28
- */
29
- timeRange: any;
30
- constructor(viewContainerRef: ViewContainerRef);
31
- }
32
- /**
33
- * WeekWorkingTime Array Directive
34
- * @private
35
- */
36
- export declare class WeekWorkingTimesDirective extends ArrayBase<WeekWorkingTimesDirective> {
37
- constructor();
38
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-week-working-times` directive represent a working time ranges in a day.
5
+ * It must be contained in a Gantt component(`ejs-gantt`).
6
+ * ```html
7
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
8
+ * <e-week-working-times>
9
+ * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
10
+ * <e-week-working-time dayOfWeek='Monday'></e-week-working-time>
11
+ * </e-week-working-times>
12
+ * </ejs-gantt>
13
+ * ```
14
+ */
15
+ export declare class WeekWorkingTimeDirective extends ComplexBase<WeekWorkingTimeDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * Defines the day of the week to apply customized working time.
20
+ * @default null
21
+ */
22
+ dayOfWeek: any;
23
+ /**
24
+ * Defines the time range for each day of the week.
25
+ * @default []
26
+ * @asptype List<GanttDayWorkingTime>
27
+
28
+ */
29
+ timeRange: any;
30
+ constructor(viewContainerRef: ViewContainerRef);
31
+ }
32
+ /**
33
+ * WeekWorkingTime Array Directive
34
+ * @private
35
+ */
36
+ export declare class WeekWorkingTimesDirective extends ArrayBase<WeekWorkingTimesDirective> {
37
+ constructor();
38
+ }
package/src/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- export { ColumnDirective, ColumnsDirective } from './gantt/columns.directive';
2
- export { AddDialogFieldDirective, AddDialogFieldsDirective } from './gantt/adddialogfields.directive';
3
- export { EditDialogFieldDirective, EditDialogFieldsDirective } from './gantt/editdialogfields.directive';
4
- export { DayWorkingTimeDirective, DayWorkingTimeCollectionDirective } from './gantt/dayworkingtime.directive';
5
- export { WeekWorkingTimeDirective, WeekWorkingTimesDirective } from './gantt/weekworkingtime.directive';
6
- export { HolidayDirective, HolidaysDirective } from './gantt/holidays.directive';
7
- export { EventMarkerDirective, EventMarkersDirective } from './gantt/eventmarkers.directive';
8
- export { GanttComponent } from './gantt/gantt.component';
9
- export { GanttModule } from './gantt/gantt.module';
10
- export { GanttAllModule, FilterService, SelectionService, SortService, ReorderService, ResizeService, EditService, DayMarkersService, ToolbarService, ContextMenuService, ExcelExportService, RowDDService, ColumnMenuService, PdfExportService, VirtualScrollService, CriticalPathService, UndoRedoService } from './gantt/gantt-all.module';
11
- export * from '@syncfusion/ej2-gantt';
1
+ export { ColumnDirective, ColumnsDirective } from './gantt/columns.directive';
2
+ export { AddDialogFieldDirective, AddDialogFieldsDirective } from './gantt/adddialogfields.directive';
3
+ export { EditDialogFieldDirective, EditDialogFieldsDirective } from './gantt/editdialogfields.directive';
4
+ export { DayWorkingTimeDirective, DayWorkingTimeCollectionDirective } from './gantt/dayworkingtime.directive';
5
+ export { WeekWorkingTimeDirective, WeekWorkingTimesDirective } from './gantt/weekworkingtime.directive';
6
+ export { HolidayDirective, HolidaysDirective } from './gantt/holidays.directive';
7
+ export { EventMarkerDirective, EventMarkersDirective } from './gantt/eventmarkers.directive';
8
+ export { GanttComponent } from './gantt/gantt.component';
9
+ export { GanttModule } from './gantt/gantt.module';
10
+ export { GanttAllModule, FilterService, SelectionService, SortService, ReorderService, ResizeService, EditService, DayMarkersService, ToolbarService, ContextMenuService, ExcelExportService, RowDDService, ColumnMenuService, PdfExportService, VirtualScrollService, CriticalPathService, UndoRedoService } from './gantt/gantt-all.module';
11
+ export * from '@syncfusion/ej2-gantt';