@xmachines/play-dom 1.0.0-beta.57 → 1.0.0

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 +2 -6
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -74,9 +74,7 @@ disconnect();
74
74
  import { createRenderer, schema } from "@xmachines/play-dom";
75
75
  import { defineCatalog } from "@xmachines/json-render-core";
76
76
 
77
- const catalog = defineCatalog(schema, {
78
- /* ... */
79
- });
77
+ const catalog = defineCatalog(schema, {/* ... */});
80
78
 
81
79
  const mount = createRenderer(catalog, { MyComponent });
82
80
 
@@ -95,9 +93,7 @@ Factory-level options (`functions`, `validationFunctions`, `navigate`, `onRender
95
93
  import { defineRegistry, createPlayUI, schema } from "@xmachines/play-dom";
96
94
  import { defineCatalog } from "@xmachines/json-render-core";
97
95
 
98
- const catalog = defineCatalog(schema, {
99
- /* ... */
100
- });
96
+ const catalog = defineCatalog(schema, {/* ... */});
101
97
 
102
98
  const registryResult = defineRegistry(catalog, {
103
99
  components: { Home, Login },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmachines/play-dom",
3
- "version": "1.0.0-beta.57",
3
+ "version": "1.0.0",
4
4
  "description": "Vanilla DOM renderer for XMachines Play architecture with signal-driven rendering",
5
5
  "keywords": [
6
6
  "actor",
@@ -43,23 +43,23 @@
43
43
  "prepublishOnly": "npm run build"
44
44
  },
45
45
  "dependencies": {
46
- "@xmachines/play": "1.0.0-beta.57",
47
- "@xmachines/play-actor": "1.0.0-beta.57",
48
- "@xmachines/play-signals": "1.0.0-beta.57"
46
+ "@xmachines/play": "1.0.0",
47
+ "@xmachines/play-actor": "1.0.0",
48
+ "@xmachines/play-signals": "1.0.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@testing-library/jest-dom": "^6.9.1",
52
- "@types/node": "^25.6.0",
53
- "@vitest/browser-playwright": "^4.1.5",
52
+ "@types/node": "^26.1.1",
53
+ "@vitest/browser-playwright": "^4.1.10",
54
54
  "@xmachines/json-render-core": "^0.19.0-xm.2",
55
55
  "@xmachines/json-render-dom": "^0.19.0-xm.2",
56
56
  "@xmachines/json-render-xstate": "^0.19.0-xm.2",
57
- "@xmachines/shared": "1.0.0-beta.57",
57
+ "@xmachines/shared": "1.0.0",
58
58
  "@xstate/store": "^3.17.0",
59
- "oxfmt": "^0.47.0",
60
- "oxlint": "^1.62.0",
59
+ "oxfmt": "^0.58.0",
60
+ "oxlint": "^1.73.0",
61
61
  "typescript": "^5.9.3 || ^6.0.3",
62
- "vitest": "^4.1.5",
62
+ "vitest": "^4.1.10",
63
63
  "xstate": "^5.31.0",
64
64
  "zod": "^4.4.1"
65
65
  },