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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/CHANGELOG.json +794 -13
  2. package/CHANGELOG.md +324 -133
  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 +306 -0
  7. package/{lib → dist}/tsdoc-metadata.json +0 -0
  8. package/lib/Avatar.js.map +1 -1
  9. package/lib/AvatarGroup.js +2 -0
  10. package/lib/AvatarGroup.js.map +1 -0
  11. package/lib/AvatarGroupItem.js +2 -0
  12. package/lib/AvatarGroupItem.js.map +1 -0
  13. package/lib/components/Avatar/Avatar.js.map +1 -1
  14. package/lib/components/Avatar/Avatar.types.js.map +1 -1
  15. package/lib/components/Avatar/index.js.map +1 -1
  16. package/lib/components/Avatar/renderAvatar.js.map +1 -1
  17. package/lib/components/Avatar/useAvatar.js +7 -10
  18. package/lib/components/Avatar/useAvatar.js.map +1 -1
  19. package/lib/components/Avatar/useAvatarStyles.js +89 -74
  20. package/lib/components/Avatar/useAvatarStyles.js.map +1 -1
  21. package/lib/components/AvatarGroup/AvatarGroup.js +16 -0
  22. package/lib/components/AvatarGroup/AvatarGroup.js.map +1 -0
  23. package/lib/components/AvatarGroup/AvatarGroup.types.js +2 -0
  24. package/lib/components/AvatarGroup/AvatarGroup.types.js.map +1 -0
  25. package/lib/components/AvatarGroup/index.js +6 -0
  26. package/lib/components/AvatarGroup/index.js.map +1 -0
  27. package/lib/components/AvatarGroup/renderAvatarGroup.js +43 -0
  28. package/lib/components/AvatarGroup/renderAvatarGroup.js.map +1 -0
  29. package/lib/components/AvatarGroup/useAvatarGroup.js +91 -0
  30. package/lib/components/AvatarGroup/useAvatarGroup.js.map +1 -0
  31. package/lib/components/AvatarGroup/useAvatarGroupStyles.js +296 -0
  32. package/lib/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -0
  33. package/lib/components/AvatarGroupItem/AvatarGroupItem.js +16 -0
  34. package/lib/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
  35. package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js +2 -0
  36. package/lib/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
  37. package/lib/components/AvatarGroupItem/index.js +6 -0
  38. package/lib/components/AvatarGroupItem/index.js.map +1 -0
  39. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js +17 -0
  40. package/lib/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
  41. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js +70 -0
  42. package/lib/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
  43. package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js +356 -0
  44. package/lib/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
  45. package/lib/contexts/AvatarGroupContext.js +7 -0
  46. package/lib/contexts/AvatarGroupContext.js.map +1 -0
  47. package/lib/contexts/AvatarGroupContext.types.js +2 -0
  48. package/lib/contexts/AvatarGroupContext.types.js.map +1 -0
  49. package/lib/contexts/index.js +2 -0
  50. package/lib/contexts/index.js.map +1 -0
  51. package/lib/index.js +4 -2
  52. package/lib/index.js.map +1 -1
  53. package/lib/utils/getInitials.js +16 -12
  54. package/lib/utils/getInitials.js.map +1 -1
  55. package/lib/utils/index.js.map +1 -1
  56. package/lib-commonjs/Avatar.js.map +1 -1
  57. package/lib-commonjs/AvatarGroup.js +10 -0
  58. package/lib-commonjs/AvatarGroup.js.map +1 -0
  59. package/lib-commonjs/AvatarGroupItem.js +10 -0
  60. package/lib-commonjs/AvatarGroupItem.js.map +1 -0
  61. package/lib-commonjs/components/Avatar/Avatar.js.map +1 -1
  62. package/lib-commonjs/components/Avatar/Avatar.types.js.map +1 -1
  63. package/lib-commonjs/components/Avatar/index.js.map +1 -1
  64. package/lib-commonjs/components/Avatar/renderAvatar.js.map +1 -1
  65. package/lib-commonjs/components/Avatar/useAvatar.js +7 -10
  66. package/lib-commonjs/components/Avatar/useAvatar.js.map +1 -1
  67. package/lib-commonjs/components/Avatar/useAvatarStyles.js +91 -76
  68. package/lib-commonjs/components/Avatar/useAvatarStyles.js.map +1 -1
  69. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js +27 -0
  70. package/lib-commonjs/components/AvatarGroup/AvatarGroup.js.map +1 -0
  71. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js +6 -0
  72. package/lib-commonjs/components/AvatarGroup/AvatarGroup.types.js.map +1 -0
  73. package/lib-commonjs/components/AvatarGroup/index.js +18 -0
  74. package/lib-commonjs/components/AvatarGroup/index.js.map +1 -0
  75. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js +57 -0
  76. package/lib-commonjs/components/AvatarGroup/renderAvatarGroup.js.map +1 -0
  77. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js +105 -0
  78. package/lib-commonjs/components/AvatarGroup/useAvatarGroup.js.map +1 -0
  79. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js +310 -0
  80. package/lib-commonjs/components/AvatarGroup/useAvatarGroupStyles.js.map +1 -0
  81. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js +27 -0
  82. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.js.map +1 -0
  83. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js +6 -0
  84. package/lib-commonjs/components/AvatarGroupItem/AvatarGroupItem.types.js.map +1 -0
  85. package/lib-commonjs/components/AvatarGroupItem/index.js +18 -0
  86. package/lib-commonjs/components/AvatarGroupItem/index.js.map +1 -0
  87. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js +28 -0
  88. package/lib-commonjs/components/AvatarGroupItem/renderAvatarGroupItem.js.map +1 -0
  89. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js +84 -0
  90. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItem.js.map +1 -0
  91. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js +370 -0
  92. package/lib-commonjs/components/AvatarGroupItem/useAvatarGroupItemStyles.js.map +1 -0
  93. package/lib-commonjs/contexts/AvatarGroupContext.js +15 -0
  94. package/lib-commonjs/contexts/AvatarGroupContext.js.map +1 -0
  95. package/lib-commonjs/contexts/AvatarGroupContext.types.js +6 -0
  96. package/lib-commonjs/contexts/AvatarGroupContext.types.js.map +1 -0
  97. package/lib-commonjs/contexts/index.js +10 -0
  98. package/lib-commonjs/contexts/index.js.map +1 -0
  99. package/lib-commonjs/index.js +106 -3
  100. package/lib-commonjs/index.js.map +1 -1
  101. package/lib-commonjs/utils/getInitials.js +16 -12
  102. package/lib-commonjs/utils/getInitials.js.map +1 -1
  103. package/lib-commonjs/utils/index.js.map +1 -1
  104. package/package.json +26 -25
  105. package/dist/react-avatar.d.ts +0 -142
  106. package/lib/Avatar.d.ts +0 -1
  107. package/lib/components/Avatar/Avatar.d.ts +0 -3
  108. package/lib/components/Avatar/Avatar.types.d.ts +0 -107
  109. package/lib/components/Avatar/index.d.ts +0 -5
  110. package/lib/components/Avatar/renderAvatar.d.ts +0 -2
  111. package/lib/components/Avatar/useAvatar.d.ts +0 -3
  112. package/lib/components/Avatar/useAvatarStyles.d.ts +0 -3
  113. package/lib/index.d.ts +0 -2
  114. package/lib/utils/getInitials.d.ts +0 -14
  115. package/lib/utils/index.d.ts +0 -1
  116. package/lib-commonjs/Avatar.d.ts +0 -1
  117. package/lib-commonjs/components/Avatar/Avatar.d.ts +0 -3
  118. package/lib-commonjs/components/Avatar/Avatar.types.d.ts +0 -107
  119. package/lib-commonjs/components/Avatar/index.d.ts +0 -5
  120. package/lib-commonjs/components/Avatar/renderAvatar.d.ts +0 -2
  121. package/lib-commonjs/components/Avatar/useAvatar.d.ts +0 -3
  122. package/lib-commonjs/components/Avatar/useAvatarStyles.d.ts +0 -3
  123. package/lib-commonjs/index.d.ts +0 -2
  124. package/lib-commonjs/utils/getInitials.d.ts +0 -14
  125. package/lib-commonjs/utils/index.d.ts +0 -1
