nuxt-typed-router 2.3.4 → 2.3.5

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/README.md CHANGED
@@ -24,8 +24,8 @@
24
24
  - Out of the box `i18n` support
25
25
  - Supports routes extended by config and modules
26
26
 
27
- > ⚠️ Since `v2.1.x`, `useTypedRouter` and `useTypedRoute` are no longer exported.
28
- The package can now override types from `useRouter`, `useRoute` and `navigateTo`
27
+ > A beta version with `path` autocomplete is available in version `v3.0.0-beta.0`
28
+ > https://github.com/victorgarciaesgi/nuxt-typed-router/releases/tag/v3.0.0-beta.0
29
29
 
30
30
  <br/>
31
31
 
package/dist/module.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "nuxt": "^3.0.0",
6
6
  "bridge": false
7
7
  },
8
- "version": "2.3.4"
8
+ "version": "2.3.5"
9
9
  }
package/dist/module.mjs CHANGED
@@ -419,8 +419,8 @@ function createTypedRouterDefinitionFile() {
419
419
  {}
420
420
  >;
421
421
 
422
- declare module '@vue/runtime-core' {
423
- export interface GlobalComponents {
422
+ declare module 'vue' {
423
+ interface GlobalComponents {
424
424
  NuxtLink: TypedNuxtLink;
425
425
  }
426
426
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-typed-router",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "description": "Provide autocompletion for pages route names generated by Nuxt router",
5
5
  "type": "module",
6
6
  "main": "./dist/module.cjs",