- Components
-
StepperBulkTypeSoftwareComponent
operations/stepper-bulk-type-software/stepper-bulk-type-software.component.ts
<c8y-bulk-operation-stepper [type]="type">
<ng-container
*customStep="
'Select software' | translate;
completed: !!selectedSoftware.length;
buttonsDisabled: !selectedSoftware.length;
onNext: confirmSoftwareSelection.bind(this)
"
>
<c8y-select-software-step
(software)="onSoftwareSelected($event)"
class="d-contents"
></c8y-select-software-step>
</ng-container>
<ng-container *customStep="'Confirm selected software' | translate">
<c8y-confirm-software-selection-step
class="d-contents"
[selectedItems]="selectedSoftware"
></c8y-confirm-software-selection-step>
</ng-container>
</c8y-bulk-operation-stepper>