@carbon/charts 1.15.5 → 1.15.6
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-C_tUN7Ur.mjs → choropleth-DgRtqF2B.mjs} +2 -2
- package/dist/{choropleth-C_tUN7Ur.mjs.map → choropleth-DgRtqF2B.mjs.map} +1 -1
- 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/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.15.6 (2024-04-11)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **meter:** meter width shouldn't be smaller than 2px
|
|
11
|
+
([#1791](https://github.com/carbon-design-system/carbon-charts/issues/1791))
|
|
12
|
+
([3336aeb](https://github.com/carbon-design-system/carbon-charts/commit/3336aeb0ebc8afccf6d1e95d5b2fdd3274fd11bd))
|
|
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.15.5 (2024-03-21)
|
|
7
20
|
|
|
8
21
|
**Note:** Version bump only for package @carbon/charts
|
|
@@ -7161,7 +7161,7 @@ class Kh extends Y {
|
|
|
7161
7161
|
name: "meter-bar-update",
|
|
7162
7162
|
animate: e
|
|
7163
7163
|
})
|
|
7164
|
-
).attr("width", (y) => y.value > d ? p(d) : y.width).style("fill", (y) => t.model.getFillColor(y[c], null, y)).attr("role", X.GRAPHICS_SYMBOL).attr("aria-roledescription", "value").attr("aria-label", (y) => y.value), g.exit().remove();
|
|
7164
|
+
).attr("width", (y) => y.value > d ? p(d) : Math.max(y.width, 2)).style("fill", (y) => t.model.getFillColor(y[c], null, y)).attr("role", X.GRAPHICS_SYMBOL).attr("aria-roledescription", "value").attr("aria-label", (y) => y.value), g.exit().remove();
|
|
7165
7165
|
const E = v(s, "meter", "peak");
|
|
7166
7166
|
let O = E;
|
|
7167
7167
|
E !== null && (E > d ? O = d : E < i[0].value && (O = i[0].value > d ? d : i[0].value));
|
|
@@ -8703,4 +8703,4 @@ export {
|
|
|
8703
8703
|
wh as y,
|
|
8704
8704
|
Ch as z
|
|
8705
8705
|
};
|
|
8706
|
-
//# sourceMappingURL=choropleth-
|
|
8706
|
+
//# sourceMappingURL=choropleth-DgRtqF2B.mjs.map
|