-
-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
afe9dc3
commit c4b8348
Showing
43 changed files
with
378 additions
and
88 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
|
||
## 0.49.0 | ||
|
||
### Minor Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | ||
|
||
## 0.49.0 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[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] | ||
|
||
## 0.49.0 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
|
||
## 0.49.0 | ||
|
||
### Patch Changes | ||
|
Oops, something went wrong.