This repository was archived by the owner on May 14, 2020. It is now read-only.
v0.6.0
Non-Breaking Changes
(there's a lot of changes, I'm sorry for that, it probably shouldn't be in one PR)
- If
Object,ArrayorIterablehas more thancollectionLimitentries (50by default), onlycollectionLimitentries are shown, the rest are grouped recursively (so than not more thancollectionLimitgroups are shown). IfcollectionLimit = 0, all items are shown.
Example screencast (as a part of redux-devtools-inspector):
- Added prop
postprocessValue(value)(identityby 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)(returnsfalseby default): if returnstrue, item is rendered viaJSONValueNode, which allows to render custom component for any type of item (not just literals). Should be used withvalueRenderer. - Objects with circular references are never expanded by default, even with
expandAll = true.
