react-virtual-kanban
Advanced tools
Changelog
0.2.0
Added itemCacheKey prop to be able to specify a custom key for caching Item components. This comes handy if underlaying Item data changes (like a title) and needs to be re-rendered to reflect new height.
Added scrollToList
and scrollToAlignment
to set kanban scroll to desired list.
Fixed items not being refreshing when moving lists around.
Updated package.json and added some badges to the README.
Changelog
0.1.1
onDropRow
callback is now invoked only when dropping into a valid target.
Defended against null component received when hovering over an unmounted row.
Remove dragDropManager prop type warning.
Changelog
0.1.0
Added overscanListCount
and overscanRowCount
props to be able to configure the number of extra rendered items. You may use this if you want to tune up kanban performance.
Use id
as key value for SortableItem and SortableList components. This avoids wierd behaviour when changing component's internal state.
Changelog
0.0.12
Now Kanban
component gets DragDropManager
from context or creates a new one. This is useful for scenarios where react-dnd is used inside decorators.
Changelog
0.0.10
Fixed a bug that was causing out of index errors when moving an row between lists.
Now when moving a row to a list, the row will be placed at the beginning of that list (previously was at the end).