vuetify-nuxt-module 0.4.9 → 0.4.10

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
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.4.9"
7
+ "version": "0.4.10"
8
8
  }
package/dist/module.mjs CHANGED
@@ -6,7 +6,7 @@ import { isAbsolute, join, relative } from 'pathe';
6
6
  import { normalizePath as normalizePath$1 } from 'vite';
7
7
  import { isPackageExists } from 'local-pkg';
8
8
 
9
- const version = "0.4.9";
9
+ const version = "0.4.10";
10
10
 
11
11
  function isSubdir(root, test) {
12
12
  const relative$1 = relative(root, test);
@@ -869,23 +869,22 @@ const module = defineNuxtModule({
869
869
  });
870
870
  nuxt.hook("vite:extend", ({ config }) => checkVuetifyPlugins(config));
871
871
  nuxt.hook("prepare:types", ({ references }) => {
872
+ references.push({ types: "vuetify" });
872
873
  references.push({ types: "vuetify-nuxt-module/configuration" });
873
874
  });
874
875
  const {
875
- vuetifyBase,
876
876
  componentsPromise,
877
877
  labComponentsPromise
878
878
  } = resolveVuetifyComponents(resolver);
879
879
  nuxt.hook("components:extend", async (c) => {
880
880
  const components = await componentsPromise;
881
881
  Object.keys(components).forEach((component) => {
882
- const from = components[component].from;
883
882
  c.push({
884
883
  pascalName: component,
885
884
  kebabName: toKebabCase(component),
886
885
  export: component,
887
- filePath: `${resolver.resolve(vuetifyBase, `lib/${from}`)}`,
888
- shortPath: `vuetify/components/${from}`,
886
+ filePath: "vuetify/components",
887
+ shortPath: "vuetify/components",
889
888
  chunkName: toKebabCase(component),
890
889
  prefetch: false,
891
890
  preload: false,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vuetify-nuxt-module",
3
3
  "type": "module",
4
- "version": "0.4.9",
4
+ "version": "0.4.10",
5
5
  "packageManager": "pnpm@8.6.9",
6
6
  "description": "Zero-Config Nuxt Module for Vuetify",
7
7
  "author": "userquin <userquin@gmail.com>",