package/CHANGELOG.md CHANGED
@@ -1,26 +1,217 @@
1
1
  # Change Log - @fluentui/react-avatar
2
2
 
3
- This log was last generated on Tue, 15 Feb 2022 04:11:37 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 28 Jun 2022 04:31:29 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [0.0.0-nightlyfc5cfdc52420220215.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.0.0-nightlyfc5cfdc52420220215.1)
7
+ ## [0.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.0.0)
8
8
 
9
- Tue, 15 Feb 2022 04:11:37 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.1..@fluentui/react-avatar_v0.0.0-nightlyfc5cfdc52420220215.1)
9
+ Tue, 28 Jun 2022 04:31:29 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.13..@fluentui/react-avatar_v0.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 v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
16
+ - Bump @fluentui/react-context-selector to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
17
+ - Bump @fluentui/react-popover to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
18
+ - Bump @fluentui/react-shared-contexts to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
19
+ - Bump @fluentui/react-tabster to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
20
+ - Bump @fluentui/react-theme to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
21
+ - Bump @fluentui/react-tooltip to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
22
+ - Bump @fluentui/react-utilities to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
23
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220628-0417.1 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) 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
+
104
+ ## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.9)
105
+
106
+ Mon, 23 May 2022 12:14:00 GMT
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)
108
+
109
+ ### Changes
110
+
111
+ - Add support for size={16} to Avatar ([PR #23003](https://github.com/microsoft/fluentui/pull/23003) by behowell@microsoft.com)
112
+ - chore: Update Griffel to latest version ([PR #23029](https://github.com/microsoft/fluentui/pull/23029) by olfedias@microsoft.com)
113
+ - chore: Update Griffel to latest version ([PR #22894](https://github.com/microsoft/fluentui/pull/22894) by olfedias@microsoft.com)
114
+ - Moving Avatar stories to stories folder. ([PR #23047](https://github.com/microsoft/fluentui/pull/23047) by esteban.230@hotmail.com)
115
+ - Bump @fluentui/react-badge to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
116
+ - Bump @fluentui/react-button to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
117
+ - Bump @fluentui/react-popover to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
118
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
119
+ - Bump @fluentui/react-theme to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
120
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
121
+ - Bump @fluentui/react-utilities to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
122
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
123
+
124
+ ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.8)
125
+
126
+ Thu, 05 May 2022 18:26:29 GMT
127
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.7..@fluentui/react-avatar_v9.0.0-rc.8)
128
+
129
+ ### Changes
130
+
131
+ - feat: ship rolluped only dts ([PR #22823](https://github.com/microsoft/fluentui/pull/22823) by martinhochel@microsoft.com)
132
+ - Bump @fluentui/react-badge to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
133
+ - Bump @fluentui/react-button to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
134
+ - Bump @fluentui/react-popover to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
135
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
136
+ - Bump @fluentui/react-theme to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
137
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
138
+ - Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
139
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
140
+
141
+ ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.7)
142
+
143
+ Wed, 04 May 2022 13:26:37 GMT
144
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.6..@fluentui/react-avatar_v9.0.0-rc.7)
145
+
146
+ ### Changes
147
+
148
+ - Bump @fluentui/react-badge to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
149
+ - Bump @fluentui/react-button to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
150
+ - Bump @fluentui/react-popover to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
151
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
152
+ - Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
153
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
154
+ - Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
155
+
156
+ ## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.6)
157
+
158
+ Tue, 19 Apr 2022 19:17:08 GMT
159
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.5..@fluentui/react-avatar_v9.0.0-rc.6)
160
+
161
+ ### Changes
162
+
163
+ - Add static classnames to Avatar ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
164
+ - 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)
165
+ - Removing star exports. ([PR #22113](https://github.com/microsoft/fluentui/pull/22113) by Humberto.Morimoto@microsoft.com)
166
+ - 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)
167
+ - add missing dependencies ([PR #21924](https://github.com/microsoft/fluentui/pull/21924) by martinhochel@microsoft.com)
168
+ - chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
169
+ - Bump @fluentui/react-badge to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
170
+ - Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
171
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
172
+ - Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
173
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
174
+
175
+ ## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.5)
176
+
177
+ Fri, 04 Mar 2022 05:17:33 GMT
178
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.4..@fluentui/react-avatar_v9.0.0-rc.5)
179
+
180
+ ### Changes
181
+
182
+ - 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)
183
+ - Bump @fluentui/react-badge to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
184
+ - Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
185
+ - Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
186
+
187
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.4)
188
+
189
+ Tue, 01 Mar 2022 02:17:40 GMT
190
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.3..@fluentui/react-avatar_v9.0.0-rc.4)
191
+
192
+ ### Changes
193
+
194
+ - Bump @fluentui/react-badge to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
195
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
196
+
197
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.3)
198
+
199
+ Fri, 18 Feb 2022 13:35:28 GMT
200
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.1..@fluentui/react-avatar_v9.0.0-rc.3)
11
201
 
12
202
  ### Changes
13
203
 
14
- - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/911569f28daa07a66ee59e1d8b7cfaf6f86051e9) by email not defined)
15
204
  - 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)
