diff --git a/.changeset/blue-feet-hide.md b/.changeset/blue-feet-hide.md deleted file mode 100644 index cdd09696c..000000000 --- a/.changeset/blue-feet-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@pandacss/node': patch ---- - -Fix config dependencies detection by re-introducing the file tracing utility diff --git a/.changeset/famous-balloons-yell.md b/.changeset/famous-balloons-yell.md deleted file mode 100644 index 8af3e10e9..000000000 --- a/.changeset/famous-balloons-yell.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@pandacss/generator': patch -'@pandacss/types': patch -'@pandacss/core': patch ---- - -Add a way to generate the staticCss for _all_ recipes (and all variants of each recipe) diff --git a/.changeset/neat-pianos-cry.md b/.changeset/neat-pianos-cry.md deleted file mode 100644 index e81a87b99..000000000 --- a/.changeset/neat-pianos-cry.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -'@pandacss/token-dictionary': minor -'@pandacss/core': minor ---- - -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)', -}) -``` diff --git a/.changeset/soft-snails-smile.md b/.changeset/soft-snails-smile.md deleted file mode 100644 index ce8303147..000000000 --- a/.changeset/soft-snails-smile.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@pandacss/parser': patch -'@pandacss/core': patch ---- - -Fix issue where `base` doesn't work within css function - -```jsx -css({ - // This didn't work, but now it does - base: { color: 'blue' }, -}) -``` diff --git a/packages/astro-plugin-studio/CHANGELOG.md b/packages/astro-plugin-studio/CHANGELOG.md index 3034f5b83..8e3da55cc 100644 --- a/packages/astro-plugin-studio/CHANGELOG.md +++ b/packages/astro-plugin-studio/CHANGELOG.md @@ -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 diff --git a/packages/astro-plugin-studio/package.json b/packages/astro-plugin-studio/package.json index c306085a8..66d28a1eb 100644 --- a/packages/astro-plugin-studio/package.json +++ b/packages/astro-plugin-studio/package.json @@ -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 ", "main": "dist/index.js", diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 23cd20e5d..d056e585a 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # @pandacss/astro +## 0.25.0 + +### Patch Changes + +- @pandacss/postcss@0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index bddc420f1..35f9f1b87 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -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", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index a55779c91..bcc1fdd23 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -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 diff --git a/packages/cli/package.json b/packages/cli/package.json index f2206078d..8652d9c9e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -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", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index b21c6f60d..6152fe7c2 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -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 diff --git a/packages/config/package.json b/packages/config/package.json index 044e1cb92..aa7b459d2 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -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", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index e29fb3410..fd3970c7a 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -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 diff --git a/packages/core/package.json b/packages/core/package.json index 400c715a4..f038fcd5a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -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", diff --git a/packages/error/CHANGELOG.md b/packages/error/CHANGELOG.md index 10e859990..bb62d23fb 100644 --- a/packages/error/CHANGELOG.md +++ b/packages/error/CHANGELOG.md @@ -1,5 +1,7 @@ # @pandacss/error +## 0.25.0 + ## 0.24.2 ## 0.24.1 diff --git a/packages/error/package.json b/packages/error/package.json index 9246052e5..6367c09bd 100644 --- a/packages/error/package.json +++ b/packages/error/package.json @@ -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 ", "main": "dist/index.js", diff --git a/packages/extractor/CHANGELOG.md b/packages/extractor/CHANGELOG.md index d9fb225f3..513b5495e 100644 --- a/packages/extractor/CHANGELOG.md +++ b/packages/extractor/CHANGELOG.md @@ -1,5 +1,7 @@ # @pandacss/extractor +## 0.25.0 + ## 0.24.2 ## 0.24.1 diff --git a/packages/extractor/package.json b/packages/extractor/package.json index 1ad29d2f5..121f57248 100644 --- a/packages/extractor/package.json +++ b/packages/extractor/package.json @@ -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", diff --git a/packages/fixture/CHANGELOG.md b/packages/fixture/CHANGELOG.md index 5dfed5a83..0ae62d057 100644 --- a/packages/fixture/CHANGELOG.md +++ b/packages/fixture/CHANGELOG.md @@ -1,5 +1,7 @@ # @pandacss/fixture +## 0.25.0 + ## 0.24.2 ## 0.24.1 diff --git a/packages/fixture/package.json b/packages/fixture/package.json index 352520df4..02c449a5c 100644 --- a/packages/fixture/package.json +++ b/packages/fixture/package.json @@ -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", diff --git a/packages/generator/CHANGELOG.md b/packages/generator/CHANGELOG.md index 859cf59da..f6164177f 100644 --- a/packages/generator/CHANGELOG.md +++ b/packages/generator/CHANGELOG.md @@ -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 diff --git a/packages/generator/package.json b/packages/generator/package.json index 73c4e95a7..60636a21e 100644 --- a/packages/generator/package.json +++ b/packages/generator/package.json @@ -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", diff --git a/packages/is-valid-prop/CHANGELOG.md b/packages/is-valid-prop/CHANGELOG.md index 8a9b5be5c..9bb76bd8b 100644 --- a/packages/is-valid-prop/CHANGELOG.md +++ b/packages/is-valid-prop/CHANGELOG.md @@ -1,5 +1,7 @@ # @pandacss/is-valid-prop +## 0.25.0 + ## 0.24.2 ## 0.24.1 diff --git a/packages/is-valid-prop/package.json b/packages/is-valid-prop/package.json index c6ebd9ce5..ad853902c 100644 --- a/packages/is-valid-prop/package.json +++ b/packages/is-valid-prop/package.json @@ -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", diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index 4c9f11555..4e1e4eb04 100644 --- a/packages/logger/CHANGELOG.md +++ b/packages/logger/CHANGELOG.md @@ -1,5 +1,7 @@ # @pandacss/logger +## 0.25.0 + ## 0.24.2 ## 0.24.1 diff --git a/packages/logger/package.json b/packages/logger/package.json index 6797c763e..f31aeb323 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -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", diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index d7de09e84..bbf54bee0 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -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 diff --git a/packages/node/package.json b/packages/node/package.json index 392f95ea2..5f604ff9d 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -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", diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md index f4d617946..31c737500 100644 --- a/packages/parser/CHANGELOG.md +++ b/packages/parser/CHANGELOG.md @@ -1,5 +1,25 @@ # @pandacss/parser +## 0.25.0 + +### Patch Changes + +- 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] + - @pandacss/types@0.25.0 + - @pandacss/config@0.25.0 + - @pandacss/extractor@0.25.0 + - @pandacss/logger@0.25.0 + - @pandacss/shared@0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/parser/package.json b/packages/parser/package.json index 6b47e6768..8f660ad85 100644 --- a/packages/parser/package.json +++ b/packages/parser/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/parser", - "version": "0.24.2", + "version": "0.25.0", "description": "The static parser for panda css", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/packages/postcss/CHANGELOG.md b/packages/postcss/CHANGELOG.md index fe18efb8e..a7edc847d 100644 --- a/packages/postcss/CHANGELOG.md +++ b/packages/postcss/CHANGELOG.md @@ -1,5 +1,12 @@ # @pandacss/postcss +## 0.25.0 + +### Patch Changes + +- Updated dependencies [bc154358] + - @pandacss/node@0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/postcss/package.json b/packages/postcss/package.json index 6edef3940..eea0ea160 100644 --- a/packages/postcss/package.json +++ b/packages/postcss/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/postcss", - "version": "0.24.2", + "version": "0.25.0", "description": "PostCSS integration for Panda CSS", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/packages/preset-atlaskit/CHANGELOG.md b/packages/preset-atlaskit/CHANGELOG.md index 0c97144b8..7f03960f6 100644 --- a/packages/preset-atlaskit/CHANGELOG.md +++ b/packages/preset-atlaskit/CHANGELOG.md @@ -1,5 +1,12 @@ # @pandacss/preset-atlaskit +## 0.25.0 + +### Patch Changes + +- Updated dependencies [59fd291c] + - @pandacss/types@0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/preset-atlaskit/package.json b/packages/preset-atlaskit/package.json index b99df0c1a..1ae9de74f 100644 --- a/packages/preset-atlaskit/package.json +++ b/packages/preset-atlaskit/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/preset-atlaskit", - "version": "0.24.2", + "version": "0.25.0", "description": "The preset for PandaCSS that contains the default theme", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/packages/preset-base/CHANGELOG.md b/packages/preset-base/CHANGELOG.md index ed0fba9e5..52db0a75e 100644 --- a/packages/preset-base/CHANGELOG.md +++ b/packages/preset-base/CHANGELOG.md @@ -1,5 +1,12 @@ # @pandacss/preset-base +## 0.25.0 + +### Patch Changes + +- Updated dependencies [59fd291c] + - @pandacss/types@0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/preset-base/package.json b/packages/preset-base/package.json index fcfc87bbd..fdf5938ac 100644 --- a/packages/preset-base/package.json +++ b/packages/preset-base/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/preset-base", - "version": "0.24.2", + "version": "0.25.0", "description": "The base preset for Panda CSS that contains the conditions and utilities", "author": "Segun Adebayo ", "main": "dist/index.js", diff --git a/packages/preset-open-props/CHANGELOG.md b/packages/preset-open-props/CHANGELOG.md index 116553f43..00f265b8b 100644 --- a/packages/preset-open-props/CHANGELOG.md +++ b/packages/preset-open-props/CHANGELOG.md @@ -1,5 +1,12 @@ # @pandacss/preset-open-props +## 0.25.0 + +### Patch Changes + +- Updated dependencies [59fd291c] + - @pandacss/types@0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/preset-open-props/package.json b/packages/preset-open-props/package.json index 0c2d29691..eeeed1e9b 100644 --- a/packages/preset-open-props/package.json +++ b/packages/preset-open-props/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/preset-open-props", - "version": "0.24.2", + "version": "0.25.0", "description": "A preset for Open Props", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/packages/preset-panda/CHANGELOG.md b/packages/preset-panda/CHANGELOG.md index 5df1f4f49..5374df041 100644 --- a/packages/preset-panda/CHANGELOG.md +++ b/packages/preset-panda/CHANGELOG.md @@ -1,5 +1,12 @@ # @pandacss/preset-panda +## 0.25.0 + +### Patch Changes + +- Updated dependencies [59fd291c] + - @pandacss/types@0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/preset-panda/package.json b/packages/preset-panda/package.json index c81a59a7e..53cf92d87 100644 --- a/packages/preset-panda/package.json +++ b/packages/preset-panda/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/preset-panda", - "version": "0.24.2", + "version": "0.25.0", "description": "The preset for PandaCSS that contains the default theme", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/packages/shared/CHANGELOG.md b/packages/shared/CHANGELOG.md index 4b4860d22..cbb49fe14 100644 --- a/packages/shared/CHANGELOG.md +++ b/packages/shared/CHANGELOG.md @@ -1,5 +1,7 @@ # @pandacss/shared +## 0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/shared/package.json b/packages/shared/package.json index d64daa2e3..ea5f3f372 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/shared", - "version": "0.24.2", + "version": "0.25.0", "description": "Shared utilities for css panda", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/packages/studio/CHANGELOG.md b/packages/studio/CHANGELOG.md index ab60741e3..277d02760 100644 --- a/packages/studio/CHANGELOG.md +++ b/packages/studio/CHANGELOG.md @@ -1,5 +1,18 @@ # @pandacss/studio +## 0.25.0 + +### Patch Changes + +- Updated dependencies [59fd291c] +- Updated dependencies [de282f60] + - @pandacss/types@0.25.0 + - @pandacss/token-dictionary@0.25.0 + - @pandacss/astro-plugin-studio@0.25.0 + - @pandacss/config@0.25.0 + - @pandacss/logger@0.25.0 + - @pandacss/shared@0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/studio/package.json b/packages/studio/package.json index 675767a14..582fc64b0 100644 --- a/packages/studio/package.json +++ b/packages/studio/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/studio", - "version": "0.24.2", + "version": "0.25.0", "description": "The automated token documentation for Panda CSS", "main": "dist/studio.js", "module": "dist/studio.mjs", diff --git a/packages/token-dictionary/CHANGELOG.md b/packages/token-dictionary/CHANGELOG.md index 34cf023b7..346308492 100644 --- a/packages/token-dictionary/CHANGELOG.md +++ b/packages/token-dictionary/CHANGELOG.md @@ -1,5 +1,56 @@ # @pandacss/token-dictionary +## 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 + +- Updated dependencies [59fd291c] + - @pandacss/types@0.25.0 + - @pandacss/shared@0.25.0 + ## 0.24.2 ### Patch Changes diff --git a/packages/token-dictionary/package.json b/packages/token-dictionary/package.json index 45f4fc39f..993533dd5 100644 --- a/packages/token-dictionary/package.json +++ b/packages/token-dictionary/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/token-dictionary", - "version": "0.24.2", + "version": "0.25.0", "description": "Common error messages for css panda", "main": "dist/index.js", "module": "dist/index.mjs", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 72101505e..de02f43b1 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,11 @@ # @pandacss/types +## 0.25.0 + +### Patch Changes + +- 59fd291c: Add a way to generate the staticCss for _all_ recipes (and all variants of each recipe) + ## 0.24.2 ### Patch Changes diff --git a/packages/types/package.json b/packages/types/package.json index e151fe894..bb57a052f 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@pandacss/types", - "version": "0.24.2", + "version": "0.25.0", "description": "The types for css panda", "main": "dist/index.d.ts", "author": "Segun Adebayo ",