Skip to content

Commit cba866c

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

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

+248
-58
lines changed

.changeset/css-prop-aliases.md

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

.changeset/fix-pattern-enum-conditional.md

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

.changeset/khaki-keys-reflect.md

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

packages/astro-plugin-studio/CHANGELOG.md

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

3+
## 1.9.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [3ca1f24]
8+
- Updated dependencies [7d66c0b]
9+
- @pandacss/core@1.9.0
10+
- @pandacss/node@1.9.0
11+
312
## 1.8.2
413

514
### 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.8.2",
3+
"version": "1.9.0",
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.0
4+
5+
### Patch Changes
6+
7+
- @pandacss/node@1.9.0
8+
- @pandacss/mcp@1.9.0
9+
- @pandacss/postcss@1.9.0
10+
- @pandacss/config@1.9.0
11+
- @pandacss/logger@1.9.0
12+
- @pandacss/preset-base@1.9.0
13+
- @pandacss/preset-panda@1.9.0
14+
- @pandacss/shared@1.9.0
15+
- @pandacss/token-dictionary@1.9.0
16+
- @pandacss/types@1.9.0
17+
318
## 1.8.2
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.8.2",
3+
"version": "1.9.0",
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.0
4+
5+
### Patch Changes
6+
7+
- @pandacss/logger@1.9.0
8+
- @pandacss/preset-base@1.9.0
9+
- @pandacss/preset-panda@1.9.0
10+
- @pandacss/shared@1.9.0
11+
- @pandacss/types@1.9.0
12+
313
## 1.8.2
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.8.2",
3+
"version": "1.9.0",
44
"description": "Find and load panda config",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

packages/core/CHANGELOG.md

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

3+
## 1.9.0
4+
5+
### Minor Changes
6+
7+
- 3ca1f24: Add support for `*Css` prop convention in JSX components.
8+
9+
Any JSX prop ending with `Css` (camelCase, e.g. `inputCss`, `wrapperCss`) is now treated as a style prop during static
10+
extraction, enabling compound component patterns like:
11+
12+
```tsx
13+
function Comp(props) {
14+
const { inputCss, wrapperCss, children } = props
15+
return (
16+
<styled.div css={wrapperCss}>
17+
<styled.input css={inputCss} />
18+
{children}
19+
</styled.div>
20+
)
21+
}
22+
23+
// Usage - styles are statically extracted
24+
const usage = <Comp inputCss={{ color: 'red.200' }} wrapperCss={{ display: 'flex' }} />
25+
```
26+
27+
This works in both `all` and `minimal` JSX style prop modes, with no configuration needed.
28+
29+
### Patch Changes
30+
31+
- 7d66c0b: Wrap enum pattern property types with `ConditionalValue` again so generated pattern typings remain
32+
conditional-safe.
33+
- @pandacss/is-valid-prop@1.9.0
34+
- @pandacss/logger@1.9.0
35+
- @pandacss/shared@1.9.0
36+
- @pandacss/token-dictionary@1.9.0
37+
- @pandacss/types@1.9.0
38+
339
## 1.8.2
440

541
### Patch Changes

0 commit comments

Comments
 (0)