@fluentui/react-avatar 9.0.0-rc.9 → 9.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.
- package/CHANGELOG.json +410 -1
- package/CHANGELOG.md +99 -2
- package/dist/index.d.ts +86 -27
- package/lib/AvatarGroupItem.js +2 -0
- package/lib/AvatarGroupItem.js.map +1 -0
- package/lib/components/Avatar/Avatar.js.map +1 -1
- package/lib/components/Avatar/Avatar.types.js.map +1 -1
- package/lib/components/Avatar/renderAvatar.js.map +1 -1
- package/lib/components/Avatar/useAvatar.js +4 -7
- package/lib/components/Avatar/useAvatar.js.map +1 -1
- package/lib/components/Avatar/useAvatarStyles.js +63 -68
- package/lib/components/Avatar/useAvatarStyles.js.map +1 -1
- package/lib/components/AvatarGroup/AvatarGroup.js +2 -1
- package/lib/components/AvatarGroup/AvatarGroup.js.map +1 -1
- package/lib/components/AvatarGroup/AvatarGroup.types.js.map +1 -1
- package/lib/components/AvatarGroup/renderAvatarGroup.js +31 -4
- package/lib/components/AvatarGroup/renderAvatarGroup.js.map +1 -1
- package/lib/components/AvatarGroup/useAvatarGroup.js +68 -28
- package/lib/components/AvatarGroup/useAvatarGroup.js.map +1 -1
- package/lib/components/AvatarGroup/useAvatarGroupStyles.js +274 -15
- package/lib/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -1
- package/lib/components/AvatarGroupItem/AvatarGroupItem.js +16 -0
- package/lib/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
- package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js +2 -0
- package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
- package/lib/components/AvatarGroupItem/index.js +6 -0
- package/lib/components/AvatarGroupItem/index.js.map +1 -0
- package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js +17 -0
- package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
- package/lib/components/AvatarGroupItem/useAvatarGroupItem.js +70 -0
- package/lib/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
- package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js +356 -0
- package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
- package/lib/contexts/AvatarGroupContext.js +7 -0
- package/lib/contexts/AvatarGroupContext.js.map +1 -0
- package/lib/contexts/AvatarGroupContext.types.js +2 -0
- package/lib/contexts/AvatarGroupContext.types.js.map +1 -0
- package/lib/contexts/index.js +2 -0
- package/lib/contexts/index.js.map +1 -0
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/lib/utils/getInitials.js +2 -0
- package/lib/utils/getInitials.js.map +1 -1
- package/lib-commonjs/AvatarGroupItem.js +10 -0
- package/lib-commonjs/AvatarGroupItem.js.map +1 -0
- package/lib-commonjs/components/Avatar/Avatar.js.map +1 -1
- package/lib-commonjs/components/Avatar/renderAvatar.js.map +1 -1
- package/lib-commonjs/components/Avatar/useAvatar.js +4 -7
- package/lib-commonjs/components/Avatar/useAvatar.js.map +1 -1
- package/lib-commonjs/components/Avatar/useAvatarStyles.js +65 -70
- package/lib-commonjs/components/Avatar/useAvatarStyles.js.map +1 -1
- package/lib-commonjs/components/AvatarGroup/AvatarGroup.js +2 -1
- package/lib-commonjs/components/AvatarGroup/AvatarGroup.js.map +1 -1
- package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js +34 -4
- package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js.map +1 -1
- package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js +72 -31
- package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js.map +1 -1
- package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js +278 -15
- package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -1
- package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js +27 -0
- package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
- package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js +6 -0
- package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
- package/lib-commonjs/components/AvatarGroupItem/index.js +18 -0
- package/lib-commonjs/components/AvatarGroupItem/index.js.map +1 -0
- package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js +28 -0
- package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
- package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js +84 -0
- package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
- package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js +370 -0
- package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
- package/lib-commonjs/contexts/AvatarGroupContext.js +15 -0
- package/lib-commonjs/contexts/AvatarGroupContext.js.map +1 -0
- package/lib-commonjs/contexts/AvatarGroupContext.types.js +6 -0
- package/lib-commonjs/contexts/AvatarGroupContext.types.js.map +1 -0
- package/lib-commonjs/contexts/index.js +10 -0
- package/lib-commonjs/contexts/index.js.map +1 -0
- package/lib-commonjs/index.js +34 -8
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/utils/getInitials.js +2 -0
- package/lib-commonjs/utils/getInitials.js.map +1 -1
- package/lib-commonjs/utils/index.js.map +1 -1
- package/package.json +16 -16
- package/lib/components/AvatarGroup/AvatarGroup.strings.js +0 -4
- package/lib/components/AvatarGroup/AvatarGroup.strings.js.map +0 -1
- package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js +0 -10
- package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js.map +0 -1
package/CHANGELOG.json
CHANGED
|
@@ -2,7 +2,416 @@
|
|
|
2
2
|
"name": "@fluentui/react-avatar",
|
|
3
3
|
"entries": [
|
|
4
4
|
{
|
|
5
|
-
"date": "
|
|
5
|
+
"date": "Tue, 28 Jun 2022 15:09:26 GMT",
|
|
6
|
+
"tag": "@fluentui/react-avatar_v9.0.0",
|
|
7
|
+
"version": "9.0.0",
|
|
8
|
+
"comments": {
|
|
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 v9.0.0",
|
|
138
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"author": "beachball",
|
|
142
|
+
"package": "@fluentui/react-avatar",
|
|
143
|
+
"comment": "Bump @fluentui/react-context-selector to v9.0.0",
|
|
144
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"author": "beachball",
|
|
148
|
+
"package": "@fluentui/react-avatar",
|
|
149
|
+
"comment": "Bump @fluentui/react-popover to v9.0.0",
|
|
150
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"author": "beachball",
|
|
154
|
+
"package": "@fluentui/react-avatar",
|
|
155
|
+
"comment": "Bump @fluentui/react-shared-contexts to v9.0.0",
|
|
156
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"author": "beachball",
|
|
160
|
+
"package": "@fluentui/react-avatar",
|
|
161
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0",
|
|
162
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"author": "beachball",
|
|
166
|
+
"package": "@fluentui/react-avatar",
|
|
167
|
+
"comment": "Bump @fluentui/react-theme to v9.0.0",
|
|
168
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"author": "beachball",
|
|
172
|
+
"package": "@fluentui/react-avatar",
|
|
173
|
+
"comment": "Bump @fluentui/react-tooltip to v9.0.0",
|
|
174
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"author": "beachball",
|
|
178
|
+
"package": "@fluentui/react-avatar",
|
|
179
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0",
|
|
180
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"author": "beachball",
|
|
184
|
+
"package": "@fluentui/react-avatar",
|
|
185
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9",
|
|
186
|
+
"commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
|
|
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",
|
|
6
415
|
"tag": "@fluentui/react-avatar_v9.0.0-rc.9",
|
|
7
416
|
"version": "9.0.0-rc.9",
|
|
8
417
|
"comments": {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,109 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-avatar
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Tue, 28 Jun 2022 15:09:26 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0)
|
|
8
|
+
|
|
9
|
+
Tue, 28 Jun 2022 15:09:26 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.13..@fluentui/react-avatar_v9.0.0)
|
|
11
|
+
|
|
12
|
+
### Patches
|
|
13
|
+
|
|
14
|
+
- feat: Initial 9.0.0 release ([PR #23733](https://github.com/microsoft/fluentui/pull/23733) by lingfangao@hotmail.com)
|
|
15
|
+
- Bump @fluentui/react-badge to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
16
|
+
- Bump @fluentui/react-context-selector to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
17
|
+
- Bump @fluentui/react-popover to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
18
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
19
|
+
- Bump @fluentui/react-tabster to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
20
|
+
- Bump @fluentui/react-theme to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
21
|
+
- Bump @fluentui/react-tooltip to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
22
|
+
- Bump @fluentui/react-utilities to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
23
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
|
|
24
|
+
|
|
25
|
+
### Changes
|
|
26
|
+
|
|
27
|
+
- fix: Fix wrong border radius for outline in webkit browsers. ([PR #23576](https://github.com/microsoft/fluentui/pull/23576) by esteban.230@hotmail.com)
|
|
28
|
+
- Adding AvatarGroupItem implementation and AvatarGroup context. ([PR #23310](https://github.com/microsoft/fluentui/pull/23310) by esteban.230@hotmail.com)
|
|
29
|
+
- chore: Using ::before and ::after instead of :before and :after. ([PR #23469](https://github.com/microsoft/fluentui/pull/23469) by Humberto.Morimoto@microsoft.com)
|
|
30
|
+
- chore: Update @fluentui/react-icons to latest version ([PR #23459](https://github.com/microsoft/fluentui/pull/23459) by olfedias@microsoft.com)
|
|
31
|
+
- docs: Adding AvatarGroup stories. ([PR #23493](https://github.com/microsoft/fluentui/pull/23493) by esteban.230@hotmail.com)
|
|
32
|
+
- Bump Griffel dependencies ([PR #23688](https://github.com/microsoft/fluentui/pull/23688) by lingfangao@hotmail.com)
|
|
33
|
+
- PresenceBadge accessibility: fix placement of aria-label, sort out Avatar usage and examples ([PR #23256](https://github.com/microsoft/fluentui/pull/23256) by sarah.higley@microsoft.com)
|
|
34
|
+
- Adding layout styles to AvatarGroupItem. ([PR #23468](https://github.com/microsoft/fluentui/pull/23468) by esteban.230@hotmail.com)
|
|
35
|
+
- chore: Adding scheduler as a peer dependency since this package has a dependency on @fluentui/react-context-selector. ([PR #23681](https://github.com/microsoft/fluentui/pull/23681) by Humberto.Morimoto@microsoft.com)
|
|
36
|
+
- Adding layout styles and overflow button styles to AvatarGroup. ([PR #23437](https://github.com/microsoft/fluentui/pull/23437) by esteban.230@hotmail.com)
|
|
37
|
+
- fix: Fixing focus indicator and adding a focus ring to root for the pie layout. ([PR #23528](https://github.com/microsoft/fluentui/pull/23528) by esteban.230@hotmail.com)
|
|
38
|
+
- Update 9.0.0-rc dependencies to use caret range ([PR #23732](https://github.com/microsoft/fluentui/pull/23732) by lingfangao@hotmail.com)
|
|
39
|
+
- 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. ([PR #23498](https://github.com/microsoft/fluentui/pull/23498) by esteban.230@hotmail.com)
|
|
40
|
+
|
|
41
|
+
## [9.0.0-rc.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.13)
|
|
42
|
+
|
|
43
|
+
Thu, 23 Jun 2022 14:25:31 GMT
|
|
44
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.12..@fluentui/react-avatar_v9.0.0-rc.13)
|
|
45
|
+
|
|
46
|
+
### Changes
|
|
47
|
+
|
|
48
|
+
- Bump @fluentui/react-badge to v9.0.0-rc.13 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
49
|
+
- Bump @fluentui/react-button to v9.0.0-rc.14 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
50
|
+
- Bump @fluentui/react-popover to v9.0.0-rc.14 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
51
|
+
- Bump @fluentui/react-tooltip to v9.0.0-rc.14 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
52
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.10 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
53
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.11 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
54
|
+
|
|
55
|
+
## [9.0.0-rc.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.12)
|
|
56
|
+
|
|
57
|
+
Tue, 31 May 2022 21:28:35 GMT
|
|
58
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.11..@fluentui/react-avatar_v9.0.0-rc.12)
|
|
59
|
+
|
|
60
|
+
### Changes
|
|
61
|
+
|
|
62
|
+
- chore: Update Griffel to latest version ([PR #23275](https://github.com/microsoft/fluentui/pull/23275) by olfedias@microsoft.com)
|
|
63
|
+
- updates import to react-shared-components ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by bernardo.sunderhus@gmail.com)
|
|
64
|
+
- Creating AvatarGroupItem component. ([PR #23287](https://github.com/microsoft/fluentui/pull/23287) by esteban.230@hotmail.com)
|
|
65
|
+
- Adding .beta to AvatarGroup stories so it's not shown in the docsite. ([PR #23216](https://github.com/microsoft/fluentui/pull/23216) by esteban.230@hotmail.com)
|
|
66
|
+
- Bump @fluentui/react-badge to v9.0.0-rc.12 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
67
|
+
- Bump @fluentui/react-button to v9.0.0-rc.13 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
68
|
+
- Bump @fluentui/react-popover to v9.0.0-rc.13 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
69
|
+
- Bump @fluentui/react-tooltip to v9.0.0-rc.13 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
70
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
71
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
72
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
73
|
+
|
|
74
|
+
## [9.0.0-rc.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.11)
|
|
75
|
+
|
|
76
|
+
Thu, 26 May 2022 21:01:22 GMT
|
|
77
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.10..@fluentui/react-avatar_v9.0.0-rc.11)
|
|
78
|
+
|
|
79
|
+
### Changes
|
|
80
|
+
|
|
81
|
+
- fix react-avatar: use initials as a fallback label even when no id is manually defined ([PR #23258](https://github.com/microsoft/fluentui/pull/23258) by sarah.higley@microsoft.com)
|
|
82
|
+
- Bump @fluentui/react-badge to v9.0.0-rc.11 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
|
|
83
|
+
- Bump @fluentui/react-button to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
|
|
84
|
+
- Bump @fluentui/react-popover to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
|
|
85
|
+
- Bump @fluentui/react-tooltip to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
|
|
86
|
+
|
|
87
|
+
## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.10)
|
|
88
|
+
|
|
89
|
+
Mon, 23 May 2022 18:56:40 GMT
|
|
90
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.9..@fluentui/react-avatar_v9.0.0-rc.10)
|
|
91
|
+
|
|
92
|
+
### Changes
|
|
93
|
+
|
|
94
|
+
- BREAKING: update string unions to use spinal-case ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by seanmonahan@microsoft.com)
|
|
95
|
+
- Removing <componentName>ClassName exports. ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by esteban.230@hotmail.com)
|
|
96
|
+
- Bump @fluentui/react-badge to v9.0.0-rc.10 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
97
|
+
- Bump @fluentui/react-button to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
98
|
+
- Bump @fluentui/react-popover to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
99
|
+
- Bump @fluentui/react-tooltip to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
100
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
101
|
+
- Bump @fluentui/react-shared-contexts to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
102
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
103
|
+
|
|
7
104
|
## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.9)
|
|
8
105
|
|
|
9
|
-
Mon, 23 May 2022 12:
|
|
106
|
+
Mon, 23 May 2022 12:14:00 GMT
|
|
10
107
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.8..@fluentui/react-avatar_v9.0.0-rc.9)
|
|
11
108
|
|
|
12
109
|
### Changes
|