@thi.ng/hiccup-html 2.2.36 → 2.3.0
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 +7 -1
- package/README.md +1 -0
- package/api.d.ts +1 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2023-
|
|
3
|
+
- **Last updated**: 2023-12-09T19:12:03Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
9
9
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
10
10
|
and/or version bumps of transitive dependencies.
|
|
11
11
|
|
|
12
|
+
## [2.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/hiccup-html@2.3.0) (2023-12-09)
|
|
13
|
+
|
|
14
|
+
#### 🚀 Features
|
|
15
|
+
|
|
16
|
+
- update Attribs.class type, allow string array ([e82c3b4](https://github.com/thi-ng/umbrella/commit/e82c3b4))
|
|
17
|
+
|
|
12
18
|
### [2.2.33](https://github.com/thi-ng/umbrella/tree/@thi.ng/hiccup-html@2.2.33) (2023-11-09)
|
|
13
19
|
|
|
14
20
|
#### ♻️ Refactoring
|
package/README.md
CHANGED
|
@@ -219,6 +219,7 @@ directory are using this package:
|
|
|
219
219
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/pixel-waveform.jpg" width="240"/> | RGB waveform image analysis | [Demo](https://demo.thi.ng/umbrella/pixel-waveform/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/pixel-waveform) |
|
|
220
220
|
| <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) |
|
|
221
221
|
| <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) |
|
|
222
|
+
| <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) |
|
|
222
223
|
| <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) |
|
|
223
224
|
| <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) |
|
|
224
225
|
| | 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/api.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export type CSSSVGProperty = "alignment-baseline" | "baseline-shift" | "clip" |
|
|
|
73
73
|
export interface Attribs extends GlobalEventAttribs, MicroformatAttribs, RDFaAttribs {
|
|
74
74
|
accesskey: StringAttrib;
|
|
75
75
|
autocapitalize: AttribVal<"off" | "on" | "sentences" | "words" | "characters">;
|
|
76
|
-
class: AttribVal<string | IObjectOf<BooleanAttrib>>;
|
|
76
|
+
class: AttribVal<string | string[] | IObjectOf<BooleanAttrib>>;
|
|
77
77
|
contenteditable: BooleanAttrib;
|
|
78
78
|
data: IObjectOf<AttribVal<string | number | boolean>>;
|
|
79
79
|
dir: AttribVal<"rtl" | "ltr">;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/hiccup-html",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "100+ type-checked HTML5 element functions for @thi.ng/hiccup related infrastructure",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -33,14 +33,13 @@
|
|
|
33
33
|
"test": "bun test"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@thi.ng/api": "^8.9.
|
|
36
|
+
"@thi.ng/api": "^8.9.11"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@microsoft/api-extractor": "^7.38.3",
|
|
40
|
-
"@thi.ng/testament": "^0.4.2",
|
|
41
40
|
"rimraf": "^5.0.5",
|
|
42
41
|
"tools": "^0.0.1",
|
|
43
|
-
"typedoc": "^0.25.
|
|
42
|
+
"typedoc": "^0.25.4",
|
|
44
43
|
"typescript": "^5.3.2"
|
|
45
44
|
},
|
|
46
45
|
"keywords": [
|
|
@@ -109,5 +108,5 @@
|
|
|
109
108
|
],
|
|
110
109
|
"year": 2020
|
|
111
110
|
},
|
|
112
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "25f2ac8ff795a432a930119661b364d4d93b59a0\n"
|
|
113
112
|
}
|