Skip to content

Commit 383bf1e

Browse files
Version Packages (#1561)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6488e28 commit 383bf1e

28 files changed

+121
-43
lines changed

.changeset/large-glasses-travel.md

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

.changeset/nervous-cougars-glow.md

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

.changeset/two-kids-relax.md

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

.changeset/warm-seahorses-taste.md

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

packages/compiler/CHANGELOG.md

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

3+
## 0.1.3
4+
5+
### Patch Changes
6+
7+
- [#1583](https://github.com/vanilla-extract-css/vanilla-extract/pull/1583) [`6488e28`](https://github.com/vanilla-extract-css/vanilla-extract/commit/6488e28337106582231b418778c884f26e393219) Thanks [@askoufis](https://github.com/askoufis)! - Ignore Vite `base` config
8+
9+
Fixes a bug where imported asset URLs would be transformed by the compiler when setting the `base` option in Vite, resulting in incorrect resolution and bundling of these assets during the build process.
10+
11+
- Updated dependencies [[`134117d`](https://github.com/vanilla-extract-css/vanilla-extract/commit/134117d32e25d92edc24c8c863d757294d7b5df8), [`c66be53`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c66be53d600802b2922da1d6034e2a5ff3fbbcae)]:
12+
- @vanilla-extract/css@1.17.2
13+
- @vanilla-extract/integration@8.0.2
14+
315
## 0.1.2
416

517
### 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.1.2",
3+
"version": "0.1.3",
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @vanilla-extract/css
22

3+
## 1.17.2
4+
5+
### Patch Changes
6+
7+
- [#1557](https://github.com/vanilla-extract-css/vanilla-extract/pull/1557) [`134117d`](https://github.com/vanilla-extract-css/vanilla-extract/commit/134117d32e25d92edc24c8c863d757294d7b5df8) Thanks [@askoufis](https://github.com/askoufis)! - `css`: Improve type-checking performance of string literal types that include CSS variables
8+
9+
- [#1560](https://github.com/vanilla-extract-css/vanilla-extract/pull/1560) [`c66be53`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c66be53d600802b2922da1d6034e2a5ff3fbbcae) Thanks [@andjsrk](https://github.com/andjsrk)! - Remove unnecessary intersections in a few types
10+
11+
- Updated dependencies [[`134117d`](https://github.com/vanilla-extract-css/vanilla-extract/commit/134117d32e25d92edc24c8c863d757294d7b5df8)]:
12+
- @vanilla-extract/private@1.0.7
13+
314
## 1.17.1
415

516
### 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.1",
3+
"version": "1.17.2",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"sideEffects": true,
66
"main": "dist/vanilla-extract-css.cjs.js",

packages/dynamic/CHANGELOG.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @vanilla-extract/dynamic
22

3+
## 2.1.3
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`134117d`](https://github.com/vanilla-extract-css/vanilla-extract/commit/134117d32e25d92edc24c8c863d757294d7b5df8)]:
8+
- @vanilla-extract/private@1.0.7
9+
310
## 2.1.2
411

512
### Patch Changes
@@ -28,7 +35,11 @@
2835

2936
```tsx
3037
import { assignInlineVars } from '@vanilla-extract/dynamic';
31-
import { container, brandColor, textColor } from './styles.css.ts';
38+
import {
39+
container,
40+
brandColor,
41+
textColor
42+
} from './styles.css.ts';
3243

3344
// If `tone` is `undefined`, the following inline style becomes:
3445
// { '--brandColor__8uideo0': 'pink' }
@@ -38,7 +49,7 @@
3849
className={container}
3950
style={assignInlineVars({
4051
[brandColor]: 'pink',
41-
[textColor]: tone === 'critical' ? 'red' : null,
52+
[textColor]: tone === 'critical' ? 'red' : null
4253
})}
4354
>
4455
...
@@ -60,7 +71,7 @@
6071

6172
setElementVars(el, {
6273
[brandColor]: 'pink',
63-
[textColor]: null,
74+
[textColor]: null
6475
});
6576
```
6677

@@ -107,7 +118,7 @@
107118
<section
108119
style={assignInlineVars({
109120
[vars.colors.brand]: 'pink',
110-
[vars.colors.accent]: 'green',
121+
[vars.colors.accent]: 'green'
111122
})}
112123
>
113124
...
@@ -127,7 +138,7 @@
127138
<section
128139
style={assignInlineVars(vars.colors, {
129140
brand: 'pink',
130-
accent: 'green',
141+
accent: 'green'
131142
})}
132143
>
133144
...
@@ -146,7 +157,7 @@
146157
document.write(`
147158
<section style="${assignInlineVars({
148159
[vars.colors.brand]: 'pink',
149-
[vars.colors.accent]: 'green',
160+
[vars.colors.accent]: 'green'
150161
})}">
151162
...
152163
</section>
@@ -167,7 +178,7 @@
167178

168179
setElementVars(el, {
169180
[vars.colors.brand]: 'pink',
170-
[vars.colors.accent]: 'green',
181+
[vars.colors.accent]: 'green'
171182
});
172183
```
173184

@@ -183,7 +194,7 @@
183194

184195
setElementVars(el, vars.colors, {
185196
brand: 'pink',
186-
accent: 'green',
197+
accent: 'green'
187198
});
188199
```
189200

packages/dynamic/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/dynamic",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"sideEffects": false,
66
"main": "dist/vanilla-extract-dynamic.cjs.js",

0 commit comments

Comments
 (0)