react-gauge-component
Advanced tools
Comparing version 0.9.1 to 0.9.2
@@ -101,3 +101,3 @@ "use strict"; | ||
//Avoid unnecessary re-rendering (when progress is too small) but allow the pointer to reach the final value | ||
var overFlow = currentPercent * 100 > maxValue || currentPercent * 100 < minValue; | ||
var overFlow = currentPercent > 1 || currentPercent < 0; | ||
var tooSmallValue = Math.abs(currentPercent - prevPercent) < 0.0001; | ||
@@ -104,0 +104,0 @@ var sameValueAsBefore = currentPercent == prevPercent; |
{ | ||
"name": "react-gauge-component", | ||
"version": "0.9.1", | ||
"version": "0.9.2", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "module": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
81177