@fluentui/react-button 0.0.0-nightly-20220302-0405.1

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 (226) hide show
  1. package/CHANGELOG.json +4894 -0
  2. package/CHANGELOG.md +1817 -0
  3. package/LICENSE +15 -0
  4. package/README.md +36 -0
  5. package/dist/demo/index.html +71 -0
  6. package/dist/demo/react-dom.development.js +21413 -0
  7. package/dist/demo/react.development.js +3155 -0
  8. package/dist/react-button.d.ts +240 -0
  9. package/lib/Button.d.ts +1 -0
  10. package/lib/Button.js +2 -0
  11. package/lib/Button.js.map +1 -0
  12. package/lib/CompoundButton.d.ts +1 -0
  13. package/lib/CompoundButton.js +2 -0
  14. package/lib/CompoundButton.js.map +1 -0
  15. package/lib/MenuButton.d.ts +1 -0
  16. package/lib/MenuButton.js +2 -0
  17. package/lib/MenuButton.js.map +1 -0
  18. package/lib/SplitButton.d.ts +1 -0
  19. package/lib/SplitButton.js +2 -0
  20. package/lib/SplitButton.js.map +1 -0
  21. package/lib/ToggleButton.d.ts +1 -0
  22. package/lib/ToggleButton.js +2 -0
  23. package/lib/ToggleButton.js.map +1 -0
  24. package/lib/components/Button/Button.d.ts +6 -0
  25. package/lib/components/Button/Button.js +15 -0
  26. package/lib/components/Button/Button.js.map +1 -0
  27. package/lib/components/Button/Button.types.d.ts +62 -0
  28. package/lib/components/Button/Button.types.js +2 -0
  29. package/lib/components/Button/Button.types.js.map +1 -0
  30. package/lib/components/Button/index.d.ts +5 -0
  31. package/lib/components/Button/index.js +5 -0
  32. package/lib/components/Button/index.js.map +1 -0
  33. package/lib/components/Button/renderButton.d.ts +5 -0
  34. package/lib/components/Button/renderButton.js +21 -0
  35. package/lib/components/Button/renderButton.js.map +1 -0
  36. package/lib/components/Button/useButton.d.ts +8 -0
  37. package/lib/components/Button/useButton.js +50 -0
  38. package/lib/components/Button/useButton.js.map +1 -0
  39. package/lib/components/Button/useButtonStyles.d.ts +3 -0
  40. package/lib/components/Button/useButtonStyles.js +418 -0
  41. package/lib/components/Button/useButtonStyles.js.map +1 -0
  42. package/lib/components/CompoundButton/CompoundButton.d.ts +6 -0
  43. package/lib/components/CompoundButton/CompoundButton.js +15 -0
  44. package/lib/components/CompoundButton/CompoundButton.js.map +1 -0
  45. package/lib/components/CompoundButton/CompoundButton.types.d.ts +14 -0
  46. package/lib/components/CompoundButton/CompoundButton.types.js +2 -0
  47. package/lib/components/CompoundButton/CompoundButton.types.js.map +1 -0
  48. package/lib/components/CompoundButton/index.d.ts +5 -0
  49. package/lib/components/CompoundButton/index.js +6 -0
  50. package/lib/components/CompoundButton/index.js.map +1 -0
  51. package/lib/components/CompoundButton/renderCompoundButton.d.ts +5 -0
  52. package/lib/components/CompoundButton/renderCompoundButton.js +23 -0
  53. package/lib/components/CompoundButton/renderCompoundButton.js.map +1 -0
  54. package/lib/components/CompoundButton/useCompoundButton.d.ts +8 -0
  55. package/lib/components/CompoundButton/useCompoundButton.js +29 -0
  56. package/lib/components/CompoundButton/useCompoundButton.js.map +1 -0
  57. package/lib/components/CompoundButton/useCompoundButtonStyles.d.ts +3 -0
  58. package/lib/components/CompoundButton/useCompoundButtonStyles.js +168 -0
  59. package/lib/components/CompoundButton/useCompoundButtonStyles.js.map +1 -0
  60. package/lib/components/MenuButton/MenuButton.d.ts +6 -0
  61. package/lib/components/MenuButton/MenuButton.js +15 -0
  62. package/lib/components/MenuButton/MenuButton.js.map +1 -0
  63. package/lib/components/MenuButton/MenuButton.types.d.ts +10 -0
  64. package/lib/components/MenuButton/MenuButton.types.js +2 -0
  65. package/lib/components/MenuButton/MenuButton.types.js.map +1 -0
  66. package/lib/components/MenuButton/index.d.ts +5 -0
  67. package/lib/components/MenuButton/index.js +6 -0
  68. package/lib/components/MenuButton/index.js.map +1 -0
  69. package/lib/components/MenuButton/renderMenuButton.d.ts +5 -0
  70. package/lib/components/MenuButton/renderMenuButton.js +21 -0
  71. package/lib/components/MenuButton/renderMenuButton.js.map +1 -0
  72. package/lib/components/MenuButton/useMenuButton.d.ts +6 -0
  73. package/lib/components/MenuButton/useMenuButton.js +32 -0
  74. package/lib/components/MenuButton/useMenuButton.js.map +1 -0
  75. package/lib/components/MenuButton/useMenuButtonStyles.d.ts +3 -0
  76. package/lib/components/MenuButton/useMenuButtonStyles.js +36 -0
  77. package/lib/components/MenuButton/useMenuButtonStyles.js.map +1 -0
  78. package/lib/components/SplitButton/SplitButton.d.ts +7 -0
  79. package/lib/components/SplitButton/SplitButton.js +16 -0
  80. package/lib/components/SplitButton/SplitButton.js.map +1 -0
  81. package/lib/components/SplitButton/SplitButton.types.d.ts +21 -0
  82. package/lib/components/SplitButton/SplitButton.types.js +2 -0
  83. package/lib/components/SplitButton/SplitButton.types.js.map +1 -0
  84. package/lib/components/SplitButton/index.d.ts +5 -0
  85. package/lib/components/SplitButton/index.js +6 -0
  86. package/lib/components/SplitButton/index.js.map +1 -0
  87. package/lib/components/SplitButton/renderSplitButton.d.ts +5 -0
  88. package/lib/components/SplitButton/renderSplitButton.js +17 -0
  89. package/lib/components/SplitButton/renderSplitButton.js.map +1 -0
  90. package/lib/components/SplitButton/useSplitButton.d.ts +8 -0
  91. package/lib/components/SplitButton/useSplitButton.js +81 -0
  92. package/lib/components/SplitButton/useSplitButton.js.map +1 -0
  93. package/lib/components/SplitButton/useSplitButtonStyles.d.ts +3 -0
  94. package/lib/components/SplitButton/useSplitButtonStyles.js +93 -0
  95. package/lib/components/SplitButton/useSplitButtonStyles.js.map +1 -0
  96. package/lib/components/ToggleButton/ToggleButton.d.ts +6 -0
  97. package/lib/components/ToggleButton/ToggleButton.js +15 -0
  98. package/lib/components/ToggleButton/ToggleButton.js.map +1 -0
  99. package/lib/components/ToggleButton/ToggleButton.types.d.ts +20 -0
  100. package/lib/components/ToggleButton/ToggleButton.types.js +2 -0
  101. package/lib/components/ToggleButton/ToggleButton.types.js.map +1 -0
  102. package/lib/components/ToggleButton/index.d.ts +5 -0
  103. package/lib/components/ToggleButton/index.js +6 -0
  104. package/lib/components/ToggleButton/index.js.map +1 -0
  105. package/lib/components/ToggleButton/renderToggleButton.d.ts +1 -0
  106. package/lib/components/ToggleButton/renderToggleButton.js +2 -0
  107. package/lib/components/ToggleButton/renderToggleButton.js.map +1 -0
  108. package/lib/components/ToggleButton/useToggleButton.d.ts +9 -0
  109. package/lib/components/ToggleButton/useToggleButton.js +52 -0
  110. package/lib/components/ToggleButton/useToggleButton.js.map +1 -0
  111. package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +3 -0
  112. package/lib/components/ToggleButton/useToggleButtonStyles.js +194 -0
  113. package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
  114. package/lib/index.d.ts +5 -0
  115. package/lib/index.js +6 -0
  116. package/lib/index.js.map +1 -0
  117. package/lib/tsdoc-metadata.json +11 -0
  118. package/lib-commonjs/Button.d.ts +1 -0
  119. package/lib-commonjs/Button.js +10 -0
  120. package/lib-commonjs/Button.js.map +1 -0
  121. package/lib-commonjs/CompoundButton.d.ts +1 -0
  122. package/lib-commonjs/CompoundButton.js +10 -0
  123. package/lib-commonjs/CompoundButton.js.map +1 -0
  124. package/lib-commonjs/MenuButton.d.ts +1 -0
  125. package/lib-commonjs/MenuButton.js +10 -0
  126. package/lib-commonjs/MenuButton.js.map +1 -0
  127. package/lib-commonjs/SplitButton.d.ts +1 -0
  128. package/lib-commonjs/SplitButton.js +10 -0
  129. package/lib-commonjs/SplitButton.js.map +1 -0
  130. package/lib-commonjs/ToggleButton.d.ts +1 -0
  131. package/lib-commonjs/ToggleButton.js +10 -0
  132. package/lib-commonjs/ToggleButton.js.map +1 -0
  133. package/lib-commonjs/components/Button/Button.d.ts +6 -0
  134. package/lib-commonjs/components/Button/Button.js +26 -0
  135. package/lib-commonjs/components/Button/Button.js.map +1 -0
  136. package/lib-commonjs/components/Button/Button.types.d.ts +62 -0
  137. package/lib-commonjs/components/Button/Button.types.js +6 -0
  138. package/lib-commonjs/components/Button/Button.types.js.map +1 -0
  139. package/lib-commonjs/components/Button/index.d.ts +5 -0
  140. package/lib-commonjs/components/Button/index.js +30 -0
  141. package/lib-commonjs/components/Button/index.js.map +1 -0
  142. package/lib-commonjs/components/Button/renderButton.d.ts +5 -0
  143. package/lib-commonjs/components/Button/renderButton.js +32 -0
  144. package/lib-commonjs/components/Button/renderButton.js.map +1 -0
  145. package/lib-commonjs/components/Button/useButton.d.ts +8 -0
  146. package/lib-commonjs/components/Button/useButton.js +61 -0
  147. package/lib-commonjs/components/Button/useButton.js.map +1 -0
  148. package/lib-commonjs/components/Button/useButtonStyles.d.ts +3 -0
  149. package/lib-commonjs/components/Button/useButtonStyles.js +430 -0
  150. package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -0
  151. package/lib-commonjs/components/CompoundButton/CompoundButton.d.ts +6 -0
  152. package/lib-commonjs/components/CompoundButton/CompoundButton.js +26 -0
  153. package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -0
  154. package/lib-commonjs/components/CompoundButton/CompoundButton.types.d.ts +14 -0
  155. package/lib-commonjs/components/CompoundButton/CompoundButton.types.js +6 -0
  156. package/lib-commonjs/components/CompoundButton/CompoundButton.types.js.map +1 -0
  157. package/lib-commonjs/components/CompoundButton/index.d.ts +5 -0
  158. package/lib-commonjs/components/CompoundButton/index.js +32 -0
  159. package/lib-commonjs/components/CompoundButton/index.js.map +1 -0
  160. package/lib-commonjs/components/CompoundButton/renderCompoundButton.d.ts +5 -0
  161. package/lib-commonjs/components/CompoundButton/renderCompoundButton.js +34 -0
  162. package/lib-commonjs/components/CompoundButton/renderCompoundButton.js.map +1 -0
  163. package/lib-commonjs/components/CompoundButton/useCompoundButton.d.ts +8 -0
  164. package/lib-commonjs/components/CompoundButton/useCompoundButton.js +40 -0
  165. package/lib-commonjs/components/CompoundButton/useCompoundButton.js.map +1 -0
  166. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +3 -0
  167. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js +180 -0
  168. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -0
  169. package/lib-commonjs/components/MenuButton/MenuButton.d.ts +6 -0
  170. package/lib-commonjs/components/MenuButton/MenuButton.js +26 -0
  171. package/lib-commonjs/components/MenuButton/MenuButton.js.map +1 -0
  172. package/lib-commonjs/components/MenuButton/MenuButton.types.d.ts +10 -0
  173. package/lib-commonjs/components/MenuButton/MenuButton.types.js +6 -0
  174. package/lib-commonjs/components/MenuButton/MenuButton.types.js.map +1 -0
  175. package/lib-commonjs/components/MenuButton/index.d.ts +5 -0
  176. package/lib-commonjs/components/MenuButton/index.js +32 -0
  177. package/lib-commonjs/components/MenuButton/index.js.map +1 -0
  178. package/lib-commonjs/components/MenuButton/renderMenuButton.d.ts +5 -0
  179. package/lib-commonjs/components/MenuButton/renderMenuButton.js +32 -0
  180. package/lib-commonjs/components/MenuButton/renderMenuButton.js.map +1 -0
  181. package/lib-commonjs/components/MenuButton/useMenuButton.d.ts +6 -0
  182. package/lib-commonjs/components/MenuButton/useMenuButton.js +45 -0
  183. package/lib-commonjs/components/MenuButton/useMenuButton.js.map +1 -0
  184. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +3 -0
  185. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +47 -0
  186. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -0
  187. package/lib-commonjs/components/SplitButton/SplitButton.d.ts +7 -0
  188. package/lib-commonjs/components/SplitButton/SplitButton.js +27 -0
  189. package/lib-commonjs/components/SplitButton/SplitButton.js.map +1 -0
  190. package/lib-commonjs/components/SplitButton/SplitButton.types.d.ts +21 -0
  191. package/lib-commonjs/components/SplitButton/SplitButton.types.js +6 -0
  192. package/lib-commonjs/components/SplitButton/SplitButton.types.js.map +1 -0
  193. package/lib-commonjs/components/SplitButton/index.d.ts +5 -0
  194. package/lib-commonjs/components/SplitButton/index.js +32 -0
  195. package/lib-commonjs/components/SplitButton/index.js.map +1 -0
  196. package/lib-commonjs/components/SplitButton/renderSplitButton.d.ts +5 -0
  197. package/lib-commonjs/components/SplitButton/renderSplitButton.js +28 -0
  198. package/lib-commonjs/components/SplitButton/renderSplitButton.js.map +1 -0
  199. package/lib-commonjs/components/SplitButton/useSplitButton.d.ts +8 -0
  200. package/lib-commonjs/components/SplitButton/useSplitButton.js +93 -0
  201. package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -0
  202. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +3 -0
  203. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +105 -0
  204. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -0
  205. package/lib-commonjs/components/ToggleButton/ToggleButton.d.ts +6 -0
  206. package/lib-commonjs/components/ToggleButton/ToggleButton.js +26 -0
  207. package/lib-commonjs/components/ToggleButton/ToggleButton.js.map +1 -0
  208. package/lib-commonjs/components/ToggleButton/ToggleButton.types.d.ts +20 -0
  209. package/lib-commonjs/components/ToggleButton/ToggleButton.types.js +6 -0
  210. package/lib-commonjs/components/ToggleButton/ToggleButton.types.js.map +1 -0
  211. package/lib-commonjs/components/ToggleButton/index.d.ts +5 -0
  212. package/lib-commonjs/components/ToggleButton/index.js +32 -0
  213. package/lib-commonjs/components/ToggleButton/index.js.map +1 -0
  214. package/lib-commonjs/components/ToggleButton/renderToggleButton.d.ts +1 -0
  215. package/lib-commonjs/components/ToggleButton/renderToggleButton.js +16 -0
  216. package/lib-commonjs/components/ToggleButton/renderToggleButton.js.map +1 -0
  217. package/lib-commonjs/components/ToggleButton/useToggleButton.d.ts +9 -0
  218. package/lib-commonjs/components/ToggleButton/useToggleButton.js +64 -0
  219. package/lib-commonjs/components/ToggleButton/useToggleButton.js.map +1 -0
  220. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +3 -0
  221. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js +206 -0
  222. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
  223. package/lib-commonjs/index.d.ts +5 -0
  224. package/lib-commonjs/index.js +18 -0
  225. package/lib-commonjs/index.js.map +1 -0
  226. package/package.json +68 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1817 @@
