Skip to content

Commit

Permalink
Version Packages (#2758)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 6, 2024
1 parent 8f6f8dc commit 0c225e7
Show file tree
Hide file tree
Showing 42 changed files with 296 additions and 99 deletions.
33 changes: 0 additions & 33 deletions .changeset/chatty-carpets-punch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/early-tomatoes-matter.md

This file was deleted.

36 changes: 0 additions & 36 deletions .changeset/purple-tomatoes-hear.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/tender-parents-sin.md

This file was deleted.

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

## 0.45.0

### Patch Changes

- @pandacss/node@0.45.0

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

## 0.45.0

### Patch Changes

- Updated dependencies [dcc9053]
- Updated dependencies [a21fcfe]
- Updated dependencies [552dd4b]
- @pandacss/types@0.45.0
- @pandacss/token-dictionary@0.45.0
- @pandacss/shared@0.45.0
- @pandacss/node@0.45.0
- @pandacss/config@0.45.0
- @pandacss/logger@0.45.0
- @pandacss/preset-panda@0.45.0
- @pandacss/postcss@0.45.0

## 0.44.0

### 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": "0.44.0",
"version": "0.45.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.45.0

### Patch Changes

- Updated dependencies [dcc9053]
- Updated dependencies [552dd4b]
- @pandacss/types@0.45.0
- @pandacss/shared@0.45.0
- @pandacss/logger@0.45.0
- @pandacss/preset-base@0.45.0
- @pandacss/preset-panda@0.45.0

## 0.44.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.44.0",
"version": "0.45.0",
"description": "Find and load panda config",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
50 changes: 50 additions & 0 deletions packages/core/CHANGELOG.md
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
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.44.0",
"version": "0.45.0",
"description": "core functions for extract-it",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/extractor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @pandacss/extractor

## 0.45.0

### Patch Changes

- Updated dependencies [552dd4b]
- @pandacss/shared@0.45.0

## 0.44.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.44.0",
"version": "0.45.0",
"description": "The css extractor for css panda",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
46 changes: 46 additions & 0 deletions packages/generator/CHANGELOG.md
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
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.44.0",
"version": "0.45.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.45.0

## 0.44.0

## 0.43.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": "0.44.0",
"version": "0.45.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

## 0.45.0

### Patch Changes

- Updated dependencies [dcc9053]
- @pandacss/[email protected]

## 0.44.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.44.0",
"version": "0.45.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
18 changes: 18 additions & 0 deletions packages/node/CHANGELOG.md
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
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.44.0",
"version": "0.45.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
14 changes: 14 additions & 0 deletions packages/parser/CHANGELOG.md
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
Expand Down
Loading

0 comments on commit 0c225e7

Please sign in to comment.