Skip to content

Commit 19e45b5

Browse files
Version Packages
1 parent d02fcf6 commit 19e45b5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+233
-61
lines changed

.changeset/fix-duplicate-token-references.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

.changeset/fix-pseudo-element-ordering.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

.changeset/fix-spacer-token-resolution.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

packages/astro-plugin-studio/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @pandacss/astro-plugin-studio
22

3+
## 1.9.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [8fda1a5]
8+
- @pandacss/core@1.9.1
9+
- @pandacss/node@1.9.1
10+
311
## 1.9.0
412

513
### Patch Changes

packages/astro-plugin-studio/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pandacss/astro-plugin-studio",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "Vite plugin for Pandacss Studio",
55
"author": "Segun Adebayo <joseshegs@gmail.com>",
66
"license": "MIT",

packages/cli/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @pandacss/dev
22

3+
## 1.9.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [d02fcf6]
8+
- Updated dependencies [028e755]
9+
- @pandacss/token-dictionary@1.9.1
10+
- @pandacss/preset-base@1.9.1
11+
- @pandacss/mcp@1.9.1
12+
- @pandacss/node@1.9.1
13+
- @pandacss/config@1.9.1
14+
- @pandacss/postcss@1.9.1
15+
- @pandacss/logger@1.9.1
16+
- @pandacss/preset-panda@1.9.1
17+
- @pandacss/shared@1.9.1
18+
- @pandacss/types@1.9.1
19+
320
## 1.9.0
421

522
### Patch Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pandacss/dev",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "The user facing package for panda css",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

packages/config/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @pandacss/config
22

3+
## 1.9.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [028e755]
8+
- @pandacss/preset-base@1.9.1
9+
- @pandacss/logger@1.9.1
10+
- @pandacss/preset-panda@1.9.1
11+
- @pandacss/shared@1.9.1
12+
- @pandacss/types@1.9.1
13+
314
## 1.9.0
415

516
### Patch Changes

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pandacss/config",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "Find and load panda config",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

packages/core/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# @pandacss/core
22

3+
## 1.9.1
4+
5+
### Patch Changes
6+
7+
- 8fda1a5: Fix pseudo-element conditions (::before, ::after) being placed before pseudo-class selectors in generated CSS
8+
9+
When a pseudo-element condition like `_before` was combined with a mixed condition like `_hover` (defined as an array
10+
with a media query + selector), the pseudo-element would incorrectly appear before the pseudo-class in the generated
11+
CSS selector.
12+
13+
**Before (broken):** `.class::before:is(:hover, ...)` - invalid CSS **After (fixed):**
14+
`.class:is(:hover, ...)::before` - valid CSS
15+
16+
The fix ensures pseudo-element selectors are always sorted last in the condition chain, matching the CSS specification
17+
requirement that pseudo-elements must appear at the end of a selector.
18+
19+
- Updated dependencies [d02fcf6]
20+
- @pandacss/token-dictionary@1.9.1
21+
- @pandacss/is-valid-prop@1.9.1
22+
- @pandacss/logger@1.9.1
23+
- @pandacss/shared@1.9.1
24+
- @pandacss/types@1.9.1
25+
326
## 1.9.0
427

528
### Minor Changes

0 commit comments

Comments
 (0)