@thi.ng/hdom-components 5.1.99 → 5.1.101

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**: 2024-02-22T11:59:16Z
3
+ - **Last updated**: 2024-02-25T14:07:53Z
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/canvas.d.ts CHANGED
@@ -38,6 +38,8 @@ export interface CanvasHandlers<T extends CanvasContext> {
38
38
  *
39
39
  * @example
40
40
  * ```ts
41
+ * import { canvasWebGL } from "@thi.ng/hdom-components";
42
+ *
41
43
  * const glcanvas = canvasWebGL({
42
44
  * render(canv, gl, hctx, time, frame, ...args) {
43
45
  * const col = 0.5 + 0.5 * Math.sin(time);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hdom-components",
3
- "version": "5.1.99",
3
+ "version": "5.1.101",
4
4
  "description": "Raw, skinnable UI & SVG components for @thi.ng/hdom",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,12 +35,12 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.25",
38
+ "@thi.ng/api": "^8.9.26",
39
39
  "@thi.ng/canvas": "^0.2.7",
40
40
  "@thi.ng/checks": "^3.5.0",
41
- "@thi.ng/math": "^5.10.2",
42
- "@thi.ng/transducers": "^8.9.5",
43
- "@thi.ng/transducers-stats": "^2.1.99"
41
+ "@thi.ng/math": "^5.10.3",
42
+ "@thi.ng/transducers": "^8.9.7",
43
+ "@thi.ng/transducers-stats": "^2.1.101"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@microsoft/api-extractor": "^7.40.1",
@@ -110,5 +110,5 @@
110
110
  "status": "beta",
111
111
  "year": 2018
112
112
  },
113
- "gitHead": "4513a1c703bdbf0f0867f03e547e47692e415fac\n"
113
+ "gitHead": "6e20f80dd9df1c8055ffa3c1e4d6f7598add0c0b\n"
114
114
  }
package/title.d.ts CHANGED
@@ -22,6 +22,8 @@ export interface TitleOpts {
22
22
  *
23
23
  * @example
24
24
  * ```ts
25
+ * import { title } from "@thi.ng/hdom-components";
26
+ *
25
27
  * const h1 = title();
26
28
  * const h2 = title({ element: "h2", attribs: { class: "blue" }});
27
29
  *