React Json Tree Versions Save

React JSON Viewer Component, Extracted from redux-devtools

v0.6.5

8 years ago

Non-Breaking Changes

  • Fix paddings that got broken in the recent versions

v0.6.4

8 years ago

Non-Breaking Changes

  • Allow React 15 as peer dependency

v0.6.2

8 years ago

Non-Breaking Changes

(From #39 - thanks @codeheroics )

  • Support ES2015 Symbols.

v0.6.1

8 years ago

Non-Breaking Changes

(From #33 - thanks @axelson)

  • Expand clickable area of the tree.

v0.6.0

8 years ago

Non-Breaking Changes

(From #35 - thanks @alexkuz)

(there's a lot of changes, I'm sorry for that, it probably shouldn't be in one PR)

  • If Object, Array or Iterable has more than collectionLimit entries (50 by default), only collectionLimit entries are shown, the rest are grouped recursively (so than not more than collectionLimit groups are shown). If collectionLimit = 0, all items are shown.

Example screencast (as a part of redux-devtools-inspector):

json

  • Added prop postprocessValue(value) (identity by default): allows to replace value on rendering. Useful for huge collections, as there is no need to traverse all entries, just the ones that are rendered.
  • Added prop isCustomNode(value) (returns false by default): if returns true, item is rendered via JSONValueNode, which allows to render custom component for any type of item (not just literals). Should be used with valueRenderer.
  • Objects with circular references are never expanded by default, even with expandAll = true.

v0.5.6

8 years ago

Non-Breaking Changes

v0.5.3

8 years ago

Non-Breaking Changes

v0.5.5

8 years ago

Non-Breaking Changes

v0.5.1

8 years ago

Non-Breaking Changes

  • Regression fix introduced in 0.4.0 (See #25)

v0.5.0

8 years ago

Possible Breaking Changes

  • Update to Babel 6 (See #17)

Non-Breaking Changes

  • Fix TypeError for objects without prototype chain (See #23)