redux-devtools
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -50,2 +50,3 @@ 'use strict'; | ||
nextError = err.toString(); | ||
console.error(err.stack || err); | ||
} | ||
@@ -138,3 +139,3 @@ | ||
skippedActions = {}; | ||
currentStateIndex = Math.max(currentStateIndex, stagedActions.length - 1); | ||
currentStateIndex = Math.min(currentStateIndex, stagedActions.length - 1); | ||
break; | ||
@@ -141,0 +142,0 @@ case ActionTypes.PERFORM_ACTION: |
@@ -5,2 +5,4 @@ 'use strict'; | ||
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; | ||
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })(); | ||
@@ -35,3 +37,3 @@ | ||
fontSize: 17, | ||
overflow: 'scroll', | ||
overflow: 'auto', | ||
opacity: 0.92, | ||
@@ -58,3 +60,3 @@ background: 'black', | ||
'div', | ||
{ style: this.props.getStyle(this.props) }, | ||
{ style: _extends({}, this.props.getStyle(this.props), this.props.style) }, | ||
this.props.children | ||
@@ -61,0 +63,0 @@ ); |
@@ -164,3 +164,3 @@ 'use strict'; | ||
{ onClick: this.handleRollback.bind(this), | ||
style: { textDecoration: 'underline', cursor: 'hand' } }, | ||
style: { textDecoration: 'underline', cursor: 'pointer' } }, | ||
'Rollback' | ||
@@ -177,3 +177,3 @@ ), | ||
{ onClick: this.handleSweep.bind(this), | ||
style: { textDecoration: 'underline', cursor: 'hand' } }, | ||
style: { textDecoration: 'underline', cursor: 'pointer' } }, | ||
'Sweep' | ||
@@ -193,3 +193,3 @@ ) | ||
{ onClick: this.handleCommit.bind(this), | ||
style: { textDecoration: 'underline', cursor: 'hand' } }, | ||
style: { textDecoration: 'underline', cursor: 'pointer' } }, | ||
'Commit' | ||
@@ -196,0 +196,0 @@ ) |
@@ -113,3 +113,3 @@ 'use strict'; | ||
color: 'rgb(' + r + ', ' + g + ', ' + b + ')', | ||
cursor: index > 0 ? 'hand' : 'default', | ||
cursor: index > 0 ? 'pointer' : 'default', | ||
WebkitUserSelect: 'none' | ||
@@ -116,0 +116,0 @@ } }, |
{ | ||
"name": "redux-devtools", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Redux DevTools with hot reloading and time travel", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -36,2 +36,6 @@ Redux DevTools | ||
If you only would like to monitor a part of the state, you can set a select-prop on the DevTools component. | ||
ex. `<DevTools select={state => state.todos} store={store} monitor={LogMonitor} />` | ||
### It's Ugly! | ||
@@ -38,0 +42,0 @@ |
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
36032
70362
756
59