16
- - Bump @fluentui/react-badge to v0.0.0-nightlyfc5cfdc52420220215.1 ([commit](https://github.com/microsoft/fluentui/commit/911569f28daa07a66ee59e1d8b7cfaf6f86051e9) by beachball)
17
- - Bump @fluentui/react-theme to v0.0.0-nightlyfc5cfdc52420220215.1 ([commit](https://github.com/microsoft/fluentui/commit/911569f28daa07a66ee59e1d8b7cfaf6f86051e9) by beachball)
18
- - Bump @fluentui/react-utilities to v0.0.0-nightlyfc5cfdc52420220215.1 ([commit](https://github.com/microsoft/fluentui/commit/911569f28daa07a66ee59e1d8b7cfaf6f86051e9) by beachball)
19
- - Bump @fluentui/react-conformance-griffel to v0.0.0-nightlyfc5cfdc52420220215.1 ([commit](https://github.com/microsoft/fluentui/commit/911569f28daa07a66ee59e1d8b7cfaf6f86051e9) by beachball)
205
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
206
+ - Update Avatar SPEC.md and MIGRATION.md ([PR #21702](https://github.com/microsoft/fluentui/pull/21702) by behowell@microsoft.com)
207
+ - Bump @fluentui/react-badge to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
208
+ - Bump @fluentui/react-theme to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
209
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
210
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
20
211
 
21
212
  ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.1)
22
213
 
23
- Thu, 10 Feb 2022 08:52:19 GMT
214
+ Thu, 10 Feb 2022 08:52:19 GMT
24
215
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.4..@fluentui/react-avatar_v9.0.0-rc.1)
25
216
 
26
217
  ### Changes
@@ -30,7 +221,7 @@ Thu, 10 Feb 2022 08:52:19 GMT
30
221
  - update @fluentui/react-icons package ([PR #21498](https://github.com/microsoft/fluentui/pull/21498) by olfedias@microsoft.com)
31
222
  - Replace make-styles packages with griffel equivalents. ([PR #21439](https://github.com/microsoft/fluentui/pull/21439) by olfedias@microsoft.com)
32
223
  - Update documentation stories ([PR #21519](https://github.com/microsoft/fluentui/pull/21519) by behowell@microsoft.com)
33
- - 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)
224
+ - 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)
34
225
  - Export the default getInitials implementation ([PR #21445](https://github.com/microsoft/fluentui/pull/21445) by behowell@microsoft.com)
35
226
  - (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
36
227
  - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
@@ -53,7 +244,7 @@ Thu, 10 Feb 2022 08:52:19 GMT
53
244
 
54
245
  ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.4)
55
246
 
56
- Thu, 25 Nov 2021 08:34:10 GMT
247
+ Thu, 25 Nov 2021 08:34:10 GMT
57
248
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.3..@fluentui/react-avatar_v9.0.0-beta.4)
58
249
 
59
250
  ### Changes
@@ -69,7 +260,7 @@ Thu, 25 Nov 2021 08:34:10 GMT
69
260
 
70
261
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.3)
71
262
 
72
- Fri, 12 Nov 2021 13:25:14 GMT
263
+ Fri, 12 Nov 2021 13:25:14 GMT
73
264
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.2..@fluentui/react-avatar_v9.0.0-beta.3)
74
265
 
75
266
  ### Changes
@@ -86,7 +277,7 @@ Fri, 12 Nov 2021 13:25:14 GMT
86
277
 
87
278
  ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.2)
88
279
 
89
- Wed, 27 Oct 2021 12:14:13 GMT
280
+ Wed, 27 Oct 2021 12:14:13 GMT
90
281
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.1..@fluentui/react-avatar_v9.0.0-beta.2)
91
282
 
92
283
  ### Changes
@@ -103,7 +294,7 @@ Wed, 27 Oct 2021 12:14:13 GMT
103
294
 
104
295
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.1)
105
296
 
106
- Wed, 06 Oct 2021 10:37:22 GMT
297
+ Wed, 06 Oct 2021 10:37:22 GMT
107
298
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.93..@fluentui/react-avatar_v9.0.0-beta.1)
108
299
 
109
300
  ### Changes
@@ -119,7 +310,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
119
310
 
120
311
  ## [9.0.0-alpha.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.93)
121
312
 
122
- Tue, 05 Oct 2021 12:47:58 GMT
313
+ Tue, 05 Oct 2021 12:47:58 GMT
123
314
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.92..@fluentui/react-avatar_v9.0.0-alpha.93)
124
315
 
125
316
  ### Changes
@@ -132,13 +323,13 @@ Tue, 05 Oct 2021 12:47:58 GMT
132
323
 
133
324
  ## [9.0.0-alpha.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.92)
134
325
 
135
- Tue, 05 Oct 2021 09:28:07 GMT
326
+ Tue, 05 Oct 2021 09:28:07 GMT
136
327
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.91..@fluentui/react-avatar_v9.0.0-alpha.92)
137
328
 
138
329
  ### Changes
139
330
 
140
331
  - Adds ForwardRefComponent to components declaration ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
141
- - Fix Avatar stories after #19449 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
332
+ - Fix Avatar stories after #19449 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
142
333
  - Bump @fluentui/react-badge to v9.0.0-alpha.91 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
143
334
  - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
144
335
  - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
@@ -148,7 +339,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
148
339
 
149
340
  ## [9.0.0-alpha.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.91)
150
341
 
151
- Mon, 04 Oct 2021 08:03:04 GMT
342
+ Mon, 04 Oct 2021 08:03:04 GMT
152
343
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.90..@fluentui/react-avatar_v9.0.0-alpha.91)
153
344
 
154
345
  ### Changes
@@ -157,7 +348,7 @@ Mon, 04 Oct 2021 08:03:04 GMT
157
348
 
158
349
  ## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.90)
159
350
 
160
- Fri, 01 Oct 2021 14:13:08 GMT
351
+ Fri, 01 Oct 2021 14:13:08 GMT
161
352
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.88..@fluentui/react-avatar_v9.0.0-alpha.90)
162
353
 
163
354
  ### Changes
@@ -173,7 +364,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
173
364
 
174
365
  ## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.88)
175
366
 
176
- Wed, 29 Sep 2021 08:06:11 GMT
367
+ Wed, 29 Sep 2021 08:06:11 GMT
177
368
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.87..@fluentui/react-avatar_v9.0.0-alpha.88)
178
369
 
179
370
  ### Changes
@@ -187,7 +378,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
187
378
 
188
379
  ## [9.0.0-alpha.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.87)
189
380
 
190
- Mon, 27 Sep 2021 08:06:00 GMT
381
+ Mon, 27 Sep 2021 08:06:00 GMT
191
382
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.86..@fluentui/react-avatar_v9.0.0-alpha.87)
192
383
 
193
384
  ### Changes
@@ -202,7 +393,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
202
393
 
203
394
  ## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.86)
204
395
 
205
- Fri, 24 Sep 2021 09:17:17 GMT
396
+ Fri, 24 Sep 2021 09:17:17 GMT
206
397
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.85..@fluentui/react-avatar_v9.0.0-alpha.86)
207
398
 
208
399
  ### Changes
@@ -217,7 +408,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
217
408
 
218
409
  ## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.85)
219
410
 
220
- Thu, 23 Sep 2021 08:21:34 GMT
411
+ Thu, 23 Sep 2021 08:21:34 GMT
221
412
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.84..@fluentui/react-avatar_v9.0.0-alpha.85)
222
413
 
223
414
  ### Changes
@@ -232,7 +423,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
232
423
 
233
424
  ## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.84)
234
425
 
235
- Wed, 22 Sep 2021 10:10:07 GMT
426
+ Wed, 22 Sep 2021 10:10:07 GMT
236
427
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.83..@fluentui/react-avatar_v9.0.0-alpha.84)
237
428
 
238
429
  ### Changes
@@ -247,7 +438,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
247
438
 
248
439
  ## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.83)
249
440
 
250
- Tue, 21 Sep 2021 07:42:34 GMT
441
+ Tue, 21 Sep 2021 07:42:34 GMT
251
442
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.82..@fluentui/react-avatar_v9.0.0-alpha.83)
252
443
 
253
444
  ### Changes
@@ -262,7 +453,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
262
453
 
263
454
  ## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.82)
264
455
 
265
- Mon, 20 Sep 2021 07:36:26 GMT
456
+ Mon, 20 Sep 2021 07:36:26 GMT
266
457
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.81..@fluentui/react-avatar_v9.0.0-alpha.82)
267
458
 
268
459
  ### Changes
@@ -271,7 +462,7 @@ Mon, 20 Sep 2021 07:36:26 GMT
271
462
 
272
463
  ## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.81)
273
464
 
274
- Fri, 17 Sep 2021 07:35:26 GMT
465
+ Fri, 17 Sep 2021 07:35:26 GMT
275
466
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.80..@fluentui/react-avatar_v9.0.0-alpha.81)
276
467
 
277
468
  ### Changes
@@ -280,7 +471,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
280
471
 
281
472
  ## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.80)
282
473
 
283
- Thu, 16 Sep 2021 07:38:39 GMT
474
+ Thu, 16 Sep 2021 07:38:39 GMT
284
475
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.79..@fluentui/react-avatar_v9.0.0-alpha.80)
285
476
 
286
477
  ### Changes
@@ -289,7 +480,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
289
480
 
290
481
  ## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.79)
291
482
 
292
- Tue, 14 Sep 2021 20:09:02 GMT
483
+ Tue, 14 Sep 2021 20:09:02 GMT
293
484
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.78..@fluentui/react-avatar_v9.0.0-alpha.79)
294
485
 
295
486
  ### Changes
@@ -298,7 +489,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
298
489
 
299
490
  ## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.78)
300
491
 
301
- Fri, 10 Sep 2021 16:31:53 GMT
492
+ Fri, 10 Sep 2021 16:31:53 GMT
302
493
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.77..@fluentui/react-avatar_v9.0.0-alpha.78)
303
494
 
304
495
  ### Changes
@@ -308,7 +499,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
308
499
 
309
500
  ## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.77)
310
501
 
311
- Fri, 10 Sep 2021 07:39:51 GMT
502
+ Fri, 10 Sep 2021 07:39:51 GMT
312
503
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.76..@fluentui/react-avatar_v9.0.0-alpha.77)
313
504
 
314
505
  ### Changes
@@ -317,7 +508,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
317
508
 
318
509
  ## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.76)
319
510
 
