@carbon/charts 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 +13 -0
- package/dist/{choropleth-DJ5n2HvY.mjs → choropleth-CnQNALge.mjs} +6 -5
- package/dist/{choropleth-DJ5n2HvY.mjs.map → choropleth-CnQNALge.mjs.map} +1 -1
- package/dist/components/index.mjs +1 -1
- package/dist/index.mjs +2 -2
- package/dist/umd/bundle.umd.cjs +1 -1
- package/dist/umd/bundle.umd.cjs.map +1 -1
- package/dist/umd/bundle.umd.js +1 -1
- package/package.json +2 -2
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
|
|
@@ -8032,10 +8032,11 @@ class fp extends dt {
|
|
|
8032
8032
|
name: "pie_slice_enter_update",
|
|
8033
8033
|
animate: t
|
|
8034
8034
|
})
|
|
8035
|
-
).attr("opacity", 1).attr("role", lt.GRAPHICS_SYMBOL).attr("aria-roledescription", "slice").attr(
|
|
8036
|
-
|
|
8037
|
-
|
|
8038
|
-
|
|
8035
|
+
).attr("opacity", 1).attr("role", lt.GRAPHICS_SYMBOL).attr("aria-roledescription", "slice").attr("aria-label", (M) => [
|
|
8036
|
+
M[r],
|
|
8037
|
+
Ps(M.data[r], o, r) + "%",
|
|
8038
|
+
M.data[a]
|
|
8039
|
+
].filter(Boolean).join(", ")).attrTween("d", function(M) {
|
|
8039
8040
|
return pp.bind(this)(M, e.arc);
|
|
8040
8041
|
}).on("end", () => {
|
|
8041
8042
|
e.isRendering = !1;
|
|
@@ -10765,4 +10766,4 @@ export {
|
|
|
10765
10766
|
qm as y,
|
|
10766
10767
|
Vm as z
|
|
10767
10768
|
};
|
|
10768
|
-
//# sourceMappingURL=choropleth-
|
|
10769
|
+
//# sourceMappingURL=choropleth-CnQNALge.mjs.map
|