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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/CHANGELOG.json +891 -19
  2. package/CHANGELOG.md +336 -131
  3. package/MIGRATION.md +71 -66
  4. package/SPEC-AvatarGroup.md +185 -0
  5. package/SPEC.md +160 -135
  6. package/dist/index.d.ts +242 -0
  7. package/{lib → dist}/tsdoc-metadata.json +0 -0
  8. package/lib/Avatar.js.map +1 -1
  9. package/lib/AvatarGroup.js +2 -0
  10. package/lib/AvatarGroup.js.map +1 -0
  11. package/lib/components/Avatar/Avatar.js +7 -7
  12. package/lib/components/Avatar/Avatar.js.map +1 -1
  13. package/lib/components/Avatar/Avatar.types.js.map +1 -1
  14. package/lib/components/Avatar/index.js.map +1 -1
  15. package/lib/components/Avatar/renderAvatar.js +11 -7
  16. package/lib/components/Avatar/renderAvatar.js.map +1 -1
  17. package/lib/components/Avatar/useAvatar.js +115 -87
  18. package/lib/components/Avatar/useAvatar.js.map +1 -1
  19. package/lib/components/Avatar/useAvatarStyles.js +185 -112
  20. package/lib/components/Avatar/useAvatarStyles.js.map +1 -1
  21. package/lib/components/AvatarGroup/AvatarGroup.js +15 -0
  22. package/lib/components/AvatarGroup/AvatarGroup.js.map +1 -0
  23. package/lib/components/AvatarGroup/AvatarGroup.strings.js +4 -0
  24. package/lib/components/AvatarGroup/AvatarGroup.strings.js.map +1 -0
  25. package/lib/components/AvatarGroup/AvatarGroup.types.js +2 -0
  26. package/lib/components/AvatarGroup/AvatarGroup.types.js.map +1 -0
  27. package/lib/components/AvatarGroup/index.js +6 -0
  28. package/lib/components/AvatarGroup/index.js.map +1 -0
  29. package/lib/components/AvatarGroup/renderAvatarGroup.js +16 -0
  30. package/lib/components/AvatarGroup/renderAvatarGroup.js.map +1 -0
  31. package/lib/components/AvatarGroup/useAvatarGroup.js +51 -0
  32. package/lib/components/AvatarGroup/useAvatarGroup.js.map +1 -0
  33. package/lib/components/AvatarGroup/useAvatarGroupStyles.js +37 -0
  34. package/lib/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -0
  35. package/lib/index.js +3 -1
  36. package/lib/index.js.map +1 -1
  37. package/lib/utils/getInitials.js +26 -19
  38. package/lib/utils/getInitials.js.map +1 -1
  39. package/lib/utils/index.js.map +1 -1
  40. package/lib-commonjs/Avatar.js +1 -1
  41. package/lib-commonjs/Avatar.js.map +1 -1
  42. package/lib-commonjs/AvatarGroup.js +10 -0
  43. package/lib-commonjs/AvatarGroup.js.map +1 -0
  44. package/lib-commonjs/components/Avatar/Avatar.js +8 -8
  45. package/lib-commonjs/components/Avatar/Avatar.js.map +1 -1
  46. package/lib-commonjs/components/Avatar/Avatar.types.js.map +1 -1
  47. package/lib-commonjs/components/Avatar/index.js +1 -1
  48. package/lib-commonjs/components/Avatar/index.js.map +1 -1
  49. package/lib-commonjs/components/Avatar/renderAvatar.js +15 -12
  50. package/lib-commonjs/components/Avatar/renderAvatar.js.map +1 -1
  51. package/lib-commonjs/components/Avatar/useAvatar.js +120 -92
  52. package/lib-commonjs/components/Avatar/useAvatar.js.map +1 -1
  53. package/lib-commonjs/components/Avatar/useAvatarStyles.js +188 -115
  54. package/lib-commonjs/components/Avatar/useAvatarStyles.js.map +1 -1
  55. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js +26 -0
  56. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js.map +1 -0
  57. package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js +10 -0
  58. package/lib-commonjs/components/AvatarGroup/AvatarGroup.strings.js.map +1 -0
  59. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js +6 -0
  60. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js.map +1 -0
  61. package/lib-commonjs/components/AvatarGroup/index.js +18 -0
  62. package/lib-commonjs/components/AvatarGroup/index.js.map +1 -0
  63. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js +27 -0
  64. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js.map +1 -0
  65. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js +64 -0
  66. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js.map +1 -0
  67. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js +47 -0
  68. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -0
  69. package/lib-commonjs/index.js +74 -2
  70. package/lib-commonjs/index.js.map +1 -1
  71. package/lib-commonjs/utils/getInitials.js +26 -19
  72. package/lib-commonjs/utils/getInitials.js.map +1 -1
  73. package/lib-commonjs/utils/index.js.map +1 -1
  74. package/package.json +24 -25
  75. package/dist/react-avatar.d.ts +0 -132
  76. package/lib/Avatar.d.ts +0 -1
  77. package/lib/common/isConformant.d.ts +0 -4
  78. package/lib/common/isConformant.js +0 -12
  79. package/lib/common/isConformant.js.map +0 -1
  80. package/lib/components/Avatar/Avatar.d.ts +0 -3
  81. package/lib/components/Avatar/Avatar.types.d.ts +0 -112
  82. package/lib/components/Avatar/index.d.ts +0 -5
  83. package/lib/components/Avatar/renderAvatar.d.ts +0 -2
  84. package/lib/components/Avatar/useAvatar.d.ts +0 -3
  85. package/lib/components/Avatar/useAvatarStyles.d.ts +0 -2
  86. package/lib/index.d.ts +0 -1
  87. package/lib/utils/getInitials.d.ts +0 -9
  88. package/lib/utils/index.d.ts +0 -1
  89. package/lib-commonjs/Avatar.d.ts +0 -1
  90. package/lib-commonjs/common/isConformant.d.ts +0 -4
  91. package/lib-commonjs/common/isConformant.js +0 -23
  92. package/lib-commonjs/common/isConformant.js.map +0 -1
  93. package/lib-commonjs/components/Avatar/Avatar.d.ts +0 -3
  94. package/lib-commonjs/components/Avatar/Avatar.types.d.ts +0 -112
  95. package/lib-commonjs/components/Avatar/index.d.ts +0 -5
  96. package/lib-commonjs/components/Avatar/renderAvatar.d.ts +0 -2
  97. package/lib-commonjs/components/Avatar/useAvatar.d.ts +0 -3
  98. package/lib-commonjs/components/Avatar/useAvatarStyles.d.ts +0 -2
  99. package/lib-commonjs/index.d.ts +0 -1
  100. package/lib-commonjs/utils/getInitials.d.ts +0 -9
  101. package/lib-commonjs/utils/index.d.ts +0 -1
package/CHANGELOG.md CHANGED
@@ -1,28 +1,233 @@
1
1
  # Change Log - @fluentui/react-avatar
2
2
 
3
- This log was last generated on Tue, 19 Oct 2021 12:39:14 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 26 May 2022 20:59:58 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [9.0.0-nightly.f81b28ceb3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-nightly.f81b28ceb3.1)
7
+ ## [9.0.0-rc.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.11)
8
8
 
9
- Tue, 19 Oct 2021 12:39:14 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.1..@fluentui/react-avatar_v9.0.0-nightly.f81b28ceb3.1)
9
+ Thu, 26 May 2022 20:59:58 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.10..@fluentui/react-avatar_v9.0.0-rc.11)
11
11
 
12
12
  ### Changes
13
13
 
