-
Notifications
You must be signed in to change notification settings - Fork 210
/
Copy pathgantt.module.ts
45 lines (44 loc) · 1.47 KB
/
gantt.module.ts
1
2
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
44
45
import { OverlayModule } from '@angular/cdk/overlay';
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { ButtonModule } from 'ng-devui/button';
import { DropDownModule } from 'ng-devui/dropdown';
import { PopoverModule } from 'ng-devui/popover';
import { TooltipModule } from 'ng-devui/tooltip';
import { GanttBarParentComponent } from './gantt-bar-parent/gantt-bar-parent.component';
import { GanttBarComponent } from './gantt-bar/gantt-bar.component';
import { GanttMarkerDirective } from './gantt-marker.directive';
import { GanttMilestoneComponent } from './gantt-milestone/gantt-milestone.component';
import { GanttScaleComponent } from './gantt-scale/gantt-scale.component';
import { GanttToolsComponent } from './gantt-tools/gantt-tools.component';
import { GanttService } from './gantt.service';
import { ResizeHandleDirective } from './resize-handle.directive';
@NgModule({
declarations: [
GanttScaleComponent,
GanttBarComponent,
GanttMarkerDirective,
GanttMilestoneComponent,
GanttBarParentComponent,
ResizeHandleDirective,
GanttToolsComponent
],
imports: [
CommonModule,
OverlayModule,
PopoverModule,
TooltipModule,
ButtonModule,
DropDownModule
],
providers: [GanttService],
exports: [
GanttScaleComponent,
GanttBarComponent,
GanttMilestoneComponent,
GanttBarParentComponent,
ResizeHandleDirective,
GanttToolsComponent
]
})
export class GanttModule { }