2020-02-03 14:22:14 +01:00
|
|
|
{{#if selectKit.options.showFullTitle}}
|
2021-09-24 11:52:07 -04:00
|
|
|
<div lang={{lang}} title={{title}} data-value={{value}} data-name={{name}} role="option" class="select-kit-selected-name selected-name choice">
|
2020-05-15 17:36:00 +02:00
|
|
|
{{#if item.icon}}
|
|
|
|
{{d-icon item.icon}}
|
|
|
|
{{/if}}
|
2020-02-03 14:22:14 +01:00
|
|
|
|
2020-05-15 17:36:00 +02:00
|
|
|
<span class="name">
|
|
|
|
{{label}}
|
|
|
|
</span>
|
2020-02-03 14:22:14 +01:00
|
|
|
|
2021-08-23 10:44:19 +02:00
|
|
|
{{#if shouldDisplayClearableButton}}
|
2022-06-30 12:30:50 +02:00
|
|
|
<DButton @class="btn-clear" @icon="times" @action={{selectKit.deselect}} @actionParam={{item}} @ariaLabel="clear_input" />
|
2020-02-03 14:22:14 +01:00
|
|
|
{{/if}}
|
2020-05-15 17:36:00 +02:00
|
|
|
</div>
|
2020-02-03 14:22:14 +01:00
|
|
|
{{else}}
|
|
|
|
{{#if item.icon}}
|
2021-09-24 11:52:07 -04:00
|
|
|
<div role="option" lang={{lang}} class="select-kit-selected-name selected-name choice">
|
2020-05-15 17:36:00 +02:00
|
|
|
{{d-icon item.icon}}
|
|
|
|
</div>
|
2020-02-03 14:22:14 +01:00
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|