@carbon/charts-vue 1.13.10 → 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 +22 -0
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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
|
+
|
|
15
|
+
## 1.13.11 (2023-12-18)
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- **svelte:** strongly type dispatched events
|
|
20
|
+
([#1703](https://github.com/carbon-design-system/carbon-charts/issues/1703))
|
|
21
|
+
([1a37ef2](https://github.com/carbon-design-system/carbon-charts/commit/1a37ef2be692400b257446f62d1350899e27dd59))
|
|
22
|
+
|
|
23
|
+
# Change Log
|
|
24
|
+
|
|
25
|
+
All notable changes to this project will be documented in this file. See
|
|
26
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
27
|
+
|
|
6
28
|
## 1.13.10 (2023-12-18)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @carbon/charts-vue
|
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((
|
|
10668
|
-
|
|
10669
|
-
i
|
|
10667
|
+
...t.map((s) => [
|
|
10668
|
+
s[r],
|
|
10669
|
+
s[i] === null ? "–" : s[i].toLocaleString()
|
|
10670
10670
|
])
|
|
10671
10671
|
];
|
|
10672
10672
|
}
|