Skip to content

Commit

Permalink
Version Packages (#2235)
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 Feb 23, 2024
1 parent 31071ba commit d72a90f
Show file tree
Hide file tree
Showing 46 changed files with 553 additions and 187 deletions.
38 changes: 0 additions & 38 deletions .changeset/curvy-doors-protect.md

This file was deleted.

31 changes: 0 additions & 31 deletions .changeset/funny-plants-shave.md

This file was deleted.

70 changes: 0 additions & 70 deletions .changeset/light-worms-dress.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/shiny-eagles-love.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-experts-brush.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/thick-laws-rhyme.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.32.1

### Patch Changes

- Updated dependencies [89ffb6b]
- @pandacss/node@0.32.1

## 0.32.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.32.0",
"version": "0.32.1",
"description": "Vite plugin for Pandacss Studio",
"author": "Segun Adebayo <joseshegs@gmail.com>",
"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.32.1

### Patch Changes

- Updated dependencies [a032375]
- Updated dependencies [5184771]
- Updated dependencies [6d8c884]
- Updated dependencies [89ffb6b]
- @pandacss/config@0.32.1
- @pandacss/types@0.32.1
- @pandacss/token-dictionary@0.32.1
- @pandacss/node@0.32.1
- @pandacss/logger@0.32.1
- @pandacss/preset-panda@0.32.1
- @pandacss/postcss@0.32.1
- @pandacss/shared@0.32.1

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

## 0.32.1

### Patch Changes

- a032375: Add a way to create config conditions with nested at-rules/selectors

```ts
export default defaultConfig({
conditions: {
extend: {
supportHover: ['@media (hover: hover) and (pointer: fine)', '&:hover'],
},
},
})
```

```ts
import { css } from '../styled-system/css'
css({
_supportHover: {
color: 'red',
},
})
```

will generate the following CSS:

```css
@media (hover: hover) and (pointer: fine) {
&:hover {
color: red;
}
}
```

- 89ffb6b: Add missing config dependencies for some `styled-system/types` files
- Updated dependencies [a032375]
- Updated dependencies [89ffb6b]
- @pandacss/types@0.32.1
- @pandacss/logger@0.32.1
- @pandacss/preset-base@0.32.1
- @pandacss/preset-panda@0.32.1
- @pandacss/shared@0.32.1

## 0.32.0

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

## 0.32.1

### Patch Changes

- a032375: Add a way to create config conditions with nested at-rules/selectors

```ts
export default defaultConfig({
conditions: {
extend: {
supportHover: ['@media (hover: hover) and (pointer: fine)', '&:hover'],
},
},
})
```

```ts
import { css } from '../styled-system/css'
css({
_supportHover: {
color: 'red',
},
})
```

will generate the following CSS:

```css
@media (hover: hover) and (pointer: fine) {
&:hover {
color: red;
}
}
```

- 31071ba: Fix an issue for token names starting with '0'

```ts
import { defineConfig } from '@pandacss/dev'
export default defineConfig({
theme: {
tokens: {
spacing: {
'025': {
value: '0.125rem',
},
},
},
},
})
```

and then using it like

```ts
css({ margin: '025' })
```

This would not generate the expected CSS because the parser would try to parse `025` as a number (`25`) instead of
keeping it as a string.

- f419993: - Prevent extracting style props of `styled` when not explicitly imported

- Allow using multiple aliases for the same identifier for the `/css` entrypoints just like `/patterns` and `/recipes`

```ts
import { css } from '../styled-system/css'
import { css as css2 } from '../styled-system/css'
css({ display: 'flex' })
css2({ flexDirection: 'column' }) // this wasn't working before, now it does
```

- Updated dependencies [a032375]
- Updated dependencies [5184771]
- Updated dependencies [6d8c884]
- Updated dependencies [89ffb6b]
- @pandacss/types@0.32.1
- @pandacss/token-dictionary@0.32.1
- @pandacss/logger@0.32.1
- @pandacss/is-valid-prop@0.32.1
- @pandacss/shared@0.32.1

## 0.32.0

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

## 0.32.1

### Patch Changes

- @pandacss/shared@0.32.1

## 0.32.0

### Patch Changes
Expand Down
Loading

0 comments on commit d72a90f

Please sign in to comment.