nuxt-charts 0.1.0-beta.7 → 0.1.1

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
@@ -32,22 +32,7 @@ Add the module to your Nuxt config:
32
32
  ```ts
33
33
  // nuxt.config.ts
34
34
  export default defineNuxtConfig({
35
- modules: ["nuxt-charts"],
36
-
37
- // Optional configuration
38
- vueChrts: {
39
- // Add prefix to component names (default: 'Chrt')
40
- prefix: "Chrt",
41
-
42
- // Make components globally available (default: true)
43
- global: true,
44
-
45
- // Only include specific components (default: all components)
46
- include: ["AreaChart", "LineChart"],
47
-
48
- // Enable auto-imports (default: true)
49
- autoImports: true,
50
- },
35
+ modules: ["nuxt-charts"]
51
36
  });
52
37
  ```
53
38
 
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.0-beta.7",
7
+ "version": "0.1.1",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "unknown"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-charts",
3
- "version": "0.1.0-beta.7",
3
+ "version": "0.1.1",
4
4
  "description": "Nuxt module for vue-chrts",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -29,7 +29,7 @@
29
29
  "dependencies": {
30
30
  "@nuxt/kit": "^3.11.1",
31
31
  "@unovis/vue": "^1.5.1",
32
- "vue-chrts": "0.1.0"
32
+ "vue-chrts": "0.1.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@nuxt/eslint": "1.3.0",
@@ -38,9 +38,9 @@
38
38
  "@nuxt/schema": "^3.11.1",
39
39
  "@types/node": "^20.12.10",
40
40
  "changelogen": "^0.6.1",
41
- "vitest": "^3.1.1",
42
41
  "eslint": "^8.57.0",
43
42
  "nuxt": "^3.11.1",
44
- "typescript": "^5.4.5"
43
+ "typescript": "^5.4.5",
44
+ "vitest": "^3.1.1"
45
45
  }
46
46
  }