vuetify-nuxt-module 0.12.0 → 0.13.0

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
@@ -2,8 +2,8 @@
2
2
  "name": "vuetify-nuxt-module",
3
3
  "configKey": "vuetify",
4
4
  "compatibility": {
5
- "nuxt": "^3.6.5",
5
+ "nuxt": "^3.9.0",
6
6
  "bridge": false
7
7
  },
8
- "version": "0.12.0"
8
+ "version": "0.13.0"
9
9
  }
package/dist/module.mjs CHANGED
@@ -14,7 +14,7 @@ import { parseQuery, parseURL } from 'ufo';
14
14
  import destr from 'destr';
15
15
  import { transformAssetUrls } from 'vite-plugin-vuetify';
16
16
 
17
- const version = "0.12.0";
17
+ const version = "0.13.0";
18
18
 
19
19
  const VIRTUAL_VUETIFY_CONFIGURATION = "virtual:vuetify-configuration";
20
20
  const RESOLVED_VIRTUAL_VUETIFY_CONFIGURATION = `/@nuxt-vuetify-configuration/${VIRTUAL_VUETIFY_CONFIGURATION.slice("virtual:".length)}`;
@@ -1212,7 +1212,7 @@ export default defineNuxtPlugin({
1212
1212
  nuxtApp.vueApp.use(vuetify)
1213
1213
  nuxtApp.provide('vuetify', vuetify)
1214
1214
  await nuxtApp.hooks.callHook('vuetify:ready', vuetify)
1215
- if (process.client)
1215
+ if (import.meta.client)
1216
1216
  isDev && console.log('Vuetify 3 initialized', vuetify)
1217
1217
  },
1218
1218
  })
@@ -1311,7 +1311,7 @@ const module = defineNuxtModule({
1311
1311
  name: "vuetify-nuxt-module",
1312
1312
  configKey: "vuetify",
1313
1313
  compatibility: {
1314
- nuxt: "^3.6.5",
1314
+ nuxt: "^3.9.0",
1315
1315
  bridge: false
1316
1316
  },
1317
1317
  version
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vuetify-nuxt-module",
3
3
  "type": "module",
4
- "version": "0.12.0",
4
+ "version": "0.13.0",
5
5
  "packageManager": "pnpm@8.15.4",
6
6
  "description": "Zero-Config Nuxt Module for Vuetify",
7
7
  "author": "userquin <userquin@gmail.com>",