qstd 0.2.6 → 0.2.7

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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.7] - 2025-11-25
11
+
12
+ ### Changed
13
+
14
+ - Added console logging to `useTheme` toggle function for debugging
15
+
10
16
  ## [0.2.6] - 2025-11-25
11
17
 
12
18
  ### Fixed
@@ -3626,6 +3626,7 @@ function useTheme() {
3626
3626
  saveStore(newStore);
3627
3627
  };
3628
3628
  const toggle = (theme) => {
3629
+ console.log("toggle theme");
3629
3630
  const newStore = {
3630
3631
  value: theme ?? (storeRef.current.value === "light" ? "dark" : "light"),
3631
3632
  isManual: true
@@ -3603,6 +3603,7 @@ function useTheme() {
3603
3603
  saveStore(newStore);
3604
3604
  };
3605
3605
  const toggle = (theme) => {
3606
+ console.log("toggle theme");
3606
3607
  const newStore = {
3607
3608
  value: theme ?? (storeRef.current.value === "light" ? "dark" : "light"),
3608
3609
  isManual: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qstd",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Standard Block component and utilities library with Panda CSS",
5
5
  "author": "malin1",
6
6
  "license": "MIT",