@dile/ui 2.1.36 → 2.1.37

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.
@@ -108,7 +108,7 @@ export class DileInputSearch extends LitElement {
108
108
  }
109
109
 
110
110
  dispatchSearch(key) {
111
- this.dispatchEvent(new CustomEvent('@dile-input-search=${this.hideErrorOnInteraction}', {
111
+ this.dispatchEvent(new CustomEvent('dile-input-search', {
112
112
  bubbles: true,
113
113
  composed: true,
114
114
  detail: {
@@ -289,6 +289,7 @@ export class DileSelectAjax extends DileEmmitChange(LitElement) {
289
289
  }
290
290
 
291
291
  onTextInput(e) {
292
+ console.log('onTextInput', e);
292
293
  this.keyword = e.detail.keyword;
293
294
  this.loadData();
294
295
  this.hideErrorOnInteraction();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/ui",
3
- "version": "2.1.36",
3
+ "version": "2.1.37",
4
4
  "description": "UI Core components from dile-components.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "6ea2ac2779d56aa2edf23147fa8a173eed9db29b"
29
+ "gitHead": "6440bacb46bfcd2bb4a5ce7016ea9e0ebd0acf4a"
30
30
  }