@thi.ng/rdom-components 0.7.5 → 0.7.7
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 +2 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -82,12 +82,13 @@ Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
|
|
|
82
82
|
|
|
83
83
|
## Usage examples
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
Six projects in this repo's
|
|
86
86
|
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
87
87
|
directory are using this package:
|
|
88
88
|
|
|
89
89
|
| Screenshot | Description | Live demo | Source |
|
|
90
90
|
|:---------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------|:----------------------------------------------------------|:---------------------------------------------------------------------------------------|
|
|
91
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/bitmap-font.gif" width="240"/> | Figlet-style bitmap font creation with transducers | [Demo](https://demo.thi.ng/umbrella/bitmap-font/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/bitmap-font) |
|
|
91
92
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/color-themes.png" width="240"/> | Probabilistic color theme generator | [Demo](https://demo.thi.ng/umbrella/color-themes/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/color-themes) |
|
|
92
93
|
| <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) |
|
|
93
94
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/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://github.com/thi-ng/umbrella/tree/develop/examples/procedural-text) |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/rdom-components",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.7",
|
|
4
4
|
"description": "Collection of unstyled, customizable components for @thi.ng/rdom",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.11.
|
|
40
|
-
"@thi.ng/hiccup-html": "^2.7.
|
|
41
|
-
"@thi.ng/object-utils": "^1.1.
|
|
42
|
-
"@thi.ng/rdom": "^1.
|
|
43
|
-
"@thi.ng/rstream": "^8.5.
|
|
44
|
-
"@thi.ng/strings": "^3.8.
|
|
45
|
-
"@thi.ng/transducers": "^9.0.
|
|
39
|
+
"@thi.ng/api": "^8.11.8",
|
|
40
|
+
"@thi.ng/hiccup-html": "^2.7.4",
|
|
41
|
+
"@thi.ng/object-utils": "^1.1.1",
|
|
42
|
+
"@thi.ng/rdom": "^1.6.0",
|
|
43
|
+
"@thi.ng/rstream": "^8.5.10",
|
|
44
|
+
"@thi.ng/strings": "^3.8.2",
|
|
45
|
+
"@thi.ng/transducers": "^9.0.13"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@microsoft/api-extractor": "^7.47.
|
|
48
|
+
"@microsoft/api-extractor": "^7.47.5",
|
|
49
49
|
"esbuild": "^0.23.0",
|
|
50
|
-
"typedoc": "^0.26.
|
|
51
|
-
"typescript": "^5.5.
|
|
50
|
+
"typedoc": "^0.26.5",
|
|
51
|
+
"typescript": "^5.5.4"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"browser",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"status": "alpha",
|
|
110
110
|
"year": 2020
|
|
111
111
|
},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
|
|
113
113
|
}
|