@fluentui/react-avatar 9.0.0-rc.1 → 9.0.0-rc.12

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 (117) hide show
  1. package/CHANGELOG.json +595 -1
  2. package/CHANGELOG.md +282 -125
  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 +284 -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/AvatarGroupItem.js +2 -0
  12. package/lib/AvatarGroupItem.js.map +1 -0
  13. package/lib/components/Avatar/Avatar.js.map +1 -1
  14. package/lib/components/Avatar/Avatar.types.js.map +1 -1
  15. package/lib/components/Avatar/index.js.map +1 -1
  16. package/lib/components/Avatar/renderAvatar.js.map +1 -1
  17. package/lib/components/Avatar/useAvatar.js +21 -10
  18. package/lib/components/Avatar/useAvatar.js.map +1 -1
  19. package/lib/components/Avatar/useAvatarStyles.js +31 -16
  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/components/AvatarGroupItem/AvatarGroupItem.js +15 -0
  36. package/lib/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
  37. package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js +2 -0
  38. package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
  39. package/lib/components/AvatarGroupItem/index.js +6 -0
  40. package/lib/components/AvatarGroupItem/index.js.map +1 -0
  41. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js +16 -0
  42. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
  43. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js +27 -0
  44. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
  45. package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js +26 -0
  46. package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
  47. package/lib/index.js +4 -2
  48. package/lib/index.js.map +1 -1
  49. package/lib/utils/getInitials.js +14 -12
  50. package/lib/utils/getInitials.js.map +1 -1
  51. package/lib/utils/index.js.map +1 -1
  52. package/lib-commonjs/Avatar.js.map +1 -1
  53. package/lib-commonjs/AvatarGroup.js +10 -0
  54. package/lib-commonjs/AvatarGroup.js.map +1 -0
  55. package/lib-commonjs/AvatarGroupItem.js +10 -0
  56. package/lib-commonjs/AvatarGroupItem.js.map +1 -0
  57. package/lib-commonjs/components/Avatar/Avatar.js.map +1 -1
  58. package/lib-commonjs/components/Avatar/Avatar.types.js.map +1 -1
  59. package/lib-commonjs/components/Avatar/index.js.map +1 -1
  60. package/lib-commonjs/components/Avatar/renderAvatar.js.map +1 -1
  61. package/lib-commonjs/components/Avatar/useAvatar.js +22 -10
  62. package/lib-commonjs/components/Avatar/useAvatar.js.map +1 -1
  63. package/lib-commonjs/components/Avatar/useAvatarStyles.js +32 -17
  64. package/lib-commonjs/components/Avatar/useAvatarStyles.js.map +1 -1
  65. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js +26 -0
  66. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js.map +1 -0
  67. package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js +10 -0
  68. package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js.map +1 -0
  69. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js +6 -0
  70. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js.map +1 -0
  71. package/lib-commonjs/components/AvatarGroup/index.js +18 -0
  72. package/lib-commonjs/components/AvatarGroup/index.js.map +1 -0
  73. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js +27 -0
  74. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js.map +1 -0
  75. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js +64 -0
  76. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js.map +1 -0
  77. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js +47 -0
  78. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -0
  79. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js +26 -0
  80. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
  81. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js +6 -0
  82. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
  83. package/lib-commonjs/components/AvatarGroupItem/index.js +18 -0
  84. package/lib-commonjs/components/AvatarGroupItem/index.js.map +1 -0
  85. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js +27 -0
  86. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
  87. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js +37 -0
  88. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
  89. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js +36 -0
  90. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
  91. package/lib-commonjs/index.js +106 -3
  92. package/lib-commonjs/index.js.map +1 -1
  93. package/lib-commonjs/utils/getInitials.js +14 -12
  94. package/lib-commonjs/utils/getInitials.js.map +1 -1
  95. package/lib-commonjs/utils/index.js.map +1 -1
  96. package/package.json +22 -21
  97. package/dist/react-avatar.d.ts +0 -142
  98. package/lib/Avatar.d.ts +0 -1
  99. package/lib/components/Avatar/Avatar.d.ts +0 -3
  100. package/lib/components/Avatar/Avatar.types.d.ts +0 -107
  101. package/lib/components/Avatar/index.d.ts +0 -5
  102. package/lib/components/Avatar/renderAvatar.d.ts +0 -2
  103. package/lib/components/Avatar/useAvatar.d.ts +0 -3
  104. package/lib/components/Avatar/useAvatarStyles.d.ts +0 -3
  105. package/lib/index.d.ts +0 -2
  106. package/lib/utils/getInitials.d.ts +0 -14
  107. package/lib/utils/index.d.ts +0 -1
  108. package/lib-commonjs/Avatar.d.ts +0 -1
  109. package/lib-commonjs/components/Avatar/Avatar.d.ts +0 -3
  110. package/lib-commonjs/components/Avatar/Avatar.types.d.ts +0 -107
  111. package/lib-commonjs/components/Avatar/index.d.ts +0 -5
  112. package/lib-commonjs/components/Avatar/renderAvatar.d.ts +0 -2
  113. package/lib-commonjs/components/Avatar/useAvatar.d.ts +0 -3
  114. package/lib-commonjs/components/Avatar/useAvatarStyles.d.ts +0 -3
  115. package/lib-commonjs/index.d.ts +0 -2
  116. package/lib-commonjs/utils/getInitials.d.ts +0 -14
  117. package/lib-commonjs/utils/index.d.ts +0 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,601 @@
