@unhead/svelte 2.0.1 → 2.0.2
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/dist/client.d.mts +2 -1
- package/dist/client.d.ts +2 -1
- package/dist/server.d.mts +2 -1
- package/dist/server.d.ts +2 -1
- package/package.json +2 -2
package/dist/client.d.mts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { CreateClientHeadOptions, Unhead } from 'unhead/types';
|
|
2
|
+
export { CreateClientHeadOptions, Unhead } from 'unhead/types';
|
|
2
3
|
export { UnheadContextKey } from './server.mjs';
|
|
3
4
|
export { renderDOMHead } from 'unhead/client';
|
|
4
5
|
import 'unhead/server';
|
|
5
6
|
|
|
6
|
-
declare function createHead(options?:
|
|
7
|
+
declare function createHead(options?: CreateClientHeadOptions): Unhead;
|
|
7
8
|
|
|
8
9
|
export { createHead };
|
package/dist/client.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { CreateClientHeadOptions, Unhead } from 'unhead/types';
|
|
2
|
+
export { CreateClientHeadOptions, Unhead } from 'unhead/types';
|
|
2
3
|
export { UnheadContextKey } from './server.js';
|
|
3
4
|
export { renderDOMHead } from 'unhead/client';
|
|
4
5
|
import 'unhead/server';
|
|
5
6
|
|
|
6
|
-
declare function createHead(options?:
|
|
7
|
+
declare function createHead(options?: CreateClientHeadOptions): Unhead;
|
|
7
8
|
|
|
8
9
|
export { createHead };
|
package/dist/server.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { createHead, extractUnheadInputFromHtml, renderSSRHead, transformHtmlTemplate } from 'unhead/server';
|
|
2
|
+
export { CreateServerHeadOptions, SSRHeadPayload, Unhead } from 'unhead/types';
|
|
2
3
|
|
|
3
4
|
declare const UnheadContextKey: unique symbol;
|
|
4
5
|
|
package/dist/server.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { createHead, extractUnheadInputFromHtml, renderSSRHead, transformHtmlTemplate } from 'unhead/server';
|
|
2
|
+
export { CreateServerHeadOptions, SSRHeadPayload, Unhead } from 'unhead/types';
|
|
2
3
|
|
|
3
4
|
declare const UnheadContextKey: unique symbol;
|
|
4
5
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unhead/svelte",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.2",
|
|
5
5
|
"author": "Harlan Wilton <harlan@harlanzw.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://github.com/sponsors/harlan-zw",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
]
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"unhead": "2.0.
|
|
66
|
+
"unhead": "2.0.2"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@testing-library/svelte": "^5.2.7",
|