diff --git a/chip-list.js b/chip-list.js index 75ca7bb..897b2eb 100644 --- a/chip-list.js +++ b/chip-list.js @@ -32,8 +32,8 @@ class ChipList extends IgniteElement { mt-chip-list > .input-container { display: flex; flex-direction: column; - align-items: center; justify-content: center; + flex: 1; } mt-chip-list > .input-container > .input { @@ -102,18 +102,12 @@ class ChipList extends IgniteElement { this.items.pop(); } }) - .on("keydown", () => { + .on("keydown", (e) => { //If we are not searching and a key was pressed, open the search box. - if (!this.searching) { + if (!this.searching && (e.key !== "Backspace" || (e.key == "Backspace" && e.target.textContent.length > 0))) { this.searching = true; } }) - .onBlur((e) => { - //Force the input to not lose focus if we are editing. - if (this.editing) { - e.target.focus(); - } - }) ), new Popper() .property("show", this.searching) @@ -126,21 +120,18 @@ class ChipList extends IgniteElement { new list(this.searchResults, item => { return new div(item.content).class("search-result p-2").onClick(() => this.searchResultClick(item)); }), - `