aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/logic/select-directives/select-directives.module.ts
blob: bb2fc2066e439b3b69b5ae2cdadee9641effc0e3 (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
import {NgModule} from "@angular/core";
import {CommonModule} from "@angular/common";
import {UiElementsModule} from "../../ui/ui-elements.module";
import {TranslateModule} from "../../../shared/translator/translate.module";
import {AccordionModule} from "onap-ui-angular/dist/accordion/accordion.module";
import {NgSelectModule} from "@ng-select/ng-select";
import {FormsModule} from "@angular/forms";
import {SelectDirectivesComponent} from "./select-directives.component";

@NgModule({
  declarations: [
    SelectDirectivesComponent
  ],
  imports: [
    CommonModule,
    UiElementsModule,
    TranslateModule,
    AccordionModule,
    NgSelectModule,
    FormsModule
  ],
  exports: [
    SelectDirectivesComponent
  ],
  entryComponents: [
    SelectDirectivesComponent
  ],
  providers: []
})
export class SelectDirectivesModule {
}