@carbon/charts-vue 1.23.3 → 1.23.4
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/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
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.4 (2025-04-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **Skeleton:** add role=presentation
|
|
11
|
+
([#1979](https://github.com/carbon-design-system/carbon-charts/issues/1979))
|
|
12
|
+
([d9b0aa5](https://github.com/carbon-design-system/carbon-charts/commit/d9b0aa510e1587be03c459e8c5e02bb8d8273c88))
|
|
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.3 (2025-04-15)
|
|
7
20
|
|
|
8
21
|
**Note:** Version bump only for package @carbon/charts-vue
|
package/dist/index.mjs
CHANGED
|
@@ -15282,7 +15282,7 @@ class le extends gt {
|
|
|
15282
15282
|
const n = this.parent, { width: r, height: i } = N.getSVGElementSize(n, {
|
|
15283
15283
|
useAttrs: !0
|
|
15284
15284
|
});
|
|
15285
|
-
this.backdrop = N.appendOrSelect(n, "svg.chart-skeleton.DAII").attr("width", r).attr("height", i);
|
|
15285
|
+
this.backdrop = N.appendOrSelect(n, "svg.chart-skeleton.DAII").attr("role", "presentation").attr("width", r).attr("height", i);
|
|
15286
15286
|
const s = N.appendOrSelect(this.backdrop, "rect.chart-skeleton-backdrop");
|
|
15287
15287
|
s.attr("width", "100%").attr("height", "100%");
|
|
15288
15288
|
const [a] = this.xScale.range(), [, o] = this.yScale.range();
|
|
@@ -18009,7 +18009,10 @@ class Lk extends le {
|
|
|
18009
18009
|
}
|
|
18010
18010
|
updateBackdropStyle() {
|
|
18011
18011
|
const t = this.parent;
|
|
18012
|
-
this.backdrop = N.appendOrSelect(t, "svg.chart-skeleton.DAII")
|
|
18012
|
+
this.backdrop = N.appendOrSelect(t, "svg.chart-skeleton.DAII").attr(
|
|
18013
|
+
"role",
|
|
18014
|
+
"presentation"
|
|
18015
|
+
), N.appendOrSelect(this.backdrop, "rect.chart-skeleton-backdrop").classed("shimmer-effect-lines", !1).classed("shimmer-effect-sparkline", !0).style("stroke", null);
|
|
18013
18016
|
}
|
|
18014
18017
|
}
|
|
18015
18018
|
class _v extends gt {
|