@thi.ng/hiccup 5.1.28 → 5.1.29
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 +2 -2
- package/deref.d.ts +2 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2024-04-
|
|
3
|
+
- **Last updated**: 2024-04-20T14:42:45Z
|
|
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
|
+
### [5.1.29](https://github.com/thi-ng/umbrella/tree/@thi.ng/hiccup@5.1.29) (2024-04-20)
|
|
13
|
+
|
|
14
|
+
#### ♻️ Refactoring
|
|
15
|
+
|
|
16
|
+
- update type usage ([33f8451](https://github.com/thi-ng/umbrella/commit/33f8451))
|
|
17
|
+
|
|
12
18
|
### [5.1.23](https://github.com/thi-ng/umbrella/tree/@thi.ng/hiccup@5.1.23) (2024-03-18)
|
|
13
19
|
|
|
14
20
|
#### ♻️ Refactoring
|
package/README.md
CHANGED
|
@@ -172,10 +172,10 @@ import * as h from "@thi.ng/hiccup";
|
|
|
172
172
|
Browser ESM import:
|
|
173
173
|
|
|
174
174
|
```html
|
|
175
|
-
<script type="module" src="https://
|
|
175
|
+
<script type="module" src="https://esm.run/@thi.ng/hiccup"></script>
|
|
176
176
|
```
|
|
177
177
|
|
|
178
|
-
[
|
|
178
|
+
[JSDelivr documentation](https://www.jsdelivr.com/)
|
|
179
179
|
|
|
180
180
|
For Node.js REPL:
|
|
181
181
|
|
package/deref.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { Maybe } from "@thi.ng/api";
|
|
1
2
|
/**
|
|
2
3
|
* Takes an arbitrary `ctx` object and array of `keys`. Attempts to call
|
|
3
4
|
* `.deref()` on all given keys' values and stores result values instead
|
|
@@ -9,5 +10,5 @@
|
|
|
9
10
|
*
|
|
10
11
|
* @internal
|
|
11
12
|
*/
|
|
12
|
-
export declare const derefContext: (ctx: any, keys
|
|
13
|
+
export declare const derefContext: (ctx: any, keys?: Maybe<PropertyKey[]>) => any;
|
|
13
14
|
//# sourceMappingURL=deref.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/hiccup",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.29",
|
|
4
4
|
"description": "HTML/SVG/XML serialization of nested data structures, iterables & closures",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,14 +36,14 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.
|
|
40
|
-
"@thi.ng/checks": "^3.6.
|
|
41
|
-
"@thi.ng/errors": "^2.5.
|
|
42
|
-
"@thi.ng/strings": "^3.7.
|
|
39
|
+
"@thi.ng/api": "^8.11.0",
|
|
40
|
+
"@thi.ng/checks": "^3.6.2",
|
|
41
|
+
"@thi.ng/errors": "^2.5.5",
|
|
42
|
+
"@thi.ng/strings": "^3.7.31"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@microsoft/api-extractor": "^7.43.0",
|
|
46
|
-
"@thi.ng/atom": "^5.2.
|
|
46
|
+
"@thi.ng/atom": "^5.2.44",
|
|
47
47
|
"esbuild": "^0.20.2",
|
|
48
48
|
"rimraf": "^5.0.5",
|
|
49
49
|
"typedoc": "^0.25.12",
|
|
@@ -129,5 +129,5 @@
|
|
|
129
129
|
],
|
|
130
130
|
"year": 2016
|
|
131
131
|
},
|
|
132
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "8339d05ecc857e529c7325a9839c0063b89e728d\n"
|
|
133
133
|
}
|