Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / components / ui / form-components / form-elements.module.ts
1 /**
2  * Created by rc2122 on 9/5/2017.
3  */
4 import { NgModule } from '@angular/core';
5 import { FormsModule, ReactiveFormsModule } from '@angular/forms';
6 import { BrowserModule } from '@angular/platform-browser';
7 import { SdcUiComponentsModule } from 'onap-ui-angular/dist';
8 import { PopoverModule } from '../popover/popover.module';
9 import { TooltipModule } from '../tooltip/tooltip.module';
10 import { CheckboxModule } from './checkbox/checkbox.module';
11 import { UiElementDropDownComponent } from './dropdown/ui-element-dropdown.component';
12 import { UiElementInputComponent } from './input/ui-element-input.component';
13 import { UiElementIntegerInputComponent } from './integer-input/ui-element-integer-input.component';
14 import { UiElementPopoverInputComponent } from './popover-input/ui-element-popover-input.component';
15 import { RadioButtonComponent } from './radio-buttons/radio-buttons.component';
16 import { UiElementBase } from './ui-element-base.component';
17
18 @NgModule({
19     imports: [
20         BrowserModule,
21         FormsModule,
22         PopoverModule,
23         ReactiveFormsModule,
24         TooltipModule,
25         CheckboxModule,
26         SdcUiComponentsModule],
27
28     declarations: [UiElementDropDownComponent,
29         UiElementInputComponent,
30         UiElementIntegerInputComponent,
31         UiElementPopoverInputComponent,
32         UiElementBase,
33         RadioButtonComponent],
34
35     exports: [UiElementDropDownComponent,
36         UiElementInputComponent,
37         UiElementIntegerInputComponent,
38         UiElementPopoverInputComponent,
39         RadioButtonComponent,
40         TooltipModule,
41         CheckboxModule]
42 })
43 export class FormElementsModule { }