@thi.ng/hdom-canvas 4.0.0 → 4.0.5
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/CHANGELOG.md +40 -0
- package/README.md +4 -3
- package/package.json +12 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,46 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@4.0.4...@thi.ng/hdom-canvas@4.0.5) (2021-10-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @thi.ng/hdom-canvas
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [4.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@4.0.3...@thi.ng/hdom-canvas@4.0.4) (2021-10-15)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @thi.ng/hdom-canvas
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [4.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@4.0.2...@thi.ng/hdom-canvas@4.0.3) (2021-10-15)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @thi.ng/hdom-canvas
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [4.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@4.0.1...@thi.ng/hdom-canvas@4.0.2) (2021-10-13)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @thi.ng/hdom-canvas
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## [4.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@4.0.0...@thi.ng/hdom-canvas@4.0.1) (2021-10-13)
|
|
39
|
+
|
|
40
|
+
**Note:** Version bump only for package @thi.ng/hdom-canvas
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
6
46
|
# [4.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/hdom-canvas@3.0.60...@thi.ng/hdom-canvas@4.0.0) (2021-10-12)
|
|
7
47
|
|
|
8
48
|
|
package/README.md
CHANGED
|
@@ -73,10 +73,11 @@ ES module import:
|
|
|
73
73
|
|
|
74
74
|
[Skypack documentation](https://docs.skypack.dev/)
|
|
75
75
|
|
|
76
|
-
For
|
|
76
|
+
For Node.js REPL:
|
|
77
77
|
|
|
78
78
|
```text
|
|
79
|
-
|
|
79
|
+
# with flag only for < v16
|
|
80
|
+
node --experimental-repl-await
|
|
80
81
|
|
|
81
82
|
> const hdomCanvas = await import("@thi.ng/hdom-canvas");
|
|
82
83
|
```
|
|
@@ -118,7 +119,7 @@ A selection:
|
|
|
118
119
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rotating-voronoi.jpg" width="240"/> | Animated Voronoi diagram, cubic splines & SVG download | [Demo](https://demo.thi.ng/umbrella/rotating-voronoi/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rotating-voronoi) |
|
|
119
120
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/scenegraph.png" width="240"/> | 2D scenegraph & shape picking | [Demo](https://demo.thi.ng/umbrella/scenegraph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph) |
|
|
120
121
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/scenegraph-image.png" width="240"/> | 2D scenegraph & image map based geometry manipulation | [Demo](https://demo.thi.ng/umbrella/scenegraph-image/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph-image) |
|
|
121
|
-
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/shader-ast-workers.jpg" width="240"/> | Fork-join worker-based raymarch renderer
|
|
122
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/shader-ast-workers.jpg" width="240"/> | Fork-join worker-based raymarch renderer (JS/CPU only) | [Demo](https://demo.thi.ng/umbrella/shader-ast-workers/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-workers) |
|
|
122
123
|
|
|
123
124
|
## API
|
|
124
125
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/hdom-canvas",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.5",
|
|
4
4
|
"description": "@thi.ng/hdom component wrapper for declarative canvas scenegraphs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.0.
|
|
38
|
-
"@thi.ng/checks": "^3.0.
|
|
39
|
-
"@thi.ng/diff": "^5.0.
|
|
40
|
-
"@thi.ng/errors": "^2.0.
|
|
41
|
-
"@thi.ng/hdom": "^9.0.
|
|
42
|
-
"@thi.ng/hiccup-canvas": "^2.0.
|
|
37
|
+
"@thi.ng/api": "^8.0.4",
|
|
38
|
+
"@thi.ng/checks": "^3.0.4",
|
|
39
|
+
"@thi.ng/diff": "^5.0.4",
|
|
40
|
+
"@thi.ng/errors": "^2.0.4",
|
|
41
|
+
"@thi.ng/hdom": "^9.0.4",
|
|
42
|
+
"@thi.ng/hiccup-canvas": "^2.0.5"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@thi.ng/testament": "^0.1.
|
|
45
|
+
"@thi.ng/testament": "^0.1.4"
|
|
46
46
|
},
|
|
47
47
|
"keywords": [
|
|
48
48
|
"array",
|
|
@@ -61,6 +61,9 @@
|
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": ">=12.7"
|
|
66
|
+
},
|
|
64
67
|
"files": [
|
|
65
68
|
"*.js",
|
|
66
69
|
"*.d.ts"
|
|
@@ -81,5 +84,5 @@
|
|
|
81
84
|
],
|
|
82
85
|
"year": 2018
|
|
83
86
|
},
|
|
84
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "9ff00a103f76cc4917ef3f244132e218f2300a05"
|
|
85
88
|
}
|