Added disableInteractiveElementBlocking property which was missing

See docs.
Props of <Draggable>
```
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
```
This commit is contained in:
Daphne
2017-11-29 16:54:02 +01:00
committed by GitHub
parent 779a35bfdb
commit cc63ad8782

View File

@@ -99,6 +99,7 @@ export interface DraggableProps {
draggableId: DroppableId;
type?: TypeId;
isDragDisabled?: boolean;
disableInteractiveElementBlocking?: boolean;
children(provided: DraggableProvided, snapshot: DraggableStateSnapshot): React.ReactElement<any>;
}