@thi.ng/rstream 9.5.3 → 9.5.6

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 (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +13 -13
package/README.md CHANGED
@@ -233,7 +233,7 @@ Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
233
233
 
234
234
  ## Usage examples
235
235
 
236
- 57 projects in this repo's
236
+ 58 projects in this repo's
237
237
  [/examples](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples)
238
238
  directory are using this package:
239
239
 
@@ -266,6 +266,7 @@ directory are using this package:
266
266
  | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/pointfree-geom.jpg" width="240"/> | Live coding playground for 2D geometry generation using @thi.ng/pointfree-lang | [Demo](https://demo.thi.ng/umbrella/pointfree-geom/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/pointfree-geom) |
267
267
  | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/procedural-text.jpg" width="240"/> | Procedural stochastic text generation via custom DSL, parse grammar & AST transformation | [Demo](https://demo.thi.ng/umbrella/procedural-text/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/procedural-text) |
268
268
  | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/ramp-scroll-anim.png" width="240"/> | Scroll-based, reactive, multi-param CSS animation basics | [Demo](https://demo.thi.ng/umbrella/ramp-scroll-anim/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/ramp-scroll-anim) |
269
+ | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/rdom-bare-lists.avif" width="240"/> | Basic usage of rdom bare list components in multiple scenarios | [Demo](https://demo.thi.ng/umbrella/rdom-bare-lists/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/rdom-bare-lists) |
269
270
  | | Demonstates various rdom usage patterns | [Demo](https://demo.thi.ng/umbrella/rdom-basics/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/rdom-basics) |
270
271
  | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/rdom-canvas-basics.jpg" width="240"/> | Minimal rdom-canvas animation | [Demo](https://demo.thi.ng/umbrella/rdom-canvas-basics/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/rdom-canvas-basics) |
271
272
  | <img src="https://codeberg.org/thi.ng/umbrella/media/branch/develop/assets/examples/rdom-delayed-update.jpg" width="240"/> | Dynamically loaded images w/ preloader state | [Demo](https://demo.thi.ng/umbrella/rdom-delayed-update/) | [Source](https://codeberg.org/thi.ng/umbrella/src/branch/develop/examples/rdom-delayed-update) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/rstream",
3
- "version": "9.5.3",
3
+ "version": "9.5.6",
4
4
  "description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -44,20 +44,20 @@
44
44
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
45
45
  },
46
46
  "dependencies": {
47
- "@thi.ng/api": "^8.12.20",
48
- "@thi.ng/arrays": "^2.14.16",
49
- "@thi.ng/associative": "^7.1.36",
50
- "@thi.ng/atom": "^5.3.61",
51
- "@thi.ng/checks": "^3.9.0",
52
- "@thi.ng/errors": "^2.6.9",
53
- "@thi.ng/logger": "^3.3.3",
54
- "@thi.ng/transducers": "^9.6.33"
47
+ "@thi.ng/api": "^8.12.22",
48
+ "@thi.ng/arrays": "^2.14.19",
49
+ "@thi.ng/associative": "^7.1.39",
50
+ "@thi.ng/atom": "^5.3.63",
51
+ "@thi.ng/checks": "^3.9.2",
52
+ "@thi.ng/errors": "^2.6.11",
53
+ "@thi.ng/logger": "^3.3.5",
54
+ "@thi.ng/transducers": "^9.6.36"
55
55
  },
56
56
  "devDependencies": {
57
- "@types/node": "^25.5.2",
57
+ "@types/node": "^25.6.2",
58
58
  "esbuild": "^0.28.0",
59
- "typedoc": "^0.28.18",
60
- "typescript": "^5.9.3"
59
+ "typedoc": "^0.28.19",
60
+ "typescript": "^6.0.3"
61
61
  },
62
62
  "keywords": [
63
63
  "async",
@@ -223,5 +223,5 @@
223
223
  ],
224
224
  "year": 2017
225
225
  },
226
- "gitHead": "92be63f24030506f09d6d156804da2798c381dc4"
226
+ "gitHead": "17d2d1a6542704f55f2daa37550a4213b4a32cd8"
227
227
  }