@fluentui/react-button 9.0.0-rc.1 → 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 (190) hide show
  1. package/CHANGELOG.json +475 -1
  2. package/CHANGELOG.md +297 -172
  3. package/dist/{react-button.d.ts → index.d.ts} +67 -31
  4. package/{lib → dist}/tsdoc-metadata.json +0 -0
  5. package/lib/Button.js.map +1 -1
  6. package/lib/CompoundButton.js.map +1 -1
  7. package/lib/MenuButton.js.map +1 -1
  8. package/lib/SplitButton.js.map +1 -1
  9. package/lib/ToggleButton.js.map +1 -1
  10. package/lib/components/Button/Button.js.map +1 -1
  11. package/lib/components/Button/Button.types.js.map +1 -1
  12. package/lib/components/Button/index.js +3 -1
  13. package/lib/components/Button/index.js.map +1 -1
  14. package/lib/components/Button/renderButton.js.map +1 -1
  15. package/lib/components/Button/useButton.js +2 -1
  16. package/lib/components/Button/useButton.js.map +1 -1
  17. package/lib/components/Button/useButtonStyles.js +155 -97
  18. package/lib/components/Button/useButtonStyles.js.map +1 -1
  19. package/lib/components/CompoundButton/CompoundButton.js.map +1 -1
  20. package/lib/components/CompoundButton/CompoundButton.types.js.map +1 -1
  21. package/lib/components/CompoundButton/index.js +3 -1
  22. package/lib/components/CompoundButton/index.js.map +1 -1
  23. package/lib/components/CompoundButton/renderCompoundButton.js.map +1 -1
  24. package/lib/components/CompoundButton/useCompoundButton.js +7 -2
  25. package/lib/components/CompoundButton/useCompoundButton.js.map +1 -1
  26. package/lib/components/CompoundButton/useCompoundButtonStyles.js +77 -55
  27. package/lib/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
  28. package/lib/components/MenuButton/MenuButton.js.map +1 -1
  29. package/lib/components/MenuButton/MenuButton.types.js.map +1 -1
  30. package/lib/components/MenuButton/index.js +3 -1
  31. package/lib/components/MenuButton/index.js.map +1 -1
  32. package/lib/components/MenuButton/renderMenuButton.js.map +1 -1
  33. package/lib/components/MenuButton/useMenuButton.js.map +1 -1
  34. package/lib/components/MenuButton/useMenuButtonStyles.js +39 -14
  35. package/lib/components/MenuButton/useMenuButtonStyles.js.map +1 -1
  36. package/lib/components/SplitButton/SplitButton.js.map +1 -1
  37. package/lib/components/SplitButton/SplitButton.types.js.map +1 -1
  38. package/lib/components/SplitButton/index.js +3 -1
  39. package/lib/components/SplitButton/index.js.map +1 -1
  40. package/lib/components/SplitButton/renderSplitButton.js.map +1 -1
  41. package/lib/components/SplitButton/useSplitButton.js +18 -5
  42. package/lib/components/SplitButton/useSplitButton.js.map +1 -1
  43. package/lib/components/SplitButton/useSplitButtonStyles.js +40 -27
  44. package/lib/components/SplitButton/useSplitButtonStyles.js.map +1 -1
  45. package/lib/components/ToggleButton/ToggleButton.js.map +1 -1
  46. package/lib/components/ToggleButton/ToggleButton.types.js.map +1 -1
  47. package/lib/components/ToggleButton/index.js +3 -1
  48. package/lib/components/ToggleButton/index.js.map +1 -1
  49. package/lib/components/ToggleButton/renderToggleButton.js.map +1 -1
  50. package/lib/components/ToggleButton/useToggleButton.js +3 -41
  51. package/lib/components/ToggleButton/useToggleButton.js.map +1 -1
  52. package/lib/components/ToggleButton/useToggleButtonStyles.js +85 -60
  53. package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
  54. package/lib/index.js +11 -5
  55. package/lib/index.js.map +1 -1
  56. package/lib/utils/index.js +2 -0
  57. package/lib/utils/index.js.map +1 -0
  58. package/lib/utils/useToggleState.js +37 -0
  59. package/lib/utils/useToggleState.js.map +1 -0
  60. package/lib-commonjs/Button.js.map +1 -1
  61. package/lib-commonjs/CompoundButton.js.map +1 -1
  62. package/lib-commonjs/MenuButton.js.map +1 -1
  63. package/lib-commonjs/SplitButton.js.map +1 -1
  64. package/lib-commonjs/ToggleButton.js.map +1 -1
  65. package/lib-commonjs/components/Button/Button.js.map +1 -1
  66. package/lib-commonjs/components/Button/Button.types.js.map +1 -1
  67. package/lib-commonjs/components/Button/index.js +9 -1
  68. package/lib-commonjs/components/Button/index.js.map +1 -1
  69. package/lib-commonjs/components/Button/renderButton.js.map +1 -1
  70. package/lib-commonjs/components/Button/useButton.js +2 -1
  71. package/lib-commonjs/components/Button/useButton.js.map +1 -1
  72. package/lib-commonjs/components/Button/useButtonStyles.js +157 -98
  73. package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -1
  74. package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -1
  75. package/lib-commonjs/components/CompoundButton/CompoundButton.types.js.map +1 -1
  76. package/lib-commonjs/components/CompoundButton/index.js +9 -1
  77. package/lib-commonjs/components/CompoundButton/index.js.map +1 -1
  78. package/lib-commonjs/components/CompoundButton/renderCompoundButton.js.map +1 -1
  79. package/lib-commonjs/components/CompoundButton/useCompoundButton.js +7 -2
  80. package/lib-commonjs/components/CompoundButton/useCompoundButton.js.map +1 -1
  81. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js +79 -57
  82. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
  83. package/lib-commonjs/components/MenuButton/MenuButton.js.map +1 -1
  84. package/lib-commonjs/components/MenuButton/MenuButton.types.js.map +1 -1
  85. package/lib-commonjs/components/MenuButton/index.js +9 -1
  86. package/lib-commonjs/components/MenuButton/index.js.map +1 -1
  87. package/lib-commonjs/components/MenuButton/renderMenuButton.js.map +1 -1
  88. package/lib-commonjs/components/MenuButton/useMenuButton.js.map +1 -1
  89. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +41 -15
  90. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -1
  91. package/lib-commonjs/components/SplitButton/SplitButton.js.map +1 -1
  92. package/lib-commonjs/components/SplitButton/SplitButton.types.js.map +1 -1
  93. package/lib-commonjs/components/SplitButton/index.js +9 -1
  94. package/lib-commonjs/components/SplitButton/index.js.map +1 -1
  95. package/lib-commonjs/components/SplitButton/renderSplitButton.js.map +1 -1
  96. package/lib-commonjs/components/SplitButton/useSplitButton.js +17 -4
  97. package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -1
  98. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +41 -28
  99. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -1
  100. package/lib-commonjs/components/ToggleButton/ToggleButton.js.map +1 -1
  101. package/lib-commonjs/components/ToggleButton/ToggleButton.types.js.map +1 -1
  102. package/lib-commonjs/components/ToggleButton/index.js +9 -1
  103. package/lib-commonjs/components/ToggleButton/index.js.map +1 -1
  104. package/lib-commonjs/components/ToggleButton/renderToggleButton.js.map +1 -1
  105. package/lib-commonjs/components/ToggleButton/useToggleButton.js +3 -42
  106. package/lib-commonjs/components/ToggleButton/useToggleButton.js.map +1 -1
  107. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js +89 -62
  108. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
  109. package/lib-commonjs/index.js +204 -6
  110. package/lib-commonjs/index.js.map +1 -1
  111. package/lib-commonjs/utils/index.js +10 -0
  112. package/lib-commonjs/utils/index.js.map +1 -0
  113. package/lib-commonjs/utils/useToggleState.js +48 -0
  114. package/lib-commonjs/utils/useToggleState.js.map +1 -0
  115. package/package.json +20 -22
  116. package/dist/demo/index.html +0 -71
  117. package/dist/demo/react-dom.development.js +0 -21413
  118. package/dist/demo/react.development.js +0 -3155
  119. package/lib/Button.d.ts +0 -1
  120. package/lib/CompoundButton.d.ts +0 -1
  121. package/lib/MenuButton.d.ts +0 -1
  122. package/lib/SplitButton.d.ts +0 -1
  123. package/lib/ToggleButton.d.ts +0 -1
  124. package/lib/components/Button/Button.d.ts +0 -6
  125. package/lib/components/Button/Button.types.d.ts +0 -62
  126. package/lib/components/Button/index.d.ts +0 -5
  127. package/lib/components/Button/renderButton.d.ts +0 -5
  128. package/lib/components/Button/useButton.d.ts +0 -8
  129. package/lib/components/Button/useButtonStyles.d.ts +0 -3
  130. package/lib/components/CompoundButton/CompoundButton.d.ts +0 -6
  131. package/lib/components/CompoundButton/CompoundButton.types.d.ts +0 -14
  132. package/lib/components/CompoundButton/index.d.ts +0 -5
  133. package/lib/components/CompoundButton/renderCompoundButton.d.ts +0 -5
  134. package/lib/components/CompoundButton/useCompoundButton.d.ts +0 -8
  135. package/lib/components/CompoundButton/useCompoundButtonStyles.d.ts +0 -3
  136. package/lib/components/MenuButton/MenuButton.d.ts +0 -6
  137. package/lib/components/MenuButton/MenuButton.types.d.ts +0 -10
  138. package/lib/components/MenuButton/index.d.ts +0 -5
  139. package/lib/components/MenuButton/renderMenuButton.d.ts +0 -5
  140. package/lib/components/MenuButton/useMenuButton.d.ts +0 -6
  141. package/lib/components/MenuButton/useMenuButtonStyles.d.ts +0 -3
  142. package/lib/components/SplitButton/SplitButton.d.ts +0 -7
  143. package/lib/components/SplitButton/SplitButton.types.d.ts +0 -21
  144. package/lib/components/SplitButton/index.d.ts +0 -5
  145. package/lib/components/SplitButton/renderSplitButton.d.ts +0 -5
  146. package/lib/components/SplitButton/useSplitButton.d.ts +0 -8
  147. package/lib/components/SplitButton/useSplitButtonStyles.d.ts +0 -3
  148. package/lib/components/ToggleButton/ToggleButton.d.ts +0 -6
  149. package/lib/components/ToggleButton/ToggleButton.types.d.ts +0 -20
  150. package/lib/components/ToggleButton/index.d.ts +0 -5
  151. package/lib/components/ToggleButton/renderToggleButton.d.ts +0 -1
  152. package/lib/components/ToggleButton/useToggleButton.d.ts +0 -9
  153. package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +0 -3
  154. package/lib/index.d.ts +0 -5
  155. package/lib-commonjs/Button.d.ts +0 -1
  156. package/lib-commonjs/CompoundButton.d.ts +0 -1
  157. package/lib-commonjs/MenuButton.d.ts +0 -1
  158. package/lib-commonjs/SplitButton.d.ts +0 -1
  159. package/lib-commonjs/ToggleButton.d.ts +0 -1
  160. package/lib-commonjs/components/Button/Button.d.ts +0 -6
  161. package/lib-commonjs/components/Button/Button.types.d.ts +0 -62
  162. package/lib-commonjs/components/Button/index.d.ts +0 -5
  163. package/lib-commonjs/components/Button/renderButton.d.ts +0 -5
  164. package/lib-commonjs/components/Button/useButton.d.ts +0 -8
  165. package/lib-commonjs/components/Button/useButtonStyles.d.ts +0 -3
  166. package/lib-commonjs/components/CompoundButton/CompoundButton.d.ts +0 -6
  167. package/lib-commonjs/components/CompoundButton/CompoundButton.types.d.ts +0 -14
  168. package/lib-commonjs/components/CompoundButton/index.d.ts +0 -5
  169. package/lib-commonjs/components/CompoundButton/renderCompoundButton.d.ts +0 -5
  170. package/lib-commonjs/components/CompoundButton/useCompoundButton.d.ts +0 -8
  171. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +0 -3
  172. package/lib-commonjs/components/MenuButton/MenuButton.d.ts +0 -6
  173. package/lib-commonjs/components/MenuButton/MenuButton.types.d.ts +0 -10
  174. package/lib-commonjs/components/MenuButton/index.d.ts +0 -5
  175. package/lib-commonjs/components/MenuButton/renderMenuButton.d.ts +0 -5
  176. package/lib-commonjs/components/MenuButton/useMenuButton.d.ts +0 -6
  177. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +0 -3
  178. package/lib-commonjs/components/SplitButton/SplitButton.d.ts +0 -7
  179. package/lib-commonjs/components/SplitButton/SplitButton.types.d.ts +0 -21
  180. package/lib-commonjs/components/SplitButton/index.d.ts +0 -5
  181. package/lib-commonjs/components/SplitButton/renderSplitButton.d.ts +0 -5
  182. package/lib-commonjs/components/SplitButton/useSplitButton.d.ts +0 -8
  183. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +0 -3
  184. package/lib-commonjs/components/ToggleButton/ToggleButton.d.ts +0 -6
  185. package/lib-commonjs/components/ToggleButton/ToggleButton.types.d.ts +0 -20
  186. package/lib-commonjs/components/ToggleButton/index.d.ts +0 -5
  187. package/lib-commonjs/components/ToggleButton/renderToggleButton.d.ts +0 -1
  188. package/lib-commonjs/components/ToggleButton/useToggleButton.d.ts +0 -9
  189. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +0 -3
  190. package/lib-commonjs/index.d.ts +0 -5
