@carbon/charts 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/{choropleth-BOOQMTNf.mjs → choropleth-EJrtnKv4.mjs} +6 -3
- package/dist/choropleth-EJrtnKv4.mjs.map +1 -0
- package/dist/components/index.mjs +1 -1
- package/dist/index.mjs +2 -2
- package/dist/umd/bundle.umd.cjs +2 -2
- package/dist/umd/bundle.umd.cjs.map +1 -1
- package/dist/umd/bundle.umd.js +2 -2
- package/package.json +2 -2
- package/dist/choropleth-BOOQMTNf.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.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
|
|
@@ -6670,7 +6670,7 @@ class sp extends dt {
|
|
|
6670
6670
|
const e = this.parent, { width: n, height: s } = I.getSVGElementSize(e, {
|
|
6671
6671
|
useAttrs: !0
|
|
6672
6672
|
});
|
|
6673
|
-
this.backdrop = I.appendOrSelect(e, "svg.chart-skeleton.DAII").attr("width", n).attr("height", s);
|
|
6673
|
+
this.backdrop = I.appendOrSelect(e, "svg.chart-skeleton.DAII").attr("role", "presentation").attr("width", n).attr("height", s);
|
|
6674
6674
|
const a = I.appendOrSelect(this.backdrop, "rect.chart-skeleton-backdrop");
|
|
6675
6675
|
a.attr("width", "100%").attr("height", "100%");
|
|
6676
6676
|
const [r] = this.xScale.range(), [, o] = this.yScale.range();
|
|
@@ -9442,7 +9442,10 @@ class Wm extends sp {
|
|
|
9442
9442
|
}
|
|
9443
9443
|
updateBackdropStyle() {
|
|
9444
9444
|
const t = this.parent;
|
|
9445
|
-
this.backdrop = I.appendOrSelect(t, "svg.chart-skeleton.DAII")
|
|
9445
|
+
this.backdrop = I.appendOrSelect(t, "svg.chart-skeleton.DAII").attr(
|
|
9446
|
+
"role",
|
|
9447
|
+
"presentation"
|
|
9448
|
+
), I.appendOrSelect(this.backdrop, "rect.chart-skeleton-backdrop").classed("shimmer-effect-lines", !1).classed("shimmer-effect-sparkline", !0).style("stroke", null);
|
|
9446
9449
|
}
|
|
9447
9450
|
}
|
|
9448
9451
|
class Xm extends dt {
|
|
@@ -10742,4 +10745,4 @@ export {
|
|
|
10742
10745
|
Zm as y,
|
|
10743
10746
|
$m as z
|
|
10744
10747
|
};
|
|
10745
|
-
//# sourceMappingURL=choropleth-
|
|
10748
|
+
//# sourceMappingURL=choropleth-EJrtnKv4.mjs.map
|