aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/connection-wizard/connection-wizard.module.ts
blob: 6b4b4128c1a680fe67ac95a86c40a1c3fc80c298 (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
import {ToNodeStepComponent} from "./to-node-step/to-node-step.component";
import {NgModule} from "@angular/core";
import {FromNodeStepComponent} from "./from-node-step/from-node-step.component";
import {PropertiesStepComponent} from "./properties-step/properties-step.component";
import {ConnectionWizardService} from "./connection-wizard.service";
import {SelectRequirementOrCapabilityModule} from "../../components/logic/select-requirement-or-capability/select-requirement-or-capability.module";
import {PropertyTableModule} from "../../components/logic/properties-table/property-table.module";
import {FormElementsModule} from "../../components/ui/form-components/form-elements.module";
import {ConnectionWizardHeaderComponent} from "./connection-wizard-header/connection-wizard-header.component";
import {ConnectionPropertiesViewComponent} from "./connection-properties-view/connection-properties-view.component";
import {BrowserModule} from "@angular/platform-browser";

@NgModule({
    declarations: [
        FromNodeStepComponent,
        ToNodeStepComponent,
        PropertiesStepComponent,
        ConnectionWizardHeaderComponent,
        ConnectionPropertiesViewComponent
    ],
    imports: [
        FormElementsModule,
        PropertyTableModule,
        SelectRequirementOrCapabilityModule,
        BrowserModule
    ],
    exports: [
        FromNodeStepComponent,
        ToNodeStepComponent,
        PropertiesStepComponent,
        ConnectionWizardHeaderComponent,
        ConnectionPropertiesViewComponent
    ],
    entryComponents: [FromNodeStepComponent,
        ToNodeStepComponent,
        PropertiesStepComponent,
        ConnectionWizardHeaderComponent,
        ConnectionPropertiesViewComponent
    ],
    providers: [ConnectionWizardService]
})
export class ConnectionWizardModule {
}