@markdy/renderer-dom 0.7.19 → 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 +14 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -19,6 +19,20 @@ 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
+ ## Package position (text)
23
+
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
+ ```
29
+
30
+ ## Output preview
31
+
32
+ <p align="center">
33
+ <img src="https://raw.githubusercontent.com/HoangYell/markdy-com/main/website/public/images/markdy-output-preview.webp" alt="Markdy output preview" width="900" />
34
+ </p>
35
+
22
36
  ## Usage
23
37
 
24
38
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markdy/renderer-dom",
3
- "version": "0.7.19",
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.19"
46
+ "@markdy/core": "0.7.21"
47
47
  },
48
48
  "devDependencies": {
49
49
  "jsdom": "^29.1.1",