Skip to content

Commit

Permalink
Version Packages (#1939)
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 Jan 6, 2024
1 parent 59fd291 commit 97cc371
Show file tree
Hide file tree
Showing 48 changed files with 301 additions and 92 deletions.
5 changes: 0 additions & 5 deletions .changeset/blue-feet-hide.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/famous-balloons-yell.md

This file was deleted.

45 changes: 0 additions & 45 deletions .changeset/neat-pianos-cry.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/soft-snails-smile.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.25.0

### Patch Changes

- Updated dependencies [bc154358]
- @pandacss/node@0.25.0

## 0.24.2

### 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.24.2",
"version": "0.25.0",
"description": "Vite plugin for Pandacss Studio",
"author": "Segun Adebayo <joseshegs@gmail.com>",
"main": "dist/index.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/astro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @pandacss/astro

## 0.25.0

### Patch Changes

- @pandacss/postcss@0.25.0

## 0.24.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/astro",
"version": "0.24.2",
"version": "0.25.0",
"type": "module",
"description": "Astro integration for Panda CSS",
"main": "dist/index.js",
Expand Down
17 changes: 17 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @pandacss/dev

## 0.25.0

### Patch Changes

- Updated dependencies [bc154358]
- Updated dependencies [59fd291c]
- Updated dependencies [de282f60]
- @pandacss/node@0.25.0
- @pandacss/types@0.25.0
- @pandacss/token-dictionary@0.25.0
- @pandacss/postcss@0.25.0
- @pandacss/config@0.25.0
- @pandacss/preset-panda@0.25.0
- @pandacss/error@0.25.0
- @pandacss/logger@0.25.0
- @pandacss/shared@0.25.0

## 0.24.2

### 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.24.2",
"version": "0.25.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.25.0

### Patch Changes

- Updated dependencies [59fd291c]
- @pandacss/types@0.25.0
- @pandacss/preset-base@0.25.0
- @pandacss/preset-panda@0.25.0
- @pandacss/error@0.25.0
- @pandacss/logger@0.25.0
- @pandacss/shared@0.25.0

## 0.24.2

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

## 0.25.0

### Minor Changes

- de282f60: Support token reference syntax when authoring styles object, text styles and layer styles.

```jsx
import { css } from '../styled-system/css'

const styles = css({
border: '2px solid {colors.primary}',
})
```

This will resolve the token reference and convert it to css variables.

```css
.border_2px_solid_\{colors\.primary\} {
border: 2px solid var(--colors-primary);
}
```

The alternative to this was to use the `token(...)` css function which will be resolved.

### `token(...)` vs `{...}`

Both approaches return the css variable

```jsx
const styles = css({
// token reference syntax
border: '2px solid {colors.primary}',
// token function syntax
border: '2px solid token(colors.primary)',
})
```

However, The `token(...)` syntax allows you to set a fallback value.

```jsx
const styles = css({
border: '2px solid token(colors.primary, red)',
})
```

### Patch Changes

- 59fd291c: Add a way to generate the staticCss for _all_ recipes (and all variants of each recipe)
- de282f60: Fix issue where `base` doesn't work within css function

```jsx
css({
// This didn't work, but now it does
base: { color: 'blue' },
})
```

- Updated dependencies [59fd291c]
- Updated dependencies [de282f60]
- @pandacss/types@0.25.0
- @pandacss/token-dictionary@0.25.0
- @pandacss/error@0.25.0
- @pandacss/is-valid-prop@0.25.0
- @pandacss/logger@0.25.0
- @pandacss/shared@0.25.0

## 0.24.2

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

## 0.25.0

## 0.24.2

## 0.24.1
Expand Down
2 changes: 1 addition & 1 deletion packages/error/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/error",
"version": "0.24.2",
"version": "0.25.0",
"description": "Common error messages for css panda",
"author": "Segun Adebayo <joseshegs@gmail.com>",
"main": "dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/extractor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @pandacss/extractor

## 0.25.0

## 0.24.2

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

## 0.25.0

## 0.24.2

## 0.24.1
Expand Down
2 changes: 1 addition & 1 deletion packages/fixture/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pandacss/fixture",
"version": "0.24.2",
"version": "0.25.0",
"private": true,
"description": "Test fixtures for Panda CSS",
"main": "src/index.ts",
Expand Down
15 changes: 15 additions & 0 deletions packages/generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @pandacss/generator

## 0.25.0

### Patch Changes

- 59fd291c: Add a way to generate the staticCss for _all_ recipes (and all variants of each recipe)
- Updated dependencies [59fd291c]
- Updated dependencies [de282f60]
- Updated dependencies [de282f60]
- @pandacss/types@0.25.0
- @pandacss/core@0.25.0
- @pandacss/token-dictionary@0.25.0
- @pandacss/is-valid-prop@0.25.0
- @pandacss/logger@0.25.0
- @pandacss/shared@0.25.0

## 0.24.2

### 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.24.2",
"version": "0.25.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.25.0

## 0.24.2

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

## 0.25.0

## 0.24.2

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

## 0.25.0

### Patch Changes

- bc154358: Fix config dependencies detection by re-introducing the file tracing utility
- Updated dependencies [59fd291c]
- Updated dependencies [de282f60]
- Updated dependencies [de282f60]
- @pandacss/generator@0.25.0
- @pandacss/types@0.25.0
- @pandacss/core@0.25.0
- @pandacss/token-dictionary@0.25.0
- @pandacss/parser@0.25.0
- @pandacss/config@0.25.0
- @pandacss/error@0.25.0
- @pandacss/extractor@0.25.0
- @pandacss/logger@0.25.0
- @pandacss/shared@0.25.0

## 0.24.2

### 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.24.2",
"version": "0.25.0",
"description": "The core css panda library",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
Loading

1 comment on commit 97cc371

@vercel
Copy link

@vercel vercel bot commented on 97cc371 Jan 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

panda-docs – ./website

panda-docs.vercel.app
panda-docs-git-main-chakra-ui.vercel.app
panda-css.com
panda-docs-chakra-ui.vercel.app

Please sign in to comment.