@thi.ng/hiccup-html 2.1.6 → 2.1.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/head.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
package/head.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export interface ViewportOpts {
|
|
|
24
24
|
export declare const metaViewport: (opts?: Partial<ViewportOpts>) => [string, import("@thi.ng/api").Nullable<Partial<MetaAttribs>>, ...never[]];
|
|
25
25
|
export declare const metaRobots: (type: "index" | "noindex" | "follow" | "nofollow" | "none" | "noarchive" | "nosnippet" | "noimageindex" | "nocache") => [string, import("@thi.ng/api").Nullable<Partial<MetaAttribs>>, ...never[]];
|
|
26
26
|
export declare const metaReferrer: (type: "no-referrer-when-downgrade" | "no-referrer" | "origin-when-cross-origin" | "origin" | "same-origin" | "strict-origin-when-cross-origin" | "strict-origin" | "unsafe-URL") => [string, import("@thi.ng/api").Nullable<Partial<MetaAttribs>>, ...never[]];
|
|
27
|
-
export declare const metaRefresh: (delay: number, url?: string
|
|
27
|
+
export declare const metaRefresh: (delay: number, url?: string) => [string, import("@thi.ng/api").Nullable<Partial<MetaAttribs>>, ...never[]];
|
|
28
28
|
export declare const metaUTF8: () => [string, import("@thi.ng/api").Nullable<Partial<MetaAttribs>>, ...never[]];
|
|
29
29
|
export declare const metaXUA: () => [string, import("@thi.ng/api").Nullable<Partial<MetaAttribs>>, ...never[]];
|
|
30
30
|
export interface LinkAttribs extends RelAttribs, CORSAttribs, ImportanceAttribs, ReferrerAttribs {
|
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.7",
|
|
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.3.
|
|
37
|
+
"@thi.ng/api": "^8.3.7"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@microsoft/api-extractor": "^7.
|
|
41
|
-
"@thi.ng/testament": "^0.2.
|
|
40
|
+
"@microsoft/api-extractor": "^7.25.0",
|
|
41
|
+
"@thi.ng/testament": "^0.2.8",
|
|
42
42
|
"rimraf": "^3.0.2",
|
|
43
43
|
"tools": "^0.0.1",
|
|
44
|
-
"typedoc": "^0.22.
|
|
45
|
-
"typescript": "^4.
|
|
44
|
+
"typedoc": "^0.22.17",
|
|
45
|
+
"typescript": "^4.7.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": "9e516d30a1a537e027a6b3d78bf9121bc5831d31\n"
|
|
114
114
|
}
|