@uistate/core 5.5.1 → 5.5.2

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 +11 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -99,12 +99,16 @@ qc.invalidate('users');
99
99
 
100
100
  ## Ecosystem
101
101
 
102
- | Package | Description |
103
- |---|---|
104
- | [@uistate/core](https://www.npmjs.com/package/@uistate/core) | This package — event-driven state management |
105
- | [@uistate/css](https://www.npmjs.com/package/@uistate/css) | CSS-native state via custom properties and data attributes |
106
- | [@uistate/event-test](https://www.npmjs.com/package/@uistate/event-test) | Event-sequence testing (proprietary license) |
107
- | [@uistate/examples](https://www.npmjs.com/package/@uistate/examples) | Example applications and patterns |
102
+ | Package | Description | License |
103
+ |---|---|---|
104
+ | [@uistate/core](https://www.npmjs.com/package/@uistate/core) | Path-based state management with wildcard subscriptions and async support | MIT |
105
+ | [@uistate/react](https://www.npmjs.com/package/@uistate/react) | React adapter `usePath`, `useIntent`, `useAsync` hooks and `EventStateProvider` | MIT |
106
+ | [@uistate/css](https://www.npmjs.com/package/@uistate/css) | CSS-native state via custom properties and data attributes | MIT |
107
+ | [@uistate/event-test](https://www.npmjs.com/package/@uistate/event-test) | Event-sequence testing for UIstate stores | Proprietary |
108
+ | [@uistate/examples](https://www.npmjs.com/package/@uistate/examples) | Example applications and patterns | MIT |
109
+ | [@uistate/aliases](https://www.npmjs.com/package/@uistate/aliases) | Ergonomic single-character and short-name DOM aliases for vanilla JS | MIT |
110
+
111
+ 📖 **Documentation:** [uistate.com](https://uistate.com)
108
112
 
109
113
  ## License
110
114
 
@@ -114,6 +118,7 @@ Copyright © 2025 Ajdin Imsirovic
114
118
 
115
119
  ## Links
116
120
 
121
+ - [Documentation](https://uistate.com)
117
122
  - [GitHub](https://github.com/ImsirovicAjdin/uistate)
118
123
  - [npm](https://www.npmjs.com/package/@uistate/core)
119
124
  - [Issues](https://github.com/ImsirovicAjdin/uistate/issues)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uistate/core",
3
- "version": "5.5.1",
3
+ "version": "5.5.2",
4
4
  "description": "Lightweight event-driven state management with path-based subscriptions, wildcards, and async support",
5
5
  "type": "module",
6
6
  "main": "index.js",