summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/graph/connection-wizard/connection-wizard.module.ts
blob: 5039e573db6cc716777fe0de1974c049c1c14ad9 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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";
import {RelationshipOperationsStepComponent} from './relationship-operations-step/relationship-operations-step.component';
import {InterfaceOperationModule} from "../../../interface-operation/interface-operation.module";
import {UiElementsModule} from "../../../../components/ui/ui-elements.module";
import {TranslateModule} from "../../../../shared/translator/translate.module";
import {SvgIconModule} from "onap-ui-angular/dist/svg-icon/svg-icon.module";
import {OperationCreatorModule} from "../../../interface-operation/operation-creator/operation-creator.module";
import {CreateInterfaceOperationComponent} from './create-interface-operation/create-interface-operation.component';
import {DropdownModule} from "onap-ui-angular/dist/form-elements/dropdown/dropdown.module";
import {InputModule} from "onap-ui-angular/dist/form-elements/text-elements/input/input.module";
import {FormsModule, ReactiveFormsModule} from "@angular/forms";
import {SdcUiComponentsModule} from "onap-ui-angular/dist";
import {CreateInputRowComponent} from './create-interface-operation/create-input-row/create-input-row.component';
import {InterfaceOperationListComponent} from './relationship-operations-step/interface-operation-list/interface-operation-list.component';

@NgModule({
    declarations: [
        FromNodeStepComponent,
        ToNodeStepComponent,
        PropertiesStepComponent,
        ConnectionWizardHeaderComponent,
        ConnectionPropertiesViewComponent,
        RelationshipOperationsStepComponent,
        CreateInterfaceOperationComponent,
        CreateInputRowComponent,
        InterfaceOperationListComponent
    ],
  imports: [
    FormElementsModule,
    PropertyTableModule,
    SelectRequirementOrCapabilityModule,
    BrowserModule,
    InterfaceOperationModule,
    UiElementsModule,
    TranslateModule,
    SvgIconModule,
    OperationCreatorModule,
    DropdownModule,
    InputModule,
    FormsModule,
    SdcUiComponentsModule,
    ReactiveFormsModule
  ],
    exports: [
        FromNodeStepComponent,
        ToNodeStepComponent,
        PropertiesStepComponent,
        RelationshipOperationsStepComponent,
        ConnectionWizardHeaderComponent,
        ConnectionPropertiesViewComponent
    ],
    entryComponents: [FromNodeStepComponent,
        ToNodeStepComponent,
        PropertiesStepComponent,
        RelationshipOperationsStepComponent,
        ConnectionWizardHeaderComponent,
        ConnectionPropertiesViewComponent
    ],
    providers: [ConnectionWizardService]
})
export class ConnectionWizardModule {
}