Drawer now doesn't use important for it's display property. Chip list passes instance of list on search.

This commit is contained in:
Matt Mo 2021-02-12 18:53:55 -08:00
parent 857c9a2ecc
commit 9bc8713a97
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ class ChipList extends IgniteElement {
if (this.onSearchCallback) {
clearTimeout(this.onSearchCallback);
}
this.onSearchCallback = setTimeout(() => this.onSearch(this.input.textContent.trim()), this.onSearchDelay);
this.onSearchCallback = setTimeout(() => this.onSearch(this, this.input.textContent.trim()), this.onSearchDelay);
}
})
),

View File

@ -176,7 +176,7 @@ class Drawer extends IgniteElement {
.style("width", this.width)
.style("height", this.height)
.style("padding", this.padding)
.style("display", this.show, true, value => value ? "flex" : "none")
.style("display", this.show, false, value => value ? "flex" : "none")
.class(this.containerClass)
.class("container")
.child(