panda

🐼 Universal, Type-Safe, CSS-in-JS Framework for Product Teams ⚡️

MIT License

Downloads
5.1M
Stars
4.6K
Committers
134

Bot releases are visible (Hide)

panda - @pandacss/[email protected] Latest Release

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Patch Changes

panda - @pandacss/[email protected]

Published by github-actions[bot] 2 months ago

Minor Changes

  • dcc9053: Remove base from css or pattern style objects. The base keyword is only supported in recipes or
    conditional styles.

    Before

    hstack({
      // ❌ doesn't work
      base: {
        background: 'red.400',
        p: '11',
      },
      display: 'flex',
      flexDirection: 'column',
    })
    

    After

    hstack({
      // ✅ works
      background: 'red.400',
      p: '11',
      display: 'flex',
      flexDirection: 'column',
    })