diff options
author | Ezhilarasi <ezhrajam@in.ibm.com> | 2019-02-07 19:35:47 +0530 |
---|---|---|
committer | Ezhilarasi R <ezhrajam@in.ibm.com> | 2019-02-07 14:11:20 +0000 |
commit | 6e567a6ebede852869b607204b0965a6396e85e7 (patch) | |
tree | 7c0654dc62e3391605c04fcfaa5b89701ce04625 /cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html | |
parent | 7375775ff3ee600fc1f8633dd21ec35f86c050b7 (diff) |
Data Dictionary Wizard
Change-Id: I926c58c7dfda20cee8dfd3f5f5e2e217de8a5912
Issue-ID: CCSDK-804
Signed-off-by: Ezhilarasi <ezhrajam@in.ibm.com>
Diffstat (limited to 'cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html')
-rw-r--r-- | cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html index df6cc7363..6d3186c98 100644 --- a/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html +++ b/cds-ui/client/src/app/feature-modules/resource-definition/resource-definition.component.html @@ -18,6 +18,32 @@ * ============LICENSE_END========================================================= */--> -<app-cbawizard [appName]="appName"></app-cbawizard> -<router-outlet></router-outlet> - +<!-- <app-cbawizard [appName]="appName"></app-cbawizard> +<router-outlet></router-outlet> --> +<mat-card class="CBAform"> + <mat-card-content> + <mat-horizontal-stepper [linear]="isLinear" #stepper> + <mat-step [stepControl]="firstFormGroup"> + <ng-template matStepLabel>Resource creation Method</ng-template> + <app-resource-creation></app-resource-creation> + <div> + <button mat-button matStepperNext style="color:white;background:gray">Proceed</button> + </div> + </mat-step> + <mat-step [stepControl]="secondFormGroup"> + <ng-template matStepLabel>Resource Edit/Validate </ng-template> + <app-resource-edit></app-resource-edit> + <!-- <div> + <button mat-button matStepperNext style="color:white;background:gray">Proceed</button> + </div> --> + </mat-step> + <mat-step [stepControl]="thirdFormGroup"> + <ng-template matStepLabel>Save in Database</ng-template> + <app-save-resource></app-save-resource> + <div> + <button mat-button matStepperNext style="color:white;background:gray">Save</button> + </div> + </mat-step> + </mat-horizontal-stepper> + </mat-card-content> +</mat-card>
\ No newline at end of file |