aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/dynamic-element/dynamic-element.module.ts
blob: 18b044bc9d3eccd89669e4ed16124031443a19c2 (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
import { NgModule } from "@angular/core";
import { UiElementCheckBoxComponent } from './elements-ui/checkbox/ui-element-checkbox.component';
import { UiElementDropDownComponent } from './elements-ui/dropdown/ui-element-dropdown.component';
import { UiElementInputComponent } from './elements-ui/input/ui-element-input.component';
import { DynamicElementComponent } from "app/ng2/components/dynamic-element/dynamic-element.component";
import { BrowserModule } from '@angular/platform-browser'
import { FormsModule, ReactiveFormsModule } from '@angular/forms'
import { UiElementPopoverInputComponent } from "./elements-ui/popover-input/ui-element-popover-input.component";
import {PopoverModule} from "../popover/popover.module";
import {TooltipModule} from "../tooltip/tooltip.module";

@NgModule({
    declarations: [
        DynamicElementComponent,
        UiElementInputComponent,
        UiElementCheckBoxComponent,
        UiElementDropDownComponent,
        UiElementPopoverInputComponent
    ],
    imports: [
        BrowserModule,
        FormsModule,
        PopoverModule,
        ReactiveFormsModule,
        TooltipModule
    ],
    exports: [
        DynamicElementComponent
    ],
    providers: []
})
export class DynamicElementModule {

}