package/CHANGELOG.md CHANGED
@@ -1,12 +1,137 @@
1
1
  # Change Log - @fluentui/react-button
2
2
 
3
- This log was last generated on Thu, 10 Feb 2022 08:44:59 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 23 May 2022 12:10:29 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.10)
8
+
9
+ Mon, 23 May 2022 12:10:29 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.9..@fluentui/react-button_v9.0.0-rc.10)
11
+
12
+ ### Changes
13
+
14
+ - Using spacing tokens for button components. ([PR #23076](https://github.com/microsoft/fluentui/pull/23076) by Humberto.Morimoto@microsoft.com)
15
+ - Removing flex gap from button components and fixing spacing to better align with design spec. ([PR #23091](https://github.com/microsoft/fluentui/pull/23091) by Humberto.Morimoto@microsoft.com)
16
+ - chore: Update Griffel to latest version ([PR #22894](https://github.com/microsoft/fluentui/pull/22894) by olfedias@microsoft.com)
17
+ - chore: Update Griffel to latest version ([PR #23029](https://github.com/microsoft/fluentui/pull/23029) by olfedias@microsoft.com)
18
+ - Removing Common types from all button components. ([PR #22904](https://github.com/microsoft/fluentui/pull/22904) by humberto_makoto@hotmail.com)
19
+ - Removing ToggleButtonCommons type in @fluentui/react-button. ([PR #23067](https://github.com/microsoft/fluentui/pull/23067) by Humberto.Morimoto@microsoft.com)
20
+ - Bump @fluentui/react-aria to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
21
+ - Bump @fluentui/react-tabster to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
22
+ - Bump @fluentui/react-theme to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
23
+ - Bump @fluentui/react-utilities to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
24
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
25
+
26
+ ## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.9)
27
+
28
+ Thu, 05 May 2022 18:26:29 GMT
29
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.8..@fluentui/react-button_v9.0.0-rc.9)
30
+
31
+ ### Changes
32
+
33
+ - feat: ship rolluped only dts ([PR #22823](https://github.com/microsoft/fluentui/pull/22823) by martinhochel@microsoft.com)
34
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.6 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
35
+ - Bump @fluentui/react-aria to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
36
+ - Bump @fluentui/react-tabster to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
37
+ - Bump @fluentui/react-theme to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
38
+ - Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
39
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
40
+
41
+ ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.8)
42
+
43
+ Wed, 04 May 2022 13:26:38 GMT
44
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.7..@fluentui/react-button_v9.0.0-rc.8)
45
+
46
+ ### Changes
47
+
48
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.5 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
49
+ - Bump @fluentui/react-aria to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
50
+ - Bump @fluentui/react-tabster to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
51
+ - Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
52
+ - Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
53
+
54
+ ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.7)
55
+
56
+ Mon, 25 Apr 2022 09:32:16 GMT
57
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.6..@fluentui/react-button_v9.0.0-rc.7)
58
+
59
+ ### Changes
60
+
61
+ - Adding useToggleState hook to scaffold toggleable behavior for individual consumption. ([PR #22279](https://github.com/microsoft/fluentui/pull/22279) by Humberto.Morimoto@microsoft.com)
62
+ - fix(Button): Text color in HC mode for hover, active and checked states. ([PR #22566](https://github.com/microsoft/fluentui/pull/22566) by jukapsia@microsoft.com)
63
+ - Button: Stop applying active styles when mouse moves away while it is being held and improving styles in High Contrast mode. ([PR #22574](https://github.com/microsoft/fluentui/pull/22574) by Humberto.Morimoto@microsoft.com)
64
+ - Bump @fluentui/react-tabster to v9.0.0-rc.7 ([PR #22601](https://github.com/microsoft/fluentui/pull/22601) by beachball)
65
+
66
+ ## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.6)
67
+
68
+ Tue, 19 Apr 2022 19:17:12 GMT
69
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.5..@fluentui/react-button_v9.0.0-rc.6)
70
+
71
+ ### Changes
72
+
73
+ - Disabling lint rule for deprecated [component]ClassName exports. ([PR #22131](https://github.com/microsoft/fluentui/pull/22131) by Humberto.Morimoto@microsoft.com)
74
+ - Button: Deprecating block prop. ([PR #22148](https://github.com/microsoft/fluentui/pull/22148) by Humberto.Morimoto@microsoft.com)
75
+ - Button components: Making root a non-nullable slot. ([PR #22147](https://github.com/microsoft/fluentui/pull/22147) by Humberto.Morimoto@microsoft.com)
76
+ - CompoundButton: Fixing bug where component was iconOnly even when secondaryContent was being provided. ([PR #22107](https://github.com/microsoft/fluentui/pull/22107) by Humberto.Morimoto@microsoft.com)
77
+ - Removing star exports. ([PR #22111](https://github.com/microsoft/fluentui/pull/22111) by Humberto.Morimoto@microsoft.com)
78
+ - Add deprecation messages to react-button ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
79
+ - chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
80
+ - 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)
81
+ - Bump @fluentui/react-aria to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
82
+ - Bump @fluentui/react-tabster to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
83
+ - Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
84
+ - Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
85
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
86
+
87
+ ## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.5)
88
+
89
+ Fri, 04 Mar 2022 05:17:34 GMT
90
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.4..@fluentui/react-button_v9.0.0-rc.5)
91
+
92
+ ### Changes
93
+
94
+ - 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)
95
+ - Button: Exporting classNames of individual slots. ([PR #20977](https://github.com/microsoft/fluentui/pull/20977) by Humberto.Morimoto@microsoft.com)
96
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
97
+ - Bump @fluentui/react-aria to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
98
+ - Bump @fluentui/react-tabster to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
99
+ - Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
100
+ - Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
101
+
102
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.4)
103
+
104
+ Tue, 01 Mar 2022 02:17:35 GMT
105
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.3..@fluentui/react-button_v9.0.0-rc.4)
106
+
107
+ ### Changes
108
+
109
+ - fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
110
+ - Bump @fluentui/react-aria to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
111
+ - Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
112
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
113
+
114
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.3)
115
+
116
+ Fri, 18 Feb 2022 13:35:28 GMT
117
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.1..@fluentui/react-button_v9.0.0-rc.3)
118
+
119
+ ### Changes
120
+
121
+ - SplitButton: Fixing issue where menuIcon prop was not being respected. ([PR #21683](https://github.com/microsoft/fluentui/pull/21683) by Humberto.Morimoto@microsoft.com)
122
+ - Button: Updating stories to fix a11y issues. ([PR #21679](https://github.com/microsoft/fluentui/pull/21679) by Humberto.Morimoto@microsoft.com)
123
+ - SplitButton: Fixing screen reader access issues. ([PR #21703](https://github.com/microsoft/fluentui/pull/21703) by Humberto.Morimoto@microsoft.com)
124
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
125
+ - Button: Adding tests and fixing issues in SplitButton and ToggleButton. ([PR #21719](https://github.com/microsoft/fluentui/pull/21719) by Humberto.Morimoto@microsoft.com)
126
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
127
+ - Bump @fluentui/react-aria to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
128
+ - Bump @fluentui/react-tabster 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
+
7
132
  ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.1)
8
133
 
9
- Thu, 10 Feb 2022 08:44:59 GMT
134
+ Thu, 10 Feb 2022 08:51:46 GMT
10
135
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.5..@fluentui/react-button_v9.0.0-rc.1)
11
136
 
12
137
  ### Changes
@@ -15,7 +140,7 @@ Thu, 10 Feb 2022 08:44:59 GMT
15
140
  - Button: Changing border radius of small button to borderRadiusMedium from borderRadiusSmall. ([PR #21494](https://github.com/microsoft/fluentui/pull/21494) by Humberto.Morimoto@microsoft.com)
16
141
  - Replace make-styles packages with griffel equivalents. ([PR #21436](https://github.com/microsoft/fluentui/pull/21436) by olfedias@microsoft.com)
17
142
  - Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
18
- - 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)
143
+ - 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)
19
144
  - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
20
145
  - (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
21
146
  - Replacing use of functions in makeStyles with direct use of tokens. ([PR #21039](https://github.com/microsoft/fluentui/pull/21039) by Humberto.Morimoto@microsoft.com)
@@ -39,7 +164,7 @@ Thu, 10 Feb 2022 08:44:59 GMT
39
164
 
40
165
  ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.5)
41
166
 
42
- Thu, 25 Nov 2021 08:34:12 GMT
167
+ Thu, 25 Nov 2021 08:34:12 GMT
43
168
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.4..@fluentui/react-button_v9.0.0-beta.5)
44
169
 
45
170
  ### Changes
@@ -56,7 +181,7 @@ Thu, 25 Nov 2021 08:34:12 GMT
56
181
 
57
182
  ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.4)
58
183
 
59
- Fri, 12 Nov 2021 13:25:16 GMT
184
+ Fri, 12 Nov 2021 13:25:16 GMT
60
185
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.3..@fluentui/react-button_v9.0.0-beta.4)
61
186
 
62
187
  ### Changes
@@ -76,7 +201,7 @@ Fri, 12 Nov 2021 13:25:16 GMT
76
201
 
77
202
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.3)
78
203
 
79
- Wed, 27 Oct 2021 12:14:15 GMT
204
+ Wed, 27 Oct 2021 12:14:15 GMT
80
205
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.2..@fluentui/react-button_v9.0.0-beta.3)
81
206
 
82
207
  ### Changes
@@ -94,7 +219,7 @@ Wed, 27 Oct 2021 12:14:15 GMT
94
219
 
95
220
  ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.2)
96
221
 
97
- Tue, 12 Oct 2021 19:45:58 GMT
222
+ Tue, 12 Oct 2021 19:45:58 GMT
98
223
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.1..@fluentui/react-button_v9.0.0-beta.2)
99
224
 
100
225
  ### Changes
@@ -104,7 +229,7 @@ Tue, 12 Oct 2021 19:45:58 GMT
104
229
 
105
230
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.1)
106
231
 
107
- Wed, 06 Oct 2021 10:37:22 GMT
232
+ Wed, 06 Oct 2021 10:37:22 GMT
108
233
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.101..@fluentui/react-button_v9.0.0-beta.1)
109
234
 
110
235
  ### Changes
@@ -122,7 +247,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
122
247
 
123
248
  ## [9.0.0-alpha.101](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.101)
124
249
 
125
- Tue, 05 Oct 2021 12:47:58 GMT
250
+ Tue, 05 Oct 2021 12:47:58 GMT
126
251
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.100..@fluentui/react-button_v9.0.0-alpha.101)
127
252
 
128
253
  ### Changes
@@ -137,7 +262,7 @@ Tue, 05 Oct 2021 12:47:58 GMT
137
262
 
138
263
  ## [9.0.0-alpha.100](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.100)
139
264
 
140
- Tue, 05 Oct 2021 09:28:07 GMT
265
+ Tue, 05 Oct 2021 09:28:07 GMT
141
266
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.99..@fluentui/react-button_v9.0.0-alpha.100)
142
267
 
143
268
  ### Changes
@@ -154,7 +279,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
154
279
 
155
280
  ## [9.0.0-alpha.99](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.99)
156
281
 
157
- Fri, 01 Oct 2021 14:13:08 GMT
282
+ Fri, 01 Oct 2021 14:13:08 GMT
158
283
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.97..@fluentui/react-button_v9.0.0-alpha.99)
159
284
 
160
285
  ### Changes
@@ -172,7 +297,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
172
297
 
173
298
  ## [9.0.0-alpha.97](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.97)
174
299
 
175
- Fri, 01 Oct 2021 12:30:46 GMT
300
+ Fri, 01 Oct 2021 12:30:46 GMT
176
301
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.96..@fluentui/react-button_v9.0.0-alpha.97)
177
302
 
178
303
  ### Changes
@@ -183,7 +308,7 @@ Fri, 01 Oct 2021 12:30:46 GMT
183
308
 
184
309
  ## [9.0.0-alpha.96](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.96)
185
310
 
186
- Fri, 01 Oct 2021 09:44:56 GMT
311
+ Fri, 01 Oct 2021 09:44:56 GMT
187
312
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.95..@fluentui/react-button_v9.0.0-alpha.96)
188
313
 
189
314
  ### Changes
@@ -194,7 +319,7 @@ Fri, 01 Oct 2021 09:44:56 GMT
194
319
 
195
320
  ## [9.0.0-alpha.95](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.95)
196
321
 
197
- Thu, 30 Sep 2021 09:18:15 GMT
322
+ Thu, 30 Sep 2021 09:18:15 GMT
198
323
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.94..@fluentui/react-button_v9.0.0-alpha.95)
199
324
 
200
325
  ### Changes
@@ -203,7 +328,7 @@ Thu, 30 Sep 2021 09:18:15 GMT
203
328
 
204
329
  ## [9.0.0-alpha.94](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.94)
205
330
 
206
- Wed, 29 Sep 2021 08:06:11 GMT
331
+ Wed, 29 Sep 2021 08:06:11 GMT
207
332
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.93..@fluentui/react-button_v9.0.0-alpha.94)
208
333
 
209
334
  ### Changes
@@ -217,7 +342,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
217
342
 
218
343
  ## [9.0.0-alpha.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.93)
219
344
 
220
- Mon, 27 Sep 2021 08:06:00 GMT
345
+ Mon, 27 Sep 2021 08:06:00 GMT
221
346
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.92..@fluentui/react-button_v9.0.0-alpha.93)
222
347
 
223
348
  ### Changes
@@ -232,7 +357,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
232
357
 
233
358
  ## [9.0.0-alpha.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.92)
234
359
 
235
- Fri, 24 Sep 2021 09:17:17 GMT
360
+ Fri, 24 Sep 2021 09:17:17 GMT
236
361
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.91..@fluentui/react-button_v9.0.0-alpha.92)
237
362
 
238
363
  ### Changes
@@ -247,7 +372,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
247
372
 
248
373
  ## [9.0.0-alpha.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.91)
249
374
 
250
- Thu, 23 Sep 2021 08:21:34 GMT
375
+ Thu, 23 Sep 2021 08:21:34 GMT
251
376
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.90..@fluentui/react-button_v9.0.0-alpha.91)
252
377
 
253
378
  ### Changes
@@ -263,7 +388,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
263
388
 
264
389
  ## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.90)
265
390
 
266
- Wed, 22 Sep 2021 10:10:07 GMT
391
+ Wed, 22 Sep 2021 10:10:07 GMT
267
392
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.89..@fluentui/react-button_v9.0.0-alpha.90)
268
393
 
269
394
  ### Changes
@@ -280,7 +405,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
280
405
 
281
406
  ## [9.0.0-alpha.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.89)
282
407
 
283
- Tue, 21 Sep 2021 07:42:34 GMT
408
+ Tue, 21 Sep 2021 07:42:34 GMT
284
409
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.88..@fluentui/react-button_v9.0.0-alpha.89)
285
410
 
286
411
  ### Changes
@@ -295,7 +420,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
295
420
 
296
421
  ## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.88)
297
422
 
298
- Mon, 20 Sep 2021 07:36:26 GMT
423
+ Mon, 20 Sep 2021 07:36:26 GMT
299
424
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.87..@fluentui/react-button_v9.0.0-alpha.88)
300
425
 
301
426
  ### Changes
@@ -305,7 +430,7 @@ Mon, 20 Sep 2021 07:36:26 GMT
305
430
 
306
431
  ## [9.0.0-alpha.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.87)
307
432
 
308
- Fri, 17 Sep 2021 07:35:26 GMT
433
+ Fri, 17 Sep 2021 07:35:26 GMT
309
434
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.86..@fluentui/react-button_v9.0.0-alpha.87)
310
435
 
311
436
  ### Changes
@@ -316,7 +441,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
316
441
 
317
442
  ## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.86)
318
443
 
319
- Thu, 16 Sep 2021 07:38:39 GMT
444
+ Thu, 16 Sep 2021 07:38:39 GMT
320
445
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.85..@fluentui/react-button_v9.0.0-alpha.86)
321
446
 
322
447
  ### Changes
@@ -325,7 +450,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
325
450
 
326
451
  ## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.85)
327
452
 
328
- Tue, 14 Sep 2021 20:09:02 GMT
453
+ Tue, 14 Sep 2021 20:09:02 GMT
329
454
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.84..@fluentui/react-button_v9.0.0-alpha.85)
330
455
 
331
456
  ### Changes
@@ -334,7 +459,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
334
459
 
335
460
  ## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.84)
336
461
 
337
- Fri, 10 Sep 2021 16:31:53 GMT
462
+ Fri, 10 Sep 2021 16:31:53 GMT
338
463
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.83..@fluentui/react-button_v9.0.0-alpha.84)
339
464
 
340
465
  ### Changes
@@ -344,7 +469,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
344
469
 
345
470
  ## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.83)
346
471
 
347
- Fri, 10 Sep 2021 07:39:51 GMT
472
+ Fri, 10 Sep 2021 07:39:51 GMT
348
473
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.82..@fluentui/react-button_v9.0.0-alpha.83)
349
474
 
350
475
  ### Changes
@@ -353,7 +478,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
353
478
 
354
479
  ## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.82)
355
480
 
356
- Wed, 08 Sep 2021 07:34:11 GMT
481
+ Wed, 08 Sep 2021 07:34:11 GMT
357
482
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.81..@fluentui/react-button_v9.0.0-alpha.82)
358
483
 
359
484
  ### Changes
@@ -362,7 +487,7 @@ Wed, 08 Sep 2021 07:34:11 GMT
362
487
 
363
488
  ## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.81)
364
489
 
365
- Mon, 06 Sep 2021 07:34:53 GMT
490
+ Mon, 06 Sep 2021 07:34:53 GMT
366
491
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.80..@fluentui/react-button_v9.0.0-alpha.81)
367
492
 
368
493
  ### Changes
@@ -371,7 +496,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
371
496
 
372
497
  ## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.80)
373
498
 
374
- Fri, 03 Sep 2021 00:13:07 GMT
499
+ Fri, 03 Sep 2021 00:13:07 GMT
375
500
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.79..@fluentui/react-button_v9.0.0-alpha.80)
376
501
 
377
502
  ### Changes
@@ -380,7 +505,7 @@ Fri, 03 Sep 2021 00:13:07 GMT
380
505
 
381
506
  ## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.79)
382
507
 
383
- Thu, 02 Sep 2021 07:36:46 GMT
508
+ Thu, 02 Sep 2021 07:36:46 GMT
384
509
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.78..@fluentui/react-button_v9.0.0-alpha.79)
385
510
 
