-
-
Notifications
You must be signed in to change notification settings - Fork 247
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
8f6f8dc
commit 0c225e7
Showing
42 changed files
with
296 additions
and
99 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 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.44.0", | ||
"version": "0.45.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,55 @@ | ||
# @pandacss/core | ||
|
||
## 0.45.0 | ||
|
||
### Minor Changes | ||
|
||
- 1e4da63: Add support resolving `DEFAULT` in textStyles and layerStyles, just like tokens. | ||
|
||
```jsx | ||
export default defineConfig({ | ||
theme: { | ||
textStyles: { | ||
display: { | ||
// 'display' | ||
DEFAULT: { | ||
value: { | ||
fontSize: '1.5rem', | ||
fontWeight: 'bold', | ||
}, | ||
}, | ||
// 'display.large' | ||
large: { | ||
value: { | ||
fontSize: '2rem', | ||
fontWeight: 'bold', | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}) | ||
``` | ||
|
||
In case, you can use `textStyles: display` to reference the DEFAULT display value. | ||
|
||
```jsx | ||
css({ textStyle: 'display' }) | ||
``` | ||
|
||
### Patch Changes | ||
|
||
- 552dd4b: Fix issue where `divideY` and `divideColor` utilities, used together in a recipe, doesn't generate the | ||
correct css. | ||
- Updated dependencies [dcc9053] | ||
- Updated dependencies [a21fcfe] | ||
- Updated dependencies [552dd4b] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
|
||
## 0.44.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
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,51 @@ | ||
# @pandacss/generator | ||
|
||
## 0.45.0 | ||
|
||
### Minor Changes | ||
|
||
- dcc9053: Remove `base` from `css` or pattern style objects. The `base` keyword is only supported in recipes or | ||
conditional styles. | ||
|
||
**Before** | ||
|
||
```jsx | ||
hstack({ | ||
// ❌ doesn't work | ||
base: { | ||
background: 'red.400', | ||
p: '11', | ||
}, | ||
display: 'flex', | ||
flexDirection: 'column', | ||
}) | ||
``` | ||
|
||
**After** | ||
|
||
```jsx | ||
hstack({ | ||
// ✅ works | ||
background: 'red.400', | ||
p: '11', | ||
display: 'flex', | ||
flexDirection: 'column', | ||
}) | ||
``` | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [dcc9053] | ||
- Updated dependencies [a21fcfe] | ||
- Updated dependencies [1e4da63] | ||
- Updated dependencies [552dd4b] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
|
||
## 0.44.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,7 @@ | ||
# @pandacss/is-valid-prop | ||
|
||
## 0.45.0 | ||
|
||
## 0.44.0 | ||
|
||
## 0.43.0 | ||
|
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,12 @@ | ||
# @pandacss/logger | ||
|
||
## 0.45.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [dcc9053] | ||
- @pandacss/[email protected] | ||
|
||
## 0.44.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,23 @@ | ||
# @pandacss/node | ||
|
||
## 0.45.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [dcc9053] | ||
- Updated dependencies [a21fcfe] | ||
- Updated dependencies [1e4da63] | ||
- Updated dependencies [552dd4b] | ||
- @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.44.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,19 @@ | ||
# @pandacss/parser | ||
|
||
## 0.45.0 | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [dcc9053] | ||
- Updated dependencies [1e4da63] | ||
- Updated dependencies [552dd4b] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
- @pandacss/[email protected] | ||
|
||
## 0.44.0 | ||
|
||
### Patch Changes | ||
|
Oops, something went wrong.