320
- Mon, 06 Sep 2021 07:34:53 GMT
511
+ Mon, 06 Sep 2021 07:34:53 GMT
321
512
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.75..@fluentui/react-avatar_v9.0.0-alpha.76)
322
513
 
323
514
  ### Changes
@@ -326,7 +517,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
326
517
 
327
518
  ## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.75)
328
519
 
329
- Thu, 02 Sep 2021 07:36:46 GMT
520
+ Thu, 02 Sep 2021 07:36:46 GMT
330
521
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.74..@fluentui/react-avatar_v9.0.0-alpha.75)
331
522
 
332
523
  ### Patches
@@ -339,7 +530,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
339
530
 
340
531
  ## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.74)
341
532
 
342
- Wed, 01 Sep 2021 07:39:56 GMT
533
+ Wed, 01 Sep 2021 07:39:56 GMT
343
534
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.73..@fluentui/react-avatar_v9.0.0-alpha.74)
344
535
 
345
536
  ### Changes
@@ -348,7 +539,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
348
539
 
349
540
  ## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.73)
350
541
 
351
- Tue, 31 Aug 2021 07:37:47 GMT
542
+ Tue, 31 Aug 2021 07:37:47 GMT
352
543
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.72..@fluentui/react-avatar_v9.0.0-alpha.73)
353
544
 
354
545
  ### Changes
@@ -357,7 +548,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
357
548
 
358
549
  ## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.72)
359
550
 
360
- Mon, 30 Aug 2021 07:35:05 GMT
551
+ Mon, 30 Aug 2021 07:35:05 GMT
361
552
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.71..@fluentui/react-avatar_v9.0.0-alpha.72)
362
553
 
363
554
  ### Changes
@@ -366,7 +557,7 @@ Mon, 30 Aug 2021 07:35:05 GMT
366
557
 
367
558
  ## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.71)
368
559
 
369
- Fri, 27 Aug 2021 07:33:32 GMT
560
+ Fri, 27 Aug 2021 07:33:32 GMT
370
561
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.70..@fluentui/react-avatar_v9.0.0-alpha.71)
371
562
 
372
563
  ### Changes
@@ -375,7 +566,7 @@ Fri, 27 Aug 2021 07:33:32 GMT
375
566
 
376
567
  ## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.70)
377
568
 
378
- Thu, 26 Aug 2021 07:35:43 GMT
569
+ Thu, 26 Aug 2021 07:35:43 GMT
379
570
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.69..@fluentui/react-avatar_v9.0.0-alpha.70)
380
571
 
381
572
  ### Changes
@@ -384,7 +575,7 @@ Thu, 26 Aug 2021 07:35:43 GMT
384
575
 
385
576
  ## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.69)
386
577
 
387
- Fri, 20 Aug 2021 07:37:28 GMT
578
+ Fri, 20 Aug 2021 07:37:28 GMT
388
579
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.68..@fluentui/react-avatar_v9.0.0-alpha.69)
389
580
 
390
581
  ### Changes
@@ -393,7 +584,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
393
584
 
394
585
  ## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.68)
395
586
 
396
- Thu, 19 Aug 2021 07:41:35 GMT
587
+ Thu, 19 Aug 2021 07:41:35 GMT
397
588
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.67..@fluentui/react-avatar_v9.0.0-alpha.68)
398
589
 
399
590
  ### Changes
@@ -402,7 +593,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
402
593
 
403
594
  ## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.67)
404
595
 
405
- Fri, 13 Aug 2021 07:36:34 GMT
596
+ Fri, 13 Aug 2021 07:36:34 GMT
406
597
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.66..@fluentui/react-avatar_v9.0.0-alpha.67)
407
598
 
408
599
  ### Changes
@@ -411,7 +602,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
411
602
 
412
603
  ## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.66)
413
604
 
414
- Wed, 11 Aug 2021 07:34:54 GMT
605
+ Wed, 11 Aug 2021 07:34:54 GMT
415
606
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.65..@fluentui/react-avatar_v9.0.0-alpha.66)
416
607
 
417
608
  ### Changes
@@ -420,7 +611,7 @@ Wed, 11 Aug 2021 07:34:54 GMT
420
611
 
421
612
  ## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.65)
422
613
 
423
- Fri, 06 Aug 2021 07:35:14 GMT
614
+ Fri, 06 Aug 2021 07:35:14 GMT
424
615
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.64..@fluentui/react-avatar_v9.0.0-alpha.65)
425
616
 
426
617
  ### Changes
@@ -429,7 +620,7 @@ Fri, 06 Aug 2021 07:35:14 GMT
429
620
 
430
621
  ## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.64)
431
622
 
432
- Thu, 05 Aug 2021 07:34:24 GMT
623
+ Thu, 05 Aug 2021 07:34:24 GMT
433
624
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.63..@fluentui/react-avatar_v9.0.0-alpha.64)
434
625
 
435
626
  ### Changes
@@ -438,7 +629,7 @@ Thu, 05 Aug 2021 07:34:24 GMT
438
629
 
439
630
  ## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.63)
440
631
 
441
- Tue, 03 Aug 2021 07:39:30 GMT
632
+ Tue, 03 Aug 2021 07:39:30 GMT
442
633
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.62..@fluentui/react-avatar_v9.0.0-alpha.63)
443
634
 
444
635
  ### Patches
@@ -453,7 +644,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
453
644
 
454
645
  ## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.62)
455
646
 
456
- Mon, 02 Aug 2021 07:36:20 GMT
647
+ Mon, 02 Aug 2021 07:36:20 GMT
457
648
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.61..@fluentui/react-avatar_v9.0.0-alpha.62)
458
649
 
459
650
  ### Changes
@@ -462,7 +653,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
462
653
 
463
654
  ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.61)
464
655
 
465
- Mon, 26 Jul 2021 07:37:30 GMT
656
+ Mon, 26 Jul 2021 07:37:30 GMT
466
657
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.60..@fluentui/react-avatar_v9.0.0-alpha.61)
467
658
 
468
659
  ### Changes
@@ -471,7 +662,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
471
662
 
472
663
  ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.60)
473
664
 
474
- Fri, 23 Jul 2021 07:38:19 GMT
665
+ Fri, 23 Jul 2021 07:38:19 GMT
475
666
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.59..@fluentui/react-avatar_v9.0.0-alpha.60)
476
667
 
477
668
  ### Changes
@@ -480,7 +671,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
480
671
 
481
672
  ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.59)
482
673
 
483
- Thu, 22 Jul 2021 07:36:55 GMT
674
+ Thu, 22 Jul 2021 07:36:55 GMT
484
675
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.58..@fluentui/react-avatar_v9.0.0-alpha.59)
485
676
 
486
677
  ### Changes
@@ -489,7 +680,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
489
680
 
490
681
  ## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.58)
491
682
 
492
- Tue, 20 Jul 2021 22:23:17 GMT
683
+ Tue, 20 Jul 2021 22:23:17 GMT
493
684
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.57..@fluentui/react-avatar_v9.0.0-alpha.58)
494
685
 
495
686
  ### Changes
@@ -498,7 +689,7 @@ Tue, 20 Jul 2021 22:23:17 GMT
498
689
 
499
690
  ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.57)
500
691
 
501
- Fri, 16 Jul 2021 22:53:17 GMT
692
+ Fri, 16 Jul 2021 22:53:17 GMT
502
693
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.56..@fluentui/react-avatar_v9.0.0-alpha.57)
503
694
 
504
695
  ### Changes
@@ -507,7 +698,7 @@ Fri, 16 Jul 2021 22:53:17 GMT
507
698
 
508
699
  ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.56)
509
700
 
510
- Thu, 15 Jul 2021 07:36:18 GMT
701
+ Thu, 15 Jul 2021 07:36:18 GMT
511
702
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.55..@fluentui/react-avatar_v9.0.0-alpha.56)
512
703
 
513
704
  ### Changes
@@ -516,7 +707,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
516
707
 
517
708
  ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.55)
518
709
 
