react-arborist
react-arborist copied to clipboard
The complete tree view component for React
**Example App** https://stackblitz.com/~/github.com/justin-elias/remix-run-remix-pavg6k (I just noticed that the preview doesn't always open on init. You may have to Ctrl-Click the local host url in the terminal) When I pass in...
When I call `tree.update` to change the attribute containing height, it does not take effect immediately. The scroll bar must appear after a node is selected. After the scroll bar...
The `open` property (well, `collapsed` actually) is part of my controlled data. I want it to be like this so that the open or closed state is persistent. I've tried...
The scrollbar is a bit ugly. Is it possible to have the Tree adjust its height dynamically instead of having it fixed and let the parent container handle the scrollbars?...
With padding props: https://user-images.githubusercontent.com/1192452/210189821-e8b74dab-ca98-4f50-a02f-b59378d67ada.mp4 Without https://user-images.githubusercontent.com/1192452/210189826-aa13b542-4529-4eca-88d9-efe3178a5fb0.mp4 Bug present here: https://github.com/hipstersmoothie/fwoosh Steps to start ``` yarn yarn build cd examples/fwoosh yarn start ```
If scrollbar is visible, drag&drop with scrolling is not very user friendly. User needs to hover very close to the edge of the window. I am not sure if this...
Hi there! I use this package for my cloud client, and there is a folder tree like this: Despite the root node, all other nodes are representing a folder. The...
Hey Dear Community! I have case where Im stuck. What I want to achieve? a) Track state of selectedIds outside of the tree component b) Manipulate state of selectedIds from...
On lines 341 to 345, there is a missing call to fire the `tree.onSelect` callback. This is preventing me from getting an updated list of selected nodes on deselection. I...