open-vault/ui/app/templates/components/wizard/mounts-wizard.hbs
Jordan Reimer 9eaea7bc14
KMSE Wizard Steps (#15171)
* fixes issues in key-edit component

* adds capabilities checks for keys and providers

* adds distribute component to key and provider edit

* adds wizard steps for kmse
2022-04-26 13:17:42 -06:00

20 lines
684 B
Handlebars

<WizardContent @headerText={{capitalize this.currentMachine}} @glyph="tour">
{{component
this.stepComponent
mountSubtype=this.mountSubtype
mountName=this.mountName
actionText=this.actionText
nextFeature=this.nextFeature
nextStep=this.nextStep
featureState=this.wizard.featureState
needsConnection=this.needsConnection
needsEncryption=this.needsEncryption
isSupported=this.isSupported
onDone=this.onDone
onAdvance=this.onAdvance
onRepeat=this.onRepeat
onReset=this.onReset
class="wizard-step"
}}
{{component this.detailsComponent onAdvance=this.onAdvance onRepeat=this.onRepeat class="wizard-details"}}
</WizardContent>