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

React Tree View Component. Data-Driven, Fast, Efficient and Customisable.

Results 72 react-treebeard issues
Sort by recently updated
recently updated
newest added

I have custom Toggle create which has by default style props only. How can I pass nodes in this props? ```babel const TreeToggle = props => { const { style...

:question: question

## The problem: The way we [currently generate](https://github.com/storybookjs/react-treebeard/blob/master/src/components/TreeNode/index.js#L72) React key props is either by using the node's id or generating a random string `key={child.id || randomString()}`. This isn't ideal because:...

https://github.com/storybookjs/react-treebeard/blob/36d72f10c35655371d0d0e396128709288bc8b4c/src/components/NodeHeader.js#L34 I believe the 'target' argument should be an object literal here, i.e. Object.assign({}, style, {container: {...style.link, ...style.activeLink}}) Also, see no reason why Object.assign is mixed with the spread syntax...

Using the latest version of treebeard (4.2.4) and having this issue with VelocityTransitionGroup. Several people have mentioned that animations={false} as a prop to Treebeard should help fix it, but it...

Hello, when I try to view my treebeard component in chrome, I receive the following the error in the console: TypeError: (0, _lodash.castArray) is not a function (bundle.js:1235) at TreeBeard...

I need to build trees in two of my projects. After studying existing solutions I believe my way to go might be: - use [react-virtualized](https://github.com/bvaughn/react-virtualized) as shown here: [example](https://rawgit.com/bvaughn/react-virtualized/master/playground/tree.html), [code](https://github.com/bvaughn/react-virtualized/blob/master/playground/tree.js)...

I want to display custom dropdown menus when a right-click event is detected over a node or folder. The toggle event apparently is only triggered by the left click. How...

Do not show polygon of node: ![image](https://user-images.githubusercontent.com/14983636/90027141-de527980-dcc0-11ea-9ff2-a195bad83ba3.png) If there are no children provided to the location (empty array). Example data object: ``` export default { name: 'react-treebeard', id: 1, toggled:...

Hello - great project. I was wondering if there is a way to show buttons/icons to the right (delete file / add file) when you hover on a node. This...

Hello, Firstly I would like to congratulate for making such a good treeview. How can we use the drag and drop to move files around. Thanks, Deepak

:handshake: help wanted