@carbon/charts-vue 1.15.4 → 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 CHANGED
@@ -3,6 +3,28 @@
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
+
19
+ ## 1.15.5 (2024-03-21)
20
+
21
+ **Note:** Version bump only for package @carbon/charts-vue
22
+
23
+ # Change Log
24
+
25
+ All notable changes to this project will be documented in this file. See
26
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
27
+
6
28
  ## 1.15.4 (2024-03-19)
7
29
 
8
30
  **Note:** Version bump only for package @carbon/charts-vue
package/dist/index.mjs CHANGED
@@ -19702,7 +19702,7 @@ class xN extends dt {
19702
19702
  name: "meter-bar-update",
19703
19703
  animate: t
19704
19704
  })
19705
- ).attr("width", (b) => b.value > u ? d(u) : b.width).style("fill", (b) => n.model.getFillColor(b[c], null, b)).attr("role", at.GRAPHICS_SYMBOL).attr("aria-roledescription", "value").attr("aria-label", (b) => b.value), p.exit().remove();
19705
+ ).attr("width", (b) => b.value > u ? d(u) : Math.max(b.width, 2)).style("fill", (b) => n.model.getFillColor(b[c], null, b)).attr("role", at.GRAPHICS_SYMBOL).attr("aria-roledescription", "value").attr("aria-label", (b) => b.value), p.exit().remove();
19706
19706
  const m = x(i, "meter", "peak");
19707
19707
  let y = m;
19708
19708
  m !== null && (m > u ? y = u : m < a[0].value && (y = a[0].value > u ? u : a[0].value));