@carbon/charts-vue 1.23.12 → 1.23.13

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,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.23.13 (2025-06-20)
7
+
8
+ ### Bug Fixes
9
+
10
+ - add field name in aria label for pie and donut chart
11
+ ([#1993](https://github.com/carbon-design-system/carbon-charts/issues/1993))
12
+ ([418fbe9](https://github.com/carbon-design-system/carbon-charts/commit/418fbe9132b86864833a0e146d34acce2901ac56))
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.23.12 (2025-06-17)
7
20
 
8
21
  ### Bug Fixes
package/dist/index.mjs CHANGED
@@ -16608,10 +16608,11 @@ class xv extends gt {
16608
16608
  name: "pie_slice_enter_update",
16609
16609
  animate: t
16610
16610
  })
16611
- ).attr("opacity", 1).attr("role", ht.GRAPHICS_SYMBOL).attr("aria-roledescription", "slice").attr(
16612
- "aria-label",
16613
- (A) => `${A[a]}, ${wo(A.data[a], o, a) + "%"}`
16614
- ).attrTween("d", function(A) {
16611
+ ).attr("opacity", 1).attr("role", ht.GRAPHICS_SYMBOL).attr("aria-roledescription", "slice").attr("aria-label", (A) => [
16612
+ A[a],
16613
+ wo(A.data[a], o, a) + "%",
16614
+ A.data[s]
16615
+ ].filter(Boolean).join(", ")).attrTween("d", function(A) {
16615
16616
  return SD.bind(this)(A, n.arc);
16616
16617
  }).on("end", () => {
16617
16618
  n.isRendering = !1;