@aquera/nile-elements 0.0.26 → 0.0.27

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.26",
6
+ "version": "0.0.27",
7
7
  "main": "dist/src/index.js",
8
8
  "type": "module",
9
9
  "module": "dist/src/index.js",
@@ -577,7 +577,7 @@ export class NileSelect extends NileElement implements NileFormControl {
577
577
 
578
578
  // Select only the options that match the new value
579
579
  this.setSelectedOptions(
580
- allOptions.filter(el => value.includes(el.value))
580
+ allOptions.filter(el => value.map(String).includes(el.value))
581
581
  );
582
582
  } else {
583
583
  // Rerun this handler when <nile-option> is registered