You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`theme`|`ThemeInput`|`defaultTheme`| Either one of the built-in themes (imported separately), or an object specifying some or all theme properties — see [Themes](#themes--styles). |
198
198
|`icons`|`{[iconName]: JSX.Element, ... }`|`{ }`| Replace the built-in icons by specifying them here — see [Themes](#themes--styles). ||
199
+
|`showIconTooltips`|`boolean`| false | Display icon tooltips when hovering. ||
199
200
|`indent`|`number`|`3`| Specify the amount of indentation for each level of nesting in the displayed data. |
200
201
|`collapse`|`boolean\|number\|FilterFunction`|`false`| Defines which nodes of the JSON tree will be displayed "opened" in the UI on load — see [Collapse](#collapse). |
201
202
|`collapseAnimationTime`|`number`|`300`| Time (in milliseconds) for the transition animation when collapsing collection nodes. |
@@ -914,6 +915,11 @@ Localise your implementation (or just customise the default messages) by passing
914
915
DEFAULT_NEW_KEY: 'key',
915
916
SHOW_LESS: '(Show less)',
916
917
EMPTY_STRING: '<empty string>' // Displayed when property key is ""
918
+
// Tooltips only appear if `showIconTooltips` prop is enabled
0 commit comments