Features
- Adds
grid-auto-rows
, grid-auto-columns
and grid-auto-flow
prop aliases (#130)
Bug fixes
- Fixes the package's built containing import aliases, which resulted into broken TypeScript support (#141)
- Fixes nodes mismatch during
ReactDOM.hydrate
call upon a conditional portion of a tree when rendering with Only
component (#117)
- Fixes the issue that resulted into custom CSS properties being overridden by
grid-area
property when assigning on the generated area component. This broke the Iterative areas recipe.
<Composition areas="singleArea">
{({ SingleArea }) => data.map((entry) => (
<SingleArea key={entry.id} col="auto">{entry.title}</SingleArea>
))}
</Composition>