14
- - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by email not defined)
15
- - Bump @fluentui/react-badge to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
16
- - Bump @fluentui/react-make-styles to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
17
- - Bump @fluentui/react-theme to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
18
- - Bump @fluentui/react-utilities to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
19
- - Bump @fluentui/babel-make-styles to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
20
- - Bump @fluentui/jest-serializer-make-styles to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
21
- - Bump @fluentui/react-conformance-make-styles to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
14
+ - 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)
15
+ - Bump @fluentui/react-badge to v9.0.0-rc.11 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
16
+ - Bump @fluentui/react-button to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
17
+ - Bump @fluentui/react-popover to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
18
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
19
+
20
+ ## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.10)
21
+
22
+ Mon, 23 May 2022 18:56:40 GMT
23
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.9..@fluentui/react-avatar_v9.0.0-rc.10)
24
+
25
+ ### Changes
26
+
27
+ - BREAKING: update string unions to use spinal-case ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by seanmonahan@microsoft.com)
28
+ - Removing <componentName>ClassName exports. ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by esteban.230@hotmail.com)
29
+ - Bump @fluentui/react-badge to v9.0.0-rc.10 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
30
+ - Bump @fluentui/react-button to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
31
+ - Bump @fluentui/react-popover to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
32
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
33
+ - Bump @fluentui/react-theme to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
34
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
35
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
36
+
37
+ ## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.9)
38
+
39
+ Mon, 23 May 2022 12:14:00 GMT
40
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.8..@fluentui/react-avatar_v9.0.0-rc.9)
41
+
42
+ ### Changes
43
+
44
+ - Add support for size={16} to Avatar ([PR #23003](https://github.com/microsoft/fluentui/pull/23003) by behowell@microsoft.com)
45
+ - chore: Update Griffel to latest version ([PR #23029](https://github.com/microsoft/fluentui/pull/23029) by olfedias@microsoft.com)
46
+ - chore: Update Griffel to latest version ([PR #22894](https://github.com/microsoft/fluentui/pull/22894) by olfedias@microsoft.com)
47
+ - Moving Avatar stories to stories folder. ([PR #23047](https://github.com/microsoft/fluentui/pull/23047) by esteban.230@hotmail.com)
48
+ - Bump @fluentui/react-badge to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
49
+ - Bump @fluentui/react-button to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
50
+ - Bump @fluentui/react-popover to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
51
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
52
+ - Bump @fluentui/react-theme to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
53
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
54
+ - Bump @fluentui/react-utilities to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
55
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
56
+
57
+ ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.8)
58
+
59
+ Thu, 05 May 2022 18:26:29 GMT
60
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.7..@fluentui/react-avatar_v9.0.0-rc.8)
61
+
62
+ ### Changes
63
+
64
+ - feat: ship rolluped only dts ([PR #22823](https://github.com/microsoft/fluentui/pull/22823) by martinhochel@microsoft.com)
65
+ - Bump @fluentui/react-badge to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
66
+ - Bump @fluentui/react-button to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
67
+ - Bump @fluentui/react-popover to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
68
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
69
+ - Bump @fluentui/react-theme to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
70
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
71
+ - Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
72
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
73
+
74
+ ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.7)
75
+
76
+ Wed, 04 May 2022 13:26:37 GMT
77
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.6..@fluentui/react-avatar_v9.0.0-rc.7)
78
+
79
+ ### Changes
80
+
81
+ - Bump @fluentui/react-badge to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
82
+ - Bump @fluentui/react-button to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
83
+ - Bump @fluentui/react-popover to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
84
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
85
+ - Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
86
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
87
+ - Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
88
+
89
+ ## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.6)
90
+
91
+ Tue, 19 Apr 2022 19:17:08 GMT
92
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.5..@fluentui/react-avatar_v9.0.0-rc.6)
93
+
94
+ ### Changes
95
+
96
+ - Add static classnames to Avatar ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
97
+ - Avatar: Fix style for sizes 20 and 24 to have semibold fontWeight instead of regular. ([PR #22146](https://github.com/microsoft/fluentui/pull/22146) by Humberto.Morimoto@microsoft.com)
98
+ - Removing star exports. ([PR #22113](https://github.com/microsoft/fluentui/pull/22113) by Humberto.Morimoto@microsoft.com)
99
+ - update react-icons version to ^2.0.166-rc.3 from ^2.0.159-beta.10 ([PR #22512](https://github.com/microsoft/fluentui/pull/22512) by seanmonahan@microsoft.com)
100
+ - add missing dependencies ([PR #21924](https://github.com/microsoft/fluentui/pull/21924) by martinhochel@microsoft.com)
101
+ - chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
102
+ - Bump @fluentui/react-badge to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
103
+ - Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
104
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
105
+ - Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
106
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
107
+
108
+ ## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.5)
109
+
110
+ Fri, 04 Mar 2022 05:17:33 GMT
111
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.4..@fluentui/react-avatar_v9.0.0-rc.5)
112
+
113
+ ### Changes
114
+
115
+ - Adding explicit export maps on all consumer packages for FUIR 8 and 9. ([PR #21508](https://github.com/microsoft/fluentui/pull/21508) by dzearing@microsoft.com)
116
+ - Bump @fluentui/react-badge to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
117
+ - Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
118
+ - Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
119
+
120
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.4)
121
+
122
+ Tue, 01 Mar 2022 02:17:40 GMT
123
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.3..@fluentui/react-avatar_v9.0.0-rc.4)
124
+
125
+ ### Changes
126
+
127
+ - Bump @fluentui/react-badge to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
128
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
129
+
130
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.3)
131
+
132
+ Fri, 18 Feb 2022 13:35:28 GMT
133
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.1..@fluentui/react-avatar_v9.0.0-rc.3)
134
+
135
+ ### Changes
136
+
137
+ - Hide Avatar's image if it fails to load, rather than displaying the broken image icon ([PR #21636](https://github.com/microsoft/fluentui/pull/21636) by behowell@microsoft.com)
138
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
139
+ - Update Avatar SPEC.md and MIGRATION.md ([PR #21702](https://github.com/microsoft/fluentui/pull/21702) by behowell@microsoft.com)
140
+ - Bump @fluentui/react-badge to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
141
+ - Bump @fluentui/react-theme to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
142
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
143
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
144
+
145
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.1)
146
+
147
+ Thu, 10 Feb 2022 08:52:19 GMT
148
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.4..@fluentui/react-avatar_v9.0.0-rc.1)
149
+
150
+ ### Changes
151
+
152
+ - Updating use of tokens.fontWeight now that we don't need to use casting. ([PR #21217](https://github.com/microsoft/fluentui/pull/21217) by Humberto.Morimoto@microsoft.com)
153
+ - Make Avatar's initials be un-selectable text ([PR #21638](https://github.com/microsoft/fluentui/pull/21638) by behowell@microsoft.com)
154
+ - update @fluentui/react-icons package ([PR #21498](https://github.com/microsoft/fluentui/pull/21498) by olfedias@microsoft.com)
155
+ - Replace make-styles packages with griffel equivalents. ([PR #21439](https://github.com/microsoft/fluentui/pull/21439) by olfedias@microsoft.com)
156
+ - Update documentation stories ([PR #21519](https://github.com/microsoft/fluentui/pull/21519) by behowell@microsoft.com)
157
+ - BREAKING: Rename component hooks add the suffix \_unstable, as their API has not been finalized yet ([PR #21365](https://github.com/microsoft/fluentui/pull/21365) by behowell@microsoft.com)
158
+ - Export the default getInitials implementation ([PR #21445](https://github.com/microsoft/fluentui/pull/21445) by behowell@microsoft.com)
159
+ - (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
160
+ - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
161
+ - Rename `label` slot to `initials`, remove `getInitials` prop, and improve accessibility ([PR #21346](https://github.com/microsoft/fluentui/pull/21346) by behowell@microsoft.com)
162
+ - Update Avatar to have role="img" on the root, and other a11y fixes ([PR #21526](https://github.com/microsoft/fluentui/pull/21526) by behowell@microsoft.com)
163
+ - update styles to not use CSS shorthands ([PR #20801](https://github.com/microsoft/fluentui/pull/20801) by olfedias@microsoft.com)
164
+ - Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
165
+ - Fix Avatar's high contrast border on Windows ([PR #21637](https://github.com/microsoft/fluentui/pull/21637) by behowell@microsoft.com)
166
+ - react-avatar: Replacing use of functions in makeStyles with direct use of tokens. ([PR #21037](https://github.com/microsoft/fluentui/pull/21037) by Humberto.Morimoto@microsoft.com)
167
+ - Using ComponentSlotProps instead of ObjectShorthandProps. ([PR #20890](https://github.com/microsoft/fluentui/pull/20890) by Humberto.Morimoto@microsoft.com)
168
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
169
+ - Remove `glow` and `ring-glow` from activeAppearance, as their visuals are not yet finalized. ([PR #21480](https://github.com/microsoft/fluentui/pull/21480) by behowell@microsoft.com)
170
+ - Update Avatar to use resizable icons ([PR #21160](https://github.com/microsoft/fluentui/pull/21160) by behowell@microsoft.com)
171
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
172
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
173
+ - Bump @fluentui/react-badge to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
174
+ - Bump @fluentui/react-theme to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
175
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
176
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
177
+
178
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.4)
179
+
180
+ Thu, 25 Nov 2021 08:34:10 GMT
181
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.3..@fluentui/react-avatar_v9.0.0-beta.4)
182
+
183
+ ### Changes
184
+
185
+ - update react-icons dependency ([PR #20563](https://github.com/microsoft/fluentui/pull/20563) by ololubek@microsoft.com)
186
+ - Bump @fluentui/react-badge to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
187
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
188
+ - Bump @fluentui/react-theme to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
189
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
190
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
191
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
192
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
193
+
194
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.3)
195
+
196
+ Fri, 12 Nov 2021 13:25:14 GMT
197
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.2..@fluentui/react-avatar_v9.0.0-beta.3)
198
+
199
+ ### Changes
200
+
201
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
202
+ - export static classes for components ([PR #20453](https://github.com/microsoft/fluentui/pull/20453) by olfedias@microsoft.com)
203
+ - Bump @fluentui/react-badge to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
204
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
205
+ - Bump @fluentui/react-theme to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
206
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
207
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
208
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
209
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
210
+
211
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.2)
212
+
213
+ Wed, 27 Oct 2021 12:14:13 GMT
214
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.1..@fluentui/react-avatar_v9.0.0-beta.2)
215
+
216
+ ### Changes
217
+
218
+ - Removed duplicate 'Avatar' from story names ([PR #20264](https://github.com/microsoft/fluentui/pull/20264) by gcox@microsoft.com)
219
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
220
+ - Bump @fluentui/react-badge to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
221
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
222
+ - Bump @fluentui/react-theme to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
223
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
224
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
225
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
226
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
22
227
 
23
228
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.1)
24
229
 
25
- Wed, 06 Oct 2021 10:37:22 GMT
230
+ Wed, 06 Oct 2021 10:37:22 GMT
26
231
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.93..@fluentui/react-avatar_v9.0.0-beta.1)
27
232
 
28
233
  ### Changes
@@ -38,7 +243,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
38
243
 
39
244
  ## [9.0.0-alpha.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.93)
40
245
 
41
- Tue, 05 Oct 2021 12:47:58 GMT
246
+ Tue, 05 Oct 2021 12:47:58 GMT
42
247
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.92..@fluentui/react-avatar_v9.0.0-alpha.93)
43
248
 
44
249
  ### Changes
@@ -51,13 +256,13 @@ Tue, 05 Oct 2021 12:47:58 GMT
51
256
 
52
257
  ## [9.0.0-alpha.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.92)
53
258
 
54
- Tue, 05 Oct 2021 09:28:07 GMT
259
+ Tue, 05 Oct 2021 09:28:07 GMT
55
260
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.91..@fluentui/react-avatar_v9.0.0-alpha.92)
56
261
 
57
262
  ### Changes
58
263
 
59
264
  - Adds ForwardRefComponent to components declaration ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
60
- - Fix Avatar stories after #19449 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
265
+ - Fix Avatar stories after #19449 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
61
266
  - Bump @fluentui/react-badge to v9.0.0-alpha.91 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
62
267
  - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
63
268
  - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
@@ -67,7 +272,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
67
272
 
68
273
  ## [9.0.0-alpha.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.91)
69
274
 
70
- Mon, 04 Oct 2021 08:03:04 GMT
275
+ Mon, 04 Oct 2021 08:03:04 GMT
71
276
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.90..@fluentui/react-avatar_v9.0.0-alpha.91)
72
277
 
73
278
  ### Changes
@@ -76,7 +281,7 @@ Mon, 04 Oct 2021 08:03:04 GMT
76
281
 
77
282
  ## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.90)
78
283
 
79
- Fri, 01 Oct 2021 14:13:08 GMT
284
+ Fri, 01 Oct 2021 14:13:08 GMT
80
285
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.88..@fluentui/react-avatar_v9.0.0-alpha.90)
81
286
 
82
287
  ### Changes
@@ -92,7 +297,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
92
297
 
93
298
  ## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.88)
94
299
 
95
- Wed, 29 Sep 2021 08:06:11 GMT
300
+ Wed, 29 Sep 2021 08:06:11 GMT
96
301
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.87..@fluentui/react-avatar_v9.0.0-alpha.88)
97
302
 
98
303
  ### Changes
@@ -106,7 +311,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
106
311
 
107
312
  ## [9.0.0-alpha.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.87)
108
313
 
109
- Mon, 27 Sep 2021 08:06:00 GMT
314
+ Mon, 27 Sep 2021 08:06:00 GMT
110
315
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.86..@fluentui/react-avatar_v9.0.0-alpha.87)
111
316
 
112
317
  ### Changes
@@ -121,7 +326,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
121
326
 
122
327
  ## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.86)
123
328
 
124
- Fri, 24 Sep 2021 09:17:17 GMT
329
+ Fri, 24 Sep 2021 09:17:17 GMT
125
330
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.85..@fluentui/react-avatar_v9.0.0-alpha.86)
126
331
 
127
332
  ### Changes
@@ -136,7 +341,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
136
341
 
137
342
  ## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.85)
138
343
 
139
- Thu, 23 Sep 2021 08:21:34 GMT
344
+ Thu, 23 Sep 2021 08:21:34 GMT
140
345
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.84..@fluentui/react-avatar_v9.0.0-alpha.85)
141
346
 
142
347
  ### Changes
@@ -151,7 +356,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
151
356
 
152
357
  ## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.84)
153
358
 
154
- Wed, 22 Sep 2021 10:10:07 GMT
359
+ Wed, 22 Sep 2021 10:10:07 GMT
155
360
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.83..@fluentui/react-avatar_v9.0.0-alpha.84)
156
361
 
157
362
  ### Changes
@@ -166,7 +371,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
166
371
 
167
372
  ## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.83)
168
373
 
169
- Tue, 21 Sep 2021 07:42:34 GMT
374
+ Tue, 21 Sep 2021 07:42:34 GMT
170
375
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.82..@fluentui/react-avatar_v9.0.0-alpha.83)
171
376
 
172
377
  ### Changes
@@ -181,7 +386,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
181
386
 
182
387
  ## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.82)
183
388
 
184
- Mon, 20 Sep 2021 07:36:26 GMT
389
+ Mon, 20 Sep 2021 07:36:26 GMT
185
390
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.81..@fluentui/react-avatar_v9.0.0-alpha.82)
186
391
 
187
392
  ### Changes
@@ -190,7 +395,7 @@ Mon, 20 Sep 2021 07:36:26 GMT
190
395
 
191
396
  ## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.81)
192
397
 
193
- Fri, 17 Sep 2021 07:35:26 GMT
398
+ Fri, 17 Sep 2021 07:35:26 GMT
194
399
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.80..@fluentui/react-avatar_v9.0.0-alpha.81)
195
400
 
196
401
  ### Changes
@@ -199,7 +404,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
199
404
 
200
405
  ## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.80)
201
406
 
202
- Thu, 16 Sep 2021 07:38:39 GMT
407
+ Thu, 16 Sep 2021 07:38:39 GMT
203
408
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.79..@fluentui/react-avatar_v9.0.0-alpha.80)
204
409
 
205
410
  ### Changes
@@ -208,7 +413,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
208
413
 
209
414
  ## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.79)
210
415
 
211
- Tue, 14 Sep 2021 20:09:02 GMT
416
+ Tue, 14 Sep 2021 20:09:02 GMT
212
417
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.78..@fluentui/react-avatar_v9.0.0-alpha.79)
213
418
 
214
419
  ### Changes
@@ -217,7 +422,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
217
422
 
218
423
  ## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.78)
219
424
 
220
- Fri, 10 Sep 2021 16:31:53 GMT
425
+ Fri, 10 Sep 2021 16:31:53 GMT
221
426
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.77..@fluentui/react-avatar_v9.0.0-alpha.78)
222
427
 
223
428
  ### Changes
@@ -227,7 +432,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
227
432
 
228
433
  ## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.77)
229
434
 
230
- Fri, 10 Sep 2021 07:39:51 GMT
435
+ Fri, 10 Sep 2021 07:39:51 GMT
231
436
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.76..@fluentui/react-avatar_v9.0.0-alpha.77)
232
437
 
233
438
  ### Changes
@@ -236,7 +441,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
236
441
 
237
442
  ## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.76)
238
443
 
239
- Mon, 06 Sep 2021 07:34:53 GMT
444
+ Mon, 06 Sep 2021 07:34:53 GMT
240
445
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.75..@fluentui/react-avatar_v9.0.0-alpha.76)
241
446
 
242
447
  ### Changes
@@ -245,7 +450,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
245
450
 
246
451
  ## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.75)
247
452
 
248
- Thu, 02 Sep 2021 07:36:46 GMT
453
+ Thu, 02 Sep 2021 07:36:46 GMT
249
454
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.74..@fluentui/react-avatar_v9.0.0-alpha.75)
250
455
 
251
456
  ### Patches
@@ -258,7 +463,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
258
463
 
259
464
  ## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.74)
260
465
 
261
- Wed, 01 Sep 2021 07:39:56 GMT
466
+ Wed, 01 Sep 2021 07:39:56 GMT
262
467
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.73..@fluentui/react-avatar_v9.0.0-alpha.74)
263
468
 
264
469
  ### Changes
@@ -267,7 +472,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
267
472
 
268
473
  ## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.73)
269
474
 
270
- Tue, 31 Aug 2021 07:37:47 GMT
475
+ Tue, 31 Aug 2021 07:37:47 GMT
271
476
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.72..@fluentui/react-avatar_v9.0.0-alpha.73)
272
477
 
273
478
  ### Changes
@@ -276,7 +481,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
276
481
 
277
482
  ## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.72)
278
483
 
279
- Mon, 30 Aug 2021 07:35:05 GMT
484
+ Mon, 30 Aug 2021 07:35:05 GMT
280
485
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.71..@fluentui/react-avatar_v9.0.0-alpha.72)
281
486
 
282
487
  ### Changes
@@ -285,7 +490,7 @@ Mon, 30 Aug 2021 07:35:05 GMT
285
490
 
286
491
  ## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.71)
287
492
 
288
- Fri, 27 Aug 2021 07:33:32 GMT
493
+ Fri, 27 Aug 2021 07:33:32 GMT
289
494
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.70..@fluentui/react-avatar_v9.0.0-alpha.71)
290
495
 
291
496
  ### Changes
@@ -294,7 +499,7 @@ Fri, 27 Aug 2021 07:33:32 GMT
294
499
 
295
500
  ## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.70)
296
501
 
297
- Thu, 26 Aug 2021 07:35:43 GMT
502
+ Thu, 26 Aug 2021 07:35:43 GMT
298
503
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.69..@fluentui/react-avatar_v9.0.0-alpha.70)
299
504
 
300
505
  ### Changes
@@ -303,7 +508,7 @@ Thu, 26 Aug 2021 07:35:43 GMT
303
508
 
304
509
  ## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.69)
305
510
 
306
- Fri, 20 Aug 2021 07:37:28 GMT
511
+ Fri, 20 Aug 2021 07:37:28 GMT
307
512
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.68..@fluentui/react-avatar_v9.0.0-alpha.69)
308
513
 
309
514
  ### Changes
@@ -312,7 +517,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
312
517
 
313
518
  ## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.68)
314
519
 
315
- Thu, 19 Aug 2021 07:41:35 GMT
520
+ Thu, 19 Aug 2021 07:41:35 GMT
316
521
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.67..@fluentui/react-avatar_v9.0.0-alpha.68)
317
522
 
318
523
  ### Changes
@@ -321,7 +526,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
321
526
 
322
527
  ## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.67)
323
528
 
324
- Fri, 13 Aug 2021 07:36:34 GMT
529
+ Fri, 13 Aug 2021 07:36:34 GMT
325
530
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.66..@fluentui/react-avatar_v9.0.0-alpha.67)
326
531
 
327
532
  ### Changes
@@ -330,7 +535,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
330
535
 
331
536
  ## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.66)
332
537
 
333
- Wed, 11 Aug 2021 07:34:54 GMT
538
+ Wed, 11 Aug 2021 07:34:54 GMT
334
539
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.65..@fluentui/react-avatar_v9.0.0-alpha.66)
335
540
 
336
541
  ### Changes
@@ -339,7 +544,7 @@ Wed, 11 Aug 2021 07:34:54 GMT
339
544
 
340
545
  ## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.65)
341
546
 
342
- Fri, 06 Aug 2021 07:35:14 GMT
547
+ Fri, 06 Aug 2021 07:35:14 GMT
343
548
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.64..@fluentui/react-avatar_v9.0.0-alpha.65)
344
549
 
345
550
  ### Changes
@@ -348,7 +553,7 @@ Fri, 06 Aug 2021 07:35:14 GMT
348
553
 
349
554
  ## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.64)
350
555
 
351
- Thu, 05 Aug 2021 07:34:24 GMT
556
+ Thu, 05 Aug 2021 07:34:24 GMT
352
557
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.63..@fluentui/react-avatar_v9.0.0-alpha.64)
353
558
 
354
559
  ### Changes
@@ -357,7 +562,7 @@ Thu, 05 Aug 2021 07:34:24 GMT
357
562
 
358
563
  ## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.63)
359
564
 
360
- Tue, 03 Aug 2021 07:39:30 GMT
565
+ Tue, 03 Aug 2021 07:39:30 GMT
361
566
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.62..@fluentui/react-avatar_v9.0.0-alpha.63)
362
567
 
363
568
  ### Patches
@@ -372,7 +577,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
372
577
 
373
578
  ## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.62)
374
579
 
375
- Mon, 02 Aug 2021 07:36:20 GMT
580
+ Mon, 02 Aug 2021 07:36:20 GMT
376
581
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.61..@fluentui/react-avatar_v9.0.0-alpha.62)
377
582
 
378
583
  ### Changes
@@ -381,7 +586,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
381
586
 
382
587
  ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.61)
383
588
 
384
- Mon, 26 Jul 2021 07:37:30 GMT
589
+ Mon, 26 Jul 2021 07:37:30 GMT
385
590
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.60..@fluentui/react-avatar_v9.0.0-alpha.61)
386
591
 
