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