@fluentui/react-button 9.0.0-alpha.10 → 9.0.0-alpha.100

Sign up to get free protection for your applications and to get access to all the features.
Files changed (270) hide show
  1. package/CHANGELOG.json +2418 -1
  2. package/CHANGELOG.md +920 -2
  3. package/README.md +19 -108
  4. package/dist/demo/index.html +71 -0
  5. package/dist/demo/react-dom.development.js +21413 -0
  6. package/dist/demo/react.development.js +3155 -0
  7. package/dist/react-button.d.ts +204 -82
  8. package/lib/Button.js.map +1 -1
  9. package/lib/CompoundButton.d.ts +1 -0
  10. package/lib/CompoundButton.js +2 -0
  11. package/lib/CompoundButton.js.map +1 -0
  12. package/lib/MenuButton.d.ts +1 -0
  13. package/lib/MenuButton.js +2 -0
  14. package/lib/MenuButton.js.map +1 -0
  15. package/lib/SplitButton.d.ts +1 -0
  16. package/lib/SplitButton.js +2 -0
  17. package/lib/SplitButton.js.map +1 -0
  18. package/lib/ToggleButton.d.ts +1 -0
  19. package/lib/ToggleButton.js +2 -0
  20. package/lib/ToggleButton.js.map +1 -0
  21. package/lib/common/isConformant.d.ts +4 -2
  22. package/lib/common/isConformant.js +9 -6
  23. package/lib/common/isConformant.js.map +1 -1
  24. package/lib/components/Button/Button.d.ts +4 -11
  25. package/lib/components/Button/Button.js +7 -16
  26. package/lib/components/Button/Button.js.map +1 -1
  27. package/lib/components/Button/Button.types.d.ts +57 -60
  28. package/lib/components/Button/Button.types.js +1 -0
  29. package/lib/components/Button/Button.types.js.map +1 -1
  30. package/lib/components/Button/index.d.ts +1 -2
  31. package/lib/components/Button/index.js +1 -1
  32. package/lib/components/Button/index.js.map +1 -1
  33. package/lib/components/Button/renderButton.d.ts +2 -2
  34. package/lib/components/Button/renderButton.js +9 -8
  35. package/lib/components/Button/renderButton.js.map +1 -1
  36. package/lib/components/Button/useButton.d.ts +5 -7
  37. package/lib/components/Button/useButton.js +49 -23
  38. package/lib/components/Button/useButton.js.map +1 -1
  39. package/lib/components/Button/useButtonStyles.d.ts +10 -4
  40. package/lib/components/Button/useButtonStyles.js +350 -378
  41. package/lib/components/Button/useButtonStyles.js.map +1 -1
  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 +17 -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 +2 -0
  58. package/lib/components/CompoundButton/useCompoundButtonStyles.js +164 -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 +11 -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 +17 -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 +2 -0
  76. package/lib/components/MenuButton/useMenuButtonStyles.js +34 -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 +19 -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 +15 -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 +73 -0
  92. package/lib/components/SplitButton/useSplitButton.js.map +1 -0
  93. package/lib/components/SplitButton/useSplitButtonStyles.d.ts +2 -0
  94. package/lib/components/SplitButton/useSplitButtonStyles.js +77 -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 +19 -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 +50 -0
  110. package/lib/components/ToggleButton/useToggleButton.js.map +1 -0
  111. package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +2 -0
  112. package/lib/components/ToggleButton/useToggleButtonStyles.js +190 -0
  113. package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
  114. package/lib/index.d.ts +4 -0
  115. package/lib/index.js +4 -0
  116. package/lib/index.js.map +1 -1
  117. package/lib/tsdoc-metadata.json +1 -1
  118. package/lib-commonjs/Button.js +7 -2
  119. package/lib-commonjs/Button.js.map +1 -1
  120. package/lib-commonjs/CompoundButton.d.ts +1 -0
  121. package/lib-commonjs/CompoundButton.js +10 -0
  122. package/lib-commonjs/CompoundButton.js.map +1 -0
  123. package/lib-commonjs/MenuButton.d.ts +1 -0
  124. package/lib-commonjs/MenuButton.js +10 -0
  125. package/lib-commonjs/MenuButton.js.map +1 -0
  126. package/lib-commonjs/SplitButton.d.ts +1 -0
  127. package/lib-commonjs/SplitButton.js +10 -0
  128. package/lib-commonjs/SplitButton.js.map +1 -0
  129. package/lib-commonjs/ToggleButton.d.ts +1 -0
  130. package/lib-commonjs/ToggleButton.js +10 -0
  131. package/lib-commonjs/ToggleButton.js.map +1 -0
  132. package/lib-commonjs/common/isConformant.d.ts +4 -2
  133. package/lib-commonjs/common/isConformant.js +19 -8
  134. package/lib-commonjs/common/isConformant.js.map +1 -1
  135. package/lib-commonjs/components/Button/Button.d.ts +4 -11
  136. package/lib-commonjs/components/Button/Button.js +20 -20
  137. package/lib-commonjs/components/Button/Button.js.map +1 -1
  138. package/lib-commonjs/components/Button/Button.types.d.ts +57 -60
  139. package/lib-commonjs/components/Button/Button.types.js +4 -1
  140. package/lib-commonjs/components/Button/Button.types.js.map +1 -1
  141. package/lib-commonjs/components/Button/index.d.ts +1 -2
  142. package/lib-commonjs/components/Button/index.js +21 -5
  143. package/lib-commonjs/components/Button/index.js.map +1 -1
  144. package/lib-commonjs/components/Button/renderButton.d.ts +2 -2
  145. package/lib-commonjs/components/Button/renderButton.js +24 -13
  146. package/lib-commonjs/components/Button/renderButton.js.map +1 -1
  147. package/lib-commonjs/components/Button/useButton.d.ts +5 -7
  148. package/lib-commonjs/components/Button/useButton.js +59 -24
  149. package/lib-commonjs/components/Button/useButton.js.map +1 -1
  150. package/lib-commonjs/components/Button/useButtonStyles.d.ts +10 -4
  151. package/lib-commonjs/components/Button/useButtonStyles.js +360 -379
  152. package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -1
  153. package/lib-commonjs/components/CompoundButton/CompoundButton.d.ts +6 -0
  154. package/lib-commonjs/components/CompoundButton/CompoundButton.js +26 -0
  155. package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -0
  156. package/lib-commonjs/components/CompoundButton/CompoundButton.types.d.ts +14 -0
  157. package/lib-commonjs/components/CompoundButton/CompoundButton.types.js +6 -0
  158. package/lib-commonjs/components/CompoundButton/CompoundButton.types.js.map +1 -0
  159. package/lib-commonjs/components/CompoundButton/index.d.ts +5 -0
  160. package/lib-commonjs/components/CompoundButton/index.js +26 -0
  161. package/lib-commonjs/components/CompoundButton/index.js.map +1 -0
  162. package/lib-commonjs/components/CompoundButton/renderCompoundButton.d.ts +5 -0
  163. package/lib-commonjs/components/CompoundButton/renderCompoundButton.js +29 -0
  164. package/lib-commonjs/components/CompoundButton/renderCompoundButton.js.map +1 -0
  165. package/lib-commonjs/components/CompoundButton/useCompoundButton.d.ts +8 -0
  166. package/lib-commonjs/components/CompoundButton/useCompoundButton.js +41 -0
  167. package/lib-commonjs/components/CompoundButton/useCompoundButton.js.map +1 -0
  168. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +2 -0
  169. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js +175 -0
  170. package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -0
  171. package/lib-commonjs/components/MenuButton/MenuButton.d.ts +6 -0
  172. package/lib-commonjs/components/MenuButton/MenuButton.js +26 -0
  173. package/lib-commonjs/components/MenuButton/MenuButton.js.map +1 -0
  174. package/lib-commonjs/components/MenuButton/MenuButton.types.d.ts +11 -0
  175. package/lib-commonjs/components/MenuButton/MenuButton.types.js +6 -0
  176. package/lib-commonjs/components/MenuButton/MenuButton.types.js.map +1 -0
  177. package/lib-commonjs/components/MenuButton/index.d.ts +5 -0
  178. package/lib-commonjs/components/MenuButton/index.js +26 -0
  179. package/lib-commonjs/components/MenuButton/index.js.map +1 -0
  180. package/lib-commonjs/components/MenuButton/renderMenuButton.d.ts +5 -0
  181. package/lib-commonjs/components/MenuButton/renderMenuButton.js +29 -0
  182. package/lib-commonjs/components/MenuButton/renderMenuButton.js.map +1 -0
  183. package/lib-commonjs/components/MenuButton/useMenuButton.d.ts +6 -0
  184. package/lib-commonjs/components/MenuButton/useMenuButton.js +46 -0
  185. package/lib-commonjs/components/MenuButton/useMenuButton.js.map +1 -0
  186. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +2 -0
  187. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +44 -0
  188. package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -0
  189. package/lib-commonjs/components/SplitButton/SplitButton.d.ts +7 -0
  190. package/lib-commonjs/components/SplitButton/SplitButton.js +27 -0
  191. package/lib-commonjs/components/SplitButton/SplitButton.js.map +1 -0
  192. package/lib-commonjs/components/SplitButton/SplitButton.types.d.ts +19 -0
  193. package/lib-commonjs/components/SplitButton/SplitButton.types.js +6 -0
  194. package/lib-commonjs/components/SplitButton/SplitButton.types.js.map +1 -0
  195. package/lib-commonjs/components/SplitButton/index.d.ts +5 -0
  196. package/lib-commonjs/components/SplitButton/index.js +26 -0
  197. package/lib-commonjs/components/SplitButton/index.js.map +1 -0
  198. package/lib-commonjs/components/SplitButton/renderSplitButton.d.ts +5 -0
  199. package/lib-commonjs/components/SplitButton/renderSplitButton.js +27 -0
  200. package/lib-commonjs/components/SplitButton/renderSplitButton.js.map +1 -0
  201. package/lib-commonjs/components/SplitButton/useSplitButton.d.ts +8 -0
  202. package/lib-commonjs/components/SplitButton/useSplitButton.js +86 -0
  203. package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -0
  204. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +2 -0
  205. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +88 -0
  206. package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -0
  207. package/lib-commonjs/components/ToggleButton/ToggleButton.d.ts +6 -0
  208. package/lib-commonjs/components/ToggleButton/ToggleButton.js +26 -0
  209. package/lib-commonjs/components/ToggleButton/ToggleButton.js.map +1 -0
  210. package/lib-commonjs/components/ToggleButton/ToggleButton.types.d.ts +19 -0
  211. package/lib-commonjs/components/ToggleButton/ToggleButton.types.js +6 -0
  212. package/lib-commonjs/components/ToggleButton/ToggleButton.types.js.map +1 -0
  213. package/lib-commonjs/components/ToggleButton/index.d.ts +5 -0
  214. package/lib-commonjs/components/ToggleButton/index.js +26 -0
  215. package/lib-commonjs/components/ToggleButton/index.js.map +1 -0
  216. package/lib-commonjs/components/ToggleButton/renderToggleButton.d.ts +1 -0
  217. package/lib-commonjs/components/ToggleButton/renderToggleButton.js +16 -0
  218. package/lib-commonjs/components/ToggleButton/renderToggleButton.js.map +1 -0
  219. package/lib-commonjs/components/ToggleButton/useToggleButton.d.ts +9 -0
  220. package/lib-commonjs/components/ToggleButton/useToggleButton.js +63 -0
  221. package/lib-commonjs/components/ToggleButton/useToggleButton.js.map +1 -0
  222. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +2 -0
  223. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js +200 -0
  224. package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -0
  225. package/lib-commonjs/index.d.ts +4 -0
  226. package/lib-commonjs/index.js +15 -2
  227. package/lib-commonjs/index.js.map +1 -1
  228. package/package.json +21 -14
  229. package/config/api-extractor.json +0 -3
  230. package/config/pre-copy.json +0 -9
  231. package/config/tests.js +0 -6
  232. package/etc/react-button.api.md +0 -104
  233. package/just.config.ts +0 -3
  234. package/lib/components/Button/useButtonState.d.ts +0 -6
  235. package/lib/components/Button/useButtonState.js +0 -45
  236. package/lib/components/Button/useButtonState.js.map +0 -1
  237. package/lib-amd/Button.d.ts +0 -1
  238. package/lib-amd/Button.js +0 -6
  239. package/lib-amd/Button.js.map +0 -1
  240. package/lib-amd/common/isConformant.d.ts +0 -2
  241. package/lib-amd/common/isConformant.js +0 -14
  242. package/lib-amd/common/isConformant.js.map +0 -1
  243. package/lib-amd/components/Button/Button.d.ts +0 -13
  244. package/lib-amd/components/Button/Button.js +0 -24
  245. package/lib-amd/components/Button/Button.js.map +0 -1
  246. package/lib-amd/components/Button/Button.types.d.ts +0 -65
  247. package/lib-amd/components/Button/Button.types.js +0 -5
  248. package/lib-amd/components/Button/Button.types.js.map +0 -1
  249. package/lib-amd/components/Button/index.d.ts +0 -6
  250. package/lib-amd/components/Button/index.js +0 -10
  251. package/lib-amd/components/Button/index.js.map +0 -1
  252. package/lib-amd/components/Button/renderButton.d.ts +0 -5
  253. package/lib-amd/components/Button/renderButton.js +0 -16
  254. package/lib-amd/components/Button/renderButton.js.map +0 -1
  255. package/lib-amd/components/Button/useButton.d.ts +0 -10
  256. package/lib-amd/components/Button/useButton.js +0 -28
  257. package/lib-amd/components/Button/useButton.js.map +0 -1
  258. package/lib-amd/components/Button/useButtonState.d.ts +0 -6
  259. package/lib-amd/components/Button/useButtonState.js +0 -48
  260. package/lib-amd/components/Button/useButtonState.js.map +0 -1
  261. package/lib-amd/components/Button/useButtonStyles.d.ts +0 -4
  262. package/lib-amd/components/Button/useButtonStyles.js +0 -385
  263. package/lib-amd/components/Button/useButtonStyles.js.map +0 -1
  264. package/lib-amd/index.d.ts +0 -1
  265. package/lib-amd/index.js +0 -6
  266. package/lib-amd/index.js.map +0 -1
  267. package/lib-commonjs/components/Button/useButtonState.d.ts +0 -6
  268. package/lib-commonjs/components/Button/useButtonState.js +0 -47
  269. package/lib-commonjs/components/Button/useButtonState.js.map +0 -1
  270. package/src/components/Button/Button.types.ts +0 -120
