Asseinfo React Kanban Versions Save

Yet another Kanban/Trello board lib for React.

v0.17.0

4 years ago
  • The lib is almost 50% smaller than the previous version (from 75.7kb gzipped to 38.3kb gzipped)

Breaking changes

  • The lanes and the cards don't have a data-testid attribute anymore. If you rely on those to query the node in your specs, you should change to query by the page's content.

v0.16.1

4 years ago
  • Fix an issue where you couldn't move a card from/to a lane whose id was not a number.

v0.16.0

4 years ago
  • Pass the moved card on the onCardDragEnd callback

Breaking changes

  • The onCardDragEnd callback signature has changed from onCardDragEnd(board, source, destination) to onCardDragEnd(board, card, source, destination).

v0.15.0

4 years ago
  • Allow the board to be controlled

Breaking changes

  • The prop children was renamed to initialBoard. children must be used for a controlled board.
  • The onLaneNew now is used to pass the updated board with the new lane. onNewLaneConfirm was created to pass a draft lane with the title. You just need to rename onLaneNew to onNewLaneConfirm.
  • Now onCardDragEnd callback receives (updatedBoard, { fromPosition: ${index}, fromLaneId: ${laneId} }, { toPosition: ${index}, toLaneId: ${laneId} }).
  • Now onLaneDragEnd callback receives (updatedBoard, { fromPosition: ${index} }, { toPosition: ${index} }).

v0.14.0

4 years ago
  • Allow to add a card in lane through the renderLaneHeader
  • Fix multiline text in card

v0.13.0

4 years ago
  • Allow to confirm the lane renaming through the ENTER key
  • Fix an issue that the cursor pointer over a lane title was being shown even when it was not allowed to rename the lane.

Breaking changes

  • React dependency is now ^16.8.5

v0.12.0

4 years ago

Breaking changes

  • onNewLane has been renamed to onLaneNew

v0.11.3

4 years ago
  • Publish only the lib on NPM

v0.11.2

4 years ago
  • Fix a glitch on lanes when dragging a card

v0.11.1

4 years ago
  • Do not transpile async functions to regeneratorRuntime.