react-sortable-hoc icon indicating copy to clipboard operation
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✌️

Results 145 react-sortable-hoc issues
Sort by recently updated
recently updated
newest added

fix: https://github.com/clauderic/react-sortable-hoc/issues/758 resolve mobile devices using useWindowAsScrollContainer cannot scroll

`document.scrollingElement` is BODY in mobile devices, and HTML in PC. When set `useWindowAsScrollContainer` to be true, `AutoScroller` will use document.scrollingElement(here is BODY element), the code can be found in https://github.com/clauderic/react-sortable-hoc/blob/master/src/SortableContainer/index.js#L93...

Related pull request: https://github.com/clauderic/react-sortable-hoc/pull/106 Since Firefox version 62, window.getComputedStyle() returns a CSSStyleDeclaration object with length 0 (instead of null) inside an iframe with display: none. See this comment: https://bugzilla.mozilla.org/show_bug.cgi?id=548397#c53. CSSStyleDeclaration...

Say I have a list, and each item in the list has a `background-color`. The background color can change, so we put a `transition: background 0.5s linear`. This disables the...

When dragging an element, the element does not re-render even if props change while it is being dragged. I'm not sure if it has something to do with the way...

Props for specific distance from the edges for scroll initiation in X and Y directions

I'm trying to create a tree of lists where I can reorder the list and also drag elements inside other elements and not only above and ender other elements. *...

I want to create a dragIcon next to each element and I want to be able to drag the element only when mouseDown on that icon in which I can't...

Hi! I'm using react-sortable-hoc with [antd table](https://ant.design/components/table/#components-table-demo-drag-sorting-handler), I need sortable limit more clear for user, so I customize some border like this 👇 A few later I found a weird...

when we drag an item to a new position it will fly back to original place if no onSortEnd function provided. this is reasonable and good. with onSortEnd function provided...