Skip to content

Releases: SortableJS/react-sortablejs

v1.2.0

28 Nov 07:52
Compare
Choose a tag to compare

Force update sortablejs to 1.5.0-rc1 (or later versions)

v1.1.2

06 Nov 16:17
Compare
Choose a tag to compare

PR: Adds optional style prop to Sortable container element (#24)

v1.1.1

15 Oct 09:35
Compare
Choose a tag to compare

PR: Make in use of onMoveFn's return value (#22)

v1.1.0

18 Jul 15:39
Compare
Choose a tag to compare

PR: Pass event down to onChange (#20)

onChange={(order, sortable, evt) => {
    :    :    :
}}

v1.0.1

27 Jun 05:44
Compare
Choose a tag to compare
  • Update peerDependencies (f2e2468)
  • Destroy the sortable instance in componentWillUnmount (570b8fd)

v1.0.0

11 Apr 08:44
Compare
Choose a tag to compare

There is a major breaking change since v1.0, and the component interface and options are not compatible with v0.x.

Checkout Migration Guide for doing migration from earlier versions.

v0.7.0

13 Mar 03:07
Compare
Choose a tag to compare

This update contains bug fixes and enhancements, including:

  • Re-initialize sortable on componentDidUpdate #7 (by @kjanoudi)
  • Pass sortable instance to component as a prop #9 (by @kjanoudi)

v0.6.0

11 Mar 15:25
Compare
Choose a tag to compare
  • Add support for ES7 decorators: #5

    import React from 'react';
    import Sortable from 'react-sortablejs';
    
    @Sortable({ ref: 'list', model: 'items' })
    export default class SortableList extends React.Component {
    // ...
    }
  • Update README

v0.5.1

11 Mar 03:52
Compare
Choose a tag to compare
  • Remove lodash dependency to decrease the size
  • The package main should be pointed to the pure ES5 code (i.e. lib/index.js), not the webpack build (dist/react-sortable.js).

v0.5.0

10 Mar 09:59
Compare
Choose a tag to compare

First public release