You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've found in my use-case scenarios that it would be nice to pass a boolean prop to the <Draggable/> that could disable it. This is especially useful in cases where a child of the Draggable also needs to be able to handle click or tap events.
The text was updated successfully, but these errors were encountered:
I'm having a similar case with nested draggables/droppables. My workaround is to inject event.stopPropagation() into onMouseDown/onTouchStart callbacks of <Draggable /> and into onMouseEnter/onMouseLeave callbacks of <Droppable />.
I've found in my use-case scenarios that it would be nice to pass a boolean prop to the
<Draggable/>
that could disable it. This is especially useful in cases where a child of theDraggable
also needs to be able to handle click or tap events.The text was updated successfully, but these errors were encountered: