Skip to content

Commit d1973ea

Browse files
authored
Version Packages (#51)
1 parent 58e4f8a commit d1973ea

File tree

17 files changed

+102
-54
lines changed

17 files changed

+102
-54
lines changed

.changeset/dry-chairs-sit.md

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

.changeset/lovely-tigers-applaud.md

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

.changeset/thirty-peas-dance.md

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

fixtures/low-level/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"author": "SEEK",
66
"private": true,
77
"dependencies": {
8-
"@vanilla-extract/css": "0.3.2"
8+
"@vanilla-extract/css": "0.4.0"
99
}
1010
}

fixtures/sprinkles/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "SEEK",
77
"private": true,
88
"dependencies": {
9-
"@vanilla-extract/css": "0.3.2",
9+
"@vanilla-extract/css": "0.4.0",
1010
"@vanilla-extract/sprinkles": "0.1.0"
1111
}
1212
}

fixtures/themed/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "SEEK",
77
"private": true,
88
"dependencies": {
9-
"@vanilla-extract/css": "0.3.2",
9+
"@vanilla-extract/css": "0.4.0",
1010
"@vanilla-extract/dynamic": "0.1.0"
1111
}
1212
}

fixtures/unused-modules/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"author": "SEEK",
99
"private": true,
1010
"dependencies": {
11-
"@vanilla-extract/css": "0.3.2"
11+
"@vanilla-extract/css": "0.4.0"
1212
}
1313
}

packages/babel-plugin/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @vanilla-extract/babel-plugin
22

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- [#52](https://github.com/seek-oss/vanilla-extract/pull/52) [`2d98bcc`](https://github.com/seek-oss/vanilla-extract/commit/2d98bccb40603585cf9eab70ff0afc52c33f803d) Thanks [@markdalgleish](https://github.com/markdalgleish)! - Rename `createThemeVars` to `createThemeContract`
8+
9+
**BREAKING CHANGE**
10+
11+
```diff
12+
import {
13+
- createThemeVars,
14+
+ createThemeContract,
15+
createTheme
16+
} from '@vanilla-extract/css';
17+
18+
-export const vars = createThemeVars({
19+
+export const vars = createThemeContract({
20+
color: {
21+
brand: null
22+
},
23+
font: {
24+
body: null
25+
}
26+
});
27+
```
28+
329
## 0.3.1
430

531
### Patch Changes

packages/babel-plugin/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/babel-plugin",
3-
"version": "0.3.1",
3+
"version": "0.4.0",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"main": "dist/vanilla-extract-babel-plugin.cjs.js",
66
"module": "dist/vanilla-extract-babel-plugin.esm.js",

packages/css/CHANGELOG.md

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

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- [#52](https://github.com/seek-oss/vanilla-extract/pull/52) [`2d98bcc`](https://github.com/seek-oss/vanilla-extract/commit/2d98bccb40603585cf9eab70ff0afc52c33f803d) Thanks [@markdalgleish](https://github.com/markdalgleish)! - Rename `createThemeVars` to `createThemeContract`
8+
9+
**BREAKING CHANGE**
10+
11+
```diff
12+
import {
13+
- createThemeVars,
14+
+ createThemeContract,
15+
createTheme
16+
} from '@vanilla-extract/css';
17+
18+
-export const vars = createThemeVars({
19+
+export const vars = createThemeContract({
20+
color: {
21+
brand: null
22+
},
23+
font: {
24+
body: null
25+
}
26+
});
27+
```
28+
29+
### Patch Changes
30+
31+
- [#50](https://github.com/seek-oss/vanilla-extract/pull/50) [`48c4a78`](https://github.com/seek-oss/vanilla-extract/commit/48c4a7866a8361de712b89b06abb380bf4709656) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Allow vars to be passed as values to all style properties
32+
333
## 0.3.2
434

535
### Patch Changes

0 commit comments

Comments
 (0)