@pandacss/error
Advanced tools
Changelog
[0.18.3] - 2023-11-15
forceConsistentTypeExtension
where the composition.d.mts
had an incorrect type import@ark-ui/react
version could interfere with studio versionChangelog
[0.18.2] - 2023-11-10
columns
doesn't not work as expected.Changelog
[0.18.1] - 2023-11-09
hideBelow
breakpoints are inclusive of the specified breakpointsgrid
pattern from @pandacss/preset-base (included by default), setting a minChildWidth wasn't
interpreted as a token valueBefore:
<div className={grid({ minChildWidth: '80px', gap: 8 })} />
// ✅ grid-template-columns: repeat(auto-fit, minmax(80px, 1fr))
<div className={grid({ minChildWidth: '20', gap: 8 })} />
// ❌ grid-template-columns: repeat(auto-fit, minmax(20, 1fr))
// ^^^
After:
<div className={grid({ minChildWidth: '80px', gap: 8 })} />
// ✅ grid-template-columns: repeat(auto-fit, minmax(80px, 1fr))
<div className={grid({ minChildWidth: '20', gap: 8 })} />
// ✅ grid-template-columns: repeat(auto-fit, minmax(var(--sizes-20, 20), 1fr))
// ^^^^^^^^^^^^^^^^^^^
css({ hideBelow: 'lg' })
// => @media screen and (max-width: 63.9975em) { background: red; }
hideBelow
and hideFrom
utilitiescss({ hideFrom: '800px' })
// => @media screen and (min-width: 800px) { background: red; }
_required
condition target [data-required]
and [aria-required=true]
attributes