2.5.0
Improvements
Droppable
s now accept an ignoreContainerClipping
prop. From the docs:
When a
Droppable
is inside a scrollable container its area is constrained so that you can only drop on the part of theDroppable
that you can see. Setting this prop opts out of this behaviour, allowing you to drop anywhere on aDroppable
even if it's visually hidden by a scrollable parent. The default behaviour is suitable for most cases so odds are you'll never need to use this prop, but it can be useful if you've got very longDraggable
s inside a short scroll container. Keep in mind that it might cause some unexpected behaviour if you have multipleDroppable
s inside scroll containers on the same page.
This caused the minor version bump ✨
Fixes
- A bunch of docs updates. Thanks @hungle88!