@unhead/vue 2.0.0-beta.0 → 2.0.0-beta.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/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.mjs +2 -2
- package/dist/scripts.d.mts +1 -0
- package/dist/scripts.d.ts +1 -0
- package/dist/scripts.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -9,10 +9,10 @@ export { H as HeadSafe, S as SafeBodyAttr, a as SafeHtmlAttr, c as SafeLink, b a
|
|
|
9
9
|
export { Base, BodyAttributes, HtmlAttributes, Link, Meta, Noscript, Script, Style } from './types.mjs';
|
|
10
10
|
export { resolveUnrefHeadInput } from './utils.mjs';
|
|
11
11
|
export { V as VueHeadMixin } from './shared/vue.DnywREVF.mjs';
|
|
12
|
-
export { useScript } from './scripts.mjs';
|
|
12
|
+
export { UseScriptContext, UseScriptInput, UseScriptOptions, UseScriptReturn, VueScriptInstance, useScript } from './scripts.mjs';
|
|
13
|
+
export { AsVoidFunctions, EventHandlerOptions, RecordingEntry, ScriptInstance, UseFunctionType, UseScriptResolvedInput, UseScriptStatus, WarmupStrategy, createSpyProxy, resolveScriptKey } from 'unhead/scripts';
|
|
13
14
|
import 'vue';
|
|
14
15
|
import 'unhead/utils';
|
|
15
|
-
import 'unhead/scripts';
|
|
16
16
|
|
|
17
17
|
declare const unheadVueComposablesImports: {
|
|
18
18
|
'@unhead/vue': string[];
|
|
@@ -40,6 +40,6 @@ declare const headSymbol = "usehead";
|
|
|
40
40
|
/**
|
|
41
41
|
* @deprecated Use createUnhead
|
|
42
42
|
*/
|
|
43
|
-
declare const
|
|
43
|
+
declare const createHeadCore: typeof createUnhead;
|
|
44
44
|
|
|
45
|
-
export { UseHeadInput, UseHeadOptions, UseHeadSafeInput, UseSeoMetaInput, VueHeadClient,
|
|
45
|
+
export { UseHeadInput, UseHeadOptions, UseHeadSafeInput, UseSeoMetaInput, VueHeadClient, createHeadCore, headSymbol, injectHead, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
|
package/dist/index.d.ts
CHANGED
|
@@ -9,10 +9,10 @@ export { H as HeadSafe, S as SafeBodyAttr, a as SafeHtmlAttr, c as SafeLink, b a
|
|
|
9
9
|
export { Base, BodyAttributes, HtmlAttributes, Link, Meta, Noscript, Script, Style } from './types.js';
|
|
10
10
|
export { resolveUnrefHeadInput } from './utils.js';
|
|
11
11
|
export { V as VueHeadMixin } from './shared/vue.DnywREVF.js';
|
|
12
|
-
export { useScript } from './scripts.js';
|
|
12
|
+
export { UseScriptContext, UseScriptInput, UseScriptOptions, UseScriptReturn, VueScriptInstance, useScript } from './scripts.js';
|
|
13
|
+
export { AsVoidFunctions, EventHandlerOptions, RecordingEntry, ScriptInstance, UseFunctionType, UseScriptResolvedInput, UseScriptStatus, WarmupStrategy, createSpyProxy, resolveScriptKey } from 'unhead/scripts';
|
|
13
14
|
import 'vue';
|
|
14
15
|
import 'unhead/utils';
|
|
15
|
-
import 'unhead/scripts';
|
|
16
16
|
|
|
17
17
|
declare const unheadVueComposablesImports: {
|
|
18
18
|
'@unhead/vue': string[];
|
|
@@ -40,6 +40,6 @@ declare const headSymbol = "usehead";
|
|
|
40
40
|
/**
|
|
41
41
|
* @deprecated Use createUnhead
|
|
42
42
|
*/
|
|
43
|
-
declare const
|
|
43
|
+
declare const createHeadCore: typeof createUnhead;
|
|
44
44
|
|
|
45
|
-
export { UseHeadInput, UseHeadOptions, UseHeadSafeInput, UseSeoMetaInput, VueHeadClient,
|
|
45
|
+
export { UseHeadInput, UseHeadOptions, UseHeadSafeInput, UseSeoMetaInput, VueHeadClient, createHeadCore, headSymbol, injectHead, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
|
package/dist/index.mjs
CHANGED
|
@@ -14,6 +14,6 @@ const unheadVueComposablesImports = {
|
|
|
14
14
|
"@unhead/vue": ["injectHead", "useHead", "useSeoMeta", "useHeadSafe", "useServerHead", "useServerSeoMeta", "useServerHeadSafe"]
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
-
const
|
|
17
|
+
const createHeadCore = createUnhead;
|
|
18
18
|
|
|
19
|
-
export {
|
|
19
|
+
export { createHeadCore, unheadVueComposablesImports };
|
package/dist/scripts.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseScriptOptions as UseScriptOptions$1, ScriptInstance, UseScriptStatus, UseFunctionType } from 'unhead/scripts';
|
|
2
|
+
export { AsVoidFunctions, EventHandlerOptions, RecordingEntry, ScriptInstance, UseFunctionType, UseScriptResolvedInput, UseScriptStatus, WarmupStrategy, createSpyProxy, resolveScriptKey } from 'unhead/scripts';
|
|
2
3
|
import { ScriptWithoutEvents, DataKeys, SchemaAugmentations, HeadEntryOptions } from 'unhead/types';
|
|
3
4
|
import { Ref } from 'vue';
|
|
4
5
|
import { o as ResolvableProperties, V as VueHeadClient } from './shared/vue.C1egIkvG.mjs';
|
package/dist/scripts.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { UseScriptOptions as UseScriptOptions$1, ScriptInstance, UseScriptStatus, UseFunctionType } from 'unhead/scripts';
|
|
2
|
+
export { AsVoidFunctions, EventHandlerOptions, RecordingEntry, ScriptInstance, UseFunctionType, UseScriptResolvedInput, UseScriptStatus, WarmupStrategy, createSpyProxy, resolveScriptKey } from 'unhead/scripts';
|
|
2
3
|
import { ScriptWithoutEvents, DataKeys, SchemaAugmentations, HeadEntryOptions } from 'unhead/types';
|
|
3
4
|
import { Ref } from 'vue';
|
|
4
5
|
import { o as ResolvableProperties, V as VueHeadClient } from './shared/vue.C1egIkvG.js';
|
package/dist/scripts.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-beta.
|
|
4
|
+
"version": "2.0.0-beta.2",
|
|
5
5
|
"description": "Full-stack <head> manager built for Vue.",
|
|
6
6
|
"author": "Harlan Wilton <harlan@harlanzw.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
},
|
|
110
110
|
"dependencies": {
|
|
111
111
|
"hookable": "^5.5.3",
|
|
112
|
-
"unhead": "2.0.0-beta.
|
|
112
|
+
"unhead": "2.0.0-beta.2"
|
|
113
113
|
},
|
|
114
114
|
"scripts": {
|
|
115
115
|
"build": "unbuild .",
|