@djcali570/component-lib 0.1.95 → 0.1.96

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/README.md CHANGED
@@ -3,3 +3,7 @@
3
3
  0.1.95
4
4
 
5
5
  - Updated dropdown so onUpdate runs when dropdown is cleared
6
+
7
+ 0.1.96
8
+
9
+ - Fixed issue with dropdown and using derived state.
@@ -39,7 +39,7 @@
39
39
  };
40
40
 
41
41
  // Merge partial colorScheme with defaults
42
- const colorScheme = $derived({ ...defaultColorScheme, ...partialColorScheme });
42
+ const colorScheme = { ...defaultColorScheme, ...partialColorScheme };
43
43
 
44
44
  const id = generateRandomString();
45
45
  let showDropdown = $state(false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djcali570/component-lib",
3
- "version": "0.1.95",
3
+ "version": "0.1.96",
4
4
  "files": [
5
5
  "dist",
6
6
  "!dist/**/*.test.*",