Releases: reduxjs/redux-devtools
Releases · reduxjs/redux-devtools
v2.1.0
- Adds
visibleOnLoad
prop that works with the defaultLogMonitor
. You can now write<DevTools store={store} monitor={LogMonitor} visibleOnLoad={false} />
to prevent the monitor from appearing at the page load. It's still available when you press Ctrl+H! - Adds
deserializer
parameter topersistState()
. See #78 (comment) for a usage example with Immutable.
v2.0.0
v1.1.2
v1.1.1
v1.1.0
v1.0.2
v1.0.1
v1.0.0
New built-in monitor
Built-in LogMonitor
now supports:
- Tree view;
- Themes (try
theme='bright'
) - Highlighting changed properties.
Thanks to @dzannotti and @nicinabox.
v0.2.0
v0.1.3
- When there is an error in reducer, it is now printed to the console
- “Sweep” now works correctly with monitors that use
currentStateIndex
- Scrollbar is removed when dev tools are hidden
- You can now pass custom
style
overrides toDebugPanel