@markdy/renderer-dom 0.7.20 → 0.7.21

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 +8 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -19,16 +19,18 @@ Web Animations API renderer for [MarkdyScript](../../docs/SYNTAX.md) scenes. Tra
19
19
  pnpm add @markdy/core @markdy/renderer-dom
20
20
  ```
21
21
 
22
- ## Visual guide
22
+ ## Package position (text)
23
23
 
24
- <p align="center">
25
- <img src="https://raw.githubusercontent.com/HoangYell/markdy-com/main/website/public/images/markdy-core-renderer-map.webp" alt="Markdy core and renderer package map" width="900" />
26
- </p>
24
+ ```text
25
+ @markdy/core -> @markdy/renderer-dom -> browser scene playback
26
+
27
+ This package consumes parsed AST and drives DOM + Web Animations API timelines.
28
+ ```
27
29
 
28
- ## Love Story result
30
+ ## Output preview
29
31
 
30
32
  <p align="center">
31
- <img src="https://raw.githubusercontent.com/HoangYell/markdy-com/main/website/public/images/markdy-love-story-result.webp" alt="Love Story main Markdy result" width="900" />
33
+ <img src="https://raw.githubusercontent.com/HoangYell/markdy-com/main/website/public/images/markdy-output-preview.webp" alt="Markdy output preview" width="900" />
32
34
  </p>
33
35
 
34
36
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markdy/renderer-dom",
3
- "version": "0.7.20",
3
+ "version": "0.7.21",
4
4
  "description": "Web Animations API renderer for MarkdyScript scenes.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -43,7 +43,7 @@
43
43
  "access": "public"
44
44
  },
45
45
  "dependencies": {
46
- "@markdy/core": "0.7.20"
46
+ "@markdy/core": "0.7.21"
47
47
  },
48
48
  "devDependencies": {
49
49
  "jsdom": "^29.1.1",