From cc63ad87828c66ea33f7ebfdf0a20ed922466a95 Mon Sep 17 00:00:00 2001 From: Daphne Date: Wed, 29 Nov 2017 16:54:02 +0100 Subject: [PATCH] Added disableInteractiveElementBlocking property which was missing See docs. Props of ``` disableInteractiveElementBlocking: An optional flag to opt out of blocking a drag from interactive elements. For more information refer to the section Interactive child elements within a Draggable ``` --- types/react-beautiful-dnd/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-beautiful-dnd/index.d.ts b/types/react-beautiful-dnd/index.d.ts index 785c91c889..7bca09f9c3 100644 --- a/types/react-beautiful-dnd/index.d.ts +++ b/types/react-beautiful-dnd/index.d.ts @@ -99,6 +99,7 @@ export interface DraggableProps { draggableId: DroppableId; type?: TypeId; isDragDisabled?: boolean; + disableInteractiveElementBlocking?: boolean; children(provided: DraggableProvided, snapshot: DraggableStateSnapshot): React.ReactElement; }