386
511
  ### Patches
@@ -393,7 +518,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
393
518
 
394
519
  ## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.78)
395
520
 
396
- Wed, 01 Sep 2021 07:39:56 GMT
521
+ Wed, 01 Sep 2021 07:39:56 GMT
397
522
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.77..@fluentui/react-button_v9.0.0-alpha.78)
398
523
 
399
524
  ### Changes
@@ -402,7 +527,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
402
527
 
403
528
  ## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.77)
404
529
 
405
- Tue, 31 Aug 2021 07:37:47 GMT
530
+ Tue, 31 Aug 2021 07:37:47 GMT
406
531
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.76..@fluentui/react-button_v9.0.0-alpha.77)
407
532
 
408
533
  ### Changes
@@ -411,7 +536,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
411
536
 
412
537
  ## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.76)
413
538
 
414
- Mon, 30 Aug 2021 07:35:05 GMT
539
+ Mon, 30 Aug 2021 07:35:05 GMT
415
540
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.75..@fluentui/react-button_v9.0.0-alpha.76)
416
541
 
417
542
  ### Changes
@@ -420,7 +545,7 @@ Mon, 30 Aug 2021 07:35:05 GMT
420
545
 
421
546
  ## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.75)
422
547
 
423
- Fri, 27 Aug 2021 07:33:32 GMT
548
+ Fri, 27 Aug 2021 07:33:32 GMT
424
549
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.74..@fluentui/react-button_v9.0.0-alpha.75)
425
550
 
426
551
  ### Changes
@@ -429,7 +554,7 @@ Fri, 27 Aug 2021 07:33:32 GMT
429
554
 
430
555
  ## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.74)
431
556
 
