All Versions
91
Latest Version
Avg Release Cycle
64 days
Latest Release
1157 days ago

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 or data-grid property.
  • 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.
  • v0.13.5 Changes

    September 09, 2016
    ๐Ÿ›  Fixes:
    • ๐Ÿ›  Fixed a few Flow typing errors in WidthProvider.
  • v0.13.4 Changes

    September 09, 2016
    ๐Ÿ›  Fixes:
    • ๐Ÿ›  Fixed potential call to ReactDOM.findDOMNode(this) after unmount of WidthProvider.
    • ๐Ÿ›  Fixed an issue where layout items using data-grid could rearrange on mount depending on how they were ordered.
      • See #342 for reference.
  • v0.13.3 Changes

    August 31, 2016
    ๐Ÿ›  Fixes:
    • Fixed lodash.isequal import, which was ruined by case-insensitive HFS+ shakes fist
  • 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 and style 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.
    • ๐Ÿ”Œ 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.
  • v0.13.1 Changes

    August 16, 2016
    ๐Ÿ›  Fixes:
    • ๐Ÿ›  Fix remaining propTypes warnings.
  • 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 using data-grid instead. Simply change any use of _grid to data-grid, or add your properties to the layout.
    ๐Ÿ›  Fixes:
    • ๐Ÿ›  Fix React 15.3 warning re: propTypes.
  • v0.12.7 Changes

    June 29, 2016
    • ๐Ÿ“ฑ Prevent extraenous rerenders in <ResponsiveReactGridLayout> by using deep equality on layouts.