@griffel/react 1.7.1 → 1.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. package/.storybook/main.js +20 -0
  2. package/.storybook/preview.js +1 -0
  3. package/CHANGELOG.json +1281 -0
  4. package/CHANGELOG.md +501 -0
  5. package/README.md +4 -0
  6. package/bundle-size/__css.fixture.js +7 -0
  7. package/bundle-size/__styles.fixture.js +7 -0
  8. package/bundle-size/makeResetStyles.fixture.js +7 -0
  9. package/bundle-size/makeStaticStyles.fixture.js +7 -0
  10. package/bundle-size/makeStyles.fixture.js +7 -0
  11. package/eslint.config.mjs +31 -0
  12. package/package.json +3 -3
  13. package/project.json +96 -0
  14. package/src/RendererContext.tsx +52 -0
  15. package/src/TextDirectionContext.tsx +34 -0
  16. package/src/__css.ts +21 -0
  17. package/src/__resetCSS.ts +19 -0
  18. package/src/__resetStyles.ts +28 -0
  19. package/src/{__staticCSS.js → __staticCSS.ts} +7 -6
  20. package/src/__staticStyles.ts +22 -0
  21. package/src/__styles.ts +27 -0
  22. package/src/createDOMRenderer.test.tsx +133 -0
  23. package/src/{index.d.ts → index.ts} +6 -0
  24. package/src/insertionFactory-node.test.ts +31 -0
  25. package/src/insertionFactory.test.ts +29 -0
  26. package/src/insertionFactory.ts +27 -0
  27. package/src/makeResetStyles.test.tsx +27 -0
  28. package/src/makeResetStyles.ts +31 -0
  29. package/src/makeStaticStyles.ts +23 -0
  30. package/src/makeStyles.test.tsx +27 -0
  31. package/src/makeStyles.ts +31 -0
  32. package/src/renderToStyleElements-node.test.tsx +418 -0
  33. package/src/renderToStyleElements.test.tsx +103 -0
  34. package/src/renderToStyleElements.ts +61 -0
  35. package/src/stories/ComponentStyles.stories.tsx +55 -0
  36. package/src/stories/DOMRendererFilter.stories.tsx +76 -0
  37. package/src/stories/FallbackValues.stories.tsx +50 -0
  38. package/src/stories/makeStyles.stories.tsx +17 -0
  39. package/src/useInsertionEffect.ts +11 -0
  40. package/src/utils/canUseDOM-node.test.ts +14 -0
  41. package/src/utils/canUseDOM.test.tsx +8 -0
  42. package/src/utils/canUseDOM.ts +8 -0
  43. package/src/utils/isInsideComponent.ts +41 -0
  44. package/tsconfig.json +20 -0
  45. package/tsconfig.lib.json +28 -0
  46. package/tsconfig.spec.json +21 -0
  47. package/tsconfig.storybook.json +12 -0
  48. package/vitest.config.ts +21 -0
  49. package/LICENSE.md +0 -21
  50. package/lib/RendererContext.cjs +0 -45
  51. package/lib/TextDirectionContext.cjs +0 -33
  52. package/lib/__css.cjs +0 -22
  53. package/lib/__resetCSS.cjs +0 -22
  54. package/lib/__resetStyles.cjs +0 -26
  55. package/lib/__staticCSS.cjs +0 -18
  56. package/lib/__staticStyles.cjs +0 -23
  57. package/lib/__styles.cjs +0 -26
  58. package/lib/index.cjs +0 -78
  59. package/lib/insertionFactory.cjs +0 -33
  60. package/lib/makeResetStyles.cjs +0 -35
  61. package/lib/makeStaticStyles.cjs +0 -28
  62. package/lib/makeStyles.cjs +0 -35
  63. package/lib/renderToStyleElements.cjs +0 -50
  64. package/lib/useInsertionEffect.cjs +0 -20
  65. package/lib/utils/canUseDOM.cjs +0 -17
  66. package/lib/utils/isInsideComponent.cjs +0 -46
  67. package/src/RendererContext.d.ts +0 -24
  68. package/src/RendererContext.js +0 -31
  69. package/src/RendererContext.js.map +0 -1
  70. package/src/TextDirectionContext.d.ts +0 -19
  71. package/src/TextDirectionContext.js +0 -22
  72. package/src/TextDirectionContext.js.map +0 -1
  73. package/src/__css.d.ts +0 -7
  74. package/src/__css.js +0 -17
  75. package/src/__css.js.map +0 -1
  76. package/src/__resetCSS.d.ts +0 -6
  77. package/src/__resetCSS.js +0 -17
  78. package/src/__resetCSS.js.map +0 -1
  79. package/src/__resetStyles.d.ts +0 -7
  80. package/src/__resetStyles.js +0 -20
  81. package/src/__resetStyles.js.map +0 -1
  82. package/src/__staticCSS.d.ts +0 -6
  83. package/src/__staticCSS.js.map +0 -1
  84. package/src/__staticStyles.d.ts +0 -7
  85. package/src/__staticStyles.js +0 -18
  86. package/src/__staticStyles.js.map +0 -1
  87. package/src/__styles.d.ts +0 -7
  88. package/src/__styles.js +0 -20
  89. package/src/__styles.js.map +0 -1
  90. package/src/index.js +0 -16
  91. package/src/index.js.map +0 -1
  92. package/src/insertionFactory.d.ts +0 -2
  93. package/src/insertionFactory.js +0 -21
  94. package/src/insertionFactory.js.map +0 -1
  95. package/src/makeResetStyles.d.ts +0 -2
  96. package/src/makeResetStyles.js +0 -23
  97. package/src/makeResetStyles.js.map +0 -1
  98. package/src/makeStaticStyles.d.ts +0 -2
  99. package/src/makeStaticStyles.js +0 -17
  100. package/src/makeStaticStyles.js.map +0 -1
  101. package/src/makeStyles.d.ts +0 -2
  102. package/src/makeStyles.js +0 -23
  103. package/src/makeStyles.js.map +0 -1
  104. package/src/renderToStyleElements.d.ts +0 -8
  105. package/src/renderToStyleElements.js +0 -51
  106. package/src/renderToStyleElements.js.map +0 -1
  107. package/src/useInsertionEffect.d.ts +0 -1
  108. package/src/useInsertionEffect.js +0 -10
  109. package/src/useInsertionEffect.js.map +0 -1
  110. package/src/utils/canUseDOM.d.ts +0 -1
  111. package/src/utils/canUseDOM.js +0 -9
  112. package/src/utils/canUseDOM.js.map +0 -1
  113. package/src/utils/isInsideComponent.d.ts +0 -1
  114. package/src/utils/isInsideComponent.js +0 -39
  115. package/src/utils/isInsideComponent.js.map +0 -1
