Releases: marcojakob/dart-dnd
Releases · marcojakob/dart-dnd
v0.4.0
v0.3.6
v0.3.5
v0.3.4
v0.3.3
- Allow a configurable clickSuppression distance (#13). We found that the click
suppression was a little too aggressive for users with less mousing accuracy.
They would attempt to click and trigger a small drag. Which then suppressed the
click event and prevented the action they intended to complete.
v0.3.1
v0.3.0
- BREAKING CHANGE: Refactoring the
AvatarHandler
. Only if you've
implemented a customAvatarHandler
you might need to do some changes:setPointerEventsNone
andresetPointerEvents
were removed and don't
need to be called any more. Pointer event styles are handled automatically.
- Fix
AvatarHandler
margin caching: TheAvatarHandler
only cached the
margins once for everyDraggable
. This caused problems when margins of
elements in the sameDraggable
had different margins or the margins were
changed. Now the margins are reset after every drag.
v0.2.1
v0.2.0
v0.1.4
- Add a sortable example.
- Change comments according to new Dart Style Guide rule
(///
instead of/** */
). - Move event dispatching calls from EventManager to Draggable (refactoring).