@unhead/vue 2.0.0-alpha.19 → 2.0.0-alpha.20
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/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -24,4 +24,6 @@ declare function useServerSeoMeta(input?: UseSeoMetaInput, options?: UseHeadOpti
|
|
|
24
24
|
|
|
25
25
|
declare const headSymbol = "usehead";
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
declare const CapoPlugin: () => {};
|
|
28
|
+
|
|
29
|
+
export { CapoPlugin, UseHeadInput, UseHeadOptions, UseHeadSafeInput, UseSeoMetaInput, VueHeadClient, headSymbol, injectHead, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
|
package/dist/index.d.ts
CHANGED
|
@@ -24,4 +24,6 @@ declare function useServerSeoMeta(input?: UseSeoMetaInput, options?: UseHeadOpti
|
|
|
24
24
|
|
|
25
25
|
declare const headSymbol = "usehead";
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
declare const CapoPlugin: () => {};
|
|
28
|
+
|
|
29
|
+
export { CapoPlugin, UseHeadInput, UseHeadOptions, UseHeadSafeInput, UseSeoMetaInput, VueHeadClient, headSymbol, injectHead, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
|
package/dist/index.mjs
CHANGED
|
@@ -11,4 +11,6 @@ const unheadVueComposablesImports = {
|
|
|
11
11
|
"@unhead/vue": ["injectHead", "useHead", "useSeoMeta", "useHeadSafe", "useServerHead", "useServerSeoMeta", "useServerHeadSafe"]
|
|
12
12
|
};
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
const CapoPlugin = () => ({});
|
|
15
|
+
|
|
16
|
+
export { CapoPlugin, unheadVueComposablesImports };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unhead/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.0-alpha.
|
|
4
|
+
"version": "2.0.0-alpha.20",
|
|
5
5
|
"description": "Full-stack <head> manager built for Vue.",
|
|
6
6
|
"author": "Harlan Wilton <harlan@harlanzw.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
},
|
|
102
102
|
"dependencies": {
|
|
103
103
|
"hookable": "^5.5.3",
|
|
104
|
-
"unhead": "2.0.0-alpha.
|
|
104
|
+
"unhead": "2.0.0-alpha.20"
|
|
105
105
|
},
|
|
106
106
|
"scripts": {
|
|
107
107
|
"build": "unbuild .",
|