@xmachines/play-solid 1.0.0-beta.44 → 1.0.0-beta.46
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 +9 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -194,7 +194,7 @@ Batteries-included composite provider. Wraps `ActorProvider` + `JSONUIProvider`.
|
|
|
194
194
|
|
|
195
195
|
**`actor`** — A `PlayerActor` (or any `AbstractActor & Viewable`). Provides the `currentView` signal.
|
|
196
196
|
|
|
197
|
-
**`registryResult`** — The full `DefineRegistryResult` returned by `defineRegistry(catalog, { components, actions })` from
|
|
197
|
+
**`registryResult`** — The full `DefineRegistryResult` returned by `defineRegistry(catalog, { components, actions })` from.
|
|
198
198
|
|
|
199
199
|
**`store`** (optional) — Controls per-view UI state (`$state` bindings, form values):
|
|
200
200
|
|
|
@@ -300,7 +300,7 @@ const registryResult = defineRegistry(catalog, {
|
|
|
300
300
|
});
|
|
301
301
|
```
|
|
302
302
|
|
|
303
|
-
`onRenderError` is typed as `RenderErrorHandler` and exported from
|
|
303
|
+
`onRenderError` is typed as `RenderErrorHandler` and exported from.
|
|
304
304
|
|
|
305
305
|
---
|
|
306
306
|
|
|
@@ -341,4 +341,10 @@ Priority: **route param fills `undefined` slots; explicit non-`undefined` spec p
|
|
|
341
341
|
- SolidJS signals are only used to trigger re-renders — not for business logic
|
|
342
342
|
- `actor.currentView` (TC39 Signal) is bridged into a SolidJS `createSignal` inside `PlayRenderer`
|
|
343
343
|
- Per-view UI state lives in an `@xstate/store` atom, not in SolidJS reactive state
|
|
344
|
-
- `@json-render/solid` drives rendering; `PlayRenderer` is the signal bridge — import `defineRegistry`, `ComponentFn`, `ComponentContext`, and `useBoundProp` from
|
|
344
|
+
- `@json-render/solid` drives rendering; `PlayRenderer` is the signal bridge — import `defineRegistry`, `ComponentFn`, `ComponentContext`, and `useBoundProp` from
|
|
345
|
+
|
|
346
|
+
## Learn More
|
|
347
|
+
|
|
348
|
+
- [Demo](examples/demo/README.md)
|
|
349
|
+
- [Solid Router adapter](../play-solid-router/README.md)
|
|
350
|
+
- [TanStack Solid Router adapter](../play-tanstack-solid-router/README.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xmachines/play-solid",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.46",
|
|
4
4
|
"description": "Solid renderer for XMachines Play architecture",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"catalog",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"prepublishOnly": "npm run build"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@xmachines/play": "1.0.0-beta.
|
|
43
|
-
"@xmachines/play-actor": "1.0.0-beta.
|
|
44
|
-
"@xmachines/play-signals": "1.0.0-beta.
|
|
42
|
+
"@xmachines/play": "1.0.0-beta.46",
|
|
43
|
+
"@xmachines/play-actor": "1.0.0-beta.46",
|
|
44
|
+
"@xmachines/play-signals": "1.0.0-beta.46"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@json-render/core": "^0.18.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@solidjs/testing-library": "^0.8.10",
|
|
51
51
|
"@testing-library/jest-dom": "^6.9.1",
|
|
52
52
|
"@types/node": "^25.6.0",
|
|
53
|
-
"@xmachines/shared": "1.0.0-beta.
|
|
53
|
+
"@xmachines/shared": "1.0.0-beta.46",
|
|
54
54
|
"@xstate/store": "^3.17.0",
|
|
55
55
|
"jsdom": "^29.0.2",
|
|
56
56
|
"oxfmt": "^0.45.0",
|