1
+ # Change Log - @fluentui/react-button
2
+
3
+ This log was last generated on Wed, 02 Mar 2022 04:14:52 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20220302-0405.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.0.0-nightly-20220302-0405.1)
8
+
9
+ Wed, 02 Mar 2022 04:14:52 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.4..@fluentui/react-button_v0.0.0-nightly-20220302-0405.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by email not defined)
15
+ - Bump @fluentui/keyboard-keys to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
16
+ - Bump @fluentui/react-aria to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
17
+ - Bump @fluentui/react-tabster to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
18
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
19
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
20
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
21
+
22
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.4)
23
+
24
+ Tue, 01 Mar 2022 02:17:35 GMT
25
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.3..@fluentui/react-button_v9.0.0-rc.4)
26
+
27
+ ### Changes
28
+
29
+ - fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
30
+ - Bump @fluentui/react-aria to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
31
+ - Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
32
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
33
+
34
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.3)
35
+
36
+ Fri, 18 Feb 2022 13:35:28 GMT
37
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.1..@fluentui/react-button_v9.0.0-rc.3)
38
+
39
+ ### Changes
40
+
41
+ - SplitButton: Fixing issue where menuIcon prop was not being respected. ([PR #21683](https://github.com/microsoft/fluentui/pull/21683) by Humberto.Morimoto@microsoft.com)
42
+ - Button: Updating stories to fix a11y issues. ([PR #21679](https://github.com/microsoft/fluentui/pull/21679) by Humberto.Morimoto@microsoft.com)
43
+ - SplitButton: Fixing screen reader access issues. ([PR #21703](https://github.com/microsoft/fluentui/pull/21703) by Humberto.Morimoto@microsoft.com)
44
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
45
+ - Button: Adding tests and fixing issues in SplitButton and ToggleButton. ([PR #21719](https://github.com/microsoft/fluentui/pull/21719) by Humberto.Morimoto@microsoft.com)
46
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
47
+ - Bump @fluentui/react-aria to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
48
+ - Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
49
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
50
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
51
+
52
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.1)
53
+
54
+ Thu, 10 Feb 2022 08:51:46 GMT
55
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.5..@fluentui/react-button_v9.0.0-rc.1)
56
+
57
+ ### Changes
58
+
59
+ - Using ComponentSlotProps instead of ObjectShorthandProps. ([PR #20890](https://github.com/microsoft/fluentui/pull/20890) by Humberto.Morimoto@microsoft.com)
60
+ - 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)
61
+ - Replace make-styles packages with griffel equivalents. ([PR #21436](https://github.com/microsoft/fluentui/pull/21436) by olfedias@microsoft.com)
62
+ - Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
63
+ - 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)
64
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
65
+ - (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
66
+ - 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)
67
+ - CompoundButton: Updating styles to match latest design spec. ([PR #21523](https://github.com/microsoft/fluentui/pull/21523) by Humberto.Morimoto@microsoft.com)
68
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
69
+ - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
70
+ - Remove fontSize from default menuIcon, as it is already set via css ([PR #21221](https://github.com/microsoft/fluentui/pull/21221) by behowell@microsoft.com)
71
+ - ToggleButton: Stopping aria-pressed from changing when ToggleButton is disabledFocusable. ([PR #21492](https://github.com/microsoft/fluentui/pull/21492) by Humberto.Morimoto@microsoft.com)
72
+ - update styles to not use CSS shorthands ([PR #20815](https://github.com/microsoft/fluentui/pull/20815) by olfedias@microsoft.com)
73
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
74
+ - Updating use of tokens.fontWeight now that we don't need to use casting. ([PR #21217](https://github.com/microsoft/fluentui/pull/21217) by Humberto.Morimoto@microsoft.com)
75
+ - MenuButton: Updating types so it properly supports ref. ([PR #21515](https://github.com/microsoft/fluentui/pull/21515) by Humberto.Morimoto@microsoft.com)
76
+ - update @fluentui/react-icons package ([PR #21498](https://github.com/microsoft/fluentui/pull/21498) by olfedias@microsoft.com)
77
+ - Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
78
+ - Updating packages based on changes to focusIndicator functions to remove functions from makeStyles in @fluentui/react-tabster. ([PR #21035](https://github.com/microsoft/fluentui/pull/21035) by Humberto.Morimoto@microsoft.com)
79
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
80
+ - Bump @fluentui/react-aria to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
81
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
82
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
83
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
84
+
85
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.5)
86
+
87
+ Thu, 25 Nov 2021 08:34:12 GMT
88
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.4..@fluentui/react-button_v9.0.0-beta.5)
89
+
90
+ ### Changes
91
+
92
+ - MenuButton: Removing tight coupling with Menu by replicating type locally. ([PR #20635](https://github.com/microsoft/fluentui/pull/20635) by Humberto.Morimoto@microsoft.com)
93
+ - update react-icons dependency ([PR #20563](https://github.com/microsoft/fluentui/pull/20563) by ololubek@microsoft.com)
94
+ - Bump @fluentui/react-aria to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
95
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
96
+ - Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
97
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
98
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
99
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
100
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
101
+
102
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.4)
103
+
104
+ Fri, 12 Nov 2021 13:25:16 GMT
105
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.3..@fluentui/react-button_v9.0.0-beta.4)
106
+
107
+ ### Changes
108
+
109
+ - export static classes for components ([PR #20454](https://github.com/microsoft/fluentui/pull/20454) by olfedias@microsoft.com)
110
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
111
+ - react-button: Removing use of enzyme in the converged package. ([PR #20342](https://github.com/microsoft/fluentui/pull/20342) by Humberto.Morimoto@microsoft.com)
112
+ - Fixing incomplete comment. ([PR #20273](https://github.com/microsoft/fluentui/pull/20273) by Humberto.Morimoto@microsoft.com)
113
+ - Bump @fluentui/react-aria to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
114
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
115
+ - Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
116
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
117
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
118
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
119
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
120
+ - Bump @fluentui/react-menu to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
121
+
122
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.3)
123
+
124
+ Wed, 27 Oct 2021 12:14:15 GMT
125
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.2..@fluentui/react-button_v9.0.0-beta.3)
126
+
127
+ ### Changes
128
+
129
+ - Removed duplicate 'Button' from story names ([PR #20266](https://github.com/microsoft/fluentui/pull/20266) by gcox@microsoft.com)
130
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
131
+ - Bump @fluentui/react-aria to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
132
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
133
+ - Bump @fluentui/react-tabster to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
134
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
135
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
136
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
137
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
138
+ - Bump @fluentui/react-menu to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
139
+
140
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.2)
141
+
142
+ Tue, 12 Oct 2021 19:45:58 GMT
143
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.1..@fluentui/react-button_v9.0.0-beta.2)
144
+
145
+ ### Changes
146
+
147
+ - Bump @fluentui/react-tabster to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
148
+ - Bump @fluentui/react-menu to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
149
+
150
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.1)
151
+
152
+ Wed, 06 Oct 2021 10:37:22 GMT
153
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.101..@fluentui/react-button_v9.0.0-beta.1)
154
+
155
+ ### Changes
156
+
157
+ - Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
158
+ - Bump @fluentui/keyboard-keys to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
159
+ - Bump @fluentui/react-aria to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
160
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
161
+ - Bump @fluentui/react-tabster to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
162
+ - Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
163
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
164
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
165
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
166
+ - Bump @fluentui/react-menu to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
167
+
168
+ ## [9.0.0-alpha.101](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.101)
169
+
170
+ Tue, 05 Oct 2021 12:47:58 GMT
171
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.100..@fluentui/react-button_v9.0.0-alpha.101)
172
+
173
+ ### Changes
174
+
175
+ - Bump @fluentui/react-aria to v9.0.0-alpha.45 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
176
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.78 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
177
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.73 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
178
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.60 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
179
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
180
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.22 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
181
+ - Bump @fluentui/react-menu to v9.0.0-alpha.92 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
182
+
183
+ ## [9.0.0-alpha.100](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.100)
184
+
185
+ Tue, 05 Oct 2021 09:28:07 GMT
186
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.99..@fluentui/react-button_v9.0.0-alpha.100)
187
+
188
+ ### Changes
189
+
190
+ - Adds ForwardRefComponent to react-button components declaration ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
191
+ - Bump @fluentui/react-aria to v9.0.0-alpha.44 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
192
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
193
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.72 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
194
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
195
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.59 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
196
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
197
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
198
+ - Bump @fluentui/react-menu to v9.0.0-alpha.91 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
199
+
200
+ ## [9.0.0-alpha.99](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.99)
201
+
202
+ Fri, 01 Oct 2021 14:13:08 GMT
203
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.97..@fluentui/react-button_v9.0.0-alpha.99)
204
+
205
+ ### Changes
206
+
207
+ - Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
208
+ - Bump @fluentui/keyboard-keys to v9.0.0-alpha.5 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
209
+ - Bump @fluentui/react-aria to v9.0.0-alpha.43 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
210
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.76 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
211
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.71 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
212
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.55 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
213
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.58 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
214
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
215
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
216
+ - Bump @fluentui/react-menu to v9.0.0-alpha.90 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
217
+
218
+ ## [9.0.0-alpha.97](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.97)
219
+
220
+ Fri, 01 Oct 2021 12:30:46 GMT
221
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.96..@fluentui/react-button_v9.0.0-alpha.97)
222
+
223
+ ### Changes
224
+
225
+ - Updates button to simplify prop merging ([PR #18814](https://github.com/microsoft/fluentui/pull/18814) by bsunderhus@microsoft.com)
226
+ - Bump @fluentui/react-aria to v9.0.0-alpha.41 ([PR #18814](https://github.com/microsoft/fluentui/pull/18814) by beachball)
227
+ - Bump @fluentui/react-menu to v9.0.0-alpha.88 ([PR #18814](https://github.com/microsoft/fluentui/pull/18814) by beachball)
228
+
229
+ ## [9.0.0-alpha.96](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.96)
230
+
231
+ Fri, 01 Oct 2021 09:44:56 GMT
232
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.95..@fluentui/react-button_v9.0.0-alpha.96)
233
+
234
+ ### Changes
235
+
236
+ - Use the renamed createCustomFocusIndicatorStyle helper for focus outline style ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by lingfangao@hotmail.com)
237
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.69 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball)
238
+ - Bump @fluentui/react-menu to v9.0.0-alpha.87 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball)
239
+
240
+ ## [9.0.0-alpha.95](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.95)
241
+
242
+ Thu, 30 Sep 2021 09:18:15 GMT
243
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.94..@fluentui/react-button_v9.0.0-alpha.95)
244
+
245
+ ### Changes
246
+
247
+ - Bump @fluentui/react-menu to v9.0.0-alpha.86 ([PR #19802](https://github.com/microsoft/fluentui/pull/19802) by beachball)
248
+
249
+ ## [9.0.0-alpha.94](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.94)
250
+
251
+ Wed, 29 Sep 2021 08:06:11 GMT
252
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.93..@fluentui/react-button_v9.0.0-alpha.94)
253
+
254
+ ### Changes
255
+
256
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.74 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
257
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.68 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
258
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.56 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
259
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
260
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
261
+ - Bump @fluentui/react-menu to v9.0.0-alpha.85 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
262
+
263
+ ## [9.0.0-alpha.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.93)
264
+
265
+ Mon, 27 Sep 2021 08:06:00 GMT
266
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.92..@fluentui/react-button_v9.0.0-alpha.93)
267
+
268
+ ### Changes
269
+
270
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
271
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.67 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
272
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
273
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.55 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
274
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
275
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
276
+ - Bump @fluentui/react-menu to v9.0.0-alpha.84 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
277
+
278
+ ## [9.0.0-alpha.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.92)
279
+
280
+ Fri, 24 Sep 2021 09:17:17 GMT
281
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.91..@fluentui/react-button_v9.0.0-alpha.92)
282
+
283
+ ### Changes
284
+
285
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.72 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
286
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.66 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
287
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.52 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
288
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.54 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
289
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
290
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
291
+ - Bump @fluentui/react-menu to v9.0.0-alpha.83 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
292
+
293
+ ## [9.0.0-alpha.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.91)
294
+
295
+ Thu, 23 Sep 2021 08:21:34 GMT
296
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.90..@fluentui/react-button_v9.0.0-alpha.91)
297
+
298
+ ### Changes
299
+
300
+ - Updated for consistency to have shape and appearance properties ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by gcox@microsoft.com)
301
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.71 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
302
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.65 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
303
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.51 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
304
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
305
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
306
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
307
+ - Bump @fluentui/react-menu to v9.0.0-alpha.82 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
308
+
309
+ ## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.90)
310
+
311
+ Wed, 22 Sep 2021 10:10:07 GMT
312
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.89..@fluentui/react-button_v9.0.0-alpha.90)
313
+
314
+ ### Changes
315
+
316
+ - update react-icons dependency ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by ololubek@microsoft.com)
317
+ - SplitButton: Adding missing verticalAlign=middle style. ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by Humberto.Morimoto@microsoft.com)
318
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.70 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
319
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.64 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
320
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.50 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
321
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.52 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
322
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
323
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
324
+ - Bump @fluentui/react-menu to v9.0.0-alpha.81 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
325
+
326
+ ## [9.0.0-alpha.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.89)
327
+
328
+ Tue, 21 Sep 2021 07:42:34 GMT
329
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.88..@fluentui/react-button_v9.0.0-alpha.89)
330
+
331
+ ### Changes
332
+
333
+ - Updating to types over interfaces ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by gcox@microsoft.com)
334
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.69 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
335
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.63 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
336
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.51 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
337
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
338
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
339
+ - Bump @fluentui/react-menu to v9.0.0-alpha.80 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
340
+
341
+ ## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.88)
342
+
343
+ Mon, 20 Sep 2021 07:36:26 GMT
344
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.87..@fluentui/react-button_v9.0.0-alpha.88)
345
+
346
+ ### Changes
347
+
348
+ - SplitButton: Re-introducing SplitButton using the latest version of makeStyles. ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by Humberto.Morimoto@microsoft.com)
349
+ - Bump @fluentui/react-button to v9.0.0-alpha.88 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com)
350
+
351
+ ## [9.0.0-alpha.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.87)
352
+
353
+ Fri, 17 Sep 2021 07:35:26 GMT
354
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.86..@fluentui/react-button_v9.0.0-alpha.87)
355
+
356
+ ### Changes
357
+
358
+ - Modifying MenuButton to adhere to MenuTrigger changes. ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
359
+ - Updating API comments to be more descriptive. ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
360
+ - Bump @fluentui/react-button to v9.0.0-alpha.87 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
361
+
362
+ ## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.86)
363
+
364
+ Thu, 16 Sep 2021 07:38:39 GMT
365
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.85..@fluentui/react-button_v9.0.0-alpha.86)
366
+
367
+ ### Changes
368
+
369
+ - Bump @fluentui/react-button to v9.0.0-alpha.86 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
370
+
371
+ ## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.85)
372
+
373
+ Tue, 14 Sep 2021 20:09:02 GMT
374
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.84..@fluentui/react-button_v9.0.0-alpha.85)
375
+
376
+ ### Changes
377
+
378
+ - Bump @fluentui/react-button to v9.0.0-alpha.85 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com)
379
+
380
+ ## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.84)
381
+
382
+ Fri, 10 Sep 2021 16:31:53 GMT
383
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.83..@fluentui/react-button_v9.0.0-alpha.84)
384
+
385
+ ### Changes
386
+
387
+ - chore(v9): Move all internal v9 dependencies from caret to fixed version ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
388
+ - Bump @fluentui/react-button to v9.0.0-alpha.84 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
389
+
390
+ ## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.83)
391
+
392
+ Fri, 10 Sep 2021 07:39:51 GMT
393
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.82..@fluentui/react-button_v9.0.0-alpha.83)
394
+
395
+ ### Changes
396
+
397
+ - Bump @fluentui/react-menu to v9.0.0-alpha.74 ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com)
398
+
399
+ ## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.82)
400
+
401
+ Wed, 08 Sep 2021 07:34:11 GMT
402
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.81..@fluentui/react-button_v9.0.0-alpha.82)
403
+
404
+ ### Changes
405
+
406
+ - Bump @fluentui/react-menu to v9.0.0-alpha.73 ([PR #19661](https://github.com/microsoft/fluentui/pull/19661) by lingfangao@hotmail.com)
407
+
408
+ ## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.81)
409
+
410
+ Mon, 06 Sep 2021 07:34:53 GMT
411
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.80..@fluentui/react-button_v9.0.0-alpha.81)
412
+
413
+ ### Changes
414
+
415
+ - refactor(Button): use `event.key` for keyboard event ([PR #19638](https://github.com/microsoft/fluentui/pull/19638) by lingfangao@hotmail.com)
416
+
417
+ ## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.80)
418
+
419
+ Fri, 03 Sep 2021 00:13:07 GMT
420
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.79..@fluentui/react-button_v9.0.0-alpha.80)
421
+
422
+ ### Changes
423
+
424
+ - MenuButton: Cleaning up implementation and adhering to MenuTrigger contract. ([PR #19612](https://github.com/microsoft/fluentui/pull/19612) by Humberto.Morimoto@microsoft.com)
425
+
426
+ ## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.79)
427
+
428
+ Thu, 02 Sep 2021 07:36:46 GMT
429
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.78..@fluentui/react-button_v9.0.0-alpha.79)
430
+
431
+ ### Patches
432
+
433
+ - Bump @fluentui/react-conformance to v0.4.5 ([PR #19590](https://github.com/microsoft/fluentui/pull/19590) by olfedias@microsoft.com)
434
+
435
+ ### Changes
436
+
437
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.43 ([PR #19065](https://github.com/microsoft/fluentui/pull/19065) by olfedias@microsoft.com)
438
+
439
+ ## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.78)
440
+
441
+ Wed, 01 Sep 2021 07:39:56 GMT
442
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.77..@fluentui/react-button_v9.0.0-alpha.78)
443
+
444
+ ### Changes
445
+
446
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.43 ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com)
447
+
448
+ ## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.77)
449
+
450
+ Tue, 31 Aug 2021 07:37:47 GMT
451
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.76..@fluentui/react-button_v9.0.0-alpha.77)
452
+
453
+ ### Changes
454
+
455
+ - Button: Adding type=button to all button components, removing @docCategory tags from API and fixing some documentation in the comments. ([PR #19564](https://github.com/microsoft/fluentui/pull/19564) by Humberto.Morimoto@microsoft.com)
456
+
457
+ ## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.76)
458
+
459
+ Mon, 30 Aug 2021 07:35:05 GMT
460
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.75..@fluentui/react-button_v9.0.0-alpha.76)
461
+
462
+ ### Changes
463
+
464
+ - Updating TypeScript type-only imports/exports to use import/export type syntax. ([PR #19485](https://github.com/microsoft/fluentui/pull/19485) by dzearing@hotmail.com)
465
+
466
+ ## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.75)
467
+
468
+ Fri, 27 Aug 2021 07:33:32 GMT
469
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.74..@fluentui/react-button_v9.0.0-alpha.75)
470
+
471
+ ### Changes
472
+
473
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.40 ([PR #19462](https://github.com/microsoft/fluentui/pull/19462) by olfedias@microsoft.com)
474
+
475
+ ## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.74)
476
+
477
+ Thu, 26 Aug 2021 07:35:43 GMT
478
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.73..@fluentui/react-button_v9.0.0-alpha.74)
479
+
480
+ ### Changes
481
+
482
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.39 ([PR #19486](https://github.com/microsoft/fluentui/pull/19486) by martinhochel@microsoft.com)
483
+
484
+ ## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.73)
485
+
486
+ Fri, 20 Aug 2021 07:37:28 GMT
487
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.72..@fluentui/react-button_v9.0.0-alpha.73)
488
+
489
+ ### Changes
490
+
491
+ - Update .npmignore ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
492
+
493
+ ## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.72)
494
+
495
+ Thu, 19 Aug 2021 07:41:35 GMT
496
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.71..@fluentui/react-button_v9.0.0-alpha.72)
497
+
498
+ ### Changes
499
+
500
+ - fix default styling for button on focus ([PR #19440](https://github.com/microsoft/fluentui/pull/19440) by ololubek@microsoft.com)
501
+
502
+ ## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.71)
503
+
504
+ Wed, 18 Aug 2021 07:33:54 GMT
505
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.70..@fluentui/react-button_v9.0.0-alpha.71)
506
+
507
+ ### Changes
508
+
509
+ - Update hc focus styling for vNext button ([PR #19408](https://github.com/microsoft/fluentui/pull/19408) by ololubek@microsoft.com)
510
+
511
+ ## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.70)
512
+
513
+ Fri, 13 Aug 2021 07:36:34 GMT
514
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.69..@fluentui/react-button_v9.0.0-alpha.70)
515
+
516
+ ### Changes
517
+
518
+ - Button: Adding font family styles. ([PR #19353](https://github.com/microsoft/fluentui/pull/19353) by Humberto.Morimoto@microsoft.com)
519
+
520
+ ## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.69)
521
+
522
+ Wed, 11 Aug 2021 07:34:54 GMT
523
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.68..@fluentui/react-button_v9.0.0-alpha.69)
524
+
525
+ ### Changes
526
+
527
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.35 ([PR #19256](https://github.com/microsoft/fluentui/pull/19256) by olfedias@microsoft.com)
528
+
529
+ ## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.68)
530
+
531
+ Fri, 06 Aug 2021 07:35:14 GMT
532
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.67..@fluentui/react-button_v9.0.0-alpha.68)
533
+
534
+ ### Changes
535
+
536
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.34 ([PR #19281](https://github.com/microsoft/fluentui/pull/19281) by jspurlin@microsoft.com)
537
+
538
+ ## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.67)
539
+
540
+ Tue, 03 Aug 2021 07:39:30 GMT
541
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.66..@fluentui/react-button_v9.0.0-alpha.67)
542
+
543
+ ### Patches
544
+
545
+ - Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
546
+ - Bump @fluentui/a11y-testing to v0.1.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
547
+ - Bump @fluentui/keyboard-key to v0.3.4 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
548
+ - Bump @fluentui/react-conformance to v0.4.4 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
549
+ - Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
550
+
551
+ ## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.66)
552
+
553
+ Mon, 02 Aug 2021 07:36:20 GMT
554
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.65..@fluentui/react-button_v9.0.0-alpha.66)
555
+
556
+ ### Changes
557
+
558
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.36 ([PR #19204](https://github.com/microsoft/fluentui/pull/19204) by lingfan.gao@microsoft.com)
559
+
560
+ ## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.65)
561
+
562
+ Mon, 26 Jul 2021 07:37:30 GMT
563
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.64..@fluentui/react-button_v9.0.0-alpha.65)
564
+
565
+ ### Changes
566
+
567
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.46 ([PR #18968](https://github.com/microsoft/fluentui/pull/18968) by olfedias@microsoft.com)
568
+
569
+ ## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.64)
570
+
571
+ Fri, 23 Jul 2021 07:38:19 GMT
572
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.63..@fluentui/react-button_v9.0.0-alpha.64)
573
+
574
+ ### Changes
575
+
576
+ - Fix button jump effect on border disparities ([PR #19035](https://github.com/microsoft/fluentui/pull/19035) by bsunderhus@microsoft.com)
577
+ - Update theme tokens ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com)
578
+ - Button: Handling children correctly and not as a slot. ([PR #19085](https://github.com/microsoft/fluentui/pull/19085) by Humberto.Morimoto@microsoft.com)
579
+
580
+ ## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.63)
581
+
582
+ Thu, 22 Jul 2021 07:36:55 GMT
583
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.62..@fluentui/react-button_v9.0.0-alpha.63)
584
+
585
+ ### Changes
586
+
587
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.29 ([PR #19038](https://github.com/microsoft/fluentui/pull/19038) by lingfan.gao@microsoft.com)
588
+
589
+ ## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.62)
590
+
591
+ Tue, 20 Jul 2021 22:23:17 GMT
592
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.61..@fluentui/react-button_v9.0.0-alpha.62)
593
+
594
+ ### Changes
595
+
596
+ - Button: Migrate to new dx ([PR #18607](https://github.com/microsoft/fluentui/pull/18607) by tristan.watanabe@gmail.com)
597
+
598
+ ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.61)
599
+
600
+ Fri, 16 Jul 2021 22:53:17 GMT
601
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.60..@fluentui/react-button_v9.0.0-alpha.61)
602
+
603
+ ### Changes
604
+
605
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.26 ([PR #18973](https://github.com/microsoft/fluentui/pull/18973) by olfedias@microsoft.com)
606
+
607
+ ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.60)
608
+
609
+ Thu, 15 Jul 2021 07:36:18 GMT
610
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.59..@fluentui/react-button_v9.0.0-alpha.60)
611
+
612
+ ### Changes
613
+
614
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.33 ([PR #18861](https://github.com/microsoft/fluentui/pull/18861) by bsunderhus@microsoft.com)
615
+
616
+ ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.59)
617
+
618
+ Tue, 13 Jul 2021 22:32:58 GMT
619
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.58..@fluentui/react-button_v9.0.0-alpha.59)
620
+
621
+ ### Patches
622
+
623
+ - Bump @fluentui/react-conformance to v0.4.3 ([PR #18925](https://github.com/microsoft/fluentui/pull/18925) by elcraig@microsoft.com)
624
+
625
+ ## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.58)
626
+
627
+ Tue, 13 Jul 2021 07:35:36 GMT
628
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.57..@fluentui/react-button_v9.0.0-alpha.58)
629
+
630
+ ### Changes
631
+
632
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.24 ([PR #18560](https://github.com/microsoft/fluentui/pull/18560) by behowell@microsoft.com)
633
+
634
+ ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.57)
635
+
636
+ Mon, 12 Jul 2021 07:33:23 GMT
637
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.56..@fluentui/react-button_v9.0.0-alpha.57)
638
+
639
+ ### Changes
640
+
641
+ - Button: Adding back block, circular, disabledFocusable and outline props and making some styling fixes. ([PR #18563](https://github.com/microsoft/fluentui/pull/18563) by Humberto.Morimoto@microsoft.com)
642
+
643
+ ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.56)
644
+
645
+ Fri, 09 Jul 2021 07:39:31 GMT
646
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.55..@fluentui/react-button_v9.0.0-alpha.56)
647
+
648
+ ### Patches
649
+
650
+ - Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
651
+ - Bump @fluentui/a11y-testing to v0.1.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
652
+ - Bump @fluentui/keyboard-key to v0.3.3 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
653
+ - Bump @fluentui/react-conformance to v0.4.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
654
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
655
+
656
+ ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.55)
657
+
658
+ Fri, 02 Jul 2021 23:15:55 GMT
659
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.54..@fluentui/react-button_v9.0.0-alpha.55)
660
+
661
+ ### Changes
662
+
663
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.22 ([PR #18816](https://github.com/microsoft/fluentui/pull/18816) by olfedias@microsoft.com)
664
+
665
+ ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.54)
666
+
667
+ Fri, 02 Jul 2021 07:37:06 GMT
668
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.53..@fluentui/react-button_v9.0.0-alpha.54)
669
+
670
+ ### Changes
671
+
672
+ - Rename typings and getSlots to have the Compat Suffix ([PR #18796](https://github.com/microsoft/fluentui/pull/18796) by bsunderhus@microsoft.com)
673
+
674
+ ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.53)
675
+
676
+ Thu, 01 Jul 2021 07:35:05 GMT
677
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.52..@fluentui/react-button_v9.0.0-alpha.53)
678
+
679
+ ### Changes
680
+
681
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.20 ([PR #18680](https://github.com/microsoft/fluentui/pull/18680) by olfedias@microsoft.com)
682
+
683
+ ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.52)
684
+
685
+ Wed, 30 Jun 2021 07:38:35 GMT
686
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.51..@fluentui/react-button_v9.0.0-alpha.52)
687
+
688
+ ### Changes
689
+
690
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.19 ([PR #18695](https://github.com/microsoft/fluentui/pull/18695) by tristan.watanabe@gmail.com)
691
+
692
+ ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.51)
693
+
694
+ Tue, 29 Jun 2021 07:33:32 GMT
695
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.50..@fluentui/react-button_v9.0.0-alpha.51)
696
+
697
+ ### Changes
698
+
699
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.18 ([PR #18169](https://github.com/microsoft/fluentui/pull/18169) by olfedias@microsoft.com)
700
+
701
+ ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.50)
702
+
703
+ Wed, 23 Jun 2021 07:31:49 GMT
704
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.49..@fluentui/react-button_v9.0.0-alpha.50)
705
+
706
+ ### Changes
707
+
708
+ - react-button: Removing last remnants of legacy patterns. ([PR #18519](https://github.com/microsoft/fluentui/pull/18519) by Humberto.Morimoto@microsoft.com)
709
+
710
+ ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.49)
711
+
712
+ Tue, 22 Jun 2021 07:35:11 GMT
713
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.48..@fluentui/react-button_v9.0.0-alpha.49)
714
+
715
+ ### Changes
716
+
717
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.17 ([PR #18397](https://github.com/microsoft/fluentui/pull/18397) by olfedias@microsoft.com)
718
+
719
+ ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.48)
720
+
721
+ Tue, 15 Jun 2021 07:40:20 GMT
722
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.47..@fluentui/react-button_v9.0.0-alpha.48)
723
+
724
+ ### Changes
725
+
726
+ - Temporary typing fix for children prop ([PR #18521](https://github.com/microsoft/fluentui/pull/18521) by behowell@microsoft.com)
727
+
728
+ ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.47)
729
+
730
+ Fri, 11 Jun 2021 07:34:26 GMT
731
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.46..@fluentui/react-button_v9.0.0-alpha.47)
732
+
733
+ ### Changes
734
+
735
+ - CompoundButton: Removing legacy patterns from converged component. ([PR #18497](https://github.com/microsoft/fluentui/pull/18497) by Humberto.Morimoto@microsoft.com)
736
+ - ToggleButton: Removing legacy patterns from converged component. ([PR #18506](https://github.com/microsoft/fluentui/pull/18506) by Humberto.Morimoto@microsoft.com)
737
+ - MenuButton: Removing legacy patterns from converged component. ([PR #18498](https://github.com/microsoft/fluentui/pull/18498) by Humberto.Morimoto@microsoft.com)
738
+
739
+ ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.46)
740
+
741
+ Thu, 10 Jun 2021 07:32:59 GMT
742
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.45..@fluentui/react-button_v9.0.0-alpha.46)
743
+
744
+ ### Changes
745
+
746
+ - Button: Removing legacy patterns from converged component. ([PR #18468](https://github.com/microsoft/fluentui/pull/18468) by Humberto.Morimoto@microsoft.com)
747
+
748
+ ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.45)
749
+
750
+ Wed, 09 Jun 2021 07:33:38 GMT
751
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.44..@fluentui/react-button_v9.0.0-alpha.45)
752
+
753
+ ### Changes
754
+
755
+ - Adds focus indicator style to react-button ([PR #18400](https://github.com/microsoft/fluentui/pull/18400) by bsunderhus@microsoft.com)
756
+
757
+ ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.44)
758
+
759
+ Mon, 07 Jun 2021 07:38:15 GMT
760
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.43..@fluentui/react-button_v9.0.0-alpha.44)
761
+
762
+ ### Patches
763
+
764
+ - Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
765
+ - Bump @fluentui/a11y-testing to v0.1.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
766
+ - Bump @fluentui/keyboard-key to v0.3.2 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
767
+ - Bump @fluentui/react-conformance to v0.4.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
768
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
769
+
770
+ ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.43)
771
+
772
+ Fri, 04 Jun 2021 07:37:23 GMT
773
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.42..@fluentui/react-button_v9.0.0-alpha.43)
774
+
775
+ ### Changes
776
+
777
+ - MenuButton: Re-introducing MenuButton using the latest version of makeStyles. ([PR #18168](https://github.com/microsoft/fluentui/pull/18168) by Humberto.Morimoto@microsoft.com)
778
+
779
+ ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.42)
780
+
781
+ Thu, 03 Jun 2021 07:36:03 GMT
782
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.41..@fluentui/react-button_v9.0.0-alpha.42)
783
+
784
+ ### Changes
785
+
786
+ - Use updated theme tokens in component styles ([PR #18321](https://github.com/microsoft/fluentui/pull/18321) by miroslav.stastny@microsoft.com)
787
+
788
+ ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.41)
789
+
790
+ Wed, 02 Jun 2021 07:37:15 GMT
791
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.40..@fluentui/react-button_v9.0.0-alpha.41)
792
+
793
+ ### Changes
794
+
795
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.12 ([PR #18404](https://github.com/microsoft/fluentui/pull/18404) by bsunderhus@microsoft.com)
796
+
797
+ ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.40)
798
+
799
+ Wed, 26 May 2021 07:35:43 GMT
800
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.39..@fluentui/react-button_v9.0.0-alpha.40)
801
+
802
+ ### Changes
803
+
804
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.25 ([PR #18323](https://github.com/microsoft/fluentui/pull/18323) by lingfan.gao@microsoft.com)
805
+
806
+ ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.39)
807
+
808
+ Fri, 21 May 2021 07:34:54 GMT
809
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.38..@fluentui/react-button_v9.0.0-alpha.39)
810
+
811
+ ### Changes
812
+
813
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.24 ([PR #18259](https://github.com/microsoft/fluentui/pull/18259) by behowell@microsoft.com)
814
+
815
+ ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.38)
816
+
817
+ Thu, 20 May 2021 07:41:54 GMT
818
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.37..@fluentui/react-button_v9.0.0-alpha.38)
819
+
820
+ ### Patches
821
+
822
+ - Bump @fluentui/eslint-plugin to v1.3.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
823
+ - Bump @fluentui/a11y-testing to v0.1.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
824
+ - Bump @fluentui/keyboard-key to v0.3.1 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
825
+ - Bump @fluentui/react-conformance to v0.4.0 ([PR #17577](https://github.com/microsoft/fluentui/pull/17577) by elcraig@microsoft.com)
826
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
827
+
828
+ ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.37)
829
+
830
+ Wed, 19 May 2021 07:34:20 GMT
831
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.36..@fluentui/react-button_v9.0.0-alpha.37)
832
+
833
+ ### Patches
834
+
835
+ - Bump @fluentui/react-conformance to v0.3.1 ([PR #18194](https://github.com/microsoft/fluentui/pull/18194) by martinhochel@microsoft.com)
836
+
837
+ ### Changes
838
+
839
+ - chore: add more Babel plugins ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com)
840
+
841
+ ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.36)
842
+
843
+ Tue, 18 May 2021 07:34:38 GMT
844
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.35..@fluentui/react-button_v9.0.0-alpha.36)
845
+
846
+ ### Changes
847
+
848
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.8 ([PR #18171](https://github.com/microsoft/fluentui/pull/18171) by olfedias@microsoft.com)
849
+
850
+ ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.35)
851
+
852
+ Thu, 13 May 2021 07:36:55 GMT
853
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.34..@fluentui/react-button_v9.0.0-alpha.35)
854
+
855
+ ### Changes
856
+
857
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.7 ([PR #18039](https://github.com/microsoft/fluentui/pull/18039) by olfedias@microsoft.com)
858
+
859
+ ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.34)
860
+
861
+ Wed, 12 May 2021 07:36:20 GMT
862
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.33..@fluentui/react-button_v9.0.0-alpha.34)
863
+
864
+ ### Changes
865
+
866
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.6 ([PR #18097](https://github.com/microsoft/fluentui/pull/18097) by olfedias@microsoft.com)
867
+
868
+ ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.33)
869
+
870
+ Mon, 10 May 2021 07:36:07 GMT
871
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.32..@fluentui/react-button_v9.0.0-alpha.33)
872
+
873
+ ### Changes
874
+
875
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.5 ([PR #18095](https://github.com/microsoft/fluentui/pull/18095) by olfedias@microsoft.com)
876
+
877
+ ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.32)
878
+
879
+ Wed, 05 May 2021 07:36:50 GMT
880
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.31..@fluentui/react-button_v9.0.0-alpha.32)
881
+
882
+ ### Changes
883
+
884
+ - transform styles with Babel plugin ([PR #16534](https://github.com/microsoft/fluentui/pull/16534) by olfedias@microsoft.com)
885
+
886
+ ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.31)
887
+
888
+ Mon, 03 May 2021 07:45:19 GMT
889
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.30..@fluentui/react-button_v9.0.0-alpha.31)
890
+
891
+ ### Changes
892
+
893
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.21 ([PR #18005](https://github.com/microsoft/fluentui/pull/18005) by lingfan.gao@microsoft.com)
894
+
895
+ ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.30)
896
+
897
+ Fri, 30 Apr 2021 07:42:23 GMT
898
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.29..@fluentui/react-button_v9.0.0-alpha.30)
899
+
900
+ ### Patches
901
+
902
+ - Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
903
+ - Bump @fluentui/a11y-testing to v0.1.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
904
+ - Bump @fluentui/keyboard-key to v0.3.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
905
+ - Bump @fluentui/react-conformance to v0.3.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
906
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
907
+
908
+ ### Changes
909
+
910
+ - Upgrade typescript to 4.1.5 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
911
+
912
+ ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.29)
913
+
914
+ Tue, 27 Apr 2021 07:34:03 GMT
915
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.28..@fluentui/react-button_v9.0.0-alpha.29)
916
+
917
+ ### Changes
918
+
919
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5 ([PR #17922](https://github.com/microsoft/fluentui/pull/17922) by bsunderhus@microsoft.com)
920
+
921
+ ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.28)
922
+
923
+ Mon, 26 Apr 2021 07:34:31 GMT
924
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.27..@fluentui/react-button_v9.0.0-alpha.28)
925
+
926
+ ### Changes
927
+
928
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4 ([PR #17936](https://github.com/microsoft/fluentui/pull/17936) by bsunderhus@microsoft.com)
929
+
930
+ ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.27)
931
+
932
+ Fri, 23 Apr 2021 07:37:10 GMT
933
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.26..@fluentui/react-button_v9.0.0-alpha.27)
934
+
935
+ ### Patches
936
+
937
+ - Bump @fluentui/eslint-plugin to v1.1.1 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
938
+ - Bump @fluentui/a11y-testing to v0.1.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
939
+ - Bump @fluentui/keyboard-key to v0.2.17 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
940
+ - Bump @fluentui/react-conformance to v0.2.6 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
941
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
942
+
943
+ ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.26)
944
+
945
+ Thu, 22 Apr 2021 07:33:28 GMT
946
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.25..@fluentui/react-button_v9.0.0-alpha.26)
947
+
948
+ ### Changes
949
+
950
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2 ([PR #17826](https://github.com/microsoft/fluentui/pull/17826) by bsunderhus@microsoft.com)
951
+
952
+ ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.25)
953
+
954
+ Wed, 21 Apr 2021 07:31:50 GMT
955
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.24..@fluentui/react-button_v9.0.0-alpha.25)
956
+
957
+ ### Changes
958
+
959
+ - Rename ax() to mergeClasses() ([PR #17875](https://github.com/microsoft/fluentui/pull/17875) by miroslav.stastny@microsoft.com)
960
+
961
+ ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.24)
962
+
963
+ Tue, 20 Apr 2021 07:31:35 GMT
964
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.23..@fluentui/react-button_v9.0.0-alpha.24)
965
+
966
+ ### Changes
967
+
968
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.23 ([PR #17855](https://github.com/microsoft/fluentui/pull/17855) by lingfan.gao@microsoft.com)
969
+
970
+ ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.23)
971
+
972
+ Fri, 16 Apr 2021 18:08:21 GMT
973
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.22..@fluentui/react-button_v9.0.0-alpha.23)
974
+
975
+ ### Changes
976
+
977
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.22 ([PR #17840](https://github.com/microsoft/fluentui/pull/17840) by bsunderhus@microsoft.com)
978
+
979
+ ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.22)
980
+
981
+ Wed, 14 Apr 2021 07:34:12 GMT
982
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.21..@fluentui/react-button_v9.0.0-alpha.22)
983
+
984
+ ### Changes
985
+
986
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.21 ([PR #17707](https://github.com/microsoft/fluentui/pull/17707) by bsunderhus@microsoft.com)
987
+
988
+ ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.21)
989
+
990
+ Fri, 09 Apr 2021 07:31:06 GMT
991
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.20..@fluentui/react-button_v9.0.0-alpha.21)
992
+
993
+ ### Changes
994
+
995
+ - Button: Re-introducing transparent variant using latest version of makeStyles. ([PR #17736](https://github.com/microsoft/fluentui/pull/17736) by Humberto.Morimoto@microsoft.com)
996
+
997
+ ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.20)
998
+
999
+ Thu, 08 Apr 2021 07:33:06 GMT
1000
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.19..@fluentui/react-button_v9.0.0-alpha.20)
1001
+
1002
+ ### Changes
1003
+
1004
+ - Button: Re-introducing subtle variant using latest version of makeStyles. ([PR #17676](https://github.com/microsoft/fluentui/pull/17676) by Humberto.Morimoto@microsoft.com)
1005
+
1006
+ ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.19)
1007
+
1008
+ Thu, 01 Apr 2021 20:13:37 GMT
1009
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.18..@fluentui/react-button_v9.0.0-alpha.19)
1010
+
1011
+ ### Changes
1012
+
1013
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.18 ([PR #17651](https://github.com/microsoft/fluentui/pull/17651) by bsunderhus@microsoft.com)
1014
+
1015
+ ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.18)
1016
+
1017
+ Wed, 31 Mar 2021 00:53:43 GMT
1018
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.17..@fluentui/react-button_v9.0.0-alpha.18)
1019
+
1020
+ ### Patches
1021
+
1022
+ - Bump @fluentui/eslint-plugin to v1.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1023
+ - Bump @fluentui/a11y-testing to v0.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1024
+ - Bump @fluentui/keyboard-key to v0.2.16 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1025
+ - Bump @fluentui/react-conformance to v0.2.5 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1026
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1027
+
1028
+ ### Changes
1029
+
1030
+ - mergeProps was updated to improve type checking; use compat layer until type errors can be fixed ([PR #17508](https://github.com/microsoft/fluentui/pull/17508) by behowell@microsoft.com)
1031
+
1032
+ ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.17)
1033
+
1034
+ Tue, 30 Mar 2021 07:34:45 GMT
1035
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.16..@fluentui/react-button_v9.0.0-alpha.17)
1036
+
1037
+ ### Patches
1038
+
1039
+ - Bump @fluentui/keyboard-key to v0.2.15 ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
1040
+
1041
+ ### Changes
1042
+
1043
+ - chore: restore "sideEffects" to enable treeshaking ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
1044
+
1045
+ ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.16)
1046
+
1047
+ Fri, 26 Mar 2021 07:32:34 GMT
1048
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.15..@fluentui/react-button_v9.0.0-alpha.16)
1049
+
1050
+ ### Changes
1051
+
1052
+ - ToggleButton: Re-introducing ToggleButton using the latest version of makeStyles. ([PR #17566](https://github.com/microsoft/fluentui/pull/17566) by Humberto.Morimoto@microsoft.com)
1053
+ - Button: Beefing up accessibility tests and cleaning up state management. ([PR #17155](https://github.com/microsoft/fluentui/pull/17155) by Humberto.Morimoto@microsoft.com)
1054
+
1055
+ ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.15)
1056
+
1057
+ Thu, 25 Mar 2021 07:33:24 GMT
1058
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.14..@fluentui/react-button_v9.0.0-alpha.15)
1059
+
1060
+ ### Changes
1061
+
1062
+ - Button: Adding SPEC.md and MIGRATION.md and updating README.md ([PR #17192](https://github.com/microsoft/fluentui/pull/17192) by Humberto.Morimoto@microsoft.com)
1063
+ - CompoundButton: Re-introducing CompoundButton using latest version of makeStyles. ([PR #17534](https://github.com/microsoft/fluentui/pull/17534) by Humberto.Morimoto@microsoft.com)
1064
+
1065
+ ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.14)
1066
+
1067
+ Tue, 23 Mar 2021 07:31:43 GMT
1068
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.13..@fluentui/react-button_v9.0.0-alpha.14)
1069
+
1070
+ ### Changes
1071
+
1072
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.10 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
1073
+
1074
+ ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.13)
1075
+
1076
+ Thu, 18 Mar 2021 20:15:34 GMT
1077
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.12..@fluentui/react-button_v9.0.0-alpha.13)
1078
+
1079
+ ### Changes
1080
+
1081
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.9 ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com)
1082
+
1083
+ ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.12)
1084
+
1085
+ Wed, 17 Mar 2021 07:35:44 GMT
1086
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.11..@fluentui/react-button_v9.0.0-alpha.12)
1087
+
1088
+ ### Changes
1089
+
1090
+ - Button: Updates styles from makeStylesCompat to makeStyles. ([PR #17415](https://github.com/microsoft/fluentui/pull/17415) by bsunderhus@microsoft.com)
1091
+
1092
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.11)
1093
+
1094
+ Tue, 16 Mar 2021 07:32:44 GMT
1095
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.10..@fluentui/react-button_v9.0.0-alpha.11)
1096
+
1097
+ ### Patches
1098
+
1099
+ - Bump @fluentui/react-conformance to v0.2.4 ([PR #17418](https://github.com/microsoft/fluentui/pull/17418) by elcraig@microsoft.com)
1100
+
1101
+ ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.10)
1102
+
1103
+ Mon, 15 Mar 2021 07:36:20 GMT
1104
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.9..@fluentui/react-button_v9.0.0-alpha.10)
1105
+
1106
+ ### Changes
1107
+
1108
+ - Remove set-version references ([PR #17381](https://github.com/microsoft/fluentui/pull/17381) by elcraig@microsoft.com)
1109
+
1110
+ ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.9)
1111
+
1112
+ Fri, 12 Mar 2021 20:04:27 GMT
1113
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.8..@fluentui/react-button_v9.0.0-alpha.9)
1114
+
1115
+ ### Patches
1116
+
1117
+ - Bump @fluentui/react-conformance to v0.2.3 ([PR #17161](https://github.com/microsoft/fluentui/pull/17161) by martinhochel@microsoft.com)
1118
+
1119
+ ### Changes
1120
+
1121
+ - Change makeStyles to makeStylesCompat ([PR #17354](https://github.com/microsoft/fluentui/pull/17354) by bsunderhus@microsoft.com)
1122
+
1123
+ ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.8)
1124
+
1125
+ Wed, 10 Mar 2021 07:34:39 GMT
1126
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.7..@fluentui/react-button_v9.0.0-alpha.8)
1127
+
1128
+ ### Changes
1129
+
1130
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.7 ([PR #17293](https://github.com/microsoft/fluentui/pull/17293) by lingfan.gao@microsoft.com)
1131
+
1132
+ ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.7)
1133
+
1134
+ Fri, 05 Mar 2021 20:30:59 GMT
1135
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.6..@fluentui/react-button_v9.0.0-alpha.7)
1136
+
1137
+ ### Changes
1138
+
1139
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.6 ([PR #17273](https://github.com/microsoft/fluentui/pull/17273) by lingfan.gao@microsoft.com)
1140
+
1141
+ ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.6)
1142
+
1143
+ Wed, 03 Mar 2021 00:10:09 GMT
1144
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.5..@fluentui/react-button_v9.0.0-alpha.6)
1145
+
1146
+ ### Patches
1147
+
1148
+ - Bump @fluentui/common-styles to v1.0.2 ([PR #17246](https://github.com/microsoft/fluentui/pull/17246) by elcraig@microsoft.com)
1149
+
1150
+ ### Changes
1151
+
1152
+ - Remove set-version dependency from converged components ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com)
1153
+
1154
+ ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.5)
1155
+
1156
+ Tue, 02 Mar 2021 07:24:27 GMT
1157
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.4..@fluentui/react-button_v9.0.0-alpha.5)
1158
+
1159
+ ### Changes
1160
+
1161
+ - remove unused dependencies ([PR #17197](https://github.com/microsoft/fluentui/pull/17197) by olfedias@microsoft.com)
1162
+
1163
+ ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.4)
1164
+
1165
+ Fri, 26 Feb 2021 01:16:27 GMT
1166
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.3..@fluentui/react-button_v9.0.0-alpha.4)
1167
+
1168
+ ### Patches
1169
+
1170
+ - Bump @fluentui/common-styles to v1.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1171
+ - Bump @fluentui/eslint-plugin to v1.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1172
+ - Bump @fluentui/a11y-testing to v0.1.0 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1173
+ - Bump @fluentui/keyboard-key to v0.2.14 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1174
+ - Bump @fluentui/react-conformance to v0.2.2 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1175
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1176
+ - Bump @fluentui/react-icons-mdl2 to v1.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1177
+ - Bump @fluentui/set-version to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1178
+
1179
+ ### Changes
1180
+
1181
+ - Update references to major-bumped packages ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1182
+
1183
+ ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.3)
1184
+
1185
+ Thu, 25 Feb 2021 20:16:39 GMT
1186
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.2..@fluentui/react-button_v9.0.0-alpha.3)
1187
+
1188
+ ### Changes
1189
+
1190
+ - Trim react-button down to converged styles and api ([PR #17060](https://github.com/microsoft/fluentui/pull/17060) by me@levithomason.com)
1191
+
1192
+ ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.2)
1193
+
1194
+ Thu, 25 Feb 2021 01:15:27 GMT
1195
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.1..@fluentui/react-button_v9.0.0-alpha.2)
1196
+
1197
+ ### Patches
1198
+
1199
+ - Bump @fluentui/react-conformance to v0.2.1 ([PR #17118](https://github.com/microsoft/fluentui/pull/17118) by altinokd@microsoft.com)
1200
+
1201
+ ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.1)
1202
+
1203
+ Wed, 24 Feb 2021 00:05:29 GMT
1204
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.35..@fluentui/react-button_v9.0.0-alpha.1)
1205
+
1206
+ ### Changes
1207
+
1208
+ - bump version to v9 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com)
1209
+
1210
+ ## [1.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.35)
1211
+
1212
+ Mon, 22 Feb 2021 12:26:22 GMT
1213
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.34..@fluentui/react-button_v1.0.0-beta.35)
1214
+
1215
+ ### Changes
1216
+
1217
+ - Breaks dependency on react-hooks for convergence ([PR #17091](https://github.com/microsoft/fluentui/pull/17091) by lingfan.gao@microsoft.com)
1218
+
1219
+ ## [1.0.0-beta.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.34)
1220
+
1221
+ Thu, 18 Feb 2021 19:38:50 GMT
1222
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.33..@fluentui/react-button_v1.0.0-beta.34)
1223
+
1224
+ ### Patches
1225
+
1226
+ - Bump @fluentui/react-utilities to v0.3.1 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
1227
+
1228
+ ### Changes
1229
+
1230
+ - Allow React 17 in peerDependencies ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
1231
+ - Button: Renaming ghost prop to subtle. ([PR #17058](https://github.com/microsoft/fluentui/pull/17058) by humbertomakotomorimoto@gmail.com)
1232
+
1233
+ ## [1.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.33)
1234
+
1235
+ Thu, 18 Feb 2021 12:27:34 GMT
1236
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.32..@fluentui/react-button_v1.0.0-beta.33)
1237
+
1238
+ ### Changes
1239
+
1240
+ - use @fluentui/react-utilities instead of @fluentui/react-utils ([PR #16970](https://github.com/microsoft/fluentui/pull/16970) by olfedias@microsoft.com)
1241
+ - Cleaning up state function. ([PR #16943](https://github.com/microsoft/fluentui/pull/16943) by humbertomakotomorimoto@gmail.com)
1242
+ - SplitButton: Adding the ability to open the menu while focusing on the primary action button by pressing Alt+Down. ([PR #17021](https://github.com/microsoft/fluentui/pull/17021) by humbertomakotomorimoto@gmail.com)
1243
+
1244
+ ## [1.0.0-beta.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.32)
1245
+
1246
+ Mon, 15 Feb 2021 12:22:00 GMT
1247
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.31..@fluentui/react-button_v1.0.0-beta.32)
1248
+
1249
+ ### Changes
1250
+
1251
+ - remove unused temporary types ([PR #16964](https://github.com/microsoft/fluentui/pull/16964) by olfedias@microsoft.com)
1252
+
1253
+ ## [1.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.31)
1254
+
1255
+ Fri, 12 Feb 2021 12:26:20 GMT
1256
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.30..@fluentui/react-button_v1.0.0-beta.31)
1257
+
1258
+ ### Patches
1259
+
1260
+ - Bump @fluentui/react-utils to v0.3.1 ([PR #16945](https://github.com/microsoft/fluentui/pull/16945) by lingfan.gao@microsoft.com)
1261
+
1262
+ ### Changes
1263
+
1264
+ - Updated typings ([PR #16902](https://github.com/microsoft/fluentui/pull/16902) by lingfan.gao@microsoft.com)
1265
+ - Remove theming logic/interface which are unrelated to v8 release from @fluentui/theme package.. ([PR #16935](https://github.com/microsoft/fluentui/pull/16935) by xgao@microsoft.com)
1266
+
1267
+ ## [1.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.30)
1268
+
1269
+ Thu, 11 Feb 2021 00:58:10 GMT
1270
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.29..@fluentui/react-button_v1.0.0-beta.30)
1271
+
1272
+ ### Changes
1273
+
1274
+ - Bump @fluentui/react-icons-mdl2 to v1.0.0-beta.13 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
1275
+
1276
+ ## [1.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.29)
1277
+
1278
+ Tue, 09 Feb 2021 00:56:52 GMT
1279
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.28..@fluentui/react-button_v1.0.0-beta.29)
1280
+
1281
+ ### Patches
1282
+
1283
+ - Bump @fluentui/react-utils to v0.3.0 ([PR #16865](https://github.com/microsoft/fluentui/pull/16865) by lingfan.gao@microsoft.com)
1284
+
1285
+ ### Changes
1286
+
1287
+ - MenuButton: Adding persistMenu prop to allow for constant rendering of the Menu. ([PR #16742](https://github.com/microsoft/fluentui/pull/16742) by humbertomakotomorimoto@gmail.com)
1288
+
1289
+ ## [1.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.28)
1290
+
1291
+ Mon, 08 Feb 2021 12:23:08 GMT
1292
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.27..@fluentui/react-button_v1.0.0-beta.28)
1293
+
1294
+ ### Changes
1295
+
1296
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.20 ([PR #16844](https://github.com/microsoft/fluentui/pull/16844) by miroslav.stastny@microsoft.com)
1297
+
1298
+ ## [1.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.27)
1299
+
1300
+ Wed, 03 Feb 2021 05:51:40 GMT
1301
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.26..@fluentui/react-button_v1.0.0-beta.27)
1302
+
1303
+ ### Changes
1304
+
1305
+ - SplitButton: Using menuButtonRef prop correctly when handling state. ([PR #16740](https://github.com/microsoft/fluentui/pull/16740) by humbertomakotomorimoto@gmail.com)
1306
+
1307
+ ## [1.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.26)
1308
+
1309
+ Tue, 02 Feb 2021 12:21:54 GMT
1310
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.25..@fluentui/react-button_v1.0.0-beta.26)
1311
+
1312
+ ### Changes
1313
+
1314
+ - adding accessibility related tests into react-button package ([PR #16711](https://github.com/microsoft/fluentui/pull/16711) by milanturon@centrum.cz)
1315
+ - use a compat version of ThemeProvider ([PR #16729](https://github.com/microsoft/fluentui/pull/16729) by olfedias@microsoft.com)
1316
+
1317
+ ## [1.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.25)
1318
+
1319
+ Mon, 01 Feb 2021 12:23:48 GMT
1320
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.24..@fluentui/react-button_v1.0.0-beta.25)
1321
+
1322
+ ### Changes
1323
+
1324
+ - Extract compose/next to react-utils ([PR #16690](https://github.com/microsoft/fluentui/pull/16690) by lingfan.gao@microsoft.com)
1325
+
1326
+ ## [1.0.0-beta.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.24)
1327
+
1328
+ Thu, 28 Jan 2021 12:25:56 GMT
1329
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.23..@fluentui/react-button_v1.0.0-beta.24)
1330
+
1331
+ ### Changes
1332
+
1333
+ - Updating to webpack 5, latest typings, latest loaders and plugins. ([PR #16447](https://github.com/microsoft/fluentui/pull/16447) by dzearing@microsoft.com)
1334
+ - ToggleButton: Replacing use of pressed semanticColors with checked semanticColors for checked states. ([PR #16597](https://github.com/microsoft/fluentui/pull/16597) by humbertomakotomorimoto@gmail.com)
1335
+
1336
+ ## [1.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.23)
1337
+
1338
+ Sat, 23 Jan 2021 05:20:07 GMT
1339
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.22..@fluentui/react-button_v1.0.0-beta.23)
1340
+
1341
+ ### Changes
1342
+
1343
+ - Button: Adding missing css variables for opacity in Button and borderColor in checked state of ToggleButton. ([PR #16554](https://github.com/microsoft/fluentui/pull/16554) by humbertomakotomorimoto@gmail.com)
1344
+
1345
+ ## [1.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.22)
1346
+
1347
+ Fri, 22 Jan 2021 12:24:49 GMT
1348
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.21..@fluentui/react-button_v1.0.0-beta.22)
1349
+
1350
+ ### Changes
1351
+
1352
+ - Button: Re-exporting MenuContext from react-button to avoid fragility in package versions usage. ([PR #16581](https://github.com/microsoft/fluentui/pull/16581) by humbertomakotomorimoto@gmail.com)
1353
+
1354
+ ## [1.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.21)
1355
+
1356
+ Thu, 21 Jan 2021 12:36:12 GMT
1357
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.19..@fluentui/react-button_v1.0.0-beta.21)
1358
+
1359
+ ### Changes
1360
+
1361
+ - 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)
1362
+ - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
1363
+
1364
+ ## [1.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.19)
1365
+
1366
+ Thu, 14 Jan 2021 12:31:15 GMT
1367
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.17..@fluentui/react-button_v1.0.0-beta.19)
1368
+
1369
+ ### Changes
1370
+
1371
+ - Button: Adding disabledFocusable prop to allow for scenarios where Button has disabled styling but is focusable. ([PR #16418](https://github.com/microsoft/fluentui/pull/16418) by humbertomakotomorimoto@gmail.com)
1372
+
1373
+ ## [1.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.17)
1374
+
1375
+ Fri, 11 Dec 2020 12:28:01 GMT
1376
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.14..@fluentui/react-button_v1.0.0-beta.17)
1377
+
1378
+ ### Changes
1379
+
1380
+ - Update react-button readme to not say it's officially releasing with v8 ([PR #16198](https://github.com/microsoft/fluentui/pull/16198) by elcraig@microsoft.com)
1381
+
1382
+ ## [1.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.14)
1383
+
1384
+ Tue, 01 Dec 2020 12:38:05 GMT
1385
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.13..@fluentui/react-button_v1.0.0-beta.14)
1386
+
1387
+ ### Changes
1388
+
1389
+ - Moving comment to correct place. ([PR #16035](https://github.com/microsoft/fluentui/pull/16035) by humbertomakotomorimoto@gmail.com)
1390
+
1391
+ ## [1.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.13)
1392
+
1393
+ Mon, 23 Nov 2020 12:31:40 GMT
1394
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.12..@fluentui/react-button_v1.0.0-beta.13)
1395
+
1396
+ ### Changes
1397
+
1398
+ - Update variants to not use css variables for global tokens so button is themed without ThemeProvider ([PR #15976](https://github.com/microsoft/fluentui/pull/15976) by xgao@microsoft.com)
1399
+
1400
+ ## [1.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.12)
1401
+
1402
+ Wed, 18 Nov 2020 12:30:07 GMT
1403
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.11..@fluentui/react-button_v1.0.0-beta.12)
1404
+
1405
+ ### Changes
1406
+
1407
+ - Updating button hooks to return state only; render function should be imported separately. ([PR #15961](https://github.com/microsoft/fluentui/pull/15961) by dzearing@hotmail.com)
1408
+
1409
+ ## [1.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.11)
1410
+
1411
+ Tue, 17 Nov 2020 12:36:24 GMT
1412
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.9..@fluentui/react-button_v1.0.0-beta.11)
1413
+
1414
+ ### Changes
1415
+
1416
+ - Updating arguments of style hook. ([PR #15952](https://github.com/microsoft/fluentui/pull/15952) by dzearing@hotmail.com)
1417
+ - Updating classes hooks derived from Button to actually derive from Button. ([PR #15955](https://github.com/microsoft/fluentui/pull/15955) by xgao@microsoft.com)
1418
+
1419
+ ## [1.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.9)
1420
+
1421
+ Fri, 06 Nov 2020 12:34:34 GMT
1422
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.8..@fluentui/react-button_v1.0.0-beta.9)
1423
+
1424
+ ### Changes
1425
+
1426
+ - Moving MenuContext outside of @fluentui/react-button and into @fluentui/react-shared-contexts. ([PR #15826](https://github.com/microsoft/fluentui/pull/15826) by humbertomakotomorimoto@gmail.com)
1427
+
1428
+ ## [1.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.8)
1429
+
1430
+ Thu, 05 Nov 2020 12:29:43 GMT
1431
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.7..@fluentui/react-button_v1.0.0-beta.8)
1432
+
1433
+ ### Changes
1434
+
1435
+ - Button: Removing unused scss files. ([PR #15835](https://github.com/microsoft/fluentui/pull/15835) by humbertomakotomorimoto@gmail.com)
1436
+
1437
+ ## [1.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.7)
1438
+
1439
+ Wed, 04 Nov 2020 12:34:30 GMT
1440
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.4..@fluentui/react-button_v1.0.0-beta.7)
1441
+
1442
+ ### Changes
1443
+
1444
+ - Button: Extrapolating expanded functionality in MenuButton to be provided via Context. ([PR #15780](https://github.com/microsoft/fluentui/pull/15780) by humbertomakotomorimoto@gmail.com)
1445
+
1446
+ ## [1.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.4)
1447
+
1448
+ Wed, 28 Oct 2020 12:32:24 GMT
1449
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.1..@fluentui/react-button_v1.0.0-beta.4)
1450
+
1451
+ ### Changes
1452
+
1453
+ - Updating use of makeVariantClasses and fixing typing bugs. ([PR #15518](https://github.com/microsoft/fluentui/pull/15518) by humbertomakotomorimoto@gmail.com)
1454
+
1455
+ ## [1.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.1)
1456
+
1457
+ Fri, 23 Oct 2020 23:25:40 GMT
1458
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.0..@fluentui/react-button_v1.0.0-beta.1)
1459
+
1460
+ ### Changes
1461
+
1462
+ - Major bump react-compose package since it dependes on packages with new major. ([PR #15679](https://github.com/microsoft/fluentui/pull/15679) by xgao@microsoft.com)
1463
+
1464
+ ## [1.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.0)
1465
+
1466
+ Fri, 23 Oct 2020 03:26:15 GMT
1467
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.3..@fluentui/react-button_v1.0.0-beta.0)
1468
+
1469
+ ### Changes
1470
+
1471
+ - Updating styling to use variants. ([PR #15337](https://github.com/microsoft/fluentui/pull/15337) by dzearing@hotmail.com)
1472
+ - Button: Adding high contrast styling. ([PR #15328](https://github.com/microsoft/fluentui/pull/15328) by humbertomakotomorimoto@gmail.com)
1473
+ - Don't publish demo app; remove unused example-app-base dev dependency ([PR #15414](https://github.com/microsoft/fluentui/pull/15414) by elcraig@microsoft.com)
1474
+ - Button: Adding transparent variant. ([PR #15463](https://github.com/microsoft/fluentui/pull/15463) by Humberto.Morimoto@microsoft.com)
1475
+ - Button: Renaming `fluid` prop to `block` so that it is inline with the most used terminology in the web. ([PR #15513](https://github.com/microsoft/fluentui/pull/15513) by humbertomakotomorimoto@gmail.com)
1476
+ - Rename @uifabric/styling to @fluentui/style-utilities ([PR #15567](https://github.com/microsoft/fluentui/pull/15567) by elcraig@microsoft.com)
1477
+ - Adds docCategory Button to all type files so that they are picked up by api-docs. ([PR #15576](https://github.com/microsoft/fluentui/pull/15576) by humbertomakotomorimoto@gmail.com)
1478
+ - Rename @fluentui/react-icons to @fluentui/react-icons-mdl2 ([PR #15599](https://github.com/microsoft/fluentui/pull/15599) by ololubek@microsoft.com)
1479
+ - undefined ([PR #15585](https://github.com/microsoft/fluentui/pull/15585) by xgao@microsoft.com)
1480
+ - Rename @uifabric/set-version to @fluentui/set-version ([PR #15616](https://github.com/microsoft/fluentui/pull/15616) by ololubek@microsoft.com)
1481
+ - Rename @uifabric/react-hooks to @fluentui/react-hooks & @uifabric/utilities to @fluentui/utilities ([PR #15629](https://github.com/microsoft/fluentui/pull/15629) by ololubek@microsoft.com)
1482
+
1483
+ ## [0.14.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.3)
1484
+
1485
+ Sun, 27 Sep 2020 04:20:52 GMT
1486
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.2..@fluentui/react-button_v0.14.3)
1487
+
1488
+ ### Patches
1489
+
1490
+ - MenuButton: Removing office-ui-fabric-react dependency by having ContextualMenu as a JSX slot replacement instead of the default. ([PR #15257](https://github.com/microsoft/fluentui/pull/15257) by humbertomakotomorimoto@gmail.com)
1491
+
1492
+ ## [0.14.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.2)
1493
+
1494
+ Fri, 25 Sep 2020 12:25:17 GMT
1495
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.0..@fluentui/react-button_v0.14.2)
1496
+
1497
+ ### Patches
1498
+
1499
+ - Add migration guide to readme ([PR #15128](https://github.com/microsoft/fluentui/pull/15128) by elcraig@microsoft.com)
1500
+ - Moving examples to @fluentui/examples package. ([PR #15132](https://github.com/microsoft/fluentui/pull/15132) by humbertomakotomorimoto@gmail.com)
1501
+
1502
+ ## [0.14.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.0)
1503
+
1504
+ Wed, 23 Sep 2020 12:27:48 GMT
1505
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.13.1..@fluentui/react-button_v0.14.0)
1506
+
1507
+ ### Minor changes
1508
+
1509
+ - Moving SizeValue const from react-button to theme package. ([PR #14206](https://github.com/microsoft/fluentui/pull/14206) by makotom@microsoft.com)
1510
+
1511
+ ### Patches
1512
+
1513
+ - set theme package version to be 1.0.0. ([PR #15174](https://github.com/microsoft/fluentui/pull/15174) by xgao@microsoft.com)
1514
+
1515
+ ## [0.13.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.13.1)
1516
+
1517
+ Thu, 17 Sep 2020 15:52:49 GMT
1518
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.13.0..@fluentui/react-button_v0.13.1)
1519
+
1520
+ ### Patches
1521
+
1522
+ - Fix button styles to match v7 buttons. ([PR #14972](https://github.com/microsoft/fluentui/pull/14972) by xgao@microsoft.com)
1523
+
1524
+ ## [0.13.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.13.0)
1525
+
1526
+ Thu, 17 Sep 2020 12:25:04 GMT
1527
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.12.6..@fluentui/react-button_v0.13.0)
1528
+
1529
+ ### Minor changes
1530
+
1531
+ - Updating color token references to use `color` prefix, and `accent` tokens have been renamed to `brand`. ([PR #15070](https://github.com/microsoft/fluentui/pull/15070) by dzearing@hotmail.com)
1532
+
1533
+ ## [0.12.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.12.5)
1534
+
1535
+ Tue, 15 Sep 2020 12:26:06 GMT
1536
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.12.4..@fluentui/react-button_v0.12.5)
1537
+
1538
+ ### Patches
1539
+
1540
+ - Updated styling to use makeStyles. ([PR #14889](https://github.com/microsoft/fluentui/pull/14889) by dzearing@hotmail.com)
1541
+
1542
+ ## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.12.0)
1543
+
1544
+ Wed, 09 Sep 2020 12:24:19 GMT
1545
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.6..@fluentui/react-button_v0.12.0)
1546
+
1547
+ ### Minor changes
1548
+
1549
+ - CompoundButton: Adding initial component to react-button package. ([PR #14855](https://github.com/microsoft/fluentui/pull/14855) by humbertomakotomorimoto@gmail.com)
1550
+
1551
+ ### Patches
1552
+
1553
+ - Fix rendering as anchor when href is passed. ([PR #14941](https://github.com/microsoft/fluentui/pull/14941) by xgao@microsoft.com)
1554
+
1555
+ ## [0.11.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.6)
1556
+
1557
+ Mon, 07 Sep 2020 12:26:26 GMT
1558
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.5..@fluentui/react-button_v0.11.6)
1559
+
1560
+ ### Patches
1561
+
1562
+ - Updated styling to use makeStyles. ([PR #14889](https://github.com/microsoft/fluentui/pull/14889) by dzearing@microsoft.com)
1563
+
1564
+ ## [0.11.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.5)
1565
+
1566
+ Fri, 04 Sep 2020 12:28:23 GMT
1567
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.0..@fluentui/react-button_v0.11.5)
1568
+
1569
+ ### Patches
1570
+
1571
+ - Adding legacy startup for internal testing on IE11. ([PR #14567](https://github.com/microsoft/fluentui/pull/14567) by humbertomakotomorimoto@gmail.com)
1572
+
1573
+ ## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.0)
1574
+
1575
+ Fri, 28 Aug 2020 12:29:20 GMT
1576
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.3..@fluentui/react-button_v0.11.0)
1577
+
1578
+ ### Minor changes
1579
+
1580
+ - Button: Adding ghost prop for stealth styling. ([PR #14743](https://github.com/microsoft/fluentui/pull/14743) by humbertomakotomorimoto@gmail.com)
1581
+
1582
+ ## [0.10.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.3)
1583
+
1584
+ Tue, 25 Aug 2020 12:36:19 GMT
1585
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.1..@fluentui/react-button_v0.10.3)
1586
+
1587
+ ### Patches
1588
+
1589
+ - Use new theme package. ([PR #14650](https://github.com/microsoft/fluentui/pull/14650) by xgao@microsoft.com)
1590
+
1591
+ ## [0.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.1)
1592
+
1593
+ Thu, 20 Aug 2020 12:37:22 GMT
1594
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.0..@fluentui/react-button_v0.10.1)
1595
+
1596
+ ### Patches
1597
+
1598
+ - Fix SplitButton styles ([PR #14612](https://github.com/microsoft/fluentui/pull/14612) by xgao@microsoft.com)
1599
+ - Remove references to React global (add explicit imports) ([PR #14613](https://github.com/microsoft/fluentui/pull/14613) by elcraig@microsoft.com)
1600
+
1601
+ ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.0)
1602
+
1603
+ Wed, 19 Aug 2020 12:44:33 GMT
1604
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.9.4..@fluentui/react-button_v0.10.0)
1605
+
1606
+ ### Minor changes
1607
+
1608
+ - Change default theme to fluent; minor styles fixes; add Teams/Fluent themes; Convert v7 theme to tokens. ([PR #14500](https://github.com/microsoft/fluentui/pull/14500) by xgao@microsoft.com)
1609
+
1610
+ ## [0.9.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.9.4)
1611
+
1612
+ Tue, 18 Aug 2020 07:58:00 GMT
1613
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.9.0..@fluentui/react-button_v0.9.4)
1614
+
1615
+ ### Patches
1616
+
1617
+ - fixing publish ([PR #14566](https://github.com/microsoft/fluentui/pull/14566) by kchau@microsoft.com)
1618
+
1619
+ ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.9.0)
1620
+
1621
+ Tue, 11 Aug 2020 05:47:07 GMT
1622
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.8.0..@fluentui/react-button_v0.9.0)
1623
+
1624
+ ### Minor changes
1625
+
1626
+ - SplitButton: Initial implementation. ([PR #14018](https://github.com/microsoft/fluentui/pull/14018) by humbertomakotomorimoto@gmail.com)
1627
+ - Adding opacity control for button tokens. ([PR #14455](https://github.com/microsoft/fluentui/pull/14455) by dzearing@hotmail.com)
1628
+
1629
+ ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.8.0)
1630
+
1631
+ Mon, 10 Aug 2020 06:19:21 GMT
1632
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.14..@fluentui/react-button_v0.8.0)
1633
+
1634
+ ### Minor changes
1635
+
1636
+ - Button: removing compose usage in favor of hooks and factories. ([PR #14274](https://github.com/microsoft/fluentui/pull/14274) by dzearing@microsoft.com)
1637
+
1638
+ ## [0.7.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.9)
1639
+
1640
+ Mon, 27 Jul 2020 12:42:21 GMT
1641
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.3..@fluentui/react-button_v0.7.9)
1642
+
1643
+ ### Patches
1644
+
1645
+ - Update react-button to use common-styles ([PR #14189](https://github.com/microsoft/fluentui/pull/14189) by behowell@microsoft.com)
1646
+
1647
+ ## [0.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.3)
1648
+
1649
+ Fri, 17 Jul 2020 12:38:41 GMT
1650
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.1..@fluentui/react-button_v0.7.3)
1651
+
1652
+ ### Patches
1653
+
1654
+ - fix: use a proper ref in useButton hook ([PR #14063](https://github.com/microsoft/fluentui/pull/14063) by olfedias@microsoft.com)
1655
+
1656
+ ## [0.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.0)
1657
+
1658
+ Thu, 09 Jul 2020 21:59:04 GMT
1659
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.6.2..@fluentui/react-button_v0.7.0)
1660
+
1661
+ ### Minor changes
1662
+
1663
+ - MenuButton: Creating component using compose. ([PR #13812](https://github.com/microsoft/fluentui/pull/13812) by humbertomakotomorimoto@gmail.com)
1664
+
1665
+ ## [0.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.6.2)
1666
+
1667
+ Thu, 02 Jul 2020 12:42:11 GMT
1668
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.6.0..@fluentui/react-button_v0.6.2)
1669
+
1670
+ ### Patches
1671
+
1672
+ - Adding bundle task to react-button package. ([PR #13873](https://github.com/microsoft/fluentui/pull/13873) by humbertomakotomorimoto@gmail.com)
1673
+
1674
+ ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.6.0)
1675
+
1676
+ Tue, 30 Jun 2020 12:33:36 GMT
1677
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.5.1..@fluentui/react-button_v0.6.0)
1678
+
1679
+ ### Minor changes
1680
+
1681
+ - Button: Adding componentRef, focus method, styling, and tests. ([PR #13718](https://github.com/microsoft/fluentui/pull/13718) by dzearing@microsoft.com)
1682
+
1683
+ ## [0.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.5.1)
1684
+
1685
+ Fri, 26 Jun 2020 12:36:28 GMT
1686
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.5.0..@fluentui/react-button_v0.5.1)
1687
+
1688
+ ### Patches
1689
+
1690
+ - Button: Adding stories of a Button themed like Fluent using tokens. ([PR #13769](https://github.com/microsoft/fluentui/pull/13769) by humbertomakotomorimoto@gmail.com)
1691
+ - Button: Using correct focus borders from utilities. ([PR #13790](https://github.com/microsoft/fluentui/pull/13790) by humbertomakotomorimoto@gmail.com)
1692
+
1693
+ ## [0.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.5.0)
1694
+
1695
+ Thu, 25 Jun 2020 12:50:17 GMT
1696
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.4.0..@fluentui/react-button_v0.5.0)
1697
+
1698
+ ### Minor changes
1699
+
1700
+ - Button: updates to styles, adjusting width tokens. ([PR #13753](https://github.com/microsoft/fluentui/pull/13753) by dzearing@microsoft.com)
1701
+
1702
+ ### Patches
1703
+
1704
+ - Update typings related to mergeProps typing ([PR #13571](https://github.com/microsoft/fluentui/pull/13571) by xgao@microsoft.com)
1705
+
1706
+ ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.4.0)
1707
+
1708
+ Tue, 23 Jun 2020 12:41:54 GMT
1709
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.7..@fluentui/react-button_v0.4.0)
1710
+
1711
+ ### Minor changes
1712
+
1713
+ - Button: Mixing style coming from slotProps. ([PR #13723](https://github.com/microsoft/fluentui/pull/13723) by humbertomakotomorimoto@gmail.com)
1714
+
1715
+ ## [0.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.7)
1716
+
1717
+ Mon, 22 Jun 2020 12:42:16 GMT
1718
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.6..@fluentui/react-button_v0.3.7)
1719
+
1720
+ ### Patches
1721
+
1722
+ - Button: Adding pointer-events: none to :after focus rectangle. ([PR #13696](https://github.com/microsoft/fluentui/pull/13696) by humbertomakotomorimoto@gmail.com)
1723
+
1724
+ ## [0.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.6)
1725
+
1726
+ Fri, 19 Jun 2020 12:38:09 GMT
1727
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.5..@fluentui/react-button_v0.3.6)
1728
+
1729
+ ### Patches
1730
+
1731
+ - react-button: Adding api-extractor configuration. ([PR #13654](https://github.com/microsoft/fluentui/pull/13654) by humbertomakotomorimoto@gmail.com)
1732
+
1733
+ ## [0.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.5)
1734
+
1735
+ Thu, 18 Jun 2020 12:37:09 GMT
1736
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.3..@fluentui/react-button_v0.3.5)
1737
+
1738
+ ### Patches
1739
+
1740
+ - Button: Replacing height with min-height so Button can adapt in flex scenarios. ([PR #13655](https://github.com/microsoft/fluentui/pull/13655) by humbertomakotomorimoto@gmail.com)
1741
+
1742
+ ## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.3)
1743
+
1744
+ Tue, 16 Jun 2020 17:35:36 GMT
1745
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.0..@fluentui/react-button_v0.3.3)
1746
+
1747
+ ### Patches
1748
+
1749
+ - The css output was being unintentionally botched by the postcss-clean minifier. Moving to clean-css directly without the postcss wrapping. ([PR #13612](https://github.com/microsoft/fluentui/pull/13612) by dzearing@microsoft.com)
1750
+
1751
+ ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.0)
1752
+
1753
+ Fri, 12 Jun 2020 18:29:07 GMT
1754
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.2.0..@fluentui/react-button_v0.3.0)
1755
+
1756
+ ### Minor changes
1757
+
1758
+ - Adding inline tokens support to Button, fixing focus rects. ([PR #13416](https://github.com/microsoft/fluentui/pull/13416) by dzearing@microsoft.com)
1759
+
1760
+ ### Patches
1761
+
1762
+ - ToggleButton: Updating to new css variables. ([PR #13569](https://github.com/microsoft/fluentui/pull/13569) by humbertomakotomorimoto@gmail.com)
1763
+ - Updating typings to conform with react-compose changes. ([PR #13521](https://github.com/microsoft/fluentui/pull/13521) by humbertomakotomorimoto@gmail.com)
1764
+
1765
+ ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.2.0)
1766
+
1767
+ Mon, 08 Jun 2020 12:34:34 GMT
1768
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.13..@fluentui/react-button_v0.2.0)
1769
+
1770
+ ### Minor changes
1771
+
1772
+ - Cleaning up typings. ([PR #13474](https://github.com/microsoft/fluentui/pull/13474) by dzearing@microsoft.com)
1773
+
1774
+ ## [0.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.13)
1775
+
1776
+ Fri, 05 Jun 2020 05:09:39 GMT
1777
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.12..@fluentui/react-button_v0.1.13)
1778
+
1779
+ ### Patches
1780
+
1781
+ - Updating createClassResolver usage. ([PR #13448](https://github.com/microsoft/fluentui/pull/13448) by dzearing@microsoft.com)
1782
+ - Adjusting styling to adhere to conventions. ([PR #13472](https://github.com/microsoft/fluentui/pull/13472) by dzearing@microsoft.com)
1783
+
1784
+ ## [0.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.12)
1785
+
1786
+ Tue, 02 Jun 2020 12:36:30 GMT
1787
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.11..@fluentui/react-button_v0.1.12)
1788
+
1789
+ ### Patches
1790
+
1791
+ - Using new react-compose mergeProps. ([PR #13360](https://github.com/microsoft/fluentui/pull/13360) by dzearing@microsoft.com)
1792
+
1793
+ ## [0.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.11)
1794
+
1795
+ Mon, 01 Jun 2020 12:32:45 GMT
1796
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.4..@fluentui/react-button_v0.1.11)
1797
+
1798
+ ### Patches
1799
+
1800
+ - Explicitly importing react in tempTypes and fixing bug in mergeProps. ([PR #13196](https://github.com/microsoft/fluentui/pull/13196) by humbertomakotomorimoto@gmail.com)
1801
+
1802
+ ## [0.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.4)
1803
+
1804
+ Wed, 20 May 2020 12:31:10 GMT
1805
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.1..@fluentui/react-button_v0.1.4)
1806
+
1807
+ ### Patches
1808
+
1809
+ - feat(compose): expose __self slot ([PR #13115](https://github.com/microsoft/fluentui/pull/13115) by olfedias@microsoft.com)
1810
+
1811
+ ## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.1)
1812
+
1813
+ Fri, 15 May 2020 12:42:20 GMT
1814
+
1815
+ ### Patches
1816
+
1817
+ - Initial package scaffold. ([PR #13096](https://github.com/microsoft/fluentui/pull/13096) by dzearing@microsoft.com)