vuetify-nuxt-module 0.2.3 → 0.2.4

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.d.ts CHANGED
@@ -41,14 +41,17 @@ interface JSSVGIconSet extends IconSet {
41
41
  }
42
42
  interface FontAwesomeSvgIconSet extends IconSet {
43
43
  /**
44
- * The libraries to import and the corresponding name.
44
+ * The libraries to import and register with the corresponding name.
45
45
  *
46
46
  * For example, to import free svg icons, `libraries` should be (the default):
47
- * `libraries: [[false, 'fas', 'import { fas } from \'@fortawesome/free-solid-svg-icons\'']]
47
+ * `libraries: [[false, 'fas', '@fortawesome/free-solid-svg-icons']]
48
48
  *
49
- * @default [[false, 'fas', 'import { fas } from \'@fortawesome/free-solid-svg-icons\'']]
49
+ * Following with the example, the resulting import will be:
50
+ * `import { fas } from '@fortawesome/free-solid-svg-icons'`
51
+ *
52
+ * @default [[false, 'fas', '@fortawesome/free-solid-svg-icons']]
50
53
  */
51
- libraries?: [defaultExport: boolean, name: string, statement: string][];
54
+ libraries?: [defaultExport: boolean, name: string, library: string][];
52
55
  }
53
56
  interface FontIconSet extends IconSet {
54
57
  /**
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.3"
7
+ "version": "0.2.4"
8
8
  }
package/dist/module.mjs CHANGED
@@ -6,7 +6,7 @@ import { resolveVuetifyBase, normalizePath, writeStyles, cacheDir } from '@vueti
6
6
  import { isAbsolute, join, relative } from 'pathe';
7
7
  import { normalizePath as normalizePath$1 } from 'vite';
8
8
 
9
- const version = "0.2.3";
9
+ const version = "0.2.4";
10
10
 
11
11
  function isSubdir(root, test) {
12
12
  const relative$1 = relative(root, test);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vuetify-nuxt-module",
3
3
  "type": "module",
4
- "version": "0.2.3",
4
+ "version": "0.2.4",
5
5
  "packageManager": "pnpm@8.6.6",
6
6
  "description": "Zero-Config Nuxt Module for Vuetify ",
7
7
  "author": "userquin <userquin@gmail.com>",