Skip to content

Releases: trendmicro-frontend/react-grid-system

v1.1.0

19 Jul 07:39
abfc399
Compare
Choose a tag to compare
  • Remove nib library and drop legacy browser support (PR #4, closes #3)
  • Drop support for Node.js 6 for the build process

v1.0.0

15 Mar 09:26
Compare
Choose a tag to compare

Breaking Changes

This release contains a breaking change that requires React v16.3 (or above) for using the official context API.

See below for other breaking changes:

Provider / Container

  • gutterWidth is 0 by default
  • layout is flexbox by default in favor of modern browsers

Container

  • Removed onResize callback

Row

  • Removed columns, gutterWidth, and layout props

Col

  • No changes

Visible / Hidden

  • Removed onResize callback

Responsive Utilities

Use ScreenClass to render content based on the screen class:

<ScreenClass>
  {screenClass => (
    <div>{screenClass}</div>
  )}
</ScreenClass>
<ScreenClass
  render={screenClass => <div>{screenClass}</div> }
/>

v0.2.0

10 Feb 04:02
9aaea32
Compare
Choose a tag to compare

Support for controlling the visibility with Visible and Hidden components (e61315f)

v0.1.0

08 Feb 11:39
Compare
Choose a tag to compare

first release