babel-plugin-styled-components
babel-plugin-styled-components copied to clipboard
Improve the debugging experience and add server-side rendering support to styled-components
Hi using the latest `babel-plugin-styled-components` `1.10.7` the `keyframes` string does not get minified in the output (like whitespaces removed n stuff). ```jsx import React, { useCallback, useState } from "react";...
Upgrading this library to 1.12.1 or above causes a massive slowdown of our test runs. Here is how long our tests run with different versions of this library: - 1.12.0:...
I'm using Next.js and when trying 1.13.2 I get the following webpack-error for a component: `TypeError: Form.tsx: Cannot read property 'property' of undefined` The only css in the component are...
When using with CRA, its possible to see name of component inside css classes, but I cannot figure out how to make a nice developing/debugging experience when using with Vite.js....
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
The whitespace in `& :hover` has a semantic value - this is not equal to `&:hover` and thus this whitespace should not be removed when minifying quasis. The problem is...
I am creating a styled-system using styled-components. Everything during the development works correctly, after using Rollup to generate my reusable library, CSS prop no longer works. ``` import styled from...
Would be good to have class names based on the full object path for styled components declared inside objects. i.e., ```tsx // Product.tsx const Wishlist = { Wrapper: styled` `...
I have been using the `css` prop to style my components since [nextjs](https://github.com/vercel/next.js)@10.2.0 (also tested at @10.2.3, the latest version before 11.0.0). It's been working wonderfully. When I upgrade nextjs...