@thi.ng/hiccup-html 2.2.9 → 2.2.11

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-02T18:09:03Z
3
+ - **Last updated**: 2023-03-14T13:27:19Z
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.
package/README.md CHANGED
@@ -301,7 +301,7 @@ when later providing attribute values to an element.
301
301
  #### Element creation
302
302
 
303
303
  The function returned by `defElement` has the [following
304
- signatures](https://docs.thi.ng/umbrella/hiccup-html/modules.html#defElement):
304
+ signatures](https://docs.thi.ng/umbrella/hiccup-html/functions/defElement.html):
305
305
 
306
306
  ```ts
307
307
  (attribs?: Nullable<T>, ...body: B[]) => [string, Nullable<T>, ...B[]];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hiccup-html",
3
- "version": "2.2.9",
3
+ "version": "2.2.11",
4
4
  "description": "100+ type-checked HTML5 element functions for @thi.ng/hiccup related infrastructure",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -25,7 +25,7 @@
25
25
  "license": "Apache-2.0",
26
26
  "scripts": {
27
27
  "build": "yarn clean && tsc --declaration",
28
- "clean": "rimraf '*.js' '*.d.ts' '*.map' doc",
28
+ "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
29
29
  "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
30
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
31
31
  "doc:readme": "yarn doc:stats && tools:readme",
@@ -34,14 +34,14 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.7.3"
37
+ "@thi.ng/api": "^8.7.4"
38
38
  },
39
39
  "devDependencies": {
40
- "@microsoft/api-extractor": "^7.34.2",
41
- "@thi.ng/testament": "^0.3.11",
42
- "rimraf": "^4.1.2",
40
+ "@microsoft/api-extractor": "^7.34.4",
41
+ "@thi.ng/testament": "^0.3.13",
42
+ "rimraf": "^4.4.0",
43
43
  "tools": "^0.0.1",
44
- "typedoc": "^0.23.24",
44
+ "typedoc": "^0.23.26",
45
45
  "typescript": "^4.9.5"
46
46
  },
47
47
  "keywords": [
@@ -110,5 +110,5 @@
110
110
  ],
111
111
  "year": 2020
112
112
  },
113
- "gitHead": "a2915dee637c1b8cd2e11a78a23bd035e4f750e7\n"
113
+ "gitHead": "cc46c097a3a173fb1ef41f57a858d03037063141\n"
114
114
  }