@thi.ng/hiccup-html 2.1.12 → 2.1.14
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 +7 -6
- package/head.js +0 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/hiccup-html)
|
|
6
6
|

|
|
@@ -20,8 +20,8 @@ This project is part of the
|
|
|
20
20
|
- [Forms / inputs](#forms--inputs)
|
|
21
21
|
- [Media](#media)
|
|
22
22
|
- [Compatibility](#compatibility)
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
- [Status](#status)
|
|
24
|
+
- [Related packages](#related-packages)
|
|
25
25
|
- [Installation](#installation)
|
|
26
26
|
- [Dependencies](#dependencies)
|
|
27
27
|
- [Usage examples](#usage-examples)
|
|
@@ -150,7 +150,7 @@ thi.ng/umbrella eco system (most relevant:
|
|
|
150
150
|
[@thi.ng/rstream](https://github.com/thi-ng/umbrella/tree/develop/packages/rstream),
|
|
151
151
|
[@thi.ng/atom](https://github.com/thi-ng/umbrella/tree/develop/packages/atom)).
|
|
152
152
|
|
|
153
|
-
|
|
153
|
+
## Status
|
|
154
154
|
|
|
155
155
|
**STABLE** - used in production
|
|
156
156
|
|
|
@@ -160,7 +160,7 @@ The current aim is not necessarily to have wrappers for *each* possible
|
|
|
160
160
|
HTML5 element, but certainly to support the most commonly used ones. PRs
|
|
161
161
|
welcome!
|
|
162
162
|
|
|
163
|
-
|
|
163
|
+
## Related packages
|
|
164
164
|
|
|
165
165
|
- [@thi.ng/hdom](https://github.com/thi-ng/umbrella/tree/develop/packages/hdom) - Lightweight vanilla ES6 UI component trees with customizable branch-local behaviors
|
|
166
166
|
- [@thi.ng/rdom](https://github.com/thi-ng/umbrella/tree/develop/packages/rdom) - Lightweight, reactive, VDOM-less UI/DOM components with async lifecycle and [@thi.ng/hiccup](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup) compatible
|
|
@@ -189,7 +189,7 @@ node --experimental-repl-await
|
|
|
189
189
|
> const hiccupHtml = await import("@thi.ng/hiccup-html");
|
|
190
190
|
```
|
|
191
191
|
|
|
192
|
-
Package sizes (gzipped, pre-treeshake): ESM: 1.
|
|
192
|
+
Package sizes (gzipped, pre-treeshake): ESM: 1.66 KB
|
|
193
193
|
|
|
194
194
|
## Dependencies
|
|
195
195
|
|
|
@@ -213,6 +213,7 @@ A selection:
|
|
|
213
213
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rdom-dnd.png" width="240"/> | rdom drag & drop example | [Demo](https://demo.thi.ng/umbrella/rdom-dnd/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-dnd) |
|
|
214
214
|
| <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) |
|
|
215
215
|
| | 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) |
|
|
216
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/svg-resample.png" width="240"/> | SVG path parsing & dynamic resampling | [Demo](https://demo.thi.ng/umbrella/svg-resample/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/svg-resample) |
|
|
216
217
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/webgl-channel-mixer.jpg" width="240"/> | rdom & WebGL-based image channel editor | [Demo](https://demo.thi.ng/umbrella/webgl-channel-mixer/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/webgl-channel-mixer) |
|
|
217
218
|
|
|
218
219
|
## API
|
package/head.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/hiccup-html",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.14",
|
|
4
4
|
"description": "100+ type-checked HTML5 element functions for @thi.ng/hiccup related infrastructure",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
37
|
+
"@thi.ng/api": "^8.4.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@microsoft/api-extractor": "^7.
|
|
41
|
-
"@thi.ng/testament": "^0.
|
|
40
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
41
|
+
"@thi.ng/testament": "^0.3.1",
|
|
42
42
|
"rimraf": "^3.0.2",
|
|
43
43
|
"tools": "^0.0.1",
|
|
44
44
|
"typedoc": "^0.22.17",
|
|
45
|
-
"typescript": "^4.
|
|
45
|
+
"typescript": "^4.8.3"
|
|
46
46
|
},
|
|
47
47
|
"keywords": [
|
|
48
48
|
"browser",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
],
|
|
111
111
|
"year": 2020
|
|
112
112
|
},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "8600007d81a7dc92634a1d54e2c32b14ab30ba80\n"
|
|
114
114
|
}
|