Skip to content

Commit ac3299d

Browse files
authored
Version Packages (#153)
1 parent 98907f9 commit ac3299d

File tree

14 files changed

+49
-48
lines changed

14 files changed

+49
-48
lines changed

.changeset/dirty-fireants-leave.md

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

.changeset/rare-peas-provide.md

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

.changeset/selfish-maps-care.md

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

.changeset/sweet-crews-kiss.md

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

examples/webpack-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"@babel/preset-react": "^7.13.13",
2424
"@babel/preset-typescript": "^7.13.0",
2525
"@vanilla-extract/babel-plugin": "^0.4.2",
26-
"@vanilla-extract/css": "0.5.1",
27-
"@vanilla-extract/sprinkles": "^0.3.2",
26+
"@vanilla-extract/css": "0.5.2",
27+
"@vanilla-extract/sprinkles": "^0.4.0",
2828
"@vanilla-extract/webpack-plugin": "^0.3.1",
2929
"babel-loader": "^8.2.2",
3030
"css-loader": "^5.2.4",

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.5.1"
8+
"@vanilla-extract/css": "0.5.2"
99
}
1010
}

fixtures/sprinkles/package.json

Lines changed: 2 additions & 2 deletions
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.5.1",
10-
"@vanilla-extract/sprinkles": "0.3.2"
9+
"@vanilla-extract/css": "0.5.2",
10+
"@vanilla-extract/sprinkles": "0.4.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.5.1",
9+
"@vanilla-extract/css": "0.5.2",
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.5.1"
11+
"@vanilla-extract/css": "0.5.2"
1212
}
1313
}

packages/css/CHANGELOG.md

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

3+
## 0.5.2
4+
5+
### Patch Changes
6+
7+
- [#154](https://github.com/seek-oss/vanilla-extract/pull/154) [`f5ab957`](https://github.com/seek-oss/vanilla-extract/commit/f5ab957b34586886ef428b58de1f2b55b4ab65e0) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Improved conditional CSS rendering
8+
9+
Previously all conditional CSS (@media and @supports) in a `.css.ts` file would merge together. This meant each unique query (e.g. `@media screen and (min-width: 700px)`) would only be rendered once. This output is ideal for file size but can lead to the conditions being rendered in the wrong order. The new strategy will still merge conditions together but only if it is considered safe to do so.
10+
11+
* [#152](https://github.com/seek-oss/vanilla-extract/pull/152) [`ae532f5`](https://github.com/seek-oss/vanilla-extract/commit/ae532f5a112c0e89a510fea224b43c6706ce6ac2) Thanks [@Saartje87](https://github.com/Saartje87)! - Added support for the following simple pseudo selectors
12+
13+
- `::-webkit-resizer`
14+
- `::-webkit-scrollbar-button`
15+
- `::-webkit-scrollbar-corner`
16+
- `::-webkit-scrollbar-thumb`
17+
- `::-webkit-scrollbar-track-piece`
18+
- `::-webkit-scrollbar-track`
19+
- `::-webkit-scrollbar`
20+
321
## 0.5.1
422

523
### Patch Changes

0 commit comments

Comments
 (0)