@uistate/core 5.6.1 → 5.6.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.
- package/README.md +3 -2
- package/eventState.js +1 -1
- package/index.js +1 -1
- package/package.json +5 -2
- package/queryClient.js +0 -1
package/README.md
CHANGED
|
@@ -127,8 +127,9 @@ qc.invalidate('users');
|
|
|
127
127
|
| Package | Description | License |
|
|
128
128
|
|---|---|---|
|
|
129
129
|
| [@uistate/core](https://www.npmjs.com/package/@uistate/core) | Path-based state management with wildcard subscriptions and async support | MIT |
|
|
130
|
+
| [@uistate/view](https://www.npmjs.com/package/@uistate/view) | State-driven view: DOMless resolve + surgical DOM projector. View tree as first-class state | MIT |
|
|
130
131
|
| [@uistate/react](https://www.npmjs.com/package/@uistate/react) | React adapter — `usePath`, `useIntent`, `useAsync` hooks and `EventStateProvider` | MIT |
|
|
131
|
-
| [@uistate/css](https://www.npmjs.com/package/@uistate/css) |
|
|
132
|
+
| [@uistate/css](https://www.npmjs.com/package/@uistate/css) | Reactive CSSOM engine — design tokens, typed validation, WCAG enforcement, all via path-based state | MIT |
|
|
132
133
|
| [@uistate/event-test](https://www.npmjs.com/package/@uistate/event-test) | Event-sequence testing for UIstate stores | Proprietary |
|
|
133
134
|
| [@uistate/examples](https://www.npmjs.com/package/@uistate/examples) | Example applications and patterns | MIT |
|
|
134
135
|
| [@uistate/renderer](https://www.npmjs.com/package/@uistate/renderer) | Direct-binding reactive renderer: `bind-*`, `set`, `each` attributes. Zero build step | Proprietary |
|
|
@@ -140,7 +141,7 @@ qc.invalidate('users');
|
|
|
140
141
|
|
|
141
142
|
MIT — see [LICENSE](./LICENSE).
|
|
142
143
|
|
|
143
|
-
Copyright © 2025 Ajdin Imsirovic
|
|
144
|
+
Copyright © 2025–2026 Ajdin Imsirovic
|
|
144
145
|
|
|
145
146
|
## Links
|
|
146
147
|
|
package/eventState.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* EventState
|
|
2
|
+
* EventState v5.6.2 - Optimized Path-Based State Management
|
|
3
3
|
*
|
|
4
4
|
* A lightweight, performant state management library using path-based subscriptions.
|
|
5
5
|
* Optimized for selective notifications and granular updates.
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uistate/core",
|
|
3
|
-
"version": "5.6.
|
|
3
|
+
"version": "5.6.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",
|
|
@@ -28,7 +28,10 @@
|
|
|
28
28
|
"zero-dependency",
|
|
29
29
|
"micro-framework",
|
|
30
30
|
"async-state",
|
|
31
|
-
"query-client"
|
|
31
|
+
"query-client",
|
|
32
|
+
"domless-testing",
|
|
33
|
+
"view-as-state",
|
|
34
|
+
"state-as-view"
|
|
32
35
|
],
|
|
33
36
|
"author": "Ajdin Imsirovic",
|
|
34
37
|
"license": "MIT",
|