@carbon/charts-vue 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/index.mjs +1 -1
- 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.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-vue
|
package/dist/index.mjs
CHANGED
|
@@ -13089,7 +13089,7 @@ class Bk extends gt {
|
|
|
13089
13089
|
let c = 0;
|
|
13090
13090
|
const u = this.model.get("axesMargins");
|
|
13091
13091
|
u && u.left && (c = u.left);
|
|
13092
|
-
const d = N.appendOrSelect(n, "svg.zoom-container").attr("width", "100%").attr("height", o).attr("opacity", 1);
|
|
13092
|
+
const d = N.appendOrSelect(n, "svg.zoom-container").attr("width", "100%").attr("height", o).attr("opacity", 1).attr("role", "presentation");
|
|
13093
13093
|
if (N.appendOrSelect(n, "rect.zoom-spacer").attr("x", 0).attr("y", o).attr("width", "100%").attr("height", ve.spacerHeight).attr("opacity", 1).attr("fill", "none"), s === Ze.GRAPH_VIEW ? N.appendOrSelect(d, "rect.zoom-bg").attr("x", c).attr("y", 0).attr("width", l - c).attr("height", "100%").classed("zoom-bg-skeleton", r).style(
|
|
13094
13094
|
"stroke",
|
|
13095
13095
|
r ? `url(#${this.services.domUtils.generateElementIDString("shimmer-lines")})` : null
|