@fluentui/react-avatar 9.0.0-nightly.d730088d7f.0 → 9.0.0-rc.10

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 +843 -24
  2. package/CHANGELOG.md +323 -132
  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 +116 -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 +121 -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,29 +1,220 @@
1
1
  # Change Log - @fluentui/react-avatar
2
2
 
3
- This log was last generated on Wed, 20 Oct 2021 09:19:30 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 23 May 2022 18:54:45 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [9.0.0-nightly.d730088d7f.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-nightly.d730088d7f.0)
7
+ ## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.10)
8
8
 
9
- Wed, 20 Oct 2021 09:19:30 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.d730088d7f.0)
9
+ Mon, 23 May 2022 18:54:45 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.9..@fluentui/react-avatar_v9.0.0-rc.10)
11
11
 
12
12
  ### Changes
13
13
 
14
- - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by email not defined)
15
- - added styling of documentation ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by peter@draxler.ml)
16
- - Bump @fluentui/react-badge to v9.0.0-nightly.d730088d7f.0 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by beachball)
17
- - Bump @fluentui/react-make-styles to v9.0.0-nightly.d730088d7f.0 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by beachball)
18
- - Bump @fluentui/react-theme to v9.0.0-nightly.d730088d7f.0 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by beachball)
19
- - Bump @fluentui/react-utilities to v9.0.0-nightly.d730088d7f.0 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by beachball)
20
- - Bump @fluentui/babel-make-styles to v9.0.0-nightly.d730088d7f.0 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by beachball)
21
- - Bump @fluentui/jest-serializer-make-styles to v9.0.0-nightly.d730088d7f.0 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by beachball)
22
- - Bump @fluentui/react-conformance-make-styles to v9.0.0-nightly.d730088d7f.0 ([commit](https://github.com/microsoft/fluentui/commit/ec40cc4bf5af48d100161d7fc692fa8624507dee) by beachball)
14
+ - BREAKING: update string unions to use spinal-case ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by seanmonahan@microsoft.com)
15
+ - Removing <componentName>ClassName exports. ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by esteban.230@hotmail.com)
16
+ - Bump @fluentui/react-badge to v9.0.0-rc.10 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
17
+ - Bump @fluentui/react-button to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
18
+ - Bump @fluentui/react-popover to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
19
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
20
+ - Bump @fluentui/react-theme to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
21
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
22
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
23
+
24
+ ## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.9)
25
+
26
+ Mon, 23 May 2022 12:14:00 GMT
27
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.8..@fluentui/react-avatar_v9.0.0-rc.9)
28
+
29
+ ### Changes
30
+
31
+ - Add support for size={16} to Avatar ([PR #23003](https://github.com/microsoft/fluentui/pull/23003) by behowell@microsoft.com)
32
+ - chore: Update Griffel to latest version ([PR #23029](https://github.com/microsoft/fluentui/pull/23029) by olfedias@microsoft.com)
33
+ - chore: Update Griffel to latest version ([PR #22894](https://github.com/microsoft/fluentui/pull/22894) by olfedias@microsoft.com)
34
+ - Moving Avatar stories to stories folder. ([PR #23047](https://github.com/microsoft/fluentui/pull/23047) by esteban.230@hotmail.com)
35
+ - Bump @fluentui/react-badge to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
36
+ - Bump @fluentui/react-button to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
37
+ - Bump @fluentui/react-popover to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
38
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
39
+ - Bump @fluentui/react-theme to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
40
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
41
+ - Bump @fluentui/react-utilities to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
42
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
43
+
44
+ ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.8)
45
+
46
+ Thu, 05 May 2022 18:26:29 GMT
47
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.7..@fluentui/react-avatar_v9.0.0-rc.8)
48
+
49
+ ### Changes
50
+
51
+ - feat: ship rolluped only dts ([PR #22823](https://github.com/microsoft/fluentui/pull/22823) by martinhochel@microsoft.com)
52
+ - Bump @fluentui/react-badge to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
53
+ - Bump @fluentui/react-button to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
54
+ - Bump @fluentui/react-popover to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
55
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
56
+ - Bump @fluentui/react-theme to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
57
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
58
+ - Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
59
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
60
+
61
+ ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.7)
62
+
63
+ Wed, 04 May 2022 13:26:37 GMT
64
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.6..@fluentui/react-avatar_v9.0.0-rc.7)
65
+
66
+ ### Changes
67
+
68
+ - Bump @fluentui/react-badge to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
69
+ - Bump @fluentui/react-button to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
70
+ - Bump @fluentui/react-popover to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
71
+ - Bump @fluentui/react-tooltip to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
72
+ - Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
73
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
74
+ - Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
75
+
76
+ ## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.6)
77
+
78
+ Tue, 19 Apr 2022 19:17:08 GMT
79
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.5..@fluentui/react-avatar_v9.0.0-rc.6)
80
+
81
+ ### Changes
82
+
83
+ - Add static classnames to Avatar ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
84
+ - 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)
85
+ - Removing star exports. ([PR #22113](https://github.com/microsoft/fluentui/pull/22113) by Humberto.Morimoto@microsoft.com)
86
+ - 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)
87
+ - add missing dependencies ([PR #21924](https://github.com/microsoft/fluentui/pull/21924) by martinhochel@microsoft.com)
88
+ - chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
89
+ - Bump @fluentui/react-badge to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
90
+ - Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
91
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
92
+ - Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
93
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
94
+
95
+ ## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.5)
96
+
97
+ Fri, 04 Mar 2022 05:17:33 GMT
98
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.4..@fluentui/react-avatar_v9.0.0-rc.5)
99
+
100
+ ### Changes
101
+
102
+ - 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)
103
+ - Bump @fluentui/react-badge to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
104
+ - Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
105
+ - Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
106
+
107
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.4)
108
+
109
+ Tue, 01 Mar 2022 02:17:40 GMT
110
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.3..@fluentui/react-avatar_v9.0.0-rc.4)
111
+
112
+ ### Changes
113
+
114
+ - Bump @fluentui/react-badge to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
115
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
116
+
117
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.3)
118
+
119
+ Fri, 18 Feb 2022 13:35:28 GMT
120
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-rc.1..@fluentui/react-avatar_v9.0.0-rc.3)
121
+
122
+ ### Changes
123
+
124
+ - 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)
125
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
126
+ - Update Avatar SPEC.md and MIGRATION.md ([PR #21702](https://github.com/microsoft/fluentui/pull/21702) by behowell@microsoft.com)
127
+ - Bump @fluentui/react-badge to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
128
+ - Bump @fluentui/react-theme to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
129
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
130
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
131
+
132
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-rc.1)
133
+
134
+ Thu, 10 Feb 2022 08:52:19 GMT
135
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.4..@fluentui/react-avatar_v9.0.0-rc.1)
136
+
137
+ ### Changes
138
+
139
+ - 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)
140
+ - Make Avatar's initials be un-selectable text ([PR #21638](https://github.com/microsoft/fluentui/pull/21638) by behowell@microsoft.com)
141
+ - update @fluentui/react-icons package ([PR #21498](https://github.com/microsoft/fluentui/pull/21498) by olfedias@microsoft.com)
142
+ - Replace make-styles packages with griffel equivalents. ([PR #21439](https://github.com/microsoft/fluentui/pull/21439) by olfedias@microsoft.com)
143
+ - Update documentation stories ([PR #21519](https://github.com/microsoft/fluentui/pull/21519) by behowell@microsoft.com)
144
+ - 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)
145
+ - Export the default getInitials implementation ([PR #21445](https://github.com/microsoft/fluentui/pull/21445) by behowell@microsoft.com)
146
+ - (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
147
+ - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
148
+ - Rename `label` slot to `initials`, remove `getInitials` prop, and improve accessibility ([PR #21346](https://github.com/microsoft/fluentui/pull/21346) by behowell@microsoft.com)
149
+ - 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)
150
+ - update styles to not use CSS shorthands ([PR #20801](https://github.com/microsoft/fluentui/pull/20801) by olfedias@microsoft.com)
151
+ - Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
152
+ - Fix Avatar's high contrast border on Windows ([PR #21637](https://github.com/microsoft/fluentui/pull/21637) by behowell@microsoft.com)
153
+ - 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)
154
+ - Using ComponentSlotProps instead of ObjectShorthandProps. ([PR #20890](https://github.com/microsoft/fluentui/pull/20890) by Humberto.Morimoto@microsoft.com)
155
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
156
+ - 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)
157
+ - Update Avatar to use resizable icons ([PR #21160](https://github.com/microsoft/fluentui/pull/21160) by behowell@microsoft.com)
158
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
159
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
160
+ - Bump @fluentui/react-badge to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
161
+ - Bump @fluentui/react-theme to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
162
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
163
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
164
+
165
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.4)
166
+
167
+ Thu, 25 Nov 2021 08:34:10 GMT
168
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.3..@fluentui/react-avatar_v9.0.0-beta.4)
169
+
170
+ ### Changes
171
+
172
+ - update react-icons dependency ([PR #20563](https://github.com/microsoft/fluentui/pull/20563) by ololubek@microsoft.com)
173
+ - Bump @fluentui/react-badge to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
174
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
175
+ - Bump @fluentui/react-theme to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
176
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
177
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
178
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
179
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
180
+
181
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.3)
182
+
183
+ Fri, 12 Nov 2021 13:25:14 GMT
184
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.2..@fluentui/react-avatar_v9.0.0-beta.3)
185
+
186
+ ### Changes
187
+
188
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
189
+ - export static classes for components ([PR #20453](https://github.com/microsoft/fluentui/pull/20453) by olfedias@microsoft.com)
190
+ - Bump @fluentui/react-badge to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
191
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
192
+ - Bump @fluentui/react-theme to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
193
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
194
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
195
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
196
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
197
+
198
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.2)
199
+
200
+ Wed, 27 Oct 2021 12:14:13 GMT
201
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-beta.1..@fluentui/react-avatar_v9.0.0-beta.2)
202
+
203
+ ### Changes
204
+
205
+ - Removed duplicate 'Avatar' from story names ([PR #20264](https://github.com/microsoft/fluentui/pull/20264) by gcox@microsoft.com)
206
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
207
+ - Bump @fluentui/react-badge to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
208
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
209
+ - Bump @fluentui/react-theme to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
210
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
211
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
212
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
213
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
23
214
 
24
215
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-beta.1)
25
216
 
26
- Wed, 06 Oct 2021 10:37:22 GMT
217
+ Wed, 06 Oct 2021 10:37:22 GMT
27
218
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.93..@fluentui/react-avatar_v9.0.0-beta.1)
28
219
 
29
220
  ### Changes
@@ -39,7 +230,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
39
230
 
40
231
  ## [9.0.0-alpha.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.93)
41
232
 
42
- Tue, 05 Oct 2021 12:47:58 GMT
233
+ Tue, 05 Oct 2021 12:47:58 GMT
43
234
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.92..@fluentui/react-avatar_v9.0.0-alpha.93)
44
235
 
45
236
  ### Changes
@@ -52,13 +243,13 @@ Tue, 05 Oct 2021 12:47:58 GMT
52
243
 
53
244
  ## [9.0.0-alpha.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.92)
54
245
 
55
- Tue, 05 Oct 2021 09:28:07 GMT
246
+ Tue, 05 Oct 2021 09:28:07 GMT
56
247
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.91..@fluentui/react-avatar_v9.0.0-alpha.92)
57
248
 
58
249
  ### Changes
59
250
 
60
251
  - Adds ForwardRefComponent to components declaration ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
61
- - Fix Avatar stories after #19449 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
252
+ - Fix Avatar stories after #19449 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
62
253
  - Bump @fluentui/react-badge to v9.0.0-alpha.91 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
63
254
  - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
64
255
  - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
@@ -68,7 +259,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
68
259
 
69
260
  ## [9.0.0-alpha.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.91)
70
261
 
71
- Mon, 04 Oct 2021 08:03:04 GMT
262
+ Mon, 04 Oct 2021 08:03:04 GMT
72
263
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.90..@fluentui/react-avatar_v9.0.0-alpha.91)
73
264
 
74
265
  ### Changes
@@ -77,7 +268,7 @@ Mon, 04 Oct 2021 08:03:04 GMT
77
268
 
78
269
  ## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.90)
79
270
 
80
- Fri, 01 Oct 2021 14:13:08 GMT
271
+ Fri, 01 Oct 2021 14:13:08 GMT
81
272
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.88..@fluentui/react-avatar_v9.0.0-alpha.90)
82
273
 
83
274
  ### Changes
@@ -93,7 +284,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
93
284
 
94
285
  ## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.88)
95
286
 
96
- Wed, 29 Sep 2021 08:06:11 GMT
287
+ Wed, 29 Sep 2021 08:06:11 GMT
97
288
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.87..@fluentui/react-avatar_v9.0.0-alpha.88)
98
289
 
99
290
  ### Changes
@@ -107,7 +298,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
107
298
 
108
299
  ## [9.0.0-alpha.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.87)
109
300
 
110
- Mon, 27 Sep 2021 08:06:00 GMT
301
+ Mon, 27 Sep 2021 08:06:00 GMT
111
302
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.86..@fluentui/react-avatar_v9.0.0-alpha.87)
112
303
 
113
304
  ### Changes
@@ -122,7 +313,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
122
313
 
123
314
  ## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.86)
124
315
 
125
- Fri, 24 Sep 2021 09:17:17 GMT
316
+ Fri, 24 Sep 2021 09:17:17 GMT
126
317
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.85..@fluentui/react-avatar_v9.0.0-alpha.86)
127
318
 
128
319
  ### Changes
@@ -137,7 +328,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
137
328
 
138
329
  ## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.85)
139
330
 
140
- Thu, 23 Sep 2021 08:21:34 GMT
331
+ Thu, 23 Sep 2021 08:21:34 GMT
141
332
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.84..@fluentui/react-avatar_v9.0.0-alpha.85)
142
333
 
143
334
  ### Changes
@@ -152,7 +343,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
152
343
 
153
344
  ## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.84)
154
345
 
155
- Wed, 22 Sep 2021 10:10:07 GMT
346
+ Wed, 22 Sep 2021 10:10:07 GMT
156
347
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.83..@fluentui/react-avatar_v9.0.0-alpha.84)
157
348
 
158
349
  ### Changes
@@ -167,7 +358,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
167
358
 
168
359
  ## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.83)
169
360
 
170
- Tue, 21 Sep 2021 07:42:34 GMT
361
+ Tue, 21 Sep 2021 07:42:34 GMT
171
362
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.82..@fluentui/react-avatar_v9.0.0-alpha.83)
172
363
 
173
364
  ### Changes
@@ -182,7 +373,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
182
373
 
183
374
  ## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.82)
184
375
 
185
- Mon, 20 Sep 2021 07:36:26 GMT
376
+ Mon, 20 Sep 2021 07:36:26 GMT
186
377
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.81..@fluentui/react-avatar_v9.0.0-alpha.82)
187
378
 
