Skip to content

Releases: YoruNoHikage/redux-devtools-dispatch

Switch to prop-types package

16 May 07:01
Compare
Choose a tag to compare

Add dispatchFn prop and fixes

18 Apr 20:36
Compare
Choose a tag to compare
  • Add dispatchFn prop so you can pass a dispatch function different than the store you use in your <Provider>, see #7
  • Fix dispatch button position when used with others monitors, see #6

Thanks @zalmoxisus for this addition and fix.

Add rest parameter and update for React 15

10 Apr 13:29
Compare
Choose a tag to compare
  • Small addition : you can specify a rest parameter that will be given to the action creator as arguments, useful when you use redux-actions package.
  • New examples with redux-actions and without it
  • React 15 support

Extract MultipleMonitors and fix anonymous function (e.g. with redux-actions)

28 Feb 12:30
Compare
Choose a tag to compare
  • You now have to install redux-devtools-multiple-monitors if you want to use MultipleMonitors since it is not shipped with this package anymore.
  • Fix #4 to display function names by property in exported object when created anonymously (created with redux-actions for example)

Action creators and JS

07 Feb 18:49
Compare
Choose a tag to compare
  • New actionCreators props : you can inject an object or array containing your action creators, they will be callable from the interface
  • Error handling because we all make mistakes !
  • You code is now interpreted, so you can write a callback that will be dispatched and catched by any middleware (redux-thunk for example) you want !

Theme support added

11 Jan 23:33
Compare
Choose a tag to compare

Just like LogMonitor, theme prop is supported, yay !

Fix Firefox bug : innerText -> textContent

05 Jan 23:59
Compare
Choose a tag to compare

Forgot that innerText was from IE, Firefox has not implemented it in the current version.

First release !

02 Jan 14:13
Compare
Choose a tag to compare

Basic working version, you type your JSON, click on dispatch and the action is fired !