react-arborist icon indicating copy to clipboard operation
react-arborist copied to clipboard

The complete tree view component for React

Results 151 react-arborist issues
Sort by recently updated
recently updated
newest added
trafficstars

Hello, I would like to replace [react-dropdown-tree-select](https://github.com/dowjones/react-dropdown-tree-select) with this library. Would it be possible to add functionality where you can checkbox folders and search for folders?

This will help users get up and running quickly, without needing to create their own styles at first. @mason-fish had this idea.

`handlers.select(e, {selectOnClick: true})` That's weird.

Hi James, I need to listen for the tree node select event via the Tree component. Would it be possible to add this? My use case is I'm using check-boxes...

If you have 2 Tree components rendering at the same time a React `Maximum update depth exceeded` error is thrown. The line below is causing the error. ```js useLayoutEffect(() =>...

There are a number of use-cases where extra visual spacing and/or just larger `rowHeight`s for specific nodes or groups of nodes on the tree would be helpful. As far as...

```cmd Failed to compile. ./node_modules/react-arborist/dist/module.js 394:7 Module parse failed: Unexpected token (394:7) File was processed with these loaders: * ./node_modules/react-scripts/node_modules/babel-loader/lib/index.js You may need an additional loader to handle the result...

**Data** ``` const treeData = { id: nanoid(), name: "Bookmarks", isOpen: true, children: [ { id: nanoid(), name: "Brim Github", isOpen: true, children: [ { id: nanoid(), name: "brim/pulls", },...

When a parent folder is being dragged into a child there is no check to prohibit this from happening. This causes the entire subtree to disappear.

Experimenting with what the next iteration of the react-arborist api will be, while maintaining all backward compatibility. Remaining Items - [x] node.state - [x] require props hook - [x] disable...