Drawer now doesn't use important for it's display property. Chip list passes instance of list on search.
This commit is contained in:
parent
857c9a2ecc
commit
9bc8713a97
@ -214,7 +214,7 @@ class ChipList extends IgniteElement {
|
|||||||
if (this.onSearchCallback) {
|
if (this.onSearchCallback) {
|
||||||
clearTimeout(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);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
),
|
),
|
||||||
|
@ -176,7 +176,7 @@ class Drawer extends IgniteElement {
|
|||||||
.style("width", this.width)
|
.style("width", this.width)
|
||||||
.style("height", this.height)
|
.style("height", this.height)
|
||||||
.style("padding", this.padding)
|
.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(this.containerClass)
|
||||||
.class("container")
|
.class("container")
|
||||||
.child(
|
.child(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user