519
- Tue, 13 Jul 2021 22:32:58 GMT
710
+ Tue, 13 Jul 2021 22:32:58 GMT
520
711
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.54..@fluentui/react-avatar_v9.0.0-alpha.55)
521
712
 
522
713
  ### Patches
@@ -525,7 +716,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
525
716
 
526
717
  ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.54)
527
718
 
528
- Tue, 13 Jul 2021 07:35:36 GMT
719
+ Tue, 13 Jul 2021 07:35:36 GMT
529
720
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.53..@fluentui/react-avatar_v9.0.0-alpha.54)
530
721
 
531
722
  ### Changes
@@ -534,7 +725,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
534
725
 
535
726
  ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.53)
536
727
 
537
- Fri, 09 Jul 2021 07:39:31 GMT
728
+ Fri, 09 Jul 2021 07:39:31 GMT
538
729
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.52..@fluentui/react-avatar_v9.0.0-alpha.53)
539
730
 
540
731
  ### Patches
@@ -549,7 +740,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
549
740
 
550
741
  ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.52)
551
742
 
552
- Fri, 02 Jul 2021 23:15:55 GMT
743
+ Fri, 02 Jul 2021 23:15:55 GMT
553
744
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.51..@fluentui/react-avatar_v9.0.0-alpha.52)
554
745
 
555
746
  ### Changes
@@ -558,7 +749,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
558
749
 
559
750
  ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.51)
560
751
 
561
- Fri, 02 Jul 2021 07:37:06 GMT
752
+ Fri, 02 Jul 2021 07:37:06 GMT
562
753
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.50..@fluentui/react-avatar_v9.0.0-alpha.51)
563
754
 
564
755
  ### Changes
@@ -567,7 +758,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
567
758
 
568
759
  ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.50)
569
760
 
570
- Thu, 01 Jul 2021 07:35:05 GMT
761
+ Thu, 01 Jul 2021 07:35:05 GMT
571
762
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.49..@fluentui/react-avatar_v9.0.0-alpha.50)
572
763
 
573
764
  ### Changes
@@ -576,7 +767,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
576
767
 
577
768
  ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.49)
578
769
 
579
- Wed, 30 Jun 2021 07:38:35 GMT
770
+ Wed, 30 Jun 2021 07:38:35 GMT
580
771
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.48..@fluentui/react-avatar_v9.0.0-alpha.49)
581
772
 
582
773
  ### Changes
@@ -585,7 +776,7 @@ Wed, 30 Jun 2021 07:38:35 GMT
585
776
 
586
777
  ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.48)
587
778
 
588
- Tue, 29 Jun 2021 07:33:32 GMT
779
+ Tue, 29 Jun 2021 07:33:32 GMT
589
780
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.47..@fluentui/react-avatar_v9.0.0-alpha.48)
590
781
 
591
782
  ### Changes
@@ -594,7 +785,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
594
785
 
595
786
  ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.47)
596
787
 
597
- Tue, 22 Jun 2021 07:35:11 GMT
788
+ Tue, 22 Jun 2021 07:35:11 GMT
598
789
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.46..@fluentui/react-avatar_v9.0.0-alpha.47)
599
790
 
600
791
  ### Changes
@@ -603,7 +794,7 @@ Tue, 22 Jun 2021 07:35:11 GMT
603
794
 
604
795
  ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.46)
605
796
 
606
- Tue, 15 Jun 2021 07:40:20 GMT
797
+ Tue, 15 Jun 2021 07:40:20 GMT
607
798
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.45..@fluentui/react-avatar_v9.0.0-alpha.46)
608
799
 
609
800
  ### Changes
@@ -612,7 +803,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
612
803
 
613
804
  ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.45)
614
805
 
615
- Mon, 07 Jun 2021 07:38:15 GMT
806
+ Mon, 07 Jun 2021 07:38:15 GMT
616
807
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.44..@fluentui/react-avatar_v9.0.0-alpha.45)
617
808
 
618
809
  ### Patches
@@ -627,7 +818,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
627
818
 
628
819
  ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.44)
629
820
 
630
- Fri, 04 Jun 2021 07:37:23 GMT
821
+ Fri, 04 Jun 2021 07:37:23 GMT
631
822
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.43..@fluentui/react-avatar_v9.0.0-alpha.44)
632
823
 
633
824
  ### Changes
@@ -636,7 +827,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
636
827
 
637
828
  ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.43)
638
829
 
639
- Thu, 03 Jun 2021 07:36:03 GMT
830
+ Thu, 03 Jun 2021 07:36:03 GMT
640
831
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.42..@fluentui/react-avatar_v9.0.0-alpha.43)
641
832
 
642
833
  ### Changes
@@ -645,7 +836,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
645
836
 
646
837
  ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.42)
647
838
 
648
- Wed, 02 Jun 2021 07:37:15 GMT
839
+ Wed, 02 Jun 2021 07:37:15 GMT
649
840
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.41..@fluentui/react-avatar_v9.0.0-alpha.42)
650
841
 
651
842
  ### Changes
@@ -654,7 +845,7 @@ Wed, 02 Jun 2021 07:37:15 GMT
654
845
 
655
846
  ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.41)
656
847
 
657
- Mon, 31 May 2021 07:33:15 GMT
848
+ Mon, 31 May 2021 07:33:15 GMT
658
849
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.40..@fluentui/react-avatar_v9.0.0-alpha.41)
659
850
 
660
851
  ### Changes
@@ -663,7 +854,7 @@ Mon, 31 May 2021 07:33:15 GMT
663
854
 
664
855
  ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.40)
665
856
 
666
- Wed, 26 May 2021 07:35:43 GMT
857
+ Wed, 26 May 2021 07:35:43 GMT
667
858
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.39..@fluentui/react-avatar_v9.0.0-alpha.40)
668
859
 
669
860
  ### Changes
@@ -672,7 +863,7 @@ Wed, 26 May 2021 07:35:43 GMT
672
863
 
673
864
  ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.39)
674
865
 
675
- Fri, 21 May 2021 07:34:54 GMT
866
+ Fri, 21 May 2021 07:34:54 GMT
676
867
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.38..@fluentui/react-avatar_v9.0.0-alpha.39)
677
868
 
678
869
  ### Changes
@@ -681,7 +872,7 @@ Fri, 21 May 2021 07:34:54 GMT
681
872
 
682
873
  ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.38)
683
874
 
684
- Thu, 20 May 2021 07:41:54 GMT
875
+ Thu, 20 May 2021 07:41:54 GMT
685
876
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.37..@fluentui/react-avatar_v9.0.0-alpha.38)
686
877
 
687
878
  ### Patches
@@ -696,7 +887,7 @@ Thu, 20 May 2021 07:41:54 GMT
696
887
 
697
888
  ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.37)
698
889
 
699
- Wed, 19 May 2021 07:34:20 GMT
890
+ Wed, 19 May 2021 07:34:20 GMT
700
891
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.36..@fluentui/react-avatar_v9.0.0-alpha.37)
701
892
 
702
893
  ### Patches
@@ -709,7 +900,7 @@ Wed, 19 May 2021 07:34:20 GMT
709
900
 
710
901
  ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.36)
711
902
 
712
- Tue, 18 May 2021 07:34:38 GMT
903
+ Tue, 18 May 2021 07:34:38 GMT
713
904
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.35..@fluentui/react-avatar_v9.0.0-alpha.36)
714
905
 
715
906
  ### Changes
@@ -718,7 +909,7 @@ Tue, 18 May 2021 07:34:38 GMT
718
909
 
719
910
  ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.35)
720
911
 
721
- Thu, 13 May 2021 07:36:55 GMT
912
+ Thu, 13 May 2021 07:36:55 GMT
722
913
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.34..@fluentui/react-avatar_v9.0.0-alpha.35)
723
914
 
724
915
  ### Changes
@@ -727,7 +918,7 @@ Thu, 13 May 2021 07:36:55 GMT
727
918
 
728
919
  ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.34)
729
920
 
730
- Wed, 12 May 2021 07:36:20 GMT
921
+ Wed, 12 May 2021 07:36:20 GMT
731
922
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.33..@fluentui/react-avatar_v9.0.0-alpha.34)
732
923
 
