I know the gauge card was redone, I took a before and after screenshot. There are two minor things wrong:
0.112.4 (expected behavior)

Same gauge on 0.113.0b0

temp fix for colours
style: |
path.dial {
stroke: var(--primary-background-color);
}
Using card mod of course
The background color will be an easy fix, the rounding is hard I'm afraid because we want to round it while it is animating and don't round it when it is done... I'll check it :-)
Hi @bramkragten , author of svg-gauge here. The default label option is a function that rounds the value:
var defaultOptions = {
dialRadius: 40,
// ... other options
label: function(val) {return Math.round(val);}
};
You just needed to replace the label function to round to whatever decimal places you needed. The label function is called in every step (frame) in the animation.
P.S. Thanks for evaluating svg-gauge. If you see any problems/improvements please file a bug :)
naikus