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


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

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

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