Skip to content

Commit dfabf57

Browse files
committed
missing comma in flow type, changelog
1 parent 8053466 commit dfabf57

3 files changed

Lines changed: 17 additions & 13 deletions

File tree

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ Since you are interested in what happens next, in case, you work for a for-profi
22

33
## Next (version and date will be generated, add changes below)
44

5+
### Bug fixes
6+
7+
- [react-jss] #1608 fixed the failing tests caused by #1604, but doing so reintroduced the original bug breaking React 18 support [1609](https://github.com/cssinjs/jss/pull/1609)
8+
59
## 10.9.1-alpha.0 (2022-4-16)
610

711
### Improvements

packages/react-jss/.size-snapshot.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"react-jss.js": {
3-
"bundled": 136547,
4-
"minified": 50287,
5-
"gzipped": 16786
3+
"bundled": 136548,
4+
"minified": 50282,
5+
"gzipped": 16780
66
},
77
"react-jss.min.js": {
8-
"bundled": 103497,
9-
"minified": 40146,
10-
"gzipped": 13904
8+
"bundled": 103498,
9+
"minified": 40141,
10+
"gzipped": 13896
1111
},
1212
"react-jss.cjs.js": {
13-
"bundled": 22047,
14-
"minified": 9671,
15-
"gzipped": 3230
13+
"bundled": 22044,
14+
"minified": 9662,
15+
"gzipped": 3225
1616
},
1717
"react-jss.esm.js": {
18-
"bundled": 20143,
19-
"minified": 8184,
20-
"gzipped": 3010,
18+
"bundled": 20140,
19+
"minified": 8175,
20+
"gzipped": 3006,
2121
"treeshaked": {
2222
"rollup": {
2323
"code": 442,

packages/react-jss/src/flow-types.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export type Context = {|
3535
classNamePrefix?: string,
3636
disableStylesGeneration?: boolean,
3737
media?: string,
38-
generateId?: GenerateId
38+
generateId?: GenerateId,
3939
isSSR?: boolean
4040
|}
4141

0 commit comments

Comments
 (0)