188
379
  ### Changes
@@ -191,7 +382,7 @@ Mon, 20 Sep 2021 07:36:26 GMT
191
382
 
192
383
  ## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.81)
193
384
 
194
- Fri, 17 Sep 2021 07:35:26 GMT
385
+ Fri, 17 Sep 2021 07:35:26 GMT
195
386
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.80..@fluentui/react-avatar_v9.0.0-alpha.81)
196
387
 
197
388
  ### Changes
@@ -200,7 +391,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
200
391
 
201
392
  ## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.80)
202
393
 
203
- Thu, 16 Sep 2021 07:38:39 GMT
394
+ Thu, 16 Sep 2021 07:38:39 GMT
204
395
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.79..@fluentui/react-avatar_v9.0.0-alpha.80)
205
396
 
206
397
  ### Changes
@@ -209,7 +400,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
209
400
 
210
401
  ## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.79)
211
402
 
212
- Tue, 14 Sep 2021 20:09:02 GMT
403
+ Tue, 14 Sep 2021 20:09:02 GMT
213
404
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.78..@fluentui/react-avatar_v9.0.0-alpha.79)
214
405
 
215
406
  ### Changes
@@ -218,7 +409,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
218
409
 
219
410
  ## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.78)
220
411
 
221
- Fri, 10 Sep 2021 16:31:53 GMT
412
+ Fri, 10 Sep 2021 16:31:53 GMT
222
413
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.77..@fluentui/react-avatar_v9.0.0-alpha.78)
223
414
 
