-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Glimmer Navigate Input component (#19517)
* wip * wip * todo hackeweek remove * clean up * add documetnation and fix test failure * pr review changes * spelling * remove unused method
- Loading branch information
1 parent
0102e61
commit 5d4f9b8
Showing
11 changed files
with
132 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<div class="navigate-filter"> | ||
<div class="field" data-test-nav-input> | ||
<p class="control has-icons-left"> | ||
{{! template-lint-disable no-down-event-binding }} | ||
<input | ||
class="filter input" | ||
value={{@filter}} | ||
placeholder={{or @placeholder "Filter items"}} | ||
type="text" | ||
data-test-component="navigate-input" | ||
{{on "input" this.handleInput}} | ||
{{on "keyup" this.handleKeyUp}} | ||
{{on "keydown" this.handleKeyPress}} | ||
{{on "focus" (fn this.setFilterFocused true)}} | ||
{{on "blur" (fn this.setFilterFocused false)}} | ||
/> | ||
<Icon @name="search" class="search-icon has-text-grey-light" /> | ||
</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.