@exmg/exm-grid 1.1.12 → 1.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,7 +9,7 @@ export declare class ToolbarSearch extends ExmgElement {
|
|
|
9
9
|
placeHolder: string;
|
|
10
10
|
search?: HTMLInputElement;
|
|
11
11
|
static styles: import("lit").CSSResult[];
|
|
12
|
-
private
|
|
12
|
+
private debouncer;
|
|
13
13
|
render(): import("lit-html").TemplateResult<1>;
|
|
14
14
|
_getValue(): string;
|
|
15
15
|
private handleKeyUp;
|
|
@@ -40,7 +40,7 @@ let ToolbarSearch = class ToolbarSearch extends ExmgElement {
|
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
notifyChange() {
|
|
43
|
-
this.
|
|
43
|
+
this.debouncer = debounce.Debouncer.debounce(this.debouncer, async.timeOut.after(200), () => {
|
|
44
44
|
this.dispatchEvent(new CustomEvent('exm-grid-toolbar-search-changed', {
|
|
45
45
|
bubbles: false,
|
|
46
46
|
composed: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exmg/exm-grid",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "exmg grid element",
|
|
6
6
|
"contributors": [
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"directory": "packages/exm-grid"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@exmg/exm-search": "^1.1.
|
|
41
|
-
"@exmg/exm-sortable": "^1.1.
|
|
40
|
+
"@exmg/exm-search": "^1.1.14",
|
|
41
|
+
"@exmg/exm-sortable": "^1.1.14"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@exmg/lit-base": "^3.0.0",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "b9c43c753dfb8a1f43c7a978335f066d199591d7"
|
|
56
56
|
}
|