Releases: chakra-ui/panda
Releases · chakra-ui/panda
@pandacss/types@0.54.0
@pandacss/types@0.54.0
@pandacss/token-dictionary@0.54.0
@pandacss/studio@0.54.0
Patch Changes
- cd9361e: Fix issue where text (or layer) styles that use conditions don't render correctly.
- Updated dependencies [efa060d]
- Updated dependencies [cd9361e]
- Updated dependencies [d2aede5]
- Updated dependencies [fdf5142]
- @pandacss/shared@0.54.0
- @pandacss/astro-plugin-studio@0.54.0
- @pandacss/token-dictionary@0.54.0
- @pandacss/config@0.54.0
- @pandacss/types@0.54.0
- @pandacss/logger@0.54.0
@pandacss/shared@0.54.0
Patch Changes
-
efa060d: Improve algorithm for deterministic property order.
- Longhand (
padding
,margin
,inset
) - Shorthand of longhands (
padding-inline
,margin-inline
) - Shorthand of shorthands (
padding-inline-start
,margin-inline-start
)
css({ p: '4', pr: '2', px: '10', })
Will result in the following css regardless of the order of the properties:
.p-4 { padding: 4px; } .px-10 { padding-left: 10px; padding-right: 10px; } .pr-2 { padding-right: 2px; }
- Longhand (
-
d2aede5: Reduce the size of the generated
Token
type by referencing category tokens.Before:
export type Token = 'colors.green.400' | 'colors.red.400' export type ColorToken = 'green.400' | 'red.400'
After:
export type Token = `colors.${ColorToken}` export type ColorToken = 'green.400' | 'red.400'
@pandacss/reporter@0.54.0
@pandacss/preset-panda@0.54.0
Patch Changes
- @pandacss/types@0.54.0
@pandacss/preset-open-props@0.54.0
Patch Changes
- @pandacss/types@0.54.0
@pandacss/preset-base@0.54.0
Minor Changes
-
654ed5c: Adds more
aria
attributes to conditions for better accessibility and styling hooks.[aria-disabled=true]
was added todisabled
,peerDisabled
, andgroupDisabled
conditions.[aria-readonly=true]
was added to thereadOnly
condition.[aria-invalid=true]
was added toinvalid
andgroupInvalid
conditions.
Patch Changes
- @pandacss/types@0.54.0
@pandacss/preset-atlaskit@0.54.0
Patch Changes
- @pandacss/types@0.54.0
@pandacss/postcss@0.54.0
Patch Changes
- Updated dependencies [76c4e61]
- @pandacss/node@0.54.0