package/CHANGELOG.json CHANGED
@@ -2,7 +2,2424 @@
2
2
  "name": "@fluentui/react-button",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 15 Mar 2021 07:33:50 GMT",
5
+ "date": "Tue, 05 Oct 2021 09:26:55 GMT",
6
+ "tag": "@fluentui/react-button_v9.0.0-alpha.100",
7
+ "version": "9.0.0-alpha.100",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "bsunderhus@microsoft.com",
12
+ "package": "@fluentui/react-button",
13
+ "comment": "Adds ForwardRefComponent to react-button components declaration",
14
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-button",
19
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.44",
20
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-button",
25
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.77",
26
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-button",
31
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.72",
32
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-button",
37
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.56",
38
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-button",
43
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.59",
44
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-button",
49
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52",
50
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
51
+ },
52
+ {
53
+ "author": "beachball",
54
+ "package": "@fluentui/react-button",
55
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21",
56
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
57
+ },
58
+ {
59
+ "author": "beachball",
60
+ "package": "@fluentui/react-button",
61
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.91",
62
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
63
+ }
64
+ ]
65
+ }
66
+ },
67
+ {
68
+ "date": "Fri, 01 Oct 2021 14:13:08 GMT",
69
+ "tag": "@fluentui/react-button_v9.0.0-alpha.99",
70
+ "version": "9.0.0-alpha.99",
71
+ "comments": {
72
+ "prerelease": [
73
+ {
74
+ "author": "lingfangao@hotmail.com",
75
+ "package": "@fluentui/react-button",
76
+ "comment": "Bump v9 prerelease versions to rerelease",
77
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
78
+ },
79
+ {
80
+ "author": "beachball",
81
+ "package": "@fluentui/react-button",
82
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.0-alpha.5",
83
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
84
+ },
85
+ {
86
+ "author": "beachball",
87
+ "package": "@fluentui/react-button",
88
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.43",
89
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
90
+ },
91
+ {
92
+ "author": "beachball",
93
+ "package": "@fluentui/react-button",
94
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.76",
95
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
96
+ },
97
+ {
98
+ "author": "beachball",
99
+ "package": "@fluentui/react-button",
100
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.71",
101
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
102
+ },
103
+ {
104
+ "author": "beachball",
105
+ "package": "@fluentui/react-button",
106
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.55",
107
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
108
+ },
109
+ {
110
+ "author": "beachball",
111
+ "package": "@fluentui/react-button",
112
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.58",
113
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
114
+ },
115
+ {
116
+ "author": "beachball",
117
+ "package": "@fluentui/react-button",
118
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51",
119
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
120
+ },
121
+ {
122
+ "author": "beachball",
123
+ "package": "@fluentui/react-button",
124
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20",
125
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
126
+ },
127
+ {
128
+ "author": "beachball",
129
+ "package": "@fluentui/react-button",
130
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.90",
131
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
132
+ }
133
+ ]
134
+ }
135
+ },
136
+ {
137
+ "date": "Fri, 01 Oct 2021 12:30:46 GMT",
138
+ "tag": "@fluentui/react-button_v9.0.0-alpha.97",
139
+ "version": "9.0.0-alpha.97",
140
+ "comments": {
141
+ "prerelease": [
142
+ {
143
+ "author": "bsunderhus@microsoft.com",
144
+ "package": "@fluentui/react-button",
145
+ "comment": "Updates button to simplify prop merging",
146
+ "commit": "c5f91bfccb65073eb01e4b4aa0b720bb6bf06b5d"
147
+ },
148
+ {
149
+ "author": "beachball",
150
+ "package": "@fluentui/react-button",
151
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.41",
152
+ "commit": "c5f91bfccb65073eb01e4b4aa0b720bb6bf06b5d"
153
+ },
154
+ {
155
+ "author": "beachball",
156
+ "package": "@fluentui/react-button",
157
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.88",
158
+ "commit": "c5f91bfccb65073eb01e4b4aa0b720bb6bf06b5d"
159
+ }
160
+ ]
161
+ }
162
+ },
163
+ {
164
+ "date": "Fri, 01 Oct 2021 09:44:56 GMT",
165
+ "tag": "@fluentui/react-button_v9.0.0-alpha.96",
166
+ "version": "9.0.0-alpha.96",
167
+ "comments": {
168
+ "prerelease": [
169
+ {
170
+ "author": "lingfangao@hotmail.com",
171
+ "package": "@fluentui/react-button",
172
+ "comment": "Use the renamed createCustomFocusIndicatorStyle helper for focus outline style",
173
+ "commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5"
174
+ },
175
+ {
176
+ "author": "beachball",
177
+ "package": "@fluentui/react-button",
178
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.69",
179
+ "commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5"
180
+ },
181
+ {
182
+ "author": "beachball",
183
+ "package": "@fluentui/react-button",
184
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.87",
185
+ "commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5"
186
+ }
187
+ ]
188
+ }
189
+ },
190
+ {
191
+ "date": "Thu, 30 Sep 2021 09:18:15 GMT",
192
+ "tag": "@fluentui/react-button_v9.0.0-alpha.95",
193
+ "version": "9.0.0-alpha.95",
194
+ "comments": {
195
+ "none": [
196
+ {
197
+ "author": "peter@draxler.ml",
198
+ "package": "@fluentui/react-button",
199
+ "comment": "update stories structure to make them exportable to CodeSandbox",
200
+ "commit": "d5578f1a321c72a95ee2760fd128437bc793c60d"
201
+ }
202
+ ],
203
+ "prerelease": [
204
+ {
205
+ "author": "beachball",
206
+ "package": "@fluentui/react-button",
207
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.86",
208
+ "commit": "d5578f1a321c72a95ee2760fd128437bc793c60d"
209
+ }
210
+ ]
211
+ }
212
+ },
213
+ {
214
+ "date": "Wed, 29 Sep 2021 08:06:11 GMT",
215
+ "tag": "@fluentui/react-button_v9.0.0-alpha.94",
216
+ "version": "9.0.0-alpha.94",
217
+ "comments": {
218
+ "prerelease": [
219
+ {
220
+ "author": "beachball",
221
+ "package": "@fluentui/react-button",
222
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.74",
223
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
224
+ },
225
+ {
226
+ "author": "beachball",
227
+ "package": "@fluentui/react-button",
228
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.68",
229
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
230
+ },
231
+ {
232
+ "author": "beachball",
233
+ "package": "@fluentui/react-button",
234
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.56",
235
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
236
+ },
237
+ {
238
+ "author": "beachball",
239
+ "package": "@fluentui/react-button",
240
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49",
241
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
242
+ },
243
+ {
244
+ "author": "beachball",
245
+ "package": "@fluentui/react-button",
246
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18",
247
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
248
+ },
249
+ {
250
+ "author": "beachball",
251
+ "package": "@fluentui/react-button",
252
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.85",
253
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
254
+ }
255
+ ]
256
+ }
257
+ },
258
+ {
259
+ "date": "Mon, 27 Sep 2021 08:06:00 GMT",
260
+ "tag": "@fluentui/react-button_v9.0.0-alpha.93",
261
+ "version": "9.0.0-alpha.93",
262
+ "comments": {
263
+ "prerelease": [
264
+ {
265
+ "author": "beachball",
266
+ "package": "@fluentui/react-button",
267
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.73",
268
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
269
+ },
270
+ {
271
+ "author": "beachball",
272
+ "package": "@fluentui/react-button",
273
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.67",
274
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
275
+ },
276
+ {
277
+ "author": "beachball",
278
+ "package": "@fluentui/react-button",
279
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.53",
280
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
281
+ },
282
+ {
283
+ "author": "beachball",
284
+ "package": "@fluentui/react-button",
285
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.55",
286
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
287
+ },
288
+ {
289
+ "author": "beachball",
290
+ "package": "@fluentui/react-button",
291
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48",
292
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
293
+ },
294
+ {
295
+ "author": "beachball",
296
+ "package": "@fluentui/react-button",
297
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17",
298
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
299
+ },
300
+ {
301
+ "author": "beachball",
302
+ "package": "@fluentui/react-button",
303
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.84",
304
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
305
+ }
306
+ ]
307
+ }
308
+ },
309
+ {
310
+ "date": "Fri, 24 Sep 2021 09:17:17 GMT",
311
+ "tag": "@fluentui/react-button_v9.0.0-alpha.92",
312
+ "version": "9.0.0-alpha.92",
313
+ "comments": {
314
+ "prerelease": [
315
+ {
316
+ "author": "beachball",
317
+ "package": "@fluentui/react-button",
318
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.72",
319
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
320
+ },
321
+ {
322
+ "author": "beachball",
323
+ "package": "@fluentui/react-button",
324
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.66",
325
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
326
+ },
327
+ {
328
+ "author": "beachball",
329
+ "package": "@fluentui/react-button",
330
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.52",
331
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
332
+ },
333
+ {
334
+ "author": "beachball",
335
+ "package": "@fluentui/react-button",
336
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.54",
337
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
338
+ },
339
+ {
340
+ "author": "beachball",
341
+ "package": "@fluentui/react-button",
342
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47",
343
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
344
+ },
345
+ {
346
+ "author": "beachball",
347
+ "package": "@fluentui/react-button",
348
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16",
349
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
350
+ },
351
+ {
352
+ "author": "beachball",
353
+ "package": "@fluentui/react-button",
354
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.83",
355
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
356
+ }
357
+ ]
358
+ }
359
+ },
360
+ {
361
+ "date": "Thu, 23 Sep 2021 08:21:34 GMT",
362
+ "tag": "@fluentui/react-button_v9.0.0-alpha.91",
363
+ "version": "9.0.0-alpha.91",
364
+ "comments": {
365
+ "prerelease": [
366
+ {
367
+ "author": "gcox@microsoft.com",
368
+ "package": "@fluentui/react-button",
369
+ "comment": "Updated for consistency to have shape and appearance properties",
370
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
371
+ },
372
+ {
373
+ "author": "beachball",
374
+ "package": "@fluentui/react-button",
375
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.71",
376
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
377
+ },
378
+ {
379
+ "author": "beachball",
380
+ "package": "@fluentui/react-button",
381
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.65",
382
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
383
+ },
384
+ {
385
+ "author": "beachball",
386
+ "package": "@fluentui/react-button",
387
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.51",
388
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
389
+ },
390
+ {
391
+ "author": "beachball",
392
+ "package": "@fluentui/react-button",
393
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.53",
394
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
395
+ },
396
+ {
397
+ "author": "beachball",
398
+ "package": "@fluentui/react-button",
399
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46",
400
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
401
+ },
402
+ {
403
+ "author": "beachball",
404
+ "package": "@fluentui/react-button",
405
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15",
406
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
407
+ },
408
+ {
409
+ "author": "beachball",
410
+ "package": "@fluentui/react-button",
411
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.82",
412
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
413
+ }
414
+ ]
415
+ }
416
+ },
417
+ {
418
+ "date": "Wed, 22 Sep 2021 10:10:07 GMT",
419
+ "tag": "@fluentui/react-button_v9.0.0-alpha.90",
420
+ "version": "9.0.0-alpha.90",
421
+ "comments": {
422
+ "prerelease": [
423
+ {
424
+ "author": "ololubek@microsoft.com",
425
+ "package": "@fluentui/react-button",
426
+ "comment": "update react-icons dependency",
427
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
428
+ },
429
+ {
430
+ "author": "Humberto.Morimoto@microsoft.com",
431
+ "package": "@fluentui/react-button",
432
+ "comment": "SplitButton: Adding missing verticalAlign=middle style.",
433
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
434
+ },
435
+ {
436
+ "author": "beachball",
437
+ "package": "@fluentui/react-button",
438
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.70",
439
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
440
+ },
441
+ {
442
+ "author": "beachball",
443
+ "package": "@fluentui/react-button",
444
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.64",
445
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
446
+ },
447
+ {
448
+ "author": "beachball",
449
+ "package": "@fluentui/react-button",
450
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.50",
451
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
452
+ },
453
+ {
454
+ "author": "beachball",
455
+ "package": "@fluentui/react-button",
456
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.52",
457
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
458
+ },
459
+ {
460
+ "author": "beachball",
461
+ "package": "@fluentui/react-button",
462
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45",
463
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
464
+ },
465
+ {
466
+ "author": "beachball",
467
+ "package": "@fluentui/react-button",
468
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14",
469
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
470
+ },
471
+ {
472
+ "author": "beachball",
473
+ "package": "@fluentui/react-button",
474
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.81",
475
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
476
+ }
477
+ ]
478
+ }
479
+ },
480
+ {
481
+ "date": "Tue, 21 Sep 2021 07:42:34 GMT",
482
+ "tag": "@fluentui/react-button_v9.0.0-alpha.89",
483
+ "version": "9.0.0-alpha.89",
484
+ "comments": {
485
+ "prerelease": [
486
+ {
487
+ "author": "gcox@microsoft.com",
488
+ "package": "@fluentui/react-button",
489
+ "comment": "Updating to types over interfaces",
490
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
491
+ },
492
+ {
493
+ "author": "beachball",
494
+ "package": "@fluentui/react-button",
495
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.69",
496
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
497
+ },
498
+ {
499
+ "author": "beachball",
500
+ "package": "@fluentui/react-button",
501
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.63",
502
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
503
+ },
504
+ {
505
+ "author": "beachball",
506
+ "package": "@fluentui/react-button",
507
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.51",
508
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
509
+ },
510
+ {
511
+ "author": "beachball",
512
+ "package": "@fluentui/react-button",
513
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44",
514
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
515
+ },
516
+ {
517
+ "author": "beachball",
518
+ "package": "@fluentui/react-button",
519
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13",
520
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
521
+ },
522
+ {
523
+ "author": "beachball",
524
+ "package": "@fluentui/react-button",
525
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.80",
526
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
527
+ }
528
+ ]
529
+ }
530
+ },
531
+ {
532
+ "date": "Mon, 20 Sep 2021 07:36:26 GMT",
533
+ "tag": "@fluentui/react-button_v9.0.0-alpha.88",
534
+ "version": "9.0.0-alpha.88",
535
+ "comments": {
536
+ "prerelease": [
537
+ {
538
+ "author": "Humberto.Morimoto@microsoft.com",
539
+ "package": "@fluentui/react-button",
540
+ "comment": "SplitButton: Re-introducing SplitButton using the latest version of makeStyles.",
541
+ "commit": "b8a304770f77c0353553a152dad34421070400a6"
542
+ },
543
+ {
544
+ "author": "lingfangao@hotmail.com",
545
+ "package": "@fluentui/react-button",
546
+ "commit": "b8a304770f77c0353553a152dad34421070400a6",
547
+ "comment": "Bump @fluentui/react-button to v9.0.0-alpha.88"
548
+ }
549
+ ],
550
+ "none": [
551
+ {
552
+ "author": "lingfangao@hotmail.com",
553
+ "package": "@fluentui/react-button",
554
+ "comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
555
+ "commit": "b8a304770f77c0353553a152dad34421070400a6"
556
+ }
557
+ ]
558
+ }
559
+ },
560
+ {
561
+ "date": "Fri, 17 Sep 2021 07:35:26 GMT",
562
+ "tag": "@fluentui/react-button_v9.0.0-alpha.87",
563
+ "version": "9.0.0-alpha.87",
564
+ "comments": {
565
+ "prerelease": [
566
+ {
567
+ "author": "Humberto.Morimoto@microsoft.com",
568
+ "package": "@fluentui/react-button",
569
+ "comment": "Modifying MenuButton to adhere to MenuTrigger changes.",
570
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575"
571
+ },
572
+ {
573
+ "author": "Humberto.Morimoto@microsoft.com",
574
+ "package": "@fluentui/react-button",
575
+ "comment": "Updating API comments to be more descriptive.",
576
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575"
577
+ },
578
+ {
579
+ "author": "Humberto.Morimoto@microsoft.com",
580
+ "package": "@fluentui/react-button",
581
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575",
582
+ "comment": "Bump @fluentui/react-button to v9.0.0-alpha.87"
583
+ }
584
+ ]
585
+ }
586
+ },
587
+ {
588
+ "date": "Thu, 16 Sep 2021 07:38:39 GMT",
589
+ "tag": "@fluentui/react-button_v9.0.0-alpha.86",
590
+ "version": "9.0.0-alpha.86",
591
+ "comments": {
592
+ "prerelease": [
593
+ {
594
+ "author": "behowell@microsoft.com",
595
+ "package": "@fluentui/react-button",
596
+ "commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c",
597
+ "comment": "Bump @fluentui/react-button to v9.0.0-alpha.86"
598
+ }
599
+ ]
600
+ }
601
+ },
602
+ {
603
+ "date": "Tue, 14 Sep 2021 20:09:02 GMT",
604
+ "tag": "@fluentui/react-button_v9.0.0-alpha.85",
605
+ "version": "9.0.0-alpha.85",
606
+ "comments": {
607
+ "prerelease": [
608
+ {
609
+ "author": "bsunderhus@microsoft.com",
610
+ "package": "@fluentui/react-button",
611
+ "commit": "10495c31fb5c5cf48b4665601a75a0cfabb6a03c",
612
+ "comment": "Bump @fluentui/react-button to v9.0.0-alpha.85"
613
+ }
614
+ ]
615
+ }
616
+ },
617
+ {
618
+ "date": "Fri, 10 Sep 2021 16:31:53 GMT",
619
+ "tag": "@fluentui/react-button_v9.0.0-alpha.84",
620
+ "version": "9.0.0-alpha.84",
621
+ "comments": {
622
+ "prerelease": [
623
+ {
624
+ "author": "lingfangao@hotmail.com",
625
+ "package": "@fluentui/react-button",
626
+ "comment": "chore(v9): Move all internal v9 dependencies from caret to fixed version",
627
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0"
628
+ },
629
+ {
630
+ "author": "lingfangao@hotmail.com",
631
+ "package": "@fluentui/react-button",
632
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0",
633
+ "comment": "Bump @fluentui/react-button to v9.0.0-alpha.84"
634
+ }
635
+ ]
636
+ }
637
+ },
638
+ {
639
+ "date": "Fri, 10 Sep 2021 07:39:51 GMT",
640
+ "tag": "@fluentui/react-button_v9.0.0-alpha.83",
641
+ "version": "9.0.0-alpha.83",
642
+ "comments": {
643
+ "none": [
644
+ {
645
+ "comment": "Updating README.md",
646
+ "author": "czearing@outlook.com",
647
+ "commit": "47c570ff69cb5303b1cc419b0eab8fddf8890ade",
648
+ "package": "@fluentui/react-button"
649
+ }
650
+ ],
651
+ "prerelease": [
652
+ {
653
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.74",
654
+ "author": "behowell@microsoft.com",
655
+ "commit": "8700a515c7f2659761c5b53f55c32453bc3510b1",
656
+ "package": "@fluentui/react-button"
657
+ }
658
+ ]
659
+ }
660
+ },
661
+ {
662
+ "date": "Wed, 08 Sep 2021 07:34:11 GMT",
663
+ "tag": "@fluentui/react-button_v9.0.0-alpha.82",
664
+ "version": "9.0.0-alpha.82",
665
+ "comments": {
666
+ "prerelease": [
667
+ {
668
+ "comment": "Bump @fluentui/react-menu to v9.0.0-alpha.73",
669
+ "author": "lingfangao@hotmail.com",
670
+ "commit": "1b6533cbc87422583bff6d1d6fcd74c9bdbad1c7",
671
+ "package": "@fluentui/react-button"
672
+ }
673
+ ]
674
+ }
675
+ },
676
+ {
677
+ "date": "Tue, 07 Sep 2021 07:34:55 GMT",
678
+ "tag": "@fluentui/react-button_v9.0.0-alpha.81",
679
+ "version": "9.0.0-alpha.81",
680
+ "comments": {
681
+ "none": [
682
+ {
683
+ "comment": "Bump @fluentui/react-conformance to v0.5.0",
684
+ "author": "olfedias@microsoft.com",
685
+ "commit": "37e0f35eb706d40c4537010de97db94a831022d3",
686
+ "package": "@fluentui/react-button"
687
+ }
688
+ ]
689
+ }
690
+ },
691
+ {
692
+ "date": "Mon, 06 Sep 2021 07:34:53 GMT",
693
+ "tag": "@fluentui/react-button_v9.0.0-alpha.81",
694
+ "version": "9.0.0-alpha.81",
695
+ "comments": {
696
+ "prerelease": [
697
+ {
698
+ "comment": "refactor(Button): use `event.key` for keyboard event",
699
+ "author": "lingfangao@hotmail.com",
700
+ "commit": "c3b21e84137ee07572e52faffbfffd384ed92609",
701
+ "package": "@fluentui/react-button"
702
+ }
703
+ ]
704
+ }
705
+ },
706
+ {
707
+ "date": "Fri, 03 Sep 2021 00:13:07 GMT",
708
+ "tag": "@fluentui/react-button_v9.0.0-alpha.80",
709
+ "version": "9.0.0-alpha.80",
710
+ "comments": {
711
+ "prerelease": [
712
+ {
713
+ "comment": "MenuButton: Cleaning up implementation and adhering to MenuTrigger contract.",
714
+ "author": "Humberto.Morimoto@microsoft.com",
715
+ "commit": "cfddfa922c3931371abb7c0e047783e5b49b33c0",
716
+ "package": "@fluentui/react-button"
717
+ }
718
+ ],
719
+ "none": [
720
+ {
721
+ "comment": "enable makeStyles conformance tests",
722
+ "author": "olfedias@microsoft.com",
723
+ "commit": "7d1896d9a205eee055d3a2ccdb21710ca397271d",
724
+ "package": "@fluentui/react-button"
725
+ }
726
+ ]
727
+ }
728
+ },
729
+ {
730
+ "date": "Thu, 02 Sep 2021 07:36:46 GMT",
731
+ "tag": "@fluentui/react-button_v9.0.0-alpha.79",
732
+ "version": "9.0.0-alpha.79",
733
+ "comments": {
734
+ "prerelease": [
735
+ {
736
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.43",
737
+ "author": "olfedias@microsoft.com",
738
+ "commit": "ff3225d408fa6a97628e3f08a5a11a196bef6934",
739
+ "package": "@fluentui/react-button"
740
+ }
741
+ ],
742
+ "patch": [
743
+ {
744
+ "comment": "Bump @fluentui/react-conformance to v0.4.5",
745
+ "author": "olfedias@microsoft.com",
746
+ "commit": "8f887d05e8f2fed8433b147c6e175d8297455c51",
747
+ "package": "@fluentui/react-button"
748
+ }
749
+ ]
750
+ }
751
+ },
752
+ {
753
+ "date": "Wed, 01 Sep 2021 07:39:56 GMT",
754
+ "tag": "@fluentui/react-button_v9.0.0-alpha.78",
755
+ "version": "9.0.0-alpha.78",
756
+ "comments": {
757
+ "prerelease": [
758
+ {
759
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.43",
760
+ "author": "bsunderhus@microsoft.com",
761
+ "commit": "40254a1b07bd51affd276e51af0b1d517714b45c",
762
+ "package": "@fluentui/react-button"
763
+ }
764
+ ]
765
+ }
766
+ },
767
+ {
768
+ "date": "Tue, 31 Aug 2021 07:37:47 GMT",
769
+ "tag": "@fluentui/react-button_v9.0.0-alpha.77",
770
+ "version": "9.0.0-alpha.77",
771
+ "comments": {
772
+ "prerelease": [
773
+ {
774
+ "comment": "Button: Adding type=button to all button components, removing @docCategory tags from API and fixing some documentation in the comments.",
775
+ "author": "Humberto.Morimoto@microsoft.com",
776
+ "commit": "abed5eb9fb05032c87e724176132618343886083",
777
+ "package": "@fluentui/react-button"
778
+ }
779
+ ],
780
+ "none": [
781
+ {
782
+ "comment": "revert(react-button): remove vNext components used in SB from devDeps that are stale",
783
+ "author": "martinhochel@microsoft.com",
784
+ "commit": "77a8622d91df6507eb4bd8367c9c98ed165ebeac",
785
+ "package": "@fluentui/react-button"
786
+ }
787
+ ]
788
+ }
789
+ },
790
+ {
791
+ "date": "Mon, 30 Aug 2021 07:35:05 GMT",
792
+ "tag": "@fluentui/react-button_v9.0.0-alpha.76",
793
+ "version": "9.0.0-alpha.76",
794
+ "comments": {
795
+ "prerelease": [
796
+ {
797
+ "comment": "Updating TypeScript type-only imports/exports to use import/export type syntax.",
798
+ "author": "dzearing@hotmail.com",
799
+ "commit": "e2ee214821eeb15080fa66ea0905dee4838fb291",
800
+ "package": "@fluentui/react-button"
801
+ }
802
+ ]
803
+ }
804
+ },
805
+ {
806
+ "date": "Fri, 27 Aug 2021 07:33:32 GMT",
807
+ "tag": "@fluentui/react-button_v9.0.0-alpha.75",
808
+ "version": "9.0.0-alpha.75",
809
+ "comments": {
810
+ "prerelease": [
811
+ {
812
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.40",
813
+ "author": "olfedias@microsoft.com",
814
+ "commit": "a59db5b49ed755bf1b64ac0ac051d626ec50ffd3",
815
+ "package": "@fluentui/react-button"
816
+ }
817
+ ]
818
+ }
819
+ },
820
+ {
821
+ "date": "Thu, 26 Aug 2021 07:35:43 GMT",
822
+ "tag": "@fluentui/react-button_v9.0.0-alpha.74",
823
+ "version": "9.0.0-alpha.74",
824
+ "comments": {
825
+ "prerelease": [
826
+ {
827
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.39",
828
+ "author": "martinhochel@microsoft.com",
829
+ "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
830
+ "package": "@fluentui/react-button"
831
+ }
832
+ ],
833
+ "none": [
834
+ {
835
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
836
+ "author": "martinhochel@microsoft.com",
837
+ "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
838
+ "package": "@fluentui/react-button"
839
+ }
840
+ ]
841
+ }
842
+ },
843
+ {
844
+ "date": "Tue, 24 Aug 2021 07:34:48 GMT",
845
+ "tag": "@fluentui/react-button_v9.0.0-alpha.73",
846
+ "version": "9.0.0-alpha.73",
847
+ "comments": {
848
+ "none": [
849
+ {
850
+ "comment": "Button docs",
851
+ "author": "peter@draxler.ml",
852
+ "commit": "035204943d15cadaa01f60d2fae628b6f7e77448",
853
+ "package": "@fluentui/react-button"
854
+ }
855
+ ]
856
+ }
857
+ },
858
+ {
859
+ "date": "Fri, 20 Aug 2021 07:37:28 GMT",
860
+ "tag": "@fluentui/react-button_v9.0.0-alpha.73",
861
+ "version": "9.0.0-alpha.73",
862
+ "comments": {
863
+ "prerelease": [
864
+ {
865
+ "comment": "Update .npmignore",
866
+ "author": "elcraig@microsoft.com",
867
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
868
+ "package": "@fluentui/react-button"
869
+ }
870
+ ],
871
+ "none": [
872
+ {
873
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.38",
874
+ "author": "elcraig@microsoft.com",
875
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
876
+ "package": "@fluentui/react-button"
877
+ },
878
+ {
879
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.0",
880
+ "author": "behowell@microsoft.com",
881
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
882
+ "package": "@fluentui/react-button"
883
+ },
884
+ {
885
+ "comment": "Bump @fluentui/a11y-testing to v0.1.0",
886
+ "author": "behowell@microsoft.com",
887
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
888
+ "package": "@fluentui/react-button"
889
+ },
890
+ {
891
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
892
+ "author": "elcraig@microsoft.com",
893
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
894
+ "package": "@fluentui/react-button"
895
+ },
896
+ {
897
+ "comment": "Bump @fluentui/keyboard-key to v0.3.4",
898
+ "author": "behowell@microsoft.com",
899
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
900
+ "package": "@fluentui/react-button"
901
+ },
902
+ {
903
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.40",
904
+ "author": "elcraig@microsoft.com",
905
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
906
+ "package": "@fluentui/react-button"
907
+ },
908
+ {
909
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.58",
910
+ "author": "elcraig@microsoft.com",
911
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
912
+ "package": "@fluentui/react-button"
913
+ },
914
+ {
915
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.52",
916
+ "author": "elcraig@microsoft.com",
917
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
918
+ "package": "@fluentui/react-button"
919
+ },
920
+ {
921
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
922
+ "author": "behowell@microsoft.com",
923
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
924
+ "package": "@fluentui/react-button"
925
+ },
926
+ {
927
+ "comment": "Bump @fluentui/scripts to v1.0.0",
928
+ "author": "behowell@microsoft.com",
929
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
930
+ "package": "@fluentui/react-button"
931
+ }
932
+ ]
933
+ }
934
+ },
935
+ {
936
+ "date": "Thu, 19 Aug 2021 07:41:35 GMT",
937
+ "tag": "@fluentui/react-button_v9.0.0-alpha.72",
938
+ "version": "9.0.0-alpha.72",
939
+ "comments": {
940
+ "prerelease": [
941
+ {
942
+ "comment": "fix default styling for button on focus",
943
+ "author": "ololubek@microsoft.com",
944
+ "commit": "b94c509dfdb919a254199db9cdb7cdaeb01026df",
945
+ "package": "@fluentui/react-button"
946
+ }
947
+ ]
948
+ }
949
+ },
950
+ {
951
+ "date": "Wed, 18 Aug 2021 07:33:54 GMT",
952
+ "tag": "@fluentui/react-button_v9.0.0-alpha.71",
953
+ "version": "9.0.0-alpha.71",
954
+ "comments": {
955
+ "prerelease": [
956
+ {
957
+ "comment": "Update hc focus styling for vNext button",
958
+ "author": "ololubek@microsoft.com",
959
+ "commit": "f5ea93b0c0b9905c078b7ace1511b5a78ec8346d",
960
+ "package": "@fluentui/react-button"
961
+ }
962
+ ],
963
+ "none": [
964
+ {
965
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.36",
966
+ "author": "martinhochel@microsoft.com",
967
+ "commit": "5dfa622011b10aaab3ab1fb3fc2e5f77c8a13166",
968
+ "package": "@fluentui/react-button"
969
+ }
970
+ ]
971
+ }
972
+ },
973
+ {
974
+ "date": "Fri, 13 Aug 2021 07:36:34 GMT",
975
+ "tag": "@fluentui/react-button_v9.0.0-alpha.70",
976
+ "version": "9.0.0-alpha.70",
977
+ "comments": {
978
+ "prerelease": [
979
+ {
980
+ "comment": "Button: Adding font family styles.",
981
+ "author": "Humberto.Morimoto@microsoft.com",
982
+ "commit": "669af99bc4859a13a2f599202d310e889c6c5e85",
983
+ "package": "@fluentui/react-button"
984
+ }
985
+ ]
986
+ }
987
+ },
988
+ {
989
+ "date": "Wed, 11 Aug 2021 07:34:54 GMT",
990
+ "tag": "@fluentui/react-button_v9.0.0-alpha.69",
991
+ "version": "9.0.0-alpha.69",
992
+ "comments": {
993
+ "prerelease": [
994
+ {
995
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.35",
996
+ "author": "olfedias@microsoft.com",
997
+ "commit": "954ba1d43684df75942a18c0ef05dc99187729ff",
998
+ "package": "@fluentui/react-button"
999
+ }
1000
+ ]
1001
+ }
1002
+ },
1003
+ {
1004
+ "date": "Mon, 09 Aug 2021 07:35:14 GMT",
1005
+ "tag": "@fluentui/react-button_v9.0.0-alpha.68",
1006
+ "version": "9.0.0-alpha.68",
1007
+ "comments": {
1008
+ "none": [
1009
+ {
1010
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.34",
1011
+ "author": "czearing@outlook.com",
1012
+ "commit": "c8aa3a59fbe9a59ca90077418d7c82de9f31ee13",
1013
+ "package": "@fluentui/react-button"
1014
+ }
1015
+ ]
1016
+ }
1017
+ },
1018
+ {
1019
+ "date": "Fri, 06 Aug 2021 07:35:14 GMT",
1020
+ "tag": "@fluentui/react-button_v9.0.0-alpha.68",
1021
+ "version": "9.0.0-alpha.68",
1022
+ "comments": {
1023
+ "prerelease": [
1024
+ {
1025
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.34",
1026
+ "author": "jspurlin@microsoft.com",
1027
+ "commit": "8a09087b4215a36a50b6d3478cd2b74155c9c630",
1028
+ "package": "@fluentui/react-button"
1029
+ }
1030
+ ]
1031
+ }
1032
+ },
1033
+ {
1034
+ "date": "Wed, 04 Aug 2021 07:34:12 GMT",
1035
+ "tag": "@fluentui/react-button_v9.0.0-alpha.67",
1036
+ "version": "9.0.0-alpha.67",
1037
+ "comments": {
1038
+ "none": [
1039
+ {
1040
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.37",
1041
+ "author": "czearing@outlook.com",
1042
+ "commit": "109e85b19d8ee37a9c31ddf8e2083471bab64526",
1043
+ "package": "@fluentui/react-button"
1044
+ }
1045
+ ]
1046
+ }
1047
+ },
1048
+ {
1049
+ "date": "Tue, 03 Aug 2021 07:39:30 GMT",
1050
+ "tag": "@fluentui/react-button_v9.0.0-alpha.67",
1051
+ "version": "9.0.0-alpha.67",
1052
+ "comments": {
1053
+ "patch": [
1054
+ {
1055
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.3",
1056
+ "author": "behowell@microsoft.com",
1057
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1058
+ "package": "@fluentui/react-button"
1059
+ },
1060
+ {
1061
+ "comment": "Bump @fluentui/a11y-testing to v0.1.0",
1062
+ "author": "behowell@microsoft.com",
1063
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1064
+ "package": "@fluentui/react-button"
1065
+ },
1066
+ {
1067
+ "comment": "Bump @fluentui/keyboard-key to v0.3.4",
1068
+ "author": "behowell@microsoft.com",
1069
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1070
+ "package": "@fluentui/react-button"
1071
+ },
1072
+ {
1073
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
1074
+ "author": "behowell@microsoft.com",
1075
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1076
+ "package": "@fluentui/react-button"
1077
+ },
1078
+ {
1079
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1080
+ "author": "behowell@microsoft.com",
1081
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1082
+ "package": "@fluentui/react-button"
1083
+ }
1084
+ ]
1085
+ }
1086
+ },
1087
+ {
1088
+ "date": "Mon, 02 Aug 2021 07:36:20 GMT",
1089
+ "tag": "@fluentui/react-button_v9.0.0-alpha.66",
1090
+ "version": "9.0.0-alpha.66",
1091
+ "comments": {
1092
+ "prerelease": [
1093
+ {
1094
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.36",
1095
+ "author": "lingfan.gao@microsoft.com",
1096
+ "commit": "ab0e1bafdd9ace2974b3362cd2300fb32af466fb",
1097
+ "package": "@fluentui/react-button"
1098
+ }
1099
+ ]
1100
+ }
1101
+ },
1102
+ {
1103
+ "date": "Mon, 26 Jul 2021 07:37:30 GMT",
1104
+ "tag": "@fluentui/react-button_v9.0.0-alpha.65",
1105
+ "version": "9.0.0-alpha.65",
1106
+ "comments": {
1107
+ "none": [
1108
+ {
1109
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.31",
1110
+ "author": "olfedias@microsoft.com",
1111
+ "commit": "8c249a1c1a8dcc4b0d9877e5d5e8e6d126063788",
1112
+ "package": "@fluentui/react-button"
1113
+ }
1114
+ ],
1115
+ "prerelease": [
1116
+ {
1117
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.46",
1118
+ "author": "olfedias@microsoft.com",
1119
+ "commit": "19db6cb57a237073b0bb50d07eb921b1ce2e0c61",
1120
+ "package": "@fluentui/react-button"
1121
+ }
1122
+ ]
1123
+ }
1124
+ },
1125
+ {
1126
+ "date": "Fri, 23 Jul 2021 07:38:19 GMT",
1127
+ "tag": "@fluentui/react-button_v9.0.0-alpha.64",
1128
+ "version": "9.0.0-alpha.64",
1129
+ "comments": {
1130
+ "prerelease": [
1131
+ {
1132
+ "comment": "Fix button jump effect on border disparities",
1133
+ "author": "bsunderhus@microsoft.com",
1134
+ "commit": "6d8fde315b1bcfe5948f7c309a3ddece1a71c8ff",
1135
+ "package": "@fluentui/react-button"
1136
+ },
1137
+ {
1138
+ "comment": "Update theme tokens",
1139
+ "author": "miroslav.stastny@microsoft.com",
1140
+ "commit": "5d812148593dc574a6f3a343a5657614b4d10456",
1141
+ "package": "@fluentui/react-button"
1142
+ },
1143
+ {
1144
+ "comment": "Button: Handling children correctly and not as a slot.",
1145
+ "author": "Humberto.Morimoto@microsoft.com",
1146
+ "commit": "e1a39cd66ca28991eac12f63e8129ff24fd4daa8",
1147
+ "package": "@fluentui/react-button"
1148
+ }
1149
+ ]
1150
+ }
1151
+ },
1152
+ {
1153
+ "date": "Thu, 22 Jul 2021 07:36:55 GMT",
1154
+ "tag": "@fluentui/react-button_v9.0.0-alpha.63",
1155
+ "version": "9.0.0-alpha.63",
1156
+ "comments": {
1157
+ "prerelease": [
1158
+ {
1159
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.29",
1160
+ "author": "lingfan.gao@microsoft.com",
1161
+ "commit": "84296aa8db9ddbf0250f24703fb304c360ff05e1",
1162
+ "package": "@fluentui/react-button"
1163
+ }
1164
+ ]
1165
+ }
1166
+ },
1167
+ {
1168
+ "date": "Tue, 20 Jul 2021 22:23:17 GMT",
1169
+ "tag": "@fluentui/react-button_v9.0.0-alpha.62",
1170
+ "version": "9.0.0-alpha.62",
1171
+ "comments": {
1172
+ "prerelease": [
1173
+ {
1174
+ "comment": "Button: Migrate to new dx",
1175
+ "author": "tristan.watanabe@gmail.com",
1176
+ "commit": "f8578ee238037bb8af86582d7f75659ff0bc8ebd",
1177
+ "package": "@fluentui/react-button"
1178
+ }
1179
+ ],
1180
+ "none": [
1181
+ {
1182
+ "comment": "add bundle size fixtures",
1183
+ "author": "olfedias@microsoft.com",
1184
+ "commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
1185
+ "package": "@fluentui/react-button"
1186
+ },
1187
+ {
1188
+ "comment": "Sync babel-make-styles with published version",
1189
+ "author": "elcraig@microsoft.com",
1190
+ "commit": "d57f601738c32dfa1e651529d8edfec10a6b46b7",
1191
+ "package": "@fluentui/react-button"
1192
+ },
1193
+ {
1194
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.28",
1195
+ "author": "olfedias@microsoft.com",
1196
+ "commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
1197
+ "package": "@fluentui/react-button"
1198
+ },
1199
+ {
1200
+ "comment": "Bump @fluentui/a11y-testing to v0.1.0",
1201
+ "author": "lingfan.gao@microsoft.com",
1202
+ "commit": "87ab56f142ad5f10d772ba339ea26d84600ac965",
1203
+ "package": "@fluentui/react-button"
1204
+ },
1205
+ {
1206
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.25",
1207
+ "author": "olfedias@microsoft.com",
1208
+ "commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
1209
+ "package": "@fluentui/react-button"
1210
+ },
1211
+ {
1212
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.49",
1213
+ "author": "olfedias@microsoft.com",
1214
+ "commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
1215
+ "package": "@fluentui/react-button"
1216
+ },
1217
+ {
1218
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.43",
1219
+ "author": "olfedias@microsoft.com",
1220
+ "commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
1221
+ "package": "@fluentui/react-button"
1222
+ },
1223
+ {
1224
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.33",
1225
+ "author": "olfedias@microsoft.com",
1226
+ "commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
1227
+ "package": "@fluentui/react-button"
1228
+ }
1229
+ ]
1230
+ }
1231
+ },
1232
+ {
1233
+ "date": "Fri, 16 Jul 2021 22:53:17 GMT",
1234
+ "tag": "@fluentui/react-button_v9.0.0-alpha.61",
1235
+ "version": "9.0.0-alpha.61",
1236
+ "comments": {
1237
+ "prerelease": [
1238
+ {
1239
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.26",
1240
+ "author": "olfedias@microsoft.com",
1241
+ "commit": "91e053b6cfb80ed71f99957fc1e6b92f67920ab3",
1242
+ "package": "@fluentui/react-button"
1243
+ }
1244
+ ]
1245
+ }
1246
+ },
1247
+ {
1248
+ "date": "Thu, 15 Jul 2021 07:36:18 GMT",
1249
+ "tag": "@fluentui/react-button_v9.0.0-alpha.60",
1250
+ "version": "9.0.0-alpha.60",
1251
+ "comments": {
1252
+ "prerelease": [
1253
+ {
1254
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.33",
1255
+ "author": "bsunderhus@microsoft.com",
1256
+ "commit": "b60234948eacb8c6fa9d08ab8e98d963f583d475",
1257
+ "package": "@fluentui/react-button"
1258
+ }
1259
+ ]
1260
+ }
1261
+ },
1262
+ {
1263
+ "date": "Tue, 13 Jul 2021 22:32:58 GMT",
1264
+ "tag": "@fluentui/react-button_v9.0.0-alpha.59",
1265
+ "version": "9.0.0-alpha.59",
1266
+ "comments": {
1267
+ "patch": [
1268
+ {
1269
+ "comment": "Bump @fluentui/react-conformance to v0.4.3",
1270
+ "author": "elcraig@microsoft.com",
1271
+ "commit": "12b74625dec55bd1919f6370513043d87705e5ea",
1272
+ "package": "@fluentui/react-button"
1273
+ }
1274
+ ]
1275
+ }
1276
+ },
1277
+ {
1278
+ "date": "Tue, 13 Jul 2021 07:35:36 GMT",
1279
+ "tag": "@fluentui/react-button_v9.0.0-alpha.58",
1280
+ "version": "9.0.0-alpha.58",
1281
+ "comments": {
1282
+ "prerelease": [
1283
+ {
1284
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.24",
1285
+ "author": "behowell@microsoft.com",
1286
+ "commit": "8e5969e291bcafac21df12c9fb591bdd5654c613",
1287
+ "package": "@fluentui/react-button"
1288
+ }
1289
+ ]
1290
+ }
1291
+ },
1292
+ {
1293
+ "date": "Mon, 12 Jul 2021 07:33:23 GMT",
1294
+ "tag": "@fluentui/react-button_v9.0.0-alpha.57",
1295
+ "version": "9.0.0-alpha.57",
1296
+ "comments": {
1297
+ "prerelease": [
1298
+ {
1299
+ "comment": "Button: Adding back block, circular, disabledFocusable and outline props and making some styling fixes.",
1300
+ "author": "Humberto.Morimoto@microsoft.com",
1301
+ "commit": "394b16b92fae7773125c32edc1df56c7758cba4e",
1302
+ "package": "@fluentui/react-button"
1303
+ }
1304
+ ]
1305
+ }
1306
+ },
1307
+ {
1308
+ "date": "Fri, 09 Jul 2021 07:39:31 GMT",
1309
+ "tag": "@fluentui/react-button_v9.0.0-alpha.56",
1310
+ "version": "9.0.0-alpha.56",
1311
+ "comments": {
1312
+ "patch": [
1313
+ {
1314
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.2",
1315
+ "author": "martinhochel@microsoft.com",
1316
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1317
+ "package": "@fluentui/react-button"
1318
+ },
1319
+ {
1320
+ "comment": "Bump @fluentui/a11y-testing to v0.1.0",
1321
+ "author": "martinhochel@microsoft.com",
1322
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1323
+ "package": "@fluentui/react-button"
1324
+ },
1325
+ {
1326
+ "comment": "Bump @fluentui/keyboard-key to v0.3.3",
1327
+ "author": "martinhochel@microsoft.com",
1328
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1329
+ "package": "@fluentui/react-button"
1330
+ },
1331
+ {
1332
+ "comment": "Bump @fluentui/react-conformance to v0.4.2",
1333
+ "author": "martinhochel@microsoft.com",
1334
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1335
+ "package": "@fluentui/react-button"
1336
+ },
1337
+ {
1338
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1339
+ "author": "martinhochel@microsoft.com",
1340
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1341
+ "package": "@fluentui/react-button"
1342
+ }
1343
+ ]
1344
+ }
1345
+ },
1346
+ {
1347
+ "date": "Fri, 02 Jul 2021 23:15:55 GMT",
1348
+ "tag": "@fluentui/react-button_v9.0.0-alpha.55",
1349
+ "version": "9.0.0-alpha.55",
1350
+ "comments": {
1351
+ "prerelease": [
1352
+ {
1353
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.22",
1354
+ "author": "olfedias@microsoft.com",
1355
+ "commit": "936b45148b58d15c9c843f0503f7bdf12b9da4e9",
1356
+ "package": "@fluentui/react-button"
1357
+ }
1358
+ ]
1359
+ }
1360
+ },
1361
+ {
1362
+ "date": "Fri, 02 Jul 2021 07:37:06 GMT",
1363
+ "tag": "@fluentui/react-button_v9.0.0-alpha.54",
1364
+ "version": "9.0.0-alpha.54",
1365
+ "comments": {
1366
+ "prerelease": [
1367
+ {
1368
+ "comment": "Rename typings and getSlots to have the Compat Suffix",
1369
+ "author": "bsunderhus@microsoft.com",
1370
+ "commit": "c939e67b1840a9eb5f7706afcda8c14df8f18d33",
1371
+ "package": "@fluentui/react-button"
1372
+ }
1373
+ ]
1374
+ }
1375
+ },
1376
+ {
1377
+ "date": "Thu, 01 Jul 2021 07:35:05 GMT",
1378
+ "tag": "@fluentui/react-button_v9.0.0-alpha.53",
1379
+ "version": "9.0.0-alpha.53",
1380
+ "comments": {
1381
+ "prerelease": [
1382
+ {
1383
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.20",
1384
+ "author": "olfedias@microsoft.com",
1385
+ "commit": "c5019f09e666bac820addb36facaf0c133c0f7bc",
1386
+ "package": "@fluentui/react-button"
1387
+ }
1388
+ ]
1389
+ }
1390
+ },
1391
+ {
1392
+ "date": "Wed, 30 Jun 2021 07:38:35 GMT",
1393
+ "tag": "@fluentui/react-button_v9.0.0-alpha.52",
1394
+ "version": "9.0.0-alpha.52",
1395
+ "comments": {
1396
+ "prerelease": [
1397
+ {
1398
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.19",
1399
+ "author": "tristan.watanabe@gmail.com",
1400
+ "commit": "804ca93da84e19cec0737729473be5034a2e4939",
1401
+ "package": "@fluentui/react-button"
1402
+ }
1403
+ ]
1404
+ }
1405
+ },
1406
+ {
1407
+ "date": "Tue, 29 Jun 2021 07:33:32 GMT",
1408
+ "tag": "@fluentui/react-button_v9.0.0-alpha.51",
1409
+ "version": "9.0.0-alpha.51",
1410
+ "comments": {
1411
+ "prerelease": [
1412
+ {
1413
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.18",
1414
+ "author": "olfedias@microsoft.com",
1415
+ "commit": "073ea5f67e3088a92f68caeeca32ef96410aabc5",
1416
+ "package": "@fluentui/react-button"
1417
+ }
1418
+ ],
1419
+ "none": [
1420
+ {
1421
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.35",
1422
+ "author": "lingfan.gao@microsoft.com",
1423
+ "commit": "4f907a837f3b85923178b611e4fbb0d9ac222dda",
1424
+ "package": "@fluentui/react-button"
1425
+ }
1426
+ ]
1427
+ }
1428
+ },
1429
+ {
1430
+ "date": "Mon, 28 Jun 2021 07:35:16 GMT",
1431
+ "tag": "@fluentui/react-button_v9.0.0-alpha.50",
1432
+ "version": "9.0.0-alpha.50",
1433
+ "comments": {
1434
+ "none": [
1435
+ {
1436
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.17",
1437
+ "author": "olfedias@microsoft.com",
1438
+ "commit": "bf6fd1290ea6c6861a5d80f704e0d6d0cadb71e0",
1439
+ "package": "@fluentui/react-button"
1440
+ }
1441
+ ]
1442
+ }
1443
+ },
1444
+ {
1445
+ "date": "Fri, 25 Jun 2021 07:31:35 GMT",
1446
+ "tag": "@fluentui/react-button_v9.0.0-alpha.50",
1447
+ "version": "9.0.0-alpha.50",
1448
+ "comments": {
1449
+ "none": [
1450
+ {
1451
+ "comment": "Correcting interface doc comment typos in react-button",
1452
+ "author": "czearing@outlook.com",
1453
+ "commit": "78a001da63401022bbcb1cef142240d2c9671e53",
1454
+ "package": "@fluentui/react-button"
1455
+ }
1456
+ ]
1457
+ }
1458
+ },
1459
+ {
1460
+ "date": "Wed, 23 Jun 2021 07:31:49 GMT",
1461
+ "tag": "@fluentui/react-button_v9.0.0-alpha.50",
1462
+ "version": "9.0.0-alpha.50",
1463
+ "comments": {
1464
+ "prerelease": [
1465
+ {
1466
+ "comment": "react-button: Removing last remnants of legacy patterns.",
1467
+ "author": "Humberto.Morimoto@microsoft.com",
1468
+ "commit": "15047a334d953f8638dfe678470b5efc3d206d1c",
1469
+ "package": "@fluentui/react-button"
1470
+ }
1471
+ ],
1472
+ "none": [
1473
+ {
1474
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.17",
1475
+ "author": "olfedias@microsoft.com",
1476
+ "commit": "6aa065bafaa4a169b771706bc93c2faff9ac78a7",
1477
+ "package": "@fluentui/react-button"
1478
+ }
1479
+ ]
1480
+ }
1481
+ },
1482
+ {
1483
+ "date": "Tue, 22 Jun 2021 07:35:11 GMT",
1484
+ "tag": "@fluentui/react-button_v9.0.0-alpha.49",
1485
+ "version": "9.0.0-alpha.49",
1486
+ "comments": {
1487
+ "prerelease": [
1488
+ {
1489
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.17",
1490
+ "author": "olfedias@microsoft.com",
1491
+ "commit": "3fccf5c8a8ea30529b736b9189e294969242f886",
1492
+ "package": "@fluentui/react-button"
1493
+ }
1494
+ ]
1495
+ }
1496
+ },
1497
+ {
1498
+ "date": "Mon, 21 Jun 2021 07:34:33 GMT",
1499
+ "tag": "@fluentui/react-button_v9.0.0-alpha.48",
1500
+ "version": "9.0.0-alpha.48",
1501
+ "comments": {
1502
+ "none": [
1503
+ {
1504
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.16",
1505
+ "author": "miroslav.stastny@microsoft.com",
1506
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
1507
+ "package": "@fluentui/react-button"
1508
+ }
1509
+ ]
1510
+ }
1511
+ },
1512
+ {
1513
+ "date": "Tue, 15 Jun 2021 07:40:20 GMT",
1514
+ "tag": "@fluentui/react-button_v9.0.0-alpha.48",
1515
+ "version": "9.0.0-alpha.48",
1516
+ "comments": {
1517
+ "prerelease": [
1518
+ {
1519
+ "comment": "Temporary typing fix for children prop",
1520
+ "author": "behowell@microsoft.com",
1521
+ "commit": "10b1e17acaa01675866f7a623be1a61b1478d7d7",
1522
+ "package": "@fluentui/react-button"
1523
+ }
1524
+ ]
1525
+ }
1526
+ },
1527
+ {
1528
+ "date": "Fri, 11 Jun 2021 07:34:26 GMT",
1529
+ "tag": "@fluentui/react-button_v9.0.0-alpha.47",
1530
+ "version": "9.0.0-alpha.47",
1531
+ "comments": {
1532
+ "prerelease": [
1533
+ {
1534
+ "comment": "CompoundButton: Removing legacy patterns from converged component.",
1535
+ "author": "Humberto.Morimoto@microsoft.com",
1536
+ "commit": "7ebdcb7d875fd0433a1e6ae749fdf15148981cdb",
1537
+ "package": "@fluentui/react-button"
1538
+ },
1539
+ {
1540
+ "comment": "ToggleButton: Removing legacy patterns from converged component.",
1541
+ "author": "Humberto.Morimoto@microsoft.com",
1542
+ "commit": "0b25e8db7219b261df060d8dfafd11c307848ba2",
1543
+ "package": "@fluentui/react-button"
1544
+ },
1545
+ {
1546
+ "comment": "MenuButton: Removing legacy patterns from converged component.",
1547
+ "author": "Humberto.Morimoto@microsoft.com",
1548
+ "commit": "92eecaa70a1a48c71c29415eb88d7c1d628f12d9",
1549
+ "package": "@fluentui/react-button"
1550
+ }
1551
+ ]
1552
+ }
1553
+ },
1554
+ {
1555
+ "date": "Thu, 10 Jun 2021 07:32:59 GMT",
1556
+ "tag": "@fluentui/react-button_v9.0.0-alpha.46",
1557
+ "version": "9.0.0-alpha.46",
1558
+ "comments": {
1559
+ "prerelease": [
1560
+ {
1561
+ "comment": "Button: Removing legacy patterns from converged component.",
1562
+ "author": "Humberto.Morimoto@microsoft.com",
1563
+ "commit": "aa5faf97d86f8ff8464ea8840a3a90e11b56da4f",
1564
+ "package": "@fluentui/react-button"
1565
+ }
1566
+ ]
1567
+ }
1568
+ },
1569
+ {
1570
+ "date": "Wed, 09 Jun 2021 07:33:38 GMT",
1571
+ "tag": "@fluentui/react-button_v9.0.0-alpha.45",
1572
+ "version": "9.0.0-alpha.45",
1573
+ "comments": {
1574
+ "prerelease": [
1575
+ {
1576
+ "comment": "Adds focus indicator style to react-button",
1577
+ "author": "bsunderhus@microsoft.com",
1578
+ "commit": "14b56aa2b7a2bb84b1b9f310d400a1849985f9f9",
1579
+ "package": "@fluentui/react-button"
1580
+ }
1581
+ ]
1582
+ }
1583
+ },
1584
+ {
1585
+ "date": "Mon, 07 Jun 2021 07:38:15 GMT",
1586
+ "tag": "@fluentui/react-button_v9.0.0-alpha.44",
1587
+ "version": "9.0.0-alpha.44",
1588
+ "comments": {
1589
+ "patch": [
1590
+ {
1591
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.1",
1592
+ "author": "martinhochel@microsoft.com",
1593
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
1594
+ "package": "@fluentui/react-button"
1595
+ },
1596
+ {
1597
+ "comment": "Bump @fluentui/a11y-testing to v0.1.0",
1598
+ "author": "martinhochel@microsoft.com",
1599
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
1600
+ "package": "@fluentui/react-button"
1601
+ },
1602
+ {
1603
+ "comment": "Bump @fluentui/keyboard-key to v0.3.2",
1604
+ "author": "martinhochel@microsoft.com",
1605
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
1606
+ "package": "@fluentui/react-button"
1607
+ },
1608
+ {
1609
+ "comment": "Bump @fluentui/react-conformance to v0.4.1",
1610
+ "author": "martinhochel@microsoft.com",
1611
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
1612
+ "package": "@fluentui/react-button"
1613
+ },
1614
+ {
1615
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1616
+ "author": "martinhochel@microsoft.com",
1617
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
1618
+ "package": "@fluentui/react-button"
1619
+ }
1620
+ ]
1621
+ }
1622
+ },
1623
+ {
1624
+ "date": "Fri, 04 Jun 2021 07:37:23 GMT",
1625
+ "tag": "@fluentui/react-button_v9.0.0-alpha.43",
1626
+ "version": "9.0.0-alpha.43",
1627
+ "comments": {
1628
+ "prerelease": [
1629
+ {
1630
+ "comment": "MenuButton: Re-introducing MenuButton using the latest version of makeStyles.",
1631
+ "author": "Humberto.Morimoto@microsoft.com",
1632
+ "commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb",
1633
+ "package": "@fluentui/react-button"
1634
+ }
1635
+ ]
1636
+ }
1637
+ },
1638
+ {
1639
+ "date": "Thu, 03 Jun 2021 07:36:03 GMT",
1640
+ "tag": "@fluentui/react-button_v9.0.0-alpha.42",
1641
+ "version": "9.0.0-alpha.42",
1642
+ "comments": {
1643
+ "prerelease": [
1644
+ {
1645
+ "comment": "Use updated theme tokens in component styles",
1646
+ "author": "miroslav.stastny@microsoft.com",
1647
+ "commit": "32aed1a91b19ac1beb161a7a2ab43e78b51f53d1",
1648
+ "package": "@fluentui/react-button"
1649
+ }
1650
+ ],
1651
+ "none": [
1652
+ {
1653
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.13",
1654
+ "author": "martinhochel@microsoft.com",
1655
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
1656
+ "package": "@fluentui/react-button"
1657
+ },
1658
+ {
1659
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.39",
1660
+ "author": "martinhochel@microsoft.com",
1661
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
1662
+ "package": "@fluentui/react-button"
1663
+ },
1664
+ {
1665
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.15",
1666
+ "author": "martinhochel@microsoft.com",
1667
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
1668
+ "package": "@fluentui/react-button"
1669
+ },
1670
+ {
1671
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.26",
1672
+ "author": "martinhochel@microsoft.com",
1673
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
1674
+ "package": "@fluentui/react-button"
1675
+ }
1676
+ ]
1677
+ }
1678
+ },
1679
+ {
1680
+ "date": "Wed, 02 Jun 2021 07:37:15 GMT",
1681
+ "tag": "@fluentui/react-button_v9.0.0-alpha.41",
1682
+ "version": "9.0.0-alpha.41",
1683
+ "comments": {
1684
+ "prerelease": [
1685
+ {
1686
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.12",
1687
+ "author": "bsunderhus@microsoft.com",
1688
+ "commit": "7f5734bd8a2a124969c6402534605fe0ee9df4af",
1689
+ "package": "@fluentui/react-button"
1690
+ }
1691
+ ]
1692
+ }
1693
+ },
1694
+ {
1695
+ "date": "Tue, 01 Jun 2021 07:31:58 GMT",
1696
+ "tag": "@fluentui/react-button_v9.0.0-alpha.40",
1697
+ "version": "9.0.0-alpha.40",
1698
+ "comments": {
1699
+ "none": [
1700
+ {
1701
+ "comment": "Revert \"chore: enable Jest aliases for converged packages (#18337)\"",
1702
+ "author": "olfedias@microsoft.com",
1703
+ "commit": "b5f2a02b37c8ea394a65f7a22bff057de93370dd",
1704
+ "package": "@fluentui/react-button"
1705
+ }
1706
+ ]
1707
+ }
1708
+ },
1709
+ {
1710
+ "date": "Fri, 28 May 2021 07:33:57 GMT",
1711
+ "tag": "@fluentui/react-button_v9.0.0-alpha.40",
1712
+ "version": "9.0.0-alpha.40",
1713
+ "comments": {
1714
+ "none": [
1715
+ {
1716
+ "comment": "enable Jest aliases",
1717
+ "author": "olfedias@microsoft.com",
1718
+ "commit": "5379823a6f53bd36a936806153d228b9a0ef0543",
1719
+ "package": "@fluentui/react-button"
1720
+ }
1721
+ ]
1722
+ }
1723
+ },
1724
+ {
1725
+ "date": "Wed, 26 May 2021 07:35:43 GMT",
1726
+ "tag": "@fluentui/react-button_v9.0.0-alpha.40",
1727
+ "version": "9.0.0-alpha.40",
1728
+ "comments": {
1729
+ "none": [
1730
+ {
1731
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.11",
1732
+ "author": "olfedias@microsoft.com",
1733
+ "commit": "d2504c72ec7fba0cf4dcf1984c2e1a9322720225",
1734
+ "package": "@fluentui/react-button"
1735
+ }
1736
+ ],
1737
+ "prerelease": [
1738
+ {
1739
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.25",
1740
+ "author": "lingfan.gao@microsoft.com",
1741
+ "commit": "6ffca36c9537a1852d8ec26478b8b7aeb059e17c",
1742
+ "package": "@fluentui/react-button"
1743
+ }
1744
+ ]
1745
+ }
1746
+ },
1747
+ {
1748
+ "date": "Fri, 21 May 2021 07:34:54 GMT",
1749
+ "tag": "@fluentui/react-button_v9.0.0-alpha.39",
1750
+ "version": "9.0.0-alpha.39",
1751
+ "comments": {
1752
+ "none": [
1753
+ {
1754
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.11",
1755
+ "author": "miroslav.stastny@microsoft.com",
1756
+ "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
1757
+ "package": "@fluentui/react-button"
1758
+ }
1759
+ ],
1760
+ "prerelease": [
1761
+ {
1762
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.24",
1763
+ "author": "behowell@microsoft.com",
1764
+ "commit": "aabab8dedf6aa56a403b314157bcef84b6bcd585",
1765
+ "package": "@fluentui/react-button"
1766
+ }
1767
+ ]
1768
+ }
1769
+ },
1770
+ {
1771
+ "date": "Thu, 20 May 2021 07:41:54 GMT",
1772
+ "tag": "@fluentui/react-button_v9.0.0-alpha.38",
1773
+ "version": "9.0.0-alpha.38",
1774
+ "comments": {
1775
+ "none": [
1776
+ {
1777
+ "comment": "Update conformance tests in all packages to use a package-level isConformant wrapper with appropriate generics for props",
1778
+ "author": "elcraig@microsoft.com",
1779
+ "commit": "1e6ad173e2cfa18cfcae13311be7916f1b241432",
1780
+ "package": "@fluentui/react-button"
1781
+ }
1782
+ ],
1783
+ "patch": [
1784
+ {
1785
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.0",
1786
+ "author": "elcraig@microsoft.com",
1787
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
1788
+ "package": "@fluentui/react-button"
1789
+ },
1790
+ {
1791
+ "comment": "Bump @fluentui/a11y-testing to v0.1.0",
1792
+ "author": "elcraig@microsoft.com",
1793
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
1794
+ "package": "@fluentui/react-button"
1795
+ },
1796
+ {
1797
+ "comment": "Bump @fluentui/keyboard-key to v0.3.1",
1798
+ "author": "elcraig@microsoft.com",
1799
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
1800
+ "package": "@fluentui/react-button"
1801
+ },
1802
+ {
1803
+ "comment": "Bump @fluentui/react-conformance to v0.4.0",
1804
+ "author": "elcraig@microsoft.com",
1805
+ "commit": "1e6ad173e2cfa18cfcae13311be7916f1b241432",
1806
+ "package": "@fluentui/react-button"
1807
+ },
1808
+ {
1809
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1810
+ "author": "elcraig@microsoft.com",
1811
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
1812
+ "package": "@fluentui/react-button"
1813
+ }
1814
+ ]
1815
+ }
1816
+ },
1817
+ {
1818
+ "date": "Wed, 19 May 2021 07:34:20 GMT",
1819
+ "tag": "@fluentui/react-button_v9.0.0-alpha.37",
1820
+ "version": "9.0.0-alpha.37",
1821
+ "comments": {
1822
+ "prerelease": [
1823
+ {
1824
+ "comment": "chore: add more Babel plugins",
1825
+ "author": "olfedias@microsoft.com",
1826
+ "commit": "975140887c6ad2391f8db63003ed440239ec9c25",
1827
+ "package": "@fluentui/react-button"
1828
+ }
1829
+ ],
1830
+ "patch": [
1831
+ {
1832
+ "comment": "Bump @fluentui/react-conformance to v0.3.1",
1833
+ "author": "martinhochel@microsoft.com",
1834
+ "commit": "616b4b7c381c757871e8a590564d8eff7337834c",
1835
+ "package": "@fluentui/react-button"
1836
+ }
1837
+ ]
1838
+ }
1839
+ },
1840
+ {
1841
+ "date": "Tue, 18 May 2021 07:34:38 GMT",
1842
+ "tag": "@fluentui/react-button_v9.0.0-alpha.36",
1843
+ "version": "9.0.0-alpha.36",
1844
+ "comments": {
1845
+ "prerelease": [
1846
+ {
1847
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.8",
1848
+ "author": "olfedias@microsoft.com",
1849
+ "commit": "c845a5045c99d8d83b2584cee016b1701cd3de57",
1850
+ "package": "@fluentui/react-button"
1851
+ }
1852
+ ]
1853
+ }
1854
+ },
1855
+ {
1856
+ "date": "Thu, 13 May 2021 07:36:55 GMT",
1857
+ "tag": "@fluentui/react-button_v9.0.0-alpha.35",
1858
+ "version": "9.0.0-alpha.35",
1859
+ "comments": {
1860
+ "prerelease": [
1861
+ {
1862
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.7",
1863
+ "author": "olfedias@microsoft.com",
1864
+ "commit": "fb53fd67729d8236e0681d74322717f6974c8b72",
1865
+ "package": "@fluentui/react-button"
1866
+ }
1867
+ ]
1868
+ }
1869
+ },
1870
+ {
1871
+ "date": "Wed, 12 May 2021 07:36:20 GMT",
1872
+ "tag": "@fluentui/react-button_v9.0.0-alpha.34",
1873
+ "version": "9.0.0-alpha.34",
1874
+ "comments": {
1875
+ "prerelease": [
1876
+ {
1877
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.6",
1878
+ "author": "olfedias@microsoft.com",
1879
+ "commit": "894712616ee3271fcf06e5fb24ad01e326e30bb5",
1880
+ "package": "@fluentui/react-button"
1881
+ }
1882
+ ]
1883
+ }
1884
+ },
1885
+ {
1886
+ "date": "Mon, 10 May 2021 07:36:07 GMT",
1887
+ "tag": "@fluentui/react-button_v9.0.0-alpha.33",
1888
+ "version": "9.0.0-alpha.33",
1889
+ "comments": {
1890
+ "prerelease": [
1891
+ {
1892
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.5",
1893
+ "author": "olfedias@microsoft.com",
1894
+ "commit": "78c12235fcfebe43b7a77d36cbdfc67461ec32dc",
1895
+ "package": "@fluentui/react-button"
1896
+ }
1897
+ ]
1898
+ }
1899
+ },
1900
+ {
1901
+ "date": "Wed, 05 May 2021 07:36:50 GMT",
1902
+ "tag": "@fluentui/react-button_v9.0.0-alpha.32",
1903
+ "version": "9.0.0-alpha.32",
1904
+ "comments": {
1905
+ "prerelease": [
1906
+ {
1907
+ "comment": "transform styles with Babel plugin",
1908
+ "author": "olfedias@microsoft.com",
1909
+ "commit": "a48d8dfd969f944c44b8c902cc9d418c333d063d",
1910
+ "package": "@fluentui/react-button"
1911
+ }
1912
+ ]
1913
+ }
1914
+ },
1915
+ {
1916
+ "date": "Mon, 03 May 2021 07:45:19 GMT",
1917
+ "tag": "@fluentui/react-button_v9.0.0-alpha.31",
1918
+ "version": "9.0.0-alpha.31",
1919
+ "comments": {
1920
+ "prerelease": [
1921
+ {
1922
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.21",
1923
+ "author": "lingfan.gao@microsoft.com",
1924
+ "commit": "5e6aa4df0c03051e59d686d24b35f01c721a3b4e",
1925
+ "package": "@fluentui/react-button"
1926
+ }
1927
+ ]
1928
+ }
1929
+ },
1930
+ {
1931
+ "date": "Fri, 30 Apr 2021 07:42:23 GMT",
1932
+ "tag": "@fluentui/react-button_v9.0.0-alpha.30",
1933
+ "version": "9.0.0-alpha.30",
1934
+ "comments": {
1935
+ "prerelease": [
1936
+ {
1937
+ "comment": "Upgrade typescript to 4.1.5",
1938
+ "author": "joschect@microsoft.com",
1939
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1940
+ "package": "@fluentui/react-button"
1941
+ }
1942
+ ],
1943
+ "patch": [
1944
+ {
1945
+ "comment": "Bump @fluentui/eslint-plugin to v1.2.0",
1946
+ "author": "joschect@microsoft.com",
1947
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1948
+ "package": "@fluentui/react-button"
1949
+ },
1950
+ {
1951
+ "comment": "Bump @fluentui/a11y-testing to v0.1.0",
1952
+ "author": "joschect@microsoft.com",
1953
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1954
+ "package": "@fluentui/react-button"
1955
+ },
1956
+ {
1957
+ "comment": "Bump @fluentui/keyboard-key to v0.3.0",
1958
+ "author": "joschect@microsoft.com",
1959
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1960
+ "package": "@fluentui/react-button"
1961
+ },
1962
+ {
1963
+ "comment": "Bump @fluentui/react-conformance to v0.3.0",
1964
+ "author": "joschect@microsoft.com",
1965
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1966
+ "package": "@fluentui/react-button"
1967
+ },
1968
+ {
1969
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1970
+ "author": "joschect@microsoft.com",
1971
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
1972
+ "package": "@fluentui/react-button"
1973
+ }
1974
+ ]
1975
+ }
1976
+ },
1977
+ {
1978
+ "date": "Tue, 27 Apr 2021 07:34:03 GMT",
1979
+ "tag": "@fluentui/react-button_v9.0.0-alpha.29",
1980
+ "version": "9.0.0-alpha.29",
1981
+ "comments": {
1982
+ "prerelease": [
1983
+ {
1984
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5",
1985
+ "author": "bsunderhus@microsoft.com",
1986
+ "commit": "fdb1af09ba60238bb1c3913af6a6a6fe98f49034",
1987
+ "package": "@fluentui/react-button"
1988
+ }
1989
+ ]
1990
+ }
1991
+ },
1992
+ {
1993
+ "date": "Mon, 26 Apr 2021 07:34:31 GMT",
1994
+ "tag": "@fluentui/react-button_v9.0.0-alpha.28",
1995
+ "version": "9.0.0-alpha.28",
1996
+ "comments": {
1997
+ "prerelease": [
1998
+ {
1999
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4",
2000
+ "author": "bsunderhus@microsoft.com",
2001
+ "commit": "76e2027d772bc9d19d3d217c449c5965262f73c4",
2002
+ "package": "@fluentui/react-button"
2003
+ }
2004
+ ]
2005
+ }
2006
+ },
2007
+ {
2008
+ "date": "Fri, 23 Apr 2021 07:37:10 GMT",
2009
+ "tag": "@fluentui/react-button_v9.0.0-alpha.27",
2010
+ "version": "9.0.0-alpha.27",
2011
+ "comments": {
2012
+ "patch": [
2013
+ {
2014
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.1",
2015
+ "author": "olfedias@microsoft.com",
2016
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
2017
+ "package": "@fluentui/react-button"
2018
+ },
2019
+ {
2020
+ "comment": "Bump @fluentui/a11y-testing to v0.1.0",
2021
+ "author": "olfedias@microsoft.com",
2022
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
2023
+ "package": "@fluentui/react-button"
2024
+ },
2025
+ {
2026
+ "comment": "Bump @fluentui/keyboard-key to v0.2.17",
2027
+ "author": "olfedias@microsoft.com",
2028
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
2029
+ "package": "@fluentui/react-button"
2030
+ },
2031
+ {
2032
+ "comment": "Bump @fluentui/react-conformance to v0.2.6",
2033
+ "author": "olfedias@microsoft.com",
2034
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
2035
+ "package": "@fluentui/react-button"
2036
+ },
2037
+ {
2038
+ "comment": "Bump @fluentui/scripts to v1.0.0",
2039
+ "author": "olfedias@microsoft.com",
2040
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
2041
+ "package": "@fluentui/react-button"
2042
+ }
2043
+ ]
2044
+ }
2045
+ },
2046
+ {
2047
+ "date": "Thu, 22 Apr 2021 07:33:28 GMT",
2048
+ "tag": "@fluentui/react-button_v9.0.0-alpha.26",
2049
+ "version": "9.0.0-alpha.26",
2050
+ "comments": {
2051
+ "none": [
2052
+ {
2053
+ "comment": "Adds serializer to converged components",
2054
+ "author": "bsunderhus@microsoft.com",
2055
+ "commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add",
2056
+ "package": "@fluentui/react-button"
2057
+ }
2058
+ ],
2059
+ "prerelease": [
2060
+ {
2061
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2",
2062
+ "author": "bsunderhus@microsoft.com",
2063
+ "commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add",
2064
+ "package": "@fluentui/react-button"
2065
+ }
2066
+ ]
2067
+ }
2068
+ },
2069
+ {
2070
+ "date": "Wed, 21 Apr 2021 07:31:50 GMT",
2071
+ "tag": "@fluentui/react-button_v9.0.0-alpha.25",
2072
+ "version": "9.0.0-alpha.25",
2073
+ "comments": {
2074
+ "prerelease": [
2075
+ {
2076
+ "comment": "Rename ax() to mergeClasses()",
2077
+ "author": "miroslav.stastny@microsoft.com",
2078
+ "commit": "64da065944467537d8f23a97ef4c19c3d60a529b",
2079
+ "package": "@fluentui/react-button"
2080
+ }
2081
+ ],
2082
+ "none": [
2083
+ {
2084
+ "comment": "Bump @fluentui/react-conformance to v0.2.5",
2085
+ "author": "martinhochel@microsoft.com",
2086
+ "commit": "c12557d08ab5673ec3d3ba9747cfec64f39309eb",
2087
+ "package": "@fluentui/react-button"
2088
+ }
2089
+ ]
2090
+ }
2091
+ },
2092
+ {
2093
+ "date": "Tue, 20 Apr 2021 07:31:35 GMT",
2094
+ "tag": "@fluentui/react-button_v9.0.0-alpha.24",
2095
+ "version": "9.0.0-alpha.24",
2096
+ "comments": {
2097
+ "prerelease": [
2098
+ {
2099
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.23",
2100
+ "author": "lingfan.gao@microsoft.com",
2101
+ "commit": "c1e049dbcbf869f0a6e04d00f84dcfa7217eb808",
2102
+ "package": "@fluentui/react-button"
2103
+ }
2104
+ ]
2105
+ }
2106
+ },
2107
+ {
2108
+ "date": "Mon, 19 Apr 2021 07:33:33 GMT",
2109
+ "tag": "@fluentui/react-button_v9.0.0-alpha.23",
2110
+ "version": "9.0.0-alpha.23",
2111
+ "comments": {
2112
+ "none": [
2113
+ {
2114
+ "comment": "Remove unneeded react-app-polyfill devDependency",
2115
+ "author": "elcraig@microsoft.com",
2116
+ "commit": "fdc32557d49e5d70ea7e4af8957102d415b44547",
2117
+ "package": "@fluentui/react-button"
2118
+ }
2119
+ ]
2120
+ }
2121
+ },
2122
+ {
2123
+ "date": "Fri, 16 Apr 2021 18:08:21 GMT",
2124
+ "tag": "@fluentui/react-button_v9.0.0-alpha.23",
2125
+ "version": "9.0.0-alpha.23",
2126
+ "comments": {
2127
+ "prerelease": [
2128
+ {
2129
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.22",
2130
+ "author": "bsunderhus@microsoft.com",
2131
+ "commit": "e158c65f9712556cfcca1e80c7156889885c95b0",
2132
+ "package": "@fluentui/react-button"
2133
+ }
2134
+ ]
2135
+ }
2136
+ },
2137
+ {
2138
+ "date": "Wed, 14 Apr 2021 07:34:12 GMT",
2139
+ "tag": "@fluentui/react-button_v9.0.0-alpha.22",
2140
+ "version": "9.0.0-alpha.22",
2141
+ "comments": {
2142
+ "prerelease": [
2143
+ {
2144
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.21",
2145
+ "author": "bsunderhus@microsoft.com",
2146
+ "commit": "1b2e9185653032fed3dce7d3a919f8d6e95550c7",
2147
+ "package": "@fluentui/react-button"
2148
+ }
2149
+ ]
2150
+ }
2151
+ },
2152
+ {
2153
+ "date": "Fri, 09 Apr 2021 23:42:49 GMT",
2154
+ "tag": "@fluentui/react-button_v9.0.0-alpha.21",
2155
+ "version": "9.0.0-alpha.21",
2156
+ "comments": {
2157
+ "none": [
2158
+ {
2159
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.20",
2160
+ "author": "olfedias@microsoft.com",
2161
+ "commit": "3febbf40a59f1acb8e37516559fed1dd6f5b62fb",
2162
+ "package": "@fluentui/react-button"
2163
+ }
2164
+ ]
2165
+ }
2166
+ },
2167
+ {
2168
+ "date": "Fri, 09 Apr 2021 07:31:06 GMT",
2169
+ "tag": "@fluentui/react-button_v9.0.0-alpha.21",
2170
+ "version": "9.0.0-alpha.21",
2171
+ "comments": {
2172
+ "prerelease": [
2173
+ {
2174
+ "comment": "Button: Re-introducing transparent variant using latest version of makeStyles.",
2175
+ "author": "Humberto.Morimoto@microsoft.com",
2176
+ "commit": "76944f590eb63fa92eb835e0b771b6c529deb5c6",
2177
+ "package": "@fluentui/react-button"
2178
+ }
2179
+ ]
2180
+ }
2181
+ },
2182
+ {
2183
+ "date": "Thu, 08 Apr 2021 07:33:06 GMT",
2184
+ "tag": "@fluentui/react-button_v9.0.0-alpha.20",
2185
+ "version": "9.0.0-alpha.20",
2186
+ "comments": {
2187
+ "prerelease": [
2188
+ {
2189
+ "comment": "Button: Re-introducing subtle variant using latest version of makeStyles.",
2190
+ "author": "Humberto.Morimoto@microsoft.com",
2191
+ "commit": "25e841e469f1a7b33278f8a5dccd2f7865b3a557",
2192
+ "package": "@fluentui/react-button"
2193
+ }
2194
+ ]
2195
+ }
2196
+ },
2197
+ {
2198
+ "date": "Thu, 01 Apr 2021 20:13:37 GMT",
2199
+ "tag": "@fluentui/react-button_v9.0.0-alpha.19",
2200
+ "version": "9.0.0-alpha.19",
2201
+ "comments": {
2202
+ "prerelease": [
2203
+ {
2204
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.18",
2205
+ "author": "bsunderhus@microsoft.com",
2206
+ "commit": "dec60bc3ea87901ff8c2c52989301ae8f4229721",
2207
+ "package": "@fluentui/react-button"
2208
+ }
2209
+ ]
2210
+ }
2211
+ },
2212
+ {
2213
+ "date": "Wed, 31 Mar 2021 00:53:43 GMT",
2214
+ "tag": "@fluentui/react-button_v9.0.0-alpha.18",
2215
+ "version": "9.0.0-alpha.18",
2216
+ "comments": {
2217
+ "prerelease": [
2218
+ {
2219
+ "comment": "mergeProps was updated to improve type checking; use compat layer until type errors can be fixed",
2220
+ "author": "behowell@microsoft.com",
2221
+ "commit": "e45eeaba8deb93e825a9d3f72e87a9c4c9225ea1",
2222
+ "package": "@fluentui/react-button"
2223
+ }
2224
+ ],
2225
+ "patch": [
2226
+ {
2227
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.0",
2228
+ "author": "elcraig@microsoft.com",
2229
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
2230
+ "package": "@fluentui/react-button"
2231
+ },
2232
+ {
2233
+ "comment": "Bump @fluentui/a11y-testing to v0.1.0",
2234
+ "author": "elcraig@microsoft.com",
2235
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
2236
+ "package": "@fluentui/react-button"
2237
+ },
2238
+ {
2239
+ "comment": "Bump @fluentui/keyboard-key to v0.2.16",
2240
+ "author": "elcraig@microsoft.com",
2241
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
2242
+ "package": "@fluentui/react-button"
2243
+ },
2244
+ {
2245
+ "comment": "Bump @fluentui/react-conformance to v0.2.5",
2246
+ "author": "elcraig@microsoft.com",
2247
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
2248
+ "package": "@fluentui/react-button"
2249
+ },
2250
+ {
2251
+ "comment": "Bump @fluentui/scripts to v1.0.0",
2252
+ "author": "elcraig@microsoft.com",
2253
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
2254
+ "package": "@fluentui/react-button"
2255
+ }
2256
+ ]
2257
+ }
2258
+ },
2259
+ {
2260
+ "date": "Tue, 30 Mar 2021 07:34:45 GMT",
2261
+ "tag": "@fluentui/react-button_v9.0.0-alpha.17",
2262
+ "version": "9.0.0-alpha.17",
2263
+ "comments": {
2264
+ "prerelease": [
2265
+ {
2266
+ "comment": "chore: restore \"sideEffects\" to enable treeshaking",
2267
+ "author": "olfedias@microsoft.com",
2268
+ "commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3",
2269
+ "package": "@fluentui/react-button"
2270
+ }
2271
+ ],
2272
+ "patch": [
2273
+ {
2274
+ "comment": "Bump @fluentui/keyboard-key to v0.2.15",
2275
+ "author": "olfedias@microsoft.com",
2276
+ "commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3",
2277
+ "package": "@fluentui/react-button"
2278
+ }
2279
+ ]
2280
+ }
2281
+ },
2282
+ {
2283
+ "date": "Fri, 26 Mar 2021 07:32:34 GMT",
2284
+ "tag": "@fluentui/react-button_v9.0.0-alpha.16",
2285
+ "version": "9.0.0-alpha.16",
2286
+ "comments": {
2287
+ "prerelease": [
2288
+ {
2289
+ "comment": "ToggleButton: Re-introducing ToggleButton using the latest version of makeStyles.",
2290
+ "author": "Humberto.Morimoto@microsoft.com",
2291
+ "commit": "bf3f1e319baaf830102bb5dfa480dbb7b5539506",
2292
+ "package": "@fluentui/react-button"
2293
+ },
2294
+ {
2295
+ "comment": "Button: Beefing up accessibility tests and cleaning up state management.",
2296
+ "author": "Humberto.Morimoto@microsoft.com",
2297
+ "commit": "ce4d441da2c63284a2c1c519a59875c22cd3552f",
2298
+ "package": "@fluentui/react-button"
2299
+ }
2300
+ ]
2301
+ }
2302
+ },
2303
+ {
2304
+ "date": "Thu, 25 Mar 2021 07:33:24 GMT",
2305
+ "tag": "@fluentui/react-button_v9.0.0-alpha.15",
2306
+ "version": "9.0.0-alpha.15",
2307
+ "comments": {
2308
+ "prerelease": [
2309
+ {
2310
+ "comment": "Button: Adding SPEC.md and MIGRATION.md and updating README.md",
2311
+ "author": "Humberto.Morimoto@microsoft.com",
2312
+ "commit": "f9819c97079f87f98e064821e43abed8f2ef31e5",
2313
+ "package": "@fluentui/react-button"
2314
+ },
2315
+ {
2316
+ "comment": "CompoundButton: Re-introducing CompoundButton using latest version of makeStyles.",
2317
+ "author": "Humberto.Morimoto@microsoft.com",
2318
+ "commit": "28d34d2a88ba8db9a38aa7c9816f3be2dd44f998",
2319
+ "package": "@fluentui/react-button"
2320
+ }
2321
+ ]
2322
+ }
2323
+ },
2324
+ {
2325
+ "date": "Tue, 23 Mar 2021 07:31:43 GMT",
2326
+ "tag": "@fluentui/react-button_v9.0.0-alpha.14",
2327
+ "version": "9.0.0-alpha.14",
2328
+ "comments": {
2329
+ "prerelease": [
2330
+ {
2331
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.10",
2332
+ "author": "lingfan.gao@microsoft.com",
2333
+ "commit": "fc0d87258337229e59ec1c1fec87dc91193858f1",
2334
+ "package": "@fluentui/react-button"
2335
+ }
2336
+ ]
2337
+ }
2338
+ },
2339
+ {
2340
+ "date": "Mon, 22 Mar 2021 07:34:09 GMT",
2341
+ "tag": "@fluentui/react-button_v9.0.0-alpha.13",
2342
+ "version": "9.0.0-alpha.13",
2343
+ "comments": {
2344
+ "none": [
2345
+ {
2346
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.12",
2347
+ "author": "martinhochel@microsoft.com",
2348
+ "commit": "25c4ce7c54a2a65d3db4e5f2b13785468b669329",
2349
+ "package": "@fluentui/react-button"
2350
+ }
2351
+ ]
2352
+ }
2353
+ },
2354
+ {
2355
+ "date": "Thu, 18 Mar 2021 20:15:34 GMT",
2356
+ "tag": "@fluentui/react-button_v9.0.0-alpha.13",
2357
+ "version": "9.0.0-alpha.13",
2358
+ "comments": {
2359
+ "prerelease": [
2360
+ {
2361
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.9",
2362
+ "author": "lingfan.gao@microsoft.com",
2363
+ "commit": "165259181dd79866dc7ae5fa57c10a0f209d668f",
2364
+ "package": "@fluentui/react-button"
2365
+ }
2366
+ ]
2367
+ }
2368
+ },
2369
+ {
2370
+ "date": "Wed, 17 Mar 2021 07:35:44 GMT",
2371
+ "tag": "@fluentui/react-button_v9.0.0-alpha.12",
2372
+ "version": "9.0.0-alpha.12",
2373
+ "comments": {
2374
+ "prerelease": [
2375
+ {
2376
+ "comment": "Button: Updates styles from makeStylesCompat to makeStyles.",
2377
+ "author": "bsunderhus@microsoft.com",
2378
+ "commit": "8f38c18b9a52bef97c797d284b2d81b727d930ce",
2379
+ "package": "@fluentui/react-button"
2380
+ }
2381
+ ],
2382
+ "none": [
2383
+ {
2384
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.8",
2385
+ "author": "olfedias@microsoft.com",
2386
+ "commit": "51902da6d01f0e9a790ca686e32eb94b31ecf733",
2387
+ "package": "@fluentui/react-button"
2388
+ },
2389
+ {
2390
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.11",
2391
+ "author": "olfedias@microsoft.com",
2392
+ "commit": "51902da6d01f0e9a790ca686e32eb94b31ecf733",
2393
+ "package": "@fluentui/react-button"
2394
+ }
2395
+ ]
2396
+ }
2397
+ },
2398
+ {
2399
+ "date": "Tue, 16 Mar 2021 07:32:44 GMT",
2400
+ "tag": "@fluentui/react-button_v9.0.0-alpha.11",
2401
+ "version": "9.0.0-alpha.11",
2402
+ "comments": {
2403
+ "none": [
2404
+ {
2405
+ "comment": "Fix which packages depend on common-styles",
2406
+ "author": "elcraig@microsoft.com",
2407
+ "commit": "8c51f4b3b2ca22e4c166bbbd0e98d367c5ba33be",
2408
+ "package": "@fluentui/react-button"
2409
+ }
2410
+ ],
2411
+ "patch": [
2412
+ {
2413
+ "comment": "Bump @fluentui/react-conformance to v0.2.4",
2414
+ "author": "elcraig@microsoft.com",
2415
+ "commit": "8bbe3d16c5c00716dfcbafa6d693437b8d090da3",
2416
+ "package": "@fluentui/react-button"
2417
+ }
2418
+ ]
2419
+ }
2420
+ },
2421
+ {
2422
+ "date": "Mon, 15 Mar 2021 07:36:20 GMT",
6
2423
  "tag": "@fluentui/react-button_v9.0.0-alpha.10",
7
2424
  "version": "9.0.0-alpha.10",
8
2425
  "comments": {