github chakra-ui/panda @pandacss/studio@0.18.1

latest releases: @pandacss/types@1.3.0, @pandacss/token-dictionary@1.3.0, @pandacss/extractor@1.3.0...
22 months ago

Patch Changes

  • aac7b37: Fix an issue with the grid pattern from @pandacss/preset-base (included by default), setting a
    minChildWidth wasn't interpreted as a token value

    Before:

    <div className={grid({ minChildWidth: '80px', gap: 8 })} />
    // ✅ grid-template-columns: repeat(auto-fit, minmax(80px, 1fr))
    
    <div className={grid({ minChildWidth: '20', gap: 8 })} />
    // ❌ grid-template-columns: repeat(auto-fit, minmax(20, 1fr))
    //                                                  ^^^

    After:

    <div className={grid({ minChildWidth: '80px', gap: 8 })} />
    // ✅ grid-template-columns: repeat(auto-fit, minmax(80px, 1fr))
    
    <div className={grid({ minChildWidth: '20', gap: 8 })} />
    // ✅ grid-template-columns: repeat(auto-fit, minmax(var(--sizes-20, 20), 1fr))
    //                                                  ^^^^^^^^^^^^^^^^^^^
  • Updated dependencies [566fd28]

  • Updated dependencies [43bfa51]

    • @pandacss/token-dictionary@0.18.1
    • @pandacss/config@0.18.1
    • @pandacss/node@0.18.1
    • @pandacss/logger@0.18.1
    • @pandacss/shared@0.18.1
    • @pandacss/types@0.18.1

Don't miss a new panda release

NewReleases is sending notifications on new releases.