@carbon/charts 1.23.6 → 1.23.7
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-C0wftO71.mjs → choropleth-YbrQ_iGH.mjs} +2 -2
- package/dist/choropleth-YbrQ_iGH.mjs.map +1 -0
- 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/dist/choropleth-C0wftO71.mjs.map +0 -1
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.7 (2025-05-08)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- add presentation role for pie n donut chart skeleton
|
|
11
|
+
([#1986](https://github.com/carbon-design-system/carbon-charts/issues/1986))
|
|
12
|
+
([ad144ec](https://github.com/carbon-design-system/carbon-charts/commit/ad144ecdb3d35fb91f223fef9ad45305431fd119))
|
|
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.6 (2025-04-22)
|
|
7
20
|
|
|
8
21
|
**Note:** Version bump only for package @carbon/charts
|
|
@@ -6696,7 +6696,7 @@ class sp extends dt {
|
|
|
6696
6696
|
drawRing(t, e, n = !0) {
|
|
6697
6697
|
const s = this.parent, { width: a, height: r } = I.getSVGElementSize(s, {
|
|
6698
6698
|
useAttrs: !0
|
|
6699
|
-
}), o = I.appendOrSelect(s, "svg.chart-skeleton").attr("width", a).attr("height", r), c = e === 0 ? "pie" : "donut", l = O(this.getOptions(), c, "alignment");
|
|
6699
|
+
}), o = I.appendOrSelect(s, "svg.chart-skeleton").attr("width", a).attr("height", r).attr("role", "presentation"), c = e === 0 ? "pie" : "donut", l = O(this.getOptions(), c, "alignment");
|
|
6700
6700
|
I.appendOrSelect(o, "rect.chart-skeleton-area-container").attr("width", a).attr("height", r).attr("fill", "none");
|
|
6701
6701
|
const h = In().innerRadius(e).outerRadius(t).startAngle(0).endAngle(Math.PI * 2), d = t + Math.abs(Et.radiusOffset), u = t + (Math.min(a, r) - t * 2) / 2, p = I.appendOrSelect(o, "path").attr("class", "skeleton-area-shape").attr("transform", `translate(${d}, ${u})`).attr("d", h).classed("shimmer-effect-areas", n).classed("empty-state-areas", !n).style(
|
|
6702
6702
|
"fill",
|
|
@@ -10745,4 +10745,4 @@ export {
|
|
|
10745
10745
|
Zm as y,
|
|
10746
10746
|
$m as z
|
|
10747
10747
|
};
|
|
10748
|
-
//# sourceMappingURL=choropleth-
|
|
10748
|
+
//# sourceMappingURL=choropleth-YbrQ_iGH.mjs.map
|