package/CHANGELOG.json ADDED
@@ -0,0 +1,1281 @@
1
+ {
2
+ "name": "@griffel/react",
3
+ "entries": [
4
+ {
5
+ "date": "Thu, 21 May 2026 08:10:29 GMT",
6
+ "version": "1.7.3",
7
+ "tag": "@griffel/react_v1.7.3",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "author": "olfedias@microsoft.com",
12
+ "package": "@griffel/react",
13
+ "commit": "f1e532569b99490e9e013ba45da448aef98f2116",
14
+ "comment": "chore: tighten ESLint rules and clean up redundant directives"
15
+ },
16
+ {
17
+ "author": "olfedias@microsoft.com",
18
+ "package": "@griffel/react",
19
+ "commit": "ef37fbef91a9657379baf5c727945046ff1c906a",
20
+ "comment": "fix: drop nx flat/react preset and adopt official react/react-hooks/react-compiler flat presets"
21
+ },
22
+ {
23
+ "author": "olfedias@microsoft.com",
24
+ "package": "@griffel/react",
25
+ "commit": "36755723e897e973cb36d4196d3d6d34953d3ac1",
26
+ "comment": "fix: bump ESLint to v10 and migrate React lint rules to eslint-plugin-react-x"
27
+ },
28
+ {
29
+ "author": "olfedias@microsoft.com",
30
+ "package": "@griffel/react",
31
+ "commit": "42e7217508220889bab80c7aae5bbd9c5d6c6fde",
32
+ "comment": "chore: migrate Storybook to @storybook/react-vite"
33
+ }
34
+ ],
35
+ "patch": [
36
+ {
37
+ "author": "beachball",
38
+ "package": "@griffel/react",
39
+ "comment": "Bump @griffel/core to v1.21.1",
40
+ "commit": "not available"
41
+ }
42
+ ]
43
+ }
44
+ },
45
+ {
46
+ "date": "Mon, 04 May 2026 12:34:39 GMT",
47
+ "tag": "@griffel/react_v1.7.2",
48
+ "version": "1.7.2",
49
+ "comments": {
50
+ "patch": [
51
+ {
52
+ "author": "beachball",
53
+ "package": "@griffel/react",
54
+ "comment": "Bump @griffel/core to v1.21.0",
55
+ "commit": "d83f3c21bd7764c9396d3879c63cb087f3d37ba8"
56
+ }
57
+ ]
58
+ }
59
+ },
60
+ {
61
+ "date": "Thu, 30 Apr 2026 08:33:37 GMT",
62
+ "tag": "@griffel/react_v1.7.1",
63
+ "version": "1.7.1",
64
+ "comments": {
65
+ "patch": [
66
+ {
67
+ "author": "olfedias@microsoft.com",
68
+ "package": "@griffel/react",
69
+ "commit": "a4d43188447b8f7738ae5a4493c76d8f399e72ca",
70
+ "comment": "fix: tag babel-emitted helpers as @private not @internal so they survive stripInternal and remain re-exportable from index.d.ts"
71
+ },
72
+ {
73
+ "author": "beachball",
74
+ "package": "@griffel/react",
75
+ "comment": "Bump @griffel/core to v1.20.3",
76
+ "commit": "a4d43188447b8f7738ae5a4493c76d8f399e72ca"
77
+ }
78
+ ]
79
+ }
80
+ },
81
+ {
82
+ "date": "Wed, 29 Apr 2026 17:05:15 GMT",
83
+ "tag": "@griffel/react_v1.7.0",
84
+ "version": "1.7.0",
85
+ "comments": {
86
+ "patch": [
87
+ {
88
+ "author": "olfedias@microsoft.com",
89
+ "package": "@griffel/react",
90
+ "commit": "3e7c9ba0dc38935cbbfe6f98d957445a9457a26e",
91
+ "comment": "fix(react): emit interop-free types so consumers without esModuleInterop can compile"
92
+ }
93
+ ],
94
+ "minor": [
95
+ {
96
+ "author": "olfedias@microsoft.com",
97
+ "package": "@griffel/react",
98
+ "commit": "ae63d7f7d40e8e095da26f41908157086d9823af",
99
+ "comment": "feat(react): switch to modern JSX runtime, bump react peerDep to >=16.14.0"
100
+ }
101
+ ]
102
+ }
103
+ },
104
+ {
105
+ "date": "Wed, 29 Apr 2026 08:41:14 GMT",
106
+ "tag": "@griffel/react_v1.6.2",
107
+ "version": "1.6.2",
108
+ "comments": {
109
+ "none": [
110
+ {
111
+ "author": "olfedias@microsoft.com",
112
+ "package": "@griffel/react",
113
+ "commit": "e622ba1a5a32b06348274f1e2f214a60c0faab80",
114
+ "comment": "chore: migrate to ESLint 9 flat config"
115
+ },
116
+ {
117
+ "author": "olfedias@microsoft.com",
118
+ "package": "@griffel/react",
119
+ "commit": "01c98b78b3f36efda818d6f81d0a1c9e5935d773",
120
+ "comment": "chore: fix lint issues ahead of ESLint 9 migration"
121
+ }
122
+ ],
123
+ "patch": [
124
+ {
125
+ "author": "olfedias@microsoft.com",
126
+ "package": "@griffel/react",
127
+ "commit": "71fed59fe213a5eadafb161aa8848e13c6d707bb",
128
+ "comment": "refactor(build): switch from rollup to tsc + SWC"
129
+ },
130
+ {
131
+ "author": "beachball",
132
+ "package": "@griffel/react",
133
+ "comment": "Bump @griffel/core to v1.20.2",
134
+ "commit": "776d6d657e411ede5cdb6493bc70e354e78b541c"
135
+ }
136
+ ]
137
+ }
138
+ },
139
+ {
140
+ "date": "Wed, 11 Mar 2026 13:33:34 GMT",
141
+ "tag": "@griffel/react_v1.6.1",
142
+ "version": "1.6.1",
143
+ "comments": {
144
+ "none": [
145
+ {
146
+ "author": "olfedias@microsoft.com",
147
+ "package": "@griffel/react",
148
+ "commit": "c1c05e2822a214d7cc3ad14c4e981e1b93ba245f",
149
+ "comment": "chore: migrate from Jest to Vitest"
150
+ }
151
+ ]
152
+ }
153
+ },
154
+ {
155
+ "date": "Fri, 06 Mar 2026 15:56:28 GMT",
156
+ "tag": "@griffel/react_v1.6.1",
157
+ "version": "1.6.1",
158
+ "comments": {
159
+ "none": [
160
+ {
161
+ "author": "olfedias@microsoft.com",
162
+ "package": "@griffel/react",
163
+ "commit": "f422dee59ffc7ad2f4e5396def5dae5c9785cf24",
164
+ "comment": "chore: hoist common tsconfig strict options to base config"
165
+ }
166
+ ],
167
+ "patch": [
168
+ {
169
+ "author": "beachball",
170
+ "package": "@griffel/react",
171
+ "comment": "Bump @griffel/core to v1.20.1",
172
+ "commit": "75914de37870943b9f2d483be421efe9cad8872f"
173
+ }
174
+ ]
175
+ }
176
+ },
177
+ {
178
+ "date": "Fri, 06 Mar 2026 08:17:05 GMT",
179
+ "tag": "@griffel/react_v1.6.0",
180
+ "version": "1.6.0",
181
+ "comments": {
182
+ "minor": [
183
+ {
184
+ "author": "hochelmartin@gmail.com",
185
+ "package": "@griffel/react",
186
+ "commit": "7df55abb5486fe5d5cd0a0c4731d4aaee9bbe7c8",
187
+ "comment": "feat: add makeStaticStyles AOT/CSS extraction support"
188
+ },
189
+ {
190
+ "author": "beachball",
191
+ "package": "@griffel/react",
192
+ "comment": "Bump @griffel/core to v1.20.0",
193
+ "commit": "832ca3b88650bb8fa8b20499ade2e679518bc934"
194
+ }
195
+ ]
196
+ }
197
+ },
198
+ {
199
+ "date": "Mon, 08 Dec 2025 10:45:32 GMT",
200
+ "tag": "@griffel/react_v1.5.32",
201
+ "version": "1.5.32",
202
+ "comments": {
203
+ "none": [
204
+ {
205
+ "author": "olfedias@microsoft.com",
206
+ "package": "@griffel/react",
207
+ "commit": "0c93f454a493a1e427575ac8eef6cc0e1246f1c1",
208
+ "comment": "chore: update imports in stories"
209
+ }
210
+ ]
211
+ }
212
+ },
213
+ {
214
+ "date": "Thu, 06 Nov 2025 19:40:21 GMT",
215
+ "tag": "@griffel/react_v1.5.32",
216
+ "version": "1.5.32",
217
+ "comments": {
218
+ "patch": [
219
+ {
220
+ "author": "olfedias@microsoft.com",
221
+ "package": "@griffel/react",
222
+ "commit": "968ed526b60eddf809f309866ce03dd5a15c5edd",
223
+ "comment": "fix: renderToStyleElements() should handle shorthands ordering"
224
+ }
225
+ ]
226
+ }
227
+ },
228
+ {
229
+ "date": "Mon, 03 Nov 2025 15:43:56 GMT",
230
+ "tag": "@griffel/react_v1.5.31",
231
+ "version": "1.5.31",
232
+ "comments": {
233
+ "patch": [
234
+ {
235
+ "author": "dmytrokirpa@microsoft.com",
236
+ "package": "@griffel/react",
237
+ "commit": "a09e6aa5c86e05dca8dcda07771693189ef16af1",
238
+ "comment": "feat(react): add 'use client' directives"
239
+ },
240
+ {
241
+ "author": "olfedias@microsoft.com",
242
+ "package": "@griffel/react",
243
+ "commit": "e591d1c2bf61df66d543715df660943601561ecb",
244
+ "comment": "fix: fix dev-only validation to work in React 19"
245
+ }
246
+ ]
247
+ }
248
+ },
249
+ {
250
+ "date": "Mon, 28 Jul 2025 09:12:30 GMT",
251
+ "tag": "@griffel/react_v1.5.30",
252
+ "version": "1.5.30",
253
+ "comments": {
254
+ "none": [
255
+ {
256
+ "author": "olfedias@microsoft.com",
257
+ "package": "@griffel/react",
258
+ "commit": "f6ad8b5172b9bda7522c33badc84ce2d3a979c2f",
259
+ "comment": "chore: bump Nx to 21.2.1"
260
+ },
261
+ {
262
+ "author": "olfedias@microsoft.com",
263
+ "package": "@griffel/react",
264
+ "commit": "a588a6c1f301e598557a8a1255f6069ccbbb2534",
265
+ "comment": "chore: apply release"
266
+ }
267
+ ]
268
+ }
269
+ },
270
+ {
271
+ "date": "Tue, 22 Apr 2025 10:05:48 GMT",
272
+ "tag": "@griffel/react_v1.5.30",
273
+ "version": "1.5.30",
274
+ "comments": {
275
+ "patch": [
276
+ {
277
+ "author": "olfedias@microsoft.com",
278
+ "package": "@griffel/react",
279
+ "commit": "d25d0967a81daac6fd8640961836b806ecfc7fe8",
280
+ "comment": "chore: allow React 19 in \"peerDependencies\""
281
+ },
282
+ {
283
+ "author": "beachball",
284
+ "package": "@griffel/react",
285
+ "comment": "Bump @griffel/core to v1.19.2",
286
+ "commit": "d25d0967a81daac6fd8640961836b806ecfc7fe8"
287
+ }
288
+ ]
289
+ }
290
+ },
291
+ {
292
+ "date": "Thu, 23 Jan 2025 12:09:03 GMT",
293
+ "tag": "@griffel/react_v1.5.29",
294
+ "version": "1.5.29",
295
+ "comments": {
296
+ "patch": [
297
+ {
298
+ "author": "beachball",
299
+ "package": "@griffel/react",
300
+ "comment": "Bump @griffel/core to v1.19.1",
301
+ "commit": "78b2b5f231e3032de8aa1b5c5794a2a4317df42e"
302
+ }
303
+ ]
304
+ }
305
+ },
306
+ {
307
+ "date": "Wed, 22 Jan 2025 13:44:43 GMT",
308
+ "tag": "@griffel/react_v1.5.28",
309
+ "version": "1.5.28",
310
+ "comments": {
311
+ "patch": [
312
+ {
313
+ "author": "beachball",
314
+ "package": "@griffel/react",
315
+ "comment": "Bump @griffel/core to v1.19.0",
316
+ "commit": "fa0a08b0452669a9bc4e0f83b2dbcd85b97f733e"
317
+ }
318
+ ]
319
+ }
320
+ },
321
+ {
322
+ "date": "Tue, 12 Nov 2024 09:58:11 GMT",
323
+ "tag": "@griffel/react_v1.5.27",
324
+ "version": "1.5.27",
325
+ "comments": {
326
+ "patch": [
327
+ {
328
+ "author": "beachball",
329
+ "package": "@griffel/react",
330
+ "comment": "Bump @griffel/core to v1.18.2",
331
+ "commit": "4dd2eec22aaff93dead8429c4a35496de7dab438"
332
+ }
333
+ ]
334
+ }
335
+ },
336
+ {
337
+ "date": "Thu, 31 Oct 2024 16:16:50 GMT",
338
+ "tag": "@griffel/react_v1.5.26",
339
+ "version": "1.5.26",
340
+ "comments": {
341
+ "patch": [
342
+ {
343
+ "author": "seanmonahan@microsoft.com",
344
+ "package": "@griffel/react",
345
+ "commit": "4436d63cff956aa0a71f7a7e00df1897e468c6d9",
346
+ "comment": "chore: add eslint-plugin-react-compiler and enable for React package."
347
+ },
348
+ {
349
+ "author": "olfedias@microsoft.com",
350
+ "package": "@griffel/react",
351
+ "commit": "fb21c433253790424a07159ede50c9f827b51137",
352
+ "comment": "fix: make RendererProvider compatible with React Compiler"
353
+ },
354
+ {
355
+ "author": "beachball",
356
+ "package": "@griffel/react",
357
+ "comment": "Bump @griffel/core to v1.18.1",
358
+ "commit": "00ba8831f3b895c1600e8211895c0d2b99c13365"
359
+ }
360
+ ],
361
+ "none": [
362
+ {
363
+ "author": "olfedias@microsoft.com",
364
+ "package": "@griffel/react",
365
+ "commit": "291da5fea61bd08be595df1cdce171b755612898",
366
+ "comment": "chore: bump Nx to 19.8.6"
367
+ }
368
+ ]
369
+ }
370
+ },
371
+ {
372
+ "date": "Mon, 29 Jul 2024 07:31:53 GMT",
373
+ "tag": "@griffel/react_v1.5.25",
374
+ "version": "1.5.25",
375
+ "comments": {
376
+ "patch": [
377
+ {
378
+ "author": "beachball",
379
+ "package": "@griffel/react",
380
+ "comment": "Bump @griffel/core to v1.18.0",
381
+ "commit": "aa24116ea5cf763ee7f56363067a5c386c4c2222"
382
+ }
383
+ ]
384
+ }
385
+ },
386
+ {
387
+ "date": "Wed, 10 Jul 2024 14:36:29 GMT",
388
+ "tag": "@griffel/react_v1.5.24",
389
+ "version": "1.5.24",
390
+ "comments": {
391
+ "patch": [
392
+ {
393
+ "author": "beachball",
394
+ "package": "@griffel/react",
395
+ "comment": "Bump @griffel/core to v1.17.1",
396
+ "commit": "15496655df98b9d8e8f505b461cc6dbd12e3122e"
397
+ }
398
+ ]
399
+ }
400
+ },
401
+ {
402
+ "date": "Wed, 22 May 2024 08:24:17 GMT",
403
+ "tag": "@griffel/react_v1.5.23",
404
+ "version": "1.5.23",
405
+ "comments": {
406
+ "patch": [
407
+ {
408
+ "author": "beachball",
409
+ "package": "@griffel/react",
410
+ "comment": "Bump @griffel/core to v1.17.0",
411
+ "commit": "6ae570dbbd711a5e95184004f5d4d98a8ffa2df3"
412
+ }
413
+ ]
414
+ }
415
+ },
416
+ {
417
+ "date": "Thu, 02 May 2024 14:07:14 GMT",
418
+ "tag": "@griffel/react_v1.5.22",
419
+ "version": "1.5.22",
420
+ "comments": {
421
+ "patch": [
422
+ {
423
+ "author": "olfedias@microsoft.com",
424
+ "package": "@griffel/react",
425
+ "commit": "062a9d5bc3903f0ce7a3450403b19b622caab05d",
426
+ "comment": "feat: add support for `RESET`"
427
+ },
428
+ {
429
+ "author": "beachball",
430
+ "package": "@griffel/react",
431
+ "comment": "Bump @griffel/core to v1.16.0",
432
+ "commit": "9745935b1bd28b02ee7c19d9195883e8454f0810"
433
+ }
434
+ ]
435
+ }
436
+ },
437
+ {
438
+ "date": "Tue, 19 Mar 2024 11:33:53 GMT",
439
+ "tag": "@griffel/react_v1.5.21",
440
+ "version": "1.5.21",
441
+ "comments": {
442
+ "patch": [
443
+ {
444
+ "author": "beachball",
445
+ "package": "@griffel/react",
446
+ "comment": "Bump @griffel/core to v1.15.3",
447
+ "commit": "95326c52b330ad9d286fad926f2aa26914c39061"
448
+ }
449
+ ]
450
+ }
451
+ },
452
+ {
453
+ "date": "Tue, 23 Jan 2024 11:03:15 GMT",
454
+ "tag": "@griffel/react_v1.5.20",
455
+ "version": "1.5.20",
456
+ "comments": {
457
+ "none": [
458
+ {
459
+ "author": "olfedias@microsoft.com",
460
+ "package": "@griffel/react",
461
+ "commit": "9c0b1acf69a4645331d1623b1f0b5484ce5d2cc9",
462
+ "comment": "chore: bump to Nx@15.9.7"
463
+ },
464
+ {
465
+ "author": "olfedias@microsoft.com",
466
+ "package": "@griffel/react",
467
+ "commit": "1a226dc4d52466d55e234e6ee7c4977845d8944b",
468
+ "comment": "chore: bump to Nx@16.10.0"
469
+ }
470
+ ]
471
+ }
472
+ },
473
+ {
474
+ "date": "Fri, 12 Jan 2024 11:08:40 GMT",
475
+ "tag": "@griffel/react_v1.5.20",
476
+ "version": "1.5.20",
477
+ "comments": {
478
+ "patch": [
479
+ {
480
+ "author": "olfedias@microsoft.com",
481
+ "package": "@griffel/react",
482
+ "commit": "795246bca544bb3085a4488e93bcc9b2f3339a84",
483
+ "comment": "chore: add \"wyw-in-js\" field for tag processor"
484
+ },
485
+ {
486
+ "author": "beachball",
487
+ "package": "@griffel/react",
488
+ "comment": "Bump @griffel/core to v1.15.2",
489
+ "commit": "0d2e5506d6b9bc9d7e4a102b88c2bb25eff9a34d"
490
+ }
491
+ ]
492
+ }
493
+ },
494
+ {
495
+ "date": "Thu, 30 Nov 2023 16:42:15 GMT",
496
+ "tag": "@griffel/react_v1.5.19",
497
+ "version": "1.5.19",
498
+ "comments": {
499
+ "patch": [
500
+ {
501
+ "author": "beachball",
502
+ "package": "@griffel/react",
503
+ "comment": "Bump @griffel/core to v1.15.1",
504
+ "commit": "7d72d1eb3439ef8423fe958035a1525da1822750"
505
+ }
506
+ ]
507
+ }
508
+ },
509
+ {
510
+ "date": "Thu, 09 Nov 2023 14:35:07 GMT",
511
+ "tag": "@griffel/react_v1.5.18",
512
+ "version": "1.5.18",
513
+ "comments": {
514
+ "patch": [
515
+ {
516
+ "author": "beachball",
517
+ "package": "@griffel/react",
518
+ "comment": "Bump @griffel/core to v1.15.0",
519
+ "commit": "8f213a0c040ee833b268cb2558adf976773ac14d"
520
+ }
521
+ ]
522
+ }
523
+ },
524
+ {
525
+ "date": "Mon, 30 Oct 2023 14:08:55 GMT",
526
+ "tag": "@griffel/react_v1.5.17",
527
+ "version": "1.5.17",
528
+ "comments": {
529
+ "patch": [
530
+ {
531
+ "author": "beachball",
532
+ "package": "@griffel/react",
533
+ "comment": "Bump @griffel/core to v1.14.4",
534
+ "commit": "f001ae503d75d7ddcf70d0633e2f51111b70ed45"
535
+ }
536
+ ]
537
+ }
538
+ },
539
+ {
540
+ "date": "Tue, 03 Oct 2023 19:09:32 GMT",
541
+ "tag": "@griffel/react_v1.5.16",
542
+ "version": "1.5.16",
543
+ "comments": {
544
+ "patch": [
545
+ {
546
+ "author": "beachball",
547
+ "package": "@griffel/react",
548
+ "comment": "Bump @griffel/core to v1.14.3",
549
+ "commit": "1476e34bd093df1132181acfebbb8c51922d5c8b"
550
+ }
551
+ ]
552
+ }
553
+ },
554
+ {
555
+ "date": "Fri, 15 Sep 2023 08:08:43 GMT",
556
+ "tag": "@griffel/react_v1.5.15",
557
+ "version": "1.5.15",
558
+ "comments": {
559
+ "patch": [
560
+ {
561
+ "author": "beachball",
562
+ "package": "@griffel/react",
563
+ "comment": "Bump @griffel/core to v1.14.2",
564
+ "commit": "744403e2d046701dc82b02460a60e1680bb60f2e"
565
+ }
566
+ ]
567
+ }
568
+ },
569
+ {
570
+ "date": "Mon, 31 Jul 2023 12:18:47 GMT",
571
+ "tag": "@griffel/react_v1.5.14",
572
+ "version": "1.5.14",
573
+ "comments": {
574
+ "patch": [
575
+ {
576
+ "author": "beachball",
577
+ "package": "@griffel/react",
578
+ "comment": "Bump @griffel/core to v1.14.1",
579
+ "commit": "fa5f0d726cbdca1cc583ccc7af4578a7f3f6599f"
580
+ }
581
+ ]
582
+ }
583
+ },
584
+ {
585
+ "date": "Mon, 31 Jul 2023 09:05:33 GMT",
586
+ "tag": "@griffel/react_v1.5.13",
587
+ "version": "1.5.13",
588
+ "comments": {
589
+ "patch": [
590
+ {
591
+ "author": "olfedias@microsoft.com",
592
+ "package": "@griffel/react",
593
+ "commit": "1d0df068e80f3cb602651f1875edbd625d221c47",
594
+ "comment": "chore: improve React 18 support by using useInsertionEffect"
595
+ },
596
+ {
597
+ "author": "olfedias@microsoft.com",
598
+ "package": "@griffel/react",
599
+ "commit": "c33da85cf8d176e47fd07012c41574a735753528",
600
+ "comment": "chore: add support for different buckets in makeResetStyles"
601
+ },
602
+ {
603
+ "author": "beachball",
604
+ "package": "@griffel/react",
605
+ "comment": "Bump @griffel/core to v1.14.0",
606
+ "commit": "1d0df068e80f3cb602651f1875edbd625d221c47"
607
+ }
608
+ ]
609
+ }
610
+ },
611
+ {
612
+ "date": "Wed, 19 Jul 2023 07:32:54 GMT",
613
+ "tag": "@griffel/react_v1.5.12",
614
+ "version": "1.5.12",
615
+ "comments": {
616
+ "none": [
617
+ {
618
+ "author": "olfedias@microsoft.com",
619
+ "package": "@griffel/react",
620
+ "commit": "2ee1ee7305064beeb7a61fbf50d4fcbba4bb14ba",
621
+ "comment": "chore: use modern APIs in tests"
622
+ },
623
+ {
624
+ "author": "olfedias@microsoft.com",
625
+ "package": "@griffel/react",
626
+ "commit": "c7fd5334a5486a305f19b3fbf81d9d13260ad51d",
627
+ "comment": "chore: cleanup bundle size fixtures"
628
+ }
629
+ ],
630
+ "patch": [
631
+ {
632
+ "author": "beachball",
633
+ "package": "@griffel/react",
634
+ "comment": "Bump @griffel/core to v1.13.1",
635
+ "commit": "47f4df96449fc23545eab7c58ede2e55610c637c"
636
+ }
637
+ ]
638
+ }
639
+ },
640
+ {
641
+ "date": "Thu, 13 Jul 2023 11:31:22 GMT",
642
+ "tag": "@griffel/react_v1.5.11",
643
+ "version": "1.5.11",
644
+ "comments": {
645
+ "patch": [
646
+ {
647
+ "author": "beachball",
648
+ "package": "@griffel/react",
649
+ "comment": "Bump @griffel/core to v1.13.0",
650
+ "commit": "2f75c38dada524264284c2a92c57437309dcf491"
651
+ }
652
+ ]
653
+ }
654
+ },
655
+ {
656
+ "date": "Thu, 29 Jun 2023 12:49:54 GMT",
657
+ "tag": "@griffel/react_v1.5.10",
658
+ "version": "1.5.10",
659
+ "comments": {
660
+ "patch": [
661
+ {
662
+ "author": "beachball",
663
+ "package": "@griffel/react",
664
+ "comment": "Bump @griffel/core to v1.12.2",
665
+ "commit": "105857b021ee1d471efc29037a20601fb80bc72a"
666
+ }
667
+ ]
668
+ }
669
+ },
670
+ {
671
+ "date": "Wed, 28 Jun 2023 16:07:13 GMT",
672
+ "tag": "@griffel/react_v1.5.9",
673
+ "version": "1.5.9",
674
+ "comments": {
675
+ "patch": [
676
+ {
677
+ "author": "beachball",
678
+ "package": "@griffel/react",
679
+ "comment": "Bump @griffel/core to v1.12.1",
680
+ "commit": "d551a7f5a11b4123d1b353cab37e85058de17eb4"
681
+ }
682
+ ]
683
+ }
684
+ },
685
+ {
686
+ "date": "Tue, 27 Jun 2023 14:18:04 GMT",
687
+ "tag": "@griffel/react_v1.5.8",
688
+ "version": "1.5.8",
689
+ "comments": {
690
+ "patch": [
691
+ {
692
+ "author": "beachball",
693
+ "package": "@griffel/react",
694
+ "comment": "Bump @griffel/core to v1.12.0",
695
+ "commit": "02499fc94501e5f859aef982db3d9a23bc2a13bc"
696
+ }
697
+ ]
698
+ }
699
+ },
700
+ {
701
+ "date": "Fri, 14 Apr 2023 07:58:49 GMT",
702
+ "tag": "@griffel/react_v1.5.7",
703
+ "version": "1.5.7",
704
+ "comments": {
705
+ "patch": [
706
+ {
707
+ "author": "beachball",
708
+ "package": "@griffel/react",
709
+ "comment": "Bump @griffel/core to v1.11.0",
710
+ "commit": "ff7edd54e829fbeb5453383fe6a19009e44b64b2"
711
+ }
712
+ ]
713
+ }
714
+ },
715
+ {
716
+ "date": "Wed, 29 Mar 2023 12:45:13 GMT",
717
+ "tag": "@griffel/react_v1.5.6",
718
+ "version": "1.5.6",
719
+ "comments": {
720
+ "patch": [
721
+ {
722
+ "author": "beachball",
723
+ "package": "@griffel/react",
724
+ "comment": "Bump @griffel/core to v1.10.1",
725
+ "commit": "9ad8031fa6346e97d5d444b26d7bdf380f9c69c1"
726
+ }
727
+ ]
728
+ }
729
+ },
730
+ {
731
+ "date": "Thu, 02 Mar 2023 14:51:11 GMT",
732
+ "tag": "@griffel/react_v1.5.5",
733
+ "version": "1.5.5",
734
+ "comments": {
735
+ "none": [
736
+ {
737
+ "author": "olfedias@microsoft.com",
738
+ "package": "@griffel/react",
739
+ "commit": "d8e62d7756c8bd3908e2ce5a95ee0a842fc7df9d",
740
+ "comment": "chore: bump Nx"
741
+ }
742
+ ],
743
+ "patch": [
744
+ {
745
+ "author": "beachball",
746
+ "package": "@griffel/react",
747
+ "comment": "Bump @griffel/core to v1.10.0",
748
+ "commit": "3edb840d4139d81744620d8bded738d814cd71f5"
749
+ }
750
+ ]
751
+ }
752
+ },
753
+ {
754
+ "date": "Fri, 10 Feb 2023 10:23:25 GMT",
755
+ "tag": "@griffel/react_v1.5.4",
756
+ "version": "1.5.4",
757
+ "comments": {
758
+ "patch": [
759
+ {
760
+ "author": "beachball",
761
+ "package": "@griffel/react",
762
+ "comment": "Bump @griffel/core to v1.9.2",
763
+ "commit": "5837c739ee141a9099a031449870dbca46ce648d"
764
+ }
765
+ ]
766
+ }
767
+ },
768
+ {
769
+ "date": "Thu, 26 Jan 2023 14:06:28 GMT",
770
+ "tag": "@griffel/react_v1.5.3",
771
+ "version": "1.5.3",
772
+ "comments": {
773
+ "patch": [
774
+ {
775
+ "author": "beachball",
776
+ "package": "@griffel/react",
777
+ "comment": "Bump @griffel/core to v1.9.1",
778
+ "commit": "d87ba30b4f07fc759c0abb18ff86fd57dd79296f"
779
+ }
780
+ ]
781
+ }
782
+ },
783
+ {
784
+ "date": "Tue, 20 Dec 2022 11:48:33 GMT",
785
+ "tag": "@griffel/react_v1.5.2",
786
+ "version": "1.5.2",
787
+ "comments": {
788
+ "patch": [
789
+ {
790
+ "author": "beachball",
791
+ "package": "@griffel/react",
792
+ "comment": "Bump @griffel/core to v1.9.0",
793
+ "commit": "7d2e3ba8656afccb6cf0b56e7b7f6cce0ae9fd15"
794
+ }
795
+ ]
796
+ }
797
+ },
798
+ {
799
+ "date": "Fri, 09 Dec 2022 11:15:19 GMT",
800
+ "tag": "@griffel/react_v1.5.1",
801
+ "version": "1.5.1",
802
+ "comments": {
803
+ "patch": [
804
+ {
805
+ "author": "beachball",
806
+ "package": "@griffel/react",
807
+ "comment": "Bump @griffel/core to v1.8.3",
808
+ "commit": "9b94a45ba5bd526460dd97aaea103cf64d9d5450"
809
+ }
810
+ ]
811
+ }
812
+ },
813
+ {
814
+ "date": "Wed, 30 Nov 2022 09:32:24 GMT",
815
+ "tag": "@griffel/react_v1.5.0",
816
+ "version": "1.5.0",
817
+ "comments": {
818
+ "minor": [
819
+ {
820
+ "author": "olfedias@microsoft.com",
821
+ "package": "@griffel/react",
822
+ "commit": "4f958be904861075f827812dc89d39665f249874",
823
+ "comment": "feat: re-export GriffelResetStyle type"
824
+ }
825
+ ]
826
+ }
827
+ },
828
+ {
829
+ "date": "Thu, 24 Nov 2022 10:05:12 GMT",
830
+ "tag": "@griffel/react_v1.4.3",
831
+ "version": "1.4.3",
832
+ "comments": {
833
+ "patch": [
834
+ {
835
+ "author": "beachball",
836
+ "package": "@griffel/react",
837
+ "comment": "Bump @griffel/core to v1.8.2",
838
+ "commit": "fc3403a602d5dd0b206ceeb48ca689cb2fdf6d37"
839
+ }
840
+ ]
841
+ }
842
+ },
843
+ {
844
+ "date": "Wed, 26 Oct 2022 11:06:03 GMT",
845
+ "tag": "@griffel/react_v1.4.2",
846
+ "version": "1.4.2",
847
+ "comments": {
848
+ "patch": [
849
+ {
850
+ "author": "olfedias@microsoft.com",
851
+ "package": "@griffel/react",
852
+ "commit": "d37c4b57efacd1d878d9c93aa06707fe972b89a9",
853
+ "comment": "fix: add export for __resetCSS"
854
+ },
855
+ {
856
+ "author": "olfedias@microsoft.com",
857
+ "package": "@griffel/react",
858
+ "commit": "f9fb5726c89abff0c7f5e07c6e1d1c8e0ebbcde6",
859
+ "comment": "chore: allow React 18 in peerDependencies"
860
+ },
861
+ {
862
+ "author": "beachball",
863
+ "package": "@griffel/react",
864
+ "comment": "Bump @griffel/core to v1.8.1",
865
+ "commit": "f9fb5726c89abff0c7f5e07c6e1d1c8e0ebbcde6"
866
+ }
867
+ ]
868
+ }
869
+ },
870
+ {
871
+ "date": "Thu, 13 Oct 2022 08:36:18 GMT",
872
+ "tag": "@griffel/react_v1.4.1",
873
+ "version": "1.4.1",
874
+ "comments": {
875
+ "patch": [
876
+ {
877
+ "author": "olfedias@microsoft.com",
878
+ "package": "@griffel/react",
879
+ "commit": "4f7c10f9e057cf613deecc2b47cb1777f2a2dc3e",
880
+ "comment": "chore: add __resetStyles (internal function)"
881
+ },
882
+ {
883
+ "author": "olfedias@microsoft.com",
884
+ "package": "@griffel/react",
885
+ "commit": "635096302c6e9a8b18e51745c1fadec5ab4674d5",
886
+ "comment": "chore: add __resetStyles (internal function)"
887
+ },
888
+ {
889
+ "author": "beachball",
890
+ "package": "@griffel/react",
891
+ "comment": "Bump @griffel/core to v1.8.0",
892
+ "commit": "32d9b0bfa4372343d710368b6bed1cc5185a6684"
893
+ }
894
+ ]
895
+ }
896
+ },
897
+ {
898
+ "date": "Wed, 05 Oct 2022 14:28:43 GMT",
899
+ "tag": "@griffel/react_v1.4.0",
900
+ "version": "1.4.0",
901
+ "comments": {
902
+ "minor": [
903
+ {
904
+ "author": "olfedias@microsoft.com",
905
+ "package": "@griffel/react",
906
+ "commit": "f9a70d8435481f58138eacd0a5035b73b6f93035",
907
+ "comment": "feat: add makeResetStyles to @griffel/react"
908
+ },
909
+ {
910
+ "author": "beachball",
911
+ "package": "@griffel/react",
912
+ "comment": "Bump @griffel/core to v1.7.0",
913
+ "commit": "9173966f4f1c69556f68351e6361d9302c674621"
914
+ }
915
+ ]
916
+ }
917
+ },
918
+ {
919
+ "date": "Tue, 04 Oct 2022 08:44:33 GMT",
920
+ "tag": "@griffel/react_v1.3.2",
921
+ "version": "1.3.2",
922
+ "comments": {
923
+ "patch": [
924
+ {
925
+ "author": "liukerry@microsoft.com",
926
+ "package": "@griffel/react",
927
+ "commit": "ebe44fdd9c34a87a4106c95c5b47f5719c215e8f",
928
+ "comment": "fix: Adding children to prop type definitions for React 18"
929
+ },
930
+ {
931
+ "author": "beachball",
932
+ "package": "@griffel/react",
933
+ "comment": "Bump @griffel/core to v1.6.1",
934
+ "commit": "6828b9b754d65621e12a8fbff54c9f486eab032e"
935
+ }
936
+ ]
937
+ }
938
+ },
939
+ {
940
+ "date": "Tue, 16 Aug 2022 11:16:00 GMT",
941
+ "tag": "@griffel/react_v1.3.1",
942
+ "version": "1.3.1",
943
+ "comments": {
944
+ "patch": [
945
+ {
946
+ "author": "beachball",
947
+ "package": "@griffel/react",
948
+ "comment": "Bump @griffel/core to v1.6.0",
949
+ "commit": "545253c7bd0c84f3c72803b6b88946e617922714"
950
+ }
951
+ ]
952
+ }
953
+ },
954
+ {
955
+ "date": "Wed, 03 Aug 2022 15:28:36 GMT",
956
+ "tag": "@griffel/react_v1.3.0",
957
+ "version": "1.3.0",
958
+ "comments": {
959
+ "minor": [
960
+ {
961
+ "author": "olfedias@microsoft.com",
962
+ "package": "@griffel/react",
963
+ "commit": "5fe534790f489fc865785463f716b196d5db0cd1",
964
+ "comment": "feat: re-export GriffelRenderer type"
965
+ }
966
+ ]
967
+ }
968
+ },
969
+ {
970
+ "date": "Wed, 27 Jul 2022 13:03:12 GMT",
971
+ "tag": "@griffel/react_v1.2.3",
972
+ "version": "1.2.3",
973
+ "comments": {
974
+ "patch": [
975
+ {
976
+ "author": "beachball",
977
+ "package": "@griffel/react",
978
+ "comment": "Bump @griffel/core to v1.5.1",
979
+ "commit": "2b80f0c1fae8d5dc0ae66d072f499e25bd6042c4"
980
+ }
981
+ ]
982
+ }
983
+ },
984
+ {
985
+ "date": "Tue, 19 Jul 2022 10:20:09 GMT",
986
+ "tag": "@griffel/react_v1.2.2",
987
+ "version": "1.2.2",
988
+ "comments": {
989
+ "patch": [
990
+ {
991
+ "author": "lingfangao@hotmail.com",
992
+ "package": "@griffel/react",
993
+ "commit": "33f6914944cd6d3c895fac85e869b3586cbdfd98",
994
+ "comment": "feat: export `CreateDOMRendererOptions` from `@griffel/react`"
995
+ },
996
+ {
997
+ "author": "beachball",
998
+ "package": "@griffel/react",
999
+ "comment": "Bump @griffel/core to v1.5.0",
1000
+ "commit": "9b1d23a654c1af9ccde3aa4807b70dff2cdf58d7"
1001
+ }
1002
+ ]
1003
+ }
1004
+ },
1005
+ {
1006
+ "date": "Tue, 28 Jun 2022 09:50:50 GMT",
1007
+ "tag": "@griffel/react_v1.2.1",
1008
+ "version": "1.2.1",
1009
+ "comments": {
1010
+ "patch": [
1011
+ {
1012
+ "author": "beachball",
1013
+ "package": "@griffel/react",
1014
+ "comment": "Bump @griffel/core to v1.4.1",
1015
+ "commit": "604926fc2fdd4596cd122b92b82a3f5e5d40d23d"
1016
+ }
1017
+ ]
1018
+ }
1019
+ },
1020
+ {
1021
+ "date": "Thu, 23 Jun 2022 08:37:05 GMT",
1022
+ "tag": "@griffel/react_v1.2.0",
1023
+ "version": "1.2.0",
1024
+ "comments": {
1025
+ "minor": [
1026
+ {
1027
+ "author": "lingfangao@hotmail.com",
1028
+ "package": "@griffel/react",
1029
+ "commit": "4e4c7c29deae40ae64bd3b6860356d0adeb05e8e",
1030
+ "comment": "feat: update renderToStyleElement to use isomorphic stylesheets from renderer"
1031
+ },
1032
+ {
1033
+ "author": "lingfangao@hotmail.com",
1034
+ "package": "@griffel/react",
1035
+ "commit": "5897290e8065eb7631770593944ea194cbced029",
1036
+ "comment": "feat: update style rehydration to sort media queries"
1037
+ },
1038
+ {
1039
+ "author": "beachball",
1040
+ "package": "@griffel/react",
1041
+ "comment": "Bump @griffel/core to v1.4.0",
1042
+ "commit": "6b98eb67f7b4399bcc9bd66607e296640449ae98"
1043
+ }
1044
+ ],
1045
+ "patch": [
1046
+ {
1047
+ "author": "olfedias@microsoft.com",
1048
+ "package": "@griffel/react",
1049
+ "commit": "d516a9aa3b52032ca3419ad5824109394643296b",
1050
+ "comment": "chore: add __css() functions for upcoming CSS extraction"
1051
+ },
1052
+ {
1053
+ "author": "lingfangao@hotmail.com",
1054
+ "package": "@griffel/react",
1055
+ "commit": "307d727163986ff0bb818a76b2186888622da985",
1056
+ "comment": "chore: rename instances of styleElement to stylesheet where appropriate following [#137](https://github.com/microsoft/griffel/pull/137)"
1057
+ }
1058
+ ]
1059
+ }
1060
+ },
1061
+ {
1062
+ "date": "Thu, 26 May 2022 15:06:34 GMT",
1063
+ "tag": "@griffel/react_v1.1.0",
1064
+ "version": "1.1.0",
1065
+ "comments": {
1066
+ "minor": [
1067
+ {
1068
+ "author": "olfedias@microsoft.com",
1069
+ "package": "@griffel/react",
1070
+ "commit": "ef665ab8dbc42c4db6625144357041f55e78c46e",
1071
+ "comment": "feat: export useRenderer_unstable"
1072
+ }
1073
+ ]
1074
+ }
1075
+ },
1076
+ {
1077
+ "date": "Tue, 17 May 2022 08:34:48 GMT",
1078
+ "tag": "@griffel/react_v1.0.5",
1079
+ "version": "1.0.5",
1080
+ "comments": {
1081
+ "patch": [
1082
+ {
1083
+ "author": "beachball",
1084
+ "package": "@griffel/react",
1085
+ "comment": "Bump @griffel/core to v1.3.1",
1086
+ "commit": "ca92d20c52389ce51f089c39b03f2838c8329a60"
1087
+ }
1088
+ ]
1089
+ }
1090
+ },
1091
+ {
1092
+ "date": "Wed, 04 May 2022 16:15:22 GMT",
1093
+ "tag": "@griffel/react_v1.0.4",
1094
+ "version": "1.0.4",
1095
+ "comments": {
1096
+ "none": [
1097
+ {
1098
+ "author": "olfedias@microsoft.com",
1099
+ "package": "@griffel/react",
1100
+ "commit": "6a0f6e24af80afedf7b47c73f72c71a439b43aca",
1101
+ "comment": "chore: integrate bundle size tooling"
1102
+ },
1103
+ {
1104
+ "author": "yuanboxue@microsoft.com",
1105
+ "package": "@griffel/react",
1106
+ "commit": "726ddd4397c6991fe1e4df61940e77f3da9f0c83",
1107
+ "comment": "update babelrc with dev env presets"
1108
+ },
1109
+ {
1110
+ "author": "mgodbolt@microsoft.com",
1111
+ "package": "@griffel/react",
1112
+ "commit": "addc2c3922ef8b45d4a9028e84808b9a3eee6f9a",
1113
+ "comment": "docs: add support for @layer"
1114
+ },
1115
+ {
1116
+ "author": "olfedias@microsoft.com",
1117
+ "package": "@griffel/react",
1118
+ "commit": "5b6cdf3ede6983eba5997b26f5696f2ea459606d",
1119
+ "comment": "README update"
1120
+ }
1121
+ ],
1122
+ "patch": [
1123
+ {
1124
+ "author": "olfedias@microsoft.com",
1125
+ "package": "@griffel/react",
1126
+ "commit": "2391de2b83ac11647fda47d71c6843df90890d25",
1127
+ "comment": "fix: avoid errors with React 18"
1128
+ },
1129
+ {
1130
+ "author": "olfedias@microsoft.com",
1131
+ "package": "@griffel/react",
1132
+ "commit": "dbf9adc8acedba645ee95f469353836d1ae5fa6a",
1133
+ "comment": "fix: update isInsideComponent() check"
1134
+ },
1135
+ {
1136
+ "author": "beachball",
1137
+ "package": "@griffel/react",
1138
+ "comment": "Bump @griffel/core to v1.3.0",
1139
+ "commit": "dbf9adc8acedba645ee95f469353836d1ae5fa6a"
1140
+ }
1141
+ ]
1142
+ }
1143
+ },
1144
+ {
1145
+ "date": "Wed, 06 Apr 2022 13:28:28 GMT",
1146
+ "tag": "@griffel/react_v1.0.3",
1147
+ "version": "1.0.3",
1148
+ "comments": {
1149
+ "none": [
1150
+ {
1151
+ "author": "miroslav.stastny@microsoft.com",
1152
+ "package": "@griffel/react",
1153
+ "commit": "05635e139c200e609ddb531f40e144b65f9cdcf3",
1154
+ "comment": "Fallback values stories"
1155
+ },
1156
+ {
1157
+ "author": "olfedias@microsoft.com",
1158
+ "package": "@griffel/react",
1159
+ "commit": "2bda4e578a4fcdd1751a3e7496ea9a6df7916012",
1160
+ "comment": "docs: add docs for createDOMRenderer"
1161
+ }
1162
+ ],
1163
+ "patch": [
1164
+ {
1165
+ "author": "beachball",
1166
+ "package": "@griffel/react",
1167
+ "comment": "Bump @griffel/core to v1.2.0",
1168
+ "commit": "995c356bc77272f6fe69a604db6485d57a9ba7c4"
1169
+ }
1170
+ ]
1171
+ }
1172
+ },
1173
+ {
1174
+ "date": "Wed, 09 Mar 2022 13:56:06 GMT",
1175
+ "tag": "@griffel/react_v1.0.2",
1176
+ "version": "1.0.2",
1177
+ "comments": {
1178
+ "patch": [
1179
+ {
1180
+ "author": "olfedias@microsoft.com",
1181
+ "package": "@griffel/react",
1182
+ "commit": "de373b3e85d3987a0b52b38df5f60d40ba9e6f22",
1183
+ "comment": "chore: add dependencies explicitly to package.json"
1184
+ },
1185
+ {
1186
+ "author": "beachball",
1187
+ "package": "@griffel/react",
1188
+ "comment": "Bump @griffel/core to v1.1.1",
1189
+ "commit": "7e1846070ad96b71b2789fe76e37dcac4f6155e7"
1190
+ }
1191
+ ]
1192
+ }
1193
+ },
1194
+ {
1195
+ "date": "Mon, 07 Mar 2022 09:08:08 GMT",
1196
+ "tag": "@griffel/react_v1.0.1",
1197
+ "version": "1.0.1",
1198
+ "comments": {
1199
+ "none": [
1200
+ {
1201
+ "author": "olfedias@microsoft.com",
1202
+ "package": "@griffel/react",
1203
+ "commit": "35ec68e5db45f33511b6091ad43eb2b3a316fa7b",
1204
+ "comment": "chore: add \"type-check\" target to project.json"
1205
+ },
1206
+ {
1207
+ "author": "lingfangao@hotmail.com",
1208
+ "package": "@griffel/react",
1209
+ "commit": "ff6078d3d9dac9a1d5310a027d41e7d6a75ce959",
1210
+ "comment": "chore: enable pretty type-check output"
1211
+ },
1212
+ {
1213
+ "author": "miroslav.stastny@microsoft.com",
1214
+ "package": "@griffel/react",
1215
+ "commit": "2d95ec00fb3a24e94c5bc1444d9f35ed42fe947f",
1216
+ "comment": "chore: add storybook to @griffel/react"
1217
+ },
1218
+ {
1219
+ "author": "miroslav.stastny@microsoft.com",
1220
+ "package": "@griffel/react",
1221
+ "commit": "ddcdb53a3d08613bda5a05d37720f36f42bcea7d",
1222
+ "comment": "chore: add DOMRenderer filter story"
1223
+ }
1224
+ ],
1225
+ "patch": [
1226
+ {
1227
+ "author": "olfedias@microsoft.com",
1228
+ "package": "@griffel/react",
1229
+ "commit": "225b54cb0f9ebcf2294e5a66b47dc45bfa13e813",
1230
+ "comment": "chore: add sourcemaps to dist files"
1231
+ }
1232
+ ]
1233
+ }
1234
+ },
1235
+ {
1236
+ "date": "Thu, 27 Jan 2022 13:47:55 GMT",
1237
+ "tag": "@griffel/react_v1.0.0",
1238
+ "version": "1.0.0",
1239
+ "comments": {
1240
+ "none": [
1241
+ {
1242
+ "author": "olfedias@microsoft.com",
1243
+ "package": "@griffel/react",
1244
+ "commit": "2d85e06323002984336d459bd36e0fa89cfa1b4e",
1245
+ "comment": "fix typos in README"
1246
+ }
1247
+ ]
1248
+ }
1249
+ },
1250
+ {
1251
+ "date": "Mon, 24 Jan 2022 09:32:24 GMT",
1252
+ "tag": "@griffel/react_v1.0.0",
1253
+ "version": "1.0.0",
1254
+ "comments": {
1255
+ "none": [
1256
+ {
1257
+ "author": "olfedias@microsoft.com",
1258
+ "package": "@griffel/react",
1259
+ "commit": "0a94e833bbc3a68276a52774d1de14d39a33635c",
1260
+ "comment": "fix lint issues"
1261
+ }
1262
+ ]
1263
+ }
1264
+ },
1265
+ {
1266
+ "date": "Thu, 20 Jan 2022 09:31:57 GMT",
1267
+ "tag": "@griffel/react_v1.0.0",
1268
+ "version": "1.0.0",
1269
+ "comments": {
1270
+ "major": [
1271
+ {
1272
+ "author": "olfedias@microsoft.com",
1273
+ "package": "@griffel/react",
1274
+ "commit": "3557c746fdd2c297aebfd6203bb3350a8f45bcf1",
1275
+ "comment": "initial release"
1276
+ }
1277
+ ]
1278
+ }
1279
+ }
1280
+ ]
1281
+ }