387
592
  ### Changes
@@ -390,7 +595,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
390
595
 
391
596
  ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.60)
392
597
 
393
- Fri, 23 Jul 2021 07:38:19 GMT
598
+ Fri, 23 Jul 2021 07:38:19 GMT
394
599
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.59..@fluentui/react-avatar_v9.0.0-alpha.60)
395
600
 
396
601
  ### Changes
@@ -399,7 +604,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
399
604
 
400
605
  ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.59)
401
606
 
402
- Thu, 22 Jul 2021 07:36:55 GMT
607
+ Thu, 22 Jul 2021 07:36:55 GMT
403
608
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.58..@fluentui/react-avatar_v9.0.0-alpha.59)
404
609
 
405
610
  ### Changes
@@ -408,7 +613,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
408
613
 
409
614
  ## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.58)
410
615
 
411
- Tue, 20 Jul 2021 22:23:17 GMT
616
+ Tue, 20 Jul 2021 22:23:17 GMT
412
617
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.57..@fluentui/react-avatar_v9.0.0-alpha.58)
413
618
 
414
619
  ### Changes
@@ -417,7 +622,7 @@ Tue, 20 Jul 2021 22:23:17 GMT
417
622
 
418
623
  ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.57)
419
624
 
420
- Fri, 16 Jul 2021 22:53:17 GMT
625
+ Fri, 16 Jul 2021 22:53:17 GMT
421
626
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.56..@fluentui/react-avatar_v9.0.0-alpha.57)
422
627
 
