summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/report-run/report-run.module.ts
blob: 775494d74a6f8d73912f7312195f06ca38ffc6d0 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import {NgModule} from '@angular/core';
import {RunDashboardReportComponent} from './run/run-report/run-dashboard-report/run-dashboard-report.component';
import {RunReportFormFieldsComponent} from './run/run-report-form-fields/run-report-form-fields.component';
import {RunReportComponent} from './run/run-report/run-report.component';
import {ReportRunComponent} from './report-run.component';
import {RunReportResultSetComponent} from './run/run-report-result-set/run-report-result-set.component';
import {
    MatAutocompleteModule,
    MatCheckboxModule,
    MatDatepickerModule,
    MatFormFieldModule,
    MatIconModule,
    MatInputModule,
    MatPaginatorModule,
    MatRadioModule,
    MatSelectModule,
    MatSortModule,
    MatTableModule
} from '@angular/material';
import {CommonModule} from '@angular/common';
import {RouterModule} from '@angular/router';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {GridsterModule} from 'angular-gridster2';
import {RunComponent} from './run/run.component';
import {ReportRunRouting} from './report-run-routing.module';
import {NgbTooltipModule} from '@ng-bootstrap/ng-bootstrap';
import { RemoveSpaceDirective} from './run/run-report-form-fields/remove-space.directive';

@NgModule({
    declarations: [RunDashboardReportComponent,
        RunReportFormFieldsComponent,
        RunReportComponent,
        ReportRunComponent,
        RunReportResultSetComponent,
        RunComponent,
        RemoveSpaceDirective],
    imports: [
        MatTableModule,
        CommonModule,
        RouterModule,
        MatIconModule,
        MatCheckboxModule,
        MatFormFieldModule,
        ReactiveFormsModule,
        MatAutocompleteModule,
        MatPaginatorModule,
        FormsModule,
        GridsterModule,
        MatSelectModule,
        MatDatepickerModule,
        MatRadioModule,
        MatInputModule,
        ReportRunRouting,
        MatSortModule,
        NgbTooltipModule
    ],
    exports: [RunReportComponent, RunComponent]
})

export class ReportRun {

}