@fluentui/react-avatar 9.0.0-rc.8 → 9.0.1

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 (87) hide show
  1. package/CHANGELOG.json +544 -1
  2. package/CHANGELOG.md +133 -2
  3. package/dist/index.d.ts +161 -99
  4. package/lib/AvatarGroupItem.js +2 -0
  5. package/lib/AvatarGroupItem.js.map +1 -0
  6. package/lib/components/Avatar/Avatar.js.map +1 -1
  7. package/lib/components/Avatar/Avatar.types.js.map +1 -1
  8. package/lib/components/Avatar/renderAvatar.js.map +1 -1
  9. package/lib/components/Avatar/useAvatar.js +7 -10
  10. package/lib/components/Avatar/useAvatar.js.map +1 -1
  11. package/lib/components/Avatar/useAvatarStyles.js +74 -70
  12. package/lib/components/Avatar/useAvatarStyles.js.map +1 -1
  13. package/lib/components/AvatarGroup/AvatarGroup.js +2 -1
  14. package/lib/components/AvatarGroup/AvatarGroup.js.map +1 -1
  15. package/lib/components/AvatarGroup/AvatarGroup.types.js.map +1 -1
  16. package/lib/components/AvatarGroup/renderAvatarGroup.js +31 -4
  17. package/lib/components/AvatarGroup/renderAvatarGroup.js.map +1 -1
  18. package/lib/components/AvatarGroup/useAvatarGroup.js +65 -34
  19. package/lib/components/AvatarGroup/useAvatarGroup.js.map +1 -1
  20. package/lib/components/AvatarGroup/useAvatarGroupStyles.js +274 -15
  21. package/lib/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -1
  22. package/lib/components/AvatarGroupItem/AvatarGroupItem.js +16 -0
  23. package/lib/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
  24. package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js +2 -0
  25. package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
  26. package/lib/components/AvatarGroupItem/index.js +6 -0
  27. package/lib/components/AvatarGroupItem/index.js.map +1 -0
  28. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js +17 -0
  29. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
  30. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js +70 -0
  31. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
  32. package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js +356 -0
  33. package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
  34. package/lib/contexts/AvatarGroupContext.js +7 -0
  35. package/lib/contexts/AvatarGroupContext.js.map +1 -0
  36. package/lib/contexts/AvatarGroupContext.types.js +2 -0
  37. package/lib/contexts/AvatarGroupContext.types.js.map +1 -0
  38. package/lib/contexts/index.js +2 -0
  39. package/lib/contexts/index.js.map +1 -0
  40. package/lib/index.js +2 -2
  41. package/lib/index.js.map +1 -1
  42. package/lib/utils/getInitials.js +16 -12
  43. package/lib/utils/getInitials.js.map +1 -1
  44. package/lib-commonjs/AvatarGroupItem.js +10 -0
  45. package/lib-commonjs/AvatarGroupItem.js.map +1 -0
  46. package/lib-commonjs/components/Avatar/Avatar.js.map +1 -1
  47. package/lib-commonjs/components/Avatar/renderAvatar.js.map +1 -1
  48. package/lib-commonjs/components/Avatar/useAvatar.js +7 -10
  49. package/lib-commonjs/components/Avatar/useAvatar.js.map +1 -1
  50. package/lib-commonjs/components/Avatar/useAvatarStyles.js +76 -72
  51. package/lib-commonjs/components/Avatar/useAvatarStyles.js.map +1 -1
  52. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js +2 -1
  53. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js.map +1 -1
  54. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js +34 -4
  55. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js.map +1 -1
  56. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js +69 -37
  57. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js.map +1 -1
  58. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js +278 -15
  59. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -1
  60. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js +27 -0
  61. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
  62. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js +6 -0
  63. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
  64. package/lib-commonjs/components/AvatarGroupItem/index.js +18 -0
  65. package/lib-commonjs/components/AvatarGroupItem/index.js.map +1 -0
  66. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js +28 -0
  67. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
  68. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js +84 -0
  69. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
  70. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js +370 -0
  71. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
  72. package/lib-commonjs/contexts/AvatarGroupContext.js +15 -0
  73. package/lib-commonjs/contexts/AvatarGroupContext.js.map +1 -0
  74. package/lib-commonjs/contexts/AvatarGroupContext.types.js +6 -0
  75. package/lib-commonjs/contexts/AvatarGroupContext.types.js.map +1 -0
  76. package/lib-commonjs/contexts/index.js +10 -0
  77. package/lib-commonjs/contexts/index.js.map +1 -0
  78. package/lib-commonjs/index.js +34 -8
  79. package/lib-commonjs/index.js.map +1 -1
  80. package/lib-commonjs/utils/getInitials.js +16 -12
  81. package/lib-commonjs/utils/getInitials.js.map +1 -1
  82. package/lib-commonjs/utils/index.js.map +1 -1
  83. package/package.json +16 -16
  84. package/lib/components/AvatarGroup/AvatarGroup.strings.js +0 -4
  85. package/lib/components/AvatarGroup/AvatarGroup.strings.js.map +0 -1
  86. package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js +0 -10
  87. package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,550 @@
