@aquera/nile-elements 0.0.78 → 0.0.79

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.0.78",
6
+ "version": "0.0.79",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -613,11 +613,12 @@ export class NileSelect extends NileElement implements NileFormControl {
613
613
  el.hidden = this.showSelected;
614
614
  }
615
615
  });
616
-
616
+
617
617
  // Emit after updating
618
618
  this.updateComplete.then(() => {
619
619
  this.emit('nile-input', { value: this.value, name: this.name });
620
620
  this.emit('nile-change', { value: this.value, name: this.name });
621
+ this.emit('nile-tag-remove', { value: this.value, name: this.name,removedtagvalue:option.value });
621
622
  });
622
623
  }
623
624
  }