When working with conditional element that are removed before drag, the draggged element should stay with the mouse and the changes should be calculated based on the mouse position.

Selected Draggable element stays with the mouse.
Draggable element moves up
Have some content in the draggable that does not show on being dragged
React are you using?16.12.0
react-beautiful-dnd are you running?^13.0.0
Chrome v83.0
https://codesandbox.io/s/naughty-currying-dp0fp
PS: The GIF is different from the demo because I have modified the top of the dragging element based on the mouse position. The Sandbox demo shows the behaviour out of the box
as stated in the docs. Its forbidden to update the dimensions after a drag ocures. So you will not have to remove on drag some components.
as stated in the docs. Its forbidden to update the dimensions after a drag ocures. So you will not have to remove on drag some components.
As shown in the demo, I have done it on onBeforeDragCapture. The data is removed even before the drag starts. Anything we can do about this??
Ohh, to be fair I also tried to do it in onBeforeDragCapture (hide some droppable), but that did not work. Its either we donnot understand it, where we miss something.
I have a similar issue:
In my case I a using react-virtualized. and everything is inside an angular project.
