@thi.ng/rdom 1.7.26 → 1.7.28

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**: 2025-01-29T16:25:48Z
3
+ - **Last updated**: 2025-02-19T20:59:58Z
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
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 201 standalone projects, maintained as part
10
+ > This is one of 202 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -332,7 +332,7 @@ Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
332
332
 
333
333
  ## Usage examples
334
334
 
335
- 49 projects in this repo's
335
+ 50 projects in this repo's
336
336
  [/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
337
337
  directory are using this package:
338
338
 
@@ -384,6 +384,7 @@ directory are using this package:
384
384
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/thing-browser.avif" width="240"/> | Tree-based UI to find & explore thi.ng projects via their associated keywords | [Demo](https://demo.thi.ng/umbrella/thing-browser/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/thing-browser) |
385
385
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/thing-packages-quiz.avif" width="240"/> | thi.ng/rdom & thi.ng/rstream based quiz to guess thi.ng package names | [Demo](https://demo.thi.ng/umbrella/thing-packages-quiz/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/thing-packages-quiz) |
386
386
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/trace-bitmap.jpg" width="240"/> | Multi-layer vectorization & dithering of bitmap images | [Demo](https://demo.thi.ng/umbrella/trace-bitmap/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/trace-bitmap) |
387
+ | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/tsne-colors.avif" width="240"/> | Animated t-SNE visualization of 4D data | [Demo](https://demo.thi.ng/umbrella/tsne-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/tsne-colors) |
387
388
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/viz-ridge-lines.avif" width="240"/> | Interactive ridge-line plot | [Demo](https://demo.thi.ng/umbrella/viz-ridge-lines/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/viz-ridge-lines) |
388
389
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/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://github.com/thi-ng/umbrella/tree/develop/examples/viz-scatter-plot) |
389
390
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/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://github.com/thi-ng/umbrella/tree/develop/examples/webgl-channel-mixer) |
package/checks.d.ts CHANGED
@@ -5,6 +5,7 @@ import type { IComponent } from "./api.js";
5
5
  *
6
6
  * @remarks
7
7
  * See thi.ng/hiccup docs for reference:
8
+ *
8
9
  * - https://docs.thi.ng/umbrella/hiccup/functions/serialize.html
9
10
  *
10
11
  * @param tree
package/dom.d.ts CHANGED
@@ -58,7 +58,7 @@ export declare const $el: (tag: string, attribs: any, body?: any, parent?: Paren
58
58
  *
59
59
  * @remarks
60
60
  * See thi.ng/hiccup docs for reference:
61
- * - https://docs.thi.ng/umbrella/hiccup/functions/serialize.html
61
+ * https://docs.thi.ng/umbrella/hiccup/functions/serialize.html
62
62
  *
63
63
  * @param body
64
64
  * @param parent
@@ -134,7 +134,7 @@ export declare const $html: (el: HTMLElement | SVGElement, body: MaybeDeref<stri
134
134
  * string, a string array or an object of booleans. If the latter, the given
135
135
  * class names are either added to or removed from the current list of classes.
136
136
  * See
137
- * [`mergeClasses()`](https://docs.thi.ng/umbrella/hiccup/functions/mergeClasses.html)
137
+ * [`mergeClasses`](https://docs.thi.ng/umbrella/hiccup/functions/mergeClasses.html)
138
138
  * for details.
139
139
  *
140
140
  * CSS style rules can be defined via the `style` attrib. Please see
package/object.d.ts CHANGED
@@ -10,7 +10,7 @@ import { Component } from "./component.js";
10
10
  *
11
11
  * @remarks
12
12
  * Uses
13
- * [`fromObject()`](https://docs.thi.ng/umbrella/rstream/functions/fromObject.html)
13
+ * [`fromObject`](https://docs.thi.ng/umbrella/rstream/functions/fromObject.html)
14
14
  * for creating the internal key-value streams. These can then be used by
15
15
  * `inner` to produce reactive child elements. The given `src` object is only
16
16
  * used to seed those streams with initial values. The component wrapper can be
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rdom",
3
- "version": "1.7.26",
3
+ "version": "1.7.28",
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",
@@ -40,18 +40,18 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.11.19",
44
- "@thi.ng/checks": "^3.6.22",
45
- "@thi.ng/errors": "^2.5.25",
46
- "@thi.ng/hiccup": "^5.3.2",
47
- "@thi.ng/paths": "^5.2.0",
48
- "@thi.ng/prefixes": "^2.3.36",
49
- "@thi.ng/rstream": "^9.2.9",
50
- "@thi.ng/strings": "^3.9.4"
43
+ "@thi.ng/api": "^8.11.21",
44
+ "@thi.ng/checks": "^3.6.24",
45
+ "@thi.ng/errors": "^2.5.27",
46
+ "@thi.ng/hiccup": "^5.3.4",
47
+ "@thi.ng/paths": "^5.2.2",
48
+ "@thi.ng/prefixes": "^2.3.38",
49
+ "@thi.ng/rstream": "^9.2.11",
50
+ "@thi.ng/strings": "^3.9.6"
51
51
  },
52
52
  "devDependencies": {
53
- "esbuild": "^0.24.2",
54
- "typedoc": "^0.27.6",
53
+ "esbuild": "^0.25.0",
54
+ "typedoc": "^0.27.7",
55
55
  "typescript": "^5.7.3"
56
56
  },
57
57
  "keywords": [
@@ -148,5 +148,5 @@
148
148
  ],
149
149
  "year": 2020
150
150
  },
151
- "gitHead": "dcc1dbfa6eae31ac65e12843987b94d4a7edc144\n"
151
+ "gitHead": "bee617702ac61d093465b967f8f973dc566faa6b\n"
152
152
  }