From: Arundathi Patil Date: Mon, 18 Feb 2019 14:36:57 +0000 (+0530) Subject: designer component X-Git-Tag: 0.4.2~264^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F69%2F78669%2F1;p=ccsdk%2Fcds.git designer component Added designer component selector to modify component Issue-ID: CCSDK-975 Change-Id: I0d80f003dbf6de12b9a690156836fa7f05cdcc75 Signed-off-by: Arundathi Patil --- diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html index c41bdafb7..1ba944a30 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html +++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.component.html @@ -61,6 +61,7 @@ limitations under the License. + @@ -71,6 +72,18 @@ limitations under the License.
+ + + + Type + + + +
+
vnf-netconf-device
+
+
+ @@ -91,6 +104,56 @@ limitations under the License.
+ + + + Interface + + + +
+
{{item}}
+
+
+ + + + + Artifacts + + + +
+
{{item}}
+
+
+ + + + + Inputs + + + +
+
{{item}}
+
+
+ + + + + Capabilities + + + +
+
{{item}}
+
+
+ + + \ No newline at end of file diff --git a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts index eed926b7f..9ccb9977f 100644 --- a/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts +++ b/cds-ui/client/src/app/feature-modules/blueprint/modify-template/modify-template.module.ts @@ -25,13 +25,16 @@ import { CdkTableModule } from '@angular/cdk/table'; import { ModifyTemplateComponent } from './modify-template.component'; import { ModifyTemplateRoutingModule } from './modify-template-routing.module'; import { AppMaterialModule } from '../../../common/modules/app-material.module'; +import { DesignerComponent } from './designer/designer.component'; @NgModule({ declarations: [ - ModifyTemplateComponent + ModifyTemplateComponent, + DesignerComponent ], exports: [ - ModifyTemplateComponent + ModifyTemplateComponent, + DesignerComponent ], imports: [ CommonModule,