Skip to content

Releases: marcojakob/dart-dnd

v2.0.1

07 Oct 20:03
28d8e3f
Compare
Choose a tag to compare
  • Fix #36: Add null checks on _currentDrag.

v2.0.0

06 Mar 22:26
Compare
Choose a tag to compare
  • Migrate to null safety.

v1.4.3

10 Dec 20:06
Compare
Choose a tag to compare
  • Remove unnecessary new keyword.

v1.4.2

13 Feb 23:00
Compare
Choose a tag to compare
  • Fix #30: Cannot initialize Dropzone with List.
  • Follow more code style conventions.
  • Update dependencies.

v1.4.1

13 Feb 22:46
Compare
Choose a tag to compare
  • Fix #30: Cannot initialize Dropzone with List.
  • Follow more code style conventions.
  • Update dependencies.

v1.4.0

12 Oct 16:42
Compare
Choose a tag to compare
  • Add an option minDragStartDistance on Draggable to define the minimum distance in
    pixels that is needed for a drag to start (#26). Default is 4 pixels. This allows for clicks with tiny movement. The option clickSuppression has been marked as DEPRECATED as it had the same goal but a misleading name.

v1.3.0

15 Aug 07:17
Compare
Choose a tag to compare
  • Align dart version to support Dart 2 (#25).

v1.2.0

21 Jun 13:15
Compare
Choose a tag to compare
  • Support for creating a Draggable with List<Element> (in addition to ElementList and Element).

v1.1.0

21 Jun 10:30
Compare
Choose a tag to compare
  • Remove cursor files. Support for grab, -webkit-grab, grabbing, and -webkit-grabbing is good enough.

v1.0.0

13 Jun 21:51
Compare
Choose a tag to compare
  • Migrate to Dart 2.
  • Since Chrome 56 touch event listeners are treated as passive by default. This disables the possibility to call preventDefault on an element which we must do to tell the browser not to scroll while dragging. To fix this in Chrome we set the touch-action css property. With this Chrome will not scroll (none) or only scroll in one direction (pan-y or pan-x).