Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | import { NgModule } from '@angular/core'; |
| 2 | import { CommonModule } from '@angular/common'; |
| 3 | import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
| 4 | import { InputsModule } from '../modules/inputs.module'; |
| 5 | import { DataTableModule } from 'angular2-datatable'; |
| 6 | import { BootstrapModalModule } from 'ng2-bootstrap-modal'; |
| 7 | import { TooltipModule } from 'ngx-tooltip'; |
| 8 | import { InstantiationStatusComponent } from './instantiationStatus.component'; |
| 9 | import { InstantiationStatusComponentService } from './instantiationStatus.component.service'; |
| 10 | import { SharedModule } from '../shared/shared.module'; |
| 11 | import { AngularSvgIconModule } from 'angular-svg-icon'; |
| 12 | import { ContextMenuModule, ContextMenuService } from 'ngx-contextmenu'; |
| 13 | import {ModalModule, PopoverModule} from 'ngx-bootstrap'; |
| 14 | import {AuditInfoModalComponent} from "./auditInfoModal/auditInfoModal.component"; |
| 15 | |
| 16 | @NgModule({ |
| 17 | imports: [ |
| 18 | CommonModule, |
| 19 | FormsModule, |
| 20 | ReactiveFormsModule, |
| 21 | BootstrapModalModule, |
| 22 | DataTableModule, |
| 23 | TooltipModule, |
| 24 | ModalModule, |
| 25 | InputsModule, |
| 26 | AngularSvgIconModule, |
| 27 | ContextMenuModule, |
| 28 | SharedModule.forRoot(), |
| 29 | PopoverModule.forRoot()], |
| 30 | declarations: [InstantiationStatusComponent, AuditInfoModalComponent], |
| 31 | providers: [InstantiationStatusComponentService, ContextMenuService] |
| 32 | }) |
| 33 | export class InstantiationStatusModule { } |