react-json-tree icon indicating copy to clipboard operation
react-json-tree copied to clipboard

React JSON Viewer Component, Extracted from redux-devtools

Results 34 react-json-tree issues
Sort by recently updated
recently updated
newest added
trafficstars

#### What is done in this PR - Replaced ES6 insance methods `Array.prototype.find` with `Array.find` as `babel-plugin-transform-runtime` does not polyfill them in such a way (see [why](https://babeljs.io/docs/plugins/transform-runtime/#why-) and also see...

As IE [doesn't support](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find#Browser_compatibility) `Object.find` function and this function is used in the code (for instance, [here](https://github.com/alexkuz/react-json-tree/blob/65b5c51dc0c8d6083ee6517c3817976e78cd843e/src/index.js#L120)), maybe it worth to mention this in the `README.md` file?

Hi there. We're using Chrome Redux Dev-Tools Extension (for Angular NgRx apps, actually). Within an app state at some point we also have a JS [Blob](https://developer.mozilla.org/en-US/docs/Web/API/Blob) and a [File](https://developer.mozilla.org/en-US/docs/Web/API/File) objects....

It is possible to obtain the name of the property and the key of the property in `labelRenderer ` and `valueRenderer` I try passed delta diff [https://github.com/benjamine/jsondiffpatch], I need key...

I have notice that ``valueRenderer`` receives a values twice as arg1 and arg2. https://github.com/alexkuz/react-json-tree/blob/master/src/JSONValueNode.js#L22 Shouldn't **nodeType** be send as the 2nd arg? ```javascript {valueRenderer(valueGetter(value), nodeType, ...keyPath)} ```

Is it possible to access the parent object from the nested Node? I am changing the background-color for an item, but I would rather like to see the parent having...

React has deprecated their own `propTypes` and will remove it in v16. Use the `prop-types` package instead.

Hello, My scenario requires to highlights certain values within json. Will it be possible to add a new prop like "highlight" with a list of values like ["root.path.el[1]", "root.anotherPath"] so...

When following the example, typescript shouts at me: > JSX element type 'JSONTree' does not have any construct or call signatures.