@r2digisolutions/components 0.14.16 → 0.14.17

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.
@@ -310,11 +310,11 @@
310
310
 
311
311
  $effect(() => {
312
312
  if (open) return;
313
- if (selected && query !== selected.label) {
314
- query = selected.label;
315
- } else if (value && query !== value) {
316
- query = value;
313
+ if (selected) {
314
+ if (query !== selected.label) query = selected.label;
315
+ return;
317
316
  }
317
+ if (value && query !== value) query = value;
318
318
  });
319
319
 
320
320
  $effect(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@r2digisolutions/components",
3
- "version": "0.14.16",
3
+ "version": "0.14.17",
4
4
  "private": false,
5
5
  "description": "R2DigiSolutions Svelte 5 component library — Atomic Design, Tailwind 4, Light/Dark mode",
6
6
  "license": "MIT",