432
- Thu, 26 Aug 2021 07:35:43 GMT
557
+ Thu, 26 Aug 2021 07:35:43 GMT
433
558
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.73..@fluentui/react-button_v9.0.0-alpha.74)
434
559
 
435
560
  ### Changes
@@ -438,7 +563,7 @@ Thu, 26 Aug 2021 07:35:43 GMT
438
563
 
439
564
  ## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.73)
440
565
 
441
- Fri, 20 Aug 2021 07:37:28 GMT
566
+ Fri, 20 Aug 2021 07:37:28 GMT
442
567
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.72..@fluentui/react-button_v9.0.0-alpha.73)
443
568
 
444
569
  ### Changes
@@ -447,7 +572,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
447
572
 
448
573
  ## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.72)
449
574
 
450
- Thu, 19 Aug 2021 07:41:35 GMT
575
+ Thu, 19 Aug 2021 07:41:35 GMT
451
576
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.71..@fluentui/react-button_v9.0.0-alpha.72)
452
577
 
453
578
  ### Changes
@@ -456,7 +581,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
456
581
 
457
582
  ## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.71)
458
583
 
459
- Wed, 18 Aug 2021 07:33:54 GMT
584
+ Wed, 18 Aug 2021 07:33:54 GMT
460
585
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.70..@fluentui/react-button_v9.0.0-alpha.71)
461
586
 
462
587
  ### Changes
@@ -465,7 +590,7 @@ Wed, 18 Aug 2021 07:33:54 GMT
465
590
 
466
591
  ## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.70)
467
592
 
468
- Fri, 13 Aug 2021 07:36:34 GMT
593
+ Fri, 13 Aug 2021 07:36:34 GMT
469
594
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.69..@fluentui/react-button_v9.0.0-alpha.70)
470
595
 
471
596
  ### Changes
@@ -474,7 +599,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
474
599
 
475
600
  ## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.69)
476
601
 
477
- Wed, 11 Aug 2021 07:34:54 GMT
602
+ Wed, 11 Aug 2021 07:34:54 GMT
478
603
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.68..@fluentui/react-button_v9.0.0-alpha.69)
479
604
 
480
605
  ### Changes
@@ -483,7 +608,7 @@ Wed, 11 Aug 2021 07:34:54 GMT
483
608
 
484
609
  ## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.68)
485
610
 
486
- Fri, 06 Aug 2021 07:35:14 GMT
611
+ Fri, 06 Aug 2021 07:35:14 GMT
487
612
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.67..@fluentui/react-button_v9.0.0-alpha.68)
488
613
 
489
614
  ### Changes
@@ -492,7 +617,7 @@ Fri, 06 Aug 2021 07:35:14 GMT
492
617
 
493
618
  ## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.67)
494
619
 
495
- Tue, 03 Aug 2021 07:39:30 GMT
620
+ Tue, 03 Aug 2021 07:39:30 GMT
496
621
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.66..@fluentui/react-button_v9.0.0-alpha.67)
497
622
 
498
623
  ### Patches
@@ -505,7 +630,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
505
630
 
506
631
  ## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.66)
507
632
 
508
- Mon, 02 Aug 2021 07:36:20 GMT
633
+ Mon, 02 Aug 2021 07:36:20 GMT
509
634
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.65..@fluentui/react-button_v9.0.0-alpha.66)
510
635
 
511
636
  ### Changes
@@ -514,7 +639,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
514
639
 
515
640
  ## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.65)
516
641
 
517
- Mon, 26 Jul 2021 07:37:30 GMT
642
+ Mon, 26 Jul 2021 07:37:30 GMT
518
643
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.64..@fluentui/react-button_v9.0.0-alpha.65)
519
644
 
520
645
  ### Changes
@@ -523,7 +648,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
523
648
 
524
649
  ## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.64)
525
650
 
526
- Fri, 23 Jul 2021 07:38:19 GMT
651
+ Fri, 23 Jul 2021 07:38:19 GMT
527
652
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.63..@fluentui/react-button_v9.0.0-alpha.64)
528
653
 
529
654
  ### Changes
@@ -534,7 +659,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
534
659
 
535
660
  ## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.63)
536
661
 
537
- Thu, 22 Jul 2021 07:36:55 GMT
662
+ Thu, 22 Jul 2021 07:36:55 GMT
538
663
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.62..@fluentui/react-button_v9.0.0-alpha.63)
539
664
 
540
665
  ### Changes
@@ -543,7 +668,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
543
668
 
544
669
  ## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.62)
545
670
 
546
- Tue, 20 Jul 2021 22:23:17 GMT
671
+ Tue, 20 Jul 2021 22:23:17 GMT
547
672
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.61..@fluentui/react-button_v9.0.0-alpha.62)
548
673
 
549
674
  ### Changes
@@ -552,7 +677,7 @@ Tue, 20 Jul 2021 22:23:17 GMT
552
677
 
553
678
  ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.61)
554
679
 
555
- Fri, 16 Jul 2021 22:53:17 GMT
680
+ Fri, 16 Jul 2021 22:53:17 GMT
556
681
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.60..@fluentui/react-button_v9.0.0-alpha.61)
557
682
 
558
683
  ### Changes
@@ -561,7 +686,7 @@ Fri, 16 Jul 2021 22:53:17 GMT
561
686
 
562
687
  ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.60)
563
688
 
564
- Thu, 15 Jul 2021 07:36:18 GMT
689
+ Thu, 15 Jul 2021 07:36:18 GMT
565
690
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.59..@fluentui/react-button_v9.0.0-alpha.60)
566
691
 
567
692
  ### Changes
@@ -570,7 +695,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
570
695
 
571
696
  ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.59)
572
697
 
573
- Tue, 13 Jul 2021 22:32:58 GMT
698
+ Tue, 13 Jul 2021 22:32:58 GMT
574
699
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.58..@fluentui/react-button_v9.0.0-alpha.59)
575
700
 
576
701
  ### Patches
@@ -579,7 +704,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
579
704
 
580
705
  ## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.58)
581
706
 
582
- Tue, 13 Jul 2021 07:35:36 GMT
707
+ Tue, 13 Jul 2021 07:35:36 GMT
583
708
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.57..@fluentui/react-button_v9.0.0-alpha.58)
584
709
 
585
710
  ### Changes
@@ -588,7 +713,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
588
713
 
589
714
  ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.57)
590
715
 
591
- Mon, 12 Jul 2021 07:33:23 GMT
716
+ Mon, 12 Jul 2021 07:33:23 GMT
592
717
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.56..@fluentui/react-button_v9.0.0-alpha.57)
593
718
 
594
719
  ### Changes
@@ -597,7 +722,7 @@ Mon, 12 Jul 2021 07:33:23 GMT
597
722
 
598
723
  ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.56)
599
724
 
600
- Fri, 09 Jul 2021 07:39:31 GMT
725
+ Fri, 09 Jul 2021 07:39:31 GMT
601
726
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.55..@fluentui/react-button_v9.0.0-alpha.56)
602
727
 
603
728
  ### Patches
@@ -610,7 +735,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
610
735
 
611
736
  ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.55)
612
737
 
613
- Fri, 02 Jul 2021 23:15:55 GMT
738
+ Fri, 02 Jul 2021 23:15:55 GMT
614
739
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.54..@fluentui/react-button_v9.0.0-alpha.55)
615
740
 
616
741
  ### Changes
@@ -619,7 +744,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
619
744
 
620
745
  ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.54)
621
746
 
622
- Fri, 02 Jul 2021 07:37:06 GMT
747
+ Fri, 02 Jul 2021 07:37:06 GMT
623
748
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.53..@fluentui/react-button_v9.0.0-alpha.54)
624
749
 
625
750
  ### Changes
@@ -628,7 +753,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
628
753
 
629
754
  ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.53)
630
755
 
631
- Thu, 01 Jul 2021 07:35:05 GMT
756
+ Thu, 01 Jul 2021 07:35:05 GMT
632
757
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.52..@fluentui/react-button_v9.0.0-alpha.53)
633
758
 
634
759
  ### Changes
@@ -637,7 +762,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
637
762
 
638
763
  ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.52)
639
764
 
640
- Wed, 30 Jun 2021 07:38:35 GMT
765
+ Wed, 30 Jun 2021 07:38:35 GMT
641
766
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.51..@fluentui/react-button_v9.0.0-alpha.52)
642
767
 
643
768
  ### Changes
@@ -646,7 +771,7 @@ Wed, 30 Jun 2021 07:38:35 GMT
646
771
 
647
772
  ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.51)
648
773
 
649
- Tue, 29 Jun 2021 07:33:32 GMT
774
+ Tue, 29 Jun 2021 07:33:32 GMT
650
775
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.50..@fluentui/react-button_v9.0.0-alpha.51)
651
776
 
652
777
  ### Changes
@@ -655,7 +780,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
655
780
 
656
781
  ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.50)
657
782
 
658
- Wed, 23 Jun 2021 07:31:49 GMT
783
+ Wed, 23 Jun 2021 07:31:49 GMT
659
784
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.49..@fluentui/react-button_v9.0.0-alpha.50)
660
785
 
661
786
  ### Changes
@@ -664,7 +789,7 @@ Wed, 23 Jun 2021 07:31:49 GMT
664
789
 
665
790
  ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.49)
666
791
 
667
- Tue, 22 Jun 2021 07:35:11 GMT
792
+ Tue, 22 Jun 2021 07:35:11 GMT
668
793
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.48..@fluentui/react-button_v9.0.0-alpha.49)
669
794
 
670
795
  ### Changes
@@ -673,7 +798,7 @@ Tue, 22 Jun 2021 07:35:11 GMT
673
798
 
674
799
  ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.48)
675
800
 
676
- Tue, 15 Jun 2021 07:40:20 GMT
801
+ Tue, 15 Jun 2021 07:40:20 GMT
677
802
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.47..@fluentui/react-button_v9.0.0-alpha.48)
678
803
 
679
804
  ### Changes
@@ -682,7 +807,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
682
807
 
683
808
  ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.47)
684
809
 
685
- Fri, 11 Jun 2021 07:34:26 GMT
810
+ Fri, 11 Jun 2021 07:34:26 GMT
686
811
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.46..@fluentui/react-button_v9.0.0-alpha.47)
687
812
 
688
813
  ### Changes
@@ -693,7 +818,7 @@ Fri, 11 Jun 2021 07:34:26 GMT
693
818
 
694
819
  ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.46)
695
820
 
696
- Thu, 10 Jun 2021 07:32:59 GMT
821
+ Thu, 10 Jun 2021 07:32:59 GMT
697
822
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.45..@fluentui/react-button_v9.0.0-alpha.46)
698
823
 
699
824
  ### Changes
@@ -702,7 +827,7 @@ Thu, 10 Jun 2021 07:32:59 GMT
702
827
 
703
828
  ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.45)
704
829
 
705
- Wed, 09 Jun 2021 07:33:38 GMT
830
+ Wed, 09 Jun 2021 07:33:38 GMT
706
831
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.44..@fluentui/react-button_v9.0.0-alpha.45)
707
832
 
708
833
  ### Changes
@@ -711,7 +836,7 @@ Wed, 09 Jun 2021 07:33:38 GMT
711
836
 
712
837
  ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.44)
713
838
 
714
- Mon, 07 Jun 2021 07:38:15 GMT
839
+ Mon, 07 Jun 2021 07:38:15 GMT
715
840
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.43..@fluentui/react-button_v9.0.0-alpha.44)
716
841
 
