diff --git a/.changeset/bright-cooks-pay.md b/.changeset/bright-cooks-pay.md deleted file mode 100644 index 01d8b5e3..00000000 --- a/.changeset/bright-cooks-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@vanilla-extract/next-plugin': patch ---- - -Fixes Next.js 13.5.x CSS output on Windows when using React Server Components diff --git a/.changeset/fast-wombats-joke.md b/.changeset/fast-wombats-joke.md deleted file mode 100644 index 8a80dbb9..00000000 --- a/.changeset/fast-wombats-joke.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -'@vanilla-extract/dynamic': minor ---- - -`assignInlineVars` now accepts `null` and `undefined` values - -Variables with a value of `null` or `undefined` will be omitted from the resulting inline style. - -**NOTE:** This only applies to the case where a theme contract is not provided. - -```tsx -import { assignInlineVars } from '@vanilla-extract/dynamic'; -import { - container, - brandColor, - textColor -} from './styles.css.ts'; - -// If `tone` is `undefined`, the following inline style becomes: -// { '--brandColor__8uideo0': 'pink' } - -const MyComponent = ({ tone }: { tone?: critical }) => ( -
- ... -
-); -``` diff --git a/.changeset/fifty-buses-protect.md b/.changeset/fifty-buses-protect.md deleted file mode 100644 index f23758d4..00000000 --- a/.changeset/fifty-buses-protect.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vanilla-extract/integration": patch ---- - -Ensure userland babel config can not affect integration transforms diff --git a/.changeset/grumpy-suns-doubt.md b/.changeset/grumpy-suns-doubt.md deleted file mode 100644 index bd707f2f..00000000 --- a/.changeset/grumpy-suns-doubt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vanilla-extract/recipes": patch ---- - -Improve IDE hover of `RecipeVariants` type by explicitly resolving its output diff --git a/.changeset/metal-bags-leave.md b/.changeset/metal-bags-leave.md deleted file mode 100644 index b63c2c14..00000000 --- a/.changeset/metal-bags-leave.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -'@vanilla-extract/dynamic': minor ---- - -`setElementVars` now accepts `null` and `undefined` values - -Variables with a value of `null` or `undefined` will not be assigned a value. - -**NOTE:** This only applies to the case where a theme contract is not provided. - -```ts -import { setElementVars } from '@vanilla-extract/dynamic'; -import { brandColor, textColor } from './styles.css.ts'; - -const el = document.getElementById('myElement'); - -setElementVars(el, { - [brandColor]: 'pink', - [textColor]: null -}); -``` diff --git a/.changeset/new-kangaroos-punch.md b/.changeset/new-kangaroos-punch.md deleted file mode 100644 index 441c7438..00000000 --- a/.changeset/new-kangaroos-punch.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@vanilla-extract/css": minor ---- - -Add some missing [simple pseudo selectors] - -[simple pseudo selectors]: https://vanilla-extract.style/documentation/styling/#simple-pseudo-selectors diff --git a/.changeset/strange-terms-hang.md b/.changeset/strange-terms-hang.md deleted file mode 100644 index e5eafb68..00000000 --- a/.changeset/strange-terms-hang.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@vanilla-extract/css': patch ---- - -Replace dependency `ahocorasick` with `modern-ahocorasick` diff --git a/examples/webpack-react/CHANGELOG.md b/examples/webpack-react/CHANGELOG.md index cb4111e9..9ae20aea 100644 --- a/examples/webpack-react/CHANGELOG.md +++ b/examples/webpack-react/CHANGELOG.md @@ -1,5 +1,12 @@ # vanilla-extract-example-webpack-react +## 0.0.25 + +### Patch Changes + +- Updated dependencies [[`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4), [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99)]: + - @vanilla-extract/css@1.14.0 + ## 0.0.24 ### Patch Changes diff --git a/examples/webpack-react/package.json b/examples/webpack-react/package.json index e4235ebf..f52bb69b 100644 --- a/examples/webpack-react/package.json +++ b/examples/webpack-react/package.json @@ -10,7 +10,7 @@ "webpack", "react" ], - "version": "0.0.24", + "version": "0.0.25", "main": "src/index.ts", "author": "SEEK", "scripts": { @@ -22,7 +22,7 @@ "@babel/preset-env": "^7.20.2", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@vanilla-extract/css": "1.13.0", + "@vanilla-extract/css": "1.14.0", "@vanilla-extract/sprinkles": "^1.6.1", "@vanilla-extract/webpack-plugin": "^2.3.0", "babel-loader": "^8.2.2", diff --git a/fixtures/features/CHANGELOG.md b/fixtures/features/CHANGELOG.md index d4434926..f6ee8736 100644 --- a/fixtures/features/CHANGELOG.md +++ b/fixtures/features/CHANGELOG.md @@ -1,5 +1,13 @@ # @fixtures/features +## 0.0.23 + +### Patch Changes + +- Updated dependencies [[`ca854f5`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ca854f51d5068fb1105a44b3d9af2852d4b61839), [`ca854f5`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ca854f51d5068fb1105a44b3d9af2852d4b61839), [`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4), [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99)]: + - @vanilla-extract/dynamic@2.1.0 + - @vanilla-extract/css@1.14.0 + ## 0.0.22 ### Patch Changes diff --git a/fixtures/features/package.json b/fixtures/features/package.json index 4265b494..deb72f99 100644 --- a/fixtures/features/package.json +++ b/fixtures/features/package.json @@ -1,12 +1,12 @@ { "name": "@fixtures/features", - "version": "0.0.22", + "version": "0.0.23", "main": "src/index.ts", "sideEffects": true, "author": "SEEK", "private": true, "dependencies": { - "@vanilla-extract/css": "1.13.0", - "@vanilla-extract/dynamic": "2.0.3" + "@vanilla-extract/css": "1.14.0", + "@vanilla-extract/dynamic": "2.1.0" } } diff --git a/fixtures/layers/CHANGELOG.md b/fixtures/layers/CHANGELOG.md index 6e9fedb4..7156f582 100644 --- a/fixtures/layers/CHANGELOG.md +++ b/fixtures/layers/CHANGELOG.md @@ -1,5 +1,12 @@ # @fixtures/layers +## 0.0.6 + +### Patch Changes + +- Updated dependencies [[`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4), [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99)]: + - @vanilla-extract/css@1.14.0 + ## 0.0.5 ### Patch Changes diff --git a/fixtures/layers/package.json b/fixtures/layers/package.json index 75a40919..b1e6e322 100644 --- a/fixtures/layers/package.json +++ b/fixtures/layers/package.json @@ -1,10 +1,10 @@ { "name": "@fixtures/layers", - "version": "0.0.5", + "version": "0.0.6", "main": "src/index.ts", "author": "SEEK", "private": true, "dependencies": { - "@vanilla-extract/css": "1.13.0" + "@vanilla-extract/css": "1.14.0" } } diff --git a/fixtures/low-level/CHANGELOG.md b/fixtures/low-level/CHANGELOG.md index 85f268c1..b26d3c6e 100644 --- a/fixtures/low-level/CHANGELOG.md +++ b/fixtures/low-level/CHANGELOG.md @@ -1,5 +1,12 @@ # @fixtures/low-level +## 0.0.23 + +### Patch Changes + +- Updated dependencies [[`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4), [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99)]: + - @vanilla-extract/css@1.14.0 + ## 0.0.22 ### Patch Changes diff --git a/fixtures/low-level/package.json b/fixtures/low-level/package.json index 3341b1bf..7ba2c6b0 100644 --- a/fixtures/low-level/package.json +++ b/fixtures/low-level/package.json @@ -1,10 +1,10 @@ { "name": "@fixtures/low-level", - "version": "0.0.22", + "version": "0.0.23", "main": "src/index.ts", "author": "SEEK", "private": true, "dependencies": { - "@vanilla-extract/css": "1.13.0" + "@vanilla-extract/css": "1.14.0" } } diff --git a/fixtures/recipes/CHANGELOG.md b/fixtures/recipes/CHANGELOG.md index eda8becb..c69db921 100644 --- a/fixtures/recipes/CHANGELOG.md +++ b/fixtures/recipes/CHANGELOG.md @@ -1,5 +1,13 @@ # @fixtures/recipes +## 0.0.26 + +### Patch Changes + +- Updated dependencies [[`d16c22f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/d16c22f19d86bf01c1fc4bf4c8914786fb0b9cc9), [`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4), [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99)]: + - @vanilla-extract/recipes@0.5.1 + - @vanilla-extract/css@1.14.0 + ## 0.0.25 ### Patch Changes diff --git a/fixtures/recipes/package.json b/fixtures/recipes/package.json index 9c99e46a..7e0dd5ef 100644 --- a/fixtures/recipes/package.json +++ b/fixtures/recipes/package.json @@ -1,12 +1,12 @@ { "name": "@fixtures/recipes", - "version": "0.0.25", + "version": "0.0.26", "main": "src/index.ts", "sideEffects": true, "author": "SEEK", "private": true, "dependencies": { - "@vanilla-extract/css": "1.13.0", - "@vanilla-extract/recipes": "0.5.0" + "@vanilla-extract/css": "1.14.0", + "@vanilla-extract/recipes": "0.5.1" } } diff --git a/fixtures/sprinkles/CHANGELOG.md b/fixtures/sprinkles/CHANGELOG.md index 5b2fe455..708e9e04 100644 --- a/fixtures/sprinkles/CHANGELOG.md +++ b/fixtures/sprinkles/CHANGELOG.md @@ -1,5 +1,12 @@ # @fixtures/sprinkles +## 0.0.28 + +### Patch Changes + +- Updated dependencies [[`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4), [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99)]: + - @vanilla-extract/css@1.14.0 + ## 0.0.27 ### Patch Changes diff --git a/fixtures/sprinkles/package.json b/fixtures/sprinkles/package.json index 7ac8c170..59da8e28 100644 --- a/fixtures/sprinkles/package.json +++ b/fixtures/sprinkles/package.json @@ -1,12 +1,12 @@ { "name": "@fixtures/sprinkles", - "version": "0.0.27", + "version": "0.0.28", "main": "src/index.ts", "sideEffects": true, "author": "SEEK", "private": true, "dependencies": { - "@vanilla-extract/css": "1.13.0", + "@vanilla-extract/css": "1.14.0", "@vanilla-extract/sprinkles": "1.6.1" } } diff --git a/fixtures/themed/CHANGELOG.md b/fixtures/themed/CHANGELOG.md index 66386fbd..cfd6f881 100644 --- a/fixtures/themed/CHANGELOG.md +++ b/fixtures/themed/CHANGELOG.md @@ -1,5 +1,13 @@ # @fixtures/themed +## 0.0.23 + +### Patch Changes + +- Updated dependencies [[`ca854f5`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ca854f51d5068fb1105a44b3d9af2852d4b61839), [`ca854f5`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ca854f51d5068fb1105a44b3d9af2852d4b61839), [`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4), [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99)]: + - @vanilla-extract/dynamic@2.1.0 + - @vanilla-extract/css@1.14.0 + ## 0.0.22 ### Patch Changes diff --git a/fixtures/themed/package.json b/fixtures/themed/package.json index cd3c44c1..cc340120 100644 --- a/fixtures/themed/package.json +++ b/fixtures/themed/package.json @@ -1,12 +1,12 @@ { "name": "@fixtures/themed", - "version": "0.0.22", + "version": "0.0.23", "main": "src/index.ts", "sideEffects": true, "author": "SEEK", "private": true, "dependencies": { - "@vanilla-extract/css": "1.13.0", - "@vanilla-extract/dynamic": "2.0.3" + "@vanilla-extract/css": "1.14.0", + "@vanilla-extract/dynamic": "2.1.0" } } diff --git a/fixtures/unused-modules/CHANGELOG.md b/fixtures/unused-modules/CHANGELOG.md index 8351d2ad..f8bfe54c 100644 --- a/fixtures/unused-modules/CHANGELOG.md +++ b/fixtures/unused-modules/CHANGELOG.md @@ -1,5 +1,12 @@ # @fixtures/unused-modules +## 1.0.23 + +### Patch Changes + +- Updated dependencies [[`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4), [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99)]: + - @vanilla-extract/css@1.14.0 + ## 1.0.22 ### Patch Changes diff --git a/fixtures/unused-modules/package.json b/fixtures/unused-modules/package.json index 9538e0e5..9f4bb074 100644 --- a/fixtures/unused-modules/package.json +++ b/fixtures/unused-modules/package.json @@ -1,6 +1,6 @@ { "name": "@fixtures/unused-modules", - "version": "1.0.22", + "version": "1.0.23", "main": "src/index.ts", "sideEffects": [ "src/global.css.ts" @@ -8,6 +8,6 @@ "author": "SEEK", "private": true, "dependencies": { - "@vanilla-extract/css": "1.13.0" + "@vanilla-extract/css": "1.14.0" } } diff --git a/packages/css/CHANGELOG.md b/packages/css/CHANGELOG.md index 626fa73e..70dcf00e 100644 --- a/packages/css/CHANGELOG.md +++ b/packages/css/CHANGELOG.md @@ -1,5 +1,17 @@ # @vanilla-extract/css +## 1.14.0 + +### Minor Changes + +- [#1207](https://github.com/vanilla-extract-css/vanilla-extract/pull/1207) [`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4) Thanks [@CroModder](https://github.com/CroModder)! - Add some missing [simple pseudo selectors] + + [simple pseudo selectors]: https://vanilla-extract.style/documentation/styling/#simple-pseudo-selectors + +### Patch Changes + +- [#1215](https://github.com/vanilla-extract-css/vanilla-extract/pull/1215) [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99) Thanks [@mrm007](https://github.com/mrm007)! - Replace dependency `ahocorasick` with `modern-ahocorasick` + ## 1.13.0 ### Minor Changes @@ -70,7 +82,7 @@ [cascade layers]: https://developer.mozilla.org/en-US/docs/Web/CSS/@layer [layer]: https://vanilla-extract.style/documentation/api/layer - [globalLayer]: https://vanilla-extract.style/documentation/global-api/global-layer + [globallayer]: https://vanilla-extract.style/documentation/global-api/global-layer ## 1.10.0 @@ -399,7 +411,7 @@ body: 'font-body', }, }, - value => `prefix-${value}`, + (value) => `prefix-${value}`, ); ``` diff --git a/packages/css/package.json b/packages/css/package.json index fa0a2af9..e066448a 100644 --- a/packages/css/package.json +++ b/packages/css/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/css", - "version": "1.13.0", + "version": "1.14.0", "description": "Zero-runtime Stylesheets-in-TypeScript", "sideEffects": true, "main": "dist/vanilla-extract-css.cjs.js", diff --git a/packages/dynamic/CHANGELOG.md b/packages/dynamic/CHANGELOG.md index f2021ab3..9399c494 100644 --- a/packages/dynamic/CHANGELOG.md +++ b/packages/dynamic/CHANGELOG.md @@ -1,5 +1,53 @@ # @vanilla-extract/dynamic +## 2.1.0 + +### Minor Changes + +- [#1175](https://github.com/vanilla-extract-css/vanilla-extract/pull/1175) [`ca854f5`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ca854f51d5068fb1105a44b3d9af2852d4b61839) Thanks [@youngkyo0504](https://github.com/youngkyo0504)! - `assignInlineVars` now accepts `null` and `undefined` values + + Variables with a value of `null` or `undefined` will be omitted from the resulting inline style. + + **NOTE:** This only applies to the case where a theme contract is not provided. + + ```tsx + import { assignInlineVars } from '@vanilla-extract/dynamic'; + import { container, brandColor, textColor } from './styles.css.ts'; + + // If `tone` is `undefined`, the following inline style becomes: + // { '--brandColor__8uideo0': 'pink' } + + const MyComponent = ({ tone }: { tone?: critical }) => ( +
+ ... +
+ ); + ``` + +- [#1175](https://github.com/vanilla-extract-css/vanilla-extract/pull/1175) [`ca854f5`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ca854f51d5068fb1105a44b3d9af2852d4b61839) Thanks [@youngkyo0504](https://github.com/youngkyo0504)! - `setElementVars` now accepts `null` and `undefined` values + + Variables with a value of `null` or `undefined` will not be assigned a value. + + **NOTE:** This only applies to the case where a theme contract is not provided. + + ```ts + import { setElementVars } from '@vanilla-extract/dynamic'; + import { brandColor, textColor } from './styles.css.ts'; + + const el = document.getElementById('myElement'); + + setElementVars(el, { + [brandColor]: 'pink', + [textColor]: null, + }); + ``` + ## 2.0.3 ### Patch Changes diff --git a/packages/dynamic/package.json b/packages/dynamic/package.json index 766ccb14..402cbed1 100644 --- a/packages/dynamic/package.json +++ b/packages/dynamic/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/dynamic", - "version": "2.0.3", + "version": "2.1.0", "description": "Zero-runtime Stylesheets-in-TypeScript", "sideEffects": false, "main": "dist/vanilla-extract-dynamic.cjs.js", diff --git a/packages/integration/CHANGELOG.md b/packages/integration/CHANGELOG.md index dc763b7d..716a52a3 100644 --- a/packages/integration/CHANGELOG.md +++ b/packages/integration/CHANGELOG.md @@ -1,5 +1,14 @@ # @vanilla-extract/integration +## 6.2.3 + +### Patch Changes + +- [#1195](https://github.com/vanilla-extract-css/vanilla-extract/pull/1195) [`c446b5e`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c446b5e95ee4e64f7af0da484d2dda81a7f6a522) Thanks [@HelloWorld017](https://github.com/HelloWorld017)! - Ensure userland babel config can not affect integration transforms + +- Updated dependencies [[`906d288`](https://github.com/vanilla-extract-css/vanilla-extract/commit/906d28881d2c3cc1f5a49f00b8b697df66a5baa4), [`911c8b7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/911c8b7b95b1164d2ad5fbf555209df9e8b3ad99)]: + - @vanilla-extract/css@1.14.0 + ## 6.2.2 ### Patch Changes diff --git a/packages/integration/package.json b/packages/integration/package.json index a2e9d1b0..c8942f2e 100644 --- a/packages/integration/package.json +++ b/packages/integration/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/integration", - "version": "6.2.2", + "version": "6.2.3", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-integration.cjs.js", "files": [ @@ -17,7 +17,7 @@ "@babel/core": "^7.20.7", "@babel/plugin-syntax-typescript": "^7.20.0", "@vanilla-extract/babel-plugin-debug-ids": "^1.0.2", - "@vanilla-extract/css": "^1.10.0", + "@vanilla-extract/css": "^1.14.0", "esbuild": "0.17.6", "eval": "0.1.8", "find-up": "^5.0.0", diff --git a/packages/next-plugin/CHANGELOG.md b/packages/next-plugin/CHANGELOG.md index 2a3eb2e8..5d7c5c09 100644 --- a/packages/next-plugin/CHANGELOG.md +++ b/packages/next-plugin/CHANGELOG.md @@ -1,5 +1,11 @@ # @vanilla-extract/next-plugin +## 2.3.2 + +### Patch Changes + +- [#1193](https://github.com/vanilla-extract-css/vanilla-extract/pull/1193) [`a22dd4d`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a22dd4da82e4338b8f13fdf66827f6e061ff2038) Thanks [@syfxlin](https://github.com/syfxlin)! - Fixes Next.js 13.5.x CSS output on Windows when using React Server Components + ## 2.3.1 ### Patch Changes diff --git a/packages/next-plugin/package.json b/packages/next-plugin/package.json index f6d1cf95..d295f2ae 100644 --- a/packages/next-plugin/package.json +++ b/packages/next-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/next-plugin", - "version": "2.3.1", + "version": "2.3.2", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-next-plugin.cjs.js", "module": "dist/vanilla-extract-next-plugin.esm.js", diff --git a/packages/recipes/CHANGELOG.md b/packages/recipes/CHANGELOG.md index 332f361e..ccffd693 100644 --- a/packages/recipes/CHANGELOG.md +++ b/packages/recipes/CHANGELOG.md @@ -1,5 +1,11 @@ # @vanilla-extract/recipes +## 0.5.1 + +### Patch Changes + +- [#1161](https://github.com/vanilla-extract-css/vanilla-extract/pull/1161) [`d16c22f`](https://github.com/vanilla-extract-css/vanilla-extract/commit/d16c22f19d86bf01c1fc4bf4c8914786fb0b9cc9) Thanks [@PrettyCoffee](https://github.com/PrettyCoffee)! - Improve IDE hover of `RecipeVariants` type by explicitly resolving its output + ## 0.5.0 ### Minor Changes diff --git a/packages/recipes/package.json b/packages/recipes/package.json index 65857dc3..4b584b0a 100644 --- a/packages/recipes/package.json +++ b/packages/recipes/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/recipes", - "version": "0.5.0", + "version": "0.5.1", "description": "Create multi-variant styles with a type-safe runtime API, heavily inspired by https://stitches.dev", "sideEffects": false, "main": "dist/vanilla-extract-recipes.cjs.js", @@ -37,6 +37,6 @@ "@vanilla-extract/css": "^1.0.0" }, "devDependencies": { - "@vanilla-extract/css": "^1.9.2" + "@vanilla-extract/css": "^1.14.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3288cc11..7a82b529 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -126,7 +126,7 @@ importers: specifier: ^7.18.6 version: 7.18.6(@babel/core@7.20.7) '@vanilla-extract/css': - specifier: 1.13.0 + specifier: 1.14.0 version: link:../../packages/css '@vanilla-extract/sprinkles': specifier: ^1.6.1 @@ -181,37 +181,37 @@ importers: fixtures/features: dependencies: '@vanilla-extract/css': - specifier: 1.13.0 + specifier: 1.14.0 version: link:../../packages/css '@vanilla-extract/dynamic': - specifier: 2.0.3 + specifier: 2.1.0 version: link:../../packages/dynamic fixtures/layers: dependencies: '@vanilla-extract/css': - specifier: 1.13.0 + specifier: 1.14.0 version: link:../../packages/css fixtures/low-level: dependencies: '@vanilla-extract/css': - specifier: 1.13.0 + specifier: 1.14.0 version: link:../../packages/css fixtures/recipes: dependencies: '@vanilla-extract/css': - specifier: 1.13.0 + specifier: 1.14.0 version: link:../../packages/css '@vanilla-extract/recipes': - specifier: 0.5.0 + specifier: 0.5.1 version: link:../../packages/recipes fixtures/sprinkles: dependencies: '@vanilla-extract/css': - specifier: 1.13.0 + specifier: 1.14.0 version: link:../../packages/css '@vanilla-extract/sprinkles': specifier: 1.6.1 @@ -220,16 +220,16 @@ importers: fixtures/themed: dependencies: '@vanilla-extract/css': - specifier: 1.13.0 + specifier: 1.14.0 version: link:../../packages/css '@vanilla-extract/dynamic': - specifier: 2.0.3 + specifier: 2.1.0 version: link:../../packages/dynamic fixtures/unused-modules: dependencies: '@vanilla-extract/css': - specifier: 1.13.0 + specifier: 1.14.0 version: link:../../packages/css packages/babel-plugin-debug-ids: @@ -324,7 +324,7 @@ importers: specifier: ^1.0.2 version: link:../babel-plugin-debug-ids '@vanilla-extract/css': - specifier: ^1.10.0 + specifier: ^1.14.0 version: link:../css esbuild: specifier: 0.17.6 @@ -401,7 +401,7 @@ importers: packages/recipes: devDependencies: '@vanilla-extract/css': - specifier: ^1.9.2 + specifier: ^1.14.0 version: link:../css packages/rollup-plugin: