Skip to content
This repository has been archived by the owner on Oct 8, 2022. It is now read-only.

Releases: asseinfo/react-kanban

v2.2.0

22 Sep 19:45
Compare
Choose a tag to compare

2.2.0 (2021-09-22)

Features

v2.1.0

23 Oct 13:49
47d5e99
Compare
Choose a tag to compare

2.1.0 (2020-10-23)

Features

v2.0.0

04 Jun 01:30
f9b4717
Compare
Choose a tag to compare

2.0.0 (2020-06-04)

Features

BREAKING CHANGES

  • You need to import the default styles or provide your own: import '@lourenci/react-kanban/dist/styles.css'.

v2.0.0-beta.2

03 May 12:19
Compare
Choose a tag to compare
v2.0.0-beta.2 Pre-release
Pre-release

2.0.0-beta.2 (2020-05-03)

Bug Fixes

v1.1.1

03 May 12:07
Compare
Choose a tag to compare

1.1.1 (2020-05-03)

Bug Fixes

v2.0.0-beta.1

11 Mar 22:58
Compare
Choose a tag to compare
v2.0.0-beta.1 Pre-release
Pre-release

2.0.0-beta.1 (2020-03-11)

Features

BREAKING CHANGES

  • You need to import the default styles or provide your own: import '@lourenci/react-kanban/dist/styles.css'.

v1.1.0

05 Mar 00:15
d3b0328
Compare
Choose a tag to compare

1.1.0 (2020-03-05)

Features

  • Add capability to add a new card in an uncontrolled board (#209) (d3b0328)

v1.0.2

25 Feb 13:20
70c1af5
Compare
Choose a tag to compare

1.0.2 (2020-02-25)

Bug Fixes

  • deps: update dependency react-beautiful-dnd to v13 (#270) (ea4b449)

v1.0.1

13 Feb 20:15
a119d3e
Compare
Choose a tag to compare

1.0.1 (2020-02-13)

Bug Fixes

  • Call onCardDragEnd and onColumnDragEnd only when the movement is to another position (#261) (a119d3e)

v1.0.0

09 Feb 19:41
Compare
Choose a tag to compare

1.0.0 (2020-02-09)

Bug Fixes

  • Don't keep the new lane title when the board is controlled (#249) (442a9de)

Code Refactoring

Features

  • Pass the moved lane on the onLaneDragEnd callback (#240) (c590657)

BREAKING CHANGES

  • The name lane was renamed to column.

E.g.: onLaneRename turns into onColumnRename.

  • The exported helper renameLane(board, lane, newTitle) to help you to deal with a controlled board has changed to changeLane(board, lane, { title: 'New title' }).
  • The onLaneDragEnd callback signature has changed from onLaneDragEnd(board, source, destination) to onLaneDragEnd(board, lane, source, destination).