717
842
  ### Patches
@@ -724,7 +849,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
724
849
 
725
850
  ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.43)
726
851
 
727
- Fri, 04 Jun 2021 07:37:23 GMT
852
+ Fri, 04 Jun 2021 07:37:23 GMT
728
853
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.42..@fluentui/react-button_v9.0.0-alpha.43)
729
854
 
730
855
  ### Changes
@@ -733,7 +858,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
733
858
 
734
859
  ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.42)
735
860
 
736
- Thu, 03 Jun 2021 07:36:03 GMT
861
+ Thu, 03 Jun 2021 07:36:03 GMT
737
862
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.41..@fluentui/react-button_v9.0.0-alpha.42)
738
863
 
739
864
  ### Changes
@@ -742,7 +867,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
742
867
 
743
868
  ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.41)
744
869
 
745
- Wed, 02 Jun 2021 07:37:15 GMT
870
+ Wed, 02 Jun 2021 07:37:15 GMT
746
871
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.40..@fluentui/react-button_v9.0.0-alpha.41)
747
872
 
748
873
  ### Changes
@@ -751,7 +876,7 @@ Wed, 02 Jun 2021 07:37:15 GMT
751
876
 
752
877
  ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.40)
753
878
 
754
- Wed, 26 May 2021 07:35:43 GMT
879
+ Wed, 26 May 2021 07:35:43 GMT
755
880
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.39..@fluentui/react-button_v9.0.0-alpha.40)
756
881
 
757
882
  ### Changes
@@ -760,7 +885,7 @@ Wed, 26 May 2021 07:35:43 GMT
760
885
 
761
886
  ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.39)
762
887
 
763
- Fri, 21 May 2021 07:34:54 GMT
888
+ Fri, 21 May 2021 07:34:54 GMT
764
889
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.38..@fluentui/react-button_v9.0.0-alpha.39)
765
890
 
766
891
  ### Changes
@@ -769,7 +894,7 @@ Fri, 21 May 2021 07:34:54 GMT
769
894
 
770
895
  ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.38)
771
896
 
772
- Thu, 20 May 2021 07:41:54 GMT
897
+ Thu, 20 May 2021 07:41:54 GMT
773
898
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.37..@fluentui/react-button_v9.0.0-alpha.38)
774
899
 
775
900
  ### Patches
@@ -782,7 +907,7 @@ Thu, 20 May 2021 07:41:54 GMT
782
907
 
783
908
  ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.37)
784
909
 
785
- Wed, 19 May 2021 07:34:20 GMT
910
+ Wed, 19 May 2021 07:34:20 GMT
786
911
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.36..@fluentui/react-button_v9.0.0-alpha.37)
787
912
 
788
913
  ### Patches
@@ -795,7 +920,7 @@ Wed, 19 May 2021 07:34:20 GMT
795
920
 
796
921
  ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.36)
797
922
 
798
- Tue, 18 May 2021 07:34:38 GMT
923
+ Tue, 18 May 2021 07:34:38 GMT
799
924
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.35..@fluentui/react-button_v9.0.0-alpha.36)
800
925
 
801
926
  ### Changes
@@ -804,7 +929,7 @@ Tue, 18 May 2021 07:34:38 GMT
804
929
 
805
930
  ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.35)
806
931
 
807
- Thu, 13 May 2021 07:36:55 GMT
932
+ Thu, 13 May 2021 07:36:55 GMT
808
933
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.34..@fluentui/react-button_v9.0.0-alpha.35)
809
934
 
810
935
  ### Changes
@@ -813,7 +938,7 @@ Thu, 13 May 2021 07:36:55 GMT
813
938
 
814
939
  ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.34)
815
940
 
816
- Wed, 12 May 2021 07:36:20 GMT
941
+ Wed, 12 May 2021 07:36:20 GMT
817
942
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.33..@fluentui/react-button_v9.0.0-alpha.34)
818
943
 
819
944
  ### Changes
@@ -822,7 +947,7 @@ Wed, 12 May 2021 07:36:20 GMT
822
947
 
823
948
  ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.33)
824
949
 
825
- Mon, 10 May 2021 07:36:07 GMT
950
+ Mon, 10 May 2021 07:36:07 GMT
826
951
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.32..@fluentui/react-button_v9.0.0-alpha.33)
827
952
 
828
953
  ### Changes
@@ -831,7 +956,7 @@ Mon, 10 May 2021 07:36:07 GMT
831
956
 
832
957
  ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.32)
833
958
 
834
- Wed, 05 May 2021 07:36:50 GMT
959
+ Wed, 05 May 2021 07:36:50 GMT
835
960
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.31..@fluentui/react-button_v9.0.0-alpha.32)
836
961
 
837
962
  ### Changes
@@ -840,7 +965,7 @@ Wed, 05 May 2021 07:36:50 GMT
840
965
 
841
966
  ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.31)
842
967
 
843
- Mon, 03 May 2021 07:45:19 GMT
968
+ Mon, 03 May 2021 07:45:19 GMT
844
969
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.30..@fluentui/react-button_v9.0.0-alpha.31)
845
970
 
846
971
  ### Changes
@@ -849,7 +974,7 @@ Mon, 03 May 2021 07:45:19 GMT
849
974
 
850
975
  ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.30)
851
976
 
852
- Fri, 30 Apr 2021 07:42:23 GMT
977
+ Fri, 30 Apr 2021 07:42:23 GMT
853
978
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.29..@fluentui/react-button_v9.0.0-alpha.30)
854
979
 
855
980
  ### Patches
@@ -866,7 +991,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
866
991
 
867
992
  ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.29)
868
993
 
869
- Tue, 27 Apr 2021 07:34:03 GMT
994
+ Tue, 27 Apr 2021 07:34:03 GMT
870
995
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.28..@fluentui/react-button_v9.0.0-alpha.29)
871
996
 
872
997
  ### Changes
@@ -875,7 +1000,7 @@ Tue, 27 Apr 2021 07:34:03 GMT
875
1000
 
876
1001
  ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.28)
877
1002
 
878
- Mon, 26 Apr 2021 07:34:31 GMT
1003
+ Mon, 26 Apr 2021 07:34:31 GMT
879
1004
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.27..@fluentui/react-button_v9.0.0-alpha.28)
880
1005
 
881
1006
  ### Changes
@@ -884,7 +1009,7 @@ Mon, 26 Apr 2021 07:34:31 GMT
884
1009
 
885
1010
  ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.27)
886
1011
 
887
- Fri, 23 Apr 2021 07:37:10 GMT
1012
+ Fri, 23 Apr 2021 07:37:10 GMT
888
1013
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.26..@fluentui/react-button_v9.0.0-alpha.27)
889
1014
 
890
1015
  ### Patches
@@ -897,7 +1022,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
897
1022
 
898
1023
  ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.26)
899
1024
 
900
- Thu, 22 Apr 2021 07:33:28 GMT
1025
+ Thu, 22 Apr 2021 07:33:28 GMT
901
1026
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.25..@fluentui/react-button_v9.0.0-alpha.26)
902
1027
 
903
1028
  ### Changes
@@ -906,7 +1031,7 @@ Thu, 22 Apr 2021 07:33:28 GMT
906
1031
 
907
1032
  ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.25)
908
1033
 
909
- Wed, 21 Apr 2021 07:31:50 GMT
1034
+ Wed, 21 Apr 2021 07:31:50 GMT
910
1035
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.24..@fluentui/react-button_v9.0.0-alpha.25)
911
1036
 
912
1037
  ### Changes
@@ -915,7 +1040,7 @@ Wed, 21 Apr 2021 07:31:50 GMT
915
1040
 
916
1041
  ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.24)
917
1042
 
918
- Tue, 20 Apr 2021 07:31:35 GMT
1043
+ Tue, 20 Apr 2021 07:31:35 GMT
919
1044
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.23..@fluentui/react-button_v9.0.0-alpha.24)
920
1045
 
921
1046
  ### Changes
@@ -924,7 +1049,7 @@ Tue, 20 Apr 2021 07:31:35 GMT
924
1049
 
925
1050
  ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.23)
926
1051
 
927
- Fri, 16 Apr 2021 18:08:21 GMT
1052
+ Fri, 16 Apr 2021 18:08:21 GMT
928
1053
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.22..@fluentui/react-button_v9.0.0-alpha.23)
929
1054
 
930
1055
  ### Changes
@@ -933,7 +1058,7 @@ Fri, 16 Apr 2021 18:08:21 GMT
933
1058
 
934
1059
  ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.22)
935
1060
 
936
- Wed, 14 Apr 2021 07:34:12 GMT
1061
+ Wed, 14 Apr 2021 07:34:12 GMT
937
1062
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.21..@fluentui/react-button_v9.0.0-alpha.22)
938
1063
 
939
1064
  ### Changes
@@ -942,7 +1067,7 @@ Wed, 14 Apr 2021 07:34:12 GMT
942
1067
 
943
1068
  ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.21)
944
1069
 
945
- Fri, 09 Apr 2021 07:31:06 GMT
1070
+ Fri, 09 Apr 2021 07:31:06 GMT
946
1071
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.20..@fluentui/react-button_v9.0.0-alpha.21)
947
1072
 
948
1073
  ### Changes
@@ -951,7 +1076,7 @@ Fri, 09 Apr 2021 07:31:06 GMT
951
1076
 
952
1077
  ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.20)
953
1078
 
954
- Thu, 08 Apr 2021 07:33:06 GMT
1079
+ Thu, 08 Apr 2021 07:33:06 GMT
955
1080
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.19..@fluentui/react-button_v9.0.0-alpha.20)
956
1081
 
957
1082
  ### Changes
@@ -960,7 +1085,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
960
1085
 
961
1086
  ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.19)
962
1087
 
963
- Thu, 01 Apr 2021 20:13:37 GMT
1088
+ Thu, 01 Apr 2021 20:13:37 GMT
964
1089
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.18..@fluentui/react-button_v9.0.0-alpha.19)
965
1090
 
966
1091
  ### Changes
@@ -969,7 +1094,7 @@ Thu, 01 Apr 2021 20:13:37 GMT
969
1094
 
970
1095
  ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.18)
971
1096
 
972
- Wed, 31 Mar 2021 00:53:43 GMT
1097
+ Wed, 31 Mar 2021 00:53:43 GMT
973
1098
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.17..@fluentui/react-button_v9.0.0-alpha.18)
974
1099
 
975
1100
  ### Patches
@@ -986,7 +1111,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
986
1111
 
987
1112
  ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.17)
988
1113
 
989
- Tue, 30 Mar 2021 07:34:45 GMT
1114
+ Tue, 30 Mar 2021 07:34:45 GMT
990
1115
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.16..@fluentui/react-button_v9.0.0-alpha.17)
991
1116
 
992
1117
  ### Patches
@@ -999,7 +1124,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
999
1124
 
1000
1125
  ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.16)
1001
1126
 
1002
- Fri, 26 Mar 2021 07:32:34 GMT
1127
+ Fri, 26 Mar 2021 07:32:34 GMT
1003
1128
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.15..@fluentui/react-button_v9.0.0-alpha.16)
1004
1129
 
1005
1130
  ### Changes
@@ -1009,7 +1134,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
1009
1134
 
1010
1135
  ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.15)
1011
1136
 