2
2
  "name": "@fluentui/react-avatar",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 10 Feb 2022 08:45:33 GMT",
5
+ "date": "Tue, 31 May 2022 21:26:29 GMT",
6
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.12",
7
+ "version": "9.0.0-rc.12",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "olfedias@microsoft.com",
12
+ "package": "@fluentui/react-avatar",
13
+ "commit": "0a5e9fa77a72eecafdd07034ccdc0b95fd49877c",
14
+ "comment": "chore: Update Griffel to latest version"
15
+ },
16
+ {
17
+ "author": "bernardo.sunderhus@gmail.com",
18
+ "package": "@fluentui/react-avatar",
19
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd",
20
+ "comment": "updates import to react-shared-components"
21
+ },
22
+ {
23
+ "author": "esteban.230@hotmail.com",
24
+ "package": "@fluentui/react-avatar",
25
+ "commit": "53dad4cc8a1db7976baa7b42cd6bc22473989336",
26
+ "comment": "Creating AvatarGroupItem component."
27
+ },
28
+ {
29
+ "author": "esteban.230@hotmail.com",
30
+ "package": "@fluentui/react-avatar",
31
+ "commit": "87f555dfcbe007e701f80b56e3c69c50141e5466",
32
+ "comment": "Adding .beta to AvatarGroup stories so it's not shown in the docsite."
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-avatar",
37
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.12",
38
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-avatar",
43
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.13",
44
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-avatar",
49
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.13",
50
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
51
+ },
52
+ {
53
+ "author": "beachball",
54
+ "package": "@fluentui/react-avatar",
55
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.13",
56
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
57
+ },
58
+ {
59
+ "author": "beachball",
60
+ "package": "@fluentui/react-avatar",
61
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.10",
62
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
63
+ },
64
+ {
65
+ "author": "beachball",
66
+ "package": "@fluentui/react-avatar",
67
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.10",
68
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
69
+ },
70
+ {
71
+ "author": "beachball",
72
+ "package": "@fluentui/react-avatar",
73
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8",
74
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
75
+ }
76
+ ]
77
+ }
78
+ },
79
+ {
80
+ "date": "Thu, 26 May 2022 21:01:22 GMT",
81
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.11",
82
+ "version": "9.0.0-rc.11",
83
+ "comments": {
84
+ "prerelease": [
85
+ {
86
+ "author": "sarah.higley@microsoft.com",
87
+ "package": "@fluentui/react-avatar",
88
+ "commit": "af1794dd70ab6bc30f9c19db3ee54b7a22f3c24c",
89
+ "comment": "fix react-avatar: use initials as a fallback label even when no id is manually defined"
90
+ },
91
+ {
92
+ "author": "beachball",
93
+ "package": "@fluentui/react-avatar",
94
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.11",
95
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
96
+ },
97
+ {
98
+ "author": "beachball",
99
+ "package": "@fluentui/react-avatar",
100
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.12",
101
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
102
+ },
103
+ {
104
+ "author": "beachball",
105
+ "package": "@fluentui/react-avatar",
106
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.12",
107
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
108
+ },
109
+ {
110
+ "author": "beachball",
111
+ "package": "@fluentui/react-avatar",
112
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.12",
113
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
114
+ }
115
+ ]
116
+ }
117
+ },
118
+ {
119
+ "date": "Mon, 23 May 2022 18:56:40 GMT",
120
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.10",
121
+ "version": "9.0.0-rc.10",
122
+ "comments": {
123
+ "prerelease": [
124
+ {
125
+ "author": "seanmonahan@microsoft.com",
126
+ "package": "@fluentui/react-avatar",
127
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
128
+ "comment": "BREAKING: update string unions to use spinal-case"
129
+ },
130
+ {
131
+ "author": "esteban.230@hotmail.com",
132
+ "package": "@fluentui/react-avatar",
133
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
134
+ "comment": "Removing <componentName>ClassName exports."
135
+ },
136
+ {
137
+ "author": "beachball",
138
+ "package": "@fluentui/react-avatar",
139
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.10",
140
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
141
+ },
142
+ {
143
+ "author": "beachball",
144
+ "package": "@fluentui/react-avatar",
145
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.11",
146
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
147
+ },
148
+ {
149
+ "author": "beachball",
150
+ "package": "@fluentui/react-avatar",
151
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.11",
152
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
153
+ },
154
+ {
155
+ "author": "beachball",
156
+ "package": "@fluentui/react-avatar",
157
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.11",
158
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
159
+ },
160
+ {
161
+ "author": "beachball",
162
+ "package": "@fluentui/react-avatar",
163
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.9",
164
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
165
+ },
166
+ {
167
+ "author": "beachball",
168
+ "package": "@fluentui/react-avatar",
169
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.9",
170
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
171
+ },
172
+ {
173
+ "author": "beachball",
174
+ "package": "@fluentui/react-avatar",
175
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7",
176
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
177
+ }
178
+ ]
179
+ }
180
+ },
181
+ {
182
+ "date": "Mon, 23 May 2022 12:14:00 GMT",
183
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.9",
184
+ "version": "9.0.0-rc.9",
185
+ "comments": {
186
+ "prerelease": [
187
+ {
188
+ "author": "behowell@microsoft.com",
189
+ "package": "@fluentui/react-avatar",
190
+ "commit": "f57165a466c9d62226af2d49928f6eb797c20432",
191
+ "comment": "Add support for size={16} to Avatar"
192
+ },
193
+ {
194
+ "author": "olfedias@microsoft.com",
195
+ "package": "@fluentui/react-avatar",
196
+ "commit": "60804cec07a495b8a5d1fc66338bf0443b212144",
197
+ "comment": "chore: Update Griffel to latest version"
198
+ },
199
+ {
200
+ "author": "olfedias@microsoft.com",
201
+ "package": "@fluentui/react-avatar",
202
+ "commit": "f120fe9160ad7311a87af0cfacd8d2fb26275e34",
203
+ "comment": "chore: Update Griffel to latest version"
204
+ },
205
+ {
206
+ "author": "esteban.230@hotmail.com",
207
+ "package": "@fluentui/react-avatar",
208
+ "commit": "72684d3d57ee3cb0d7012a31559b8a2b7ad36849",
209
+ "comment": "Moving Avatar stories to stories folder."
210
+ },
211
+ {
212
+ "author": "beachball",
213
+ "package": "@fluentui/react-avatar",
214
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.9",
215
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
216
+ },
217
+ {
218
+ "author": "beachball",
219
+ "package": "@fluentui/react-avatar",
220
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.10",
221
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
222
+ },
223
+ {
224
+ "author": "beachball",
225
+ "package": "@fluentui/react-avatar",
226
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.10",
227
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
228
+ },
229
+ {
230
+ "author": "beachball",
231
+ "package": "@fluentui/react-avatar",
232
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.10",
233
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
234
+ },
235
+ {
236
+ "author": "beachball",
237
+ "package": "@fluentui/react-avatar",
238
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.8",
239
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
240
+ },
241
+ {
242
+ "author": "beachball",
243
+ "package": "@fluentui/react-avatar",
244
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.8",
245
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
246
+ },
247
+ {
248
+ "author": "beachball",
249
+ "package": "@fluentui/react-avatar",
250
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.9",
251
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
252
+ },
253
+ {
254
+ "author": "beachball",
255
+ "package": "@fluentui/react-avatar",
256
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6",
257
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
258
+ }
259
+ ],
260
+ "none": [
261
+ {
262
+ "author": "sarah.higley@microsoft.com",
263
+ "package": "@fluentui/react-avatar",
264
+ "commit": "59ea4de9c55cfaca51bac4a07e1e03fb60939a15",
265
+ "comment": "remove commons type from avatar and avatargroup"
266
+ }
267
+ ]
268
+ }
269
+ },
270
+ {
271
+ "date": "Thu, 05 May 2022 18:26:29 GMT",
272
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.8",
273
+ "version": "9.0.0-rc.8",
274
+ "comments": {
275
+ "prerelease": [
276
+ {
277
+ "author": "martinhochel@microsoft.com",
278
+ "package": "@fluentui/react-avatar",
279
+ "commit": "e465622ca241f3dd0534da50823a51e7311fd9ef",
280
+ "comment": "feat: ship rolluped only dts"
281
+ },
282
+ {
283
+ "author": "beachball",
284
+ "package": "@fluentui/react-avatar",
285
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.8",
286
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
287
+ },
288
+ {
289
+ "author": "beachball",
290
+ "package": "@fluentui/react-avatar",
291
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.9",
292
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
293
+ },
294
+ {
295
+ "author": "beachball",
296
+ "package": "@fluentui/react-avatar",
297
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.9",
298
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
299
+ },
300
+ {
301
+ "author": "beachball",
302
+ "package": "@fluentui/react-avatar",
303
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.9",
304
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
305
+ },
306
+ {
307
+ "author": "beachball",
308
+ "package": "@fluentui/react-avatar",
309
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.7",
310
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
311
+ },
312
+ {
313
+ "author": "beachball",
314
+ "package": "@fluentui/react-avatar",
315
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.7",
316
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
317
+ },
318
+ {
319
+ "author": "beachball",
320
+ "package": "@fluentui/react-avatar",
321
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.8",
322
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
323
+ },
324
+ {
325
+ "author": "beachball",
326
+ "package": "@fluentui/react-avatar",
327
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5",
328
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
329
+ }
330
+ ]
331
+ }
332
+ },
333
+ {
334
+ "date": "Wed, 04 May 2022 13:26:37 GMT",
335
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.7",
336
+ "version": "9.0.0-rc.7",
337
+ "comments": {
338
+ "none": [
339
+ {
340
+ "author": "tristan.watanabe@gmail.com",
341
+ "package": "@fluentui/react-avatar",
342
+ "commit": "e791a91f5f02b6dc19f178543b6a6b95d49edb46",
343
+ "comment": "react-avatar: Move to new common folder."
344
+ },
345
+ {
346
+ "author": "esteban.230@hotmail.com",
347
+ "package": "@fluentui/react-avatar",
348
+ "commit": "2a852c82989e92d10a979979c16be97c30a51027",
349
+ "comment": "Adding AvatarGroup spec to react-avatar."
350
+ }
351
+ ],
352
+ "prerelease": [
353
+ {
354
+ "author": "beachball",
355
+ "package": "@fluentui/react-avatar",
356
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.7",
357
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
358
+ },
359
+ {
360
+ "author": "beachball",
361
+ "package": "@fluentui/react-avatar",
362
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.8",
363
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
364
+ },
365
+ {
366
+ "author": "beachball",
367
+ "package": "@fluentui/react-avatar",
368
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.8",
369
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
370
+ },
371
+ {
372
+ "author": "beachball",
373
+ "package": "@fluentui/react-avatar",
374
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.8",
375
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
376
+ },
377
+ {
378
+ "author": "beachball",
379
+ "package": "@fluentui/react-avatar",
380
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.6",
381
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
382
+ },
383
+ {
384
+ "author": "beachball",
385
+ "package": "@fluentui/react-avatar",
386
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.6",
387
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
388
+ },
389
+ {
390
+ "author": "beachball",
391
+ "package": "@fluentui/react-avatar",
392
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.7",
393
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
394
+ }
395
+ ]
396
+ }
397
+ },
398
+ {
399
+ "date": "Tue, 19 Apr 2022 19:17:08 GMT",
400
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.6",
401
+ "version": "9.0.0-rc.6",
402
+ "comments": {
403
+ "none": [
404
+ {
405
+ "author": "elcraig@microsoft.com",
406
+ "package": "@fluentui/react-avatar",
407
+ "commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
408
+ "comment": "Update React dev deps and hoist them to the repo root"
409
+ },
410
+ {
411
+ "author": "email not defined",
412
+ "package": "@fluentui/react-avatar",
413
+ "commit": "83f32d33d0750e9afad10b98a98040c70919f7cf",
414
+ "comment": "Added AvatarGroup component to react-avatar"
415
+ },
416
+ {
417
+ "author": "mgodbolt@microsoft.com",
418
+ "package": "@fluentui/react-avatar",
419
+ "commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
420
+ "comment": "create v9 api extractor config and set all v9 packags to use it, suppress forgotten export"
421
+ }
422
+ ],
423
+ "prerelease": [
424
+ {
425
+ "author": "seanmonahan@microsoft.com",
426
+ "package": "@fluentui/react-avatar",
427
+ "commit": "086a675fd0c648944ff4048450190a0a13467de3",
428
+ "comment": "Add static classnames to Avatar"
429
+ },
430
+ {
431
+ "author": "Humberto.Morimoto@microsoft.com",
432
+ "package": "@fluentui/react-avatar",
433
+ "commit": "b819815318c0089f48416dc023567578efb31a46",
434
+ "comment": "Avatar: Fix style for sizes 20 and 24 to have semibold fontWeight instead of regular."
435
+ },
436
+ {
437
+ "author": "Humberto.Morimoto@microsoft.com",
438
+ "package": "@fluentui/react-avatar",
439
+ "commit": "3c919593c36ada045063934822a779e23259f06a",
440
+ "comment": "Removing star exports."
441
+ },
442
+ {
443
+ "author": "seanmonahan@microsoft.com",
444
+ "package": "@fluentui/react-avatar",
445
+ "commit": "bea6aecfed8612f7b0664ab8bac77c5fccee1efb",
446
+ "comment": "update react-icons version to ^2.0.166-rc.3 from ^2.0.159-beta.10"
447
+ },
448
+ {
449
+ "author": "martinhochel@microsoft.com",
450
+ "package": "@fluentui/react-avatar",
451
+ "commit": "8722596e561b57decfe9aa79121db844737102ff",
452
+ "comment": "add missing dependencies"
453
+ },
454
+ {
455
+ "author": "olfedias@microsoft.com",
456
+ "package": "@fluentui/react-avatar",
457
+ "commit": "e569d6e04d83cbcc6225e61db52ff81d2addd363",
458
+ "comment": "chore: Update Griffel to latest version"
459
+ },
460
+ {
461
+ "author": "beachball",
462
+ "package": "@fluentui/react-avatar",
463
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.6",
464
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
465
+ },
466
+ {
467
+ "author": "beachball",
468
+ "package": "@fluentui/react-avatar",
469
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.5",
470
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
471
+ },
472
+ {
473
+ "author": "beachball",
474
+ "package": "@fluentui/react-avatar",
475
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.5",
476
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
477
+ },
478
+ {
479
+ "author": "beachball",
480
+ "package": "@fluentui/react-avatar",
481
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.6",
482
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
483
+ },
484
+ {
485
+ "author": "beachball",
486
+ "package": "@fluentui/react-avatar",
487
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4",
488
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
489
+ }
490
+ ]
491
+ }
492
+ },
493
+ {
494
+ "date": "Fri, 04 Mar 2022 05:17:33 GMT",
495
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.5",
496
+ "version": "9.0.0-rc.5",
497
+ "comments": {
498
+ "prerelease": [
499
+ {
500
+ "author": "dzearing@microsoft.com",
501
+ "package": "@fluentui/react-avatar",
502
+ "commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
503
+ "comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
504
+ },
505
+ {
506
+ "author": "beachball",
507
+ "package": "@fluentui/react-avatar",
508
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.5",
509
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
510
+ },
511
+ {
512
+ "author": "beachball",
513
+ "package": "@fluentui/react-avatar",
514
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.4",
515
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
516
+ },
517
+ {
518
+ "author": "beachball",
519
+ "package": "@fluentui/react-avatar",
520
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.5",
521
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
522
+ }
523
+ ]
524
+ }
525
+ },
526
+ {
527
+ "date": "Tue, 01 Mar 2022 02:17:40 GMT",
528
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.4",
529
+ "version": "9.0.0-rc.4",
530
+ "comments": {
531
+ "prerelease": [
532
+ {
533
+ "author": "beachball",
534
+ "package": "@fluentui/react-avatar",
535
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.4",
536
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
537
+ },
538
+ {
539
+ "author": "beachball",
540
+ "package": "@fluentui/react-avatar",
541
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
542
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
543
+ }
544
+ ]
545
+ }
546
+ },
547
+ {
548
+ "date": "Fri, 18 Feb 2022 13:35:28 GMT",
549
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.3",
550
+ "version": "9.0.0-rc.3",
551
+ "comments": {
552
+ "prerelease": [
553
+ {
554
+ "author": "behowell@microsoft.com",
555
+ "package": "@fluentui/react-avatar",
556
+ "commit": "36b34c86e38b362cfda7deb3840f6fac2a860931",
557
+ "comment": "Hide Avatar's image if it fails to load, rather than displaying the broken image icon"
558
+ },
559
+ {
560
+ "author": "lingfangao@hotmail.com",
561
+ "package": "@fluentui/react-avatar",
562
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
563
+ "comment": "fix: Source maps contain original source code"
564
+ },
565
+ {
566
+ "author": "behowell@microsoft.com",
567
+ "package": "@fluentui/react-avatar",
568
+ "commit": "d80c90385389e1e4eee52400dd7cf4b4dbe067fd",
569
+ "comment": "Update Avatar SPEC.md and MIGRATION.md"
570
+ },
571
+ {
572
+ "author": "beachball",
573
+ "package": "@fluentui/react-avatar",
574
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.3",
575
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
576
+ },
577
+ {
578
+ "author": "beachball",
579
+ "package": "@fluentui/react-avatar",
580
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.3",
581
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
582
+ },
583
+ {
584
+ "author": "beachball",
585
+ "package": "@fluentui/react-avatar",
586
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
587
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
588
+ },
589
+ {
590
+ "author": "beachball",
591
+ "package": "@fluentui/react-avatar",
592
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
593
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
594
+ }
595
+ ]
596
+ }
597
+ },
598
+ {
599
+ "date": "Thu, 10 Feb 2022 08:52:19 GMT",
6
600
  "tag": "@fluentui/react-avatar_v9.0.0-rc.1",
7
601
  "version": "9.0.0-rc.1",
8
602
  "comments": {