react-draggable
react-draggable copied to clipboard
React draggable component
Is there a way to set delay for touch events, so that dragging started after N ms of touching (to differentiate from tapping and scrolling)?
 These 2 draggable elements have props bounds="parent". I expected they would bind in the silver border, but they aren't. I need some help. Here's my code. index.js ``` import...
### Problem Report I've tried putting two draggable elements inside each other and bounds them to the mainContainer but unfortunately, it didn't work as expected and I'd like to know...
I get an error on touch events (however, the app doesn't break). This problem can be solved by using: ``` if (e.type === 'touchstart' && e.cancelable) e.preventDefault(); ``` https://alexandrerosseto.medium.com/solving-issue-intervention-ignored-attempt-to-cancel-a-touchmove-event-with-cancelable-false-62014ef15742
If I wrap a Modal object from react-bootstrap within a Draggable tag, and if the Modal is too large for the browser window so that a vertical scroll bar appears...
Error reported after upgrading from v4.4.4 to v4.4.5 
fix: not mounted on DragStart.
could you please release version with release tag?
I want to make the draggable floating window responsive on window/ tab resize. if I move my draggable floating window to the top-left or bottom-left position and resize the tab/window...
Warning: findDOMNode is deprecated in StrictMode. findDOMNode was passed an instance of DraggableCore which is inside StrictMode. Instead, add a ref directly to the element you want to reference. Learn...