Major changes included: - better support for screen readers - trapping focus in modals - better tabbing order in composer - alerts on no content found/number of items found - better autofocus in modals - mini-tag-chooser is now a multi-select component - each multi-select-component will now display selection on one row
21 lines
460 B
Handlebars
21 lines
460 B
Handlebars
<div class="select-kit-header-wrapper">
|
|
{{#each icons as |icon|}} {{d-icon icon}} {{/each}}
|
|
|
|
{{component selectKit.options.selectedNameComponent
|
|
tabindex=tabindex
|
|
item=selectedContent
|
|
selectKit=selectKit
|
|
}}
|
|
|
|
{{#if shouldDisplayClearableButton}}
|
|
{{d-button
|
|
class="btn-clear"
|
|
icon="times"
|
|
action=selectKit.onClearSelection
|
|
ariaLabel="clear_input"
|
|
}}
|
|
{{/if}}
|
|
|
|
{{d-icon caretIcon class="caret-icon"}}
|
|
</div>
|