summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/logic/select-directives/select-directives.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/ng2/components/logic/select-directives/select-directives.module.ts')
-rw-r--r--catalog-ui/src/app/ng2/components/logic/select-directives/select-directives.module.ts31
1 files changed, 31 insertions, 0 deletions
diff --git a/catalog-ui/src/app/ng2/components/logic/select-directives/select-directives.module.ts b/catalog-ui/src/app/ng2/components/logic/select-directives/select-directives.module.ts
new file mode 100644
index 0000000000..bb2fc2066e
--- /dev/null
+++ b/catalog-ui/src/app/ng2/components/logic/select-directives/select-directives.module.ts
@@ -0,0 +1,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 {
+} \ No newline at end of file