@fluentui/react-avatar 9.0.0-nightly.f81b28ceb3.1 → 9.0.0-rc.11

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 (101) hide show
  1. package/CHANGELOG.json +891 -19
  2. package/CHANGELOG.md +336 -131
  3. package/MIGRATION.md +71 -66
  4. package/SPEC-AvatarGroup.md +185 -0
  5. package/SPEC.md +160 -135
  6. package/dist/index.d.ts +242 -0
  7. package/{lib → dist}/tsdoc-metadata.json +0 -0
  8. package/lib/Avatar.js.map +1 -1
  9. package/lib/AvatarGroup.js +2 -0
  10. package/lib/AvatarGroup.js.map +1 -0
  11. package/lib/components/Avatar/Avatar.js +7 -7
  12. package/lib/components/Avatar/Avatar.js.map +1 -1
  13. package/lib/components/Avatar/Avatar.types.js.map +1 -1
  14. package/lib/components/Avatar/index.js.map +1 -1
  15. package/lib/components/Avatar/renderAvatar.js +11 -7
  16. package/lib/components/Avatar/renderAvatar.js.map +1 -1
  17. package/lib/components/Avatar/useAvatar.js +115 -87
  18. package/lib/components/Avatar/useAvatar.js.map +1 -1
  19. package/lib/components/Avatar/useAvatarStyles.js +185 -112
  20. package/lib/components/Avatar/useAvatarStyles.js.map +1 -1
  21. package/lib/components/AvatarGroup/AvatarGroup.js +15 -0
  22. package/lib/components/AvatarGroup/AvatarGroup.js.map +1 -0
  23. package/lib/components/AvatarGroup/AvatarGroup.strings.js +4 -0
  24. package/lib/components/AvatarGroup/AvatarGroup.strings.js.map +1 -0
  25. package/lib/components/AvatarGroup/AvatarGroup.types.js +2 -0
  26. package/lib/components/AvatarGroup/AvatarGroup.types.js.map +1 -0
  27. package/lib/components/AvatarGroup/index.js +6 -0
  28. package/lib/components/AvatarGroup/index.js.map +1 -0
  29. package/lib/components/AvatarGroup/renderAvatarGroup.js +16 -0
  30. package/lib/components/AvatarGroup/renderAvatarGroup.js.map +1 -0
  31. package/lib/components/AvatarGroup/useAvatarGroup.js +51 -0
  32. package/lib/components/AvatarGroup/useAvatarGroup.js.map +1 -0
  33. package/lib/components/AvatarGroup/useAvatarGroupStyles.js +37 -0
  34. package/lib/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -0
  35. package/lib/index.js +3 -1
  36. package/lib/index.js.map +1 -1
  37. package/lib/utils/getInitials.js +26 -19
  38. package/lib/utils/getInitials.js.map +1 -1
  39. package/lib/utils/index.js.map +1 -1
  40. package/lib-commonjs/Avatar.js +1 -1
  41. package/lib-commonjs/Avatar.js.map +1 -1
  42. package/lib-commonjs/AvatarGroup.js +10 -0
  43. package/lib-commonjs/AvatarGroup.js.map +1 -0
  44. package/lib-commonjs/components/Avatar/Avatar.js +8 -8
  45. package/lib-commonjs/components/Avatar/Avatar.js.map +1 -1
  46. package/lib-commonjs/components/Avatar/Avatar.types.js.map +1 -1
  47. package/lib-commonjs/components/Avatar/index.js +1 -1
  48. package/lib-commonjs/components/Avatar/index.js.map +1 -1
  49. package/lib-commonjs/components/Avatar/renderAvatar.js +15 -12
  50. package/lib-commonjs/components/Avatar/renderAvatar.js.map +1 -1
  51. package/lib-commonjs/components/Avatar/useAvatar.js +120 -92
  52. package/lib-commonjs/components/Avatar/useAvatar.js.map +1 -1
  53. package/lib-commonjs/components/Avatar/useAvatarStyles.js +188 -115
  54. package/lib-commonjs/components/Avatar/useAvatarStyles.js.map +1 -1
  55. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js +26 -0
  56. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js.map +1 -0
  57. package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js +10 -0
  58. package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js.map +1 -0
  59. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js +6 -0
  60. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js.map +1 -0
  61. package/lib-commonjs/components/AvatarGroup/index.js +18 -0
  62. package/lib-commonjs/components/AvatarGroup/index.js.map +1 -0
  63. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js +27 -0
  64. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js.map +1 -0
  65. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js +64 -0
  66. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js.map +1 -0
  67. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js +47 -0
  68. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -0
  69. package/lib-commonjs/index.js +74 -2
  70. package/lib-commonjs/index.js.map +1 -1
  71. package/lib-commonjs/utils/getInitials.js +26 -19
  72. package/lib-commonjs/utils/getInitials.js.map +1 -1
  73. package/lib-commonjs/utils/index.js.map +1 -1
  74. package/package.json +24 -25
  75. package/dist/react-avatar.d.ts +0 -132
  76. package/lib/Avatar.d.ts +0 -1
  77. package/lib/common/isConformant.d.ts +0 -4
  78. package/lib/common/isConformant.js +0 -12
  79. package/lib/common/isConformant.js.map +0 -1
  80. package/lib/components/Avatar/Avatar.d.ts +0 -3
  81. package/lib/components/Avatar/Avatar.types.d.ts +0 -112
  82. package/lib/components/Avatar/index.d.ts +0 -5
  83. package/lib/components/Avatar/renderAvatar.d.ts +0 -2
  84. package/lib/components/Avatar/useAvatar.d.ts +0 -3
  85. package/lib/components/Avatar/useAvatarStyles.d.ts +0 -2
  86. package/lib/index.d.ts +0 -1
  87. package/lib/utils/getInitials.d.ts +0 -9
  88. package/lib/utils/index.d.ts +0 -1
  89. package/lib-commonjs/Avatar.d.ts +0 -1
  90. package/lib-commonjs/common/isConformant.d.ts +0 -4
  91. package/lib-commonjs/common/isConformant.js +0 -23
  92. package/lib-commonjs/common/isConformant.js.map +0 -1
  93. package/lib-commonjs/components/Avatar/Avatar.d.ts +0 -3
  94. package/lib-commonjs/components/Avatar/Avatar.types.d.ts +0 -112
  95. package/lib-commonjs/components/Avatar/index.d.ts +0 -5
  96. package/lib-commonjs/components/Avatar/renderAvatar.d.ts +0 -2
  97. package/lib-commonjs/components/Avatar/useAvatar.d.ts +0 -3
  98. package/lib-commonjs/components/Avatar/useAvatarStyles.d.ts +0 -2
  99. package/lib-commonjs/index.d.ts +0 -1
  100. package/lib-commonjs/utils/getInitials.d.ts +0 -9
  101. package/lib-commonjs/utils/index.d.ts +0 -1
