@thi.ng/scenegraph 0.5.7 → 0.5.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2021-12-13T10:26:00Z
3
+ - **Last updated**: 2022-04-07T14:17:30Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -60,7 +60,7 @@ node --experimental-repl-await
60
60
  > const scenegraph = await import("@thi.ng/scenegraph");
61
61
  ```
62
62
 
63
- Package sizes (gzipped, pre-treeshake): ESM: 980 bytes
63
+ Package sizes (gzipped, pre-treeshake): ESM: 979 bytes
64
64
 
65
65
  ## Dependencies
66
66
 
@@ -107,4 +107,4 @@ If this project contributes to an academic publication, please cite it as:
107
107
 
108
108
  ## License
109
109
 
110
- © 2016 - 2021 Karsten Schmidt // Apache Software License 2.0
110
+ © 2016 - 2022 Karsten Schmidt // Apache Software License 2.0
package/hiccup.d.ts CHANGED
@@ -3,8 +3,8 @@ import type { ANode } from "./anode.js";
3
3
  /**
4
4
  * `IToHiccup` implementation Node2D/3D
5
5
  *
6
- * @param node
7
- * @param ctx
6
+ * @param node -
7
+ * @param ctx -
8
8
  *
9
9
  * @internal
10
10
  */
package/hiccup.js CHANGED
@@ -3,8 +3,8 @@ import { isFunction } from "@thi.ng/checks/is-function";
3
3
  /**
4
4
  * `IToHiccup` implementation Node2D/3D
5
5
  *
6
- * @param node
7
- * @param ctx
6
+ * @param node -
7
+ * @param ctx -
8
8
  *
9
9
  * @internal
10
10
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/scenegraph",
3
- "version": "0.5.7",
3
+ "version": "0.5.10",
4
4
  "description": "Extensible 2D/3D scene graph with @thi.ng/hiccup-canvas support",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,19 +34,19 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.3.3",
38
- "@thi.ng/checks": "^3.1.3",
39
- "@thi.ng/errors": "^2.1.3",
40
- "@thi.ng/matrices": "^2.1.7",
41
- "@thi.ng/vectors": "^7.4.3"
37
+ "@thi.ng/api": "^8.3.5",
38
+ "@thi.ng/checks": "^3.1.5",
39
+ "@thi.ng/errors": "^2.1.5",
40
+ "@thi.ng/matrices": "^2.1.10",
41
+ "@thi.ng/vectors": "^7.5.2"
42
42
  },
43
43
  "devDependencies": {
44
- "@microsoft/api-extractor": "^7.19.2",
45
- "@thi.ng/testament": "^0.2.3",
44
+ "@microsoft/api-extractor": "^7.19.4",
45
+ "@thi.ng/testament": "^0.2.5",
46
46
  "rimraf": "^3.0.2",
47
47
  "tools": "^0.0.1",
48
- "typedoc": "^0.22.10",
49
- "typescript": "^4.5.3"
48
+ "typedoc": "^0.22.13",
49
+ "typescript": "^4.6.2"
50
50
  },
51
51
  "keywords": [
52
52
  "2d",
@@ -70,22 +70,22 @@
70
70
  ],
71
71
  "exports": {
72
72
  ".": {
73
- "import": "./index.js"
73
+ "default": "./index.js"
74
74
  },
75
75
  "./anode": {
76
- "import": "./anode.js"
76
+ "default": "./anode.js"
77
77
  },
78
78
  "./api": {
79
- "import": "./api.js"
79
+ "default": "./api.js"
80
80
  },
81
81
  "./hiccup": {
82
- "import": "./hiccup.js"
82
+ "default": "./hiccup.js"
83
83
  },
84
84
  "./node2": {
85
- "import": "./node2.js"
85
+ "default": "./node2.js"
86
86
  },
87
87
  "./node3": {
88
- "import": "./node3.js"
88
+ "default": "./node3.js"
89
89
  }
90
90
  },
91
91
  "thi.ng": {
@@ -98,5 +98,5 @@
98
98
  ],
99
99
  "status": "alpha"
100
100
  },
101
- "gitHead": "1ba92c6b9509e74e509b4c0b875fc380a97bbbc1\n"
101
+ "gitHead": "542bf14bd0c7a56b4e6297718189eea772a824b7\n"
102
102
  }