@unhead/vue 2.0.0-beta.1 → 2.0.0-rc.1

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 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[];
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[];
@@ -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
@@ -1,5 +1,5 @@
1
+ export { createSpyProxy, resolveScriptKey } from 'unhead/scripts';
1
2
  export { u as useScript } from './shared/vue.cHBs6zvy.mjs';
2
- import 'unhead/scripts';
3
3
  import 'vue';
4
4
  import './shared/vue.BYLJNEcq.mjs';
5
5
  import 'unhead/plugins';
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.1",
4
+ "version": "2.0.0-rc.1",
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.1"
112
+ "unhead": "2.0.0-rc.1"
113
113
  },
114
114
  "scripts": {
115
115
  "build": "unbuild .",