- Support Kotlin 1.8.10 via JetBrains Compose compiler 1.4.2.
- New:
renderMosaic
function returns a single string of the composition for tools that require only static output. - New: Expose a custom
Layout
composable similar to Compose UI. This is just the beginning of a larger change to expose more powerful primitives. - Implicit root node is no longer a
Row
. Multiple children at the root will now draw on top of each other. Choose aRow
orColumn
as the root composable yourself. - Each
Static
content is no longer wrapped in aRow
. Multiple children in a singleStatic
composable will draw on top of each other. Choose aRow
orColumn
if you have multiple items. MultipleStatic
composables will still render inColumn
-like behavior