@thi.ng/rstream 8.2.11 → 8.2.13
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 +1 -1
- package/README.md +1 -0
- package/package.json +11 -12
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -245,6 +245,7 @@ directory are using this package:
|
|
|
245
245
|
| | Demonstates various rdom usage patterns | [Demo](https://demo.thi.ng/umbrella/rdom-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-basics) |
|
|
246
246
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rdom-canvas-basics.jpg" width="240"/> | Minimal rdom-canvas animation | [Demo](https://demo.thi.ng/umbrella/rdom-canvas-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-canvas-basics) |
|
|
247
247
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/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://github.com/thi-ng/umbrella/tree/develop/examples/rdom-delayed-update) |
|
|
248
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rdom-formgen.jpg" width="240"/> | Basic usage of the declarative rdom-forms generator | [Demo](https://demo.thi.ng/umbrella/rdom-formgen/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-formgen) |
|
|
248
249
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rdom-key-sequences.jpg" width="240"/> | rstream & transducer-based FSM for converting key event sequences into high-level commands | [Demo](https://demo.thi.ng/umbrella/rdom-key-sequences/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-key-sequences) |
|
|
249
250
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rdom-lissajous.png" width="240"/> | rdom & hiccup-canvas interop test | [Demo](https://demo.thi.ng/umbrella/rdom-lissajous/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-lissajous) |
|
|
250
251
|
| | Full umbrella repo doc string search w/ paginated results | [Demo](https://demo.thi.ng/umbrella/rdom-search-docs/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-search-docs) |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rstream",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.13",
|
|
4
4
|
"description": "Reactive streams & subscription primitives for constructing dataflow graphs / pipelines",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,21 +37,20 @@
|
|
|
37
37
|
"test": "bun test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@thi.ng/api": "^8.9.
|
|
41
|
-
"@thi.ng/arrays": "^2.7.
|
|
42
|
-
"@thi.ng/associative": "^6.3.
|
|
43
|
-
"@thi.ng/atom": "^5.2.
|
|
44
|
-
"@thi.ng/checks": "^3.4.
|
|
45
|
-
"@thi.ng/errors": "^2.4.
|
|
46
|
-
"@thi.ng/logger": "^2.0.
|
|
47
|
-
"@thi.ng/transducers": "^8.8.
|
|
40
|
+
"@thi.ng/api": "^8.9.11",
|
|
41
|
+
"@thi.ng/arrays": "^2.7.7",
|
|
42
|
+
"@thi.ng/associative": "^6.3.23",
|
|
43
|
+
"@thi.ng/atom": "^5.2.17",
|
|
44
|
+
"@thi.ng/checks": "^3.4.11",
|
|
45
|
+
"@thi.ng/errors": "^2.4.5",
|
|
46
|
+
"@thi.ng/logger": "^2.0.1",
|
|
47
|
+
"@thi.ng/transducers": "^8.8.14"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@microsoft/api-extractor": "^7.38.3",
|
|
51
|
-
"@thi.ng/testament": "^0.4.2",
|
|
52
51
|
"rimraf": "^5.0.5",
|
|
53
52
|
"tools": "^0.0.1",
|
|
54
|
-
"typedoc": "^0.25.
|
|
53
|
+
"typedoc": "^0.25.4",
|
|
55
54
|
"typescript": "^5.3.2"
|
|
56
55
|
},
|
|
57
56
|
"keywords": [
|
|
@@ -213,5 +212,5 @@
|
|
|
213
212
|
],
|
|
214
213
|
"year": 2017
|
|
215
214
|
},
|
|
216
|
-
"gitHead": "
|
|
215
|
+
"gitHead": "25f2ac8ff795a432a930119661b364d4d93b59a0\n"
|
|
217
216
|
}
|