224
415
  ### Changes
@@ -228,7 +419,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
228
419
 
229
420
  ## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.77)
230
421
 
231
- Fri, 10 Sep 2021 07:39:51 GMT
422
+ Fri, 10 Sep 2021 07:39:51 GMT
232
423
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.76..@fluentui/react-avatar_v9.0.0-alpha.77)
233
424
 
234
425
  ### Changes
@@ -237,7 +428,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
237
428
 
238
429
  ## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.76)
239
430
 
240
- Mon, 06 Sep 2021 07:34:53 GMT
431
+ Mon, 06 Sep 2021 07:34:53 GMT
241
432
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.75..@fluentui/react-avatar_v9.0.0-alpha.76)
242
433
 
243
434
  ### Changes
@@ -246,7 +437,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
246
437
 
247
438
  ## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.75)
248
439
 
249
- Thu, 02 Sep 2021 07:36:46 GMT
440
+ Thu, 02 Sep 2021 07:36:46 GMT
250
441
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.74..@fluentui/react-avatar_v9.0.0-alpha.75)
251
442
 
252
443
  ### Patches
@@ -259,7 +450,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
259
450
 
260
451
  ## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.74)
261
452
 
262
- Wed, 01 Sep 2021 07:39:56 GMT
453
+ Wed, 01 Sep 2021 07:39:56 GMT
263
454
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.73..@fluentui/react-avatar_v9.0.0-alpha.74)
264
455
 
265
456
  ### Changes
@@ -268,7 +459,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
268
459
 
269
460
  ## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.73)
270
461
 
271
- Tue, 31 Aug 2021 07:37:47 GMT
462
+ Tue, 31 Aug 2021 07:37:47 GMT
272
463
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.72..@fluentui/react-avatar_v9.0.0-alpha.73)
273
464
 
274
465
  ### Changes
@@ -277,7 +468,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
277
468
 
278
469
  ## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.72)
279
470
 
280
- Mon, 30 Aug 2021 07:35:05 GMT
471
+ Mon, 30 Aug 2021 07:35:05 GMT
281
472
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.71..@fluentui/react-avatar_v9.0.0-alpha.72)
282
473
 
283
474
  ### Changes
@@ -286,7 +477,7 @@ Mon, 30 Aug 2021 07:35:05 GMT
286
477
 
287
478
  ## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.71)
288
479
 
289
- Fri, 27 Aug 2021 07:33:32 GMT
480
+ Fri, 27 Aug 2021 07:33:32 GMT
290
481
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.70..@fluentui/react-avatar_v9.0.0-alpha.71)
291
482
 
292
483
  ### Changes
@@ -295,7 +486,7 @@ Fri, 27 Aug 2021 07:33:32 GMT
295
486
 
296
487
  ## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.70)
297
488
 
298
- Thu, 26 Aug 2021 07:35:43 GMT
489
+ Thu, 26 Aug 2021 07:35:43 GMT
299
490
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.69..@fluentui/react-avatar_v9.0.0-alpha.70)
300
491
 
301
492
  ### Changes
@@ -304,7 +495,7 @@ Thu, 26 Aug 2021 07:35:43 GMT
304
495
 
305
496
  ## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.69)
306
497
 
307
- Fri, 20 Aug 2021 07:37:28 GMT
498
+ Fri, 20 Aug 2021 07:37:28 GMT
308
499
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.68..@fluentui/react-avatar_v9.0.0-alpha.69)
309
500
 
310
501
  ### Changes
@@ -313,7 +504,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
313
504
 
314
505
  ## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.68)
315
506
 
316
- Thu, 19 Aug 2021 07:41:35 GMT
507
+ Thu, 19 Aug 2021 07:41:35 GMT
317
508
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.67..@fluentui/react-avatar_v9.0.0-alpha.68)
318
509
 
319
510
  ### Changes
@@ -322,7 +513,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
322
513
 
323
514
  ## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.67)
324
515
 
325
- Fri, 13 Aug 2021 07:36:34 GMT
516
+ Fri, 13 Aug 2021 07:36:34 GMT
326
517
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.66..@fluentui/react-avatar_v9.0.0-alpha.67)
327
518
 
328
519
  ### Changes
@@ -331,7 +522,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
331
522
 
332
523
  ## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.66)
333
524
 
334
- Wed, 11 Aug 2021 07:34:54 GMT
525
+ Wed, 11 Aug 2021 07:34:54 GMT
335
526
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.65..@fluentui/react-avatar_v9.0.0-alpha.66)
336
527
 
337
528
  ### Changes
@@ -340,7 +531,7 @@ Wed, 11 Aug 2021 07:34:54 GMT
340
531
 
341
532
  ## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.65)
342
533
 
