Skip to content

Commit

Permalink
Version Packages (#2651)
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 Jun 16, 2024
1 parent 4d79738 commit b02be17
Show file tree
Hide file tree
Showing 40 changed files with 221 additions and 46 deletions.
6 changes: 0 additions & 6 deletions .changeset/clean-monkeys-fix.md

This file was deleted.

21 changes: 0 additions & 21 deletions .changeset/sharp-emus-crash.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.41.0

### Patch Changes

- @pandacss/node@0.41.0

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

## 0.41.0

### Patch Changes

- @pandacss/node@0.41.0
- @pandacss/types@0.41.0
- @pandacss/postcss@0.41.0
- @pandacss/config@0.41.0
- @pandacss/logger@0.41.0
- @pandacss/preset-panda@0.41.0
- @pandacss/shared@0.41.0
- @pandacss/token-dictionary@0.41.0

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

## 0.41.0

### Patch Changes

- @pandacss/types@0.41.0
- @pandacss/logger@0.41.0
- @pandacss/preset-base@0.41.0
- @pandacss/preset-panda@0.41.0
- @pandacss/shared@0.41.0

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

## 0.41.0

### Patch Changes

- 2750261: Fix an issue where spreading an identifier in a sva `slots` array would prevent expected CSS from being
generated

```ts
import { sva } from 'styled-system/css'
const parts = ['positioner', 'content']

const card = sva({
slots: [...parts], // <- spreading here was causing the below CSS not to be generated, it's now fixed ✅
base: {
root: {
p: '6',
},
},
})
```

- @pandacss/types@0.41.0
- @pandacss/is-valid-prop@0.41.0
- @pandacss/logger@0.41.0
- @pandacss/shared@0.41.0
- @pandacss/token-dictionary@0.41.0

## 0.40.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": "0.40.1",
"version": "0.41.0",
"description": "core functions for extract-it",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
23 changes: 23 additions & 0 deletions packages/extractor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# @pandacss/extractor

## 0.41.0

### Patch Changes

- 2750261: Fix an issue where spreading an identifier in a sva `slots` array would prevent expected CSS from being
generated

```ts
import { sva } from 'styled-system/css'
const parts = ['positioner', 'content']

const card = sva({
slots: [...parts], // <- spreading here was causing the below CSS not to be generated, it's now fixed ✅
base: {
root: {
p: '6',
},
},
})
```

- @pandacss/shared@0.41.0

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

## 0.41.0

### Minor Changes

- af8a29a: Annotate config recipe default variants with the `@default` js doc comment. This makes it easy to know the
default value of a variant.

### Patch Changes

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

## 0.40.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": "0.40.1",
"version": "0.41.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.41.0

## 0.40.1

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

## 0.41.0

### Patch Changes

- @pandacss/[email protected]

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

## 0.41.0

### Patch Changes

- Updated dependencies [af8a29a]
- Updated dependencies [2750261]
- @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.40.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": "0.40.1",
"version": "0.41.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
29 changes: 29 additions & 0 deletions packages/parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @pandacss/parser

## 0.41.0

### Patch Changes

- 2750261: Fix an issue where spreading an identifier in a sva `slots` array would prevent expected CSS from being
generated

```ts
import { sva } from 'styled-system/css'
const parts = ['positioner', 'content']

const card = sva({
slots: [...parts], // <- spreading here was causing the below CSS not to be generated, it's now fixed ✅
base: {
root: {
p: '6',
},
},
})
```

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

## 0.40.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": "0.40.1",
"version": "0.41.0",
"description": "The static parser for panda css",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/postcss/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/postcss

## 0.41.0

### Patch Changes

- @pandacss/[email protected]

## 0.40.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": "0.40.1",
"version": "0.41.0",
"description": "PostCSS integration for Panda CSS",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/preset-atlaskit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/preset-atlaskit

## 0.41.0

### Patch Changes

- @pandacss/[email protected]

## 0.40.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/preset-atlaskit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/preset-atlaskit",
"version": "0.40.1",
"version": "0.41.0",
"description": "The preset for PandaCSS that contains the default theme",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/preset-base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/preset-base

## 0.41.0

### Patch Changes

- @pandacss/[email protected]

## 0.40.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/preset-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/preset-base",
"version": "0.40.1",
"version": "0.41.0",
"description": "The base preset for Panda CSS that contains the conditions and utilities",
"author": "Segun Adebayo <[email protected]>",
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/preset-open-props/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/preset-open-props

## 0.41.0

### Patch Changes

- @pandacss/[email protected]

## 0.40.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/preset-open-props/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/preset-open-props",
"version": "0.40.1",
"version": "0.41.0",
"description": "A preset for Open Props",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
Loading

0 comments on commit b02be17

Please sign in to comment.