{{#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}}