github chakra-ui/panda @pandacss/generator@0.19.0

latest releases: @pandacss/preset-base@0.53.3, @pandacss/types@0.53.3, @pandacss/token-dictionary@0.53.3...
16 months ago

Patch Changes

  • 6183104: Fix issue where typescript error is shown in recipes when exactOptionalPropertyTypes is set.

    To learn more about this issue, see this issue

  • 92a7fbe: Fix issue in preflight where monospace fallback pointed to the wrong variable

  • 89f8692: Fix issue where css variables were not supported in layer styles and text styles types.

  • 402afbe: Improves the config.strictTokens type-safety by allowing CSS predefined values (like 'flex' or 'block' for
    the property 'display') and throwing when using anything else than those, if no theme tokens was found on that
    property.

    Before:

    // config.strictTokens = true
    css({ display: 'flex' }) // OK, didn't throw
    css({ display: 'block' }) // OK, didn't throw
    css({ display: 'abc' }) // ❌ didn't throw even though 'abc' is not a valid value for 'display'

    Now:

    // config.strictTokens = true
    css({ display: 'flex' }) // OK, didn't throw
    css({ display: 'block' }) // OK, didn't throw
    css({ display: 'abc' }) // ✅ will throw since 'abc' is not a valid value for 'display'
  • Updated dependencies [6183104]

  • Updated dependencies [89f8692]

  • Updated dependencies [9f5711f]

    • @pandacss/types@0.19.0
    • @pandacss/core@0.19.0
    • @pandacss/token-dictionary@0.19.0
    • @pandacss/is-valid-prop@0.19.0
    • @pandacss/logger@0.19.0
    • @pandacss/shared@0.19.0

Don't miss a new panda release

NewReleases is sending notifications on new releases.