@thi.ng/rdom-canvas 0.5.44 → 0.5.46
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 +1 -1
- package/README.md +2 -2
- package/index.js +1 -1
- package/package.json +9 -10
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -119,13 +119,13 @@ For Node.js REPL:
|
|
|
119
119
|
const rdomCanvas = await import("@thi.ng/rdom-canvas");
|
|
120
120
|
```
|
|
121
121
|
|
|
122
|
-
Package sizes (brotli'd, pre-treeshake): ESM:
|
|
122
|
+
Package sizes (brotli'd, pre-treeshake): ESM: 694 bytes
|
|
123
123
|
|
|
124
124
|
## Dependencies
|
|
125
125
|
|
|
126
|
-
- [@thi.ng/adapt-dpi](https://github.com/thi-ng/umbrella/tree/develop/packages/adapt-dpi)
|
|
127
126
|
- [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/develop/packages/api)
|
|
128
127
|
- [@thi.ng/associative](https://github.com/thi-ng/umbrella/tree/develop/packages/associative)
|
|
128
|
+
- [@thi.ng/canvas](https://github.com/thi-ng/umbrella/tree/develop/packages/canvas)
|
|
129
129
|
- [@thi.ng/checks](https://github.com/thi-ng/umbrella/tree/develop/packages/checks)
|
|
130
130
|
- [@thi.ng/hiccup-canvas](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup-canvas)
|
|
131
131
|
- [@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom)
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { adaptDPI } from "@thi.ng/adapt-dpi";
|
|
2
1
|
import { withoutKeysObj } from "@thi.ng/associative/without-keys";
|
|
2
|
+
import { adaptDPI } from "@thi.ng/canvas";
|
|
3
3
|
import { implementsFunction } from "@thi.ng/checks/implements-function";
|
|
4
4
|
import { draw } from "@thi.ng/hiccup-canvas/draw";
|
|
5
5
|
import { Component } from "@thi.ng/rdom/component";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rdom-canvas",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.46",
|
|
4
4
|
"description": "@thi.ng/rdom component wrapper for @thi.ng/hiccup-canvas and declarative canvas drawing",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -35,19 +35,18 @@
|
|
|
35
35
|
"test": "bun test"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@thi.ng/
|
|
39
|
-
"@thi.ng/
|
|
40
|
-
"@thi.ng/
|
|
41
|
-
"@thi.ng/checks": "^3.4.
|
|
42
|
-
"@thi.ng/hiccup-canvas": "^2.
|
|
43
|
-
"@thi.ng/rdom": "^0.13.
|
|
44
|
-
"@thi.ng/rstream": "^8.2.
|
|
38
|
+
"@thi.ng/api": "^8.9.14",
|
|
39
|
+
"@thi.ng/associative": "^6.3.26",
|
|
40
|
+
"@thi.ng/canvas": "^0.1.0",
|
|
41
|
+
"@thi.ng/checks": "^3.4.14",
|
|
42
|
+
"@thi.ng/hiccup-canvas": "^2.5.1",
|
|
43
|
+
"@thi.ng/rdom": "^0.13.6",
|
|
44
|
+
"@thi.ng/rstream": "^8.2.16"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@microsoft/api-extractor": "^7.38.3",
|
|
48
48
|
"esbuild": "^0.19.8",
|
|
49
49
|
"rimraf": "^5.0.5",
|
|
50
|
-
"tools": "^0.0.1",
|
|
51
50
|
"typedoc": "^0.25.4",
|
|
52
51
|
"typescript": "^5.3.2"
|
|
53
52
|
},
|
|
@@ -92,5 +91,5 @@
|
|
|
92
91
|
"status": "alpha",
|
|
93
92
|
"year": 2020
|
|
94
93
|
},
|
|
95
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "0d9265be7be13eccf0ef75eaedbfd42626339279\n"
|
|
96
95
|
}
|