@carbon/charts-react 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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -19743,7 +19743,7 @@ class NN extends xt {
|
|
|
19743
19743
|
name: "meter-bar-update",
|
|
19744
19744
|
animate: t
|
|
19745
19745
|
})
|
|
19746
|
-
).attr("width", (b) => b.value > u ? d(u) : b.width).style("fill", (b) => n.model.getFillColor(b[c], null, b)).attr("role", ht.GRAPHICS_SYMBOL).attr("aria-roledescription", "value").attr("aria-label", (b) => b.value), p.exit().remove();
|
|
19746
|
+
).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", ht.GRAPHICS_SYMBOL).attr("aria-roledescription", "value").attr("aria-label", (b) => b.value), p.exit().remove();
|
|
19747
19747
|
const m = x(i, "meter", "peak");
|
|
19748
19748
|
let y = m;
|
|
19749
19749
|
m !== null && (m > u ? y = u : m < a[0].value && (y = a[0].value > u ? u : a[0].value));
|