v2.0.0
- ✨ added the
Bleedcomponent - ✨ added the
Insetcomponent - ♻️
Column: removed theheightprop (as it has been added to theColumnscomponent) - 🔥
FillView: removed theflexprop - ♻️
FillView: renamedresettounset - ♻️
Inline:alignis nowalignX - ✨
Inline: added thealignYprop - ✨
Tiles: added theemptyprop - 🐛 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>