@bam.tech/react-native-component-progress-bar
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -7,3 +7,5 @@ import React, { PureComponent } from 'react'; | ||
width: 0, | ||
progress: new Animated.Value((this.props.progress || 0) / 100), | ||
progress: new Animated.Value( | ||
this.props.initialProgress != null ? this.props.initialProgress : this.props.progress || 0 | ||
), | ||
}; | ||
@@ -10,0 +12,0 @@ |
{ | ||
"name": "@bam.tech/react-native-component-progress-bar", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "private": false, |
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
2533
71