From c43c812f778c56c981a8901cb1db121cf40bb1c2 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Mon, 18 Feb 2019 20:06:57 +0530 Subject: designer component Added designer component selector to modify component Issue-ID: CCSDK-975 Change-Id: I0d80f003dbf6de12b9a690156836fa7f05cdcc75 Signed-off-by: Arundathi Patil --- .../modify-template/modify-template.component.html | 63 ++++++++++++++++++++++ .../modify-template/modify-template.module.ts | 7 ++- 2 files changed, 68 insertions(+), 2 deletions(-) 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, -- cgit 1.2.3-korg