·
18 commits
to master
since this release
Minor Changes
-
3d10a6d: Fixes two scenarios found in #1789
- The static syntax of
"8px ".concat("8px")
which is auto-generated by certain Babel targets generatesprops.style
outputs when not necessary—we can simplify this to"8px 8px"
ourselves. - Mixing "indirect selectors" (eg.
~
,+
,|
,||
) that do not inherit CSS variables with dynamic styles which generates CSS variables andprops.style
will never work in Compiled, this now throws an error.
- The static syntax of