jfs-components 0.1.54 → 0.1.55

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.
@@ -71,7 +71,7 @@ function CircularProgressBarDoted({
71
71
  const activeDots = normalizedValue <= 0 ? 0 : Math.ceil(normalizedValue / 100 * resolvedDotCount);
72
72
  const dotShadowSize = toNumber(getVariableByName('circularProgressBarDoted/dot/shadow/size', modes), 6);
73
73
  const baseDotSize = toNumber(getVariableByName('circularProgressBarDoted/dot/size', modes), 6);
74
- const dotSize = baseDotSize + dotShadowSize;
74
+ const dotSize = baseDotSize + dotShadowSize * 2;
75
75
  const outerDotSize = dotSize;
76
76
  const ringSize = layoutSize;
77
77
  const ringRadius = Math.max(0, (ringSize - outerDotSize) / 2);