aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/ui/form-components/form-elements.module.ts
blob: b35d3ae3f47e30d578d657e71616d68a0d87f9d6 (plain)
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
/**
 * Created by rc2122 on 9/5/2017.
 */
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { SdcUiComponentsModule } from 'onap-ui-angular/dist';
import { PopoverModule } from '../popover/popover.module';
import { TooltipModule } from '../tooltip/tooltip.module';
import { CheckboxModule } from './checkbox/checkbox.module';
import { UiElementDropDownComponent } from './dropdown/ui-element-dropdown.component';
import { UiElementInputComponent } from './input/ui-element-input.component';
import { UiElementIntegerInputComponent } from './integer-input/ui-element-integer-input.component';
import { UiElementPopoverInputComponent } from './popover-input/ui-element-popover-input.component';
import { RadioButtonComponent } from './radio-buttons/radio-buttons.component';
import { UiElementBase } from './ui-element-base.component';

@NgModule({
    imports: [
        BrowserModule,
        FormsModule,
        PopoverModule,
        ReactiveFormsModule,
        TooltipModule,
        CheckboxModule,
        SdcUiComponentsModule],

    declarations: [UiElementDropDownComponent,
        UiElementInputComponent,
        UiElementIntegerInputComponent,
        UiElementPopoverInputComponent,
        UiElementBase,
        RadioButtonComponent],

    exports: [UiElementDropDownComponent,
        UiElementInputComponent,
        UiElementIntegerInputComponent,
        UiElementPopoverInputComponent,
        RadioButtonComponent,
        TooltipModule,
        CheckboxModule]
})
export class FormElementsModule { }