2020-05-18 00:35:53 +03:00
|
|
|
<div class="ember-power-select-search" {{on "mousedown" this.captureMousedown}}>
|
2019-06-18 13:47:21 +03:00
|
|
|
{{svg-jar "search" class="gh-nav-search-icon"}}
|
|
|
|
<input type="search"
|
2020-05-18 00:35:53 +03:00
|
|
|
{{autofocus}}
|
|
|
|
{{did-insert this.registerInput}}
|
|
|
|
{{on "input" this.search}}
|
|
|
|
{{on "mousedown" this.captureMousedown}}
|
|
|
|
{{on "keydown" this.handleKeydown}}
|
|
|
|
{{on "keyup" this.handleKeyup}}
|
2019-06-18 13:47:21 +03:00
|
|
|
autocomplete="off"
|
|
|
|
autocorrect="off"
|
|
|
|
autocapitalize="off"
|
|
|
|
autofocus="true"
|
2020-05-18 00:35:53 +03:00
|
|
|
value={{if @extra.labelPath (get @selected @extra.labelPath) @selected}}
|
2019-12-13 17:20:29 +03:00
|
|
|
spellcheck="false"
|
|
|
|
role="combobox"
|
2020-05-18 00:35:53 +03:00
|
|
|
placeholder={{@placeholder}}
|
|
|
|
>
|
2016-04-19 18:55:10 +03:00
|
|
|
</div>
|