@nectary/components 4.1.1 → 4.1.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nectary/components",
3
- "version": "4.1.1",
3
+ "version": "4.1.2",
4
4
  "files": [
5
5
  "**/*/*.css",
6
6
  "**/*/*.json",
@@ -170,7 +170,7 @@ defineCustomElement('sinch-select-menu', class extends NectaryElement {
170
170
  #updateSearchValue = newValue => {
171
171
  const searchValue = newValue === undefined ? this.#$search.value.toLowerCase() : newValue;
172
172
  const searchChangedEvent = new CustomEvent('-search-change', {
173
- detail: newValue,
173
+ detail: searchValue,
174
174
  cancelable: true
175
175
  });
176
176
  this.dispatchEvent(searchChangedEvent);