react-spinners
Advanced tools
Comparing version 0.2.2 to 0.2.3
@@ -5,2 +5,13 @@ # Change Log | ||
## 0.2.3 | ||
- updated devDendencies to latest stable versions | ||
- removed unused npm scripts from `package.json` | ||
- minor linting fixes after update. | ||
- add `^16.0.0` to `react` and `react-dom` peerDependencies. | ||
## 0.2.2 | ||
- **bugfix**: change `borderRadius` to `border-radius` in `RingLoader` so the browser will recognize the css. | ||
## 0.2.1 | ||
@@ -7,0 +18,0 @@ |
{ | ||
"name": "react-spinners", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "A collection of react loading spinners", | ||
@@ -34,39 +34,36 @@ "repository": { | ||
"lintfix": "eslint ./src --ext .js,.jsx --fix", | ||
"testonly": "mocha $npm_package_options_mocha", | ||
"test": "npm run lint", | ||
"test-watch": "npm run testonly -- --watch --watch-extensions js", | ||
"build": "$npm_execpath run prepublish && webpack", | ||
"patch": "npm version patch && npm publish", | ||
"flow": "./node_modules/.bin/flow check" | ||
"patch": "npm version patch && npm publish" | ||
}, | ||
"types": "./src/index.d.ts", | ||
"devDependencies": { | ||
"babel-cli": "^6.6.4", | ||
"babel-core": "^6.7.4", | ||
"babel-eslint": "^6.0.2", | ||
"babel-loader": "^7.1.1", | ||
"babel-cli": "^6.26.0", | ||
"babel-core": "^6.26.0", | ||
"babel-eslint": "^8.0.2", | ||
"babel-loader": "^7.1.2", | ||
"babel-plugin-transform-es2015-modules-umd": "^6.6.5", | ||
"babel-polyfill": "^6.7.4", | ||
"babel-polyfill": "^6.26.0", | ||
"babel-preset-es2015": "^6.6.0", | ||
"babel-preset-react": "^6.5.0", | ||
"babel-preset-stage-0": "^6.24.1", | ||
"babel-register": "^6.24.1", | ||
"eslint": "^3.19.0", | ||
"eslint-config-airbnb": "^14.1.0", | ||
"eslint-friendly-formatter": "^2.0.7", | ||
"eslint-loader": "^1.7.1", | ||
"eslint-plugin-import": "^2.2.0", | ||
"eslint-plugin-jsx-a11y": "^4.0.0", | ||
"eslint-plugin-react": "^6.9.0", | ||
"babel-register": "^6.26.0", | ||
"eslint": "^4.11.0", | ||
"eslint-config-airbnb": "^16.1.0", | ||
"eslint-friendly-formatter": "^3.0.0", | ||
"eslint-loader": "^1.9.0", | ||
"eslint-plugin-import": "^2.8.0", | ||
"eslint-plugin-jsx-a11y": "^6.0.2", | ||
"eslint-plugin-react": "^7.5.1", | ||
"flow-bin": "^0.50.0", | ||
"react": "^15.0.0", | ||
"react-addons-test-utils": "^15.0.0", | ||
"react-click-outside": "^ 2.3.1", | ||
"react-color": "^2.13.0", | ||
"react-dom": "^15.0.0", | ||
"webpack": "^3.0.0" | ||
"react": "^15.4.2", | ||
"react-addons-test-utils": "^15.6.2", | ||
"react-click-outside": "^3.0.0", | ||
"react-color": "^2.13.8", | ||
"react-dom": "^15.4.2", | ||
"webpack": "^3.8.1" | ||
}, | ||
"peerDependencies": { | ||
"react": "~0.14.8 || ^15.0.0", | ||
"react-dom": "~0.14.8 || ^15.0.0" | ||
"react": "^0.14.0 || ^15.0.0 || ^16.0.0", | ||
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0" | ||
}, | ||
@@ -73,0 +70,0 @@ "dependencies": { |
@@ -12,3 +12,2 @@ import React from 'react'; | ||
class Loader extends React.Component { | ||
style = i => css`{ | ||
@@ -15,0 +14,0 @@ position: absolute; |
@@ -15,3 +15,2 @@ import React from 'react'; | ||
class Loader extends React.Component { | ||
style = rand => css`{ | ||
@@ -18,0 +17,0 @@ display: inline-block; |
@@ -13,3 +13,2 @@ import React from 'react'; | ||
class Loader extends React.Component { | ||
style = i => css`{ | ||
@@ -16,0 +15,0 @@ opacity: 0.8; |
@@ -14,3 +14,2 @@ import React from 'react'; | ||
class Loader extends React.Component { | ||
style = () => css`{ | ||
@@ -17,0 +16,0 @@ width: 0; |
@@ -14,3 +14,2 @@ import React from 'react'; | ||
class Loader extends React.Component { | ||
style = () => css`{ | ||
@@ -17,0 +16,0 @@ background-color: ${this.props.color}; |
@@ -13,3 +13,2 @@ import React from 'react'; | ||
class Loader extends React.Component { | ||
style = i => css`{ | ||
@@ -16,0 +15,0 @@ background-color: ${this.props.color}; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
2553279
9712