@carbon/charts-vue 1.19.2 → 1.20.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/CHANGELOG.md +23 -0
- package/README.md +20 -4
- package/dist/components/CcvAlluvialChart.d.ts +1 -2
- package/dist/components/CcvAreaChart.d.ts +1 -2
- package/dist/components/CcvBoxplotChart.d.ts +1 -1
- package/dist/components/CcvBubbleChart.d.ts +1 -2
- package/dist/components/CcvBulletChart.d.ts +1 -2
- package/dist/components/CcvChoroplethChart.d.ts +1 -2
- package/dist/components/CcvCirclePackChart.d.ts +1 -2
- package/dist/components/CcvComboChart.d.ts +1 -2
- package/dist/components/CcvDonutChart.d.ts +1 -2
- package/dist/components/CcvGaugeChart.d.ts +1 -2
- package/dist/components/CcvGroupedBarChart.d.ts +1 -2
- package/dist/components/CcvHeatmapChart.d.ts +1 -2
- package/dist/components/CcvHistogramChart.d.ts +1 -2
- package/dist/components/CcvLineChart.d.ts +1 -2
- package/dist/components/CcvLollipopChart.d.ts +1 -1
- package/dist/components/CcvMeterChart.d.ts +1 -2
- package/dist/components/CcvPieChart.d.ts +1 -2
- package/dist/components/CcvRadarChart.d.ts +1 -2
- package/dist/components/CcvScatterChart.d.ts +1 -2
- package/dist/components/CcvSimpleBarChart.d.ts +1 -2
- package/dist/components/CcvStackedAreaChart.d.ts +1 -2
- package/dist/components/CcvStackedBarChart.d.ts +1 -2
- package/dist/components/CcvTreeChart.d.ts +1 -2
- package/dist/components/CcvTreemapChart.d.ts +1 -1
- package/dist/components/CcvWordCloudChart.d.ts +1 -2
- package/dist/components/TestHarness.d.ts +2 -0
- package/dist/components/chartFactory.d.ts +1 -2
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +15 -13
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/charts-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"description": "Carbon Charts component library for Vue",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -35,28 +35,29 @@
|
|
|
35
35
|
"vue": "^3.4.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@carbon/charts": "1.
|
|
39
|
-
"@ibm/telemetry-js": "^1.6.
|
|
38
|
+
"@carbon/charts": "1.20.0",
|
|
39
|
+
"@ibm/telemetry-js": "^1.6.1"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@playwright/test": "^1.
|
|
43
|
-
"@vitejs/plugin-vue": "^5.
|
|
44
|
-
"eslint": "^9.
|
|
42
|
+
"@playwright/test": "^1.46.1",
|
|
43
|
+
"@vitejs/plugin-vue": "^5.1.2",
|
|
44
|
+
"eslint": "^9.9.0",
|
|
45
45
|
"prettier": "^3.3.3",
|
|
46
|
-
"typescript": "^5.5.
|
|
47
|
-
"vite": "^5.
|
|
48
|
-
"vite-plugin-dts": "^
|
|
49
|
-
"vue": "^3.4.
|
|
50
|
-
"vue-tsc": "^2.0.
|
|
46
|
+
"typescript": "^5.5.4",
|
|
47
|
+
"vite": "^5.4.1",
|
|
48
|
+
"vite-plugin-dts": "^4.0.3",
|
|
49
|
+
"vue": "^3.4.38",
|
|
50
|
+
"vue-tsc": "^2.0.29"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
|
53
53
|
"access": "public",
|
|
54
54
|
"tag": "next"
|
|
55
55
|
},
|
|
56
|
+
"homepage": "https://github.com/carbon-design-system/carbon-charts#readme",
|
|
56
57
|
"repository": {
|
|
57
58
|
"type": "git",
|
|
58
|
-
"url": "git
|
|
59
|
-
"
|
|
59
|
+
"url": "git+https://github.com/carbon-design-system/carbon-charts.git",
|
|
60
|
+
"directory": "packages/vue"
|
|
60
61
|
},
|
|
61
62
|
"license": "Apache-2.0",
|
|
62
63
|
"author": "IBM",
|
|
@@ -89,5 +90,5 @@
|
|
|
89
90
|
"data",
|
|
90
91
|
"typescript"
|
|
91
92
|
],
|
|
92
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "b79ba5ff2897115f1a3b826f2417a3bde330eb4b"
|
|
93
94
|
}
|