Skip to content

Commit 4cb94ab

Browse files
Version Packages (#1667)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3f96892 commit 4cb94ab

File tree

26 files changed

+111
-58
lines changed

26 files changed

+111
-58
lines changed

.changeset/gentle-goats-guess.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/honest-lamps-complain.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/hungry-radios-accept.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/little-mangos-type.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/shaggy-walls-sit.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/tender-beans-cheat.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

packages/compiler/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @vanilla-extract/compiler
22

3+
## 0.3.4
4+
5+
### Patch Changes
6+
7+
- [#1665](https://github.com/vanilla-extract-css/vanilla-extract/pull/1665) [`352fc19`](https://github.com/vanilla-extract-css/vanilla-extract/commit/352fc19169e5f0233f8135842857399ccd46727d) Thanks [@askoufis](https://github.com/askoufis)! - Pass through `viteConfig.build.assetsInlineLimit` to the compiler's `vite` server
8+
9+
- Updated dependencies [[`a440470`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a440470b9912aab705ae32cd5248ff6479535704), [`0b2c09e`](https://github.com/vanilla-extract-css/vanilla-extract/commit/0b2c09e0fec1bee0e996f1920a106daab471178a), [`c6047fb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c6047fbe3f5e55a45780aa3dffd478a7743b8b3a), [`8b49b35`](https://github.com/vanilla-extract-css/vanilla-extract/commit/8b49b354d4364ce6e0db5e8ba16c92ca3e6b9cea)]:
10+
- @vanilla-extract/integration@8.0.7
11+
- @vanilla-extract/css@1.18.0
12+
313
## 0.3.3
414

515
### Patch Changes

packages/compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vanilla-extract/compiler",
3-
"version": "0.3.3",
3+
"version": "0.3.4",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"main": "dist/vanilla-extract-compiler.cjs.js",
66
"module": "dist/vanilla-extract-compiler.esm.js",

packages/css/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# @vanilla-extract/css
22

3+
## 1.18.0
4+
5+
### Minor Changes
6+
7+
- [#1566](https://github.com/vanilla-extract-css/vanilla-extract/pull/1566) [`8b49b35`](https://github.com/vanilla-extract-css/vanilla-extract/commit/8b49b354d4364ce6e0db5e8ba16c92ca3e6b9cea) Thanks [@lfantone](https://github.com/lfantone)! - `style`: Add support for `@starting-style` rules
8+
9+
**EXAMPLE USAGE**:
10+
11+
```ts
12+
import { style } from '@vanilla-extact/css';
13+
export const styleWithStartingStyle = style({
14+
backgroundColor: 'black',
15+
'@starting-style': {
16+
backgroundColor: 'white'
17+
}
18+
});
19+
```
20+
21+
### Patch Changes
22+
23+
- [#1646](https://github.com/vanilla-extract-css/vanilla-extract/pull/1646) [`0b2c09e`](https://github.com/vanilla-extract-css/vanilla-extract/commit/0b2c09e0fec1bee0e996f1920a106daab471178a) Thanks [@plesiecki](https://github.com/plesiecki)! - Swap the order of `createVar`'s overloads to enable inference of `VarDelcaration` type
24+
25+
- [#1666](https://github.com/vanilla-extract-css/vanilla-extract/pull/1666) [`c6047fb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c6047fbe3f5e55a45780aa3dffd478a7743b8b3a) Thanks [@askoufis](https://github.com/askoufis)! - Remove custom container properties type
26+
27+
The [`csstype`] package used by Vanilla Extract now provides types for container properties, so the custom type definitions that were previously necessary have been removed.
28+
29+
[`csstype`]: https://www.npmjs.com/package/csstype
30+
331
## 1.17.5
432

533
### Patch Changes

packages/css/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vanilla-extract/css",
3-
"version": "1.17.5",
3+
"version": "1.18.0",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"sideEffects": true,
66
"main": "dist/vanilla-extract-css.cjs.js",

0 commit comments

Comments
 (0)