glitz
glitz copied to clipboard
Lightweight CSS-in-JS library with high performance written in TypeScript
**Code:** ```typescript This is an error const ErrorMessage= styled.div({ ..... }); ``` **Problem:** Within AddToCartButton we have another styled component: `const Base = styled.div({ display: 'inline-block', fontSize: 0, marginLeft: small...
Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1. Commits 2449650 Update mocha 560b2d8 Don't use regex to trim whitespace b1bdb92 Remove linting package zoo c20dc7e Cache 308 See full diff in compare...
Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4. Release notes Sourced from loader-utils's releases. v2.0.4 2.0.4 (2022-11-11) Bug Fixes ReDoS problem (#225) (ac09944) v2.0.3 2.0.3 (2022-10-20) Bug Fixes security: prototype pollution exploit...
Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2. Release notes Sourced from json5's releases. v1.0.2 Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a...
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...
Bumps [parse-url](https://github.com/IonicaBizau/parse-url) from 7.0.2 to 8.1.0. Release notes Sourced from parse-url's releases. 8.1.0 [email protected] fix: cjs to load normalize-url /cc #58 fix: Include index.d.ts in package.json /cc #63 feat: support...
## Problem - Using glitz in an npm package, where the code is transpiled before it's published, prevents the use of the static transformer. ## Predicates - Each package can...
```tsx const Button = styled.button({}); Button.defaultProps = { type: 'button' }; const AnotherButton = styled(Button, {}); //
# React 19 support This PR removes the use of forwardRef, since it's no longer needed in react 19. Ref is now only considered a prop like any other. Also...