@unhead/schema 0.4.6 → 0.4.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +9 -1
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -8,6 +8,14 @@ interface ResolvesDuplicates {
8
8
  * to be made you can provide a unique key for each entry.
9
9
  */
10
10
  key?: string;
11
+ /**
12
+ * @deprecated Use `key` instead
13
+ */
14
+ hid?: string;
15
+ /**
16
+ * @deprecated Use `key` instead
17
+ */
18
+ vmid?: string;
11
19
  /**
12
20
  * Specify where to render the tag.
13
21
  *
@@ -83,7 +91,7 @@ declare type Never<T> = {
83
91
  [P in keyof T]?: never;
84
92
  };
85
93
  declare type UserTagConfigWithoutInnerContent = TagPriority & TagPosition & ResolvesDuplicates & Never<InnerContent>;
86
- declare type UserAttributesConfig = ResolvesDuplicates & Never<InnerContent & TagPriority & TagPosition>;
94
+ declare type UserAttributesConfig = ResolvesDuplicates & TagPriority & Never<InnerContent & TagPosition>;
87
95
  interface SchemaAugmentations extends MergeHead {
88
96
  base: UserAttributesConfig;
89
97
  htmlAttrs: UserAttributesConfig;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unhead/schema",
3
3
  "type": "module",
4
- "version": "0.4.6",
4
+ "version": "0.4.8",
5
5
  "packageManager": "pnpm@7.14.0",
6
6
  "author": "Harlan Wilton <harlan@harlanzw.com>",
7
7
  "license": "MIT",
@@ -35,7 +35,7 @@
35
35
  "dist"
36
36
  ],
37
37
  "dependencies": {
38
- "@zhead/schema": "1.0.0-beta.12",
38
+ "@zhead/schema": "1.0.0-beta.13",
39
39
  "hookable": "^5.4.1"
40
40
  },
41
41
  "scripts": {