Fixes
Droppable
clipping issue for multiple Droppable
s in the same container: #269. Thanks @jaredcrowe for finding the bug
- Fixing drag start lock when trying to drag a returning
Draggable
: #271. Thanks @Li0liQ for finding it and helping walk me through it
- Disabling partially implemented experimental behaviour: #264. Cheers @mariusbrn for finding this
Improvements
- If you are using ClojureScript you can now consume
react-beautiful-dnd
directly through https://cljsjs.github.io/ #142. Huge thanks to @Frozenlock!
- Correcting flowtype urls in docs #267. Thanks @mrowles
- Now calling out the release notes at the top of the
README.md
#263
- Fixing basic example in docs. #263
- More tests for connected components #258
Changes
type DraggingStyle = {|
pointerEvents: 'none',
position: 'fixed',
width: number,
height: number,
boxSizing: 'border-box',
+ pointerEvents: 'none',
top: number,
left: number,
margin: 0,
transition: 'none',
transform: ?string,
zIndex: ZIndex,
|}