@unhead/vue 2.0.0-alpha.7 → 2.0.0-alpha.8
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.cjs +3 -0
- package/dist/index.d.cts +3 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -10,6 +10,8 @@ const unheadVueComposablesImports = {
|
|
|
10
10
|
"@unhead/vue": ["injectHead", ...shared.composableNames]
|
|
11
11
|
};
|
|
12
12
|
|
|
13
|
+
const CapoPlugin = () => ({});
|
|
14
|
+
|
|
13
15
|
exports.createHeadCore = unhead.createHeadCore;
|
|
14
16
|
exports.headSymbol = composables.headSymbol;
|
|
15
17
|
exports.injectHead = composables.injectHead;
|
|
@@ -21,4 +23,5 @@ exports.useServerHead = composables.useServerHead;
|
|
|
21
23
|
exports.useServerHeadSafe = composables.useServerHeadSafe;
|
|
22
24
|
exports.useServerSeoMeta = composables.useServerSeoMeta;
|
|
23
25
|
exports.VueHeadMixin = VueHeadMixin.VueHeadMixin;
|
|
26
|
+
exports.CapoPlugin = CapoPlugin;
|
|
24
27
|
exports.unheadVueComposablesImports = unheadVueComposablesImports;
|
package/dist/index.d.cts
CHANGED
|
@@ -21,4 +21,6 @@ declare function useServerSeoMeta(input: UseSeoMetaInput, options?: UseHeadOptio
|
|
|
21
21
|
|
|
22
22
|
declare const headSymbol = "usehead";
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
declare const CapoPlugin: () => {};
|
|
25
|
+
|
|
26
|
+
export { CapoPlugin, UseHeadInput, UseHeadOptions, UseHeadSafeInput, UseSeoMetaInput, VueHeadClient, headSymbol, injectHead, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
|
package/dist/index.d.mts
CHANGED
|
@@ -21,4 +21,6 @@ declare function useServerSeoMeta(input: UseSeoMetaInput, options?: UseHeadOptio
|
|
|
21
21
|
|
|
22
22
|
declare const headSymbol = "usehead";
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
declare const CapoPlugin: () => {};
|
|
25
|
+
|
|
26
|
+
export { CapoPlugin, UseHeadInput, UseHeadOptions, UseHeadSafeInput, UseSeoMetaInput, VueHeadClient, headSymbol, injectHead, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
|
package/dist/index.d.ts
CHANGED
|
@@ -21,4 +21,6 @@ declare function useServerSeoMeta(input: UseSeoMetaInput, options?: UseHeadOptio
|
|
|
21
21
|
|
|
22
22
|
declare const headSymbol = "usehead";
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
declare const CapoPlugin: () => {};
|
|
25
|
+
|
|
26
|
+
export { CapoPlugin, UseHeadInput, UseHeadOptions, UseHeadSafeInput, UseSeoMetaInput, VueHeadClient, headSymbol, injectHead, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
|
package/dist/index.mjs
CHANGED
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.8",
|
|
5
5
|
"description": "Full-stack <head> manager built for Vue.",
|
|
6
6
|
"author": "Harlan Wilton <harlan@harlanzw.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -91,9 +91,9 @@
|
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"hookable": "^5.5.3",
|
|
94
|
-
"@unhead/
|
|
95
|
-
"unhead": "2.0.0-alpha.
|
|
96
|
-
"
|
|
94
|
+
"@unhead/schema": "2.0.0-alpha.8",
|
|
95
|
+
"@unhead/shared": "2.0.0-alpha.8",
|
|
96
|
+
"unhead": "2.0.0-alpha.8"
|
|
97
97
|
},
|
|
98
98
|
"scripts": {
|
|
99
99
|
"build": "unbuild .",
|