operations/bulk-operation-stepper/custom-step.directive.ts
Selector | [customStep] |
Properties |
|
Inputs |
constructor(templateRef: TemplateRef
|
||||||
Parameters :
|
customStep |
Type : string
|
customStepButtonsDisabled |
Type : boolean
|
Default value : false
|
customStepCompleted |
Type : string
|
customStepOnNext |
Type : function
|
Default value : ({
stepper,
step
}) => {
// steps without own `onNext` handler, e.g. preview steps need to mark themselves as `completed`,
// otherwise stepper will not allow to move forth from them as soon as the user navigates back
// and the `c8y-stepper-buttons` component marks the step as incomplete.
step.completed = true;
stepper.next();
}
|
Public templateRef |
Type : TemplateRef<any>
|