This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/select-kit/addon/templates/components/selected-name.hbs

32 lines
849 B
Handlebars

{{#if selectKit.options.showFullTitle}}
<div role="button" lang={{lang}} {{action "onSelectedNameClick"}} title={{title}} data-value={{value}} data-name={{name}} class="select-kit-selected-name selected-name choice">
{{#if item.icon}}
{{d-icon item.icon}}
{{/if}}
<span class="name">
{{label}}
</span>
{{#if selectKit.options.clearOnClick}}
{{d-icon "times"}}
{{else}}
{{#if shouldDisplayClearableButton}}
{{d-button
class="btn-clear"
icon="times"
action=selectKit.deselect
actionParam=item
ariaLabel="clear_input"
}}
{{/if}}
{{/if}}
</div>
{{else}}
{{#if item.icon}}
<div role="textbox" lang={{lang}} class="select-kit-selected-name selected-name choice">
{{d-icon item.icon}}
</div>
{{/if}}
{{/if}}