Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .changeset/fix-duplicate-token-references.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/fix-pseudo-element-ordering.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/fix-spacer-token-resolution.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/astro-plugin-studio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @pandacss/astro-plugin-studio

## 1.9.1

### Patch Changes

- Updated dependencies [8fda1a5]
- @pandacss/core@1.9.1
- @pandacss/node@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-plugin-studio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/astro-plugin-studio",
"version": "1.9.0",
"version": "1.9.1",
"description": "Vite plugin for Pandacss Studio",
"author": "Segun Adebayo <joseshegs@gmail.com>",
"license": "MIT",
Expand Down
17 changes: 17 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @pandacss/dev

## 1.9.1

### Patch Changes

- Updated dependencies [d02fcf6]
- Updated dependencies [028e755]
- @pandacss/token-dictionary@1.9.1
- @pandacss/preset-base@1.9.1
- @pandacss/mcp@1.9.1
- @pandacss/node@1.9.1
- @pandacss/config@1.9.1
- @pandacss/postcss@1.9.1
- @pandacss/logger@1.9.1
- @pandacss/preset-panda@1.9.1
- @pandacss/shared@1.9.1
- @pandacss/types@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/dev",
"version": "1.9.0",
"version": "1.9.1",
"description": "The user facing package for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
11 changes: 11 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @pandacss/config

## 1.9.1

### Patch Changes

- Updated dependencies [028e755]
- @pandacss/preset-base@1.9.1
- @pandacss/logger@1.9.1
- @pandacss/preset-panda@1.9.1
- @pandacss/shared@1.9.1
- @pandacss/types@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/config",
"version": "1.9.0",
"version": "1.9.1",
"description": "Find and load panda config",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
23 changes: 23 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# @pandacss/core

## 1.9.1

### Patch Changes

- 8fda1a5: Fix pseudo-element conditions (::before, ::after) being placed before pseudo-class selectors in generated CSS

When a pseudo-element condition like `_before` was combined with a mixed condition like `_hover` (defined as an array
with a media query + selector), the pseudo-element would incorrectly appear before the pseudo-class in the generated
CSS selector.

**Before (broken):** `.class::before:is(:hover, ...)` - invalid CSS **After (fixed):**
`.class:is(:hover, ...)::before` - valid CSS

The fix ensures pseudo-element selectors are always sorted last in the condition chain, matching the CSS specification
requirement that pseudo-elements must appear at the end of a selector.

- Updated dependencies [d02fcf6]
- @pandacss/token-dictionary@1.9.1
- @pandacss/is-valid-prop@1.9.1
- @pandacss/logger@1.9.1
- @pandacss/shared@1.9.1
- @pandacss/types@1.9.1

## 1.9.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/core",
"version": "1.9.0",
"version": "1.9.1",
"description": "core functions for extract-it",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/extractor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/extractor

## 1.9.1

### Patch Changes

- @pandacss/shared@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/extractor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/extractor",
"version": "1.9.0",
"version": "1.9.1",
"description": "The css extractor for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
13 changes: 13 additions & 0 deletions packages/generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @pandacss/generator

## 1.9.1

### Patch Changes

- Updated dependencies [d02fcf6]
- Updated dependencies [8fda1a5]
- @pandacss/token-dictionary@1.9.1
- @pandacss/core@1.9.1
- @pandacss/is-valid-prop@1.9.1
- @pandacss/logger@1.9.1
- @pandacss/shared@1.9.1
- @pandacss/types@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/generator",
"version": "1.9.0",
"version": "1.9.1",
"description": "The css generator for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
2 changes: 2 additions & 0 deletions packages/is-valid-prop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @pandacss/is-valid-prop

## 1.9.1

## 1.9.0

## 1.8.2
Expand Down
2 changes: 1 addition & 1 deletion packages/is-valid-prop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/is-valid-prop",
"version": "1.9.0",
"version": "1.9.1",
"description": "Common error messages for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/logger

## 1.9.1

### Patch Changes

- @pandacss/types@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/logger",
"version": "1.9.0",
"version": "1.9.1",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
10 changes: 10 additions & 0 deletions packages/mcp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @pandacss/mcp

## 1.9.1

### Patch Changes

- Updated dependencies [d02fcf6]
- @pandacss/token-dictionary@1.9.1
- @pandacss/node@1.9.1
- @pandacss/logger@1.9.1
- @pandacss/types@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/mcp",
"version": "1.9.0",
"version": "1.9.1",
"description": "MCP server for Panda CSS AI assistants",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
16 changes: 16 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @pandacss/node

## 1.9.1

### Patch Changes

- Updated dependencies [d02fcf6]
- Updated dependencies [8fda1a5]
- @pandacss/token-dictionary@1.9.1
- @pandacss/core@1.9.1
- @pandacss/generator@1.9.1
- @pandacss/reporter@1.9.1
- @pandacss/config@1.9.1
- @pandacss/parser@1.9.1
- @pandacss/logger@1.9.1
- @pandacss/shared@1.9.1
- @pandacss/types@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/node",
"version": "1.9.0",
"version": "1.9.1",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
12 changes: 12 additions & 0 deletions packages/parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @pandacss/parser

## 1.9.1

### Patch Changes

- Updated dependencies [8fda1a5]
- @pandacss/core@1.9.1
- @pandacss/config@1.9.1
- @pandacss/extractor@1.9.1
- @pandacss/logger@1.9.1
- @pandacss/shared@1.9.1
- @pandacss/types@1.9.1

## 1.9.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/parser",
"version": "1.9.0",
"version": "1.9.1",
"description": "The static parser for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/postcss/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/postcss

## 1.9.1

### Patch Changes

- @pandacss/node@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/postcss/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/postcss",
"version": "1.9.0",
"version": "1.9.1",
"description": "PostCSS integration for Panda CSS",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/preset-atlaskit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/preset-atlaskit

## 1.9.1

### Patch Changes

- @pandacss/types@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/preset-atlaskit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/preset-atlaskit",
"version": "1.9.0",
"version": "1.9.1",
"description": "The preset for PandaCSS that contains the default theme",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
16 changes: 16 additions & 0 deletions packages/preset-base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @pandacss/preset-base

## 1.9.1

### Patch Changes

- 028e755: Fix `Spacer` pattern not resolving spacing tokens for the `size` prop.

Previously, `<Spacer size="5" />` would generate invalid CSS (`flex: 0 0 5`) instead of resolving the spacing token.
Now it correctly outputs `flex: 0 0 var(--spacing-5, 5)`.

**Before (broken):** `flex: 0 0 5` — raw value, not a valid CSS length **After (fixed):**
`flex: 0 0 var(--spacing-5, 5)` — resolved spacing token

Closes #3490

- @pandacss/types@1.9.1

## 1.9.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/preset-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/preset-base",
"version": "1.9.0",
"version": "1.9.1",
"description": "The base preset for Panda CSS that contains the conditions and utilities",
"author": "Segun Adebayo <joseshegs@gmail.com>",
"license": "MIT",
Expand Down
Loading