Skip to content

v2.0.0

Choose a tag to compare

@mobily mobily released this 28 Feb 15:59
  • ✨ added the Bleed component
  • ✨ added the Inset component
  • ♻️ Column: removed the height prop (as it has been added to the Columns component)
  • 🔥 FillView: removed the flex prop
  • ♻️ FillView: renamed reset to unset
  • ♻️ Inline: align is now alignX
  • Inline: added the alignY prop
  • Tiles: added the empty prop
  • 🐛 minor tweaks and fixes

You can also use Columns/Rows with no Column/Row in the markup tree, for instance, the following:

<Columns>
  <Placeholder />
  <Rows>
    <Placeholder />
    <Placeholder />
  </Rows>
</Columns>

equals to:

<Columns>
  <Column>
    <Placeholder />
  </Column>
  <Column>
    <Rows>
      <Row>
        <Placeholder />
      </Row>
      <Row>
        <Placeholder />
      </Row>
    </Rows>
  </Column>
</Columns>