343
- Fri, 06 Aug 2021 07:35:14 GMT
534
+ Fri, 06 Aug 2021 07:35:14 GMT
344
535
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.64..@fluentui/react-avatar_v9.0.0-alpha.65)
345
536
 
346
537
  ### Changes
@@ -349,7 +540,7 @@ Fri, 06 Aug 2021 07:35:14 GMT
349
540
 
350
541
  ## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.64)
351
542
 
352
- Thu, 05 Aug 2021 07:34:24 GMT
543
+ Thu, 05 Aug 2021 07:34:24 GMT
353
544
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.63..@fluentui/react-avatar_v9.0.0-alpha.64)
354
545
 
355
546
  ### Changes
@@ -358,7 +549,7 @@ Thu, 05 Aug 2021 07:34:24 GMT
358
549
 
359
550
  ## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.63)
360
551
 
361
- Tue, 03 Aug 2021 07:39:30 GMT
552
+ Tue, 03 Aug 2021 07:39:30 GMT
362
553
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.62..@fluentui/react-avatar_v9.0.0-alpha.63)
363
554
 
364
555
  ### Patches
@@ -373,7 +564,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
373
564
 
374
565
  ## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.62)
375
566
 
376
- Mon, 02 Aug 2021 07:36:20 GMT
567
+ Mon, 02 Aug 2021 07:36:20 GMT
377
568
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.61..@fluentui/react-avatar_v9.0.0-alpha.62)
378
569
 
379
570
  ### Changes
@@ -382,7 +573,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
382
573
 
383
574
  ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.61)
384
575
 
385
- Mon, 26 Jul 2021 07:37:30 GMT
576
+ Mon, 26 Jul 2021 07:37:30 GMT
386
577
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.60..@fluentui/react-avatar_v9.0.0-alpha.61)
387
578
 
388
579
  ### Changes
@@ -391,7 +582,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
391
582
 
392
583
  ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.60)
393
584
 
394
- Fri, 23 Jul 2021 07:38:19 GMT
585
+ Fri, 23 Jul 2021 07:38:19 GMT
395
586
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.59..@fluentui/react-avatar_v9.0.0-alpha.60)
396
587
 
397
588
  ### Changes
@@ -400,7 +591,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
400
591
 
401
592
  ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.59)
402
593
 
403
- Thu, 22 Jul 2021 07:36:55 GMT
594
+ Thu, 22 Jul 2021 07:36:55 GMT
404
595
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.58..@fluentui/react-avatar_v9.0.0-alpha.59)
405
596
 
406
597
  ### Changes
@@ -409,7 +600,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
409
600
 
410
601
  ## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.58)
411
602
 
412
- Tue, 20 Jul 2021 22:23:17 GMT
603
+ Tue, 20 Jul 2021 22:23:17 GMT
413
604
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.57..@fluentui/react-avatar_v9.0.0-alpha.58)
414
605
 
415
606
  ### Changes
@@ -418,7 +609,7 @@ Tue, 20 Jul 2021 22:23:17 GMT
418
609
 
419
610
  ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.57)
420
611
 
421
- Fri, 16 Jul 2021 22:53:17 GMT
612
+ Fri, 16 Jul 2021 22:53:17 GMT
422
613
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.56..@fluentui/react-avatar_v9.0.0-alpha.57)
423
614
 
424
615
  ### Changes
@@ -427,7 +618,7 @@ Fri, 16 Jul 2021 22:53:17 GMT
427
618
 
428
619
  ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.56)
429
620
 
430
- Thu, 15 Jul 2021 07:36:18 GMT
621
+ Thu, 15 Jul 2021 07:36:18 GMT
431
622
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.55..@fluentui/react-avatar_v9.0.0-alpha.56)
432
623
 
433
624
  ### Changes
@@ -436,7 +627,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
436
627
 
437
628
  ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.55)
438
629
 
439
- Tue, 13 Jul 2021 22:32:58 GMT
630
+ Tue, 13 Jul 2021 22:32:58 GMT
440
631
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.54..@fluentui/react-avatar_v9.0.0-alpha.55)
441
632
 
442
633
  ### Patches
@@ -445,7 +636,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
445
636
 
446
637
  ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.54)
447
638
 
448
- Tue, 13 Jul 2021 07:35:36 GMT
639
+ Tue, 13 Jul 2021 07:35:36 GMT
449
640
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.53..@fluentui/react-avatar_v9.0.0-alpha.54)
450
641
 
451
642
  ### Changes
@@ -454,7 +645,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
454
645
 
455
646
  ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.53)
456
647
 
457
- Fri, 09 Jul 2021 07:39:31 GMT
648
+ Fri, 09 Jul 2021 07:39:31 GMT
458
649
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.52..@fluentui/react-avatar_v9.0.0-alpha.53)
459
650
 
460
651
  ### Patches
@@ -469,7 +660,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
469
660
 
470
661
  ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.52)
471
662
 
472
- Fri, 02 Jul 2021 23:15:55 GMT
663
+ Fri, 02 Jul 2021 23:15:55 GMT
473
664
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.51..@fluentui/react-avatar_v9.0.0-alpha.52)
474
665
 
475
666
  ### Changes
@@ -478,7 +669,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
478
669
 
479
670
  ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.51)
480
671
 
481
- Fri, 02 Jul 2021 07:37:06 GMT
672
+ Fri, 02 Jul 2021 07:37:06 GMT
482
673
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.50..@fluentui/react-avatar_v9.0.0-alpha.51)
483
674
 
484
675
  ### Changes
@@ -487,7 +678,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
487
678
 
488
679
  ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.50)
489
680
 
490
- Thu, 01 Jul 2021 07:35:05 GMT
681
+ Thu, 01 Jul 2021 07:35:05 GMT
491
682
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.49..@fluentui/react-avatar_v9.0.0-alpha.50)
492
683
 
493
684
  ### Changes
@@ -496,7 +687,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
496
687
 
497
688
  ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.49)
498
689
 
499
- Wed, 30 Jun 2021 07:38:35 GMT
690
+ Wed, 30 Jun 2021 07:38:35 GMT
500
691
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.48..@fluentui/react-avatar_v9.0.0-alpha.49)
501
692
 
502
693
  ### Changes
@@ -505,7 +696,7 @@ Wed, 30 Jun 2021 07:38:35 GMT
505
696
 
506
697
  ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.48)
507
698
 
508
- Tue, 29 Jun 2021 07:33:32 GMT
699
+ Tue, 29 Jun 2021 07:33:32 GMT
509
700
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.47..@fluentui/react-avatar_v9.0.0-alpha.48)
510
701
 
511
702
  ### Changes
@@ -514,7 +705,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
514
705
 
515
706
  ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.47)
516
707
 
517
- Tue, 22 Jun 2021 07:35:11 GMT
708
+ Tue, 22 Jun 2021 07:35:11 GMT
518
709
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.46..@fluentui/react-avatar_v9.0.0-alpha.47)
519
710
 
520
711
  ### Changes
@@ -523,7 +714,7 @@ Tue, 22 Jun 2021 07:35:11 GMT
523
714
 
524
715
  ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.46)
525
716
 
