Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 24, 2024
1 parent ad89b90 commit afeb669
Show file tree
Hide file tree
Showing 43 changed files with 378 additions and 88 deletions.
19 changes: 0 additions & 19 deletions .changeset/nervous-pans-enjoy.md

This file was deleted.

32 changes: 0 additions & 32 deletions .changeset/stale-drinks-grow.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/tasty-ducks-agree.md

This file was deleted.

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

## 0.50.0

### Patch Changes

- Updated dependencies [fea78c7]
- @pandacss/node@0.50.0

## 0.49.0

### 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": "0.49.0",
"version": "0.50.0",
"description": "Vite plugin for Pandacss Studio",
"author": "Segun Adebayo <[email protected]>",
"main": "dist/index.js",
Expand Down
30 changes: 30 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# @pandacss/dev

## 0.50.0

### Minor Changes

- fea78c7: Adds support for static analysis of used tokens and recipe variants. It helps to get a birds-eye view of how
your design system is used and answers the following questions:

- What tokens are most used?
- What recipe variants are most used?
- How many hardcoded values vs tokens do we have?

```sh
panda analyze --scope=<token|recipe>
```

> Still work in progress but we're excited to get your feedback!
### Patch Changes

- Updated dependencies [fea78c7]
- Updated dependencies [ad89b90]
- @pandacss/types@0.50.0
- @pandacss/node@0.50.0
- @pandacss/token-dictionary@0.50.0
- @pandacss/config@0.50.0
- @pandacss/logger@0.50.0
- @pandacss/preset-panda@0.50.0
- @pandacss/postcss@0.50.0
- @pandacss/shared@0.50.0

## 0.49.0

### Minor 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": "0.49.0",
"version": "0.50.0",
"description": "The user facing package for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
12 changes: 12 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @pandacss/config

## 0.50.0

### Patch Changes

- Updated dependencies [fea78c7]
- Updated dependencies [ad89b90]
- @pandacss/types@0.50.0
- @pandacss/logger@0.50.0
- @pandacss/preset-base@0.50.0
- @pandacss/preset-panda@0.50.0
- @pandacss/shared@0.50.0

## 0.49.0

### 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": "0.49.0",
"version": "0.50.0",
"description": "Find and load panda config",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
25 changes: 25 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @pandacss/core

## 0.50.0

### Patch Changes

- 7c85ac7: Improve inference of slots in slot recipes when spreading and concatenating slot names.

This handles the following case gracefully:

```ts
const styles = sva({
className: 'foo',
slots: [...componentAnatomy.keys(), 'additional', 'slots', 'here'],
})
```

Panda will now infer the slots from the anatomy and add them to the recipe.

- Updated dependencies [fea78c7]
- Updated dependencies [ad89b90]
- @pandacss/types@0.50.0
- @pandacss/token-dictionary@0.50.0
- @pandacss/logger@0.50.0
- @pandacss/is-valid-prop@0.50.0
- @pandacss/shared@0.50.0

## 0.49.0

### Minor 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": "0.49.0",
"version": "0.50.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

## 0.50.0

### Patch Changes

- @pandacss/shared@0.50.0

## 0.49.0

### 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": "0.49.0",
"version": "0.50.0",
"description": "The css extractor for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
43 changes: 43 additions & 0 deletions packages/generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# @pandacss/generator

## 0.50.0

### Minor Changes

- ad89b90: Add support for semantic tokens in composite shadow `blur`, `offsetX`, `offsetY` and `spread` properties.

This enables the use of semantic tokens in composite shadow properties.

```ts
// panda.config.ts

export default defineConfig({
theme: {
tokens: {
// ...
shadows: {
sm: {
value: {
offsetX: '{spacing.3}',
offsetY: '{spacing.3}',
blur: '1rem',
spread: '{spacing.3}',
color: '{colors.red}',
},
},
},
},
},
})
```

### Patch Changes

- Updated dependencies [fea78c7]
- Updated dependencies [ad89b90]
- Updated dependencies [7c85ac7]
- @pandacss/types@0.50.0
- @pandacss/token-dictionary@0.50.0
- @pandacss/core@0.50.0
- @pandacss/logger@0.50.0
- @pandacss/is-valid-prop@0.50.0
- @pandacss/shared@0.50.0

## 0.49.0

### Minor 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": "0.49.0",
"version": "0.50.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

## 0.50.0

## 0.49.0

## 0.48.1
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": "0.49.0",
"version": "0.50.0",
"description": "Common error messages for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
8 changes: 8 additions & 0 deletions packages/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @pandacss/logger

## 0.50.0

### Patch Changes

- Updated dependencies [fea78c7]
- Updated dependencies [ad89b90]
- @pandacss/types@0.50.0

## 0.49.0

### 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": "0.49.0",
"version": "0.50.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
32 changes: 32 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @pandacss/node

## 0.50.0

### Minor Changes

- fea78c7: Adds support for static analysis of used tokens and recipe variants. It helps to get a birds-eye view of how
your design system is used and answers the following questions:

- What tokens are most used?
- What recipe variants are most used?
- How many hardcoded values vs tokens do we have?

```sh
panda analyze --scope=<token|recipe>
```

> Still work in progress but we're excited to get your feedback!
### Patch Changes

- Updated dependencies [fea78c7]
- Updated dependencies [ad89b90]
- Updated dependencies [7c85ac7]
- @pandacss/types@0.50.0
- @pandacss/reporter@0.50.0
- @pandacss/token-dictionary@0.50.0
- @pandacss/generator@0.50.0
- @pandacss/parser@0.50.0
- @pandacss/core@0.50.0
- @pandacss/config@0.50.0
- @pandacss/logger@0.50.0
- @pandacss/shared@0.50.0

## 0.49.0

### 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": "0.49.0",
"version": "0.50.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
27 changes: 27 additions & 0 deletions packages/parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @pandacss/parser

## 0.50.0

### Patch Changes

- 7c85ac7: Improve inference of slots in slot recipes when spreading and concatenating slot names.

This handles the following case gracefully:

```ts
const styles = sva({
className: 'foo',
slots: [...componentAnatomy.keys(), 'additional', 'slots', 'here'],
})
```

Panda will now infer the slots from the anatomy and add them to the recipe.

- Updated dependencies [fea78c7]
- Updated dependencies [ad89b90]
- Updated dependencies [7c85ac7]
- @pandacss/types@0.50.0
- @pandacss/core@0.50.0
- @pandacss/config@0.50.0
- @pandacss/logger@0.50.0
- @pandacss/extractor@0.50.0
- @pandacss/shared@0.50.0

## 0.49.0

### Patch Changes
Expand Down
Loading

0 comments on commit afeb669

Please sign in to comment.