Skip to content

Commit f5a092c

Browse files
committed
release 0.16.6
1 parent 0197eb9 commit f5a092c

File tree

4 files changed

+43
-25
lines changed

4 files changed

+43
-25
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
0.16.6 (Mar 8, 2018)
4+
----
5+
6+
- Fixed collision issue where items below could rearrange on a move.
7+
- The root cause was "teleportation", or practically the same bug that leads to Pac-Man going through
8+
ghosts now and then. If a large element moves up by a few grid units, the space it vacates can suddenly
9+
become occupiable by an element below it. Rather than the collision happening properly, they exchange spaces
10+
atomically. The fix is to move items down one grid unit at a time to ensure
11+
this rearrangement does not happen.
12+
- Thanks @torkelo for your hard work on this for Grafana 5, which I very unfortunately managed to break
13+
when refactoring for 0.16.1.
14+
- Ref: #650, #739
15+
- Added a "Toolbox" demo (thanks @jhob)
16+
317
0.16.5 (Feb 26, 2018)
418
----
519

dist/react-grid-layout.min.js

Lines changed: 27 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-grid-layout.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-grid-layout",
3-
"version": "0.16.5",
3+
"version": "0.16.6",
44
"description": "A draggable and resizable grid layout with responsive breakpoints, for React.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)