nuxt-typed-router 3.7.1 → 3.7.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/module.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "nuxt": ">=3.0.0",
6
6
  "bridge": false
7
7
  },
8
- "version": "3.7.1",
8
+ "version": "3.7.2",
9
9
  "builder": {
10
10
  "@nuxt/module-builder": "0.8.4",
11
11
  "unbuild": "unknown"
package/dist/module.mjs CHANGED
@@ -607,20 +607,6 @@ function createTypedRouterDefinitionFile() {
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
-
624
610
  declare module 'vue' {
625
611
  interface GlobalComponents {
626
612
  NuxtLink: TypedNuxtLink;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-typed-router",
3
- "version": "3.7.1",
3
+ "version": "3.7.2",
4
4
  "description": "Provide autocompletion for routes paths, names and params in Nuxt apps",
5
5
  "type": "module",
6
6
  "main": "./dist/module.cjs",