@thi.ng/rdom 0.12.17 → 0.12.18
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 +3 -4
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -293,11 +293,9 @@ Package sizes (brotli'd, pre-treeshake): ESM: 3.88 KB
|
|
|
293
293
|
|
|
294
294
|
## Usage examples
|
|
295
295
|
|
|
296
|
-
Several
|
|
296
|
+
Several projects in this repo's
|
|
297
297
|
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
298
|
-
directory are using this package
|
|
299
|
-
|
|
300
|
-
A selection:
|
|
298
|
+
directory are using this package:
|
|
301
299
|
|
|
302
300
|
| Screenshot | Description | Live demo | Source |
|
|
303
301
|
|:---------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------|
|
|
@@ -307,6 +305,7 @@ A selection:
|
|
|
307
305
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/dominant-colors.png" width="240"/> | Color palette generation via dominant color extraction from uploaded images | [Demo](https://demo.thi.ng/umbrella/dominant-colors/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/dominant-colors) |
|
|
308
306
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/ellipse-proximity.png" width="240"/> | Interactive visualization of closest points on ellipses | [Demo](https://demo.thi.ng/umbrella/ellipse-proximity/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/ellipse-proximity) |
|
|
309
307
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/fiber-basics.png" width="240"/> | Fiber-based cooperative multitasking basics | [Demo](https://demo.thi.ng/umbrella/fiber-basics/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/fiber-basics) |
|
|
308
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/layout-gridgen.png" width="240"/> | Randomized space-filling, nested grid layout generator | [Demo](https://demo.thi.ng/umbrella/layout-gridgen/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/layout-gridgen) |
|
|
310
309
|
| <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) |
|
|
311
310
|
| <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) |
|
|
312
311
|
| <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) |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rdom",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.18",
|
|
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",
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"@thi.ng/api": "^8.9.6",
|
|
39
39
|
"@thi.ng/checks": "^3.4.6",
|
|
40
40
|
"@thi.ng/errors": "^2.4.0",
|
|
41
|
-
"@thi.ng/hiccup": "^5.0.
|
|
42
|
-
"@thi.ng/paths": "^5.1.
|
|
41
|
+
"@thi.ng/hiccup": "^5.0.4",
|
|
42
|
+
"@thi.ng/paths": "^5.1.47",
|
|
43
43
|
"@thi.ng/prefixes": "^2.2.2",
|
|
44
|
-
"@thi.ng/rstream": "^8.2.
|
|
45
|
-
"@thi.ng/strings": "^3.6.
|
|
44
|
+
"@thi.ng/rstream": "^8.2.5",
|
|
45
|
+
"@thi.ng/strings": "^3.6.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@microsoft/api-extractor": "^7.38.0",
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
],
|
|
143
143
|
"year": 2020
|
|
144
144
|
},
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "bfa16829786146bd24df3cdbd44649a45a603e44\n"
|
|
146
146
|
}
|