diff --git a/README.md b/README.md
index ddbeb3e..df00458 100644
--- a/README.md
+++ b/README.md
@@ -64,7 +64,7 @@ import ReactJsonView from '@microlink/react-json-view'
| `name` | `string` or `JSX.Element` | `false` | "root" - Contains the name of your root node. Use `null` or `false` for no name. |
| `theme` | `string` | `'rjv-default'` | RJV supports base-16 themes. Check out the list of supported themes [in the demo](https://react-json-view.microlink.io/). A custom "rjv-default" theme applies by default. |
| `style` | `object` | `{}` | Style attributes for react-json-view container. Explicit style attributes will override attributes provided by a theme. |
-| `iconStyle` | `string` | `'circle'` | Style of expand/collapse icons. Accepted values are "circle", "triangle" or "square". |
+| `iconStyle` | `string` | `'circle'` | Style of expand/collapse icons. Accepted values are "circle", "triangle", "square" or "chevron". |
| `indentWidth` | `integer` | 4 | Set the indent-width for nested objects. |
| `collapsed` | `boolean` or `integer` | `false` | When set to `true`, all nodes will be collapsed by default. Use an integer value to collapse at a particular depth. |
| `collapseStringsAfterLength` | `integer` | `false` | When an integer value is assigned, strings will be cut off at that length. Collapsed strings are followed by an ellipsis. String content can be expanded and collapsed by clicking on the string value. |
@@ -73,6 +73,7 @@ import ReactJsonView from '@microlink/react-json-view'
| `enableClipboard` | `boolean` or `(copy)=>{}` | `true` | When prop is not `false`, the user can copy objects and arrays to clipboard by clicking on the clipboard icon. Copy callbacks are supported. |
| `displayObjectSize` | `boolean` | `true` | When set to `true`, objects and arrays are labeled with size. |
| `displayDataTypes` | `boolean` | `true` | When set to `true`, data type labels prefix values. |
+| `displayCompact` | `boolean` | `false` | When set to true, hides display of `:`, `{`, and `[` symbols for parent objects and arrays that are not the final value in the hierarchy. |
| `onEdit` | `(edit)=>{}` | `false` | When a callback function is passed in, `edit` functionality is enabled. The callback is invoked before edits are completed. Returning `false` from `onEdit` will prevent the change from being made. [see: onEdit docs](#onedit-onadd-and-ondelete-interaction) |
| `onAdd` | `(add)=>{}` | `false` | When a callback function is passed in, `add` functionality is enabled. The callback is invoked before additions are completed. Returning `false` from `onAdd` will prevent the change from being made. [see: onAdd docs](#onedit-onadd-and-ondelete-interaction) |
| `defaultValue` | `string \| number \| boolean \| array \| object` | `null` | Sets the default value to be used when adding an item to JSON. |
diff --git a/docs/src/js/components/Demo.js b/docs/src/js/components/Demo.js
index 7ba5dac..2a4e514 100644
--- a/docs/src/js/components/Demo.js
+++ b/docs/src/js/components/Demo.js
@@ -28,6 +28,7 @@ class Demo extends React.PureComponent {
enableClipboard: true,
indentWidth: 4,
displayDataTypes: true,
+ displayCompact: false,
iconStyle: 'triangle'
}
@@ -135,7 +136,8 @@ class Demo extends React.PureComponent {
iconStyle,
collapsed,
indentWidth,
- displayDataTypes
+ displayDataTypes,
+ displayCompact
} = this.state
const style = {
@@ -214,6 +216,7 @@ class Demo extends React.PureComponent {
enableClipboard={enableClipboard}
indentWidth={indentWidth}
displayDataTypes={displayDataTypes}
+ displayCompact={displayCompact}
iconStyle={iconStyle}
/>
@@ -265,6 +268,10 @@ class Demo extends React.PureComponent {