@unhead/vue 1.1.35 → 1.2.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.cjs CHANGED
@@ -150,6 +150,7 @@ const unheadVueComposablesImports = {
150
150
  "@unhead/vue": [...coreComposableNames, ...unhead.composableNames]
151
151
  };
152
152
 
153
+ exports.CapoPlugin = unhead.CapoPlugin;
153
154
  exports.createHeadCore = unhead.createHeadCore;
154
155
  exports.VueReactiveUseHeadPlugin = useHead.VueReactiveUseHeadPlugin;
155
156
  exports.createHead = useHead.createHead;
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { createHeadCore } from 'unhead';
1
+ export { CapoPlugin, createHeadCore } from 'unhead';
2
2
  import { R as ReactiveHead, M as MaybeComputedRefEntries, a as MaybeComputedRef, U as UseHeadInput, A as Arrayable, b as Meta, L as Link, S as Script, c as Style, N as Noscript } from './createHead-197548ae.js';
3
3
  export { e as Base, B as BodyAttr, g as BodyAttributes, H as HtmlAttr, f as HtmlAttributes, i as MaybeComputedRefOrPromise, h as MaybeReadonlyRef, T as Title, d as TitleTemplate, V as VueHeadClient, m as createHead, l as createServerHead, j as headSymbol, k as injectHead } from './createHead-197548ae.js';
4
4
  import * as _unhead_schema from '@unhead/schema';
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { whitelistSafeInput, unpackMeta, composableNames } from 'unhead';
2
- export { createHeadCore } from 'unhead';
2
+ export { CapoPlugin, createHeadCore } from 'unhead';
3
3
  import { u as useHead, h as headSymbol, r as resolveUnrefHeadInput, s as serverUseHead } from './shared/vue.505b826e.mjs';
4
4
  export { V as VueReactiveUseHeadPlugin, a as createHead, c as createServerHead, i as injectHead } from './shared/vue.505b826e.mjs';
5
5
  import { getCurrentInstance, ref, watchEffect } from 'vue';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unhead/vue",
3
3
  "type": "module",
4
- "version": "1.1.35",
4
+ "version": "1.2.2",
5
5
  "author": "Harlan Wilton <harlan@harlanzw.com>",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/harlan-zw",
@@ -18,13 +18,13 @@
18
18
  "exports": {
19
19
  ".": {
20
20
  "types": "./dist/index.d.ts",
21
- "require": "./dist/index.cjs",
22
- "import": "./dist/index.mjs"
21
+ "import": "./dist/index.mjs",
22
+ "require": "./dist/index.cjs"
23
23
  },
24
24
  "./polyfill": {
25
25
  "types": "./dist/polyfill.d.ts",
26
- "require": "./dist/polyfill.cjs",
27
- "import": "./dist/polyfill.mjs"
26
+ "import": "./dist/polyfill.mjs",
27
+ "require": "./dist/polyfill.cjs"
28
28
  }
29
29
  },
30
30
  "main": "dist/index.cjs",
@@ -38,9 +38,9 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "hookable": "^5.5.3",
41
- "@unhead/schema": "1.1.35",
42
- "@unhead/shared": "1.1.35",
43
- "unhead": "1.1.35"
41
+ "@unhead/schema": "1.2.2",
42
+ "@unhead/shared": "1.2.2",
43
+ "unhead": "1.2.2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "vue": "^3.3.4"