@fluentui/react-avatar 0.0.0-nightlyff78d1e27a20220217.1 → 0.0.0

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 +788 -13
  2. package/CHANGELOG.md +323 -133
  3. package/SPEC-AvatarGroup.md +185 -0
  4. package/dist/index.d.ts +306 -0
  5. package/{lib → dist}/tsdoc-metadata.json +0 -0
  6. package/lib/AvatarGroup.js +2 -0
  7. package/lib/AvatarGroup.js.map +1 -0
  8. package/lib/AvatarGroupItem.js +2 -0
  9. package/lib/AvatarGroupItem.js.map +1 -0
  10. package/lib/components/Avatar/Avatar.js.map +1 -1
  11. package/lib/components/Avatar/Avatar.types.js.map +1 -1
  12. package/lib/components/Avatar/renderAvatar.js.map +1 -1
  13. package/lib/components/Avatar/useAvatar.js +7 -10
  14. package/lib/components/Avatar/useAvatar.js.map +1 -1
  15. package/lib/components/Avatar/useAvatarStyles.js +89 -74
  16. package/lib/components/Avatar/useAvatarStyles.js.map +1 -1
  17. package/lib/components/AvatarGroup/AvatarGroup.js +16 -0
  18. package/lib/components/AvatarGroup/AvatarGroup.js.map +1 -0
  19. package/lib/components/AvatarGroup/AvatarGroup.types.js +2 -0
  20. package/lib/components/AvatarGroup/AvatarGroup.types.js.map +1 -0
  21. package/lib/components/AvatarGroup/index.js +6 -0
  22. package/lib/components/AvatarGroup/index.js.map +1 -0
  23. package/lib/components/AvatarGroup/renderAvatarGroup.js +43 -0
  24. package/lib/components/AvatarGroup/renderAvatarGroup.js.map +1 -0
  25. package/lib/components/AvatarGroup/useAvatarGroup.js +91 -0
  26. package/lib/components/AvatarGroup/useAvatarGroup.js.map +1 -0
  27. package/lib/components/AvatarGroup/useAvatarGroupStyles.js +296 -0
  28. package/lib/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -0
  29. package/lib/components/AvatarGroupItem/AvatarGroupItem.js +16 -0
  30. package/lib/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
  31. package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js +2 -0
  32. package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
  33. package/lib/components/AvatarGroupItem/index.js +6 -0
  34. package/lib/components/AvatarGroupItem/index.js.map +1 -0
  35. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js +17 -0
  36. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
  37. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js +70 -0
  38. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
  39. package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js +356 -0
  40. package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
  41. package/lib/contexts/AvatarGroupContext.js +7 -0
  42. package/lib/contexts/AvatarGroupContext.js.map +1 -0
  43. package/lib/contexts/AvatarGroupContext.types.js +2 -0
  44. package/lib/contexts/AvatarGroupContext.types.js.map +1 -0
  45. package/lib/contexts/index.js +2 -0
  46. package/lib/contexts/index.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 +16 -12
  50. package/lib/utils/getInitials.js.map +1 -1
  51. package/lib-commonjs/AvatarGroup.js +10 -0
  52. package/lib-commonjs/AvatarGroup.js.map +1 -0
  53. package/lib-commonjs/AvatarGroupItem.js +10 -0
  54. package/lib-commonjs/AvatarGroupItem.js.map +1 -0
  55. package/lib-commonjs/components/Avatar/Avatar.js.map +1 -1
  56. package/lib-commonjs/components/Avatar/renderAvatar.js.map +1 -1
  57. package/lib-commonjs/components/Avatar/useAvatar.js +7 -10
  58. package/lib-commonjs/components/Avatar/useAvatar.js.map +1 -1
  59. package/lib-commonjs/components/Avatar/useAvatarStyles.js +91 -76
  60. package/lib-commonjs/components/Avatar/useAvatarStyles.js.map +1 -1
  61. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js +27 -0
  62. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js.map +1 -0
  63. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js +6 -0
  64. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js.map +1 -0
  65. package/lib-commonjs/components/AvatarGroup/index.js +18 -0
  66. package/lib-commonjs/components/AvatarGroup/index.js.map +1 -0
  67. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js +57 -0
  68. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js.map +1 -0
  69. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js +105 -0
  70. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js.map +1 -0
  71. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js +310 -0
  72. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -0
  73. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js +27 -0
  74. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
  75. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js +6 -0
  76. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
  77. package/lib-commonjs/components/AvatarGroupItem/index.js +18 -0
  78. package/lib-commonjs/components/AvatarGroupItem/index.js.map +1 -0
  79. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js +28 -0
  80. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
  81. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js +84 -0
  82. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
  83. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js +370 -0
  84. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
  85. package/lib-commonjs/contexts/AvatarGroupContext.js +15 -0
  86. package/lib-commonjs/contexts/AvatarGroupContext.js.map +1 -0
  87. package/lib-commonjs/contexts/AvatarGroupContext.types.js +6 -0
  88. package/lib-commonjs/contexts/AvatarGroupContext.types.js.map +1 -0
  89. package/lib-commonjs/contexts/index.js +10 -0
  90. package/lib-commonjs/contexts/index.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 +16 -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 +26 -25
  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,23 +2,798 @@