423
628
  ### Changes
@@ -426,7 +631,7 @@ Fri, 16 Jul 2021 22:53:17 GMT
426
631
 
427
632
  ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.56)
428
633
 
429
- Thu, 15 Jul 2021 07:36:18 GMT
634
+ Thu, 15 Jul 2021 07:36:18 GMT
430
635
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.55..@fluentui/react-avatar_v9.0.0-alpha.56)
431
636
 
432
637
  ### Changes
@@ -435,7 +640,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
435
640
 
436
641
  ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.55)
437
642
 
438
- Tue, 13 Jul 2021 22:32:58 GMT
643
+ Tue, 13 Jul 2021 22:32:58 GMT
439
644
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.54..@fluentui/react-avatar_v9.0.0-alpha.55)
440
645
 
441
646
  ### Patches
@@ -444,7 +649,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
444
649
 
445
650
  ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.54)
446
651
 
447
- Tue, 13 Jul 2021 07:35:36 GMT
652
+ Tue, 13 Jul 2021 07:35:36 GMT
448
653
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.53..@fluentui/react-avatar_v9.0.0-alpha.54)
449
654
 
450
655
  ### Changes
@@ -453,7 +658,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
453
658
 
454
659
  ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.53)
455
660
 
456
- Fri, 09 Jul 2021 07:39:31 GMT
661
+ Fri, 09 Jul 2021 07:39:31 GMT
457
662
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.52..@fluentui/react-avatar_v9.0.0-alpha.53)
458
663
 
