All Versions
91
Latest Version
Avg Release Cycle
64 days
Latest Release
1157 days ago
Changelog History
Page 5
Changelog History
Page 5
-
v0.13.8 Changes
October 13, 2016๐ Fixes:
- ๐ Fixed breakage introduced in
0.13.7
when items are added without a layout ordata-grid
property.- See #368.
- ๐ Fixed breakage introduced in
-
v0.13.7 Changes
October 03, 2016๐ Fixes:
- ๐ Fixed an error during layout sync if children was a keyed fragment or had nested arrays.
- ๐ Fixed
onLayoutChange
being called when layout didn't change. - ๐ Fixed some issues with input layout items being modified in-place rather than cloned.
- โ๏ธ Minor typos.
-
v0.13.6 Changes
September 26, 2016๐ Fixes:
- ๐ Fixed missing HTMLElement in
onResize*
callbacks.
- ๐ Fixed missing HTMLElement in
-
v0.13.5 Changes
September 09, 2016๐ Fixes:
- ๐ Fixed a few Flow typing errors in
WidthProvider
.
- ๐ Fixed a few Flow typing errors in
-
v0.13.4 Changes
September 09, 2016๐ Fixes:
- ๐ Fixed potential call to
ReactDOM.findDOMNode(this)
after unmount ofWidthProvider
. - ๐ Fixed an issue where layout items using
data-grid
could rearrange on mount depending on how they were ordered.- See #342 for reference.
- ๐ Fixed potential call to
-
v0.13.3 Changes
August 31, 2016๐ Fixes:
- Fixed
lodash.isequal
import, which was ruined by case-insensitive HFS+ shakes fist
- Fixed
-
v0.13.2 Changes
August 31, 2016๐ Fixes:
- Diffing children in order to regenerate the layout now diffs the
key
props and their order.- This will catch more changes, such as sorting, addition, and removal.
- ๐
Only pass
className
andstyle
to WidthProvider. Other props were not intended to be supported.- I'm aware this could be a breaking change if you were relying on this bad behavior. If so, please
use your own
WidthProvider
-style HOC.
- I'm aware this could be a breaking change if you were relying on this bad behavior. If so, please
use your own
- ๐
babel-plugin-transform-flow-comments
had limited support for defining types like transpiled classes.- This has been updated to instead copy source to
.js.flow
files, which preserves all type information.
- This has been updated to instead copy source to
- Diffing children in order to regenerate the layout now diffs the
-
v0.13.1 Changes
August 16, 2016๐ Fixes:
- ๐ Fix remaining
propTypes
warnings.
- ๐ Fix remaining
-
v0.13.0 Changes
August 03, 2016๐ Changed:
- Due to a change in React 15.2, passing the
_grid
property on DOM children generates an error. To compensate, we now error on the same and suggest usingdata-grid
instead. Simply change any use of_grid
todata-grid
, or add your properties to the layout.
๐ Fixes:
- ๐ Fix React 15.3 warning re: propTypes.
- Due to a change in React 15.2, passing the
-
v0.12.7 Changes
June 29, 2016- ๐ฑ Prevent extraenous rerenders in
<ResponsiveReactGridLayout>
by using deep equality on layouts.
- ๐ฑ Prevent extraenous rerenders in