Tomás Menezes
Tomás Menezes
Still having this issue (while importing Sortable, MultiDrag from either package, working with NextJS) with "react-sortablejs": "^6.1.4", "sortablejs": "^1.15.0". **Update** Working without plugin mounting in versions "react-sortablejs": "6.0.0", "sortablejs": "1.12.0",...
MultiDrag works properly in the latest versions, "react-sortablejs": "^6.1.4", "sortablejs": "^1.15.0", by importing Sortable from the complete file with all the mounted plugins in `react-sortable.tsx`: `import Sortable from "sortablejs/modular/sortable.complete.esm.js";`
> that is what I tried, and that errors this. > > ``` > const element = document.getElementById('elementId'); > Sortable.utils.select(element); > ``` That last call should work if the plugin...
> > Additionally, when multiple items are dragged to a different list, the selection seemingly disappears on drag end. However, by selecting a few items of the target list immediately...
Yes, some other components (such as inputs) would also benefit from having `pointer-events-none` on the icons so the actions can pass through.
+1, interested in developments for large scale data
@hexwit The bug described above was a result of the typo, so adding items to the dependency array solves it. The only major issue I'm experiencing now is related to...
@alissaVrk Sounds amazing! There is still much to improve. Imo continuing this work is extremely meaningful as it has a huge measurable impact on the community's experience - especially regarding...
@alissaVrk, don't know how this will integrate with the new planned API but would you still be able to generate that list of API changes you had in mind to...
@alissaVrk btw, that performance issue I mentioned earlier in the thread is exemplified in [this stress test sandbox](https://codesandbox.io/p/sandbox/alissavrk-dnd-kit-forked-rsdcj3). Simply changing the active window takes removeChild for a ride. The instance...