blob: 5aa7f08b60273a4ef8c698eaf7b96fb513d5f6c4 (
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
|
/**
* Created by rc2122 on 5/24/2018.
*/
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { NgxDatatableModule } from '@swimlane/ngx-datatable';
import { CommentModalComponent } from 'app/ng2/components/modals/comment-modal/comment-modal.component';
import { PopoverModule } from 'app/ng2/components/ui/popover/popover.module';
import { TranslateModule } from 'app/ng2/shared/translator/translate.module';
import { SdcUiComponentsModule } from 'onap-ui-angular';
import { OnboardingService } from '../../services/onboarding.service';
import { ImportVSPService } from './onboarding-modal/import-vsp.service';
import { OnboardingModalComponent } from './onboarding-modal/onboarding-modal.component';
@NgModule({
declarations: [CommentModalComponent, OnboardingModalComponent],
imports: [TranslateModule,
SdcUiComponentsModule,
CommonModule,
PopoverModule,
NgxDatatableModule],
exports: [CommentModalComponent, OnboardingModalComponent],
entryComponents: [CommentModalComponent, OnboardingModalComponent],
providers: [OnboardingService, ImportVSPService],
bootstrap: []
})
export class ModalsModule {
}
|