@carbon/charts-vue 0.53.0 → 0.53.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/CHANGELOG.md +8 -0
- package/charts-vue.common.js +3 -1
- package/charts-vue.common.js.map +1 -1
- package/charts-vue.umd.js +3 -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,14 @@
|
|
|
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
|
+
## [0.53.1](https://github.com/carbon-design-system/carbon-charts/compare/v0.53.0...v0.53.1) (2021-12-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [0.53.0](https://github.com/carbon-design-system/carbon-charts/compare/v0.52.4...v0.53.0) (2021-12-01)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @carbon/charts-vue
|
package/charts-vue.common.js
CHANGED
|
@@ -9718,7 +9718,9 @@ var model_ChartModel = /** @class */ (function () {
|
|
|
9718
9718
|
var _b = _a.percentage, percentage = _b === void 0 ? false : _b, _c = _a.groups, groups = _c === void 0 ? null : _c, _d = _a.divergent, divergent = _d === void 0 ? false : _d;
|
|
9719
9719
|
var options = this.getOptions();
|
|
9720
9720
|
var groupMapsTo = options.data.groupMapsTo;
|
|
9721
|
-
|
|
9721
|
+
// Get only active data groups so non-active data groups are not rendered
|
|
9722
|
+
// on legend item click
|
|
9723
|
+
var dataGroupNames = this.getActiveDataGroupNames(groups);
|
|
9722
9724
|
var dataValuesGroupedByKeys = this.getDataValuesGroupedByKeys({
|
|
9723
9725
|
groups: groups,
|
|
9724
9726
|
});
|