Skip to content

Commit 0fa109a

Browse files
Version Packages
1 parent 8fda1a5 commit 0fa109a

Some content is hidden

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

43 files changed

+202
-33
lines changed

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

Lines changed: 0 additions & 12 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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @pandacss/dev
22

3+
## 1.9.1
4+
5+
### Patch Changes
6+
7+
- @pandacss/node@1.9.1
8+
- @pandacss/mcp@1.9.1
9+
- @pandacss/postcss@1.9.1
10+
- @pandacss/config@1.9.1
11+
- @pandacss/logger@1.9.1
12+
- @pandacss/preset-base@1.9.1
13+
- @pandacss/preset-panda@1.9.1
14+
- @pandacss/shared@1.9.1
15+
- @pandacss/token-dictionary@1.9.1
16+
- @pandacss/types@1.9.1
17+
318
## 1.9.0
419

520
### 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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @pandacss/config
22

3+
## 1.9.1
4+
5+
### Patch Changes
6+
7+
- @pandacss/logger@1.9.1
8+
- @pandacss/preset-base@1.9.1
9+
- @pandacss/preset-panda@1.9.1
10+
- @pandacss/shared@1.9.1
11+
- @pandacss/types@1.9.1
12+
313
## 1.9.0
414

515
### 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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
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+
- @pandacss/is-valid-prop@1.9.1
20+
- @pandacss/logger@1.9.1
21+
- @pandacss/shared@1.9.1
22+
- @pandacss/token-dictionary@1.9.1
23+
- @pandacss/types@1.9.1
24+
325
## 1.9.0
426

527
### Minor Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pandacss/core",
3-
"version": "1.9.0",
3+
"version": "1.9.1",
44
"description": "core functions for extract-it",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

packages/extractor/CHANGELOG.md

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

3+
## 1.9.1
4+
5+
### Patch Changes
6+
7+
- @pandacss/shared@1.9.1
8+
39
## 1.9.0
410

511
### Patch Changes

0 commit comments

Comments
 (0)