v0.7.1
Pre-release
Pre-release
A quick patch this time since we've changed the API around component styling in a fairly invasive way, so best to get it done quickly.
- Component styling now uses a DSL-like syntax instead of an assignment syntax. See 732b5b2 for more details.
- Cleaned up web modifier behavior around
marginandpadding- Previously, in an attempt to emulate Jetpack Compose, we swapped these two concepts around (because, unfortunately, what Jetpack Compose introduces as
paddingismarginin CSS). However, due to confusion betweenModifier.padding(10.px)andstyleModifier { padding(10.px) }doing different things, we decided to make the function always act more consistently with the web.
- Previously, in an attempt to emulate Jetpack Compose, we swapped these two concepts around (because, unfortunately, what Jetpack Compose introduces as