733
924
  ### Changes
@@ -736,7 +927,7 @@ Wed, 12 May 2021 07:36:20 GMT
736
927
 
737
928
  ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.33)
738
929
 
739
- Mon, 10 May 2021 07:36:07 GMT
930
+ Mon, 10 May 2021 07:36:07 GMT
740
931
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.32..@fluentui/react-avatar_v9.0.0-alpha.33)
741
932
 
742
933
  ### Changes
@@ -745,7 +936,7 @@ Mon, 10 May 2021 07:36:07 GMT
745
936
 
746
937
  ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.32)
747
938
 
748
- Wed, 05 May 2021 07:36:50 GMT
939
+ Wed, 05 May 2021 07:36:50 GMT
749
940
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.31..@fluentui/react-avatar_v9.0.0-alpha.32)
750
941
 
751
942
  ### Changes
@@ -754,7 +945,7 @@ Wed, 05 May 2021 07:36:50 GMT
754
945
 
755
946
  ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.31)
756
947
 
757
- Mon, 03 May 2021 07:45:19 GMT
948
+ Mon, 03 May 2021 07:45:19 GMT
758
949
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.30..@fluentui/react-avatar_v9.0.0-alpha.31)
759
950
 
760
951
  ### Changes
@@ -763,7 +954,7 @@ Mon, 03 May 2021 07:45:19 GMT
763
954
 
764
955
  ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.30)
765
956
 
766
- Fri, 30 Apr 2021 07:42:23 GMT
957
+ Fri, 30 Apr 2021 07:42:23 GMT
767
958
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.29..@fluentui/react-avatar_v9.0.0-alpha.30)
768
959
 
769
960
  ### Patches
@@ -778,7 +969,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
778
969
 
779
970
  ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.29)
780
971
 
781
- Tue, 27 Apr 2021 07:34:03 GMT
972
+ Tue, 27 Apr 2021 07:34:03 GMT
782
973
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.28..@fluentui/react-avatar_v9.0.0-alpha.29)
783
974
 
784
975
  ### Changes
@@ -787,7 +978,7 @@ Tue, 27 Apr 2021 07:34:03 GMT
787
978
 
788
979
  ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.28)
789
980
 
790
- Mon, 26 Apr 2021 07:34:31 GMT
981
+ Mon, 26 Apr 2021 07:34:31 GMT
791
982
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.27..@fluentui/react-avatar_v9.0.0-alpha.28)
792
983
 
793
984
  ### Changes
@@ -796,7 +987,7 @@ Mon, 26 Apr 2021 07:34:31 GMT
796
987
 
797
988
  ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.27)
798
989
 
799
- Fri, 23 Apr 2021 07:37:10 GMT
990
+ Fri, 23 Apr 2021 07:37:10 GMT
800
991
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.26..@fluentui/react-avatar_v9.0.0-alpha.27)
801
992
 
802
993
  ### Patches
@@ -811,7 +1002,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
811
1002
 
812
1003
  ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.26)
813
1004
 
814
- Thu, 22 Apr 2021 07:33:28 GMT
1005
+ Thu, 22 Apr 2021 07:33:28 GMT
815
1006
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.25..@fluentui/react-avatar_v9.0.0-alpha.26)
816
1007
 
817
1008
  ### Changes
@@ -820,7 +1011,7 @@ Thu, 22 Apr 2021 07:33:28 GMT
820
1011
 
821
1012
  ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.25)
822
1013
 
823
- Wed, 21 Apr 2021 07:31:50 GMT
1014
+ Wed, 21 Apr 2021 07:31:50 GMT
824
1015
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.24..@fluentui/react-avatar_v9.0.0-alpha.25)
825
1016
 
826
1017
  ### Changes
@@ -829,7 +1020,7 @@ Wed, 21 Apr 2021 07:31:50 GMT
829
1020
 
830
1021
  ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.24)
831
1022
 
832
- Tue, 20 Apr 2021 07:31:35 GMT
1023
+ Tue, 20 Apr 2021 07:31:35 GMT
833
1024
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.23..@fluentui/react-avatar_v9.0.0-alpha.24)
834
1025
 
835
1026
  ### Changes
@@ -838,7 +1029,7 @@ Tue, 20 Apr 2021 07:31:35 GMT
838
1029
 
839
1030
  ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.23)
840
1031
 
841
- Fri, 16 Apr 2021 18:08:21 GMT
1032
+ Fri, 16 Apr 2021 18:08:21 GMT
842
1033
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.22..@fluentui/react-avatar_v9.0.0-alpha.23)
843
1034
 
844
1035
  ### Changes
@@ -847,7 +1038,7 @@ Fri, 16 Apr 2021 18:08:21 GMT
847
1038
 
848
1039
  ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.22)
849
1040
 
850
- Wed, 14 Apr 2021 07:34:12 GMT
1041
+ Wed, 14 Apr 2021 07:34:12 GMT
851
1042
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.21..@fluentui/react-avatar_v9.0.0-alpha.22)
852
1043
 
853
1044
  ### Changes
@@ -856,7 +1047,7 @@ Wed, 14 Apr 2021 07:34:12 GMT
856
1047
 
857
1048
  ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.21)
858
1049
 
859
- Fri, 09 Apr 2021 07:31:06 GMT
1050
+ Fri, 09 Apr 2021 07:31:06 GMT
860
1051
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.20..@fluentui/react-avatar_v9.0.0-alpha.21)
861
1052
 
862
1053
  ### Changes
@@ -865,7 +1056,7 @@ Fri, 09 Apr 2021 07:31:06 GMT
865
1056
 
866
1057
  ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.20)
867
1058
 
868
- Thu, 08 Apr 2021 07:33:06 GMT
1059
+ Thu, 08 Apr 2021 07:33:06 GMT
869
1060
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.19..@fluentui/react-avatar_v9.0.0-alpha.20)
870
1061
 
871
1062
  ### Changes
@@ -874,7 +1065,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
874
1065
 
875
1066
  ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.19)
876
1067
 
877
- Thu, 01 Apr 2021 20:13:37 GMT
1068
+ Thu, 01 Apr 2021 20:13:37 GMT
878
1069
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.18..@fluentui/react-avatar_v9.0.0-alpha.19)
879
1070
 
880
1071
  ### Changes
@@ -883,7 +1074,7 @@ Thu, 01 Apr 2021 20:13:37 GMT
883
1074
 
884
1075
  ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.18)
885
1076
 
886
- Wed, 31 Mar 2021 00:53:43 GMT
1077
+ Wed, 31 Mar 2021 00:53:43 GMT
887
1078
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.17..@fluentui/react-avatar_v9.0.0-alpha.18)
888
1079
 
889
1080
  ### Patches
@@ -899,7 +1090,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
899
1090
 
900
1091
  ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.17)
901
1092
 
902
- Tue, 30 Mar 2021 07:34:45 GMT
1093
+ Tue, 30 Mar 2021 07:34:45 GMT
903
1094
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.16..@fluentui/react-avatar_v9.0.0-alpha.17)
904
1095
 
905
1096
  ### Changes
@@ -908,7 +1099,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
908
1099
 
909
1100
  ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.16)
910
1101
 
911
- Fri, 26 Mar 2021 07:32:34 GMT
1102
+ Fri, 26 Mar 2021 07:32:34 GMT
912
1103
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.15..@fluentui/react-avatar_v9.0.0-alpha.16)
913
1104
 
914
1105
  ### Changes
@@ -917,7 +1108,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
917
1108
 
918
1109
  ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.15)
919
1110
 
920
- Thu, 25 Mar 2021 07:33:24 GMT
1111
+ Thu, 25 Mar 2021 07:33:24 GMT
921
1112
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.14..@fluentui/react-avatar_v9.0.0-alpha.15)
922
1113
 
923
1114
  ### Changes
@@ -926,7 +1117,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
926
1117
 
927
1118
  ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.14)
928
1119
 