1012
- Thu, 25 Mar 2021 07:33:24 GMT
1137
+ Thu, 25 Mar 2021 07:33:24 GMT
1013
1138
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.14..@fluentui/react-button_v9.0.0-alpha.15)
1014
1139
 
1015
1140
  ### Changes
@@ -1019,7 +1144,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
1019
1144
 
1020
1145
  ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.14)
1021
1146
 
1022
- Tue, 23 Mar 2021 07:31:43 GMT
1147
+ Tue, 23 Mar 2021 07:31:43 GMT
1023
1148
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.13..@fluentui/react-button_v9.0.0-alpha.14)
1024
1149
 
1025
1150
  ### Changes
@@ -1028,7 +1153,7 @@ Tue, 23 Mar 2021 07:31:43 GMT
1028
1153
 
1029
1154
  ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.13)
1030
1155
 
1031
- Thu, 18 Mar 2021 20:15:34 GMT
1156
+ Thu, 18 Mar 2021 20:15:34 GMT
1032
1157
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.12..@fluentui/react-button_v9.0.0-alpha.13)
1033
1158
 
1034
1159
  ### Changes
@@ -1037,7 +1162,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
1037
1162
 
1038
1163
  ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.12)
1039
1164
 
1040
- Wed, 17 Mar 2021 07:35:44 GMT
1165
+ Wed, 17 Mar 2021 07:35:44 GMT
1041
1166
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.11..@fluentui/react-button_v9.0.0-alpha.12)
1042
1167
 
1043
1168
  ### Changes
@@ -1046,7 +1171,7 @@ Wed, 17 Mar 2021 07:35:44 GMT
1046
1171
 
1047
1172
  ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.11)
1048
1173
 
1049
- Tue, 16 Mar 2021 07:32:44 GMT
1174
+ Tue, 16 Mar 2021 07:32:44 GMT
1050
1175
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.10..@fluentui/react-button_v9.0.0-alpha.11)
1051
1176
 
1052
1177
  ### Patches
@@ -1055,7 +1180,7 @@ Tue, 16 Mar 2021 07:32:44 GMT
1055
1180
 
1056
1181
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.10)
1057
1182
 
1058
- Mon, 15 Mar 2021 07:36:20 GMT
1183
+ Mon, 15 Mar 2021 07:36:20 GMT
1059
1184
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.9..@fluentui/react-button_v9.0.0-alpha.10)
1060
1185
 
1061
1186
  ### Changes
@@ -1064,7 +1189,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
1064
1189
 
1065
1190
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.9)
1066
1191
 
1067
- Fri, 12 Mar 2021 20:04:27 GMT
1192
+ Fri, 12 Mar 2021 20:04:27 GMT
1068
1193
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.8..@fluentui/react-button_v9.0.0-alpha.9)
1069
1194
 
1070
1195
  ### Patches
@@ -1077,7 +1202,7 @@ Fri, 12 Mar 2021 20:04:27 GMT
1077
1202
 
1078
1203
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.8)
1079
1204
 
1080
- Wed, 10 Mar 2021 07:34:39 GMT
1205
+ Wed, 10 Mar 2021 07:34:39 GMT
1081
1206
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.7..@fluentui/react-button_v9.0.0-alpha.8)
1082
1207
 
1083
1208
  ### Changes
@@ -1086,7 +1211,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
1086
1211
 
1087
1212
  ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.7)
1088
1213
 
1089
- Fri, 05 Mar 2021 20:30:59 GMT
1214
+ Fri, 05 Mar 2021 20:30:59 GMT
1090
1215
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.6..@fluentui/react-button_v9.0.0-alpha.7)
1091
1216
 
1092
1217
  ### Changes
@@ -1095,7 +1220,7 @@ Fri, 05 Mar 2021 20:30:59 GMT
1095
1220
 
1096
1221
  ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.6)
1097
1222
 
1098
- Wed, 03 Mar 2021 00:10:09 GMT
1223
+ Wed, 03 Mar 2021 00:10:09 GMT
1099
1224
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.5..@fluentui/react-button_v9.0.0-alpha.6)
1100
1225
 
1101
1226
  ### Patches
@@ -1108,7 +1233,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
1108
1233
 
1109
1234
  ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.5)
1110
1235
 
1111
- Tue, 02 Mar 2021 07:24:27 GMT
1236
+ Tue, 02 Mar 2021 07:24:27 GMT
1112
1237
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.4..@fluentui/react-button_v9.0.0-alpha.5)
1113
1238
 
1114
1239
  ### Changes
@@ -1117,7 +1242,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
1117
1242
 
1118
1243
  ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.4)
1119
1244
 
1120
- Fri, 26 Feb 2021 01:16:27 GMT
1245
+ Fri, 26 Feb 2021 01:16:27 GMT
1121
1246
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.3..@fluentui/react-button_v9.0.0-alpha.4)
1122
1247
 
1123
1248
  ### Patches
@@ -1137,7 +1262,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
1137
1262
 
1138
1263
  ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.3)
1139
1264
 
1140
- Thu, 25 Feb 2021 20:16:39 GMT
1265
+ Thu, 25 Feb 2021 20:16:39 GMT
1141
1266
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.2..@fluentui/react-button_v9.0.0-alpha.3)
1142
1267
 
1143
1268
  ### Changes
@@ -1146,7 +1271,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
1146
1271
 
1147
1272
  ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.2)
1148
1273
 
1149
- Thu, 25 Feb 2021 01:15:27 GMT
1274
+ Thu, 25 Feb 2021 01:15:27 GMT
1150
1275
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.1..@fluentui/react-button_v9.0.0-alpha.2)
1151
1276
 
1152
1277
  ### Patches
@@ -1155,7 +1280,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
1155
1280
 
1156
1281
  ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.1)
1157
1282
 
1158
- Wed, 24 Feb 2021 00:05:29 GMT
1283
+ Wed, 24 Feb 2021 00:05:29 GMT
1159
1284
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.35..@fluentui/react-button_v9.0.0-alpha.1)
1160
1285
 
1161
1286
  ### Changes
@@ -1164,7 +1289,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
1164
1289
 
1165
1290
  ## [1.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.35)
1166
1291
 
1167
- Mon, 22 Feb 2021 12:26:22 GMT
1292
+ Mon, 22 Feb 2021 12:26:22 GMT
1168
1293
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.34..@fluentui/react-button_v1.0.0-beta.35)
1169
1294
 
1170
1295
  ### Changes
@@ -1173,7 +1298,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
1173
1298
 
1174
1299
  ## [1.0.0-beta.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.34)
1175
1300
 
1176
- Thu, 18 Feb 2021 19:38:50 GMT
1301
+ Thu, 18 Feb 2021 19:38:50 GMT
1177
1302
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.33..@fluentui/react-button_v1.0.0-beta.34)
1178
1303
 
1179
1304
  ### Patches
@@ -1187,7 +1312,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
1187
1312
 
1188
1313
  ## [1.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.33)
1189
1314
 
1190
- Thu, 18 Feb 2021 12:27:34 GMT
1315
+ Thu, 18 Feb 2021 12:27:34 GMT
1191
1316
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.32..@fluentui/react-button_v1.0.0-beta.33)
1192
1317
 
1193
1318
  ### Changes
@@ -1198,7 +1323,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
1198
1323
 
1199
1324
  ## [1.0.0-beta.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.32)
1200
1325
 
1201
- Mon, 15 Feb 2021 12:22:00 GMT
1326
+ Mon, 15 Feb 2021 12:22:00 GMT
1202
1327
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.31..@fluentui/react-button_v1.0.0-beta.32)
1203
1328
 
1204
1329
  ### Changes
@@ -1207,7 +1332,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
1207
1332
 
1208
1333
  ## [1.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.31)
1209
1334
 
1210
- Fri, 12 Feb 2021 12:26:20 GMT
1335
+ Fri, 12 Feb 2021 12:26:20 GMT
1211
1336
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.30..@fluentui/react-button_v1.0.0-beta.31)
1212
1337
 
1213
1338
  ### Patches
@@ -1221,7 +1346,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
1221
1346
 
1222
1347
  ## [1.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.30)
1223
1348
 
1224
- Thu, 11 Feb 2021 00:58:10 GMT
1349
+ Thu, 11 Feb 2021 00:58:10 GMT
1225
1350
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.29..@fluentui/react-button_v1.0.0-beta.30)
1226
1351
 
1227
1352
  ### Changes
@@ -1230,7 +1355,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
1230
1355
 
1231
1356
  ## [1.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.29)
1232
1357
 
1233
- Tue, 09 Feb 2021 00:56:52 GMT
1358
+ Tue, 09 Feb 2021 00:56:52 GMT
1234
1359
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.28..@fluentui/react-button_v1.0.0-beta.29)
1235
1360
 
1236
1361
  ### Patches
@@ -1243,7 +1368,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
1243
1368
 
1244
1369
  ## [1.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.28)
1245
1370
 
1246
- Mon, 08 Feb 2021 12:23:08 GMT
1371
+ Mon, 08 Feb 2021 12:23:08 GMT
1247
1372
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.27..@fluentui/react-button_v1.0.0-beta.28)
1248
1373
 
1249
1374
  ### Changes
@@ -1252,7 +1377,7 @@ Mon, 08 Feb 2021 12:23:08 GMT
1252
1377
 
1253
1378
  ## [1.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.27)
1254
1379
 
1255
- Wed, 03 Feb 2021 05:51:40 GMT
1380
+ Wed, 03 Feb 2021 05:51:40 GMT
1256
1381
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.26..@fluentui/react-button_v1.0.0-beta.27)
1257
1382
 
1258
1383
  ### Changes
@@ -1261,7 +1386,7 @@ Wed, 03 Feb 2021 05:51:40 GMT
1261
1386
 
1262
1387
  ## [1.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.26)
1263
1388
 
1264
- Tue, 02 Feb 2021 12:21:54 GMT
1389
+ Tue, 02 Feb 2021 12:21:54 GMT
1265
1390
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.25..@fluentui/react-button_v1.0.0-beta.26)
1266
1391
 
1267
1392
  ### Changes
@@ -1271,7 +1396,7 @@ Tue, 02 Feb 2021 12:21:54 GMT
1271
1396
 
1272
1397
  ## [1.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.25)
1273
1398
 
1274
- Mon, 01 Feb 2021 12:23:48 GMT
1399
+ Mon, 01 Feb 2021 12:23:48 GMT
1275
1400
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.24..@fluentui/react-button_v1.0.0-beta.25)
1276
1401
 
1277
1402
  ### Changes
@@ -1280,7 +1405,7 @@ Mon, 01 Feb 2021 12:23:48 GMT
1280
1405
 
1281
1406
  ## [1.0.0-beta.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.24)
1282
1407
 
1283
- Thu, 28 Jan 2021 12:25:56 GMT
1408
+ Thu, 28 Jan 2021 12:25:56 GMT
1284
1409
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.23..@fluentui/react-button_v1.0.0-beta.24)
1285
1410
 
1286
1411
  ### Changes
@@ -1290,7 +1415,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
1290
1415
 
1291
1416
  ## [1.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.23)
1292
1417
 
1293
- Sat, 23 Jan 2021 05:20:07 GMT
1418
+ Sat, 23 Jan 2021 05:20:07 GMT
1294
1419
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.22..@fluentui/react-button_v1.0.0-beta.23)
1295
1420
 
