github callstack/linaria @linaria/tags@4.5.1

latest releases: @linaria/core@6.2.0, @linaria/react@6.2.0, linaria@6.1.1...
14 months ago

Patch Changes

  • ceca161: Enable optimisation from #1276 for complex expressions such as styled(Component as unknow) or styled(connect(Component)).

  • 1325830: Variables in props-based interpolation functions are no longer required for the evaluation stage.
    Here's an example:

    import { getColor } from "very-big-library";
    
    export const Box = styled.div\`
      color: ${props => getColor(props.kind)};
    \`;
    

    In versions prior to and including 4.5.0, the evaluator would attempt to import getColor from very-big-library, despite it having no relevance to style generation. However, in versions greater than 4.5.0, very-big-library will be ignored.

Don't miss a new linaria release

NewReleases is sending notifications on new releases.