459
664
  ### Patches
@@ -468,7 +673,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
468
673
 
469
674
  ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.52)
470
675
 
471
- Fri, 02 Jul 2021 23:15:55 GMT
676
+ Fri, 02 Jul 2021 23:15:55 GMT
472
677
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.51..@fluentui/react-avatar_v9.0.0-alpha.52)
473
678
 
474
679
  ### Changes
@@ -477,7 +682,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
477
682
 
478
683
  ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.51)
479
684
 
480
- Fri, 02 Jul 2021 07:37:06 GMT
685
+ Fri, 02 Jul 2021 07:37:06 GMT
481
686
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.50..@fluentui/react-avatar_v9.0.0-alpha.51)
482
687
 
483
688
  ### Changes
@@ -486,7 +691,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
486
691
 
487
692
  ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.50)
488
693
 
489
- Thu, 01 Jul 2021 07:35:05 GMT
694
+ Thu, 01 Jul 2021 07:35:05 GMT
490
695
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.49..@fluentui/react-avatar_v9.0.0-alpha.50)
491
696
 
492
697
  ### Changes
@@ -495,7 +700,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
495
700
 
496
701
  ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.49)
497
702
 
498
- Wed, 30 Jun 2021 07:38:35 GMT
703
+ Wed, 30 Jun 2021 07:38:35 GMT
499
704
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.48..@fluentui/react-avatar_v9.0.0-alpha.49)
500
705
 
501
706
  ### Changes
@@ -504,7 +709,7 @@ Wed, 30 Jun 2021 07:38:35 GMT
504
709
 
505
710
  ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.48)
506
711
 
507
- Tue, 29 Jun 2021 07:33:32 GMT
712
+ Tue, 29 Jun 2021 07:33:32 GMT
508
713
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.47..@fluentui/react-avatar_v9.0.0-alpha.48)
509
714
 
510
715
  ### Changes
@@ -513,7 +718,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
513
718
 
514
719
  ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.47)
515
720
 
516
- Tue, 22 Jun 2021 07:35:11 GMT
721
+ Tue, 22 Jun 2021 07:35:11 GMT
517
722
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.46..@fluentui/react-avatar_v9.0.0-alpha.47)
518
723
 
519
724
  ### Changes
@@ -522,7 +727,7 @@ Tue, 22 Jun 2021 07:35:11 GMT
522
727
 
523
728
  ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.46)
524
729
 
525
- Tue, 15 Jun 2021 07:40:20 GMT
730
+ Tue, 15 Jun 2021 07:40:20 GMT
526
731
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.45..@fluentui/react-avatar_v9.0.0-alpha.46)
527
732
 
528
733
  ### Changes
@@ -531,7 +736,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
531
736
 
532
737
  ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.45)
533
738
 
534
- Mon, 07 Jun 2021 07:38:15 GMT
739
+ Mon, 07 Jun 2021 07:38:15 GMT
535
740
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.44..@fluentui/react-avatar_v9.0.0-alpha.45)
536
741
 
537
742
  ### Patches
@@ -546,7 +751,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
546
751
 
547
752
  ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.44)
548
753
 
549
- Fri, 04 Jun 2021 07:37:23 GMT
754
+ Fri, 04 Jun 2021 07:37:23 GMT
550
755
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.43..@fluentui/react-avatar_v9.0.0-alpha.44)
551
756
 
552
757
  ### Changes
@@ -555,7 +760,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
555
760
 
556
761
  ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.43)
557
762
 
558
- Thu, 03 Jun 2021 07:36:03 GMT
763
+ Thu, 03 Jun 2021 07:36:03 GMT
559
764
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.42..@fluentui/react-avatar_v9.0.0-alpha.43)
560
765
 
561
766
  ### Changes
@@ -564,7 +769,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
564
769
 
565
770
  ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.42)
566
771
 
567
- Wed, 02 Jun 2021 07:37:15 GMT
772
+ Wed, 02 Jun 2021 07:37:15 GMT
568
773
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.41..@fluentui/react-avatar_v9.0.0-alpha.42)
569
774
 
570
775
  ### Changes
@@ -573,7 +778,7 @@ Wed, 02 Jun 2021 07:37:15 GMT
573
778
 
574
779
  ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.41)
575
780
 
576
- Mon, 31 May 2021 07:33:15 GMT
781
+ Mon, 31 May 2021 07:33:15 GMT
577
782
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.40..@fluentui/react-avatar_v9.0.0-alpha.41)
578
783
 
579
784
  ### Changes
@@ -582,7 +787,7 @@ Mon, 31 May 2021 07:33:15 GMT
582
787
 
583
788
  ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.40)
584
789
 
585
- Wed, 26 May 2021 07:35:43 GMT
790
+ Wed, 26 May 2021 07:35:43 GMT
586
791
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.39..@fluentui/react-avatar_v9.0.0-alpha.40)
587
792
 
588
793
  ### Changes
@@ -591,7 +796,7 @@ Wed, 26 May 2021 07:35:43 GMT
591
796
 
592
797
  ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.39)
593
798
 
594
- Fri, 21 May 2021 07:34:54 GMT
799
+ Fri, 21 May 2021 07:34:54 GMT
595
800
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.38..@fluentui/react-avatar_v9.0.0-alpha.39)
596
801
 
597
802
  ### Changes
@@ -600,7 +805,7 @@ Fri, 21 May 2021 07:34:54 GMT
600
805
 
601
806
  ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.38)
602
807
 
603
- Thu, 20 May 2021 07:41:54 GMT
808
+ Thu, 20 May 2021 07:41:54 GMT
604
809
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.37..@fluentui/react-avatar_v9.0.0-alpha.38)
605
810
 
606
811
  ### Patches
@@ -615,7 +820,7 @@ Thu, 20 May 2021 07:41:54 GMT
615
820
 
616
821
  ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.37)
617
822
 
618
- Wed, 19 May 2021 07:34:20 GMT
823
+ Wed, 19 May 2021 07:34:20 GMT
619
824
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.36..@fluentui/react-avatar_v9.0.0-alpha.37)
620
825
 
621
826
  ### Patches
@@ -628,7 +833,7 @@ Wed, 19 May 2021 07:34:20 GMT
628
833
 
629
834
  ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.36)
630
835
 
631
- Tue, 18 May 2021 07:34:38 GMT
836
+ Tue, 18 May 2021 07:34:38 GMT
632
837
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.35..@fluentui/react-avatar_v9.0.0-alpha.36)
633
838
 
