@carbon/charts-vue 1.13.11 → 1.13.12

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 CHANGED
@@ -3,6 +3,15 @@
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.13.12 (2023-12-18)
7
+
8
+ **Note:** Version bump only for package @carbon/charts-vue
9
+
10
+ # Change Log
11
+
12
+ All notable changes to this project will be documented in this file. See
13
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
14
+
6
15
  ## 1.13.11 (2023-12-18)
7
16
 
8
17
  ### Bug Fixes
package/dist/index.mjs CHANGED
@@ -10661,12 +10661,12 @@ let zn = class extends Ue {
10661
10661
  }), n;
10662
10662
  }
10663
10663
  getTabularDataArray() {
10664
- const t = this.getDisplayData(), n = this.getOptions(), { groupMapsTo: r } = n.data;
10664
+ const t = this.getDisplayData(), n = this.getOptions(), { groupMapsTo: r } = n.data, { valueMapsTo: i } = n.pie;
10665
10665
  return [
10666
10666
  ["Group", "Value"],
10667
- ...t.map((i) => [
10668
- i[r],
10669
- i.value === null ? "–" : i.value.toLocaleString()
10667
+ ...t.map((s) => [
10668
+ s[r],
10669
+ s[i] === null ? "–" : s[i].toLocaleString()
10670
10670
  ])
10671
10671
  ];
10672
10672
  }