1296
1421
  ### Changes
@@ -1299,7 +1424,7 @@ Sat, 23 Jan 2021 05:20:07 GMT
1299
1424
 
1300
1425
  ## [1.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.22)
1301
1426
 
1302
- Fri, 22 Jan 2021 12:24:49 GMT
1427
+ Fri, 22 Jan 2021 12:24:49 GMT
1303
1428
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.21..@fluentui/react-button_v1.0.0-beta.22)
1304
1429
 
1305
1430
  ### Changes
@@ -1308,17 +1433,17 @@ Fri, 22 Jan 2021 12:24:49 GMT
1308
1433
 
1309
1434
  ## [1.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.21)
1310
1435
 
1311
- Thu, 21 Jan 2021 12:36:12 GMT
1436
+ Thu, 21 Jan 2021 12:36:12 GMT
1312
1437
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.19..@fluentui/react-button_v1.0.0-beta.21)
1313
1438
 
1314
1439
  ### Changes
1315
1440
 
1316
1441
  - Button: Enable pointer-events so that tooltip can be attached to disabledFocusable Button. ([PR #16508](https://github.com/microsoft/fluentui/pull/16508) by jukapsia@microsoft.com)
1317
- - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1442
+ - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1318
1443
 
1319
1444
  ## [1.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.19)
1320
1445
 
1321
- Thu, 14 Jan 2021 12:31:15 GMT
1446
+ Thu, 14 Jan 2021 12:31:15 GMT
1322
1447
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.17..@fluentui/react-button_v1.0.0-beta.19)
1323
1448
 
1324
1449
  ### Changes
@@ -1327,7 +1452,7 @@ Thu, 14 Jan 2021 12:31:15 GMT
1327
1452
 
1328
1453
  ## [1.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.17)
1329
1454
 
1330
- Fri, 11 Dec 2020 12:28:01 GMT
1455
+ Fri, 11 Dec 2020 12:28:01 GMT
1331
1456
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.14..@fluentui/react-button_v1.0.0-beta.17)
1332
1457
 
1333
1458
  ### Changes
@@ -1336,7 +1461,7 @@ Fri, 11 Dec 2020 12:28:01 GMT
1336
1461
 
1337
1462
  ## [1.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.14)
1338
1463
 
1339
- Tue, 01 Dec 2020 12:38:05 GMT
1464
+ Tue, 01 Dec 2020 12:38:05 GMT
1340
1465
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.13..@fluentui/react-button_v1.0.0-beta.14)
1341
1466
 
1342
1467
  ### Changes
@@ -1345,7 +1470,7 @@ Tue, 01 Dec 2020 12:38:05 GMT
1345
1470
 
1346
1471
  ## [1.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.13)
1347
1472
 
1348
- Mon, 23 Nov 2020 12:31:40 GMT
1473
+ Mon, 23 Nov 2020 12:31:40 GMT
1349
1474
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.12..@fluentui/react-button_v1.0.0-beta.13)
1350
1475
 
1351
1476
  ### Changes
@@ -1354,7 +1479,7 @@ Mon, 23 Nov 2020 12:31:40 GMT
1354
1479
 
1355
1480
  ## [1.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.12)
1356
1481
 
1357
- Wed, 18 Nov 2020 12:30:07 GMT
1482
+ Wed, 18 Nov 2020 12:30:07 GMT
1358
1483
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.11..@fluentui/react-button_v1.0.0-beta.12)
1359
1484
 
1360
1485
  ### Changes
@@ -1363,17 +1488,17 @@ Wed, 18 Nov 2020 12:30:07 GMT
1363
1488
 
1364
1489
  ## [1.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.11)
1365
1490
 
1366
- Tue, 17 Nov 2020 12:36:24 GMT
1491
+ Tue, 17 Nov 2020 12:36:24 GMT
1367
1492
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.9..@fluentui/react-button_v1.0.0-beta.11)
1368
1493
 
1369
1494
  ### Changes
1370
1495
 
1371
- - Updating arguments of style hook. ([PR #15952](https://github.com/microsoft/fluentui/pull/15952) by dzearing@hotmail.com)
1496
+ - Updating arguments of style hook. ([PR #15952](https://github.com/microsoft/fluentui/pull/15952) by dzearing@hotmail.com)
1372
1497
  - Updating classes hooks derived from Button to actually derive from Button. ([PR #15955](https://github.com/microsoft/fluentui/pull/15955) by xgao@microsoft.com)
1373
1498
 
1374
1499
  ## [1.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.9)
1375
1500
 
1376
- Fri, 06 Nov 2020 12:34:34 GMT
1501
+ Fri, 06 Nov 2020 12:34:34 GMT
1377
1502
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.8..@fluentui/react-button_v1.0.0-beta.9)
1378
1503
 
1379
1504
  ### Changes
@@ -1382,7 +1507,7 @@ Fri, 06 Nov 2020 12:34:34 GMT
1382
1507
 
1383
1508
  ## [1.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.8)
1384
1509
 
1385
- Thu, 05 Nov 2020 12:29:43 GMT
1510
+ Thu, 05 Nov 2020 12:29:43 GMT
1386
1511
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.7..@fluentui/react-button_v1.0.0-beta.8)
1387
1512
 
1388
1513
  ### Changes
@@ -1391,7 +1516,7 @@ Thu, 05 Nov 2020 12:29:43 GMT
1391
1516
 
1392
1517
  ## [1.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.7)
1393
1518
 
1394
- Wed, 04 Nov 2020 12:34:30 GMT
1519
+ Wed, 04 Nov 2020 12:34:30 GMT
1395
1520
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.4..@fluentui/react-button_v1.0.0-beta.7)
1396
1521
 
1397
1522
  ### Changes
@@ -1400,7 +1525,7 @@ Wed, 04 Nov 2020 12:34:30 GMT
1400
1525
 
1401
1526
  ## [1.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.4)
1402
1527
 
1403
- Wed, 28 Oct 2020 12:32:24 GMT
1528
+ Wed, 28 Oct 2020 12:32:24 GMT
1404
1529
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.1..@fluentui/react-button_v1.0.0-beta.4)
1405
1530
 
1406
1531
  ### Changes
@@ -1409,7 +1534,7 @@ Wed, 28 Oct 2020 12:32:24 GMT
1409
1534
 
1410
1535
  ## [1.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.1)
1411
1536
 
1412
- Fri, 23 Oct 2020 23:25:40 GMT
1537
+ Fri, 23 Oct 2020 23:25:40 GMT
1413
1538
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.0..@fluentui/react-button_v1.0.0-beta.1)
1414
1539
 
1415
1540
  ### Changes
@@ -1418,7 +1543,7 @@ Fri, 23 Oct 2020 23:25:40 GMT
1418
1543
 
1419
1544
  ## [1.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.0)
1420
1545
 
1421
- Fri, 23 Oct 2020 03:26:15 GMT
1546
+ Fri, 23 Oct 2020 03:26:15 GMT
1422
1547
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.3..@fluentui/react-button_v1.0.0-beta.0)
1423
1548
 
1424
1549
  ### Changes
@@ -1437,7 +1562,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
1437
1562
 
1438
1563
  ## [0.14.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.3)
1439
1564
 
1440
- Sun, 27 Sep 2020 04:20:52 GMT
1565
+ Sun, 27 Sep 2020 04:20:52 GMT
1441
1566
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.2..@fluentui/react-button_v0.14.3)
1442
1567
 
1443
1568
  ### Patches
@@ -1446,7 +1571,7 @@ Sun, 27 Sep 2020 04:20:52 GMT
1446
1571
 
1447
1572
  ## [0.14.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.2)
1448
1573
 
1449
- Fri, 25 Sep 2020 12:25:17 GMT
1574
+ Fri, 25 Sep 2020 12:25:17 GMT
1450
1575
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.0..@fluentui/react-button_v0.14.2)
1451
1576
 
1452
1577
  ### Patches
@@ -1456,7 +1581,7 @@ Fri, 25 Sep 2020 12:25:17 GMT
1456
1581
 
1457
1582
  ## [0.14.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.0)
1458
1583
 
1459
- Wed, 23 Sep 2020 12:27:48 GMT
1584
+ Wed, 23 Sep 2020 12:27:48 GMT
1460
1585
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.13.1..@fluentui/react-button_v0.14.0)
1461
1586
 
1462
1587
  ### Minor changes
@@ -1469,7 +1594,7 @@ Wed, 23 Sep 2020 12:27:48 GMT
1469
1594
 
1470
1595
  ## [0.13.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.13.1)
1471
1596
 
1472
- Thu, 17 Sep 2020 15:52:49 GMT
1597
+ Thu, 17 Sep 2020 15:52:49 GMT
1473
1598
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.13.0..@fluentui/react-button_v0.13.1)
1474
1599
 
1475
1600
  ### Patches
@@ -1478,7 +1603,7 @@ Thu, 17 Sep 2020 15:52:49 GMT
1478
1603
 
1479
1604
  ## [0.13.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.13.0)
1480
1605
 
1481
- Thu, 17 Sep 2020 12:25:04 GMT
1606
+ Thu, 17 Sep 2020 12:25:04 GMT
1482
1607
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.12.6..@fluentui/react-button_v0.13.0)
1483
1608
 
1484
1609
  ### Minor changes
@@ -1487,7 +1612,7 @@ Thu, 17 Sep 2020 12:25:04 GMT
1487
1612
 
1488
1613
  ## [0.12.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.12.5)
1489
1614
 
1490
- Tue, 15 Sep 2020 12:26:06 GMT
1615
+ Tue, 15 Sep 2020 12:26:06 GMT
1491
1616
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.12.4..@fluentui/react-button_v0.12.5)
1492
1617
 
1493
1618
  ### Patches
@@ -1496,7 +1621,7 @@ Tue, 15 Sep 2020 12:26:06 GMT
1496
1621
 
1497
1622
  ## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.12.0)
1498
1623
 
1499
- Wed, 09 Sep 2020 12:24:19 GMT
1624
+ Wed, 09 Sep 2020 12:24:19 GMT
1500
1625
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.6..@fluentui/react-button_v0.12.0)
1501
1626
 
1502
1627
  ### Minor changes
@@ -1509,7 +1634,7 @@ Wed, 09 Sep 2020 12:24:19 GMT
1509
1634
 
1510
1635
  ## [0.11.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.6)
1511
1636
 
1512
- Mon, 07 Sep 2020 12:26:26 GMT
1637
+ Mon, 07 Sep 2020 12:26:26 GMT
1513
1638
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.5..@fluentui/react-button_v0.11.6)
1514
1639
 
1515
1640
  ### Patches
@@ -1518,7 +1643,7 @@ Mon, 07 Sep 2020 12:26:26 GMT
1518
1643
 
1519
1644
  ## [0.11.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.5)
1520
1645
 
1521
- Fri, 04 Sep 2020 12:28:23 GMT
1646
+ Fri, 04 Sep 2020 12:28:23 GMT
1522
1647
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.0..@fluentui/react-button_v0.11.5)
1523
1648
 
1524
1649
  ### Patches
@@ -1527,7 +1652,7 @@ Fri, 04 Sep 2020 12:28:23 GMT
1527
1652
 
1528
1653
  ## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.0)
1529
1654
 
