@unhead/vue 1.3.5 → 1.3.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 CHANGED
@@ -91,6 +91,7 @@ exports.createHeadCore = unhead.createHeadCore;
91
91
  exports.createHead = useHead.createHead;
92
92
  exports.createServerHead = useHead.createServerHead;
93
93
  exports.injectHead = useHead.injectHead;
94
+ exports.resolveUnrefHeadInput = useHead.resolveUnrefHeadInput;
94
95
  exports.useHead = useHead.useHead;
95
96
  exports.Vue2ProvideUnheadPlugin = Vue2ProvideUnheadPlugin;
96
97
  exports.VueHeadMixin = VueHeadMixin;
package/dist/index.d.ts CHANGED
@@ -19,6 +19,8 @@ type UseHeadSafeInput = MaybeComputedRef<HeadSafe>;
19
19
  declare function createServerHead<T extends MergeHead>(options?: Omit<CreateHeadOptions, 'domDelayFn' | 'document'>): VueHeadClient<T>;
20
20
  declare function createHead<T extends MergeHead>(options?: CreateHeadOptions): VueHeadClient<T>;
21
21
 
22
+ declare function resolveUnrefHeadInput(ref: any, lastKey?: string | number): any;
23
+
22
24
  declare const VueHeadMixin: {
23
25
  created(): void;
24
26
  };
@@ -43,4 +45,4 @@ declare function useServerHeadSafe(input: UseHeadSafeInput, options?: HeadEntryO
43
45
 
44
46
  declare function useServerSeoMeta(input: UseSeoMetaInput, options?: HeadEntryOptions): ActiveHeadEntry<any> | void;
45
47
 
46
- export { HeadSafe, MaybeComputedRef, MaybeComputedRefEntries, ReactiveHead, UseHeadInput, UseHeadSafeInput, UseSeoMetaInput, Vue2ProvideUnheadPlugin, VueHeadClient, VueHeadMixin, createHead, createServerHead, injectHead, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
48
+ export { HeadSafe, MaybeComputedRef, MaybeComputedRefEntries, ReactiveHead, UseHeadInput, UseHeadSafeInput, UseSeoMetaInput, Vue2ProvideUnheadPlugin, VueHeadClient, VueHeadMixin, createHead, createServerHead, injectHead, resolveUnrefHeadInput, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
package/dist/index.mjs CHANGED
@@ -84,4 +84,4 @@ function useServerSeoMeta(input, options) {
84
84
  return useSeoMeta(input, { ...options || {}, mode: "server" });
85
85
  }
86
86
 
87
- export { Vue2ProvideUnheadPlugin, VueHeadMixin, injectHead, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
87
+ export { Vue2ProvideUnheadPlugin, VueHeadMixin, injectHead, resolveUnrefHeadInput, unheadVueComposablesImports, useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta };
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@unhead/vue",
3
3
  "type": "module",
4
- "version": "1.3.5",
4
+ "version": "1.3.8",
5
5
  "author": "Harlan Wilton <harlan@harlanzw.com>",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/harlan-zw",
8
- "homepage": "https://unhead.harlanzw.com",
8
+ "homepage": "https://unhead.unjs.io",
9
9
  "repository": {
10
10
  "type": "git",
11
11
  "url": "git+https://github.com/unjs/unhead.git",
@@ -38,9 +38,9 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "hookable": "^5.5.3",
41
- "@unhead/schema": "1.3.5",
42
- "@unhead/shared": "1.3.5",
43
- "unhead": "1.3.5"
41
+ "@unhead/schema": "1.3.8",
42
+ "@unhead/shared": "1.3.8",
43
+ "unhead": "1.3.8"
44
44
  },
45
45
  "devDependencies": {
46
46
  "vue": "^3.3.4"