{{uppy-image-uploader
imageUrl=this.step.banner
onUploadDone=(action "bannerUploadDone")
onUploadDeleted=(action "bannerUploadDeleted")
type="wizard-step-banner"
class="no-repeat contain-image"
id=(concat "wizard-step-" this.step.id "-banner-upload")
}}
{{wizard-text-editor value=this.step.raw_description}}
{{#wizard-subscription-container}}
{{wizard-mapper
inputs=this.step.condition
options=this.stepConditionOptions
}}
{{wizard-mapper
inputs=this.step.required_data
options=(hash
inputTypes="validation"
inputConnector="and"
wizardFieldSelection="value"
userFieldSelection="value"
keyPlaceholder="admin.wizard.submission_key"
context="step"
)
}}
{{#if this.step.required_data}}
{{/if}}
{{wizard-mapper
inputs=this.step.permitted_params
options=(hash
pairConnector="set"
inputTypes="association"
keyPlaceholder="admin.wizard.param_key"
valuePlaceholder="admin.wizard.submission_key"
context="step"
)
}}
{{/wizard-subscription-container}}
{{wizard-links
itemType="field"
current=this.currentField
items=this.step.fields
parentId=this.step.id
}}
{{#each this.step.fields as |field|}}
{{wizard-custom-field
field=field
step=this.step
wizard=this.wizard
currentFieldId=this.currentField.id
fieldTypes=this.fieldTypes
removeField="removeField"
wizardFields=this.wizardFields
subscribed=this.subscribed
}}
{{/each}}