@intent-framework/dom 0.1.0-alpha.2 → 0.1.0-alpha.3
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 +1 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -57,6 +57,7 @@ DOM is a renderer for Intent screens. It depends on `@intent-framework/core` and
|
|
|
57
57
|
|
|
58
58
|
- [Root README](../../README.md) — project overview and philosophy
|
|
59
59
|
- [Quickstart](../../docs/Quickstart.md) — step-by-step guide with DOM rendering
|
|
60
|
+
- [Semantic DOM Debugging](../../docs/Semantic-DOM-Debugging.md) — how `showSemanticIds` maps `inspectScreen()` IDs to DOM data attributes
|
|
60
61
|
- [Canonical runnable example](../../examples/canonical-invite) — matches the Quickstart one-to-one
|
|
61
62
|
|
|
62
63
|
## Status
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.1.0-alpha.
|
|
6
|
+
"version": "0.1.0-alpha.3",
|
|
7
7
|
"description": "DOM materializer for Intent screens and router",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"repository": {
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@intent-framework/
|
|
30
|
-
"@intent-framework/
|
|
29
|
+
"@intent-framework/core": "0.1.0-alpha.2",
|
|
30
|
+
"@intent-framework/router": "0.1.0-alpha.2"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"jsdom": "^29.1.1",
|