Releases: react-grid-layout/react-draggable
Releases · react-grid-layout/react-draggable
0.8.5
- Bugfix: isElementSVG no longer can be overwritten by getInitialState (#83)
- Bugfix: Fix for element prefixes in JSDOM
0.8.4
- Bugfix: SVG elements now properly use
transform
attribute instead of style
. Thanks @martinRoss
0.8.3
- Bugfix: Short-circuiting drag throws due to
e.changedTouches
check.
0.8.2
- Handle scrolling while dragging. (#60)
- Add multi-touch support. (#68)
- IE fixes.
- Documentation updates. (#77)
0.8.1
- Add
resetState()
instance method for use by parents. See README ("State Problems?").
0.8.0
- Touch/mouse events rework. Fixes #51, #37, and #43, as well as IE11 support.
- Moved mousemove/mouseup and touch event handlers to document from window. Fixes IE9/10 support.
IE8 is still not supported, as it is not supported by React.
0.7.4
- Fix a bug where a quick drag out of bounds to
0,0
would cause the element to remain in an inaccurate position,
because the translation was removed from the CSS. See #55.
0.7.2
- Added
moveOnStartChange
property. See README.
0.7.1
- The
start
param is back. Pass {x: Number, y: Number}
to kickoff the CSS transform. Useful in certain
cases for simpler callback math (so you don't have to know its existing relative position and add it to
the dragged position). Fixes #52.