Skip to content

Commit fbd8b92

Browse files
Version Packages (#3434)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3957335 commit fbd8b92

Some content is hidden

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

41 files changed

+245
-57
lines changed

.changeset/css-raw-reference-resolution-improvements.md

Lines changed: 0 additions & 37 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.6.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [8f43369]
8+
- @pandacss/core@1.6.1
9+
- @pandacss/node@1.6.1
10+
311
## 1.6.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.6.0",
3+
"version": "1.6.1",
44
"description": "Vite plugin for Pandacss Studio",
55
"author": "Segun Adebayo <joseshegs@gmail.com>",
66
"license": "MIT",

packages/cli/CHANGELOG.md

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

3+
## 1.6.1
4+
5+
### Patch Changes
6+
7+
- @pandacss/node@1.6.1
8+
- @pandacss/postcss@1.6.1
9+
- @pandacss/config@1.6.1
10+
- @pandacss/logger@1.6.1
11+
- @pandacss/preset-base@1.6.1
12+
- @pandacss/preset-panda@1.6.1
13+
- @pandacss/shared@1.6.1
14+
- @pandacss/token-dictionary@1.6.1
15+
- @pandacss/types@1.6.1
16+
317
## 1.6.0
418

519
### Minor 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.6.0",
3+
"version": "1.6.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.6.1
4+
5+
### Patch Changes
6+
7+
- @pandacss/logger@1.6.1
8+
- @pandacss/preset-base@1.6.1
9+
- @pandacss/preset-panda@1.6.1
10+
- @pandacss/shared@1.6.1
11+
- @pandacss/types@1.6.1
12+
313
## 1.6.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.6.0",
3+
"version": "1.6.1",
44
"description": "Find and load panda config",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

packages/core/CHANGELOG.md

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

3+
## 1.6.1
4+
5+
### Patch Changes
6+
7+
- 8f43369: Fix css.raw spreading within selectors and conditions
8+
9+
Fixed several scenarios where spreading css.raw objects wouldn't be properly extracted:
10+
11+
**Child selectors:**
12+
13+
```js
14+
const baseStyles = css.raw({ margin: 0, padding: 0 })
15+
const component = css({
16+
'& p': { ...baseStyles, fontSize: '1rem' }, // Now works
17+
})
18+
```
19+
20+
**Nested conditions:**
21+
22+
```js
23+
const interactive = css.raw({ cursor: 'pointer', transition: 'all 0.2s' })
24+
const card = css({
25+
_hover: {
26+
...interactive, // Now works
27+
_dark: { ...interactive, color: 'white' },
28+
},
29+
})
30+
```
31+
32+
**CSS aliases:**
33+
34+
```js
35+
import { css as xcss } from 'styled-system/css'
36+
const styles = xcss.raw({ color: 'red' })
37+
// xcss.raw now properly recognized
38+
```
39+
40+
- @pandacss/is-valid-prop@1.6.1
41+
- @pandacss/logger@1.6.1
42+
- @pandacss/shared@1.6.1
43+
- @pandacss/token-dictionary@1.6.1
44+
- @pandacss/types@1.6.1
45+
346
## 1.6.0
447

548
### Patch 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.6.0",
3+
"version": "1.6.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.6.1
4+
5+
### Patch Changes
6+
7+
- @pandacss/shared@1.6.1
8+
39
## 1.6.0
410

511
### Patch Changes

0 commit comments

Comments
 (0)