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

latest releases: @pandacss/token-dictionary@0.51.1, @pandacss/types@0.51.1, @pandacss/studio@0.51.1...
18 months ago

Minor Changes

  • 60a7784: Refactor transition utility to improve DX of adding transition. Transitions will now add a default
    transition property, timing function and duration. This allows you to add transitions with a single property.

    <div className={css({ transition: 'background' })}>Content</div>

    This will generate the following css:

    .transition_background {
      transition-property: background, background-color;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }

Patch Changes

  • d9eeba6: Fix issue where zIndex tokens are not connected to zIndex utility
  • Updated dependencies [a9c189b]
    • @pandacss/types@0.7.0

Don't miss a new panda release

NewReleases is sending notifications on new releases.