{{#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)}}
{{/if}}
{{#if showComboBox}}
{{combo-box
value=value
content=comboBoxContent
onChange=(action (mut value))
options=(hash
none=placeholderKey
)}}
{{/if}}
{{#if showMultiSelect}}
{{multi-select
content=multiSelectContent
value=value
onChange=(action (mut value))
options=multiSelectOptions}}
{{/if}}
{{#if showList}}
{{value-list
values=value
addKey=placeholderKey}}
{{/if}}
{{#if showTag}}
{{tag-chooser
tags=value
filterable=true
options=(hash
none=placeholderKey
)}}
{{/if}}
{{#if showUser}}
{{user-selector
includeMessageableGroups='true'
placeholderKey=placeholderKey
usernames=value
autocomplete="discourse"}}
{{/if}}