2021-08-23 10:44:19 +02:00
|
|
|
<div class="select-kit-header-wrapper">
|
2022-07-05 10:41:31 -07:00
|
|
|
{{#each this.icons as |icon|}} {{d-icon icon}} {{/each}}
|
2017-11-21 11:53:09 +01:00
|
|
|
|
2022-07-05 10:41:31 -07:00
|
|
|
{{component
|
|
|
|
this.selectKit.options.selectedNameComponent
|
|
|
|
tabindex=this.tabindex
|
|
|
|
item=this.selectedContent
|
|
|
|
selectKit=this.selectKit
|
2020-02-03 14:22:14 +01:00
|
|
|
}}
|
2017-11-21 11:53:09 +01:00
|
|
|
|
2022-07-05 10:41:31 -07:00
|
|
|
{{#if this.shouldDisplayClearableButton}}
|
|
|
|
<DButton
|
2024-09-13 11:50:52 -04:00
|
|
|
@icon="xmark"
|
2022-07-05 10:41:31 -07:00
|
|
|
@action={{this.selectKit.onClearSelection}}
|
|
|
|
@ariaLabel="clear_input"
|
2023-08-31 11:49:35 +02:00
|
|
|
class="btn-clear"
|
2022-07-05 10:41:31 -07:00
|
|
|
/>
|
2021-08-23 10:44:19 +02:00
|
|
|
{{/if}}
|
|
|
|
|
2022-07-05 10:41:31 -07:00
|
|
|
{{d-icon this.caretIcon class="caret-icon"}}
|
2021-08-23 10:44:19 +02:00
|
|
|
</div>
|