@carbon/charts 1.14.2 → 1.14.3
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 +9 -0
- package/dist/{choropleth--l8lYLLx.mjs → choropleth-8ZwwWcHd.mjs} +2 -2
- package/dist/choropleth-8ZwwWcHd.mjs.map +1 -0
- package/dist/components/index.mjs +1 -1
- package/dist/demo/index.mjs +4 -4
- package/dist/index.mjs +2 -2
- package/dist/umd/bundle.umd.js +1 -1
- package/dist/umd/bundle.umd.js.map +1 -1
- package/package.json +2 -2
- package/dist/choropleth--l8lYLLx.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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.14.3 (2024-02-22)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @carbon/charts
|
|
9
|
+
|
|
10
|
+
# Change Log
|
|
11
|
+
|
|
12
|
+
All notable changes to this project will be documented in this file. See
|
|
13
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
14
|
+
|
|
6
15
|
## 1.14.2 (2024-02-19)
|
|
7
16
|
|
|
8
17
|
### Bug Fixes
|
|
@@ -888,7 +888,7 @@ const Dt = (o) => Un.sanitize(o, {
|
|
|
888
888
|
const i = t.selectAll("div.toolbar-control").data(s, (c) => c.id);
|
|
889
889
|
i.exit().remove();
|
|
890
890
|
const r = i.enter().append("div").attr("class", "toolbar-control cds--overflow-menu cds--overflow-menu"), l = this;
|
|
891
|
-
r.merge(i).classed("disabled", (c) => c.shouldBeDisabled()).attr("aria-disabled", (c) => c.shouldBeDisabled()).attr("aria-label", (c) => c.title).html((c) => `
|
|
891
|
+
r.merge(i).classed("disabled", (c) => c.shouldBeDisabled()).attr("role", "button").attr("aria-disabled", (c) => c.shouldBeDisabled()).attr("aria-label", (c) => c.title).html((c) => `
|
|
892
892
|
<button
|
|
893
893
|
class="cds--overflow-menu__trigger cds--overflow-menu__trigger"
|
|
894
894
|
aria-haspopup="true" aria-expanded="false" id="${this.services.domUtils.generateElementIDString(
|
|
@@ -8609,4 +8609,4 @@ export {
|
|
|
8609
8609
|
Oh as y,
|
|
8610
8610
|
Th as z
|
|
8611
8611
|
};
|
|
8612
|
-
//# sourceMappingURL=choropleth
|
|
8612
|
+
//# sourceMappingURL=choropleth-8ZwwWcHd.mjs.map
|