{{#if hasTypes}}
{{activeTypeLabel}}
{{#if showTypes}}
{{#each selectorTypes as |item|}}
{{wizard-mapper-selector-type
activeType=activeType
item=item
toggle=(action "toggleType")}}
{{/each}}
{{/if}}
{{else}}
{{activeTypeLabel}}
{{/if}}
{{#if showText}}
{{input
type="text"
value=value
placeholder=(i18n placeholderKey)
change=(action "changeInputValue")}}
{{/if}}
{{#if showComboBox}}
{{combo-box
value=value
content=comboBoxContent
onChange=(action "changeValue")
options=(hash
none=placeholderKey
allowAny=comboBoxAllowAny
)}}
{{/if}}
{{#if showMultiSelect}}
{{multi-select
content=multiSelectContent
value=value
onChange=(action "changeValue")
options=multiSelectOptions}}
{{/if}}
{{#if showList}}
{{wizard-value-list
values=value
addKey=placeholderKey
onChange=(action "changeValue")}}
{{/if}}
{{#if showTag}}
{{tag-chooser
tags=value
onChange=(action "changeValue")
options=(hash
none=placeholderKey
filterable=true
)}}
{{/if}}
{{#if showUser}}
{{user-selector
includeMessageableGroups="true"
placeholderKey=placeholderKey
usernames=value
autocomplete="discourse"
onChangeCallback=(action "changeUserValue")}}
{{/if}}