2020-02-03 21:22:14 +08:00
|
|
|
{{#if selectKit.options.showFullTitle}}
|
2021-09-24 23:52:07 +08: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 23:36:00 +08:00
|
|
|
{{#if item.icon}}
|
|
|
|
{{d-icon item.icon}}
|
|
|
|
{{/if}}
|
2020-02-03 21:22:14 +08:00
|
|
|
|
2020-05-15 23:36:00 +08:00
|
|
|
<span class="name">
|
|
|
|
{{label}}
|
|
|
|
</span>
|
2020-02-03 21:22:14 +08:00
|
|
|
|
2021-08-23 16:44:19 +08:00
|
|
|
{{#if shouldDisplayClearableButton}}
|
|
|
|
{{d-button
|
|
|
|
class="btn-clear"
|
|
|
|
icon="times"
|
|
|
|
action=selectKit.deselect
|
|
|
|
actionParam=item
|
|
|
|
ariaLabel="clear_input"
|
|
|
|
}}
|
2020-02-03 21:22:14 +08:00
|
|
|
{{/if}}
|
2020-05-15 23:36:00 +08:00
|
|
|
</div>
|
2020-02-03 21:22:14 +08:00
|
|
|
{{else}}
|
|
|
|
{{#if item.icon}}
|
2021-09-24 23:52:07 +08:00
|
|
|
<div role="option" lang={{lang}} class="select-kit-selected-name selected-name choice">
|
2020-05-15 23:36:00 +08:00
|
|
|
{{d-icon item.icon}}
|
|
|
|
</div>
|
2020-02-03 21:22:14 +08:00
|
|
|
{{/if}}
|
|
|
|
{{/if}}
|