react-grid-layout v0.16.6 Release Notes

Release Date: 2018-03-08 // about 6 years ago
    • 🛠 Fixed collision issue where items below could rearrange on a move.
      • The root cause was "teleportation", or practically the same bug that leads to Pac-Man going through ghosts now and then. If a large element moves up by a few grid units, the space it vacates can suddenly become occupiable by an element below it. Rather than the collision happening properly, they exchange spaces atomically. The fix is to move items down one grid unit at a time to ensure this rearrangement does not happen.
      • Thanks @torkelo for your hard work on this for Grafana 5, which I very unfortunately managed to break when refactoring for 0.16.1.
      • Ref: #650, #739
    • ➕ Added a "Toolbox" demo (thanks @jhob)