github chakra-ui/panda @pandacss/preset-base@1.9.1

latest releases: @pandacss/generator@1.9.1, @pandacss/parser@1.9.1, @pandacss/extractor@1.9.1...
4 hours ago

Patch Changes

  • 028e755: Fix Spacer pattern not resolving spacing tokens for the size prop.

    Previously, <Spacer size="5" /> would generate invalid CSS (flex: 0 0 5) instead of resolving the spacing token.
    Now it correctly outputs flex: 0 0 var(--spacing-5, 5).

    Before (broken): flex: 0 0 5 — raw value, not a valid CSS length After (fixed):
    flex: 0 0 var(--spacing-5, 5) — resolved spacing token

    Closes #3490

    • @pandacss/types@1.9.1

Don't miss a new panda release

NewReleases is sending notifications on new releases.