@carbon/charts-vue 1.7.2 → 1.7.3
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 +4 -0
- package/charts-vue.common.js +1 -1
- package/charts-vue.common.js.map +1 -1
- package/charts-vue.umd.js +1 -1
- package/charts-vue.umd.js.map +1 -1
- package/charts-vue.umd.min.js +1 -1
- package/charts-vue.umd.min.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.7.3](https://github.com/carbon-design-system/carbon-charts/compare/v1.7.2...v1.7.3) (2023-04-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
9
|
+
|
|
6
10
|
## [1.7.2](https://github.com/carbon-design-system/carbon-charts/compare/v1.7.1...v1.7.2) (2023-04-25)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @carbon/charts-vue
|
package/charts-vue.common.js
CHANGED
|
@@ -24403,7 +24403,7 @@ var tooltip_axis_AxisChartsTooltip = /** @class */ (function (_super) {
|
|
|
24403
24403
|
return e.detail.items;
|
|
24404
24404
|
}
|
|
24405
24405
|
var data = e.detail.data;
|
|
24406
|
-
if (!data.length || !data[0]) {
|
|
24406
|
+
if (!Array.isArray(data) || !data.length || !data[0]) {
|
|
24407
24407
|
return [];
|
|
24408
24408
|
}
|
|
24409
24409
|
var options = this.getOptions();
|