Skip to content

Releases: chakra-ui/panda

@pandacss/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare

@pandacss/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare

Patch Changes

  • d02fcf6: Fix duplicate token references with special characters resolving incorrectly in composite values

    When the same token reference containing special characters (e.g. {sizes.0.5}) appeared more than once in a
    composite value, only the first occurrence was resolved correctly. The second occurrence produced a malformed CSS
    variable name.

    This was caused by String.replace() only replacing the first match. Changed to String.replaceAll() in
    Token.expandReferences() and expandReferences() utility.

    Before (broken): --shadows-control-accent: 0 var(--sizes-0\.5) var(--sizes-0-5) rgba(92, 225, 113, 0.25)

    After (fixed): --shadows-control-accent: 0 var(--sizes-0\.5) var(--sizes-0\.5) rgba(92, 225, 113, 0.25)

@pandacss/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare

Patch Changes

@pandacss/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare

@pandacss/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare

Patch Changes

@pandacss/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare

@pandacss/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare

@pandacss/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare

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/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare

@pandacss/[email protected]

22 Mar 19:12
3ac138b

Choose a tag to compare