data*required | TreeViewDataItem[] | | Data of the tree view |
activeItems | TreeViewDataItem[] | | Active items of tree view |
allExpanded | boolean | | Sets the expanded state on all tree nodes, overriding default behavior and current internal state |
className | string | | Class to add to add if not passed a parentItem |
compareItems | (item: TreeViewDataItem, itemToCheck: TreeViewDataItem) => boolean | (item, itemToCheck) => item.id === itemToCheck.id | Comparison function for determining active items |
defaultAllExpanded | boolean | false | Sets the default expanded behavior |
expandedIcon | React.ReactNode | | Icon for all expanded node items |
hasBadges | boolean | false | Flag indicating if all nodes in the tree view should have badges |
hasChecks | boolean | false | Flag indicating if all nodes in the tree view should have checkboxes |
hasGuides | boolean | false | Flag indicating if tree view has guide lines. |
icon | React.ReactNode | | Icon for all leaf or unexpanded node items |
id | string | | ID of the tree view |
isNested | boolean | false | Flag indicating if the tree view is nested |
onCheck | (event: React.ChangeEvent, item: TreeViewDataItem, parentItem: TreeViewDataItem) => void | | Callback for item checkbox selection |
onSelect | (event: React.MouseEvent, item: TreeViewDataItem, parentItem: TreeViewDataItem) => void | | Callback for item selection |
parentItem | TreeViewDataItem | | Internal. Parent item of a TreeViewListItem |
toolbar | React.ReactNode | | Toolbar to display above the tree view |
useMemo | boolean | | Flag indicating the TreeView should utilize memoization to help render large data sets. Setting this property requires that `activeItems` pass in an array containing every node in the selected item's path. |
variant | 'default' | 'compact' | 'compactNoBackground' | 'default' | Variant presentation styles for the tree view. |