Releases: react-grid-layout/react-draggable
Releases · react-grid-layout/react-draggable
2.2.3
- Bugfix: Fix an issue with the entire window scrolling on a drag on iDevices. Thanks @JaneCoder. See #183
2.2.2
- Bugfix: Fix references to global when grabbing
SVGElement
, see #162
- Bugfix: Get
ownerDocument
before onStop
, fixes #198
2.2.1
- Bugfix: Fix
getComputedStyle
error: see #186, #190
2.2.0
- Addition:
offsetParent
property for an arbitrary ancestor for offset calculations.
- Fixes e.g. dragging with a floating
offsetParent
.
- Enhancement: Make this library iframe-aware.
- Bugfix: Lint/Test Fixes for new Flow & React versions
2.1.2
- Bugfix: Fix
return false
to cancel onDrag
breaking on both old and new browsers due to missing typeArg
and/or
unsupported MouseEventConstructor
. Fixes #164.
2.1.1
- Bugfix:
<DraggableCore>
wasn't calling back with the DOM node.
- Internal: Rework test suite to use power-assert.
2.1.0
- Fix improperly missed
handle
or cancel
selectors if the event originates from a child of the handle or cancel.
- Fixes a longstanding issue, #88
- This was pushed to a minor release as there may be edge cases (perhaps workarounds) where this changes behavior.
2.0.2
- Fix
cannot access clientX of undefined
on some touch-enabled platforms.
- Fixed a bug with multi-finger multitouch if > 1 finger triggered an event at the same time.
2.0.0
- This is a breaking change. See the changes below in the beta releases.
- Note the changes to event callbacks and
position
/ defaultPosition
.
- Changes from 2.0.0-beta3:
- Small bugfixes for Flow 0.24 compatibility.
- Don't assume
global.SVGElement
. Fixes JSDOM & #123.