Cheton Wu
Cheton Wu
@huanglijiao @pinokara It stated that you might have two acorn copies in your project. https://github.com/acornjs/acorn-private-class-elements/blob/master/index.js#L22-L24 ```js if (cur !== acorn.Parser) { throw new Error("acorn-private-class-elements does not support mixing different acorn...
Remove both `node_modules` and `package-lock.json` and do a fresh install should work.
It is probably related to https://github.com/i18next/i18next-scanner/issues/125#issuecomment-474678819 and https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md#800. You can apply the [workaround](https://github.com/i18next/i18next-scanner/issues/125#issuecomment-476111895) temporarily, I will make the change for react-i18next v8 (or later versions) in a future release.
Will it help if I set tabIndex to 0 as its default value and allow user to override?
So far infinite-tree can only drag an external element into the tree. Moving between nodes is not supported in current versions. Do you want to drag and drop nodes inside...
To make a node draggable, you can set the attribute `draggable="true"` (note. "true" is string, not boolean true) in your custom rowRenderer, this allows to drag an element and drop...
Sorry for the delay. I have some ideas about how to add dnd support, but I'm pretty busy with my day work in this moment. I will make some updates...
@denkomanceski I just updated the sample code in the examples directory, you can check out https://github.com/cheton/infinite-tree/blob/master/examples/default/index.js#L250-L329 for my initial work regarding drag and drop support. Note that the functionality is...
I think you might need to remember the `parentNode` and the `insertIndex` in the `dragover` event, and then call `tree.moveNodeTo(dragNode, parentNode, insertIndex)` on `drop` for the case of inserting above...
The "flatten" and "rowRenderer" functions, especially the "rowRenderer", would use the most CPU time while trying to load a large tree: https://github.com/cheton/infinite-tree/blob/master/src/infinite-tree.js#L686 https://github.com/cheton/infinite-tree/blob/master/src/infinite-tree.js#L712 ``` js // Flatten nodes this.nodes =...