@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 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) | CSS-native state via custom properties and data attributes | MIT |
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 v2 - Optimized Path-Based State Management
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
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * UIstate v5 - Core barrel exports
3
- *
3
+ *
4
4
  * EventState is the primary export for application state management.
5
5
  * CSS state management has moved to @uistate/css.
6
6
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uistate/core",
3
- "version": "5.6.1",
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",
package/queryClient.js CHANGED
@@ -19,7 +19,6 @@ export const createQueryClient = (store) => {
19
19
  },
20
20
 
21
21
  // Subscribe to query errors
22
-
23
22
  subscribeToError(key, cb) {
24
23
  return store.subscribe(`query.${key}.error`, cb);
25
24
  },