Skip to content

Commit 585e904

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

Some content is hidden

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

42 files changed

+355
-72
lines changed

.changeset/add-spec-command.md

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

.changeset/fix-static-css-recipes-splitting.md

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

packages/cli/CHANGELOG.md

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

3+
## 1.7.0
4+
5+
### Minor Changes
6+
7+
- 86b30b1: Add `panda spec` command to generate specification files for your theme (useful for documentation). This
8+
command generates JSON specification files containing metadata, examples, and usage information.
9+
10+
```bash
11+
# Generate all spec files
12+
panda spec
13+
14+
# Custom output directory
15+
panda spec --outdir custom/specs
16+
```
17+
18+
**Token Spec Structure:**
19+
20+
```json
21+
{
22+
"type": "tokens",
23+
"data": [
24+
{
25+
"type": "aspectRatios",
26+
"values": [{ "name": "square", "value": "1 / 1", "cssVar": "var(--aspect-ratios-square)" }],
27+
"tokenFunctionExamples": ["token('aspectRatios.square')"],
28+
"functionExamples": ["css({ aspectRatio: 'square' })"],
29+
"jsxExamples": ["<Box aspectRatio=\"square\" />"]
30+
}
31+
]
32+
}
33+
```
34+
35+
**Spec Usage:**
36+
37+
```javascript
38+
import tokens from 'styled-system/specs/tokens'
39+
import recipes from 'styled-system/specs/recipes'
40+
```
41+
42+
### Patch Changes
43+
44+
- Updated dependencies [86b30b1]
45+
- @pandacss/node@1.7.0
46+
- @pandacss/types@1.7.0
47+
- @pandacss/postcss@1.7.0
48+
- @pandacss/config@1.7.0
49+
- @pandacss/logger@1.7.0
50+
- @pandacss/preset-base@1.7.0
51+
- @pandacss/preset-panda@1.7.0
52+
- @pandacss/token-dictionary@1.7.0
53+
- @pandacss/shared@1.7.0
54+
355
## 1.6.1
456

557
### 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.6.1",
3+
"version": "1.7.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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @pandacss/config
22

3+
## 1.7.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [86b30b1]
8+
- @pandacss/types@1.7.0
9+
- @pandacss/logger@1.7.0
10+
- @pandacss/preset-base@1.7.0
11+
- @pandacss/preset-panda@1.7.0
12+
- @pandacss/shared@1.7.0
13+
314
## 1.6.1
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.6.1",
3+
"version": "1.7.0",
44
"description": "Find and load panda config",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

packages/core/CHANGELOG.md

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

3+
## 1.7.0
4+
5+
### Patch Changes
6+
7+
- f37fd8d: Fix `cssgen --splitting` not fully respecting `staticCss: { recipes: "*" }`.
8+
9+
- When `staticCss: { recipes: "*" }` is set globally, individual recipes with their own `staticCss` property would
10+
override the global wildcard, potentially omitting variants.
11+
- Split CSS generation was missing recipes that only have base styles (no variants).
12+
13+
- Updated dependencies [86b30b1]
14+
- @pandacss/types@1.7.0
15+
- @pandacss/logger@1.7.0
16+
- @pandacss/token-dictionary@1.7.0
17+
- @pandacss/is-valid-prop@1.7.0
18+
- @pandacss/shared@1.7.0
19+
320
## 1.6.1
421

522
### 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.1",
3+
"version": "1.7.0",
44
"description": "core functions for extract-it",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

0 commit comments

Comments
 (0)