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

v1.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Feb 19:41
· 143 commits to main since this release

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