@carbon/charts-vue 1.16.6 → 1.16.7
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 +13 -0
- package/README.md +4 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +14674 -14664
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See
|
|
4
4
|
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 1.16.7 (2024-06-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **all packages:** missing options, package.json and lint fixes
|
|
11
|
+
([#1849](https://github.com/carbon-design-system/carbon-charts/issues/1849))
|
|
12
|
+
([a43f0eb](https://github.com/carbon-design-system/carbon-charts/commit/a43f0eb3a9d09178ac613bc34de32816a4e0e4be))
|
|
13
|
+
|
|
14
|
+
# Change Log
|
|
15
|
+
|
|
16
|
+
All notable changes to this project will be documented in this file. See
|
|
17
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
18
|
+
|
|
6
19
|
## 1.16.6 (2024-06-15)
|
|
7
20
|
|
|
8
21
|
**Note:** Version bump only for package @carbon/charts-vue
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Carbon Charts Vue
|
|
2
2
|
|
|
3
3
|
Carbon Charts Vue is a thin Vue.js wrapper around the vanilla JavaScript `@carbon/charts` component
|
|
4
|
-
library.
|
|
5
|
-
|
|
4
|
+
library. This version is for Vue.js ^3.3.0. For Vue.js 2.x support, please use
|
|
5
|
+
`@carbon/charts-vue@latest`.
|
|
6
6
|
|
|
7
7
|
The required styles should be imported from `@carbon/charts-vue/styles.css`. Additional
|
|
8
8
|
documentation is provided in the Storybook demos.
|
|
@@ -20,13 +20,13 @@ This component library is community-maintained.
|
|
|
20
20
|
Run the following command using [npm](https://www.npmjs.com/):
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npm install -S @carbon/charts-vue
|
|
23
|
+
npm install -S @carbon/charts-vue
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
If you prefer [Yarn](https://yarnpkg.com/en/), use the following command instead:
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
yarn add @carbon/charts-vue
|
|
29
|
+
yarn add @carbon/charts-vue
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## Step-by-step instructions
|
package/dist/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export { CcvAlluvialChart, CcvAreaChart, CcvBoxplotChart, CcvBubbleChart, CcvBul
|
|
|
10
10
|
* @deprecated Use `CcvChoroplethChart` instead.
|
|
11
11
|
*/
|
|
12
12
|
ExperimentalCcvChoroplethChart, CcvCirclePackChart, CcvComboChart, CcvDonutChart, CcvGaugeChart, CcvGroupedBarChart, CcvHeatmapChart, CcvHistogramChart, CcvLineChart, CcvLollipopChart, CcvMeterChart, CcvPieChart, CcvRadarChart, CcvScatterChart, CcvSimpleBarChart, CcvStackedAreaChart, CcvStackedBarChart, CcvTreeChart, CcvTreemapChart, CcvWordCloudChart };
|
|
13
|
-
export type { ChartTabularData, ChartOptions, AlluvialChartOptions, AreaChartOptions, BarChartOptions, BoxplotChartOptions, BubbleChartOptions, BulletChartOptions, ChoroplethChartOptions, CirclePackChartOptions, ComboChartOptions, DonutChartOptions, GaugeChartOptions, HeatmapChartOptions, HistogramChartOptions, LineChartOptions, LollipopChartOptions, MeterChartOptions, PieChartOptions, RadarChartOptions, ScatterChartOptions, StackedAreaChartOptions, TreeChartOptions, TreemapChartOptions, WordCloudChartOptions,
|
|
13
|
+
export type { ChartTabularData, ChartOptions, AlluvialChartOptions, AreaChartOptions, BarChartOptions, BoxplotChartOptions, BubbleChartOptions, BulletChartOptions, ChoroplethChartOptions, CirclePackChartOptions, ComboChartOptions, DonutChartOptions, GaugeChartOptions, HeatmapChartOptions, HistogramChartOptions, LineChartOptions, LollipopChartOptions, MeterChartOptions, PieChartOptions, RadarChartOptions, ScatterChartOptions, StackedAreaChartOptions, StackedBarChartOptions, TreeChartOptions, TreemapChartOptions, WordCloudChartOptions,
|
|
14
14
|
/**
|
|
15
15
|
* @deprecated Use `WordCloudChartOptions` instead.
|
|
16
16
|
*/
|