- Components
-
StepperBulkTypeDeviceProfileComponent
operations/stepper-bulk-type-device-profile/stepper-bulk-type-device-profile.component.ts
<c8y-bulk-operation-stepper [type]="type">
<ng-container
*customStep="
'Select device profile' | translate;
completed: !!selectedDeviceProfile;
buttonsDisabled: !selectedDeviceProfile;
onNext: goToConfirmSelection.bind(this)
"
>
<c8y-select-device-profile-step
(deviceProfile)="onDeviceProfileSelected($event)"
class="d-contents"
></c8y-select-device-profile-step>
</ng-container>
<ng-container *customStep="'Confirm selected device profile' | translate">
<c8y-confirm-device-profile-selection-step
class="d-contents"
[selectedDeviceProfile]="selectedDeviceProfile"
></c8y-confirm-device-profile-selection-step>
</ng-container>
</c8y-bulk-operation-stepper>