Patch Changes
-
#1558
9b1bfd0Thanks @andjsrk! -style: Fixed a bug where nested arrays of classnames could cause missing or malformed CSS during style composition in certain situations.For example, the following style composition would not generate CSS for the
backgroundColor: 'orange'style, and would also generate malformed CSS:const styleWithNestedComposition = style([ [style1, style2], { backgroundColor: 'orange' }, [style3] ]);