UI support for service update via tosca template import
[sdc.git] / catalog-ui / src / app / ng2 / components / ui / ui-elements.module.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 import {NgModule} from '@angular/core';
22 import {NavbarModule} from "./navbar/navbar.module";
23 import {DynamicElementModule} from "./dynamic-element/dynamic-element.module";
24 import {FormElementsModule} from "./form-components/form-elements.module";
25 import {LoaderComponent} from "./loader/loader.component";
26 import {ModalModule} from "./modal/modal.module";
27 import {PopoverModule} from "./popover/popover.module";
28 import {SearchBarComponent} from "./search-bar/search-bar.component";
29 import {SearchWithAutoCompleteComponent} from "./search-with-autocomplete/search-with-autocomplete.component";
30 import { PaletteAnimationComponent } from "app/ng2/pages/composition/palette/palette-animation/palette-animation.component";
31 import {TabModule} from "./tabs/tabs.module";
32 import {TooltipModule} from "./tooltip/tooltip.module";
33 import {CommonModule} from "@angular/common";
34 import {FormsModule} from "@angular/forms";
35 import {BrowserModule} from "@angular/platform-browser";
36 import {MultiStepsWizardModule} from "./multi-steps-wizard/multi-steps-wizard.module";
37 import {MenuListModule} from "./menu/menu-list.module";
38 import {MenuListNg2Module} from "../downgrade-wrappers/menu-list-ng2/menu-list-ng2.module";
39 import {ExpandCollapseComponent} from './expand-collapse/expand-collapse.component';
40 import {SdcUiComponentsModule} from "onap-ui-angular";
41 import {SdcTileModule} from "./tile/sdc-tile.module";
42 import {PerfectScrollbarDirective} from "./perfect-scroll-bar/perfect-scrollbar.directive";
43 import {FileOpenerComponent} from "./file-opener/file-opener.component";
44 import {DownloadArtifactComponent} from "app/ng2/components/ui/download-artifact/download-artifact.component";
45 import {UploadArtifactComponent} from "app/ng2/components/ui/upload-artifact/upload-artifact.component";
46 import {SdcElementIconComponent} from "./sdc-element-icon/sdc-element-icon.component";
47 import {PanelWrapperComponent} from "./panel-wrapper/panel-wrapper.component";
48 import { ModalImportTypeComponent } from './modal-import-type/modal-import-type.component';
49
50 @NgModule({
51     declarations: [
52         LoaderComponent,
53         SearchBarComponent,
54         SearchWithAutoCompleteComponent,
55         PaletteAnimationComponent,
56         ExpandCollapseComponent,
57         PerfectScrollbarDirective,
58         FileOpenerComponent,
59         SdcElementIconComponent,
60         DownloadArtifactComponent,
61         UploadArtifactComponent,
62         PanelWrapperComponent,
63         ModalImportTypeComponent
64     ],
65
66     imports: [
67         SdcUiComponentsModule,
68         BrowserModule,
69         FormsModule,
70         CommonModule,
71         DynamicElementModule,
72         NavbarModule,
73         FormElementsModule,
74         ModalModule,
75         PopoverModule,
76         TabModule,
77         TooltipModule,
78         MultiStepsWizardModule,
79         MenuListModule,
80         MenuListNg2Module,
81         SdcTileModule
82     ],
83     exports: [
84         LoaderComponent,
85         MultiStepsWizardModule,
86         SearchBarComponent,
87         SearchWithAutoCompleteComponent,
88         DynamicElementModule,
89         NavbarModule,
90         FormElementsModule,
91         ModalModule,
92         PopoverModule,
93         TabModule,
94         TooltipModule,
95         MenuListModule,
96         MenuListNg2Module,
97         PaletteAnimationComponent,
98         ExpandCollapseComponent,
99         SdcTileModule,
100         PerfectScrollbarDirective,
101         SdcElementIconComponent,
102         FileOpenerComponent,
103         DownloadArtifactComponent,
104         UploadArtifactComponent,
105         PanelWrapperComponent,
106         ModalImportTypeComponent
107     ],
108     entryComponents: [SearchWithAutoCompleteComponent, SdcElementIconComponent, PaletteAnimationComponent]
109 })
110
111 export class UiElementsModule {
112 }