929
- Wed, 24 Mar 2021 07:32:21 GMT
1120
+ Wed, 24 Mar 2021 07:32:21 GMT
930
1121
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.13..@fluentui/react-avatar_v9.0.0-alpha.14)
931
1122
 
932
1123
  ### Changes
@@ -935,7 +1126,7 @@ Wed, 24 Mar 2021 07:32:21 GMT
935
1126
 
936
1127
  ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.13)
937
1128
 
938
- Tue, 23 Mar 2021 07:31:43 GMT
1129
+ Tue, 23 Mar 2021 07:31:43 GMT
939
1130
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.12..@fluentui/react-avatar_v9.0.0-alpha.13)
940
1131
 
941
1132
  ### Changes
@@ -944,7 +1135,7 @@ Tue, 23 Mar 2021 07:31:43 GMT
944
1135
 
945
1136
  ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.12)
946
1137
 
947
- Thu, 18 Mar 2021 20:15:34 GMT
1138
+ Thu, 18 Mar 2021 20:15:34 GMT
948
1139
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.11..@fluentui/react-avatar_v9.0.0-alpha.12)
949
1140
 
950
1141
  ### Changes
@@ -953,7 +1144,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
953
1144
 
954
1145
  ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.11)
955
1146
 
956
- Tue, 16 Mar 2021 07:32:44 GMT
1147
+ Tue, 16 Mar 2021 07:32:44 GMT
957
1148
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.10..@fluentui/react-avatar_v9.0.0-alpha.11)
958
1149
 
959
1150
  ### Patches
@@ -962,7 +1153,7 @@ Tue, 16 Mar 2021 07:32:44 GMT
962
1153
 
963
1154
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.10)
964
1155
 
965
- Mon, 15 Mar 2021 07:36:20 GMT
1156
+ Mon, 15 Mar 2021 07:36:20 GMT
966
1157
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.9..@fluentui/react-avatar_v9.0.0-alpha.10)
967
1158
 
968
1159
  ### Changes
@@ -971,7 +1162,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
971
1162
 
972
1163
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.9)
973
1164
 
974
- Fri, 12 Mar 2021 20:04:27 GMT
1165
+ Fri, 12 Mar 2021 20:04:27 GMT
975
1166
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.8..@fluentui/react-avatar_v9.0.0-alpha.9)
976
1167
 
977
1168
  ### Patches
@@ -984,7 +1175,7 @@ Fri, 12 Mar 2021 20:04:27 GMT
984
1175
 
985
1176
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.8)
986
1177
 
987
- Wed, 10 Mar 2021 07:34:39 GMT
1178
+ Wed, 10 Mar 2021 07:34:39 GMT
988
1179
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.7..@fluentui/react-avatar_v9.0.0-alpha.8)
989
1180
 
990
1181
  ### Changes
@@ -993,7 +1184,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
993
1184
 
994
1185
  ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.7)
995
1186
 
996
- Fri, 05 Mar 2021 20:30:59 GMT
1187
+ Fri, 05 Mar 2021 20:30:59 GMT
997
1188
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.6..@fluentui/react-avatar_v9.0.0-alpha.7)
998
1189
 
999
1190
  ### Changes
@@ -1002,7 +1193,7 @@ Fri, 05 Mar 2021 20:30:59 GMT
1002
1193
 
1003
1194
  ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.6)
1004
1195
 
1005
- Wed, 03 Mar 2021 00:10:09 GMT
1196
+ Wed, 03 Mar 2021 00:10:09 GMT
1006
1197
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.5..@fluentui/react-avatar_v9.0.0-alpha.6)
1007
1198
 
1008
1199
  ### Patches
@@ -1015,7 +1206,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
1015
1206
 
1016
1207
  ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.5)
1017
1208
 
1018
- Tue, 02 Mar 2021 07:24:27 GMT
1209
+ Tue, 02 Mar 2021 07:24:27 GMT
1019
1210
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.4..@fluentui/react-avatar_v9.0.0-alpha.5)
1020
1211
 
1021
1212
  ### Changes
@@ -1025,7 +1216,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
1025
1216
 
1026
1217
  ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.4)
1027
1218
 
1028
- Fri, 26 Feb 2021 01:16:27 GMT
1219
+ Fri, 26 Feb 2021 01:16:27 GMT
1029
1220
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.3..@fluentui/react-avatar_v9.0.0-alpha.4)
1030
1221
 
1031
1222
  ### Patches
@@ -1043,7 +1234,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
1043
1234
 
1044
1235
  ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.3)
1045
1236
 
1046
- Thu, 25 Feb 2021 20:16:39 GMT
1237
+ Thu, 25 Feb 2021 20:16:39 GMT
1047
1238
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.2..@fluentui/react-avatar_v9.0.0-alpha.3)
1048
1239
 
1049
1240
  ### Changes
@@ -1052,7 +1243,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
1052
1243
 
1053
1244
  ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.2)
1054
1245
 
1055
- Thu, 25 Feb 2021 01:15:27 GMT
1246
+ Thu, 25 Feb 2021 01:15:27 GMT
1056
1247
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.1..@fluentui/react-avatar_v9.0.0-alpha.2)
1057
1248
 
1058
1249
  ### Patches
@@ -1061,7 +1252,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
1061
1252
 
1062
1253
  ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.1)
1063
1254
 
1064
- Wed, 24 Feb 2021 00:05:29 GMT
1255
+ Wed, 24 Feb 2021 00:05:29 GMT
1065
1256
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.12.0..@fluentui/react-avatar_v9.0.0-alpha.1)
1066
1257
 
1067
1258
  ### Changes
@@ -1072,7 +1263,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
1072
1263
 
1073
1264
  ## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.12.0)
1074
1265
 
1075
- Mon, 22 Feb 2021 12:26:22 GMT
1266
+ Mon, 22 Feb 2021 12:26:22 GMT
1076
1267
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.11.1..@fluentui/react-avatar_v0.12.0)
1077
1268
 
1078
1269
  ### Minor changes
@@ -1092,7 +1283,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
1092
1283
 
1093
1284
  ## [0.11.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.11.1)
1094
1285
 
1095
- Thu, 18 Feb 2021 19:38:50 GMT
1286
+ Thu, 18 Feb 2021 19:38:50 GMT
1096
1287
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.11.0..@fluentui/react-avatar_v0.11.1)
1097
1288
 
1098
1289
  ### Patches
@@ -1109,7 +1300,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
1109
1300
 
1110
1301
  ## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.11.0)
1111
1302
 
1112
- Thu, 18 Feb 2021 12:27:34 GMT
1303
+ Thu, 18 Feb 2021 12:27:34 GMT
1113
1304
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.10.1..@fluentui/react-avatar_v0.11.0)
1114
1305
 
1115
1306
  ### Minor changes
@@ -1134,7 +1325,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
1134
1325
 
1135
1326
  ## [0.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.10.1)
1136
1327
 
1137
- Wed, 17 Feb 2021 12:21:39 GMT
1328
+ Wed, 17 Feb 2021 12:21:39 GMT
1138
1329
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.10.0..@fluentui/react-avatar_v0.10.1)
1139
1330
 
1140
1331
  ### Patches
@@ -1143,7 +1334,7 @@ Wed, 17 Feb 2021 12:21:39 GMT
1143
1334
 
1144
1335
  ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.10.0)
1145
1336
 
1146
- Mon, 15 Feb 2021 12:22:00 GMT
1337
+ Mon, 15 Feb 2021 12:22:00 GMT
1147
1338
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.10.0..@fluentui/react-avatar_v0.10.0)
1148
1339
 
1149
1340
  ### Changes
@@ -1156,7 +1347,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
1156
1347
 
1157
1348
  ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.10.0)
1158
1349
 
1159
- Fri, 12 Feb 2021 12:26:20 GMT
1350
+ Fri, 12 Feb 2021 12:26:20 GMT
1160
1351
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.1..@fluentui/react-avatar_v0.10.0)
1161
1352
 
1162
1353
  ### Minor changes
