react-sortable-hoc
react-sortable-hoc copied to clipboard
A set of higher-order components to turn any list into an animated, accessible and touch-friendly sortable list✌️
I'm trying to use react-sortable-hoc with @risingstack/react-easy-state but due to this view is not updating and rendering is not working after changes in the store I have to use force...
I realise that when I use `react-sortable-hoc` and I also have `react-dropzone` on the same page, the sorting doesn't work well (e.g. I cannot drag an item in between other...
You can use the lib much easier if you would include this: ```typescript import {SortableContainer, SortableElement, SortableHandle} from "react-sortable-hoc"; const component = ({children}: {children: JSX.Element}) => children; export const SortableItem...
This PR adds a rtl support when direction is set to rtl. Only need set rtl props to SortableContainer: `` or `` Thanks
Hi, The DOM nodes of the dragged item are cloned when we drag it. Is there any way to prevent cloning ? Thanks
When I drag an item in Safari or IE 11, the text on other areas of the page that my mouse travels by gets selected. It's as if the browser...
Provides a solution for issues like #510, looking to detect drop events. Adds `onDropOver` and `onDropCancel` functions that get called when dragging over a new index and when no longer...
Is something like this: https://github.com/atlassian/react-beautiful-dnd/blob/master/docs/guides/combining.md possible with this lib? I need grid and merge support (for merge I mean exactly dragging one item to drop it over another item) I...
Any plans for this library to support the use of hooks instead of HOCs?
Hi @clauderic, I am trying to get this working with react-virtualized ``. I am running into an issue I'm hoping you can spot and address. In hopes of tempting you...