@targoninc/jess-components 0.0.24 → 0.0.25

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -914,7 +914,7 @@ function select(config) {
914
914
  const value$ = config.value ?? signal(null);
915
915
  const selectId = v4_default();
916
916
  function setSelected(value) {
917
- const opts = document.querySelectorAll(`select[id=${selectId}] option`);
917
+ const opts = document.querySelectorAll(`select[id="${selectId}"] option`);
918
918
  opts.forEach((opt) => opt.selected = opt.value === value);
919
919
  }
920
920
  value$.subscribe(setSelected);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@targoninc/jess-components",
3
3
  "type": "module",
4
- "version": "0.0.24",
4
+ "version": "0.0.25",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "files": [