@atlaskit/pragmatic-drag-and-drop-react-beautiful-dnd-migration
Version:
An optional Pragmatic drag and drop package that enables rapid migration from react-beautiful-dnd to Pragmatic drag and drop
11 lines • 327 B
JavaScript
/**
* Cancels the active drag, if there is one.
*
* This only affects pdnd's tracking, not the browser's dragging.
*
* This means if you drag out of the browser and back in,
* an external adapter could pick it up as a new drag.
*/
export function cancelPointerDrag() {
window.dispatchEvent(new DragEvent('dragend'));
}