@kimesh/head 0.2.7 → 0.2.8-nightly.20260124084153
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/plugin.d.mts +5 -7
- package/package.json +3 -3
package/dist/plugin.d.mts
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _kimesh_router_runtime0 from "@kimesh/router-runtime";
|
|
2
|
+
import { VueHeadClient, VueHeadClient as HeadClient } from "@unhead/vue/client";
|
|
2
3
|
|
|
3
4
|
//#region src/plugin.d.ts
|
|
4
|
-
/**
|
|
5
|
-
* @kimesh/head - Runtime Plugin
|
|
6
|
-
*
|
|
7
|
-
* CSR-only head management plugin using @unhead/vue.
|
|
8
|
-
*/
|
|
9
5
|
declare const KIMESH_HEAD_KEY: unique symbol;
|
|
10
6
|
/**
|
|
11
7
|
* Kimesh Head Plugin
|
|
@@ -13,6 +9,8 @@ declare const KIMESH_HEAD_KEY: unique symbol;
|
|
|
13
9
|
* Provides head meta management for Kimesh apps.
|
|
14
10
|
* Uses @unhead/vue for CSR-only head management.
|
|
15
11
|
*/
|
|
16
|
-
declare const KimeshHeadPlugin:
|
|
12
|
+
declare const KimeshHeadPlugin: _kimesh_router_runtime0.KimeshRuntimePlugin<{
|
|
13
|
+
head: VueHeadClient;
|
|
14
|
+
}>;
|
|
17
15
|
//#endregion
|
|
18
16
|
export { type HeadClient, KIMESH_HEAD_KEY, KimeshHeadPlugin, KimeshHeadPlugin as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kimesh/head",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8-nightly.20260124084153",
|
|
4
4
|
"description": "Head meta management for Kimesh framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"vue": "^3.5.0",
|
|
41
|
-
"@kimesh/router-runtime": "
|
|
41
|
+
"@kimesh/router-runtime": "workspace:*"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@kimesh/router-runtime": "
|
|
44
|
+
"@kimesh/router-runtime": "workspace:*",
|
|
45
45
|
"@types/node": "^25.0.8",
|
|
46
46
|
"@vue/test-utils": "^2.4.6",
|
|
47
47
|
"jsdom": "^27.4.0",
|