2
2
  "name": "@fluentui/react-avatar",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 17 Feb 2022 11:41:17 GMT",
6
- "tag": "@fluentui/react-avatar_v0.0.0-nightlyff78d1e27a20220217.1",
7
- "version": "0.0.0-nightlyff78d1e27a20220217.1",
5
+ "date": "Tue, 28 Jun 2022 04:31:29 GMT",
6
+ "tag": "@fluentui/react-avatar_v0.0.0",
7
+ "version": "0.0.0",
8
8
  "comments": {
9
9
  "prerelease": [
10
+ {
11
+ "author": "esteban.230@hotmail.com",
12
+ "package": "@fluentui/react-avatar",
13
+ "commit": "6dbff62d1f4842a9ca3231d7f6ec5c4e15eb89e6",
14
+ "comment": "fix: Fix wrong border radius for outline in webkit browsers."
15
+ },
16
+ {
17
+ "author": "esteban.230@hotmail.com",
18
+ "package": "@fluentui/react-avatar",
19
+ "commit": "0551395176dd9ed8a95b71e4b8483d79ff603efc",
20
+ "comment": "Adding AvatarGroupItem implementation and AvatarGroup context."
21
+ },
22
+ {
23
+ "author": "Humberto.Morimoto@microsoft.com",
24
+ "package": "@fluentui/react-avatar",
25
+ "commit": "09f58dcbef2306875046261dc0b7821283ccc287",
26
+ "comment": "chore: Using ::before and ::after instead of :before and :after."
27
+ },
28
+ {
29
+ "author": "olfedias@microsoft.com",
30
+ "package": "@fluentui/react-avatar",
31
+ "commit": "82bd30dd41ad58df1f325e9b721200ed15d674a2",
32
+ "comment": "chore: Update @fluentui/react-icons to latest version"
33
+ },
34
+ {
35
+ "author": "esteban.230@hotmail.com",
36
+ "package": "@fluentui/react-avatar",
37
+ "commit": "7581977dbf55ea586280985c407c38ea58e54121",
38
+ "comment": "docs: Adding AvatarGroup stories."
39
+ },
40
+ {
41
+ "author": "lingfangao@hotmail.com",
42
+ "package": "@fluentui/react-avatar",
43
+ "commit": "675acea49c97f10837ddee9b8c4350ca27750125",
44
+ "comment": "Bump Griffel dependencies"
45
+ },
46
+ {
47
+ "author": "sarah.higley@microsoft.com",
48
+ "package": "@fluentui/react-avatar",
49
+ "commit": "ba2c12557fea137cf744c65c296c0d50c06ed5ce",
50
+ "comment": "PresenceBadge accessibility: fix placement of aria-label, sort out Avatar usage and examples"
51
+ },
52
+ {
53
+ "author": "esteban.230@hotmail.com",
54
+ "package": "@fluentui/react-avatar",
55
+ "commit": "2adc0f24b2ab21395e788c80bec9d57760591450",
56
+ "comment": "Adding layout styles to AvatarGroupItem."
57
+ },
58
+ {
59
+ "author": "Humberto.Morimoto@microsoft.com",
60
+ "package": "@fluentui/react-avatar",
61
+ "commit": "ddf16d80c50d80bc07331b478f567629775f2898",
62
+ "comment": "chore: Adding scheduler as a peer dependency since this package has a dependency on @fluentui/react-context-selector."
63
+ },
64
+ {
65
+ "author": "esteban.230@hotmail.com",
66
+ "package": "@fluentui/react-avatar",
67
+ "commit": "8358bbf58166bfb9254d470b95a2a5fc5fe234a9",
68
+ "comment": "Adding layout styles and overflow button styles to AvatarGroup."
69
+ },
70
+ {
71
+ "author": "esteban.230@hotmail.com",
72
+ "package": "@fluentui/react-avatar",
73
+ "commit": "3c3bd1fd66dd8d717c3a56cb2204681f9907e64c",
74
+ "comment": "fix: Fixing focus indicator and adding a focus ring to root for the pie layout."
75
+ },
76
+ {
77
+ "author": "lingfangao@hotmail.com",
78
+ "package": "@fluentui/react-avatar",
79
+ "commit": "e0aabd850b15adf9c151ebd4e332f7c50ad6cfdf",
80
+ "comment": "Update 9.0.0-rc dependencies to use caret range"
81
+ },
82
+ {
83
+ "author": "esteban.230@hotmail.com",
84
+ "package": "@fluentui/react-avatar",
85
+ "commit": "ed9d97ca44b224e7bcdf69f529f5046c34a4691c",
86
+ "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."
87
+ }
88
+ ],
89
+ "none": [
90
+ {
91
+ "author": "mgodbolt@microsoft.com",
92
+ "package": "@fluentui/react-avatar",
93
+ "commit": "22ccfa2159414bd6eb07f54badec8ef8181dc408",
94
+ "comment": "update component template to use nested stories and index file"
95
+ },
96
+ {
97
+ "author": "esteban.230@hotmail.com",
98
+ "package": "@fluentui/react-avatar",
99
+ "commit": "fd2d36df1379891075bb11b0c3a048e97e23b5f7",
100
+ "comment": "chore: Adding bundle size fixtures for AvatarGroup and AvatarGroupItem."
101
+ },
102
+ {
103
+ "author": "esteban.230@hotmail.com",
104
+ "package": "@fluentui/react-avatar",
105
+ "commit": "8e8a1f06101793da7c08cd31685a148c594123fd",
106
+ "comment": "Adding initial implementation of AvatarGroup"
107
+ },
108
+ {
109
+ "author": "esteban.230@hotmail.com",
110
+ "package": "@fluentui/react-avatar",
111
+ "commit": "7a109863120dbcbfebb901b61e418af6bc72c384",
112
+ "comment": "docs: Adding @internal to getInitials."
113
+ },
114
+ {
115
+ "author": "esteban.230@hotmail.com",
116
+ "package": "@fluentui/react-avatar",
117
+ "commit": "e81acf1892fa8aa668d03c0f821bf2d2be16547d",
118
+ "comment": "fix:Make AvatarGroup's pie layout dividers white for HCM."
119
+ },
120
+ {
121
+ "author": "esteban.230@hotmail.com",
122
+ "package": "@fluentui/react-avatar",
123
+ "commit": "acf1753ea566d89131058f5415961bfdafa2c742",
124
+ "comment": "docs: Removing AvatarGroupItem stories."
125
+ }
126
+ ],
127
+ "patch": [
128
+ {
129
+ "author": "lingfangao@hotmail.com",
130
+ "package": "@fluentui/react-avatar",
131
+ "commit": "c7b1348bdad7aa883c29bfbc96ef2a32e6ebc7dd",
132
+ "comment": "feat: Initial 9.0.0 release"
133
+ },
134
+ {
135
+ "author": "beachball",
136
+ "package": "@fluentui/react-avatar",
137
+ "comment": "Bump @fluentui/react-badge to v0.0.0",
138
+ "commit": "3dd54b72d321c3345a21b4175ffe89e7c457c094"
139
+ },
140
+ {
141
+ "author": "beachball",
142
+ "package": "@fluentui/react-avatar",
143
+ "comment": "Bump @fluentui/react-context-selector to v0.0.0",
144
+ "commit": "3dd54b72d321c3345a21b4175ffe89e7c457c094"
145
+ },
146
+ {
147
+ "author": "beachball",
148
+ "package": "@fluentui/react-avatar",
149
+ "comment": "Bump @fluentui/react-popover to v0.0.0",
150
+ "commit": "3dd54b72d321c3345a21b4175ffe89e7c457c094"
151
+ },
152
+ {
153
+ "author": "beachball",
154
+ "package": "@fluentui/react-avatar",
155
+ "comment": "Bump @fluentui/react-shared-contexts to v0.0.0",
156
+ "commit": "3dd54b72d321c3345a21b4175ffe89e7c457c094"
157
+ },
158
+ {
159
+ "author": "beachball",
160
+ "package": "@fluentui/react-avatar",
161
+ "comment": "Bump @fluentui/react-tabster to v0.0.0",
162
+ "commit": "3dd54b72d321c3345a21b4175ffe89e7c457c094"
163
+ },
164
+ {
165
+ "author": "beachball",
166
+ "package": "@fluentui/react-avatar",
167
+ "comment": "Bump @fluentui/react-theme to v0.0.0",
168
+ "commit": "3dd54b72d321c3345a21b4175ffe89e7c457c094"
169
+ },
170
+ {
171
+ "author": "beachball",
172
+ "package": "@fluentui/react-avatar",
173
+ "comment": "Bump @fluentui/react-tooltip to v0.0.0",
174
+ "commit": "3dd54b72d321c3345a21b4175ffe89e7c457c094"
175
+ },
176
+ {
177
+ "author": "beachball",
178
+ "package": "@fluentui/react-avatar",
179
+ "comment": "Bump @fluentui/react-utilities to v0.0.0",
180
+ "commit": "3dd54b72d321c3345a21b4175ffe89e7c457c094"
181
+ },
182
+ {
183
+ "author": "beachball",
184
+ "package": "@fluentui/react-avatar",
185
+ "comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220628-0417.1",
186
+ "commit": "3dd54b72d321c3345a21b4175ffe89e7c457c094"
187
+ }
188
+ ]
189
+ }
190
+ },
191
+ {
192
+ "date": "Thu, 23 Jun 2022 14:25:31 GMT",
193
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.13",
194
+ "version": "9.0.0-rc.13",
195
+ "comments": {
196
+ "prerelease": [
197
+ {
198
+ "author": "beachball",
199
+ "package": "@fluentui/react-avatar",
200
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.13",
201
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
202
+ },
203
+ {
204
+ "author": "beachball",
205
+ "package": "@fluentui/react-avatar",
206
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.14",
207
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
208
+ },
209
+ {
210
+ "author": "beachball",
211
+ "package": "@fluentui/react-avatar",
212
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.14",
213
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
214
+ },
215
+ {
216
+ "author": "beachball",
217
+ "package": "@fluentui/react-avatar",
218
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.14",
219
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
220
+ },
221
+ {
222
+ "author": "beachball",
223
+ "package": "@fluentui/react-avatar",
224
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.10",
225
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
226
+ },
227
+ {
228
+ "author": "beachball",
229
+ "package": "@fluentui/react-avatar",
230
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.11",
231
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
232
+ }
233
+ ]
234
+ }
235
+ },
236
+ {
237
+ "date": "Tue, 31 May 2022 21:28:35 GMT",
238
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.12",
239
+ "version": "9.0.0-rc.12",
240
+ "comments": {
241
+ "prerelease": [
242
+ {
243
+ "author": "olfedias@microsoft.com",
244
+ "package": "@fluentui/react-avatar",
245
+ "commit": "0a5e9fa77a72eecafdd07034ccdc0b95fd49877c",
246
+ "comment": "chore: Update Griffel to latest version"
247
+ },
248
+ {
249
+ "author": "bernardo.sunderhus@gmail.com",
250
+ "package": "@fluentui/react-avatar",
251
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd",
252
+ "comment": "updates import to react-shared-components"
253
+ },
254
+ {
255
+ "author": "esteban.230@hotmail.com",
256
+ "package": "@fluentui/react-avatar",
257
+ "commit": "53dad4cc8a1db7976baa7b42cd6bc22473989336",
258
+ "comment": "Creating AvatarGroupItem component."
259
+ },
260
+ {
261
+ "author": "esteban.230@hotmail.com",
262
+ "package": "@fluentui/react-avatar",
263
+ "commit": "87f555dfcbe007e701f80b56e3c69c50141e5466",
264
+ "comment": "Adding .beta to AvatarGroup stories so it's not shown in the docsite."
265
+ },
266
+ {
267
+ "author": "beachball",
268
+ "package": "@fluentui/react-avatar",
269
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.12",
270
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
271
+ },
272
+ {
273
+ "author": "beachball",
274
+ "package": "@fluentui/react-avatar",
275
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.13",
276
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
277
+ },
278
+ {
279
+ "author": "beachball",
280
+ "package": "@fluentui/react-avatar",
281
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.13",
282
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
283
+ },
284
+ {
285
+ "author": "beachball",
286
+ "package": "@fluentui/react-avatar",
287
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.13",
288
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
289
+ },
290
+ {
291
+ "author": "beachball",
292
+ "package": "@fluentui/react-avatar",
293
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.10",
294
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
295
+ },
296
+ {
297
+ "author": "beachball",
298
+ "package": "@fluentui/react-avatar",
299
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.10",
300
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
301
+ },
302
+ {
303
+ "author": "beachball",
304
+ "package": "@fluentui/react-avatar",
305
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8",
306
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
307
+ }
308
+ ]
309
+ }
310
+ },
311
+ {
312
+ "date": "Thu, 26 May 2022 21:01:22 GMT",
313
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.11",
314
+ "version": "9.0.0-rc.11",
315
+ "comments": {
316
+ "prerelease": [
317
+ {
318
+ "author": "sarah.higley@microsoft.com",
319
+ "package": "@fluentui/react-avatar",
320
+ "commit": "af1794dd70ab6bc30f9c19db3ee54b7a22f3c24c",
321
+ "comment": "fix react-avatar: use initials as a fallback label even when no id is manually defined"
322
+ },
323
+ {
324
+ "author": "beachball",
325
+ "package": "@fluentui/react-avatar",
326
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.11",
327
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
328
+ },
329
+ {
330
+ "author": "beachball",
331
+ "package": "@fluentui/react-avatar",
332
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.12",
333
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
334
+ },
335
+ {
336
+ "author": "beachball",
337
+ "package": "@fluentui/react-avatar",
338
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.12",
339
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
340
+ },
341
+ {
342
+ "author": "beachball",
343
+ "package": "@fluentui/react-avatar",
344
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.12",
345
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
346
+ }
347
+ ]
348
+ }
349
+ },
350
+ {
351
+ "date": "Mon, 23 May 2022 18:56:40 GMT",
352
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.10",
353
+ "version": "9.0.0-rc.10",
354
+ "comments": {
355
+ "prerelease": [
356
+ {
357
+ "author": "seanmonahan@microsoft.com",
358
+ "package": "@fluentui/react-avatar",
359
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
360
+ "comment": "BREAKING: update string unions to use spinal-case"
361
+ },
362
+ {
363
+ "author": "esteban.230@hotmail.com",
364
+ "package": "@fluentui/react-avatar",
365
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
366
+ "comment": "Removing <componentName>ClassName exports."
367
+ },
368
+ {
369
+ "author": "beachball",
370
+ "package": "@fluentui/react-avatar",
371
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.10",
372
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
373
+ },
374
+ {
375
+ "author": "beachball",
376
+ "package": "@fluentui/react-avatar",
377
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.11",
378
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
379
+ },
380
+ {
381
+ "author": "beachball",
382
+ "package": "@fluentui/react-avatar",
383
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.11",
384
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
385
+ },
386
+ {
387
+ "author": "beachball",
388
+ "package": "@fluentui/react-avatar",
389
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.11",
390
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
391
+ },
392
+ {
393
+ "author": "beachball",
394
+ "package": "@fluentui/react-avatar",
395
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.9",
396
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
397
+ },
398
+ {
399
+ "author": "beachball",
400
+ "package": "@fluentui/react-avatar",
401
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.9",
402
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
403
+ },
404
+ {
405
+ "author": "beachball",
406
+ "package": "@fluentui/react-avatar",
407
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7",
408
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
409
+ }
410
+ ]
411
+ }
412
+ },
413
+ {
414
+ "date": "Mon, 23 May 2022 12:14:00 GMT",
415
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.9",
416
+ "version": "9.0.0-rc.9",
417
+ "comments": {
418
+ "prerelease": [
419
+ {
420
+ "author": "behowell@microsoft.com",
421
+ "package": "@fluentui/react-avatar",
422
+ "commit": "f57165a466c9d62226af2d49928f6eb797c20432",
423
+ "comment": "Add support for size={16} to Avatar"
424
+ },
425
+ {
426
+ "author": "olfedias@microsoft.com",
427
+ "package": "@fluentui/react-avatar",
428
+ "commit": "60804cec07a495b8a5d1fc66338bf0443b212144",
429
+ "comment": "chore: Update Griffel to latest version"
430
+ },
431
+ {
432
+ "author": "olfedias@microsoft.com",
433
+ "package": "@fluentui/react-avatar",
434
+ "commit": "f120fe9160ad7311a87af0cfacd8d2fb26275e34",
435
+ "comment": "chore: Update Griffel to latest version"
436
+ },
437
+ {
438
+ "author": "esteban.230@hotmail.com",
439
+ "package": "@fluentui/react-avatar",
440
+ "commit": "72684d3d57ee3cb0d7012a31559b8a2b7ad36849",
441
+ "comment": "Moving Avatar stories to stories folder."
442
+ },
443
+ {
444
+ "author": "beachball",
445
+ "package": "@fluentui/react-avatar",
446
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.9",
447
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
448
+ },
449
+ {
450
+ "author": "beachball",
451
+ "package": "@fluentui/react-avatar",
452
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.10",
453
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
454
+ },
455
+ {
456
+ "author": "beachball",
457
+ "package": "@fluentui/react-avatar",
458
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.10",
459
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
460
+ },
461
+ {
462
+ "author": "beachball",
463
+ "package": "@fluentui/react-avatar",
464
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.10",
465
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
466
+ },
467
+ {
468
+ "author": "beachball",
469
+ "package": "@fluentui/react-avatar",
470
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.8",
471
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
472
+ },
473
+ {
474
+ "author": "beachball",
475
+ "package": "@fluentui/react-avatar",
476
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.8",
477
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
478
+ },
479
+ {
480
+ "author": "beachball",
481
+ "package": "@fluentui/react-avatar",
482
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.9",
483
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
484
+ },
485
+ {
486
+ "author": "beachball",
487
+ "package": "@fluentui/react-avatar",
488
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6",
489
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
490
+ }
491
+ ],
492
+ "none": [
493
+ {
494
+ "author": "sarah.higley@microsoft.com",
495
+ "package": "@fluentui/react-avatar",
496
+ "commit": "59ea4de9c55cfaca51bac4a07e1e03fb60939a15",
497
+ "comment": "remove commons type from avatar and avatargroup"
498
+ }
499
+ ]
500
+ }
501
+ },
502
+ {
503
+ "date": "Thu, 05 May 2022 18:26:29 GMT",
504
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.8",
505
+ "version": "9.0.0-rc.8",
506
+ "comments": {
507
+ "prerelease": [
508
+ {
509
+ "author": "martinhochel@microsoft.com",
510
+ "package": "@fluentui/react-avatar",
511
+ "commit": "e465622ca241f3dd0534da50823a51e7311fd9ef",
512
+ "comment": "feat: ship rolluped only dts"
513
+ },
514
+ {
515
+ "author": "beachball",
516
+ "package": "@fluentui/react-avatar",
517
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.8",
518
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
519
+ },
520
+ {
521
+ "author": "beachball",
522
+ "package": "@fluentui/react-avatar",
523
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.9",
524
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
525
+ },
526
+ {
527
+ "author": "beachball",
528
+ "package": "@fluentui/react-avatar",
529
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.9",
530
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
531
+ },
532
+ {
533
+ "author": "beachball",
534
+ "package": "@fluentui/react-avatar",
535
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.9",
536
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
537
+ },
538
+ {
539
+ "author": "beachball",
540
+ "package": "@fluentui/react-avatar",
541
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.7",
542
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
543
+ },
544
+ {
545
+ "author": "beachball",
546
+ "package": "@fluentui/react-avatar",
547
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.7",
548
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
549
+ },
550
+ {
551
+ "author": "beachball",
552
+ "package": "@fluentui/react-avatar",
553
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.8",
554
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
555
+ },
556
+ {
557
+ "author": "beachball",
558
+ "package": "@fluentui/react-avatar",
559
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5",
560
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
561
+ }
562
+ ]
563
+ }
564
+ },
565
+ {
566
+ "date": "Wed, 04 May 2022 13:26:37 GMT",
567
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.7",
568
+ "version": "9.0.0-rc.7",
569
+ "comments": {
570
+ "none": [
571
+ {
572
+ "author": "tristan.watanabe@gmail.com",
573
+ "package": "@fluentui/react-avatar",
574
+ "commit": "e791a91f5f02b6dc19f178543b6a6b95d49edb46",
575
+ "comment": "react-avatar: Move to new common folder."
576
+ },
577
+ {
578
+ "author": "esteban.230@hotmail.com",
579
+ "package": "@fluentui/react-avatar",
580
+ "commit": "2a852c82989e92d10a979979c16be97c30a51027",
581
+ "comment": "Adding AvatarGroup spec to react-avatar."
582
+ }
583
+ ],
584
+ "prerelease": [
585
+ {
586
+ "author": "beachball",
587
+ "package": "@fluentui/react-avatar",
588
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.7",
589
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
590
+ },
591
+ {
592
+ "author": "beachball",
593
+ "package": "@fluentui/react-avatar",
594
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.8",
595
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
596
+ },
597
+ {
598
+ "author": "beachball",
599
+ "package": "@fluentui/react-avatar",
600
+ "comment": "Bump @fluentui/react-popover to v9.0.0-rc.8",
601
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
602
+ },
603
+ {
604
+ "author": "beachball",
605
+ "package": "@fluentui/react-avatar",
606
+ "comment": "Bump @fluentui/react-tooltip to v9.0.0-rc.8",
607
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
608
+ },
609
+ {
610
+ "author": "beachball",
611
+ "package": "@fluentui/react-avatar",
612
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.6",
613
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
614
+ },
615
+ {
616
+ "author": "beachball",
617
+ "package": "@fluentui/react-avatar",
618
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.6",
619
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
620
+ },
621
+ {
622
+ "author": "beachball",
623
+ "package": "@fluentui/react-avatar",
624
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.7",
625
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
626
+ }
627
+ ]
628
+ }
629
+ },
630
+ {
631
+ "date": "Tue, 19 Apr 2022 19:17:08 GMT",
632
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.6",
633
+ "version": "9.0.0-rc.6",
634
+ "comments": {
635
+ "none": [
636
+ {
637
+ "author": "elcraig@microsoft.com",
638
+ "package": "@fluentui/react-avatar",
639
+ "commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
640
+ "comment": "Update React dev deps and hoist them to the repo root"
641
+ },
10
642
  {
11
643
  "author": "email not defined",
12
644
  "package": "@fluentui/react-avatar",
13
- "commit": "966e16625ca79f990ad8ca408ba47857adc522b3",
14
- "comment": "Release nightly v9"
645
+ "commit": "83f32d33d0750e9afad10b98a98040c70919f7cf",
646
+ "comment": "Added AvatarGroup component to react-avatar"
647
+ },
648
+ {
649
+ "author": "mgodbolt@microsoft.com",
650
+ "package": "@fluentui/react-avatar",
651
+ "commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
652
+ "comment": "create v9 api extractor config and set all v9 packags to use it, suppress forgotten export"
653
+ }
654
+ ],
655
+ "prerelease": [
656
+ {
657
+ "author": "seanmonahan@microsoft.com",
658
+ "package": "@fluentui/react-avatar",
659
+ "commit": "086a675fd0c648944ff4048450190a0a13467de3",
660
+ "comment": "Add static classnames to Avatar"
661
+ },
662
+ {
663
+ "author": "Humberto.Morimoto@microsoft.com",
664
+ "package": "@fluentui/react-avatar",
665
+ "commit": "b819815318c0089f48416dc023567578efb31a46",
666
+ "comment": "Avatar: Fix style for sizes 20 and 24 to have semibold fontWeight instead of regular."
667
+ },
668
+ {
669
+ "author": "Humberto.Morimoto@microsoft.com",
670
+ "package": "@fluentui/react-avatar",
671
+ "commit": "3c919593c36ada045063934822a779e23259f06a",
672
+ "comment": "Removing star exports."
673
+ },
674
+ {
675
+ "author": "seanmonahan@microsoft.com",
676
+ "package": "@fluentui/react-avatar",
677
+ "commit": "bea6aecfed8612f7b0664ab8bac77c5fccee1efb",
678
+ "comment": "update react-icons version to ^2.0.166-rc.3 from ^2.0.159-beta.10"
679
+ },
680
+ {
681
+ "author": "martinhochel@microsoft.com",
682
+ "package": "@fluentui/react-avatar",
683
+ "commit": "8722596e561b57decfe9aa79121db844737102ff",
684
+ "comment": "add missing dependencies"
685
+ },
686
+ {
687
+ "author": "olfedias@microsoft.com",
688
+ "package": "@fluentui/react-avatar",
689
+ "commit": "e569d6e04d83cbcc6225e61db52ff81d2addd363",
690
+ "comment": "chore: Update Griffel to latest version"
691
+ },
692
+ {
693
+ "author": "beachball",
694
+ "package": "@fluentui/react-avatar",
695
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.6",
696
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
15
697
  },
698
+ {
699
+ "author": "beachball",
700
+ "package": "@fluentui/react-avatar",
701
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.5",
702
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
703
+ },
704
+ {
705
+ "author": "beachball",
706
+ "package": "@fluentui/react-avatar",
707
+ "comment": "Bump @fluentui/react-shared-contexts to v9.0.0-rc.5",
708
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
709
+ },
710
+ {
711
+ "author": "beachball",
712
+ "package": "@fluentui/react-avatar",
713
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.6",
714
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
715
+ },
716
+ {
717
+ "author": "beachball",
718
+ "package": "@fluentui/react-avatar",
719
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4",
720
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
721
+ }
722
+ ]
723
+ }
724
+ },
725
+ {
726
+ "date": "Fri, 04 Mar 2022 05:17:33 GMT",
727
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.5",
728
+ "version": "9.0.0-rc.5",
729
+ "comments": {
730
+ "prerelease": [
731
+ {
732
+ "author": "dzearing@microsoft.com",
733
+ "package": "@fluentui/react-avatar",
734
+ "commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
735
+ "comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
736
+ },
737
+ {
738
+ "author": "beachball",
739
+ "package": "@fluentui/react-avatar",
740
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.5",
741
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
742
+ },
743
+ {
744
+ "author": "beachball",
745
+ "package": "@fluentui/react-avatar",
746
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.4",
747
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
748
+ },
749
+ {
750
+ "author": "beachball",
751
+ "package": "@fluentui/react-avatar",
752
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.5",
753
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
754
+ }
755
+ ]
756
+ }
757
+ },
758
+ {
759
+ "date": "Tue, 01 Mar 2022 02:17:40 GMT",
760
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.4",
761
+ "version": "9.0.0-rc.4",
762
+ "comments": {
763
+ "prerelease": [
764
+ {
765
+ "author": "beachball",
766
+ "package": "@fluentui/react-avatar",
767
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.4",
768
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
769
+ },
770
+ {
771
+ "author": "beachball",
772
+ "package": "@fluentui/react-avatar",
773
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
774
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
775
+ }
776
+ ]
777
+ }
778
+ },
779
+ {
780
+ "date": "Fri, 18 Feb 2022 13:35:28 GMT",
781
+ "tag": "@fluentui/react-avatar_v9.0.0-rc.3",
782
+ "version": "9.0.0-rc.3",
783
+ "comments": {
784
+ "prerelease": [
16
785
  {
17
786
  "author": "behowell@microsoft.com",
18
787
  "package": "@fluentui/react-avatar",
19
788
  "commit": "36b34c86e38b362cfda7deb3840f6fac2a860931",
20
789
  "comment": "Hide Avatar's image if it fails to load, rather than displaying the broken image icon"
21
790
  },
791
+ {
792
+ "author": "lingfangao@hotmail.com",
793
+ "package": "@fluentui/react-avatar",
794
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
795
+ "comment": "fix: Source maps contain original source code"
796
+ },
22
797
  {
23
798
  "author": "behowell@microsoft.com",
24
799
  "package": "@fluentui/react-avatar",
@@ -28,26 +803,26 @@
28
803
  {
29
804
  "author": "beachball",
30
805
  "package": "@fluentui/react-avatar",
31
- "comment": "Bump @fluentui/react-badge to v0.0.0-nightlyff78d1e27a20220217.1",
32
- "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
806
+ "comment": "Bump @fluentui/react-badge to v9.0.0-rc.3",
807
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
33
808
  },
34
809
  {
35
810
  "author": "beachball",
36
811
  "package": "@fluentui/react-avatar",
37
- "comment": "Bump @fluentui/react-theme to v0.0.0-nightlyff78d1e27a20220217.1",
38
- "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
812
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.3",
813
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
39
814
  },
40
815
  {
41
816
  "author": "beachball",
42
817
  "package": "@fluentui/react-avatar",
43
- "comment": "Bump @fluentui/react-utilities to v0.0.0-nightlyff78d1e27a20220217.1",
44
- "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
818
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
819
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
45
820
  },
46
821
  {
47
822
  "author": "beachball",
48
823
  "package": "@fluentui/react-avatar",
49
- "comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightlyff78d1e27a20220217.1",
50
- "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
824
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
825
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
51
826
  }
52
827
  ]
53
828
  }