Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .changeset/add-spec-command.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/fix-static-css-recipes-splitting.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/astro-plugin-studio/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @pandacss/astro-plugin-studio

## 1.7.0

### Patch Changes

- Updated dependencies [86b30b1]
- Updated dependencies [f37fd8d]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-plugin-studio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/astro-plugin-studio",
"version": "1.6.1",
"version": "1.7.0",
"description": "Vite plugin for Pandacss Studio",
"author": "Segun Adebayo <[email protected]>",
"license": "MIT",
Expand Down
41 changes: 41 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# @pandacss/dev

## 1.7.0

### Minor Changes

- 86b30b1: Add `panda spec` command to generate specification files for your theme (useful for documentation). This
command generates JSON specification files containing metadata, examples, and usage information.

```bash
# Generate all spec files
panda spec

# Generate with filter (filters across all spec types)
panda spec --filter "button*"

# Custom output directory
panda spec --outdir custom/specs

# Include spec entrypoint in package.json
panda emit-pkg --spec
```

Spec files can be consumed via:

```javascript
import tokens from 'styled-system/specs/tokens'
import recipes from 'styled-system/specs/recipes'
```

### Patch Changes

- Updated dependencies [86b30b1]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/dev",
"version": "1.6.1",
"version": "1.7.0",
"description": "The user facing package for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
11 changes: 11 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @pandacss/config

## 1.7.0

### Patch Changes

- Updated dependencies [86b30b1]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/config",
"version": "1.6.1",
"version": "1.7.0",
"description": "Find and load panda config",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
17 changes: 17 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @pandacss/core

## 1.7.0

### Patch Changes

- f37fd8d: Fix `cssgen --splitting` not fully respecting `staticCss: { recipes: "*" }`.

- When `staticCss: { recipes: "*" }` is set globally, individual recipes with their own `staticCss` property would
override the global wildcard, potentially omitting variants.
- Split CSS generation was missing recipes that only have base styles (no variants).

- Updated dependencies [86b30b1]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/core",
"version": "1.6.1",
"version": "1.7.0",
"description": "core functions for extract-it",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/extractor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/extractor

## 1.7.0

### Patch Changes

- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/extractor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/extractor",
"version": "1.6.1",
"version": "1.7.0",
"description": "The css extractor for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
45 changes: 45 additions & 0 deletions packages/generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,50 @@
# @pandacss/generator

## 1.7.0

### Minor Changes

- 86b30b1: Add `panda spec` command to generate specification files for your theme (useful for documentation). This
command generates JSON specification files containing metadata, examples, and usage information.

```bash
# Generate all spec files
panda spec

# Generate with filter (filters across all spec types)
panda spec --filter "button*"

# Custom output directory
panda spec --outdir custom/specs

# Include spec entrypoint in package.json
panda emit-pkg --spec
```

Spec files can be consumed via:

```javascript
import tokens from 'styled-system/specs/tokens'
import recipes from 'styled-system/specs/recipes'
```

### Patch Changes

- f37fd8d: Fix `cssgen --splitting` not fully respecting `staticCss: { recipes: "*" }`.

- When `staticCss: { recipes: "*" }` is set globally, individual recipes with their own `staticCss` property would
override the global wildcard, potentially omitting variants.
- Split CSS generation was missing recipes that only have base styles (no variants).

- Updated dependencies [86b30b1]
- Updated dependencies [f37fd8d]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/generator",
"version": "1.6.1",
"version": "1.7.0",
"description": "The css generator for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
2 changes: 2 additions & 0 deletions packages/is-valid-prop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @pandacss/is-valid-prop

## 1.7.0

## 1.6.1

## 1.6.0
Expand Down
2 changes: 1 addition & 1 deletion packages/is-valid-prop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/is-valid-prop",
"version": "1.6.1",
"version": "1.7.0",
"description": "Common error messages for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pandacss/logger

## 1.7.0

### Patch Changes

- Updated dependencies [86b30b1]
- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/logger",
"version": "1.6.1",
"version": "1.7.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
42 changes: 42 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# @pandacss/node

## 1.7.0

### Minor Changes

- 86b30b1: Add `panda spec` command to generate specification files for your theme (useful for documentation). This
command generates JSON specification files containing metadata, examples, and usage information.

```bash
# Generate all spec files
panda spec

# Generate with filter (filters across all spec types)
panda spec --filter "button*"

# Custom output directory
panda spec --outdir custom/specs

# Include spec entrypoint in package.json
panda emit-pkg --spec
```

Spec files can be consumed via:

```javascript
import tokens from 'styled-system/specs/tokens'
import recipes from 'styled-system/specs/recipes'
```

### Patch Changes

- Updated dependencies [86b30b1]
- Updated dependencies [f37fd8d]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/node",
"version": "1.6.1",
"version": "1.7.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
13 changes: 13 additions & 0 deletions packages/parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @pandacss/parser

## 1.7.0

### Patch Changes

- Updated dependencies [86b30b1]
- Updated dependencies [f37fd8d]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]
- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/parser",
"version": "1.6.1",
"version": "1.7.0",
"description": "The static parser for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/postcss/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pandacss/postcss

## 1.7.0

### Patch Changes

- Updated dependencies [86b30b1]
- @pandacss/[email protected]

## 1.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/postcss/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/postcss",
"version": "1.6.1",
"version": "1.7.0",
"description": "PostCSS integration for Panda CSS",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
Loading