2
2
  "name": "@fluentui/react-avatar",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 05 May 2022 18:24:36 GMT",
5
+ "date": "Tue, 28 Jun 2022 17:37:46 GMT",
6
+ "tag": "@fluentui/react-avatar_v9.0.1",
7
+ "version": "9.0.1",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "lingfangao@hotmail.com",
12
+ "package": "@fluentui/react-avatar",
13
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b",
14
+ "comment": "fix: Use caret dependency range for Griffel"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-avatar",
19
+ "comment": "Bump @fluentui/react-badge to v9.0.1",
20
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-avatar",
25
+ "comment": "Bump @fluentui/react-popover to v9.0.1",
26
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-avatar",
31
+ "comment": "Bump @fluentui/react-tabster to v9.0.1",
32
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-avatar",
37
+ "comment": "Bump @fluentui/react-tooltip to v9.0.1",
38
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-avatar",
43
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.10",
44
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Tue, 28 Jun 2022 15:14:14 GMT",
51
+ "tag": "@fluentui/react-avatar_v9.0.0",
52
+ "version": "9.0.0",
53
+ "comments": {
54
+ "prerelease": [
55
+ {
56
+ "author": "esteban.230@hotmail.com",
57
+ "package": "@fluentui/react-avatar",
58
+ "commit": "6dbff62d1f4842a9ca3231d7f6ec5c4e15eb89e6",
59
+ "comment": "fix: Fix wrong border radius for outline in webkit browsers."
60
+ },
61
+ {
62
+ "author": "esteban.230@hotmail.com",
63
+ "package": "@fluentui/react-avatar",
64
+ "commit": "0551395176dd9ed8a95b71e4b8483d79ff603efc",
65
+ "comment": "Adding AvatarGroupItem implementation and AvatarGroup context."
66
+ },
67
+ {
68
+ "author": "Humberto.Morimoto@microsoft.com",
69
+ "package": "@fluentui/react-avatar",
70
+ "commit": "09f58dcbef2306875046261dc0b7821283ccc287",
71
+ "comment": "chore: Using ::before and ::after instead of :before and :after."
72
+ },
73
+ {
74
+ "author": "olfedias@microsoft.com",
75
+ "package": "@fluentui/react-avatar",
76
+ "commit": "82bd30dd41ad58df1f325e9b721200ed15d674a2",
77
+ "comment": "chore: Update @fluentui/react-icons to latest version"
78
+ },
79
+ {
80
+ "author": "esteban.230@hotmail.com",
81
+ "package": "@fluentui/react-avatar",
82
+ "commit": "7581977dbf55ea586280985c407c38ea58e54121",
83
+ "comment": "docs: Adding AvatarGroup stories."
84
+ },
85
+ {
86
+ "author": "lingfangao@hotmail.com",
87
+ "package": "@fluentui/react-avatar",
88
+ "commit": "675acea49c97f10837ddee9b8c4350ca27750125",
89
+ "comment": "Bump Griffel dependencies"
90
+ },
91
+ {
92
+ "author": "sarah.higley@microsoft.com",
93
+ "package": "@fluentui/react-avatar",
94
+ "commit": "ba2c12557fea137cf744c65c296c0d50c06ed5ce",
95
+ "comment": "PresenceBadge accessibility: fix placement of aria-label, sort out Avatar usage and examples"
96
+ },
97
+ {
98
+ "author": "esteban.230@hotmail.com",
99
+ "package": "@fluentui/react-avatar",
100
+ "commit": "2adc0f24b2ab21395e788c80bec9d57760591450",
101
+ "comment": "Adding layout styles to AvatarGroupItem."
102
+ },
103
+ {
104
+ "author": "Humberto.Morimoto@microsoft.com",
105
+ "package": "@fluentui/react-avatar",
106
+ "commit": "ddf16d80c50d80bc07331b478f567629775f2898",
107
+ "comment": "chore: Adding scheduler as a peer dependency since this package has a dependency on @fluentui/react-context-selector."
108
+ },
109
+ {
110
+ "author": "esteban.230@hotmail.com",
111
+ "package": "@fluentui/react-avatar",
112
+ "commit": "8358bbf58166bfb9254d470b95a2a5fc5fe234a9",
113
+ "comment": "Adding layout styles and overflow button styles to AvatarGroup."
114
+ },
115
+ {
116
+ "author": "esteban.230@hotmail.com",
117
+ "package": "@fluentui/react-avatar",
118
+ "commit": "3c3bd1fd66dd8d717c3a56cb2204681f9907e64c",
119
+ "comment": "fix: Fixing focus indicator and adding a focus ring to root for the pie layout."
120
+ },
121
+ {
122
+ "author": "lingfangao@hotmail.com",
123
+ "package": "@fluentui/react-avatar",
124
+ "commit": "e0aabd850b15adf9c151ebd4e332f7c50ad6cfdf",
125
+ "comment": "Update 9.0.0-rc dependencies to use caret range"
126
+ },
127
+ {
128
+ "author": "esteban.230@hotmail.com",
129
+ "package": "@fluentui/react-avatar",
130
+ "commit": "ed9d97ca44b224e7bcdf69f529f5046c34a4691c",
131
+ "comment": "chore: Added warning for AvatarGroup to check if children are of type AvatarGroupItem and for AvatarGroupItem to check if it's being used inside an AvatarGroup."
132
+ }
133
+ ],
134
+ "none": [
135
+ {
136
+ "author": "mgodbolt@microsoft.com",
137
+ "package": "@fluentui/react-avatar",
138
+ "commit": "22ccfa2159414bd6eb07f54badec8ef8181dc408",
139
+ "comment": "update component template to use nested stories and index file"
140
+ },
141
+ {
142
+ "author": "esteban.230@hotmail.com",
143
+ "package": "@fluentui/react-avatar",
144
+ "commit": "fd2d36df1379891075bb11b0c3a048e97e23b5f7",
145
+ "comment": "chore: Adding bundle size fixtures for AvatarGroup and AvatarGroupItem."
146
+ },
147
+ {
148
+ "author": "esteban.230@hotmail.com",
149
+ "package": "@fluentui/react-avatar",
150
+ "commit": "8e8a1f06101793da7c08cd31685a148c594123fd",
151
+ "comment": "Adding initial implementation of AvatarGroup"
152
+ },
153
+ {
154
+ "author": "esteban.230@hotmail.com",
155
+ "package": "@fluentui/react-avatar",
156
+ "commit": "7a109863120dbcbfebb901b61e418af6bc72c384",
157
+ "comment": "docs: Adding @internal to getInitials."
158
+ },
159
+ {
160
+ "author": "esteban.230@hotmail.com",
161
+ "package": "@fluentui/react-avatar",
162
+ "commit": "e81acf1892fa8aa668d03c0f821bf2d2be16547d",
163
+ "comment": "fix:Make AvatarGroup's pie layout dividers white for HCM."
164
+ },
165
+ {
166
+ "author": "esteban.230@hotmail.com",
167
+ "package": "@fluentui/react-avatar",
168
+ "commit": "acf1753ea566d89131058f5415961bfdafa2c742",
169
+ "comment": "docs: Removing AvatarGroupItem stories."
170
+ }
171
+ ],
172
+ "patch": [
173
+ {
174
+ "author": "lingfangao@hotmail.com",
175
+ "package": "@fluentui/react-avatar",
176
+ "commit": "c7b1348bdad7aa883c29bfbc96ef2a32e6ebc7dd",
177
+ "comment": "feat: Initial 9.0.0 release"
178
+ },
179
+ {
180
+ "author": "beachball",
181
+ "package": "@fluentui/react-avatar",
182
+ "comment": "Bump @fluentui/react-badge to v9.0.0",
183
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
184
+ },
185
+ {
186
+ "author": "beachball",
187
+ "package": "@fluentui/react-avatar",
188
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0",
189
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
190
+ },
191
+ {
192
+ "author": "beachball",
193
+ "package": "@fluentui/react-avatar",
194
+ "comment": "Bump @fluentui/react-popover to v9.0.0",
195
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
196
+ },
197
+ {
198
+ "author": "beachball",
199
+ "package": "@fluentui/react-avatar",
200
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0",
201
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
202
+ },
203
+ {
204
+ "author": "beachball",
205
+ "package": "@fluentui/react-avatar",
206
+ "comment": "Bump @fluentui/react-tabster to v9.0.0",
207
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
208
+ },
209
+ {
210
+ "author": "beachball",
211
+ "package": "@fluentui/react-avatar",
212
+ "comment": "Bump @fluentui/react-theme to v9.0.0",
213
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
214
+ },
215
+ {
216
+ "author": "beachball",
217
+ "package": "@fluentui/react-avatar",
218
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0",
219
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
220
+ },
221
+ {
222
+ "author": "beachball",
223
+ "package": "@fluentui/react-avatar",
224
+ "comment": "Bump @fluentui/react-utilities to v9.0.0",
225
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
226
+ },
227
+ {
228
+ "author": "beachball",
229
+ "package": "@fluentui/react-avatar",
230
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9",
231
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
232
+ }
233
+ ]
234
+ }
235
+ },
236
+ {
237
+ "date": "Thu, 23 Jun 2022 14:25:31 GMT",
238
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.13",
239
+ "version": "9.0.0-rc.13",
240
+ "comments": {
241
+ "prerelease": [
242
+ {
243
+ "author": "beachball",
244
+ "package": "@fluentui/react-avatar",
245
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.13",
246
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
247
+ },
248
+ {
249
+ "author": "beachball",
250
+ "package": "@fluentui/react-avatar",
251
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.14",
252
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
253
+ },
254
+ {
255
+ "author": "beachball",
256
+ "package": "@fluentui/react-avatar",
257
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.14",
258
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
259
+ },
260
+ {
261
+ "author": "beachball",
262
+ "package": "@fluentui/react-avatar",
263
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.14",
264
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
265
+ },
266
+ {
267
+ "author": "beachball",
268
+ "package": "@fluentui/react-avatar",
269
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.10",
270
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
271
+ },
272
+ {
273
+ "author": "beachball",
274
+ "package": "@fluentui/react-avatar",
275
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.11",
276
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
277
+ }
278
+ ]
279
+ }
280
+ },
281
+ {
282
+ "date": "Tue, 31 May 2022 21:28:35 GMT",
283
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.12",
284
+ "version": "9.0.0-rc.12",
285
+ "comments": {
286
+ "prerelease": [
287
+ {
288
+ "author": "olfedias@microsoft.com",
289
+ "package": "@fluentui/react-avatar",
290
+ "commit": "0a5e9fa77a72eecafdd07034ccdc0b95fd49877c",
291
+ "comment": "chore: Update Griffel to latest version"
292
+ },
293
+ {
294
+ "author": "bernardo.sunderhus@gmail.com",
295
+ "package": "@fluentui/react-avatar",
296
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd",
297
+ "comment": "updates import to react-shared-components"
298
+ },
299
+ {
300
+ "author": "esteban.230@hotmail.com",
301
+ "package": "@fluentui/react-avatar",
302
+ "commit": "53dad4cc8a1db7976baa7b42cd6bc22473989336",
303
+ "comment": "Creating AvatarGroupItem component."
304
+ },
305
+ {
306
+ "author": "esteban.230@hotmail.com",
307
+ "package": "@fluentui/react-avatar",
308
+ "commit": "87f555dfcbe007e701f80b56e3c69c50141e5466",
309
+ "comment": "Adding .beta to AvatarGroup stories so it's not shown in the docsite."
310
+ },
311
+ {
312
+ "author": "beachball",
313
+ "package": "@fluentui/react-avatar",
314
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.12",
315
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
316
+ },
317
+ {
318
+ "author": "beachball",
319
+ "package": "@fluentui/react-avatar",
320
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.13",
321
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
322
+ },
323
+ {
324
+ "author": "beachball",
325
+ "package": "@fluentui/react-avatar",
326
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.13",
327
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
328
+ },
329
+ {
330
+ "author": "beachball",
331
+ "package": "@fluentui/react-avatar",
332
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.13",
333
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
334
+ },
335
+ {
336
+ "author": "beachball",
337
+ "package": "@fluentui/react-avatar",
338
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.10",
339
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
340
+ },
341
+ {
342
+ "author": "beachball",
343
+ "package": "@fluentui/react-avatar",
344
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.10",
345
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
346
+ },
347
+ {
348
+ "author": "beachball",
349
+ "package": "@fluentui/react-avatar",
350
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8",
351
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
352
+ }
353
+ ]
354
+ }
355
+ },
356
+ {
357
+ "date": "Thu, 26 May 2022 21:01:22 GMT",
358
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.11",
359
+ "version": "9.0.0-rc.11",
360
+ "comments": {
361
+ "prerelease": [
362
+ {
363
+ "author": "sarah.higley@microsoft.com",
364
+ "package": "@fluentui/react-avatar",
365
+ "commit": "af1794dd70ab6bc30f9c19db3ee54b7a22f3c24c",
366
+ "comment": "fix react-avatar: use initials as a fallback label even when no id is manually defined"
367
+ },
368
+ {
369
+ "author": "beachball",
370
+ "package": "@fluentui/react-avatar",
371
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.11",
372
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
373
+ },
374
+ {
375
+ "author": "beachball",
376
+ "package": "@fluentui/react-avatar",
377
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.12",
378
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
379
+ },
380
+ {
381
+ "author": "beachball",
382
+ "package": "@fluentui/react-avatar",
383
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.12",
384
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
385
+ },
386
+ {
387
+ "author": "beachball",
388
+ "package": "@fluentui/react-avatar",
389
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.12",
390
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
391
+ }
392
+ ]
393
+ }
394
+ },
395
+ {
396
+ "date": "Mon, 23 May 2022 18:56:40 GMT",
397
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.10",
398
+ "version": "9.0.0-rc.10",
399
+ "comments": {
400
+ "prerelease": [
401
+ {
402
+ "author": "seanmonahan@microsoft.com",
403
+ "package": "@fluentui/react-avatar",
404
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
405
+ "comment": "BREAKING: update string unions to use spinal-case"
406
+ },
407
+ {
408
+ "author": "esteban.230@hotmail.com",
409
+ "package": "@fluentui/react-avatar",
410
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
411
+ "comment": "Removing <componentName>ClassName exports."
412
+ },
413
+ {
414
+ "author": "beachball",
415
+ "package": "@fluentui/react-avatar",
416
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.10",
417
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
418
+ },
419
+ {
420
+ "author": "beachball",
421
+ "package": "@fluentui/react-avatar",
422
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.11",
423
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
424
+ },
425
+ {
426
+ "author": "beachball",
427
+ "package": "@fluentui/react-avatar",
428
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.11",
429
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
430
+ },
431
+ {
432
+ "author": "beachball",
433
+ "package": "@fluentui/react-avatar",
434
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.11",
435
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
436
+ },
437
+ {
438
+ "author": "beachball",
439
+ "package": "@fluentui/react-avatar",
440
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.9",
441
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
442
+ },
443
+ {
444
+ "author": "beachball",
445
+ "package": "@fluentui/react-avatar",
446
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.9",
447
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
448
+ },
449
+ {
450
+ "author": "beachball",
451
+ "package": "@fluentui/react-avatar",
452
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7",
453
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
454
+ }
455
+ ]
456
+ }
457
+ },
458
+ {
459
+ "date": "Mon, 23 May 2022 12:14:00 GMT",
460
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.9",
461
+ "version": "9.0.0-rc.9",
462
+ "comments": {
463
+ "prerelease": [
464
+ {
465
+ "author": "behowell@microsoft.com",
466
+ "package": "@fluentui/react-avatar",
467
+ "commit": "f57165a466c9d62226af2d49928f6eb797c20432",
468
+ "comment": "Add support for size={16} to Avatar"
469
+ },
470
+ {
471
+ "author": "olfedias@microsoft.com",
472
+ "package": "@fluentui/react-avatar",
473
+ "commit": "60804cec07a495b8a5d1fc66338bf0443b212144",
474
+ "comment": "chore: Update Griffel to latest version"
475
+ },
476
+ {
477
+ "author": "olfedias@microsoft.com",
478
+ "package": "@fluentui/react-avatar",
479
+ "commit": "f120fe9160ad7311a87af0cfacd8d2fb26275e34",
480
+ "comment": "chore: Update Griffel to latest version"
481
+ },
482
+ {
483
+ "author": "esteban.230@hotmail.com",
484
+ "package": "@fluentui/react-avatar",
485
+ "commit": "72684d3d57ee3cb0d7012a31559b8a2b7ad36849",
486
+ "comment": "Moving Avatar stories to stories folder."
487
+ },
488
+ {
489
+ "author": "beachball",
490
+ "package": "@fluentui/react-avatar",
491
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.9",
492
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
493
+ },
494
+ {
495
+ "author": "beachball",
496
+ "package": "@fluentui/react-avatar",
497
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.10",
498
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
499
+ },
500
+ {
501
+ "author": "beachball",
502
+ "package": "@fluentui/react-avatar",
503
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.10",
504
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
505
+ },
506
+ {
507
+ "author": "beachball",
508
+ "package": "@fluentui/react-avatar",
509
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.10",
510
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
511
+ },
512
+ {
513
+ "author": "beachball",
514
+ "package": "@fluentui/react-avatar",
515
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.8",
516
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
517
+ },
518
+ {
519
+ "author": "beachball",
520
+ "package": "@fluentui/react-avatar",
521
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.8",
522
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
523
+ },
524
+ {
525
+ "author": "beachball",
526
+ "package": "@fluentui/react-avatar",
527
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.9",
528
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
529
+ },
530
+ {
531
+ "author": "beachball",
532
+ "package": "@fluentui/react-avatar",
533
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6",
534
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
535
+ }
536
+ ],
537
+ "none": [
538
+ {
539
+ "author": "sarah.higley@microsoft.com",
540
+ "package": "@fluentui/react-avatar",
541
+ "commit": "59ea4de9c55cfaca51bac4a07e1e03fb60939a15",
542
+ "comment": "remove commons type from avatar and avatargroup"
543
+ }
544
+ ]
545
+ }
546
+ },
547
+ {
548
+ "date": "Thu, 05 May 2022 18:26:29 GMT",
6
549
  "tag": "@fluentui/react-avatar_v9.0.0-rc.8",
7
550
  "version": "9.0.0-rc.8",
8
551
  "comments": {