1530
- Fri, 28 Aug 2020 12:29:20 GMT
1655
+ Fri, 28 Aug 2020 12:29:20 GMT
1531
1656
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.3..@fluentui/react-button_v0.11.0)
1532
1657
 
1533
1658
  ### Minor changes
@@ -1536,7 +1661,7 @@ Fri, 28 Aug 2020 12:29:20 GMT
1536
1661
 
1537
1662
  ## [0.10.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.3)
1538
1663
 
1539
- Tue, 25 Aug 2020 12:36:19 GMT
1664
+ Tue, 25 Aug 2020 12:36:19 GMT
1540
1665
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.1..@fluentui/react-button_v0.10.3)
1541
1666
 
1542
1667
  ### Patches
@@ -1545,7 +1670,7 @@ Tue, 25 Aug 2020 12:36:19 GMT
1545
1670
 
1546
1671
  ## [0.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.1)
1547
1672
 
1548
- Thu, 20 Aug 2020 12:37:22 GMT
1673
+ Thu, 20 Aug 2020 12:37:22 GMT
1549
1674
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.0..@fluentui/react-button_v0.10.1)
1550
1675
 
1551
1676
  ### Patches
@@ -1555,7 +1680,7 @@ Thu, 20 Aug 2020 12:37:22 GMT
1555
1680
 
1556
1681
  ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.0)
1557
1682
 
1558
- Wed, 19 Aug 2020 12:44:33 GMT
1683
+ Wed, 19 Aug 2020 12:44:33 GMT
1559
1684
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.9.4..@fluentui/react-button_v0.10.0)
1560
1685
 
1561
1686
  ### Minor changes
@@ -1564,7 +1689,7 @@ Wed, 19 Aug 2020 12:44:33 GMT
1564
1689
 
1565
1690
  ## [0.9.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.9.4)
1566
1691
 
1567
- Tue, 18 Aug 2020 07:58:00 GMT
1692
+ Tue, 18 Aug 2020 07:58:00 GMT
1568
1693
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.9.0..@fluentui/react-button_v0.9.4)
1569
1694
 
1570
1695
  ### Patches
@@ -1573,7 +1698,7 @@ Tue, 18 Aug 2020 07:58:00 GMT
1573
1698
 
1574
1699
  ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.9.0)
1575
1700
 
1576
- Tue, 11 Aug 2020 05:47:07 GMT
1701
+ Tue, 11 Aug 2020 05:47:07 GMT
1577
1702
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.8.0..@fluentui/react-button_v0.9.0)
1578
1703
 
1579
1704
  ### Minor changes
@@ -1583,7 +1708,7 @@ Tue, 11 Aug 2020 05:47:07 GMT
1583
1708
 
1584
1709
  ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.8.0)
1585
1710
 
1586
- Mon, 10 Aug 2020 06:19:21 GMT
1711
+ Mon, 10 Aug 2020 06:19:21 GMT
1587
1712
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.14..@fluentui/react-button_v0.8.0)
1588
1713
 
1589
1714
  ### Minor changes
@@ -1592,7 +1717,7 @@ Mon, 10 Aug 2020 06:19:21 GMT
1592
1717
 
1593
1718
  ## [0.7.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.9)
1594
1719
 
1595
- Mon, 27 Jul 2020 12:42:21 GMT
1720
+ Mon, 27 Jul 2020 12:42:21 GMT
1596
1721
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.3..@fluentui/react-button_v0.7.9)
1597
1722
 
1598
1723
  ### Patches
@@ -1601,7 +1726,7 @@ Mon, 27 Jul 2020 12:42:21 GMT
1601
1726
 
1602
1727
  ## [0.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.3)
1603
1728
 
1604
- Fri, 17 Jul 2020 12:38:41 GMT
1729
+ Fri, 17 Jul 2020 12:38:41 GMT
1605
1730
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.1..@fluentui/react-button_v0.7.3)
1606
1731
 
1607
1732
  ### Patches
@@ -1610,7 +1735,7 @@ Fri, 17 Jul 2020 12:38:41 GMT
1610
1735
 
1611
1736
  ## [0.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.0)
1612
1737
 
1613
- Thu, 09 Jul 2020 21:59:04 GMT
1738
+ Thu, 09 Jul 2020 21:59:04 GMT
1614
1739
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.6.2..@fluentui/react-button_v0.7.0)
1615
1740
 
1616
1741
  ### Minor changes
@@ -1619,7 +1744,7 @@ Thu, 09 Jul 2020 21:59:04 GMT
1619
1744
 
1620
1745
  ## [0.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.6.2)
1621
1746
 
1622
- Thu, 02 Jul 2020 12:42:11 GMT
1747
+ Thu, 02 Jul 2020 12:42:11 GMT
1623
1748
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.6.0..@fluentui/react-button_v0.6.2)
1624
1749
 
1625
1750
  ### Patches
@@ -1628,7 +1753,7 @@ Thu, 02 Jul 2020 12:42:11 GMT
1628
1753
 
1629
1754
  ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.6.0)
1630
1755
 
1631
- Tue, 30 Jun 2020 12:33:36 GMT
1756
+ Tue, 30 Jun 2020 12:33:36 GMT
1632
1757
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.5.1..@fluentui/react-button_v0.6.0)
1633
1758
 
1634
1759
  ### Minor changes
@@ -1637,7 +1762,7 @@ Tue, 30 Jun 2020 12:33:36 GMT
1637
1762
 
1638
1763
  ## [0.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.5.1)
1639
1764
 
1640
- Fri, 26 Jun 2020 12:36:28 GMT
1765
+ Fri, 26 Jun 2020 12:36:28 GMT
1641
1766
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.5.0..@fluentui/react-button_v0.5.1)
1642
1767
 
1643
1768
  ### Patches
@@ -1647,7 +1772,7 @@ Fri, 26 Jun 2020 12:36:28 GMT
1647
1772
 
1648
1773
  ## [0.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.5.0)
1649
1774
 
1650
- Thu, 25 Jun 2020 12:50:17 GMT
1775
+ Thu, 25 Jun 2020 12:50:17 GMT
1651
1776
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.4.0..@fluentui/react-button_v0.5.0)
1652
1777
 
1653
1778
  ### Minor changes
@@ -1660,7 +1785,7 @@ Thu, 25 Jun 2020 12:50:17 GMT
1660
1785
 
1661
1786
  ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.4.0)
1662
1787
 
1663
- Tue, 23 Jun 2020 12:41:54 GMT
1788
+ Tue, 23 Jun 2020 12:41:54 GMT
1664
1789
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.7..@fluentui/react-button_v0.4.0)
1665
1790
 
1666
1791
  ### Minor changes
@@ -1669,7 +1794,7 @@ Tue, 23 Jun 2020 12:41:54 GMT
1669
1794
 
1670
1795
  ## [0.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.7)
1671
1796
 
1672
- Mon, 22 Jun 2020 12:42:16 GMT
1797
+ Mon, 22 Jun 2020 12:42:16 GMT
1673
1798
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.6..@fluentui/react-button_v0.3.7)
1674
1799
 
1675
1800
  ### Patches
@@ -1678,7 +1803,7 @@ Mon, 22 Jun 2020 12:42:16 GMT
1678
1803
 
1679
1804
  ## [0.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.6)
1680
1805
 
1681
- Fri, 19 Jun 2020 12:38:09 GMT
1806
+ Fri, 19 Jun 2020 12:38:09 GMT
1682
1807
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.5..@fluentui/react-button_v0.3.6)
1683
1808
 
1684
1809
  ### Patches
@@ -1687,7 +1812,7 @@ Fri, 19 Jun 2020 12:38:09 GMT
1687
1812
 
1688
1813
  ## [0.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.5)
1689
1814
 
1690
- Thu, 18 Jun 2020 12:37:09 GMT
1815
+ Thu, 18 Jun 2020 12:37:09 GMT
1691
1816
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.3..@fluentui/react-button_v0.3.5)
1692
1817
 
1693
1818
  ### Patches
@@ -1696,7 +1821,7 @@ Thu, 18 Jun 2020 12:37:09 GMT
1696
1821
 
1697
1822
  ## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.3)
1698
1823
 
1699
- Tue, 16 Jun 2020 17:35:36 GMT
1824
+ Tue, 16 Jun 2020 17:35:36 GMT
1700
1825
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.0..@fluentui/react-button_v0.3.3)
1701
1826
 
1702
1827
  ### Patches
@@ -1705,7 +1830,7 @@ Tue, 16 Jun 2020 17:35:36 GMT
1705
1830
 
1706
1831
  ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.0)
1707
1832
 
1708
- Fri, 12 Jun 2020 18:29:07 GMT
1833
+ Fri, 12 Jun 2020 18:29:07 GMT
1709
1834
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.2.0..@fluentui/react-button_v0.3.0)
1710
1835
 
1711
1836
  ### Minor changes
@@ -1719,7 +1844,7 @@ Fri, 12 Jun 2020 18:29:07 GMT
1719
1844
 
1720
1845
  ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.2.0)
1721
1846
 
1722
- Mon, 08 Jun 2020 12:34:34 GMT
1847
+ Mon, 08 Jun 2020 12:34:34 GMT
1723
1848
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.13..@fluentui/react-button_v0.2.0)
1724
1849
 
1725
1850
  ### Minor changes
@@ -1728,7 +1853,7 @@ Mon, 08 Jun 2020 12:34:34 GMT
1728
1853
 
1729
1854
  ## [0.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.13)
1730
1855
 
1731
- Fri, 05 Jun 2020 05:09:39 GMT
1856
+ Fri, 05 Jun 2020 05:09:39 GMT
1732
1857
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.12..@fluentui/react-button_v0.1.13)
1733
1858
 
1734
1859
  ### Patches
@@ -1738,7 +1863,7 @@ Fri, 05 Jun 2020 05:09:39 GMT
1738
1863
 
1739
1864
  ## [0.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.12)
1740
1865
 
1741
- Tue, 02 Jun 2020 12:36:30 GMT
1866
+ Tue, 02 Jun 2020 12:36:30 GMT
1742
1867
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.11..@fluentui/react-button_v0.1.12)
1743
1868
 
1744
1869
  ### Patches
@@ -1747,7 +1872,7 @@ Tue, 02 Jun 2020 12:36:30 GMT
1747
1872
 
1748
1873
  ## [0.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.11)
1749
1874
 
1750
- Mon, 01 Jun 2020 12:32:45 GMT
1875
+ Mon, 01 Jun 2020 12:32:45 GMT
1751
1876
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.4..@fluentui/react-button_v0.1.11)
1752
1877
 
1753
1878
  ### Patches
@@ -1756,12 +1881,12 @@ Mon, 01 Jun 2020 12:32:45 GMT
1756
1881
 
1757
1882
  ## [0.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.4)
1758
1883
 
1759
- Wed, 20 May 2020 12:31:10 GMT
1884
+ Wed, 20 May 2020 12:31:10 GMT
1760
1885
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.1..@fluentui/react-button_v0.1.4)
1761
1886
 
1762
1887
  ### Patches
1763
1888
 
1764
- - feat(compose): expose __self slot ([PR #13115](https://github.com/microsoft/fluentui/pull/13115) by olfedias@microsoft.com)
1889
+ - feat(compose): expose \_\_self slot ([PR #13115](https://github.com/microsoft/fluentui/pull/13115) by olfedias@microsoft.com)
1765
1890
 
1766
1891
  ## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.1)
1767
1892