@dile/ui 2.1.34 → 2.1.35

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.
@@ -212,7 +212,7 @@ export class DileSelectAjax extends DileEmmitChange(LitElement) {
212
212
  @focus=${this.onFocus}
213
213
  @dile-input-search=${this.onTextInput}
214
214
  delay="${this.delay}"
215
- @element-changed=${this.hideErrorOnInteraction}
215
+ @element-changed=${this.inputSearchChanged}
216
216
  ></dile-input-search>
217
217
  <div class="anchor">
218
218
  <section class="${this.opened && this.keyword.length > 0 ? 'opened' : ''}">
@@ -294,6 +294,11 @@ export class DileSelectAjax extends DileEmmitChange(LitElement) {
294
294
  this.hideErrorOnInteraction();
295
295
  }
296
296
 
297
+ inputSearchChanged(e) {
298
+ e.stopPropagation();
299
+ this.hideErrorOnInteraction();
300
+ }
301
+
297
302
  hideErrorOnInteraction() {
298
303
  if (this.hideErrorOnInput && this.errored) {
299
304
  this.clearError();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dile/ui",
3
- "version": "2.1.34",
3
+ "version": "2.1.35",
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": "e3f1c5d2850016066910a97ca26eee78543bb247"
29
+ "gitHead": "c46fe754ac1cd5dd2a0fd628915066d651b02549"
30
30
  }