Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Search input type #974

Merged
merged 3 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,11 @@ export class UmbIconPickerModalElement extends UmbModalBaseElement<UmbIconPicker

renderSearchbar() {
return html` <uui-input
@keyup="${this.#filterIcons}"
type="search"
placeholder="Type to filter..."
label="Type to filter icons"
id="searchbar">
id="searchbar"
@keyup="${this.#filterIcons}">
<uui-icon name="search" slot="prepend" id="searchbar_icon"></uui-icon>
</uui-input>`;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,11 @@ export class UmbDashboardTranslationDictionaryElement extends UmbLitElement {
${this.localize.term('dictionary_createNew')}
</uui-button>
<uui-input
@keyup="${this.#filter}"
type="search"
id="searchbar"
placeholder=${this.localize.term('placeholders_filter')}
label=${this.localize.term('placeholders_filter')}
id="searchbar">
@keyup="${this.#filter}">
<div slot="prepend">
<uui-icon name="search" id="searchbar_icon"></uui-icon>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ export class UmbDashboardExamineSearcherElement extends UmbLitElement {
<p>Search the ${this.searcherName} and view the results</p>
<div class="flex">
<uui-input
type="search"
id="search-input"
placeholder="Type to filter..."
label="Type to filter"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ export class UmbDataTypePickerFlowModalElement extends UmbLitElement {

private _renderFilter() {
return html` <uui-input
type="search"
id="filter"
@input="${this._handleFilterInput}"
placeholder="Type to filter..."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ export class UmbPropertyEditorUIPickerModalElement extends UmbLitElement {

private _renderFilter() {
return html` <uui-input
type="search"
id="filter"
@input="${this._handleFilterInput}"
placeholder="Type to filter..."
Expand Down
Loading