526
- Tue, 15 Jun 2021 07:40:20 GMT
717
+ Tue, 15 Jun 2021 07:40:20 GMT
527
718
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.45..@fluentui/react-avatar_v9.0.0-alpha.46)
528
719
 
529
720
  ### Changes
@@ -532,7 +723,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
532
723
 
533
724
  ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.45)
534
725
 
535
- Mon, 07 Jun 2021 07:38:15 GMT
726
+ Mon, 07 Jun 2021 07:38:15 GMT
536
727
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.44..@fluentui/react-avatar_v9.0.0-alpha.45)
537
728
 
538
729
  ### Patches
@@ -547,7 +738,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
547
738
 
548
739
  ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.44)
549
740
 
550
- Fri, 04 Jun 2021 07:37:23 GMT
741
+ Fri, 04 Jun 2021 07:37:23 GMT
551
742
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.43..@fluentui/react-avatar_v9.0.0-alpha.44)
552
743
 
553
744
  ### Changes
@@ -556,7 +747,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
556
747
 
557
748
  ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.43)
558
749
 
559
- Thu, 03 Jun 2021 07:36:03 GMT
750
+ Thu, 03 Jun 2021 07:36:03 GMT
560
751
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.42..@fluentui/react-avatar_v9.0.0-alpha.43)
561
752
 
562
753
  ### Changes
@@ -565,7 +756,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
565
756
 
566
757
  ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.42)
567
758
 
568
- Wed, 02 Jun 2021 07:37:15 GMT
759
+ Wed, 02 Jun 2021 07:37:15 GMT
569
760
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.41..@fluentui/react-avatar_v9.0.0-alpha.42)
570
761
 
571
762
  ### Changes
@@ -574,7 +765,7 @@ Wed, 02 Jun 2021 07:37:15 GMT
574
765
 
575
766
  ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.41)
576
767
 
577
- Mon, 31 May 2021 07:33:15 GMT
768
+ Mon, 31 May 2021 07:33:15 GMT
578
769
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.40..@fluentui/react-avatar_v9.0.0-alpha.41)
579
770
 
580
771
  ### Changes
@@ -583,7 +774,7 @@ Mon, 31 May 2021 07:33:15 GMT
583
774
 
584
775
  ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.40)
585
776
 
586
- Wed, 26 May 2021 07:35:43 GMT
777
+ Wed, 26 May 2021 07:35:43 GMT
587
778
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.39..@fluentui/react-avatar_v9.0.0-alpha.40)
588
779
 
589
780
  ### Changes
@@ -592,7 +783,7 @@ Wed, 26 May 2021 07:35:43 GMT
592
783
 
593
784
  ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.39)
594
785
 
595
- Fri, 21 May 2021 07:34:54 GMT
786
+ Fri, 21 May 2021 07:34:54 GMT
596
787
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.38..@fluentui/react-avatar_v9.0.0-alpha.39)
597
788
 
598
789
  ### Changes
@@ -601,7 +792,7 @@ Fri, 21 May 2021 07:34:54 GMT
601
792
 
602
793
  ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.38)
603
794
 
604
- Thu, 20 May 2021 07:41:54 GMT
795
+ Thu, 20 May 2021 07:41:54 GMT
605
796
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.37..@fluentui/react-avatar_v9.0.0-alpha.38)
606
797
 
607
798
  ### Patches
@@ -616,7 +807,7 @@ Thu, 20 May 2021 07:41:54 GMT
616
807
 
617
808
  ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.37)
618
809
 
619
- Wed, 19 May 2021 07:34:20 GMT
810
+ Wed, 19 May 2021 07:34:20 GMT
620
811
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.36..@fluentui/react-avatar_v9.0.0-alpha.37)
621
812
 
622
813
  ### Patches
@@ -629,7 +820,7 @@ Wed, 19 May 2021 07:34:20 GMT
629
820
 
630
821
  ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.36)
631
822
 
632
- Tue, 18 May 2021 07:34:38 GMT
823
+ Tue, 18 May 2021 07:34:38 GMT
633
824
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.35..@fluentui/react-avatar_v9.0.0-alpha.36)
634
825
 
635
826
  ### Changes
@@ -638,7 +829,7 @@ Tue, 18 May 2021 07:34:38 GMT
638
829
 
639
830
  ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.35)
640
831
 
641
- Thu, 13 May 2021 07:36:55 GMT
832
+ Thu, 13 May 2021 07:36:55 GMT
642
833
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.34..@fluentui/react-avatar_v9.0.0-alpha.35)
643
834
 
644
835
  ### Changes
@@ -647,7 +838,7 @@ Thu, 13 May 2021 07:36:55 GMT
647
838
 
648
839
  ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.34)
649
840
 
650
- Wed, 12 May 2021 07:36:20 GMT
841
+ Wed, 12 May 2021 07:36:20 GMT
651
842
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.33..@fluentui/react-avatar_v9.0.0-alpha.34)
652
843
 
653
844
  ### Changes
@@ -656,7 +847,7 @@ Wed, 12 May 2021 07:36:20 GMT
656
847
 
657
848
  ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.33)
658
849
 
659
- Mon, 10 May 2021 07:36:07 GMT
850
+ Mon, 10 May 2021 07:36:07 GMT
660
851
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.32..@fluentui/react-avatar_v9.0.0-alpha.33)
661
852
 
662
853
  ### Changes
@@ -665,7 +856,7 @@ Mon, 10 May 2021 07:36:07 GMT
665
856
 
666
857
  ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.32)
667
858
 
668
- Wed, 05 May 2021 07:36:50 GMT
859
+ Wed, 05 May 2021 07:36:50 GMT
669
860
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.31..@fluentui/react-avatar_v9.0.0-alpha.32)
670
861
 
671
862
  ### Changes
@@ -674,7 +865,7 @@ Wed, 05 May 2021 07:36:50 GMT
674
865
 
675
866
  ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.31)
676
867
 
677
- Mon, 03 May 2021 07:45:19 GMT
868
+ Mon, 03 May 2021 07:45:19 GMT
678
869
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.30..@fluentui/react-avatar_v9.0.0-alpha.31)
679
870
 
680
871
  ### Changes
@@ -683,7 +874,7 @@ Mon, 03 May 2021 07:45:19 GMT
683
874
 
684
875
  ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.30)
685
876
 
686
- Fri, 30 Apr 2021 07:42:23 GMT
877
+ Fri, 30 Apr 2021 07:42:23 GMT
687
878
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.29..@fluentui/react-avatar_v9.0.0-alpha.30)
688
879
 
689
880
  ### Patches
@@ -698,7 +889,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
698
889
 
699
890
  ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.29)
700
891
 
701
- Tue, 27 Apr 2021 07:34:03 GMT
892
+ Tue, 27 Apr 2021 07:34:03 GMT
702
893
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.28..@fluentui/react-avatar_v9.0.0-alpha.29)
703
894
 
704
895
  ### Changes
@@ -707,7 +898,7 @@ Tue, 27 Apr 2021 07:34:03 GMT
707
898
 
708
899
  ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.28)
709
900
 
710
- Mon, 26 Apr 2021 07:34:31 GMT
901
+ Mon, 26 Apr 2021 07:34:31 GMT
711
902
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.27..@fluentui/react-avatar_v9.0.0-alpha.28)
712
903
 
