@carbon/charts 1.23.16 → 1.23.17
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-Bst0hbTL.mjs → choropleth-CUIYpDaf.mjs} +2 -2
- package/dist/choropleth-CUIYpDaf.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-Bst0hbTL.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.17 (2025-08-13)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **a11y:** add `role` attr for svg.zoom-container
|
|
11
|
+
([#2019](https://github.com/carbon-design-system/carbon-charts/issues/2019))
|
|
12
|
+
([2cbdd84](https://github.com/carbon-design-system/carbon-charts/commit/2cbdd847ce17ace1fa2078f3a892c930e53716f4))
|
|
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.16 (2025-08-13)
|
|
7
20
|
|
|
8
21
|
**Note:** Version bump only for package @carbon/charts
|
|
@@ -4487,7 +4487,7 @@ class um extends dt {
|
|
|
4487
4487
|
let l = 0;
|
|
4488
4488
|
const h = this.model.get("axesMargins");
|
|
4489
4489
|
h && h.left && (l = h.left);
|
|
4490
|
-
const d = I.appendOrSelect(e, "svg.zoom-container").attr("width", "100%").attr("height", o).attr("opacity", 1);
|
|
4490
|
+
const d = I.appendOrSelect(e, "svg.zoom-container").attr("width", "100%").attr("height", o).attr("opacity", 1).attr("role", "presentation");
|
|
4491
4491
|
if (I.appendOrSelect(e, "rect.zoom-spacer").attr("x", 0).attr("y", o).attr("width", "100%").attr("height", jt.spacerHeight).attr("opacity", 1).attr("fill", "none"), a === Ue.GRAPH_VIEW ? I.appendOrSelect(d, "rect.zoom-bg").attr("x", l).attr("y", 0).attr("width", c - l).attr("height", "100%").classed("zoom-bg-skeleton", n).style(
|
|
4492
4492
|
"stroke",
|
|
4493
4493
|
n ? `url(#${this.services.domUtils.generateElementIDString("shimmer-lines")})` : null
|
|
@@ -10744,4 +10744,4 @@ export {
|
|
|
10744
10744
|
qm as y,
|
|
10745
10745
|
Vm as z
|
|
10746
10746
|
};
|
|
10747
|
-
//# sourceMappingURL=choropleth-
|
|
10747
|
+
//# sourceMappingURL=choropleth-CUIYpDaf.mjs.map
|