package/CHANGELOG.json CHANGED
@@ -2,58 +2,930 @@
2
2
  "name": "@fluentui/react-avatar",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 19 Oct 2021 12:39:14 GMT",
6
- "tag": "@fluentui/react-avatar_v9.0.0-nightly.f81b28ceb3.1",
7
- "version": "9.0.0-nightly.f81b28ceb3.1",
5
+ "date": "Thu, 26 May 2022 20:59:58 GMT",
6
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.11",
7
+ "version": "9.0.0-rc.11",
8
8
  "comments": {
9
9
  "prerelease": [
10
+ {
11
+ "author": "sarah.higley@microsoft.com",
12
+ "package": "@fluentui/react-avatar",
13
+ "commit": "af1794dd70ab6bc30f9c19db3ee54b7a22f3c24c",
14
+ "comment": "fix react-avatar: use initials as a fallback label even when no id is manually defined"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-avatar",
19
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.11",
20
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-avatar",
25
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.12",
26
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-avatar",
31
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.12",
32
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-avatar",
37
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.12",
38
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
39
+ }
40
+ ]
41
+ }
42
+ },
43
+ {
44
+ "date": "Mon, 23 May 2022 18:56:40 GMT",
45
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.10",
46
+ "version": "9.0.0-rc.10",
47
+ "comments": {
48
+ "prerelease": [
49
+ {
50
+ "author": "seanmonahan@microsoft.com",
51
+ "package": "@fluentui/react-avatar",
52
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
53
+ "comment": "BREAKING: update string unions to use spinal-case"
54
+ },
55
+ {
56
+ "author": "esteban.230@hotmail.com",
57
+ "package": "@fluentui/react-avatar",
58
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
59
+ "comment": "Removing <componentName>ClassName exports."
60
+ },
61
+ {
62
+ "author": "beachball",
63
+ "package": "@fluentui/react-avatar",
64
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.10",
65
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
66
+ },
67
+ {
68
+ "author": "beachball",
69
+ "package": "@fluentui/react-avatar",
70
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.11",
71
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
72
+ },
73
+ {
74
+ "author": "beachball",
75
+ "package": "@fluentui/react-avatar",
76
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.11",
77
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
78
+ },
79
+ {
80
+ "author": "beachball",
81
+ "package": "@fluentui/react-avatar",
82
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.11",
83
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
84
+ },
85
+ {
86
+ "author": "beachball",
87
+ "package": "@fluentui/react-avatar",
88
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.9",
89
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
90
+ },
91
+ {
92
+ "author": "beachball",
93
+ "package": "@fluentui/react-avatar",
94
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.9",
95
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
96
+ },
97
+ {
98
+ "author": "beachball",
99
+ "package": "@fluentui/react-avatar",
100
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7",
101
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
102
+ }
103
+ ]
104
+ }
105
+ },
106
+ {
107
+ "date": "Mon, 23 May 2022 12:14:00 GMT",
108
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.9",
109
+ "version": "9.0.0-rc.9",
110
+ "comments": {
111
+ "prerelease": [
112
+ {
113
+ "author": "behowell@microsoft.com",
114
+ "package": "@fluentui/react-avatar",
115
+ "commit": "f57165a466c9d62226af2d49928f6eb797c20432",
116
+ "comment": "Add support for size={16} to Avatar"
117
+ },
118
+ {
119
+ "author": "olfedias@microsoft.com",
120
+ "package": "@fluentui/react-avatar",
121
+ "commit": "60804cec07a495b8a5d1fc66338bf0443b212144",
122
+ "comment": "chore: Update Griffel to latest version"
123
+ },
124
+ {
125
+ "author": "olfedias@microsoft.com",
126
+ "package": "@fluentui/react-avatar",
127
+ "commit": "f120fe9160ad7311a87af0cfacd8d2fb26275e34",
128
+ "comment": "chore: Update Griffel to latest version"
129
+ },
130
+ {
131
+ "author": "esteban.230@hotmail.com",
132
+ "package": "@fluentui/react-avatar",
133
+ "commit": "72684d3d57ee3cb0d7012a31559b8a2b7ad36849",
134
+ "comment": "Moving Avatar stories to stories folder."
135
+ },
136
+ {
137
+ "author": "beachball",
138
+ "package": "@fluentui/react-avatar",
139
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.9",
140
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
141
+ },
142
+ {
143
+ "author": "beachball",
144
+ "package": "@fluentui/react-avatar",
145
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.10",
146
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
147
+ },
148
+ {
149
+ "author": "beachball",
150
+ "package": "@fluentui/react-avatar",
151
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.10",
152
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
153
+ },
154
+ {
155
+ "author": "beachball",
156
+ "package": "@fluentui/react-avatar",
157
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.10",
158
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
159
+ },
160
+ {
161
+ "author": "beachball",
162
+ "package": "@fluentui/react-avatar",
163
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.8",
164
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
165
+ },
166
+ {
167
+ "author": "beachball",
168
+ "package": "@fluentui/react-avatar",
169
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.8",
170
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
171
+ },
172
+ {
173
+ "author": "beachball",
174
+ "package": "@fluentui/react-avatar",
175
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.9",
176
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
177
+ },
178
+ {
179
+ "author": "beachball",
180
+ "package": "@fluentui/react-avatar",
181
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6",
182
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
183
+ }
184
+ ],
185
+ "none": [
186
+ {
187
+ "author": "sarah.higley@microsoft.com",
188
+ "package": "@fluentui/react-avatar",
189
+ "commit": "59ea4de9c55cfaca51bac4a07e1e03fb60939a15",
190
+ "comment": "remove commons type from avatar and avatargroup"
191
+ }
192
+ ]
193
+ }
194
+ },
195
+ {
196
+ "date": "Thu, 05 May 2022 18:26:29 GMT",
197
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.8",
198
+ "version": "9.0.0-rc.8",
199
+ "comments": {
200
+ "prerelease": [
201
+ {
202
+ "author": "martinhochel@microsoft.com",
203
+ "package": "@fluentui/react-avatar",
204
+ "commit": "e465622ca241f3dd0534da50823a51e7311fd9ef",
205
+ "comment": "feat: ship rolluped only dts"
206
+ },
207
+ {
208
+ "author": "beachball",
209
+ "package": "@fluentui/react-avatar",
210
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.8",
211
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
212
+ },
213
+ {
214
+ "author": "beachball",
215
+ "package": "@fluentui/react-avatar",
216
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.9",
217
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
218
+ },
219
+ {
220
+ "author": "beachball",
221
+ "package": "@fluentui/react-avatar",
222
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.9",
223
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
224
+ },
225
+ {
226
+ "author": "beachball",
227
+ "package": "@fluentui/react-avatar",
228
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.9",
229
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
230
+ },
231
+ {
232
+ "author": "beachball",
233
+ "package": "@fluentui/react-avatar",
234
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.7",
235
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
236
+ },
237
+ {
238
+ "author": "beachball",
239
+ "package": "@fluentui/react-avatar",
240
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.7",
241
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
242
+ },
243
+ {
244
+ "author": "beachball",
245
+ "package": "@fluentui/react-avatar",
246
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.8",
247
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
248
+ },
249
+ {
250
+ "author": "beachball",
251
+ "package": "@fluentui/react-avatar",
252
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5",
253
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
254
+ }
255
+ ]
256
+ }
257
+ },
258
+ {
259
+ "date": "Wed, 04 May 2022 13:26:37 GMT",
260
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.7",
261
+ "version": "9.0.0-rc.7",
262
+ "comments": {
263
+ "none": [
264
+ {
265
+ "author": "tristan.watanabe@gmail.com",
266
+ "package": "@fluentui/react-avatar",
267
+ "commit": "e791a91f5f02b6dc19f178543b6a6b95d49edb46",
268
+ "comment": "react-avatar: Move to new common folder."
269
+ },
270
+ {
271
+ "author": "esteban.230@hotmail.com",
272
+ "package": "@fluentui/react-avatar",
273
+ "commit": "2a852c82989e92d10a979979c16be97c30a51027",
274
+ "comment": "Adding AvatarGroup spec to react-avatar."
275
+ }
276
+ ],
277
+ "prerelease": [
278
+ {
279
+ "author": "beachball",
280
+ "package": "@fluentui/react-avatar",
281
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.7",
282
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
283
+ },
284
+ {
285
+ "author": "beachball",
286
+ "package": "@fluentui/react-avatar",
287
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.8",
288
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
289
+ },
290
+ {
291
+ "author": "beachball",
292
+ "package": "@fluentui/react-avatar",
293
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.8",
294
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
295
+ },
296
+ {
297
+ "author": "beachball",
298
+ "package": "@fluentui/react-avatar",
299
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.8",
300
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
301
+ },
302
+ {
303
+ "author": "beachball",
304
+ "package": "@fluentui/react-avatar",
305
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.6",
306
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
307
+ },
308
+ {
309
+ "author": "beachball",
310
+ "package": "@fluentui/react-avatar",
311
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.6",
312
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
313
+ },
314
+ {
315
+ "author": "beachball",
316
+ "package": "@fluentui/react-avatar",
317
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.7",
318
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
319
+ }
320
+ ]
321
+ }
322
+ },
323
+ {
324
+ "date": "Tue, 19 Apr 2022 19:17:08 GMT",
325
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.6",
326
+ "version": "9.0.0-rc.6",
327
+ "comments": {
328
+ "none": [
329
+ {
330
+ "author": "elcraig@microsoft.com",
331
+ "package": "@fluentui/react-avatar",
332
+ "commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
333
+ "comment": "Update React dev deps and hoist them to the repo root"
334
+ },
10
335
  {
11
336
  "author": "email not defined",
12
337
  "package": "@fluentui/react-avatar",
13
- "comment": "Release nightly v9",
14
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
338
+ "commit": "83f32d33d0750e9afad10b98a98040c70919f7cf",
339
+ "comment": "Added AvatarGroup component to react-avatar"
340
+ },
341
+ {
342
+ "author": "mgodbolt@microsoft.com",
343
+ "package": "@fluentui/react-avatar",
344
+ "commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
345
+ "comment": "create v9 api extractor config and set all v9 packags to use it, suppress forgotten export"
346
+ }
347
+ ],
348
+ "prerelease": [
349
+ {
350
+ "author": "seanmonahan@microsoft.com",
351
+ "package": "@fluentui/react-avatar",
352
+ "commit": "086a675fd0c648944ff4048450190a0a13467de3",
353
+ "comment": "Add static classnames to Avatar"
354
+ },
355
+ {
356
+ "author": "Humberto.Morimoto@microsoft.com",
357
+ "package": "@fluentui/react-avatar",
358
+ "commit": "b819815318c0089f48416dc023567578efb31a46",
359
+ "comment": "Avatar: Fix style for sizes 20 and 24 to have semibold fontWeight instead of regular."
360
+ },
361
+ {
362
+ "author": "Humberto.Morimoto@microsoft.com",
363
+ "package": "@fluentui/react-avatar",
364
+ "commit": "3c919593c36ada045063934822a779e23259f06a",
365
+ "comment": "Removing star exports."
366
+ },
367
+ {
368
+ "author": "seanmonahan@microsoft.com",
369
+ "package": "@fluentui/react-avatar",
370
+ "commit": "bea6aecfed8612f7b0664ab8bac77c5fccee1efb",
371
+ "comment": "update react-icons version to ^2.0.166-rc.3 from ^2.0.159-beta.10"
372
+ },
373
+ {
374
+ "author": "martinhochel@microsoft.com",
375
+ "package": "@fluentui/react-avatar",
376
+ "commit": "8722596e561b57decfe9aa79121db844737102ff",
377
+ "comment": "add missing dependencies"
378
+ },
379
+ {
380
+ "author": "olfedias@microsoft.com",
381
+ "package": "@fluentui/react-avatar",
382
+ "commit": "e569d6e04d83cbcc6225e61db52ff81d2addd363",
383
+ "comment": "chore: Update Griffel to latest version"
384
+ },
385
+ {
386
+ "author": "beachball",
387
+ "package": "@fluentui/react-avatar",
388
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.6",
389
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
390
+ },
391
+ {
392
+ "author": "beachball",
393
+ "package": "@fluentui/react-avatar",
394
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.5",
395
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
396
+ },
397
+ {
398
+ "author": "beachball",
399
+ "package": "@fluentui/react-avatar",
400
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.5",
401
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
402
+ },
403
+ {
404
+ "author": "beachball",
405
+ "package": "@fluentui/react-avatar",
406
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.6",
407
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
408
+ },
409
+ {
410
+ "author": "beachball",
411
+ "package": "@fluentui/react-avatar",
412
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4",
413
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
414
+ }
415
+ ]
416
+ }
417
+ },
418
+ {
419
+ "date": "Fri, 04 Mar 2022 05:17:33 GMT",
420
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.5",
421
+ "version": "9.0.0-rc.5",
422
+ "comments": {
423
+ "prerelease": [
424
+ {
425
+ "author": "dzearing@microsoft.com",
426
+ "package": "@fluentui/react-avatar",
427
+ "commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
428
+ "comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
429
+ },
430
+ {
431
+ "author": "beachball",
432
+ "package": "@fluentui/react-avatar",
433
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.5",
434
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
435
+ },
436
+ {
437
+ "author": "beachball",
438
+ "package": "@fluentui/react-avatar",
439
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.4",
440
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
441
+ },
442
+ {
443
+ "author": "beachball",
444
+ "package": "@fluentui/react-avatar",
445
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.5",
446
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
447
+ }
448
+ ]
449
+ }
450
+ },
451
+ {
452
+ "date": "Tue, 01 Mar 2022 02:17:40 GMT",
453
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.4",
454
+ "version": "9.0.0-rc.4",
455
+ "comments": {
456
+ "prerelease": [
457
+ {
458
+ "author": "beachball",
459
+ "package": "@fluentui/react-avatar",
460
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.4",
461
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
462
+ },
463
+ {
464
+ "author": "beachball",
465
+ "package": "@fluentui/react-avatar",
466
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
467
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
468
+ }
469
+ ]
470
+ }
471
+ },
472
+ {
473
+ "date": "Fri, 18 Feb 2022 13:35:28 GMT",
474
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.3",
475
+ "version": "9.0.0-rc.3",
476
+ "comments": {
477
+ "prerelease": [
478
+ {
479
+ "author": "behowell@microsoft.com",
480
+ "package": "@fluentui/react-avatar",
481
+ "commit": "36b34c86e38b362cfda7deb3840f6fac2a860931",
482
+ "comment": "Hide Avatar's image if it fails to load, rather than displaying the broken image icon"
483
+ },
484
+ {
485
+ "author": "lingfangao@hotmail.com",
486
+ "package": "@fluentui/react-avatar",
487
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
488
+ "comment": "fix: Source maps contain original source code"
489
+ },
490
+ {
491
+ "author": "behowell@microsoft.com",
492
+ "package": "@fluentui/react-avatar",
493
+ "commit": "d80c90385389e1e4eee52400dd7cf4b4dbe067fd",
494
+ "comment": "Update Avatar SPEC.md and MIGRATION.md"
495
+ },
496
+ {
497
+ "author": "beachball",
498
+ "package": "@fluentui/react-avatar",
499
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.3",
500
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
501
+ },
502
+ {
503
+ "author": "beachball",
504
+ "package": "@fluentui/react-avatar",
505
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.3",
506
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
507
+ },
508
+ {
509
+ "author": "beachball",
510
+ "package": "@fluentui/react-avatar",
511
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
512
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
513
+ },
514
+ {
515
+ "author": "beachball",
516
+ "package": "@fluentui/react-avatar",
517
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
518
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
519
+ }
520
+ ]
521
+ }
522
+ },
523
+ {
524
+ "date": "Thu, 10 Feb 2022 08:52:19 GMT",
525
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.1",
526
+ "version": "9.0.0-rc.1",
527
+ "comments": {
528
+ "prerelease": [
529
+ {
530
+ "author": "Humberto.Morimoto@microsoft.com",
531
+ "package": "@fluentui/react-avatar",
532
+ "commit": "00a5d945904c896a0664de6ba72c145a255f0848",
533
+ "comment": "Updating use of tokens.fontWeight now that we don't need to use casting."
534
+ },
535
+ {
536
+ "author": "behowell@microsoft.com",
537
+ "package": "@fluentui/react-avatar",
538
+ "commit": "9e776a0e1d1fd1fba0596c606c15007300c5d6b7",
539
+ "comment": "Make Avatar's initials be un-selectable text"
540
+ },
541
+ {
542
+ "author": "olfedias@microsoft.com",
543
+ "package": "@fluentui/react-avatar",
544
+ "commit": "b23239743c4f5518bcf7dcad496a36fc16bbd2e5",
545
+ "comment": "update @fluentui/react-icons package"
546
+ },
547
+ {
548
+ "author": "olfedias@microsoft.com",
549
+ "package": "@fluentui/react-avatar",
550
+ "commit": "c1b4c7e724cef9f5090b076f3d45add0a40ff39a",
551
+ "comment": "Replace make-styles packages with griffel equivalents."
552
+ },
553
+ {
554
+ "author": "behowell@microsoft.com",
555
+ "package": "@fluentui/react-avatar",
556
+ "commit": "e1926bfeca2a0ae5a469133a0c8257a7e4883332",
557
+ "comment": "Update documentation stories"
558
+ },
559
+ {
560
+ "author": "behowell@microsoft.com",
561
+ "package": "@fluentui/react-avatar",
562
+ "commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
563
+ "comment": "BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
564
+ },
565
+ {
566
+ "author": "behowell@microsoft.com",
567
+ "package": "@fluentui/react-avatar",
568
+ "commit": "e8292dd620acdace35e912df8f48518d48d70e93",
569
+ "comment": "Export the default getInitials implementation"
570
+ },
571
+ {
572
+ "author": "ololubek@microsoft.com",
573
+ "package": "@fluentui/react-avatar",
574
+ "commit": "7cb2a5d8db1b6a1ddb638aa82d5815ab5ae84e69",
575
+ "comment": "(fix): Update react-icons dependency to latest version"
576
+ },
577
+ {
578
+ "author": "mgodbolt@microsoft.com",
579
+ "package": "@fluentui/react-avatar",
580
+ "commit": "839ec14849e112b85aa321d034739ec421199141",
581
+ "comment": "remove export of commons types"
582
+ },
583
+ {
584
+ "author": "behowell@microsoft.com",
585
+ "package": "@fluentui/react-avatar",
586
+ "commit": "9c664bfd9f7b0f6ea3b5d61d4701fb9d76667c02",
587
+ "comment": "Rename `label` slot to `initials`, remove `getInitials` prop, and improve accessibility"
588
+ },
589
+ {
590
+ "author": "behowell@microsoft.com",
591
+ "package": "@fluentui/react-avatar",
592
+ "commit": "05fb002b1d21d6de6f8e10c23a354d956c403dd5",
593
+ "comment": "Update Avatar to have role=\"img\" on the root, and other a11y fixes"
594
+ },
595
+ {
596
+ "author": "olfedias@microsoft.com",
597
+ "package": "@fluentui/react-avatar",
598
+ "commit": "f6ad9a6a84a7a9a20016c87899b36086fa031f64",
599
+ "comment": "update styles to not use CSS shorthands"
600
+ },
601
+ {
602
+ "author": "Humberto.Morimoto@microsoft.com",
603
+ "package": "@fluentui/react-avatar",
604
+ "commit": "e0b8e1fa6980077e7b311fd1c72c28d3e4305db0",
605
+ "comment": "Updating based on changes to composition types."
606
+ },
607
+ {
608
+ "author": "behowell@microsoft.com",
609
+ "package": "@fluentui/react-avatar",
610
+ "commit": "9e4b8b8608dafd7a3a699b0ba5c87d02a0e9445f",
611
+ "comment": "Fix Avatar's high contrast border on Windows"
612
+ },
613
+ {
614
+ "author": "Humberto.Morimoto@microsoft.com",
615
+ "package": "@fluentui/react-avatar",
616
+ "commit": "67bd80940951777ee8454f424f7a64018d9267d2",
617
+ "comment": "react-avatar: Replacing use of functions in makeStyles with direct use of tokens."
618
+ },
619
+ {
620
+ "author": "Humberto.Morimoto@microsoft.com",
621
+ "package": "@fluentui/react-avatar",
622
+ "commit": "0bc161458eae5ae8d387172430496ce9829b1bb1",
623
+ "comment": "Using ComponentSlotProps instead of ObjectShorthandProps."
624
+ },
625
+ {
626
+ "author": "lingfangao@hotmail.com",
627
+ "package": "@fluentui/react-avatar",
628
+ "commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
629
+ "comment": "Bump Fluent UI packages to 9.0.0-rc"
630
+ },
631
+ {
632
+ "author": "behowell@microsoft.com",
633
+ "package": "@fluentui/react-avatar",
634
+ "commit": "d7ba6e9316046628032e497d4a6d50c4c4c55afa",
635
+ "comment": "Remove `glow` and `ring-glow` from activeAppearance, as their visuals are not yet finalized."
636
+ },
637
+ {
638
+ "author": "behowell@microsoft.com",
639
+ "package": "@fluentui/react-avatar",
640
+ "commit": "c9789297011ee8f956e9ee5f338bd1da4abbca87",
641
+ "comment": "Update Avatar to use resizable icons"
642
+ },
643
+ {
644
+ "author": "behowell@microsoft.com",
645
+ "package": "@fluentui/react-avatar",
646
+ "commit": "7cc28ed8320b00f42d91c63882f10316db2205c5",
647
+ "comment": "Remove component's shorthandProps array"
648
+ },
649
+ {
650
+ "author": "behowell@microsoft.com",
651
+ "package": "@fluentui/react-avatar",
652
+ "commit": "53b01d71e335715fda91b33e3d7bbd9d471d5ed3",
653
+ "comment": "Refactor component Slot typings"
654
+ },
655
+ {
656
+ "author": "beachball",
657
+ "package": "@fluentui/react-avatar",
658
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.1",
659
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
660
+ },
661
+ {
662
+ "author": "beachball",
663
+ "package": "@fluentui/react-avatar",
664
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.1",
665
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
666
+ },
667
+ {
668
+ "author": "beachball",
669
+ "package": "@fluentui/react-avatar",
670
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
671
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
672
+ },
673
+ {
674
+ "author": "beachball",
675
+ "package": "@fluentui/react-avatar",
676
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
677
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
678
+ }
679
+ ],
680
+ "none": [
681
+ {
682
+ "author": "bsunderhus@microsoft.com",
683
+ "package": "@fluentui/react-avatar",
684
+ "commit": "c0d4e63ee58e60e2c6674efbacc0783cd520984e",
685
+ "comment": "Updates components with nullRender changes"
686
+ },
687
+ {
688
+ "author": "martinhochel@microsoft.com",
689
+ "package": "@fluentui/react-avatar",
690
+ "commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
691
+ "comment": "chore: use storybook runner for all vNext packages"
692
+ },
693
+ {
694
+ "author": "olfedias@microsoft.com",
695
+ "package": "@fluentui/react-avatar",
696
+ "commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
697
+ "comment": "remove inline-style-expand-shorthand from tsconfigs"
698
+ },
699
+ {
700
+ "author": "tkrasniqi@microsoft.com",
701
+ "package": "@fluentui/react-avatar",
702
+ "commit": "324980bcd7a0fda592fad173fa212bb6a316cc0e",
703
+ "comment": "Migration to new dx"
704
+ }
705
+ ]
706
+ }
707
+ },
708
+ {
709
+ "date": "Thu, 25 Nov 2021 08:34:10 GMT",
710
+ "tag": "@fluentui/react-avatar_v9.0.0-beta.4",
711
+ "version": "9.0.0-beta.4",
712
+ "comments": {
713
+ "none": [
714
+ {
715
+ "author": "lingfangao@hotmail.com",
716
+ "package": "@fluentui/react-avatar",
717
+ "commit": "48e52fc91e41ab721c9842f8f68ac84ad569a851",
718
+ "comment": "Update snapshots from presence badge changes"
719
+ }
720
+ ],
721
+ "prerelease": [
722
+ {
723
+ "author": "ololubek@microsoft.com",
724
+ "package": "@fluentui/react-avatar",
725
+ "commit": "ecab13cfd6ac22657020db8f86eb89f952b0f953",
726
+ "comment": "update react-icons dependency"
727
+ },
728
+ {
729
+ "author": "beachball",
730
+ "package": "@fluentui/react-avatar",
731
+ "comment": "Bump @fluentui/react-badge to v9.0.0-beta.4",
732
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
733
+ },
734
+ {
735
+ "author": "beachball",
736
+ "package": "@fluentui/react-avatar",
737
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
738
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
739
+ },
740
+ {
741
+ "author": "beachball",
742
+ "package": "@fluentui/react-avatar",
743
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.4",
744
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
745
+ },
746
+ {
747
+ "author": "beachball",
748
+ "package": "@fluentui/react-avatar",
749
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
750
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
751
+ },
752
+ {
753
+ "author": "beachball",
754
+ "package": "@fluentui/react-avatar",
755
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
756
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
757
+ },
758
+ {
759
+ "author": "beachball",
760
+ "package": "@fluentui/react-avatar",
761
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
762
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
763
+ },
764
+ {
765
+ "author": "beachball",
766
+ "package": "@fluentui/react-avatar",
767
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
768
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
769
+ }
770
+ ]
771
+ }
772
+ },
773
+ {
774
+ "date": "Fri, 12 Nov 2021 13:25:14 GMT",
775
+ "tag": "@fluentui/react-avatar_v9.0.0-beta.3",
776
+ "version": "9.0.0-beta.3",
777
+ "comments": {
778
+ "none": [
779
+ {
780
+ "author": "lingfangao@hotmail.com",
781
+ "package": "@fluentui/react-avatar",
782
+ "commit": "00f70581480b536e723fb69edf0ae617beac4807",
783
+ "comment": "Remove beta release tag"
784
+ },
785
+ {
786
+ "author": "me@levithomason.com",
787
+ "package": "@fluentui/react-avatar",
788
+ "commit": "cdbe0769d2a6ee91a98a3e62c6ac9329a714355c",
789
+ "comment": "Docs update"
790
+ },
791
+ {
792
+ "author": "mgodbolt@microsoft.com",
793
+ "package": "@fluentui/react-avatar",
794
+ "commit": "7fafe76eb2c09f9d17a03c11ba73729d91ef411e",
795
+ "comment": "update docs descriptions"
796
+ },
797
+ {
798
+ "author": "me@levithomason.com",
799
+ "package": "@fluentui/react-avatar",
800
+ "commit": "88568113e0d36674210fe3323af7e9dcaa998a45",
801
+ "comment": "Storybook stories"
802
+ }
803
+ ],
804
+ "prerelease": [
805
+ {
806
+ "author": "gcox@microsoft.com",
807
+ "package": "@fluentui/react-avatar",
808
+ "commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
809
+ "comment": "Updated beta and RC components to ES2019"
810
+ },
811
+ {
812
+ "author": "olfedias@microsoft.com",
813
+ "package": "@fluentui/react-avatar",
814
+ "commit": "e42f50656c1b703d88c398b114f225ba5f1f5f22",
815
+ "comment": "export static classes for components"
816
+ },
817
+ {
818
+ "author": "beachball",
819
+ "package": "@fluentui/react-avatar",
820
+ "comment": "Bump @fluentui/react-badge to v9.0.0-beta.3",
821
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
822
+ },
823
+ {
824
+ "author": "beachball",
825
+ "package": "@fluentui/react-avatar",
826
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
827
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
828
+ },
829
+ {
830
+ "author": "beachball",
831
+ "package": "@fluentui/react-avatar",
832
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.3",
833
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
834
+ },
835
+ {
836
+ "author": "beachball",
837
+ "package": "@fluentui/react-avatar",
838
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
839
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
840
+ },
841
+ {
842
+ "author": "beachball",
843
+ "package": "@fluentui/react-avatar",
844
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
845
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
846
+ },
847
+ {
848
+ "author": "beachball",
849
+ "package": "@fluentui/react-avatar",
850
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
851
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
852
+ },
853
+ {
854
+ "author": "beachball",
855
+ "package": "@fluentui/react-avatar",
856
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
857
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
858
+ }
859
+ ]
860
+ }
861
+ },
862
+ {
863
+ "date": "Wed, 27 Oct 2021 12:14:13 GMT",
864
+ "tag": "@fluentui/react-avatar_v9.0.0-beta.2",
865
+ "version": "9.0.0-beta.2",
866
+ "comments": {
867
+ "none": [
868
+ {
869
+ "author": "olfedias@microsoft.com",
870
+ "package": "@fluentui/react-avatar",
871
+ "commit": "193af6527f202f11efdd71da7581cc6e76ca2925",
872
+ "comment": "remove unused story file"
873
+ }
874
+ ],
875
+ "prerelease": [
876
+ {
877
+ "author": "gcox@microsoft.com",
878
+ "package": "@fluentui/react-avatar",
879
+ "commit": "31aa6d40ed6b3b411318d94fa56d4963b20b6e55",
880
+ "comment": "Removed duplicate 'Avatar' from story names"
881
+ },
882
+ {
883
+ "author": "peter@draxler.ml",
884
+ "package": "@fluentui/react-avatar",
885
+ "commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
886
+ "comment": "added styling of documentation"
15
887
  },
16
888
  {
17
889
  "author": "beachball",
18
890
  "package": "@fluentui/react-avatar",
19
- "comment": "Bump @fluentui/react-badge to v9.0.0-nightly.f81b28ceb3.1",
20
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
891
+ "comment": "Bump @fluentui/react-badge to v9.0.0-beta.2",
892
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
21
893
  },
22
894
  {
23
895
  "author": "beachball",
24
896
  "package": "@fluentui/react-avatar",
25
- "comment": "Bump @fluentui/react-make-styles to v9.0.0-nightly.f81b28ceb3.1",
26
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
897
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.2",
898
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
27
899
  },
28
900
  {
29
901
  "author": "beachball",
30
902
  "package": "@fluentui/react-avatar",
31
- "comment": "Bump @fluentui/react-theme to v9.0.0-nightly.f81b28ceb3.1",
32
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
903
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.2",
904
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
33
905
  },
34
906
  {
35
907
  "author": "beachball",
36
908
  "package": "@fluentui/react-avatar",
37
- "comment": "Bump @fluentui/react-utilities to v9.0.0-nightly.f81b28ceb3.1",
38
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
909
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
910
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
39
911
  },
40
912
  {
41
913
  "author": "beachball",
42
914
  "package": "@fluentui/react-avatar",
43
- "comment": "Bump @fluentui/babel-make-styles to v9.0.0-nightly.f81b28ceb3.1",
44
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
915
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.2",
916
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
45
917
  },
46
918
  {
47
919
  "author": "beachball",
48
920
  "package": "@fluentui/react-avatar",
49
- "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-nightly.f81b28ceb3.1",
50
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
921
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2",
922
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
51
923
  },
52
924
  {
53
925
  "author": "beachball",
54
926
  "package": "@fluentui/react-avatar",
55
- "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-nightly.f81b28ceb3.1",
56
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
927
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2",
928
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
57
929
  }
58
930
  ]
59
931
  }