tree icon indicating copy to clipboard operation
tree copied to clipboard

React Tree

Results 115 tree issues
Sort by recently updated
recently updated
newest added

It seems wrong when the node is checked despite it has unchecked children even though they're disabled. Here is the fixed behaviour screencast: ![ezgif com-gif-maker](https://user-images.githubusercontent.com/95249600/196657050-1c18c1f5-9b92-4c53-9e07-2111f4d5d328.gif)

### Status Quo Using the keyboard navigation, the tree shows an active _active_ item. ### Problem If the user moves the mouse cursor, the _active_ item is reset. https://github.com/react-component/tree/blob/62e0bf0b91d86b6e42fee69870ada9a4640b6c6f/src/NodeList.tsx#L360-L362 ###...

you forget export DataNode type ! ![image](https://user-images.githubusercontent.com/24865815/163711870-b5075584-1e81-4c8b-b2d3-0d45f68b0734.png) without exposing this type, we get error with only BasicDataNode, because it missing `key`. ![image](https://user-images.githubusercontent.com/24865815/163711904-643a0eb7-c17d-4705-94a2-031a6d3a4a9d.png) ----- edit: It look missing expose a lot...

Hi, When using rc-tree in **controlled** mode, with some animations (with the `motion` prop), and with `expandAction="click"`, then the Tree gets stuck whenever you click on a leaf. When that...

``` import RcTree from "rc-tree"; import "rc-tree/assets/index.css"; const treeData = [ { title: "title0", key: "key0" }, { title: "title1", key: "key1" }, { title: "title2", key: "key2" }, {...

Is there a way to suppress the expansion of un-expanded nodes while dragging? We limit re-sorting of items only to siblings of a node. We don't allow dropping outside of...

In rc-tree v2 there was a nice example of drag n drop between trees. This functionality initially got lost in the transition v2 => v3, but was restored through https://github.com/react-component/tree/pull/327...

Hi `react-component/tree`! This is a one-off automatically generated pull request from LGTM.com :robot:. You might have heard that we’ve integrated LGTM’s underlying CodeQL analysis engine natively into GitHub. The result...

Currently when a parent node is half-checked, clicking on it will check all its children. Would it be possible to add a prop that would change the logic such that...

Within functionality [onWindowDragEnd](https://github.com/react-component/tree/blob/master/src/Tree.tsx#L701), it passes `null` into [onNodeDragEnd](https://github.com/react-component/tree/blob/master/src/Tree.tsx#L706). calling `node.props` here will result in an error. As in this case, `node` is `null`. @zombieJ Can any of the owners take...