@aquera/nile-elements 0.1.27 → 0.1.28

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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent nile-elements following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "nile-elements",
6
- "version": "0.1.27",
6
+ "version": "0.1.28",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -118,7 +118,6 @@ export class NileAutoComplete extends NileElement {
118
118
  private handleSelect(event: CustomEvent) {
119
119
  this.value = event.detail.value;
120
120
  this.emit('nile-complete', { value: event.detail.value });
121
- this.emit('nile-input', { value: event.detail.value });
122
121
  this.isDropdownOpen = false;
123
122
  this.dropdownElement?.hide();
124
123
  }