Skip to content

Releases: react-grid-layout/react-draggable

0.8.5

08 Dec 01:08
Compare
Choose a tag to compare
  • Bugfix: isElementSVG no longer can be overwritten by getInitialState (#83)
  • Bugfix: Fix for element prefixes in JSDOM

0.8.4

08 Dec 01:08
Compare
Choose a tag to compare
  • Bugfix: SVG elements now properly use transform attribute instead of style. Thanks @martinRoss

0.8.3

08 Dec 01:08
Compare
Choose a tag to compare
  • Bugfix: Short-circuiting drag throws due to e.changedTouches check.

0.8.2

08 Dec 01:08
Compare
Choose a tag to compare
  • Handle scrolling while dragging. (#60)
  • Add multi-touch support. (#68)
  • IE fixes.
  • Documentation updates. (#77)

0.8.1

08 Dec 01:08
Compare
Choose a tag to compare
  • Add resetState() instance method for use by parents. See README ("State Problems?").

0.8.0

08 Dec 01:08
Compare
Choose a tag to compare
  • 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

08 Dec 01:08
Compare
Choose a tag to compare
  • 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.3

08 Dec 01:08
Compare
Choose a tag to compare

0.7.2

08 Dec 01:08
Compare
Choose a tag to compare
  • Added moveOnStartChange property. See README.

0.7.1

08 Dec 01:08
Compare
Choose a tag to compare
  • 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.