@@ -1173,7 +1364,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
1173
1364
 
1174
1365
  ## [0.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.1)
1175
1366
 
1176
- Thu, 11 Feb 2021 00:58:10 GMT
1367
+ Thu, 11 Feb 2021 00:58:10 GMT
1177
1368
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.1..@fluentui/react-avatar_v0.9.1)
1178
1369
 
1179
1370
  ### Changes
@@ -1186,7 +1377,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
1186
1377
 
1187
1378
  ## [0.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.1)
1188
1379
 
1189
- Tue, 09 Feb 2021 00:56:52 GMT
1380
+ Tue, 09 Feb 2021 00:56:52 GMT
1190
1381
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.0..@fluentui/react-avatar_v0.9.1)
1191
1382
 
1192
1383
  ### Patches
@@ -1199,7 +1390,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
1199
1390
 
1200
1391
  ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.0)
1201
1392
 
1202
- Mon, 08 Feb 2021 12:23:08 GMT
1393
+ Mon, 08 Feb 2021 12:23:08 GMT
1203
1394
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.0..@fluentui/react-avatar_v0.9.0)
1204
1395
 
1205
1396
  ### Changes
@@ -1208,7 +1399,7 @@ Mon, 08 Feb 2021 12:23:08 GMT
1208
1399
 
1209
1400
  ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.0)
1210
1401
 
1211
- Wed, 03 Feb 2021 05:51:40 GMT
1402
+ Wed, 03 Feb 2021 05:51:40 GMT
1212
1403
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.3..@fluentui/react-avatar_v0.9.0)
1213
1404
 
1214
1405
  ### Minor changes
@@ -1217,7 +1408,7 @@ Wed, 03 Feb 2021 05:51:40 GMT
1217
1408
 
1218
1409
  ## [0.8.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.3)
1219
1410
 
1220
- Tue, 02 Feb 2021 12:21:54 GMT
1411
+ Tue, 02 Feb 2021 12:21:54 GMT
1221
1412
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2..@fluentui/react-avatar_v0.8.3)
1222
1413
 
1223
1414
  ### Patches
@@ -1226,7 +1417,7 @@ Tue, 02 Feb 2021 12:21:54 GMT
1226
1417
 
1227
1418
  ## [0.8.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2)
1228
1419
 
1229
- Mon, 01 Feb 2021 12:23:48 GMT
1420
+ Mon, 01 Feb 2021 12:23:48 GMT
1230
1421
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-18..@fluentui/react-avatar_v0.8.2)
1231
1422
 
1232
1423
  ### Patches
@@ -1236,7 +1427,7 @@ Mon, 01 Feb 2021 12:23:48 GMT
1236
1427
 
1237
1428
  ## [0.8.2-18](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-18)
1238
1429
 
1239
- Fri, 29 Jan 2021 12:21:00 GMT
1430
+ Fri, 29 Jan 2021 12:21:00 GMT
1240
1431
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-17..@fluentui/react-avatar_v0.8.2-18)
1241
1432
 
1242
1433
  ### Changes
@@ -1245,7 +1436,7 @@ Fri, 29 Jan 2021 12:21:00 GMT
1245
1436
 
1246
1437
  ## [0.8.2-17](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-17)
1247
1438
 
1248
- Thu, 28 Jan 2021 12:25:56 GMT
1439
+ Thu, 28 Jan 2021 12:25:56 GMT
1249
1440
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-15..@fluentui/react-avatar_v0.8.2-17)
1250
1441
 
1251
1442
  ### Changes
@@ -1255,16 +1446,16 @@ Thu, 28 Jan 2021 12:25:56 GMT
1255
1446
 
1256
1447
  ## [0.8.2-15](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-15)
1257
1448
 
1258
- Thu, 21 Jan 2021 12:36:12 GMT
1449
+ Thu, 21 Jan 2021 12:36:12 GMT
1259
1450
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-12..@fluentui/react-avatar_v0.8.2-15)
1260
1451
 
1261
1452
  ### Changes
1262
1453
 
1263
- - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1454
+ - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1264
1455
 
1265
1456
  ## [0.8.2-12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-12)
1266
1457
 
1267
- Tue, 08 Dec 2020 12:28:09 GMT
1458
+ Tue, 08 Dec 2020 12:28:09 GMT
1268
1459
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-7..@fluentui/react-avatar_v0.8.2-12)
1269
1460
 
1270
1461
  ### Changes
@@ -1273,7 +1464,7 @@ Tue, 08 Dec 2020 12:28:09 GMT
1273
1464
 
1274
1465
  ## [0.8.2-7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-7)
1275
1466
 
1276
- Wed, 18 Nov 2020 12:30:07 GMT
1467
+ Wed, 18 Nov 2020 12:30:07 GMT
1277
1468
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.1..@fluentui/react-avatar_v0.8.2-7)
1278
1469
 
1279
1470
  ### Changes
@@ -1282,7 +1473,7 @@ Wed, 18 Nov 2020 12:30:07 GMT
1282
1473
 
1283
1474
  ## [0.8.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.1)
1284
1475
 
1285
- Fri, 23 Oct 2020 23:25:40 GMT
1476
+ Fri, 23 Oct 2020 23:25:40 GMT
1286
1477
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.0..@fluentui/react-avatar_v0.8.1)
1287
1478
 
1288
1479
  ### Patches
@@ -1291,7 +1482,7 @@ Fri, 23 Oct 2020 23:25:40 GMT
1291
1482
 
1292
1483
  ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.0)
1293
1484
 
1294
- Fri, 23 Oct 2020 03:26:15 GMT
1485
+ Fri, 23 Oct 2020 03:26:15 GMT
1295
1486
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.6.4..@fluentui/react-avatar_v0.8.0)
1296
1487
 
1297
1488
  ### Minor changes
@@ -1308,7 +1499,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
1308
1499
 
1309
1500
  ## [0.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.6.4)
1310
1501
 
1311
- Fri, 25 Sep 2020 12:25:17 GMT
1502
+ Fri, 25 Sep 2020 12:25:17 GMT
1312
1503
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.6.0..@fluentui/react-avatar_v0.6.4)
1313
1504
 
1314
1505
  ### Patches
@@ -1318,7 +1509,7 @@ Fri, 25 Sep 2020 12:25:17 GMT
1318
1509
 
1319
1510
  ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.6.0)
1320
1511
 
1321
- Mon, 21 Sep 2020 12:22:29 GMT
1512
+ Mon, 21 Sep 2020 12:22:29 GMT
1322
1513
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.5.0..@fluentui/react-avatar_v0.6.0)
1323
1514
 
1324
1515
  ### Minor changes
@@ -1327,7 +1518,7 @@ Mon, 21 Sep 2020 12:22:29 GMT
1327
1518
 
1328
1519
  ## [0.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.5.0)
1329
1520
 
1330
- Tue, 15 Sep 2020 12:26:06 GMT
1521
+ Tue, 15 Sep 2020 12:26:06 GMT
1331
1522
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.4.0..@fluentui/react-avatar_v0.5.0)
1332
1523
 
1333
1524
  ### Minor changes
@@ -1336,7 +1527,7 @@ Tue, 15 Sep 2020 12:26:06 GMT
1336
1527
 
1337
1528
  ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.4.0)
1338
1529
 
1339
- Mon, 07 Sep 2020 12:26:26 GMT
1530
+ Mon, 07 Sep 2020 12:26:26 GMT
1340
1531
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.3.1..@fluentui/react-avatar_v0.4.0)
1341
1532
 
1342
1533
  ### Minor changes
@@ -1345,7 +1536,7 @@ Mon, 07 Sep 2020 12:26:26 GMT
1345
1536
 
1346
1537
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.3.1)
1347
1538
 
1348
- Mon, 31 Aug 2020 12:25:46 GMT
1539
+ Mon, 31 Aug 2020 12:25:46 GMT
1349
1540
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.1.1..@fluentui/react-avatar_v0.3.1)
1350
1541
 
1351
1542
  ### Patches