@thi.ng/rdom 1.7.32 → 1.7.34

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +3 -2
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-03-17T13:40:35Z
3
+ - **Last updated**: 2025-04-01T21:42:04Z
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 203 standalone projects, maintained as part
10
+ > This is one of 205 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
- 50 projects in this repo's
335
+ 51 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
 
@@ -353,6 +353,7 @@ directory are using this package:
353
353
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/lispy-repl.png" width="240"/> | Browser REPL for a Lispy S-expression based mini language | [Demo](https://demo.thi.ng/umbrella/lispy-repl/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/lispy-repl) |
354
354
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/mastodon-feed.jpg" width="240"/> | Mastodon API feed reader with support for different media types, fullscreen media modal, HTML rewriting | [Demo](https://demo.thi.ng/umbrella/mastodon-feed/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/mastodon-feed) |
355
355
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/meta-css-basics.png" width="240"/> | Basic thi.ng/meta-css usage & testbed | [Demo](https://demo.thi.ng/umbrella/meta-css-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/meta-css-basics) |
356
+ | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/optical-flow.avif" width="240"/> | Optical flow analysis of web cam or video inputs | [Demo](https://demo.thi.ng/umbrella/optical-flow/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/optical-flow) |
356
357
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/parse-playground.png" width="240"/> | Parser grammar livecoding editor/playground & codegen | [Demo](https://demo.thi.ng/umbrella/parse-playground/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/parse-playground) |
357
358
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pixel-colormatrix.jpg" width="240"/> | Matrix-based image color adjustments | [Demo](https://demo.thi.ng/umbrella/pixel-colormatrix/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-colormatrix) |
358
359
  | <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pixel-gradients.jpg" width="240"/> | Randomized 4-point 2D color gradient image generator | [Demo](https://demo.thi.ng/umbrella/pixel-gradients/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-gradients) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rdom",
3
- "version": "1.7.32",
3
+ "version": "1.7.34",
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.23",
44
- "@thi.ng/checks": "^3.7.3",
45
- "@thi.ng/errors": "^2.5.29",
46
- "@thi.ng/hiccup": "^5.3.8",
47
- "@thi.ng/paths": "^5.2.6",
48
- "@thi.ng/prefixes": "^2.3.40",
49
- "@thi.ng/rstream": "^9.2.15",
50
- "@thi.ng/strings": "^3.9.8"
43
+ "@thi.ng/api": "^8.11.25",
44
+ "@thi.ng/checks": "^3.7.5",
45
+ "@thi.ng/errors": "^2.5.31",
46
+ "@thi.ng/hiccup": "^5.3.10",
47
+ "@thi.ng/paths": "^5.2.8",
48
+ "@thi.ng/prefixes": "^2.3.42",
49
+ "@thi.ng/rstream": "^9.2.17",
50
+ "@thi.ng/strings": "^3.9.10"
51
51
  },
52
52
  "devDependencies": {
53
- "esbuild": "^0.25.1",
54
- "typedoc": "^0.28.0",
53
+ "esbuild": "^0.25.2",
54
+ "typedoc": "^0.28.1",
55
55
  "typescript": "^5.8.2"
56
56
  },
57
57
  "keywords": [
@@ -148,5 +148,5 @@
148
148
  ],
149
149
  "year": 2020
150
150
  },
151
- "gitHead": "dfecb91b5b6a05db32d96f261e0c0ac6319240b9\n"
151
+ "gitHead": "87aa2d0e64a357476c10fd57aabdfded13c79f7d\n"
152
152
  }