ecosystem/plugin-setup-stepper/plugin-setup-stepper.component.ts
selector | c8y-plugin-setup-stepper |
templateUrl | ./plugin-setup-stepper.component.html |
Properties |
Methods |
constructor(appState: AppStateService, stepper: C8yStepper, setup: SetupComponent)
|
||||||||||||
Parameters :
|
back |
back()
|
Returns :
void
|
next |
next()
|
Returns :
void
|
appId$ |
Type : Observable<string | number>
|
Public stepper |
Type : C8yStepper
|
<c8y-app-plugins *ngIf="appId$ | async as appId" [appId]="appId"></c8y-app-plugins>
<div class="card-footer separator d-flex j-c-center">
<button
class="btn btn-default"
type="button"
*ngIf="stepper.selectedIndex !== 0"
(click)="back()"
translate
>
Previous
</button>
<button class="btn btn-primary" type="submit" (click)="next()" translate>
Continue
</button>
</div>