@thi.ng/rdom 2.0.6 → 2.0.8
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 +2 -1
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -336,7 +336,7 @@ Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
|
|
|
336
336
|
|
|
337
337
|
## Usage examples
|
|
338
338
|
|
|
339
|
-
|
|
339
|
+
54 projects in this repo's
|
|
340
340
|
[/examples](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples)
|
|
341
341
|
directory are using this package:
|
|
342
342
|
|
|
@@ -395,6 +395,7 @@ directory are using this package:
|
|
|
395
395
|
| <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/viz-ridge-lines.avif" width="240"/> | Interactive ridge-line plot | [Demo](https://demo.thi.ng/umbrella/viz-ridge-lines/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/viz-ridge-lines) |
|
|
396
396
|
| <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/viz-scatter-plot.avif" width="240"/> | Interactive scatter & line plot of low-discrepancy samples | [Demo](https://demo.thi.ng/umbrella/viz-scatter-plot/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/viz-scatter-plot) |
|
|
397
397
|
| <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/webgl-channel-mixer.jpg" width="240"/> | rdom & WebGL-based image channel editor | [Demo](https://demo.thi.ng/umbrella/webgl-channel-mixer/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/webgl-channel-mixer) |
|
|
398
|
+
| <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/webgl-obj.avif" width="240"/> | Basic 3D OBJ model loading & interactive arcball camera control | [Demo](https://demo.thi.ng/umbrella/webgl-obj/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/webgl-obj) |
|
|
398
399
|
|
|
399
400
|
## API
|
|
400
401
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rdom",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"description": "Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and @thi.ng/hiccup compatible",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -41,17 +41,17 @@
|
|
|
41
41
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@thi.ng/api": "^8.12.
|
|
45
|
-
"@thi.ng/checks": "^3.10.
|
|
46
|
-
"@thi.ng/errors": "^2.6.
|
|
47
|
-
"@thi.ng/hiccup": "^5.4.
|
|
48
|
-
"@thi.ng/paths": "^5.2.
|
|
49
|
-
"@thi.ng/prefixes": "^2.3.
|
|
50
|
-
"@thi.ng/rstream": "^9.5.
|
|
51
|
-
"@thi.ng/strings": "^3.12.
|
|
44
|
+
"@thi.ng/api": "^8.12.27",
|
|
45
|
+
"@thi.ng/checks": "^3.10.1",
|
|
46
|
+
"@thi.ng/errors": "^2.6.16",
|
|
47
|
+
"@thi.ng/hiccup": "^5.4.12",
|
|
48
|
+
"@thi.ng/paths": "^5.2.46",
|
|
49
|
+
"@thi.ng/prefixes": "^2.3.77",
|
|
50
|
+
"@thi.ng/rstream": "^9.5.11",
|
|
51
|
+
"@thi.ng/strings": "^3.12.9"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"esbuild": "^0.28.
|
|
54
|
+
"esbuild": "^0.28.1",
|
|
55
55
|
"typedoc": "^0.28.19",
|
|
56
56
|
"typescript": "^6.0.3"
|
|
57
57
|
},
|
|
@@ -154,5 +154,5 @@
|
|
|
154
154
|
],
|
|
155
155
|
"year": 2020
|
|
156
156
|
},
|
|
157
|
-
"gitHead": "
|
|
157
|
+
"gitHead": "bc535a90970f96564cae15f1732b5fb8562135c4"
|
|
158
158
|
}
|