Fixed styling issue with chip. Remove placeholder search results. Added the ability to change individual chip background and color within the item itself. And a few other styling tweaks.
This commit is contained in:
parent
e036ef1d5c
commit
3326133f7b
12
chip-list.js
12
chip-list.js
@ -18,6 +18,7 @@ class ChipList extends IgniteElement {
|
||||
border: solid 0.13rem transparent;
|
||||
border-radius: 0.3rem;
|
||||
padding: 0.2rem;
|
||||
margin-left: calc((0.13rem + 0.2rem) * -1);
|
||||
}
|
||||
|
||||
mt-chip-list:hover {
|
||||
@ -66,10 +67,7 @@ class ChipList extends IgniteElement {
|
||||
search: true,
|
||||
searching: false,
|
||||
showSearchResults: true,
|
||||
searchResults: [
|
||||
{ id: 502, corporation: "Starbucks", content: "Starbucks #1, Spokane WA" },
|
||||
{ id: 503, corporation: "Starbucks", content: "Starbucks #2, Spokane WA" }
|
||||
],
|
||||
searchResults: null,
|
||||
searchPlaceholder: "No results found.",
|
||||
searchFooter: null,
|
||||
blurTimeout: null,
|
||||
@ -94,8 +92,8 @@ class ChipList extends IgniteElement {
|
||||
new list(this.items, (item) => {
|
||||
return new Chip()
|
||||
.id(item.id)
|
||||
.property("color", this.chipColor)
|
||||
.property("background", this.chipBackground)
|
||||
.property("color", item.chipColor ? item.chipColor : this.chipColor)
|
||||
.property("background", item.chipBackground ? item.chipBackground : this.chipBackground)
|
||||
.property("onDelete", () => { this.items = this.items.filter(needle => needle != item); })
|
||||
.child(item.content);
|
||||
}),
|
||||
@ -206,7 +204,7 @@ class ChipList extends IgniteElement {
|
||||
this.items = [];
|
||||
}
|
||||
|
||||
this.items.push({ content: item.content });
|
||||
this.items.push(item);
|
||||
this.searching = false;
|
||||
this.input.innerHTML = "";
|
||||
this.input.focus();
|
||||
|
Loading…
x
Reference in New Issue
Block a user