@quanta-lib/q-state 1.1.4 → 1.1.6

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/README.md +9 -1
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -1,9 +1,17 @@
1
1
  # Q-State
2
2
 
3
3
  A lightweight React state management engine using `useSyncExternalStore` with optional localStorage caching and value transformation.
4
+
5
+ # Small issue (FIXED)
6
+
4
7
  Hey i have an isssue, when you use nextjs with this library, just copy the engine code in the q-state file
5
8
  because this library had hydration issue, after you copy it, use it inside your src file, so this library can work
6
- well in nextjs, im sorry for that...
9
+ well in nextjs, im sorry for that... (BUG FIXED, Q-STATE COMPATIBLE WITH NEXTJS NOW!)
10
+
11
+ # Github link
12
+
13
+ Here my open source github link, lets colaborate and grow together!
14
+ https://github.com/ammaar-engineer/Q-State
7
15
 
8
16
  ## Installation
9
17
 
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@quanta-lib/q-state",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "A lightweight React state management library using `useSyncExternalStore` with optional localStorage caching and value transformation.",
5
5
  "main": "dist/Q-State-Engine.js",
6
6
  "types": "src/Q-State-Engine.ts",
7
+ "peerDependencies": {
8
+ "react": ">=18.0.0"
9
+ },
7
10
  "files": [
8
11
  "dist",
9
12
  "src"