Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 3.49 KB

CHANGELOG.md

File metadata and controls

54 lines (39 loc) · 3.49 KB

Changelog

0.4.6

Fix: This release fixes a bug in Firefox caused by active anchor tags preventing mousemove events from being fired #118

0.4.5

Fix: getHelperDimensions height was not being used (Thanks @SMenigat!)

0.4.4

Tweak: cherry-picking lodash methods instead of importing the entire bundle (slipped by in a PR, thanks for pointing this out @arackaf!)

0.4.3

Fixes an edge-case bug in Firefox where window.getComputedStyle() returns null inside an iframe with display: none #106. Thanks @funnel-mark!

0.4.2

Fixes an issue when attempting to sort items while rapidly moving the mouse. By setting an immediate timer, we move the cancel event to the tail of the timer queue, and ensure that it is fired after the pressTimer #80. Thanks @v0lkan!

0.4.0

– Fix a timing issue in Chrome caused by setTimeout #71 – Private props are no longer passed down to the wrapped component #98

0.3.0

Added grid support for elements of equal widths / heights #4 #86. Huge shout-out to @richmeij for making this happen!

0.2.0

Add a getHelperDimensions prop to control SortableHelper size #83. Thanks @nervetattoo!

0.1.1

Added touchCancel listener to properly handle canceled touches #73

0.1.0

  • Force box-sizing: border-box on sortable helper #67
  • Support changing an item's collection prop on the fly #66

0.0.11

Utilize babel-plugin-transform-runtime to utilize babelHelpers without them being required in application code #45

0.0.10

The arrayMove helper no longer mutates the array, it now returns a new array #61

0.0.9

Server-side rendering bugfix: safeguard against document being undefined #59

0.0.8

  • Added distance prop (#35)
  • Added a shouldCancelStart (#47, #36, #41) prop to programatically cancel sorting before it begins.
  • Prevent right click from causing sort start (#46)

0.0.7

Fixes server-side rendering (window undefined) (#39)

0.0.6

  • Added support for a custom container (#37)
  • Fix changing disable property while receiving props (#34)