redux-devtools-inspector icon indicating copy to clipboard operation
redux-devtools-inspector copied to clipboard

Another Redux DevTools Monitor

Results 15 redux-devtools-inspector issues
Sort by recently updated
recently updated
newest added

NOTE: test fails because of noflow in types.js. Not my fault :) This overrides getText from src/tabs/getItemString.js with user-defined formatItem. Example use case: generate appropriate labels for custom datatypes. See...

getting these 2 warnings in webpack bundle: ``` WARNING in ../~/jsondiffpatch/src/main.js 56:20-50 Critical dependency: the request of a dependency is an expression WARNING in ../~/jsondiffpatch/src/main.js 61:19-47 Critical dependency: the request...

If ` type` is checked before `val` is modified, new `val` may have invalid type. In my case ``` val = [ 1234, 5678] ``` and type is 'Array' but...

I created a PR https://github.com/alexkuz/redux-devtools-inspector/pull/70 to bump the version and fix some eslint errors. I need this commit to be published: https://github.com/alexkuz/redux-devtools-inspector/commit/5202f01f15779a7a01e6679272a6d5f4566d646f In my case blobs in the store (introduced...

to include latest fix https://github.com/alexkuz/redux-devtools-inspector/commit/5202f01f15779a7a01e6679272a6d5f4566d646f

It allows submonitors in tabs to have access and update `monitorState`. For example [`redux-devtools-test-generator`](https://github.com/zalmoxisus/redux-devtools-test-generator) can persist test templates. We're not dividing them into substates, so one should do it on...

Adds 2 optional props: - `hideMainButtons` - will not show top buttons: `commit`, `reset`... - `hideActionButtons` - will not show action buttons: `jump`, `skip`.

Implementation of https://github.com/zalmoxisus/redux-devtools-instrument/pull/13. Here's how it works: ![kmo6gpo5uk](https://cloud.githubusercontent.com/assets/7957859/21647140/bca28956-d2a1-11e6-8072-5ec72ec58776.gif) Or a more practical example: ![w8lxrddfsp](https://cloud.githubusercontent.com/assets/7957859/21647188/e762428a-d2a1-11e6-902f-1b294ee24573.gif)

It would be rather useful as described in https://github.com/zalmoxisus/redux-devtools-extension/issues/267. I'm planning to implement it with [`react-split-pane`](https://github.com/tomkp/react-split-pane), as being widely tested and used (for example in react storybook). However, if @alexkuz...