Catalog alignment
[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 {SdcElementIconComponent} from "./sdc-element-icon/sdc-element-icon.component";
46 import {PanelWrapperComponent} from "./panel-wrapper/panel-wrapper.component";
47
48 @NgModule({
49     declarations: [
50         LoaderComponent,
51         SearchBarComponent,
52         SearchWithAutoCompleteComponent,
53         PaletteAnimationComponent,
54         ExpandCollapseComponent,
55         PerfectScrollbarDirective,
56         FileOpenerComponent,
57         SdcElementIconComponent,
58         DownloadArtifactComponent,
59         PanelWrapperComponent
60     ],
61
62     imports: [
63         SdcUiComponentsModule,
64         BrowserModule,
65         FormsModule,
66         CommonModule,
67         DynamicElementModule,
68         NavbarModule,
69         FormElementsModule,
70         ModalModule,
71         PopoverModule,
72         TabModule,
73         TooltipModule,
74         MultiStepsWizardModule,
75         MenuListModule,
76         MenuListNg2Module,
77         SdcTileModule
78     ],
79     exports: [
80         LoaderComponent,
81         MultiStepsWizardModule,
82         SearchBarComponent,
83         SearchWithAutoCompleteComponent,
84         DynamicElementModule,
85         NavbarModule,
86         FormElementsModule,
87         ModalModule,
88         PopoverModule,
89         TabModule,
90         TooltipModule,
91         MenuListModule,
92         MenuListNg2Module,
93         PaletteAnimationComponent,
94         ExpandCollapseComponent,
95         SdcTileModule,
96         PerfectScrollbarDirective,
97         SdcElementIconComponent,
98         FileOpenerComponent,
99         DownloadArtifactComponent,
100         PanelWrapperComponent
101     ],
102     entryComponents: [SearchWithAutoCompleteComponent, SdcElementIconComponent, PaletteAnimationComponent]
103 })
104
105 export class UiElementsModule {
106 }