713
904
  ### Changes
@@ -716,7 +907,7 @@ Mon, 26 Apr 2021 07:34:31 GMT
716
907
 
717
908
  ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.27)
718
909
 
719
- Fri, 23 Apr 2021 07:37:10 GMT
910
+ Fri, 23 Apr 2021 07:37:10 GMT
720
911
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.26..@fluentui/react-avatar_v9.0.0-alpha.27)
721
912
 
722
913
  ### Patches
@@ -731,7 +922,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
731
922
 
732
923
  ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.26)
733
924
 
734
- Thu, 22 Apr 2021 07:33:28 GMT
925
+ Thu, 22 Apr 2021 07:33:28 GMT
735
926
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.25..@fluentui/react-avatar_v9.0.0-alpha.26)
736
927
 
737
928
  ### Changes
@@ -740,7 +931,7 @@ Thu, 22 Apr 2021 07:33:28 GMT
740
931
 
741
932
  ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.25)
742
933
 
743
- Wed, 21 Apr 2021 07:31:50 GMT
934
+ Wed, 21 Apr 2021 07:31:50 GMT
744
935
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.24..@fluentui/react-avatar_v9.0.0-alpha.25)
745
936
 
746
937
  ### Changes
@@ -749,7 +940,7 @@ Wed, 21 Apr 2021 07:31:50 GMT
749
940
 
750
941
  ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.24)
751
942
 
752
- Tue, 20 Apr 2021 07:31:35 GMT
943
+ Tue, 20 Apr 2021 07:31:35 GMT
753
944
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.23..@fluentui/react-avatar_v9.0.0-alpha.24)
754
945
 
755
946
  ### Changes
@@ -758,7 +949,7 @@ Tue, 20 Apr 2021 07:31:35 GMT
758
949
 
759
950
  ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.23)
760
951
 
761
- Fri, 16 Apr 2021 18:08:21 GMT
952
+ Fri, 16 Apr 2021 18:08:21 GMT
762
953
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.22..@fluentui/react-avatar_v9.0.0-alpha.23)
763
954
 
764
955
  ### Changes
@@ -767,7 +958,7 @@ Fri, 16 Apr 2021 18:08:21 GMT
767
958
 
768
959
  ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.22)
769
960
 
770
- Wed, 14 Apr 2021 07:34:12 GMT
961
+ Wed, 14 Apr 2021 07:34:12 GMT
771
962
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.21..@fluentui/react-avatar_v9.0.0-alpha.22)
772
963
 
773
964
  ### Changes
@@ -776,7 +967,7 @@ Wed, 14 Apr 2021 07:34:12 GMT
776
967
 
777
968
  ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.21)
778
969
 
779
- Fri, 09 Apr 2021 07:31:06 GMT
970
+ Fri, 09 Apr 2021 07:31:06 GMT
780
971
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.20..@fluentui/react-avatar_v9.0.0-alpha.21)
781
972
 
782
973
  ### Changes
@@ -785,7 +976,7 @@ Fri, 09 Apr 2021 07:31:06 GMT
785
976
 
786
977
  ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.20)
787
978
 
788
- Thu, 08 Apr 2021 07:33:06 GMT
979
+ Thu, 08 Apr 2021 07:33:06 GMT
789
980
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.19..@fluentui/react-avatar_v9.0.0-alpha.20)
790
981
 
791
982
  ### Changes
@@ -794,7 +985,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
794
985
 
795
986
  ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.19)
796
987
 
797
- Thu, 01 Apr 2021 20:13:37 GMT
988
+ Thu, 01 Apr 2021 20:13:37 GMT
798
989
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.18..@fluentui/react-avatar_v9.0.0-alpha.19)
799
990
 
800
991
  ### Changes
@@ -803,7 +994,7 @@ Thu, 01 Apr 2021 20:13:37 GMT
803
994
 
804
995
  ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.18)
805
996
 
806
- Wed, 31 Mar 2021 00:53:43 GMT
997
+ Wed, 31 Mar 2021 00:53:43 GMT
807
998
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.17..@fluentui/react-avatar_v9.0.0-alpha.18)
808
999
 
809
1000
  ### Patches
@@ -819,7 +1010,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
819
1010
 
820
1011
  ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.17)
821
1012
 
822
- Tue, 30 Mar 2021 07:34:45 GMT
1013
+ Tue, 30 Mar 2021 07:34:45 GMT
823
1014
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.16..@fluentui/react-avatar_v9.0.0-alpha.17)
824
1015
 
825
1016
  ### Changes
@@ -828,7 +1019,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
828
1019
 
829
1020
  ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.16)
830
1021
 
831
- Fri, 26 Mar 2021 07:32:34 GMT
1022
+ Fri, 26 Mar 2021 07:32:34 GMT
832
1023
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.15..@fluentui/react-avatar_v9.0.0-alpha.16)
833
1024
 
834
1025
  ### Changes
@@ -837,7 +1028,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
837
1028
 
838
1029
  ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.15)
839
1030
 
840
- Thu, 25 Mar 2021 07:33:24 GMT
1031
+ Thu, 25 Mar 2021 07:33:24 GMT
841
1032
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.14..@fluentui/react-avatar_v9.0.0-alpha.15)
842
1033
 
843
1034
  ### Changes
@@ -846,7 +1037,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
846
1037
 
847
1038
  ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.14)
848
1039
 
849
- Wed, 24 Mar 2021 07:32:21 GMT
1040
+ Wed, 24 Mar 2021 07:32:21 GMT
850
1041
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.13..@fluentui/react-avatar_v9.0.0-alpha.14)
851
1042
 
852
1043
  ### Changes
@@ -855,7 +1046,7 @@ Wed, 24 Mar 2021 07:32:21 GMT
855
1046
 
856
1047
  ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.13)
857
1048
 
858
- Tue, 23 Mar 2021 07:31:43 GMT
1049
+ Tue, 23 Mar 2021 07:31:43 GMT
859
1050
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.12..@fluentui/react-avatar_v9.0.0-alpha.13)
860
1051
 
861
1052
  ### Changes
@@ -864,7 +1055,7 @@ Tue, 23 Mar 2021 07:31:43 GMT
864
1055
 
865
1056
  ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.12)
866
1057
 
867
- Thu, 18 Mar 2021 20:15:34 GMT
1058
+ Thu, 18 Mar 2021 20:15:34 GMT
868
1059
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.11..@fluentui/react-avatar_v9.0.0-alpha.12)
869
1060
 
870
1061
  ### Changes
@@ -873,7 +1064,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
873
1064
 
874
1065
  ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.11)
875
1066
 
876
- Tue, 16 Mar 2021 07:32:44 GMT
1067
+ Tue, 16 Mar 2021 07:32:44 GMT
877
1068
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.10..@fluentui/react-avatar_v9.0.0-alpha.11)
878
1069
 
879
1070
  ### Patches
@@ -882,7 +1073,7 @@ Tue, 16 Mar 2021 07:32:44 GMT
882
1073
 
883
1074
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.10)
884
1075
 