634
839
  ### Changes
@@ -637,7 +842,7 @@ Tue, 18 May 2021 07:34:38 GMT
637
842
 
638
843
  ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.35)
639
844
 
640
- Thu, 13 May 2021 07:36:55 GMT
845
+ Thu, 13 May 2021 07:36:55 GMT
641
846
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.34..@fluentui/react-avatar_v9.0.0-alpha.35)
642
847
 
643
848
  ### Changes
@@ -646,7 +851,7 @@ Thu, 13 May 2021 07:36:55 GMT
646
851
 
647
852
  ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.34)
648
853
 
649
- Wed, 12 May 2021 07:36:20 GMT
854
+ Wed, 12 May 2021 07:36:20 GMT
650
855
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.33..@fluentui/react-avatar_v9.0.0-alpha.34)
651
856
 
652
857
  ### Changes
@@ -655,7 +860,7 @@ Wed, 12 May 2021 07:36:20 GMT
655
860
 
656
861
  ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.33)
657
862
 
658
- Mon, 10 May 2021 07:36:07 GMT
863
+ Mon, 10 May 2021 07:36:07 GMT
659
864
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.32..@fluentui/react-avatar_v9.0.0-alpha.33)
660
865
 
661
866
  ### Changes
@@ -664,7 +869,7 @@ Mon, 10 May 2021 07:36:07 GMT
664
869
 
665
870
  ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.32)
666
871
 
667
- Wed, 05 May 2021 07:36:50 GMT
872
+ Wed, 05 May 2021 07:36:50 GMT
668
873
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.31..@fluentui/react-avatar_v9.0.0-alpha.32)
669
874
 
670
875
  ### Changes
@@ -673,7 +878,7 @@ Wed, 05 May 2021 07:36:50 GMT
673
878
 
674
879
  ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.31)
675
880
 
676
- Mon, 03 May 2021 07:45:19 GMT
881
+ Mon, 03 May 2021 07:45:19 GMT
677
882
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.30..@fluentui/react-avatar_v9.0.0-alpha.31)
678
883
 
679
884
  ### Changes
@@ -682,7 +887,7 @@ Mon, 03 May 2021 07:45:19 GMT
682
887
 
683
888
  ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.30)
684
889
 
685
- Fri, 30 Apr 2021 07:42:23 GMT
890
+ Fri, 30 Apr 2021 07:42:23 GMT
686
891
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.29..@fluentui/react-avatar_v9.0.0-alpha.30)
687
892
 
688
893
  ### Patches
@@ -697,7 +902,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
697
902
 
698
903
  ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.29)
699
904
 
700
- Tue, 27 Apr 2021 07:34:03 GMT
905
+ Tue, 27 Apr 2021 07:34:03 GMT
701
906
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.28..@fluentui/react-avatar_v9.0.0-alpha.29)
702
907
 
703
908
  ### Changes
@@ -706,7 +911,7 @@ Tue, 27 Apr 2021 07:34:03 GMT
706
911
 
707
912
  ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.28)
708
913
 
709
- Mon, 26 Apr 2021 07:34:31 GMT
914
+ Mon, 26 Apr 2021 07:34:31 GMT
710
915
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.27..@fluentui/react-avatar_v9.0.0-alpha.28)
711
916
 
712
917
  ### Changes
@@ -715,7 +920,7 @@ Mon, 26 Apr 2021 07:34:31 GMT
715
920
 
716
921
  ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.27)
717
922
 
718
- Fri, 23 Apr 2021 07:37:10 GMT
923
+ Fri, 23 Apr 2021 07:37:10 GMT
719
924
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.26..@fluentui/react-avatar_v9.0.0-alpha.27)
720
925
 
721
926
  ### Patches
@@ -730,7 +935,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
730
935
 
731
936
  ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.26)
732
937
 
733
- Thu, 22 Apr 2021 07:33:28 GMT
938
+ Thu, 22 Apr 2021 07:33:28 GMT
734
939
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.25..@fluentui/react-avatar_v9.0.0-alpha.26)
735
940
 
736
941
  ### Changes
@@ -739,7 +944,7 @@ Thu, 22 Apr 2021 07:33:28 GMT
739
944
 
740
945
  ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.25)
741
946
 
742
- Wed, 21 Apr 2021 07:31:50 GMT
947
+ Wed, 21 Apr 2021 07:31:50 GMT
743
948
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.24..@fluentui/react-avatar_v9.0.0-alpha.25)
744
949
 
745
950
  ### Changes
@@ -748,7 +953,7 @@ Wed, 21 Apr 2021 07:31:50 GMT
748
953
 
749
954
  ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.24)
750
955
 
751
- Tue, 20 Apr 2021 07:31:35 GMT
956
+ Tue, 20 Apr 2021 07:31:35 GMT
752
957
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.23..@fluentui/react-avatar_v9.0.0-alpha.24)
753
958
 
754
959
  ### Changes
@@ -757,7 +962,7 @@ Tue, 20 Apr 2021 07:31:35 GMT
757
962
 
758
963
  ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.23)
759
964
 
760
- Fri, 16 Apr 2021 18:08:21 GMT
965
+ Fri, 16 Apr 2021 18:08:21 GMT
761
966
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.22..@fluentui/react-avatar_v9.0.0-alpha.23)
762
967
 
763
968
  ### Changes
@@ -766,7 +971,7 @@ Fri, 16 Apr 2021 18:08:21 GMT
766
971
 
767
972
  ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.22)
768
973
 
769
- Wed, 14 Apr 2021 07:34:12 GMT
974
+ Wed, 14 Apr 2021 07:34:12 GMT
770
975
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.21..@fluentui/react-avatar_v9.0.0-alpha.22)
771
976
 
772
977
  ### Changes
@@ -775,7 +980,7 @@ Wed, 14 Apr 2021 07:34:12 GMT
775
980
 
776
981
  ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.21)
777
982
 
778
- Fri, 09 Apr 2021 07:31:06 GMT
983
+ Fri, 09 Apr 2021 07:31:06 GMT
779
984
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.20..@fluentui/react-avatar_v9.0.0-alpha.21)
780
985
 
781
986
  ### Changes
@@ -784,7 +989,7 @@ Fri, 09 Apr 2021 07:31:06 GMT
784
989
 
785
990
  ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.20)
786
991
 
787
- Thu, 08 Apr 2021 07:33:06 GMT
992
+ Thu, 08 Apr 2021 07:33:06 GMT
788
993
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.19..@fluentui/react-avatar_v9.0.0-alpha.20)
789
994
 
790
995
  ### Changes
@@ -793,7 +998,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
793
998
 
794
999
  ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.19)
795
1000
 
796
- Thu, 01 Apr 2021 20:13:37 GMT
1001
+ Thu, 01 Apr 2021 20:13:37 GMT
797
1002
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.18..@fluentui/react-avatar_v9.0.0-alpha.19)
798
1003
 
799
1004
  ### Changes
@@ -802,7 +1007,7 @@ Thu, 01 Apr 2021 20:13:37 GMT
802
1007
 
803
1008
  ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.18)
804
1009
 
805
- Wed, 31 Mar 2021 00:53:43 GMT
1010
+ Wed, 31 Mar 2021 00:53:43 GMT
806
1011
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.17..@fluentui/react-avatar_v9.0.0-alpha.18)
807
1012
 
808
1013
  ### Patches
@@ -818,7 +1023,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
818
1023
 
819
1024
  ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.17)
820
1025
 
821
- Tue, 30 Mar 2021 07:34:45 GMT
1026
+ Tue, 30 Mar 2021 07:34:45 GMT
822
1027
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.16..@fluentui/react-avatar_v9.0.0-alpha.17)
823
1028
 
824
1029
  ### Changes
@@ -827,7 +1032,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
827
1032
 
828
1033
  ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.16)
829
1034
 
830
- Fri, 26 Mar 2021 07:32:34 GMT
1035
+ Fri, 26 Mar 2021 07:32:34 GMT
831
1036
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.15..@fluentui/react-avatar_v9.0.0-alpha.16)
832
1037
 
833
1038
  ### Changes
@@ -836,7 +1041,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
836
1041
 
837
1042
  ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.15)
