Skip to content

Commit 55eedb3

Browse files
Version Packages (#172)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent eb31034 commit 55eedb3

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.changeset/gentle-scissors-yawn.md

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

packages/rainbow-sprinkles/CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# rainbow-sprinkles
22

3+
## 0.17.2
4+
5+
### Patch Changes
6+
7+
- [#169](https://github.com/wayfair/rainbow-sprinkles/pull/169) [`54915d1`](https://github.com/wayfair/rainbow-sprinkles/commit/54915d1760593fdb49053c6caaf9956c5ae88892) Thanks [@s-robertson](https://github.com/s-robertson)! - Fix an issue where conditionless properties that have both static and dynamic values wouldn't provide autocomplete suggestions for the static values.
8+
39
## 0.17.1
410

511
### Patch Changes
@@ -16,13 +22,13 @@
1622

1723
```ts
1824
// sprinkles.css.ts
19-
import { defineProperties } from 'rainbow-sprinkles';
20-
import { layer } from '@vanilla-extract/css';
25+
import { defineProperties } from "rainbow-sprinkles";
26+
import { layer } from "@vanilla-extract/css";
2127

2228
export const sprinklesLayer = layer();
2329

2430
const properties = defineProperties({
25-
'@layer': sprinklesLayer,
31+
"@layer": sprinklesLayer,
2632
// etc.
2733
});
2834
```
@@ -201,7 +207,7 @@
201207

202208
```tsx
203209
// App.tsx
204-
import { rainbowSprinkles } from './rainbow-sprinkles.css';
210+
import { rainbowSprinkles } from "./rainbow-sprinkles.css";
205211
206212
const Box = (props) => {
207213
const { className, style, otherProps } = rainbowSprinkles(props);

packages/rainbow-sprinkles/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rainbow-sprinkles",
3-
"version": "0.17.1",
3+
"version": "0.17.2",
44
"description": "Responsive, theme-based style props for Vanilla Extract",
55
"main": "dist/rainbow-sprinkles.cjs.js",
66
"module": "dist/rainbow-sprinkles.esm.js",

0 commit comments

Comments
 (0)