Skip to content

Commit 9b48535

Browse files
Version Packages
1 parent 8424090 commit 9b48535

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

+260
-50
lines changed

.changeset/css-splitting-mode.md

Lines changed: 0 additions & 30 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.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [8aa3c64]
8+
- @pandacss/node@1.6.0
9+
- @pandacss/core@1.6.0
10+
311
## 1.5.1
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.5.1",
3+
"version": "1.6.0",
44
"description": "Vite plugin for Pandacss Studio",
55
"author": "Segun Adebayo <[email protected]>",
66
"license": "MIT",

packages/cli/CHANGELOG.md

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

3+
## 1.6.0
4+
5+
### Minor Changes
6+
7+
- 8aa3c64: Add `--splitting` flag to `cssgen` command for per-layer CSS output.
8+
9+
When enabled, CSS is emitted as separate files instead of a single `styles.css`:
10+
11+
```
12+
styled-system/
13+
├── styles.css # @layer declaration + @imports
14+
└── styles/
15+
├── reset.css # Preflight/reset CSS
16+
├── global.css # Global CSS
17+
├── tokens.css # Design tokens
18+
├── utilities.css # Utility classes
19+
├── recipes/
20+
│ ├── index.css # @imports all recipe files
21+
│ └── {recipe}.css # Individual recipe styles
22+
└── themes/
23+
└── {theme}.css # Theme tokens (not auto-imported)
24+
```
25+
26+
Usage:
27+
28+
```bash
29+
panda cssgen --splitting
30+
```
31+
32+
### Patch Changes
33+
34+
- Updated dependencies [8aa3c64]
35+
- @pandacss/node@1.6.0
36+
- @pandacss/postcss@1.6.0
37+
- @pandacss/config@1.6.0
38+
- @pandacss/logger@1.6.0
39+
- @pandacss/preset-base@1.6.0
40+
- @pandacss/preset-panda@1.6.0
41+
- @pandacss/shared@1.6.0
42+
- @pandacss/token-dictionary@1.6.0
43+
- @pandacss/types@1.6.0
44+
345
## 1.5.1
446

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

packages/core/CHANGELOG.md

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

3+
## 1.6.0
4+
5+
### Patch Changes
6+
7+
- @pandacss/is-valid-prop@1.6.0
8+
- @pandacss/logger@1.6.0
9+
- @pandacss/shared@1.6.0
10+
- @pandacss/token-dictionary@1.6.0
11+
- @pandacss/types@1.6.0
12+
313
## 1.5.1
414

515
### 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.5.1",
3+
"version": "1.6.0",
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.0
4+
5+
### Patch Changes
6+
7+
- @pandacss/shared@1.6.0
8+
39
## 1.5.1
410

511
### Patch Changes

0 commit comments

Comments
 (0)