@carbon/charts-vue 1.23.5 → 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 +22 -0
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
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.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
|
+
|
|
19
|
+
## 1.23.6 (2025-04-22)
|
|
20
|
+
|
|
21
|
+
**Note:** Version bump only for package @carbon/charts-vue
|
|
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.23.5 (2025-04-15)
|
|
7
29
|
|
|
8
30
|
### Bug Fixes
|
package/dist/index.mjs
CHANGED
|
@@ -15312,7 +15312,7 @@ class le extends gt {
|
|
|
15312
15312
|
drawRing(t, n, r = !0) {
|
|
15313
15313
|
const i = this.parent, { width: s, height: a } = N.getSVGElementSize(i, {
|
|
15314
15314
|
useAttrs: !0
|
|
15315
|
-
}), o = N.appendOrSelect(i, "svg.chart-skeleton").attr("width", s).attr("height", a), l = n === 0 ? "pie" : "donut", c = y(this.getOptions(), l, "alignment");
|
|
15315
|
+
}), o = N.appendOrSelect(i, "svg.chart-skeleton").attr("width", s).attr("height", a).attr("role", "presentation"), l = n === 0 ? "pie" : "donut", c = y(this.getOptions(), l, "alignment");
|
|
15316
15316
|
N.appendOrSelect(o, "rect.chart-skeleton-area-container").attr("width", s).attr("height", a).attr("fill", "none");
|
|
15317
15317
|
const u = es().innerRadius(n).outerRadius(t).startAngle(0).endAngle(Math.PI * 2), d = t + Math.abs(Mt.radiusOffset), h = t + (Math.min(s, a) - t * 2) / 2, p = N.appendOrSelect(o, "path").attr("class", "skeleton-area-shape").attr("transform", `translate(${d}, ${h})`).attr("d", u).classed("shimmer-effect-areas", r).classed("empty-state-areas", !r).style(
|
|
15318
15318
|
"fill",
|