885
- Mon, 15 Mar 2021 07:36:20 GMT
1076
+ Mon, 15 Mar 2021 07:36:20 GMT
886
1077
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.9..@fluentui/react-avatar_v9.0.0-alpha.10)
887
1078
 
888
1079
  ### Changes
@@ -891,7 +1082,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
891
1082
 
892
1083
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.9)
893
1084
 
894
- Fri, 12 Mar 2021 20:04:27 GMT
1085
+ Fri, 12 Mar 2021 20:04:27 GMT
895
1086
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.8..@fluentui/react-avatar_v9.0.0-alpha.9)
896
1087
 
897
1088
  ### Patches
@@ -904,7 +1095,7 @@ Fri, 12 Mar 2021 20:04:27 GMT
904
1095
 
905
1096
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.8)
906
1097
 
907
- Wed, 10 Mar 2021 07:34:39 GMT
1098
+ Wed, 10 Mar 2021 07:34:39 GMT
908
1099
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.7..@fluentui/react-avatar_v9.0.0-alpha.8)
909
1100
 
910
1101
  ### Changes
@@ -913,7 +1104,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
913
1104
 
914
1105
  ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.7)
915
1106
 
916
- Fri, 05 Mar 2021 20:30:59 GMT
1107
+ Fri, 05 Mar 2021 20:30:59 GMT
917
1108
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.6..@fluentui/react-avatar_v9.0.0-alpha.7)
918
1109
 
919
1110
  ### Changes
@@ -922,7 +1113,7 @@ Fri, 05 Mar 2021 20:30:59 GMT
922
1113
 
923
1114
  ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.6)
924
1115
 
925
- Wed, 03 Mar 2021 00:10:09 GMT
1116
+ Wed, 03 Mar 2021 00:10:09 GMT
926
1117
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.5..@fluentui/react-avatar_v9.0.0-alpha.6)
927
1118
 
928
1119
  ### Patches
@@ -935,7 +1126,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
935
1126
 
936
1127
  ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.5)
937
1128
 
938
- Tue, 02 Mar 2021 07:24:27 GMT
1129
+ Tue, 02 Mar 2021 07:24:27 GMT
939
1130
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.4..@fluentui/react-avatar_v9.0.0-alpha.5)
940
1131
 
941
1132
  ### Changes
@@ -945,7 +1136,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
945
1136
 
946
1137
  ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.4)
947
1138
 
948
- Fri, 26 Feb 2021 01:16:27 GMT
1139
+ Fri, 26 Feb 2021 01:16:27 GMT
949
1140
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.3..@fluentui/react-avatar_v9.0.0-alpha.4)
950
1141
 
951
1142
  ### Patches
@@ -963,7 +1154,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
963
1154
 
964
1155
  ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.3)
965
1156
 
966
- Thu, 25 Feb 2021 20:16:39 GMT
1157
+ Thu, 25 Feb 2021 20:16:39 GMT
967
1158
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.2..@fluentui/react-avatar_v9.0.0-alpha.3)
968
1159
 
969
1160
  ### Changes
@@ -972,7 +1163,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
972
1163
 
973
1164
  ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.2)
974
1165
 
975
- Thu, 25 Feb 2021 01:15:27 GMT
1166
+ Thu, 25 Feb 2021 01:15:27 GMT
976
1167
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v9.0.0-alpha.1..@fluentui/react-avatar_v9.0.0-alpha.2)
977
1168
 
978
1169
  ### Patches
@@ -981,7 +1172,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
981
1172
 
982
1173
  ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v9.0.0-alpha.1)
983
1174
 
984
- Wed, 24 Feb 2021 00:05:29 GMT
1175
+ Wed, 24 Feb 2021 00:05:29 GMT
985
1176
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.12.0..@fluentui/react-avatar_v9.0.0-alpha.1)
986
1177
 
987
1178
  ### Changes
@@ -992,7 +1183,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
992
1183
 
993
1184
  ## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.12.0)
994
1185
 
995
- Mon, 22 Feb 2021 12:26:22 GMT
1186
+ Mon, 22 Feb 2021 12:26:22 GMT
996
1187
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.11.1..@fluentui/react-avatar_v0.12.0)
997
1188
 
998
1189
  ### Minor changes
@@ -1012,7 +1203,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
1012
1203
 
1013
1204
  ## [0.11.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.11.1)
1014
1205
 
1015
- Thu, 18 Feb 2021 19:38:50 GMT
1206
+ Thu, 18 Feb 2021 19:38:50 GMT
1016
1207
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.11.0..@fluentui/react-avatar_v0.11.1)
1017
1208
 
1018
1209
  ### Patches
@@ -1029,7 +1220,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
1029
1220
 
1030
1221
  ## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.11.0)
1031
1222
 
1032
- Thu, 18 Feb 2021 12:27:34 GMT
1223
+ Thu, 18 Feb 2021 12:27:34 GMT
1033
1224
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.10.1..@fluentui/react-avatar_v0.11.0)
1034
1225
 
1035
1226
  ### Minor changes
@@ -1054,7 +1245,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
1054
1245
 
1055
1246
  ## [0.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.10.1)
1056
1247
 
1057
- Wed, 17 Feb 2021 12:21:39 GMT
1248
+ Wed, 17 Feb 2021 12:21:39 GMT
1058
1249
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.10.0..@fluentui/react-avatar_v0.10.1)
1059
1250
 
1060
1251
  ### Patches
@@ -1063,7 +1254,7 @@ Wed, 17 Feb 2021 12:21:39 GMT
1063
1254
 
1064
1255
  ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.10.0)
1065
1256
 
1066
- Mon, 15 Feb 2021 12:22:00 GMT
1257
+ Mon, 15 Feb 2021 12:22:00 GMT
1067
1258
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.10.0..@fluentui/react-avatar_v0.10.0)
1068
1259
 
1069
1260
  ### Changes
@@ -1076,7 +1267,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
1076
1267
 
1077
1268
  ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.10.0)
1078
1269
 
1079
- Fri, 12 Feb 2021 12:26:20 GMT
1270
+ Fri, 12 Feb 2021 12:26:20 GMT
1080
1271
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.1..@fluentui/react-avatar_v0.10.0)
1081
1272
 
1082
1273
  ### Minor changes
@@ -1093,7 +1284,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
1093
1284
 
1094
1285
  ## [0.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.1)
1095
1286
 
1096
- Thu, 11 Feb 2021 00:58:10 GMT
1287
+ Thu, 11 Feb 2021 00:58:10 GMT
1097
1288
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.1..@fluentui/react-avatar_v0.9.1)
1098
1289
 
1099
1290
  ### Changes
@@ -1106,7 +1297,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
1106
1297
 
1107
1298
  ## [0.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.1)
1108
1299
 
1109
- Tue, 09 Feb 2021 00:56:52 GMT
1300
+ Tue, 09 Feb 2021 00:56:52 GMT
1110
1301
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.0..@fluentui/react-avatar_v0.9.1)
1111
1302
 
1112
1303
  ### Patches
@@ -1119,7 +1310,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
1119
1310
 
1120
1311
  ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.0)
1121
1312
 
