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]

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

  • 552dd4b: Fix issue where divideY and divideColor utilities, used together in a recipe, doesn't generate the
    correct css.
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

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',
    })
    

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

Minor Changes

  • 1e4da63: Add support resolving DEFAULT in textStyles and layerStyles, just like tokens.

    export default defineConfig({
      theme: {
        textStyles: {
          display: {
            // 'display'
            DEFAULT: {
              value: {
                fontSize: '1.5rem',
                fontWeight: 'bold',
              },
            },
            // 'display.large'
            large: {
              value: {
                fontSize: '2rem',
                fontWeight: 'bold',
              },
            },
          },
        },
      },
    })
    

    In case, you can use textStyles: display to reference the DEFAULT display value.

    css({ textStyle: 'display' })
    

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] 3 months ago

Minor Changes

  • c99cb75: Add a name mandatory key in Preset to make it easy to target one specifically
panda - @pandacss/[email protected]

Published by github-actions[bot] 3 months ago

Patch Changes