838
1043
 
839
- Thu, 25 Mar 2021 07:33:24 GMT
1044
+ Thu, 25 Mar 2021 07:33:24 GMT
840
1045
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.14..@fluentui/react-avatar_v9.0.0-alpha.15)
841
1046
 
842
1047
  ### Changes
@@ -845,7 +1050,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
845
1050
 
846
1051
  ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.14)
847
1052
 
848
- Wed, 24 Mar 2021 07:32:21 GMT
1053
+ Wed, 24 Mar 2021 07:32:21 GMT
849
1054
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.13..@fluentui/react-avatar_v9.0.0-alpha.14)
850
1055
 
851
1056
  ### Changes
@@ -854,7 +1059,7 @@ Wed, 24 Mar 2021 07:32:21 GMT
854
1059
 
855
1060
  ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.13)
856
1061
 
857
- Tue, 23 Mar 2021 07:31:43 GMT
1062
+ Tue, 23 Mar 2021 07:31:43 GMT
858
1063
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.12..@fluentui/react-avatar_v9.0.0-alpha.13)
859
1064
 
860
1065
  ### Changes
@@ -863,7 +1068,7 @@ Tue, 23 Mar 2021 07:31:43 GMT
863
1068
 
864
1069
  ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.12)
865
1070
 
866
- Thu, 18 Mar 2021 20:15:34 GMT
1071
+ Thu, 18 Mar 2021 20:15:34 GMT
867
1072
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.11..@fluentui/react-avatar_v9.0.0-alpha.12)
868
1073
 
869
1074
  ### Changes
@@ -872,7 +1077,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
872
1077
 
873
1078
  ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.11)
874
1079
 
875
- Tue, 16 Mar 2021 07:32:44 GMT
1080
+ Tue, 16 Mar 2021 07:32:44 GMT
876
1081
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.10..@fluentui/react-avatar_v9.0.0-alpha.11)
877
1082
 
878
1083
  ### Patches
@@ -881,7 +1086,7 @@ Tue, 16 Mar 2021 07:32:44 GMT
881
1086
 
882
1087
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.10)
883
1088
 
884
- Mon, 15 Mar 2021 07:36:20 GMT
1089
+ Mon, 15 Mar 2021 07:36:20 GMT
885
1090
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.9..@fluentui/react-avatar_v9.0.0-alpha.10)
886
1091
 
887
1092
  ### Changes
@@ -890,7 +1095,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
890
1095
 
891
1096
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.9)
892
1097
 
893
- Fri, 12 Mar 2021 20:04:27 GMT
1098
+ Fri, 12 Mar 2021 20:04:27 GMT
894
1099
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.8..@fluentui/react-avatar_v9.0.0-alpha.9)
895
1100
 
896
1101
  ### Patches
@@ -903,7 +1108,7 @@ Fri, 12 Mar 2021 20:04:27 GMT
903
1108
 
904
1109
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.8)
905
1110
 
906
- Wed, 10 Mar 2021 07:34:39 GMT
1111
+ Wed, 10 Mar 2021 07:34:39 GMT
907
1112
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.7..@fluentui/react-avatar_v9.0.0-alpha.8)
908
1113
 
909
1114
  ### Changes
@@ -912,7 +1117,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
912
1117
 
913
1118
  ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.7)
914
1119
 
915
- Fri, 05 Mar 2021 20:30:59 GMT
1120
+ Fri, 05 Mar 2021 20:30:59 GMT
916
1121
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.6..@fluentui/react-avatar_v9.0.0-alpha.7)
917
1122
 
918
1123
  ### Changes
@@ -921,7 +1126,7 @@ Fri, 05 Mar 2021 20:30:59 GMT
921
1126
 
922
1127
  ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.6)
923
1128
 
924
- Wed, 03 Mar 2021 00:10:09 GMT
1129
+ Wed, 03 Mar 2021 00:10:09 GMT
925
1130
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.5..@fluentui/react-avatar_v9.0.0-alpha.6)
926
1131
 
927
1132
  ### Patches
@@ -934,7 +1139,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
934
1139
 
935
1140
  ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.5)
936
1141
 
937
- Tue, 02 Mar 2021 07:24:27 GMT
1142
+ Tue, 02 Mar 2021 07:24:27 GMT
938
1143
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.4..@fluentui/react-avatar_v9.0.0-alpha.5)
939
1144
 
940
1145
  ### Changes
@@ -944,7 +1149,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
944
1149
 
945
1150
  ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.4)
946
1151
 
947
- Fri, 26 Feb 2021 01:16:27 GMT
1152
+ Fri, 26 Feb 2021 01:16:27 GMT
948
1153
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.3..@fluentui/react-avatar_v9.0.0-alpha.4)
949
1154
 
950
1155
  ### Patches
@@ -962,7 +1167,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
962
1167
 
963
1168
  ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.3)
964
1169
 
965
- Thu, 25 Feb 2021 20:16:39 GMT
1170
+ Thu, 25 Feb 2021 20:16:39 GMT
966
1171
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.2..@fluentui/react-avatar_v9.0.0-alpha.3)
967
1172
 
968
1173
  ### Changes
@@ -971,7 +1176,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
971
1176
 
972
1177
  ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.2)
973
1178
 
974
- Thu, 25 Feb 2021 01:15:27 GMT
1179
+ Thu, 25 Feb 2021 01:15:27 GMT
975
1180
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.1..@fluentui/react-avatar_v9.0.0-alpha.2)
976
1181
 
977
1182
  ### Patches
@@ -980,7 +1185,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
980
1185
 
981
1186
  ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.1)
982
1187
 
983
- Wed, 24 Feb 2021 00:05:29 GMT
1188
+ Wed, 24 Feb 2021 00:05:29 GMT
984
1189
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.12.0..@fluentui/react-avatar_v9.0.0-alpha.1)
985
1190
 
986
1191
  ### Changes
@@ -991,7 +1196,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
991
1196
 
992
1197
  ## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.12.0)
993
1198
 
994
- Mon, 22 Feb 2021 12:26:22 GMT
1199
+ Mon, 22 Feb 2021 12:26:22 GMT
995
1200
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.11.1..@fluentui/react-avatar_v0.12.0)
996
1201
 
997
1202
  ### Minor changes
@@ -1011,7 +1216,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
1011
1216
 
1012
1217
  ## [0.11.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.11.1)
1013
1218
 
1014
- Thu, 18 Feb 2021 19:38:50 GMT
1219
+ Thu, 18 Feb 2021 19:38:50 GMT
1015
1220
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.11.0..@fluentui/react-avatar_v0.11.1)
1016
1221
 
1017
1222
  ### Patches
@@ -1028,7 +1233,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
1028
1233
 
1029
1234
  ## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.11.0)
1030
1235
 
1031
- Thu, 18 Feb 2021 12:27:34 GMT
1236
+ Thu, 18 Feb 2021 12:27:34 GMT
1032
1237
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.10.1..@fluentui/react-avatar_v0.11.0)
1033
1238
 
1034
1239
  ### Minor changes
@@ -1053,7 +1258,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
1053
1258
 
1054
1259
  ## [0.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.10.1)
1055
1260
 
1056
- Wed, 17 Feb 2021 12:21:39 GMT
1261
+ Wed, 17 Feb 2021 12:21:39 GMT
1057
1262
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.10.0..@fluentui/react-avatar_v0.10.1)
1058
1263
 
1059
1264
  ### Patches
@@ -1062,7 +1267,7 @@ Wed, 17 Feb 2021 12:21:39 GMT
1062
1267
 
1063
1268
  ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.10.0)
1064
1269
 
1065
- Mon, 15 Feb 2021 12:22:00 GMT
1270
+ Mon, 15 Feb 2021 12:22:00 GMT
1066
1271
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.10.0..@fluentui/react-avatar_v0.10.0)
1067
1272
 
1068
1273
  ### Changes
@@ -1075,7 +1280,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
1075
1280
 
1076
1281
  ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.10.0)
1077
1282
 
1078
- Fri, 12 Feb 2021 12:26:20 GMT
1283
+ Fri, 12 Feb 2021 12:26:20 GMT
1079
1284
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.1..@fluentui/react-avatar_v0.10.0)
1080
1285
 
