Minor Changes
-
f029624: - Sort the longhand/shorthand atomic rules in a deterministic order to prevent property conflicts
- Automatically merge the
base
object in thecss
root styles in the runtime - This may be a breaking change depending on how your styles are created
Ex:
css({ padding: '1px', paddingTop: '3px', paddingBottom: '4px', })
Will now always generate the following css:
@layer utilities { .p_1px { padding: 1px; } .pt_3px { padding-top: 3px; } .pb_4px { padding-bottom: 4px; } }
- Automatically merge the
Patch Changes
- e2ad0ee: - Fix issue in token validation logic where token with additional properties like
description
is
considered invalid.- When
validation
is set toerror
, show all config errors at once instead of stopping at the first error.
- When
- 2d69b34: Fix
styled
factory nested composition withcva
- ddeda8a: Add missing log with the
panda -w
CLI, exposeresolveConfig
from@pandacss/config
- Updated dependencies [8f36f9a]
- Updated dependencies [f029624]
- Updated dependencies [a17fe38]
- Updated dependencies [2d69b34]
- Updated dependencies [40cb30b]
- @pandacss/types@0.31.0
- @pandacss/shared@0.31.0
- @pandacss/preset-base@0.31.0
- @pandacss/logger@0.31.0
- @pandacss/preset-panda@0.31.0