1122
- Mon, 08 Feb 2021 12:23:08 GMT
1313
+ Mon, 08 Feb 2021 12:23:08 GMT
1123
1314
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.9.0..@fluentui/react-avatar_v0.9.0)
1124
1315
 
1125
1316
  ### Changes
@@ -1128,7 +1319,7 @@ Mon, 08 Feb 2021 12:23:08 GMT
1128
1319
 
1129
1320
  ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.9.0)
1130
1321
 
1131
- Wed, 03 Feb 2021 05:51:40 GMT
1322
+ Wed, 03 Feb 2021 05:51:40 GMT
1132
1323
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.3..@fluentui/react-avatar_v0.9.0)
1133
1324
 
1134
1325
  ### Minor changes
@@ -1137,7 +1328,7 @@ Wed, 03 Feb 2021 05:51:40 GMT
1137
1328
 
1138
1329
  ## [0.8.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.3)
1139
1330
 
1140
- Tue, 02 Feb 2021 12:21:54 GMT
1331
+ Tue, 02 Feb 2021 12:21:54 GMT
1141
1332
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2..@fluentui/react-avatar_v0.8.3)
1142
1333
 
1143
1334
  ### Patches
@@ -1146,7 +1337,7 @@ Tue, 02 Feb 2021 12:21:54 GMT
1146
1337
 
1147
1338
  ## [0.8.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2)
1148
1339
 
1149
- Mon, 01 Feb 2021 12:23:48 GMT
1340
+ Mon, 01 Feb 2021 12:23:48 GMT
1150
1341
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-18..@fluentui/react-avatar_v0.8.2)
1151
1342
 
1152
1343
  ### Patches
@@ -1156,7 +1347,7 @@ Mon, 01 Feb 2021 12:23:48 GMT
1156
1347
 
1157
1348
  ## [0.8.2-18](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-18)
1158
1349
 
1159
- Fri, 29 Jan 2021 12:21:00 GMT
1350
+ Fri, 29 Jan 2021 12:21:00 GMT
1160
1351
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-17..@fluentui/react-avatar_v0.8.2-18)
1161
1352
 
1162
1353
  ### Changes
@@ -1165,7 +1356,7 @@ Fri, 29 Jan 2021 12:21:00 GMT
1165
1356
 
1166
1357
  ## [0.8.2-17](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-17)
1167
1358
 
1168
- Thu, 28 Jan 2021 12:25:56 GMT
1359
+ Thu, 28 Jan 2021 12:25:56 GMT
1169
1360
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-15..@fluentui/react-avatar_v0.8.2-17)
1170
1361
 
1171
1362
  ### Changes
@@ -1175,16 +1366,16 @@ Thu, 28 Jan 2021 12:25:56 GMT
1175
1366
 
1176
1367
  ## [0.8.2-15](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-15)
1177
1368
 
1178
- Thu, 21 Jan 2021 12:36:12 GMT
1369
+ Thu, 21 Jan 2021 12:36:12 GMT
1179
1370
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-12..@fluentui/react-avatar_v0.8.2-15)
1180
1371
 
1181
1372
  ### Changes
1182
1373
 
1183
- - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1374
+ - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1184
1375
 
1185
1376
  ## [0.8.2-12](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-12)
1186
1377
 
1187
- Tue, 08 Dec 2020 12:28:09 GMT
1378
+ Tue, 08 Dec 2020 12:28:09 GMT
1188
1379
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.2-7..@fluentui/react-avatar_v0.8.2-12)
1189
1380
 
1190
1381
  ### Changes
@@ -1193,7 +1384,7 @@ Tue, 08 Dec 2020 12:28:09 GMT
1193
1384
 
1194
1385
  ## [0.8.2-7](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.2-7)
1195
1386
 
1196
- Wed, 18 Nov 2020 12:30:07 GMT
1387
+ Wed, 18 Nov 2020 12:30:07 GMT
1197
1388
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.1..@fluentui/react-avatar_v0.8.2-7)
1198
1389
 
1199
1390
  ### Changes
@@ -1202,7 +1393,7 @@ Wed, 18 Nov 2020 12:30:07 GMT
1202
1393
 
1203
1394
  ## [0.8.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.1)
1204
1395
 
1205
- Fri, 23 Oct 2020 23:25:40 GMT
1396
+ Fri, 23 Oct 2020 23:25:40 GMT
1206
1397
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.8.0..@fluentui/react-avatar_v0.8.1)
1207
1398
 
1208
1399
  ### Patches
@@ -1211,7 +1402,7 @@ Fri, 23 Oct 2020 23:25:40 GMT
1211
1402
 
1212
1403
  ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.8.0)
1213
1404
 
1214
- Fri, 23 Oct 2020 03:26:15 GMT
1405
+ Fri, 23 Oct 2020 03:26:15 GMT
1215
1406
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.6.4..@fluentui/react-avatar_v0.8.0)
1216
1407
 
1217
1408
  ### Minor changes
@@ -1228,7 +1419,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
1228
1419
 
1229
1420
  ## [0.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.6.4)
1230
1421
 
1231
- Fri, 25 Sep 2020 12:25:17 GMT
1422
+ Fri, 25 Sep 2020 12:25:17 GMT
1232
1423
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.6.0..@fluentui/react-avatar_v0.6.4)
1233
1424
 
1234
1425
  ### Patches
@@ -1238,7 +1429,7 @@ Fri, 25 Sep 2020 12:25:17 GMT
1238
1429
 
1239
1430
  ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.6.0)
1240
1431
 
1241
- Mon, 21 Sep 2020 12:22:29 GMT
1432
+ Mon, 21 Sep 2020 12:22:29 GMT
1242
1433
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.5.0..@fluentui/react-avatar_v0.6.0)
1243
1434
 
1244
1435
  ### Minor changes
@@ -1247,7 +1438,7 @@ Mon, 21 Sep 2020 12:22:29 GMT
1247
1438
 
1248
1439
  ## [0.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.5.0)
1249
1440
 
1250
- Tue, 15 Sep 2020 12:26:06 GMT
1441
+ Tue, 15 Sep 2020 12:26:06 GMT
1251
1442
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.4.0..@fluentui/react-avatar_v0.5.0)
1252
1443
 
1253
1444
  ### Minor changes
@@ -1256,7 +1447,7 @@ Tue, 15 Sep 2020 12:26:06 GMT
1256
1447
 
1257
1448
  ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.4.0)
1258
1449
 
1259
- Mon, 07 Sep 2020 12:26:26 GMT
1450
+ Mon, 07 Sep 2020 12:26:26 GMT
1260
1451
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.3.1..@fluentui/react-avatar_v0.4.0)
1261
1452
 
1262
1453
  ### Minor changes
@@ -1265,7 +1456,7 @@ Mon, 07 Sep 2020 12:26:26 GMT
1265
1456
 
1266
1457
  ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-avatar_v0.3.1)
1267
1458
 
1268
- Mon, 31 Aug 2020 12:25:46 GMT
1459
+ Mon, 31 Aug 2020 12:25:46 GMT
1269
1460
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-avatar_v0.1.1..@fluentui/react-avatar_v0.3.1)
1270
1461
 
1271
1462
  ### Patches