1081
1286
  ### Minor changes
@@ -1092,7 +1297,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
1092
1297
 
1093
1298
  ## [0.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.1)
1094
1299
 
1095
- Thu, 11 Feb 2021 00:58:10 GMT
1300
+ Thu, 11 Feb 2021 00:58:10 GMT
1096
1301
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.1..@fluentui/react-avatar_v0.9.1)
1097
1302
 
1098
1303
  ### Changes
@@ -1105,7 +1310,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
1105
1310
 
1106
1311
  ## [0.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.1)
1107
1312
 
1108
- Tue, 09 Feb 2021 00:56:52 GMT
1313
+ Tue, 09 Feb 2021 00:56:52 GMT
1109
1314
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.0..@fluentui/react-avatar_v0.9.1)
1110
1315
 
1111
1316
  ### Patches
@@ -1118,7 +1323,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
1118
1323
 
1119
1324
  ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.0)
1120
1325
 
1121
- Mon, 08 Feb 2021 12:23:08 GMT
1326
+ Mon, 08 Feb 2021 12:23:08 GMT
1122
1327
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.0..@fluentui/react-avatar_v0.9.0)
1123
1328
 
1124
1329
  ### Changes
@@ -1127,7 +1332,7 @@ Mon, 08 Feb 2021 12:23:08 GMT
1127
1332
 
1128
1333
  ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.0)
1129
1334
 
1130
- Wed, 03 Feb 2021 05:51:40 GMT
1335
+ Wed, 03 Feb 2021 05:51:40 GMT
1131
1336
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.3..@fluentui/react-avatar_v0.9.0)
1132
1337
 
1133
1338
  ### Minor changes
@@ -1136,7 +1341,7 @@ Wed, 03 Feb 2021 05:51:40 GMT
1136
1341
 
1137
1342
  ## [0.8.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.3)
1138
1343
 
1139
- Tue, 02 Feb 2021 12:21:54 GMT
1344
+ Tue, 02 Feb 2021 12:21:54 GMT
1140
1345
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2..@fluentui/react-avatar_v0.8.3)
1141
1346
 
1142
1347
  ### Patches
@@ -1145,7 +1350,7 @@ Tue, 02 Feb 2021 12:21:54 GMT
1145
1350
 
1146
1351
  ## [0.8.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2)
1147
1352
 
1148
- Mon, 01 Feb 2021 12:23:48 GMT
1353
+ Mon, 01 Feb 2021 12:23:48 GMT
1149
1354
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-18..@fluentui/react-avatar_v0.8.2)
1150
1355
 
1151
1356
  ### Patches
@@ -1155,7 +1360,7 @@ Mon, 01 Feb 2021 12:23:48 GMT
1155
1360
 
1156
1361
  ## [0.8.2-18](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-18)
1157
1362
 
1158
- Fri, 29 Jan 2021 12:21:00 GMT
1363
+ Fri, 29 Jan 2021 12:21:00 GMT
1159
1364
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-17..@fluentui/react-avatar_v0.8.2-18)
1160
1365
 
1161
1366
  ### Changes
@@ -1164,7 +1369,7 @@ Fri, 29 Jan 2021 12:21:00 GMT
1164
1369
 
1165
1370
  ## [0.8.2-17](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-17)
1166
1371
 
1167
- Thu, 28 Jan 2021 12:25:56 GMT
1372
+ Thu, 28 Jan 2021 12:25:56 GMT
1168
1373
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-15..@fluentui/react-avatar_v0.8.2-17)
1169
1374
 
1170
1375
  ### Changes
@@ -1174,16 +1379,16 @@ Thu, 28 Jan 2021 12:25:56 GMT
1174
1379
 
1175
1380
  ## [0.8.2-15](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-15)
1176
1381
 
1177
- Thu, 21 Jan 2021 12:36:12 GMT
1382
+ Thu, 21 Jan 2021 12:36:12 GMT
1178
1383
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-12..@fluentui/react-avatar_v0.8.2-15)
1179
1384
 
1180
1385
  ### Changes
1181
1386
 
1182
- - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1387
+ - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1183
1388
 
1184
1389
  ## [0.8.2-12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-12)
1185
1390
 
1186
- Tue, 08 Dec 2020 12:28:09 GMT
1391
+ Tue, 08 Dec 2020 12:28:09 GMT
1187
1392
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-7..@fluentui/react-avatar_v0.8.2-12)
1188
1393
 
1189
1394
  ### Changes
@@ -1192,7 +1397,7 @@ Tue, 08 Dec 2020 12:28:09 GMT
1192
1397
 
1193
1398
  ## [0.8.2-7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-7)
1194
1399
 
1195
- Wed, 18 Nov 2020 12:30:07 GMT
1400
+ Wed, 18 Nov 2020 12:30:07 GMT
1196
1401
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.1..@fluentui/react-avatar_v0.8.2-7)
1197
1402
 
1198
1403
  ### Changes
@@ -1201,7 +1406,7 @@ Wed, 18 Nov 2020 12:30:07 GMT
1201
1406
 
1202
1407
  ## [0.8.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.1)
1203
1408
 
1204
- Fri, 23 Oct 2020 23:25:40 GMT
1409
+ Fri, 23 Oct 2020 23:25:40 GMT
1205
1410
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.0..@fluentui/react-avatar_v0.8.1)
1206
1411
 
1207
1412
  ### Patches
@@ -1210,7 +1415,7 @@ Fri, 23 Oct 2020 23:25:40 GMT
1210
1415
 
1211
1416
  ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.0)
1212
1417
 
1213
- Fri, 23 Oct 2020 03:26:15 GMT
1418
+ Fri, 23 Oct 2020 03:26:15 GMT
1214
1419
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.6.4..@fluentui/react-avatar_v0.8.0)
1215
1420
 
1216
1421
  ### Minor changes
@@ -1227,7 +1432,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
1227
1432
 
1228
1433
  ## [0.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.6.4)
1229
1434
 
1230
- Fri, 25 Sep 2020 12:25:17 GMT
1435
+ Fri, 25 Sep 2020 12:25:17 GMT
1231
1436
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.6.0..@fluentui/react-avatar_v0.6.4)
1232
1437
 
1233
1438
  ### Patches
@@ -1237,7 +1442,7 @@ Fri, 25 Sep 2020 12:25:17 GMT
1237
1442
 
1238
1443
  ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.6.0)
1239
1444
 
1240
- Mon, 21 Sep 2020 12:22:29 GMT
1445
+ Mon, 21 Sep 2020 12:22:29 GMT
1241
1446
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.5.0..@fluentui/react-avatar_v0.6.0)
1242
1447
 
1243
1448
  ### Minor changes
@@ -1246,7 +1451,7 @@ Mon, 21 Sep 2020 12:22:29 GMT
1246
1451
 
1247
1452
  ## [0.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.5.0)
1248
1453
 
1249
- Tue, 15 Sep 2020 12:26:06 GMT
1454
+ Tue, 15 Sep 2020 12:26:06 GMT
1250
1455
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.4.0..@fluentui/react-avatar_v0.5.0)
1251
1456
 
1252
1457
  ### Minor changes
@@ -1255,7 +1460,7 @@ Tue, 15 Sep 2020 12:26:06 GMT
1255
1460
 
1256
1461
  ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.4.0)
1257
1462
 
1258
- Mon, 07 Sep 2020 12:26:26 GMT
1463
+ Mon, 07 Sep 2020 12:26:26 GMT
1259
1464
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.3.1..@fluentui/react-avatar_v0.4.0)
1260
1465
 
1261
1466
  ### Minor changes
@@ -1264,7 +1469,7 @@ Mon, 07 Sep 2020 12:26:26 GMT
1264
1469
 
1265
1470
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.3.1)
1266
1471
 
1267
- Mon, 31 Aug 2020 12:25:46 GMT
1472
+ Mon, 31 Aug 2020 12:25:46 GMT
1268
1473
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.1.1..@fluentui/react-avatar_v0.3.1)
1269
1474
 
1270
1475
  ### Patches