Asseinfo React Kanban Versions Save

Yet another Kanban/Trello board lib for React.

v2.2.0

2 years ago

2.2.0 (2021-09-22)

Features

v2.1.0

3 years ago

2.1.0 (2020-10-23)

Features

v2.0.0

3 years ago

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

4 years ago

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

Bug Fixes

v1.1.1

4 years ago

1.1.1 (2020-05-03)

Bug Fixes

v2.0.0-beta.1

4 years ago

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

4 years ago

1.1.0 (2020-03-05)

Features

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

v1.0.2

4 years ago

1.0.2 (2020-02-25)

Bug Fixes

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

v1.0.1

4 years ago

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

4 years ago

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).