@pandacss/error
Advanced tools
Changelog
[0.22.1] - 2023-12-15
slotRecipes
typings, the recently added recipe.staticCss
added
to config.recipes
weren't added to config.slotRecipes
config.strictTokens
when using the [xxx]
escape-hatch syntax with property-based
conditionalscss({
bg: '[#3B00B9]', // ✅ was okay
_dark: {
// ✅ was okay
color: '[#3B00B9]',
},
// ❌ Not okay, will be fixed in this patch
color: {
_dark: '[#3B00B9]',
},
})
Fix a regression with the @pandacss/astro integration where the automatically provided base.css
would be ignored by
the @pandacss/postcss plugin
Fix a CSS generation issue with config.strictTokens
when using the [xxx]
escape-hatch syntax with !
or
!important
css({
borderWidth: '[2px!]',
width: '[2px !important]',
})