Socket
Socket
Sign inDemoInstall

react-progressbar

Package Overview
Dependencies
20
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.4.3 to 1.4.4

18

lib/index.js

@@ -24,7 +24,3 @@ 'use strict';

var PropTypes = {
completed: _react2.default.PropTypes.oneOf(Array.from({
length: 101
}, function (v, k) {
return k;
})),
completed: _react2.default.PropTypes.number,
color: _react2.default.PropTypes.string,

@@ -54,10 +50,9 @@ height: _react2.default.PropTypes.oneOfType([_react2.default.PropTypes.string, _react2.default.PropTypes.number])

color = _props.color,
completed = _props.completed,
height = _props.height,
children = _props.children,
rest = _objectWithoutProperties(_props, ['color', 'completed', 'height', 'children']);
rest = _objectWithoutProperties(_props, ['color', 'height', 'children']);
var style = {
backgroundColor: color,
width: completed + '%',
width: this.completed + '%',
transition: "width 200ms",

@@ -77,2 +72,9 @@ height: height

}
}, {
key: 'completed',
get: function get() {
if (this.props.completed < 0) return 0;
if (this.props.completed > 100) return 100;
return this.props.completed;
}
}]);

@@ -79,0 +81,0 @@

{
"name": "react-progressbar",
"version": "1.4.3",
"version": "1.4.4",
"description": "Basic progress bar in React",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -7,38 +7,13 @@ # react-progressbar

# Add example steps:
```
git checkout docs-site;
```
add your examlple in `docs-site/src/examples` then,
Basic progress bar in React.js.
![Screenshot of progress bar](https://raw.githubusercontent.com/abdennour/react-progressbar/master/screenshot.png)
Demo: http://abdennour.github.io/react-progressbar/
Usage
=====
Simply `require('react-progressbar')` and pass in `completed` property as a number between 0 and 100.
You may additionally pass in a CSS color string for the `color` property.
```js
var Progress = require('react-progressbar');
var component = React.createClass({
render: function() {
return (
<div>
<Progress completed={75} />
</div>
);
}
});
```
npm run build;
```
License
=======
MIT
then

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc