nuxt-typed-router 3.6.2 → 3.6.3
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/module.json +1 -1
- package/dist/module.mjs +15 -1
- package/package.json +23 -23
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -606,7 +606,21 @@ function createTypedRouterDefinitionFile() {
|
|
|
606
606
|
> & {
|
|
607
607
|
$props: TypedNuxtLinkProps<T, P, E>;
|
|
608
608
|
};
|
|
609
|
-
|
|
609
|
+
|
|
610
|
+
declare module '@vue/runtime-core' {
|
|
611
|
+
interface GlobalComponents {
|
|
612
|
+
NuxtLink: TypedNuxtLink;
|
|
613
|
+
${returnIfTrue(i18n, ` NuxtLinkLocale: TypedNuxtLinkLocale;`)}
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
declare module '@vue/runtime-dom' {
|
|
618
|
+
interface GlobalComponents {
|
|
619
|
+
NuxtLink: TypedNuxtLink;
|
|
620
|
+
${returnIfTrue(i18n, ` NuxtLinkLocale: TypedNuxtLinkLocale;`)}
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
|
|
610
624
|
declare module 'vue' {
|
|
611
625
|
interface GlobalComponents {
|
|
612
626
|
NuxtLink: TypedNuxtLink;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-typed-router",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.3",
|
|
4
4
|
"description": "Provide autocompletion for routes paths, names and params in Nuxt apps",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/module.cjs",
|
|
@@ -63,53 +63,53 @@
|
|
|
63
63
|
"prettier": "^2.5.x || 3.x"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@nuxt/kit": "^3.11.
|
|
66
|
+
"@nuxt/kit": "^3.11.2",
|
|
67
67
|
"chalk": "5.3.0",
|
|
68
68
|
"defu": "6.1.4",
|
|
69
69
|
"lodash-es": "4.17.21",
|
|
70
70
|
"log-symbols": "6.0.0",
|
|
71
71
|
"mkdirp": "3.0.1",
|
|
72
|
-
"nanoid": "5.0.
|
|
72
|
+
"nanoid": "5.0.7",
|
|
73
73
|
"pathe": "1.1.2",
|
|
74
74
|
"prettier": "3.2.5"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@intlify/core-base": "9.
|
|
78
|
-
"@intlify/message-compiler": "9.
|
|
79
|
-
"@intlify/shared": "9.
|
|
77
|
+
"@intlify/core-base": "9.12.1",
|
|
78
|
+
"@intlify/message-compiler": "9.12.1",
|
|
79
|
+
"@intlify/shared": "9.12.1",
|
|
80
80
|
"@intlify/vue-i18n-bridge": "1.1.0",
|
|
81
81
|
"@intlify/vue-router-bridge": "1.1.0",
|
|
82
82
|
"@nuxt/content": "2.12.1",
|
|
83
83
|
"@nuxt/devtools": "1.1.5",
|
|
84
84
|
"@nuxt/module-builder": "0.5.5",
|
|
85
|
-
"@nuxt/schema": "3.11.
|
|
86
|
-
"@nuxt/test-utils": "3.12.
|
|
85
|
+
"@nuxt/schema": "3.11.2",
|
|
86
|
+
"@nuxt/test-utils": "3.12.1",
|
|
87
87
|
"@nuxt/types": "2.17.3",
|
|
88
88
|
"@nuxtjs/eslint-config-typescript": "12.1.0",
|
|
89
89
|
"@nuxtjs/i18n": "8.3.0",
|
|
90
90
|
"@nuxtjs/web-vitals": "0.2.6",
|
|
91
|
-
"@playwright/test": "1.
|
|
91
|
+
"@playwright/test": "1.43.1",
|
|
92
92
|
"@types/lodash-es": "4.17.12",
|
|
93
|
-
"@types/node": "20.12.
|
|
94
|
-
"@typescript-eslint/eslint-plugin": "7.
|
|
95
|
-
"@typescript-eslint/parser": "7.
|
|
93
|
+
"@types/node": "20.12.7",
|
|
94
|
+
"@typescript-eslint/eslint-plugin": "7.7.0",
|
|
95
|
+
"@typescript-eslint/parser": "7.7.0",
|
|
96
96
|
"@vue/test-utils": "2.4.5",
|
|
97
97
|
"bumpp": "9.4.0",
|
|
98
|
-
"changelogithub": "0.13.
|
|
98
|
+
"changelogithub": "0.13.7",
|
|
99
99
|
"cross-env": "7.0.3",
|
|
100
|
-
"eslint": "
|
|
100
|
+
"eslint": "9.0.0",
|
|
101
101
|
"eslint-config-prettier": "9.1.0",
|
|
102
|
-
"eslint-plugin-vue": "9.
|
|
103
|
-
"nuxt": "3.11.
|
|
102
|
+
"eslint-plugin-vue": "9.25.0",
|
|
103
|
+
"nuxt": "3.11.2",
|
|
104
104
|
"nuxt-seo-kit": "1.3.13",
|
|
105
|
-
"playwright": "1.
|
|
105
|
+
"playwright": "1.43.1",
|
|
106
106
|
"tsd": "0.31.0",
|
|
107
|
-
"typescript": "5.4.
|
|
108
|
-
"vitest": "1.
|
|
109
|
-
"vue": "3.4.
|
|
107
|
+
"typescript": "5.4.5",
|
|
108
|
+
"vitest": "1.5.0",
|
|
109
|
+
"vue": "3.4.23",
|
|
110
110
|
"vue-eslint-parser": "9.4.2",
|
|
111
|
-
"vue-i18n": "9.
|
|
112
|
-
"vue-router": "4.3.
|
|
113
|
-
"vue-tsc": "2.0.
|
|
111
|
+
"vue-i18n": "9.12.1",
|
|
112
|
+
"vue-router": "4.3.1",
|
|
113
|
+
"vue-tsc": "2.0.13"
|
|
114
114
|
}
|
|
115
115
|
}
|