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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (554) hide show
  1. package/CHANGELOG.json +5046 -0
  2. package/CHANGELOG.md +1569 -0
  3. package/LICENSE +15 -0
  4. package/README.md +5 -0
  5. package/Spec.md +1039 -0
  6. package/dist/react-menu.d.ts +662 -0
  7. package/lib/Menu.d.ts +1 -0
  8. package/lib/Menu.js +2 -0
  9. package/lib/Menu.js.map +1 -0
  10. package/lib/MenuDivider.d.ts +1 -0
  11. package/lib/MenuDivider.js +2 -0
  12. package/lib/MenuDivider.js.map +1 -0
  13. package/lib/MenuGroup.d.ts +1 -0
  14. package/lib/MenuGroup.js +2 -0
  15. package/lib/MenuGroup.js.map +1 -0
  16. package/lib/MenuGroupHeader.d.ts +1 -0
  17. package/lib/MenuGroupHeader.js +2 -0
  18. package/lib/MenuGroupHeader.js.map +1 -0
  19. package/lib/MenuItem.d.ts +1 -0
  20. package/lib/MenuItem.js +2 -0
  21. package/lib/MenuItem.js.map +1 -0
  22. package/lib/MenuItemCheckbox.d.ts +1 -0
  23. package/lib/MenuItemCheckbox.js +2 -0
  24. package/lib/MenuItemCheckbox.js.map +1 -0
  25. package/lib/MenuItemRadio.d.ts +1 -0
  26. package/lib/MenuItemRadio.js +2 -0
  27. package/lib/MenuItemRadio.js.map +1 -0
  28. package/lib/MenuList.d.ts +1 -0
  29. package/lib/MenuList.js +2 -0
  30. package/lib/MenuList.js.map +1 -0
  31. package/lib/MenuPopover.d.ts +1 -0
  32. package/lib/MenuPopover.js +2 -0
  33. package/lib/MenuPopover.js.map +1 -0
  34. package/lib/MenuSplitGroup.d.ts +1 -0
  35. package/lib/MenuSplitGroup.js +2 -0
  36. package/lib/MenuSplitGroup.js.map +1 -0
  37. package/lib/MenuTrigger.d.ts +1 -0
  38. package/lib/MenuTrigger.js +2 -0
  39. package/lib/MenuTrigger.js.map +1 -0
  40. package/lib/components/Menu/Menu.d.ts +6 -0
  41. package/lib/components/Menu/Menu.js +14 -0
  42. package/lib/components/Menu/Menu.js.map +1 -0
  43. package/lib/components/Menu/Menu.types.d.ts +113 -0
  44. package/lib/components/Menu/Menu.types.js +2 -0
  45. package/lib/components/Menu/Menu.types.js.map +1 -0
  46. package/lib/components/Menu/index.d.ts +5 -0
  47. package/lib/components/Menu/index.js +6 -0
  48. package/lib/components/Menu/index.js.map +1 -0
  49. package/lib/components/Menu/renderMenu.d.ts +5 -0
  50. package/lib/components/Menu/renderMenu.js +12 -0
  51. package/lib/components/Menu/renderMenu.js.map +1 -0
  52. package/lib/components/Menu/useMenu.d.ts +10 -0
  53. package/lib/components/Menu/useMenu.js +260 -0
  54. package/lib/components/Menu/useMenu.js.map +1 -0
  55. package/lib/components/Menu/useMenuContextValues.d.ts +2 -0
  56. package/lib/components/Menu/useMenuContextValues.js +41 -0
  57. package/lib/components/Menu/useMenuContextValues.js.map +1 -0
  58. package/lib/components/MenuDivider/MenuDivider.d.ts +6 -0
  59. package/lib/components/MenuDivider/MenuDivider.js +15 -0
  60. package/lib/components/MenuDivider/MenuDivider.js.map +1 -0
  61. package/lib/components/MenuDivider/MenuDivider.types.d.ts +6 -0
  62. package/lib/components/MenuDivider/MenuDivider.types.js +2 -0
  63. package/lib/components/MenuDivider/MenuDivider.types.js.map +1 -0
  64. package/lib/components/MenuDivider/index.d.ts +5 -0
  65. package/lib/components/MenuDivider/index.js +6 -0
  66. package/lib/components/MenuDivider/index.js.map +1 -0
  67. package/lib/components/MenuDivider/renderMenuDivider.d.ts +6 -0
  68. package/lib/components/MenuDivider/renderMenuDivider.js +16 -0
  69. package/lib/components/MenuDivider/renderMenuDivider.js.map +1 -0
  70. package/lib/components/MenuDivider/useMenuDivider.d.ts +6 -0
  71. package/lib/components/MenuDivider/useMenuDivider.js +19 -0
  72. package/lib/components/MenuDivider/useMenuDivider.js.map +1 -0
  73. package/lib/components/MenuDivider/useMenuDividerStyles.d.ts +3 -0
  74. package/lib/components/MenuDivider/useMenuDividerStyles.js +24 -0
  75. package/lib/components/MenuDivider/useMenuDividerStyles.js.map +1 -0
  76. package/lib/components/MenuGroup/MenuGroup.d.ts +6 -0
  77. package/lib/components/MenuGroup/MenuGroup.js +17 -0
  78. package/lib/components/MenuGroup/MenuGroup.js.map +1 -0
  79. package/lib/components/MenuGroup/MenuGroup.types.d.ts +15 -0
  80. package/lib/components/MenuGroup/MenuGroup.types.js +2 -0
  81. package/lib/components/MenuGroup/MenuGroup.types.js.map +1 -0
  82. package/lib/components/MenuGroup/index.d.ts +6 -0
  83. package/lib/components/MenuGroup/index.js +7 -0
  84. package/lib/components/MenuGroup/index.js.map +1 -0
  85. package/lib/components/MenuGroup/renderMenuGroup.d.ts +6 -0
  86. package/lib/components/MenuGroup/renderMenuGroup.js +19 -0
  87. package/lib/components/MenuGroup/renderMenuGroup.js.map +1 -0
  88. package/lib/components/MenuGroup/useMenuGroup.d.ts +6 -0
  89. package/lib/components/MenuGroup/useMenuGroup.js +21 -0
  90. package/lib/components/MenuGroup/useMenuGroup.js.map +1 -0
  91. package/lib/components/MenuGroup/useMenuGroupContextValues.d.ts +2 -0
  92. package/lib/components/MenuGroup/useMenuGroupContextValues.js +13 -0
  93. package/lib/components/MenuGroup/useMenuGroupContextValues.js.map +1 -0
  94. package/lib/components/MenuGroup/useMenuGroupStyles.d.ts +3 -0
  95. package/lib/components/MenuGroup/useMenuGroupStyles.js +7 -0
  96. package/lib/components/MenuGroup/useMenuGroupStyles.js.map +1 -0
  97. package/lib/components/MenuGroupHeader/MenuGroupHeader.d.ts +6 -0
  98. package/lib/components/MenuGroupHeader/MenuGroupHeader.js +15 -0
  99. package/lib/components/MenuGroupHeader/MenuGroupHeader.js.map +1 -0
  100. package/lib/components/MenuGroupHeader/MenuGroupHeader.types.d.ts +6 -0
  101. package/lib/components/MenuGroupHeader/MenuGroupHeader.types.js +2 -0
  102. package/lib/components/MenuGroupHeader/MenuGroupHeader.types.js.map +1 -0
  103. package/lib/components/MenuGroupHeader/index.d.ts +5 -0
  104. package/lib/components/MenuGroupHeader/index.js +6 -0
  105. package/lib/components/MenuGroupHeader/index.js.map +1 -0
  106. package/lib/components/MenuGroupHeader/renderMenuGroupHeader.d.ts +6 -0
  107. package/lib/components/MenuGroupHeader/renderMenuGroupHeader.js +16 -0
  108. package/lib/components/MenuGroupHeader/renderMenuGroupHeader.js.map +1 -0
  109. package/lib/components/MenuGroupHeader/useMenuGroupHeader.d.ts +6 -0
  110. package/lib/components/MenuGroupHeader/useMenuGroupHeader.js +22 -0
  111. package/lib/components/MenuGroupHeader/useMenuGroupHeader.js.map +1 -0
  112. package/lib/components/MenuGroupHeader/useMenuGroupHeaderStyles.d.ts +3 -0
  113. package/lib/components/MenuGroupHeader/useMenuGroupHeaderStyles.js +25 -0
  114. package/lib/components/MenuGroupHeader/useMenuGroupHeaderStyles.js.map +1 -0
  115. package/lib/components/MenuItem/MenuItem.d.ts +6 -0
  116. package/lib/components/MenuItem/MenuItem.js +15 -0
  117. package/lib/components/MenuItem/MenuItem.js.map +1 -0
  118. package/lib/components/MenuItem/MenuItem.types.d.ts +43 -0
  119. package/lib/components/MenuItem/MenuItem.types.js +2 -0
  120. package/lib/components/MenuItem/MenuItem.types.js.map +1 -0
  121. package/lib/components/MenuItem/index.d.ts +5 -0
  122. package/lib/components/MenuItem/index.js +6 -0
  123. package/lib/components/MenuItem/index.js.map +1 -0
  124. package/lib/components/MenuItem/renderMenuItem.d.ts +5 -0
  125. package/lib/components/MenuItem/renderMenuItem.js +20 -0
  126. package/lib/components/MenuItem/renderMenuItem.js.map +1 -0
  127. package/lib/components/MenuItem/useCharacterSearch.d.ts +3 -0
  128. package/lib/components/MenuItem/useCharacterSearch.js +26 -0
  129. package/lib/components/MenuItem/useCharacterSearch.js.map +1 -0
  130. package/lib/components/MenuItem/useMenuItem.d.ts +6 -0
  131. package/lib/components/MenuItem/useMenuItem.js +125 -0
  132. package/lib/components/MenuItem/useMenuItem.js.map +1 -0
  133. package/lib/components/MenuItem/useMenuItemStyles.d.ts +4 -0
  134. package/lib/components/MenuItem/useMenuItemStyles.js +107 -0
  135. package/lib/components/MenuItem/useMenuItemStyles.js.map +1 -0
  136. package/lib/components/MenuItemCheckbox/MenuItemCheckbox.d.ts +6 -0
  137. package/lib/components/MenuItemCheckbox/MenuItemCheckbox.js +15 -0
  138. package/lib/components/MenuItemCheckbox/MenuItemCheckbox.js.map +1 -0
  139. package/lib/components/MenuItemCheckbox/MenuItemCheckbox.types.d.ts +4 -0
  140. package/lib/components/MenuItemCheckbox/MenuItemCheckbox.types.js +2 -0
  141. package/lib/components/MenuItemCheckbox/MenuItemCheckbox.types.js.map +1 -0
  142. package/lib/components/MenuItemCheckbox/index.d.ts +5 -0
  143. package/lib/components/MenuItemCheckbox/index.js +6 -0
  144. package/lib/components/MenuItemCheckbox/index.js.map +1 -0
  145. package/lib/components/MenuItemCheckbox/renderMenuItemCheckbox.d.ts +3 -0
  146. package/lib/components/MenuItemCheckbox/renderMenuItemCheckbox.js +17 -0
  147. package/lib/components/MenuItemCheckbox/renderMenuItemCheckbox.js.map +1 -0
  148. package/lib/components/MenuItemCheckbox/useMenuItemCheckbox.d.ts +4 -0
  149. package/lib/components/MenuItemCheckbox/useMenuItemCheckbox.js +46 -0
  150. package/lib/components/MenuItemCheckbox/useMenuItemCheckbox.js.map +1 -0
  151. package/lib/components/MenuItemCheckbox/useMenuItemCheckboxStyles.d.ts +3 -0
  152. package/lib/components/MenuItemCheckbox/useMenuItemCheckboxStyles.js +10 -0
  153. package/lib/components/MenuItemCheckbox/useMenuItemCheckboxStyles.js.map +1 -0
  154. package/lib/components/MenuItemRadio/MenuItemRadio.d.ts +6 -0
  155. package/lib/components/MenuItemRadio/MenuItemRadio.js +15 -0
  156. package/lib/components/MenuItemRadio/MenuItemRadio.js.map +1 -0
  157. package/lib/components/MenuItemRadio/MenuItemRadio.types.d.ts +4 -0
  158. package/lib/components/MenuItemRadio/MenuItemRadio.types.js +2 -0
  159. package/lib/components/MenuItemRadio/MenuItemRadio.types.js.map +1 -0
  160. package/lib/components/MenuItemRadio/index.d.ts +5 -0
  161. package/lib/components/MenuItemRadio/index.js +6 -0
  162. package/lib/components/MenuItemRadio/index.js.map +1 -0
  163. package/lib/components/MenuItemRadio/renderMenuItemRadio.d.ts +6 -0
  164. package/lib/components/MenuItemRadio/renderMenuItemRadio.js +20 -0
  165. package/lib/components/MenuItemRadio/renderMenuItemRadio.js.map +1 -0
  166. package/lib/components/MenuItemRadio/useMenuItemRadio.d.ts +6 -0
  167. package/lib/components/MenuItemRadio/useMenuItemRadio.js +49 -0
  168. package/lib/components/MenuItemRadio/useMenuItemRadio.js.map +1 -0
  169. package/lib/components/MenuItemRadio/useMenuItemRadioStyles.d.ts +3 -0
  170. package/lib/components/MenuItemRadio/useMenuItemRadioStyles.js +10 -0
  171. package/lib/components/MenuItemRadio/useMenuItemRadioStyles.js.map +1 -0
  172. package/lib/components/MenuList/MenuList.d.ts +6 -0
  173. package/lib/components/MenuList/MenuList.js +17 -0
  174. package/lib/components/MenuList/MenuList.js.map +1 -0
  175. package/lib/components/MenuList/MenuList.types.d.ts +55 -0
  176. package/lib/components/MenuList/MenuList.types.js +2 -0
  177. package/lib/components/MenuList/MenuList.types.js.map +1 -0
  178. package/lib/components/MenuList/index.d.ts +6 -0
  179. package/lib/components/MenuList/index.js +6 -0
  180. package/lib/components/MenuList/index.js.map +1 -0
  181. package/lib/components/MenuList/renderMenuList.d.ts +5 -0
  182. package/lib/components/MenuList/renderMenuList.js +18 -0
  183. package/lib/components/MenuList/renderMenuList.js.map +1 -0
  184. package/lib/components/MenuList/useMenuList.d.ts +6 -0
  185. package/lib/components/MenuList/useMenuList.js +168 -0
  186. package/lib/components/MenuList/useMenuList.js.map +1 -0
  187. package/lib/components/MenuList/useMenuListContextValues.d.ts +2 -0
  188. package/lib/components/MenuList/useMenuListContextValues.js +25 -0
  189. package/lib/components/MenuList/useMenuListContextValues.js.map +1 -0
  190. package/lib/components/MenuList/useMenuListStyles.d.ts +6 -0
  191. package/lib/components/MenuList/useMenuListStyles.js +24 -0
  192. package/lib/components/MenuList/useMenuListStyles.js.map +1 -0
  193. package/lib/components/MenuPopover/MenuPopover.d.ts +6 -0
  194. package/lib/components/MenuPopover/MenuPopover.js +15 -0
  195. package/lib/components/MenuPopover/MenuPopover.js.map +1 -0
  196. package/lib/components/MenuPopover/MenuPopover.types.d.ts +18 -0
  197. package/lib/components/MenuPopover/MenuPopover.types.js +2 -0
  198. package/lib/components/MenuPopover/MenuPopover.types.js.map +1 -0
  199. package/lib/components/MenuPopover/index.d.ts +5 -0
  200. package/lib/components/MenuPopover/index.js +6 -0
  201. package/lib/components/MenuPopover/index.js.map +1 -0
  202. package/lib/components/MenuPopover/renderMenuPopover.d.ts +5 -0
  203. package/lib/components/MenuPopover/renderMenuPopover.js +22 -0
  204. package/lib/components/MenuPopover/renderMenuPopover.js.map +1 -0
  205. package/lib/components/MenuPopover/useMenuPopover.d.ts +12 -0
  206. package/lib/components/MenuPopover/useMenuPopover.js +104 -0
  207. package/lib/components/MenuPopover/useMenuPopover.js.map +1 -0
  208. package/lib/components/MenuPopover/useMenuPopoverStyles.d.ts +6 -0
  209. package/lib/components/MenuPopover/useMenuPopoverStyles.js +46 -0
  210. package/lib/components/MenuPopover/useMenuPopoverStyles.js.map +1 -0
  211. package/lib/components/MenuSplitGroup/MenuSplitGroup.d.ts +6 -0
  212. package/lib/components/MenuSplitGroup/MenuSplitGroup.js +15 -0
  213. package/lib/components/MenuSplitGroup/MenuSplitGroup.js.map +1 -0
  214. package/lib/components/MenuSplitGroup/MenuSplitGroup.types.d.ts +14 -0
  215. package/lib/components/MenuSplitGroup/MenuSplitGroup.types.js +2 -0
  216. package/lib/components/MenuSplitGroup/MenuSplitGroup.types.js.map +1 -0
  217. package/lib/components/MenuSplitGroup/index.d.ts +5 -0
  218. package/lib/components/MenuSplitGroup/index.js +6 -0
  219. package/lib/components/MenuSplitGroup/index.js.map +1 -0
  220. package/lib/components/MenuSplitGroup/renderMenuSplitGroup.d.ts +5 -0
  221. package/lib/components/MenuSplitGroup/renderMenuSplitGroup.js +15 -0
  222. package/lib/components/MenuSplitGroup/renderMenuSplitGroup.js.map +1 -0
  223. package/lib/components/MenuSplitGroup/useMenuSplitGroup.d.ts +12 -0
  224. package/lib/components/MenuSplitGroup/useMenuSplitGroup.js +67 -0
  225. package/lib/components/MenuSplitGroup/useMenuSplitGroup.js.map +1 -0
  226. package/lib/components/MenuSplitGroup/useMenuSplitGroupStyles.d.ts +6 -0
  227. package/lib/components/MenuSplitGroup/useMenuSplitGroupStyles.js +35 -0
  228. package/lib/components/MenuSplitGroup/useMenuSplitGroupStyles.js.map +1 -0
  229. package/lib/components/MenuTrigger/MenuTrigger.d.ts +8 -0
  230. package/lib/components/MenuTrigger/MenuTrigger.js +14 -0
  231. package/lib/components/MenuTrigger/MenuTrigger.js.map +1 -0
  232. package/lib/components/MenuTrigger/MenuTrigger.types.d.ts +20 -0
  233. package/lib/components/MenuTrigger/MenuTrigger.types.js +2 -0
  234. package/lib/components/MenuTrigger/MenuTrigger.types.js.map +1 -0
  235. package/lib/components/MenuTrigger/index.d.ts +4 -0
  236. package/lib/components/MenuTrigger/index.js +5 -0
  237. package/lib/components/MenuTrigger/index.js.map +1 -0
  238. package/lib/components/MenuTrigger/renderMenuTrigger.d.ts +7 -0
  239. package/lib/components/MenuTrigger/renderMenuTrigger.js +14 -0
  240. package/lib/components/MenuTrigger/renderMenuTrigger.js.map +1 -0
  241. package/lib/components/MenuTrigger/useMenuTrigger.d.ts +8 -0
  242. package/lib/components/MenuTrigger/useMenuTrigger.js +178 -0
  243. package/lib/components/MenuTrigger/useMenuTrigger.js.map +1 -0
  244. package/lib/components/index.d.ts +2 -0
  245. package/lib/components/index.js +3 -0
  246. package/lib/components/index.js.map +1 -0
  247. package/lib/contexts/menuContext.d.ts +16 -0
  248. package/lib/contexts/menuContext.js +23 -0
  249. package/lib/contexts/menuContext.js.map +1 -0
  250. package/lib/contexts/menuGroupContext.d.ts +13 -0
  251. package/lib/contexts/menuGroupContext.js +7 -0
  252. package/lib/contexts/menuGroupContext.js.map +1 -0
  253. package/lib/contexts/menuListContext.d.ts +15 -0
  254. package/lib/contexts/menuListContext.js +13 -0
  255. package/lib/contexts/menuListContext.js.map +1 -0
  256. package/lib/contexts/menuTriggerContext.d.ts +3 -0
  257. package/lib/contexts/menuTriggerContext.js +9 -0
  258. package/lib/contexts/menuTriggerContext.js.map +1 -0
  259. package/lib/index.d.ts +16 -0
  260. package/lib/index.js +17 -0
  261. package/lib/index.js.map +1 -0
  262. package/lib/selectable/index.d.ts +2 -0
  263. package/lib/selectable/index.js +3 -0
  264. package/lib/selectable/index.js.map +1 -0
  265. package/lib/selectable/types.d.ts +34 -0
  266. package/lib/selectable/types.js +2 -0
  267. package/lib/selectable/types.js.map +1 -0
  268. package/lib/selectable/useCheckmarkStyles.d.ts +8 -0
  269. package/lib/selectable/useCheckmarkStyles.js +29 -0
  270. package/lib/selectable/useCheckmarkStyles.js.map +1 -0
  271. package/lib/tsdoc-metadata.json +11 -0
  272. package/lib/utils/index.d.ts +1 -0
  273. package/lib/utils/index.js +2 -0
  274. package/lib/utils/index.js.map +1 -0
  275. package/lib/utils/useIsSubmenu.d.ts +9 -0
  276. package/lib/utils/useIsSubmenu.js +18 -0
  277. package/lib/utils/useIsSubmenu.js.map +1 -0
  278. package/lib/utils/useOnMenuEnter.d.ts +23 -0
  279. package/lib/utils/useOnMenuEnter.js +72 -0
  280. package/lib/utils/useOnMenuEnter.js.map +1 -0
  281. package/lib-commonjs/Menu.d.ts +1 -0
  282. package/lib-commonjs/Menu.js +10 -0
  283. package/lib-commonjs/Menu.js.map +1 -0
  284. package/lib-commonjs/MenuDivider.d.ts +1 -0
  285. package/lib-commonjs/MenuDivider.js +10 -0
  286. package/lib-commonjs/MenuDivider.js.map +1 -0
  287. package/lib-commonjs/MenuGroup.d.ts +1 -0
  288. package/lib-commonjs/MenuGroup.js +10 -0
  289. package/lib-commonjs/MenuGroup.js.map +1 -0
  290. package/lib-commonjs/MenuGroupHeader.d.ts +1 -0
  291. package/lib-commonjs/MenuGroupHeader.js +10 -0
  292. package/lib-commonjs/MenuGroupHeader.js.map +1 -0
  293. package/lib-commonjs/MenuItem.d.ts +1 -0
  294. package/lib-commonjs/MenuItem.js +10 -0
  295. package/lib-commonjs/MenuItem.js.map +1 -0
  296. package/lib-commonjs/MenuItemCheckbox.d.ts +1 -0
  297. package/lib-commonjs/MenuItemCheckbox.js +10 -0
  298. package/lib-commonjs/MenuItemCheckbox.js.map +1 -0
  299. package/lib-commonjs/MenuItemRadio.d.ts +1 -0
  300. package/lib-commonjs/MenuItemRadio.js +10 -0
  301. package/lib-commonjs/MenuItemRadio.js.map +1 -0
  302. package/lib-commonjs/MenuList.d.ts +1 -0
  303. package/lib-commonjs/MenuList.js +10 -0
  304. package/lib-commonjs/MenuList.js.map +1 -0
  305. package/lib-commonjs/MenuPopover.d.ts +1 -0
  306. package/lib-commonjs/MenuPopover.js +10 -0
  307. package/lib-commonjs/MenuPopover.js.map +1 -0
  308. package/lib-commonjs/MenuSplitGroup.d.ts +1 -0
  309. package/lib-commonjs/MenuSplitGroup.js +10 -0
  310. package/lib-commonjs/MenuSplitGroup.js.map +1 -0
  311. package/lib-commonjs/MenuTrigger.d.ts +1 -0
  312. package/lib-commonjs/MenuTrigger.js +10 -0
  313. package/lib-commonjs/MenuTrigger.js.map +1 -0
  314. package/lib-commonjs/components/Menu/Menu.d.ts +6 -0
  315. package/lib-commonjs/components/Menu/Menu.js +26 -0
  316. package/lib-commonjs/components/Menu/Menu.js.map +1 -0
  317. package/lib-commonjs/components/Menu/Menu.types.d.ts +113 -0
  318. package/lib-commonjs/components/Menu/Menu.types.js +6 -0
  319. package/lib-commonjs/components/Menu/Menu.types.js.map +1 -0
  320. package/lib-commonjs/components/Menu/index.d.ts +5 -0
  321. package/lib-commonjs/components/Menu/index.js +18 -0
  322. package/lib-commonjs/components/Menu/index.js.map +1 -0
  323. package/lib-commonjs/components/Menu/renderMenu.d.ts +5 -0
  324. package/lib-commonjs/components/Menu/renderMenu.js +23 -0
  325. package/lib-commonjs/components/Menu/renderMenu.js.map +1 -0
  326. package/lib-commonjs/components/Menu/useMenu.d.ts +10 -0
  327. package/lib-commonjs/components/Menu/useMenu.js +278 -0
  328. package/lib-commonjs/components/Menu/useMenu.js.map +1 -0
  329. package/lib-commonjs/components/Menu/useMenuContextValues.d.ts +2 -0
  330. package/lib-commonjs/components/Menu/useMenuContextValues.js +50 -0
  331. package/lib-commonjs/components/Menu/useMenuContextValues.js.map +1 -0
  332. package/lib-commonjs/components/MenuDivider/MenuDivider.d.ts +6 -0
  333. package/lib-commonjs/components/MenuDivider/MenuDivider.js +26 -0
  334. package/lib-commonjs/components/MenuDivider/MenuDivider.js.map +1 -0
  335. package/lib-commonjs/components/MenuDivider/MenuDivider.types.d.ts +6 -0
  336. package/lib-commonjs/components/MenuDivider/MenuDivider.types.js +6 -0
  337. package/lib-commonjs/components/MenuDivider/MenuDivider.types.js.map +1 -0
  338. package/lib-commonjs/components/MenuDivider/index.d.ts +5 -0
  339. package/lib-commonjs/components/MenuDivider/index.js +18 -0
  340. package/lib-commonjs/components/MenuDivider/index.js.map +1 -0
  341. package/lib-commonjs/components/MenuDivider/renderMenuDivider.d.ts +6 -0
  342. package/lib-commonjs/components/MenuDivider/renderMenuDivider.js +27 -0
  343. package/lib-commonjs/components/MenuDivider/renderMenuDivider.js.map +1 -0
  344. package/lib-commonjs/components/MenuDivider/useMenuDivider.d.ts +6 -0
  345. package/lib-commonjs/components/MenuDivider/useMenuDivider.js +29 -0
  346. package/lib-commonjs/components/MenuDivider/useMenuDivider.js.map +1 -0
  347. package/lib-commonjs/components/MenuDivider/useMenuDividerStyles.d.ts +3 -0
  348. package/lib-commonjs/components/MenuDivider/useMenuDividerStyles.js +35 -0
  349. package/lib-commonjs/components/MenuDivider/useMenuDividerStyles.js.map +1 -0
  350. package/lib-commonjs/components/MenuGroup/MenuGroup.d.ts +6 -0
  351. package/lib-commonjs/components/MenuGroup/MenuGroup.js +29 -0
  352. package/lib-commonjs/components/MenuGroup/MenuGroup.js.map +1 -0
  353. package/lib-commonjs/components/MenuGroup/MenuGroup.types.d.ts +15 -0
  354. package/lib-commonjs/components/MenuGroup/MenuGroup.types.js +6 -0
  355. package/lib-commonjs/components/MenuGroup/MenuGroup.types.js.map +1 -0
  356. package/lib-commonjs/components/MenuGroup/index.d.ts +6 -0
  357. package/lib-commonjs/components/MenuGroup/index.js +20 -0
  358. package/lib-commonjs/components/MenuGroup/index.js.map +1 -0
  359. package/lib-commonjs/components/MenuGroup/renderMenuGroup.d.ts +6 -0
  360. package/lib-commonjs/components/MenuGroup/renderMenuGroup.js +31 -0
  361. package/lib-commonjs/components/MenuGroup/renderMenuGroup.js.map +1 -0
  362. package/lib-commonjs/components/MenuGroup/useMenuGroup.d.ts +6 -0
  363. package/lib-commonjs/components/MenuGroup/useMenuGroup.js +31 -0
  364. package/lib-commonjs/components/MenuGroup/useMenuGroup.js.map +1 -0
  365. package/lib-commonjs/components/MenuGroup/useMenuGroupContextValues.d.ts +2 -0
  366. package/lib-commonjs/components/MenuGroup/useMenuGroupContextValues.js +23 -0
  367. package/lib-commonjs/components/MenuGroup/useMenuGroupContextValues.js.map +1 -0
  368. package/lib-commonjs/components/MenuGroup/useMenuGroupStyles.d.ts +3 -0
  369. package/lib-commonjs/components/MenuGroup/useMenuGroupStyles.js +18 -0
  370. package/lib-commonjs/components/MenuGroup/useMenuGroupStyles.js.map +1 -0
  371. package/lib-commonjs/components/MenuGroupHeader/MenuGroupHeader.d.ts +6 -0
  372. package/lib-commonjs/components/MenuGroupHeader/MenuGroupHeader.js +26 -0
  373. package/lib-commonjs/components/MenuGroupHeader/MenuGroupHeader.js.map +1 -0
  374. package/lib-commonjs/components/MenuGroupHeader/MenuGroupHeader.types.d.ts +6 -0
  375. package/lib-commonjs/components/MenuGroupHeader/MenuGroupHeader.types.js +6 -0
  376. package/lib-commonjs/components/MenuGroupHeader/MenuGroupHeader.types.js.map +1 -0
  377. package/lib-commonjs/components/MenuGroupHeader/index.d.ts +5 -0
  378. package/lib-commonjs/components/MenuGroupHeader/index.js +18 -0
  379. package/lib-commonjs/components/MenuGroupHeader/index.js.map +1 -0
  380. package/lib-commonjs/components/MenuGroupHeader/renderMenuGroupHeader.d.ts +6 -0
  381. package/lib-commonjs/components/MenuGroupHeader/renderMenuGroupHeader.js +27 -0
  382. package/lib-commonjs/components/MenuGroupHeader/renderMenuGroupHeader.js.map +1 -0
  383. package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeader.d.ts +6 -0
  384. package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeader.js +33 -0
  385. package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeader.js.map +1 -0
  386. package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeaderStyles.d.ts +3 -0
  387. package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeaderStyles.js +36 -0
  388. package/lib-commonjs/components/MenuGroupHeader/useMenuGroupHeaderStyles.js.map +1 -0
  389. package/lib-commonjs/components/MenuItem/MenuItem.d.ts +6 -0
  390. package/lib-commonjs/components/MenuItem/MenuItem.js +26 -0
  391. package/lib-commonjs/components/MenuItem/MenuItem.js.map +1 -0
  392. package/lib-commonjs/components/MenuItem/MenuItem.types.d.ts +43 -0
  393. package/lib-commonjs/components/MenuItem/MenuItem.types.js +6 -0
  394. package/lib-commonjs/components/MenuItem/MenuItem.types.js.map +1 -0
  395. package/lib-commonjs/components/MenuItem/index.d.ts +5 -0
  396. package/lib-commonjs/components/MenuItem/index.js +18 -0
  397. package/lib-commonjs/components/MenuItem/index.js.map +1 -0
  398. package/lib-commonjs/components/MenuItem/renderMenuItem.d.ts +5 -0
  399. package/lib-commonjs/components/MenuItem/renderMenuItem.js +31 -0
  400. package/lib-commonjs/components/MenuItem/renderMenuItem.js.map +1 -0
  401. package/lib-commonjs/components/MenuItem/useCharacterSearch.d.ts +3 -0
  402. package/lib-commonjs/components/MenuItem/useCharacterSearch.js +36 -0
  403. package/lib-commonjs/components/MenuItem/useCharacterSearch.js.map +1 -0
  404. package/lib-commonjs/components/MenuItem/useMenuItem.d.ts +6 -0
  405. package/lib-commonjs/components/MenuItem/useMenuItem.js +142 -0
  406. package/lib-commonjs/components/MenuItem/useMenuItem.js.map +1 -0
  407. package/lib-commonjs/components/MenuItem/useMenuItemStyles.d.ts +4 -0
  408. package/lib-commonjs/components/MenuItem/useMenuItemStyles.js +120 -0
  409. package/lib-commonjs/components/MenuItem/useMenuItemStyles.js.map +1 -0
  410. package/lib-commonjs/components/MenuItemCheckbox/MenuItemCheckbox.d.ts +6 -0
  411. package/lib-commonjs/components/MenuItemCheckbox/MenuItemCheckbox.js +26 -0
  412. package/lib-commonjs/components/MenuItemCheckbox/MenuItemCheckbox.js.map +1 -0
  413. package/lib-commonjs/components/MenuItemCheckbox/MenuItemCheckbox.types.d.ts +4 -0
  414. package/lib-commonjs/components/MenuItemCheckbox/MenuItemCheckbox.types.js +6 -0
  415. package/lib-commonjs/components/MenuItemCheckbox/MenuItemCheckbox.types.js.map +1 -0
  416. package/lib-commonjs/components/MenuItemCheckbox/index.d.ts +5 -0
  417. package/lib-commonjs/components/MenuItemCheckbox/index.js +18 -0
  418. package/lib-commonjs/components/MenuItemCheckbox/index.js.map +1 -0
  419. package/lib-commonjs/components/MenuItemCheckbox/renderMenuItemCheckbox.d.ts +3 -0
  420. package/lib-commonjs/components/MenuItemCheckbox/renderMenuItemCheckbox.js +28 -0
  421. package/lib-commonjs/components/MenuItemCheckbox/renderMenuItemCheckbox.js.map +1 -0
  422. package/lib-commonjs/components/MenuItemCheckbox/useMenuItemCheckbox.d.ts +4 -0
  423. package/lib-commonjs/components/MenuItemCheckbox/useMenuItemCheckbox.js +60 -0
  424. package/lib-commonjs/components/MenuItemCheckbox/useMenuItemCheckbox.js.map +1 -0
  425. package/lib-commonjs/components/MenuItemCheckbox/useMenuItemCheckboxStyles.d.ts +3 -0
  426. package/lib-commonjs/components/MenuItemCheckbox/useMenuItemCheckboxStyles.js +23 -0
  427. package/lib-commonjs/components/MenuItemCheckbox/useMenuItemCheckboxStyles.js.map +1 -0
  428. package/lib-commonjs/components/MenuItemRadio/MenuItemRadio.d.ts +6 -0
  429. package/lib-commonjs/components/MenuItemRadio/MenuItemRadio.js +26 -0
  430. package/lib-commonjs/components/MenuItemRadio/MenuItemRadio.js.map +1 -0
  431. package/lib-commonjs/components/MenuItemRadio/MenuItemRadio.types.d.ts +4 -0
  432. package/lib-commonjs/components/MenuItemRadio/MenuItemRadio.types.js +6 -0
  433. package/lib-commonjs/components/MenuItemRadio/MenuItemRadio.types.js.map +1 -0
  434. package/lib-commonjs/components/MenuItemRadio/index.d.ts +5 -0
  435. package/lib-commonjs/components/MenuItemRadio/index.js +18 -0
  436. package/lib-commonjs/components/MenuItemRadio/index.js.map +1 -0
  437. package/lib-commonjs/components/MenuItemRadio/renderMenuItemRadio.d.ts +6 -0
  438. package/lib-commonjs/components/MenuItemRadio/renderMenuItemRadio.js +31 -0
  439. package/lib-commonjs/components/MenuItemRadio/renderMenuItemRadio.js.map +1 -0
  440. package/lib-commonjs/components/MenuItemRadio/useMenuItemRadio.d.ts +6 -0
  441. package/lib-commonjs/components/MenuItemRadio/useMenuItemRadio.js +63 -0
  442. package/lib-commonjs/components/MenuItemRadio/useMenuItemRadio.js.map +1 -0
  443. package/lib-commonjs/components/MenuItemRadio/useMenuItemRadioStyles.d.ts +3 -0
  444. package/lib-commonjs/components/MenuItemRadio/useMenuItemRadioStyles.js +23 -0
  445. package/lib-commonjs/components/MenuItemRadio/useMenuItemRadioStyles.js.map +1 -0
  446. package/lib-commonjs/components/MenuList/MenuList.d.ts +6 -0
  447. package/lib-commonjs/components/MenuList/MenuList.js +29 -0
  448. package/lib-commonjs/components/MenuList/MenuList.js.map +1 -0
  449. package/lib-commonjs/components/MenuList/MenuList.types.d.ts +55 -0
  450. package/lib-commonjs/components/MenuList/MenuList.types.js +6 -0
  451. package/lib-commonjs/components/MenuList/MenuList.types.js.map +1 -0
  452. package/lib-commonjs/components/MenuList/index.d.ts +6 -0
  453. package/lib-commonjs/components/MenuList/index.js +18 -0
  454. package/lib-commonjs/components/MenuList/index.js.map +1 -0
  455. package/lib-commonjs/components/MenuList/renderMenuList.d.ts +5 -0
  456. package/lib-commonjs/components/MenuList/renderMenuList.js +30 -0
  457. package/lib-commonjs/components/MenuList/renderMenuList.js.map +1 -0
  458. package/lib-commonjs/components/MenuList/useMenuList.d.ts +6 -0
  459. package/lib-commonjs/components/MenuList/useMenuList.js +183 -0
  460. package/lib-commonjs/components/MenuList/useMenuList.js.map +1 -0
  461. package/lib-commonjs/components/MenuList/useMenuListContextValues.d.ts +2 -0
  462. package/lib-commonjs/components/MenuList/useMenuListContextValues.js +34 -0
  463. package/lib-commonjs/components/MenuList/useMenuListContextValues.js.map +1 -0
  464. package/lib-commonjs/components/MenuList/useMenuListStyles.d.ts +6 -0
  465. package/lib-commonjs/components/MenuList/useMenuListStyles.js +34 -0
  466. package/lib-commonjs/components/MenuList/useMenuListStyles.js.map +1 -0
  467. package/lib-commonjs/components/MenuPopover/MenuPopover.d.ts +6 -0
  468. package/lib-commonjs/components/MenuPopover/MenuPopover.js +26 -0
  469. package/lib-commonjs/components/MenuPopover/MenuPopover.js.map +1 -0
  470. package/lib-commonjs/components/MenuPopover/MenuPopover.types.d.ts +18 -0
  471. package/lib-commonjs/components/MenuPopover/MenuPopover.types.js +6 -0
  472. package/lib-commonjs/components/MenuPopover/MenuPopover.types.js.map +1 -0
  473. package/lib-commonjs/components/MenuPopover/index.d.ts +5 -0
  474. package/lib-commonjs/components/MenuPopover/index.js +18 -0
  475. package/lib-commonjs/components/MenuPopover/index.js.map +1 -0
  476. package/lib-commonjs/components/MenuPopover/renderMenuPopover.d.ts +5 -0
  477. package/lib-commonjs/components/MenuPopover/renderMenuPopover.js +34 -0
  478. package/lib-commonjs/components/MenuPopover/renderMenuPopover.js.map +1 -0
  479. package/lib-commonjs/components/MenuPopover/useMenuPopover.d.ts +12 -0
  480. package/lib-commonjs/components/MenuPopover/useMenuPopover.js +120 -0
  481. package/lib-commonjs/components/MenuPopover/useMenuPopover.js.map +1 -0
  482. package/lib-commonjs/components/MenuPopover/useMenuPopoverStyles.d.ts +6 -0
  483. package/lib-commonjs/components/MenuPopover/useMenuPopoverStyles.js +57 -0
  484. package/lib-commonjs/components/MenuPopover/useMenuPopoverStyles.js.map +1 -0
  485. package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.d.ts +6 -0
  486. package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.js +26 -0
  487. package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.js.map +1 -0
  488. package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.types.d.ts +14 -0
  489. package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.types.js +6 -0
  490. package/lib-commonjs/components/MenuSplitGroup/MenuSplitGroup.types.js.map +1 -0
  491. package/lib-commonjs/components/MenuSplitGroup/index.d.ts +5 -0
  492. package/lib-commonjs/components/MenuSplitGroup/index.js +18 -0
  493. package/lib-commonjs/components/MenuSplitGroup/index.js.map +1 -0
  494. package/lib-commonjs/components/MenuSplitGroup/renderMenuSplitGroup.d.ts +5 -0
  495. package/lib-commonjs/components/MenuSplitGroup/renderMenuSplitGroup.js +26 -0
  496. package/lib-commonjs/components/MenuSplitGroup/renderMenuSplitGroup.js.map +1 -0
  497. package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroup.d.ts +12 -0
  498. package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroup.js +81 -0
  499. package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroup.js.map +1 -0
  500. package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroupStyles.d.ts +6 -0
  501. package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroupStyles.js +47 -0
  502. package/lib-commonjs/components/MenuSplitGroup/useMenuSplitGroupStyles.js.map +1 -0
  503. package/lib-commonjs/components/MenuTrigger/MenuTrigger.d.ts +8 -0
  504. package/lib-commonjs/components/MenuTrigger/MenuTrigger.js +25 -0
  505. package/lib-commonjs/components/MenuTrigger/MenuTrigger.js.map +1 -0
  506. package/lib-commonjs/components/MenuTrigger/MenuTrigger.types.d.ts +20 -0
  507. package/lib-commonjs/components/MenuTrigger/MenuTrigger.types.js +6 -0
  508. package/lib-commonjs/components/MenuTrigger/MenuTrigger.types.js.map +1 -0
  509. package/lib-commonjs/components/MenuTrigger/index.d.ts +4 -0
  510. package/lib-commonjs/components/MenuTrigger/index.js +16 -0
  511. package/lib-commonjs/components/MenuTrigger/index.js.map +1 -0
  512. package/lib-commonjs/components/MenuTrigger/renderMenuTrigger.d.ts +7 -0
  513. package/lib-commonjs/components/MenuTrigger/renderMenuTrigger.js +25 -0
  514. package/lib-commonjs/components/MenuTrigger/renderMenuTrigger.js.map +1 -0
  515. package/lib-commonjs/components/MenuTrigger/useMenuTrigger.d.ts +8 -0
  516. package/lib-commonjs/components/MenuTrigger/useMenuTrigger.js +195 -0
  517. package/lib-commonjs/components/MenuTrigger/useMenuTrigger.js.map +1 -0
  518. package/lib-commonjs/components/index.d.ts +2 -0
  519. package/lib-commonjs/components/index.js +12 -0
  520. package/lib-commonjs/components/index.js.map +1 -0
  521. package/lib-commonjs/contexts/menuContext.d.ts +16 -0
  522. package/lib-commonjs/contexts/menuContext.js +34 -0
  523. package/lib-commonjs/contexts/menuContext.js.map +1 -0
  524. package/lib-commonjs/contexts/menuGroupContext.d.ts +13 -0
  525. package/lib-commonjs/contexts/menuGroupContext.js +18 -0
  526. package/lib-commonjs/contexts/menuGroupContext.js.map +1 -0
  527. package/lib-commonjs/contexts/menuListContext.d.ts +15 -0
  528. package/lib-commonjs/contexts/menuListContext.js +24 -0
  529. package/lib-commonjs/contexts/menuListContext.js.map +1 -0
  530. package/lib-commonjs/contexts/menuTriggerContext.d.ts +3 -0
  531. package/lib-commonjs/contexts/menuTriggerContext.js +20 -0
  532. package/lib-commonjs/contexts/menuTriggerContext.js.map +1 -0
  533. package/lib-commonjs/index.d.ts +16 -0
  534. package/lib-commonjs/index.js +40 -0
  535. package/lib-commonjs/index.js.map +1 -0
  536. package/lib-commonjs/selectable/index.d.ts +2 -0
  537. package/lib-commonjs/selectable/index.js +12 -0
  538. package/lib-commonjs/selectable/index.js.map +1 -0
  539. package/lib-commonjs/selectable/types.d.ts +34 -0
  540. package/lib-commonjs/selectable/types.js +6 -0
  541. package/lib-commonjs/selectable/types.js.map +1 -0
  542. package/lib-commonjs/selectable/useCheckmarkStyles.d.ts +8 -0
  543. package/lib-commonjs/selectable/useCheckmarkStyles.js +38 -0
  544. package/lib-commonjs/selectable/useCheckmarkStyles.js.map +1 -0
  545. package/lib-commonjs/utils/index.d.ts +1 -0
  546. package/lib-commonjs/utils/index.js +10 -0
  547. package/lib-commonjs/utils/index.js.map +1 -0
  548. package/lib-commonjs/utils/useIsSubmenu.d.ts +9 -0
  549. package/lib-commonjs/utils/useIsSubmenu.js +30 -0
  550. package/lib-commonjs/utils/useIsSubmenu.js.map +1 -0
  551. package/lib-commonjs/utils/useOnMenuEnter.d.ts +23 -0
  552. package/lib-commonjs/utils/useOnMenuEnter.js +86 -0
  553. package/lib-commonjs/utils/useOnMenuEnter.js.map +1 -0
  554. package/package.json +71 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1569 @@
1
+ # Change Log - @fluentui/react-menu
2
+
3
+ This log was last generated on Wed, 02 Mar 2022 04:14:55 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20220302-0405.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.0.0-nightly-20220302-0405.1)
8
+
9
+ Wed, 02 Mar 2022 04:14:55 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-rc.4..@fluentui/react-menu_v0.0.0-nightly-20220302-0405.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by email not defined)
15
+ - Bump @fluentui/keyboard-keys to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
16
+ - Bump @fluentui/react-context-selector to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
17
+ - Bump @fluentui/react-portal to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
18
+ - Bump @fluentui/react-positioning to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
19
+ - Bump @fluentui/react-shared-contexts to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
20
+ - Bump @fluentui/react-tabster to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
21
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
22
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
23
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
24
+
25
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-rc.4)
26
+
27
+ Tue, 01 Mar 2022 02:17:37 GMT
28
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-rc.3..@fluentui/react-menu_v9.0.0-rc.4)
29
+
30
+ ### Changes
31
+
32
+ - fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
33
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
34
+ - Bump @fluentui/react-portal to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
35
+ - Bump @fluentui/react-positioning to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
36
+ - Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
37
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
38
+
39
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-rc.3)
40
+
41
+ Fri, 18 Feb 2022 13:35:33 GMT
42
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-rc.1..@fluentui/react-menu_v9.0.0-rc.3)
43
+
44
+ ### Changes
45
+
46
+ - fix: MenuItem is a submenu trigger if it is wrapped by a MenuTrigger and in a submenu ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by lingfangao@hotmail.com)
47
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
48
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
49
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
50
+ - Bump @fluentui/react-portal to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
51
+ - Bump @fluentui/react-positioning to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
52
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
53
+ - Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
54
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
55
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
56
+
57
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-rc.1)
58
+
59
+ Thu, 10 Feb 2022 08:51:30 GMT
60
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-beta.5..@fluentui/react-menu_v9.0.0-rc.1)
61
+
62
+ ### Changes
63
+
64
+ - fix: set `aria-expanded` and `aria-haspopup` values correctly ([PR #20957](https://github.com/microsoft/fluentui/pull/20957) by lingfangao@hotmail.com)
65
+ - fix: Focus on first menu item on click ([PR #20955](https://github.com/microsoft/fluentui/pull/20955) by lingfangao@hotmail.com)
66
+ - fix: MenuTrigger should work correctly when `aria-disabled="true"` ([PR #21349](https://github.com/microsoft/fluentui/pull/21349) by lingfangao@hotmail.com)
67
+ - update @fluentui/react-icons package ([PR #21498](https://github.com/microsoft/fluentui/pull/21498) by olfedias@microsoft.com)
68
+ - Allow `MenuTrigger` to be wrapped by another trigger ([PR #21225](https://github.com/microsoft/fluentui/pull/21225) by lingfangao@hotmail.com)
69
+ - update types related to trigger (allow only React.ReactElement & null) ([PR #21609](https://github.com/microsoft/fluentui/pull/21609) by olfedias@microsoft.com)
70
+ - BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet ([PR #21365](https://github.com/microsoft/fluentui/pull/21365) by behowell@microsoft.com)
71
+ - Updating packages based on changes to focusIndicator functions to remove functions from makeStyles in @fluentui/react-tabster. ([PR #21035](https://github.com/microsoft/fluentui/pull/21035) by Humberto.Morimoto@microsoft.com)
72
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
73
+ - update styles to not use CSS shorthands ([PR #20820](https://github.com/microsoft/fluentui/pull/20820) by olfedias@microsoft.com)
74
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
75
+ - fix: Call `useCheckmarkStyles` in `useMenuItemStyles` ([PR #20956](https://github.com/microsoft/fluentui/pull/20956) by lingfangao@hotmail.com)
76
+ - Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
77
+ - Updating based on removal of functions from makeStyles. ([PR #21239](https://github.com/microsoft/fluentui/pull/21239) by Humberto.Morimoto@microsoft.com)
78
+ - Update MenuTrigger and Tooltip to work together ([PR #21495](https://github.com/microsoft/fluentui/pull/21495) by behowell@microsoft.com)
79
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
80
+ - Replacing use of functions in makeStyles with direct use of tokens. ([PR #21048](https://github.com/microsoft/fluentui/pull/21048) by Humberto.Morimoto@microsoft.com)
81
+ - use Griffel packages ([PR #21391](https://github.com/microsoft/fluentui/pull/21391) by olfedias@microsoft.com)
82
+ - Apply fontSize styling to icon slot ([PR #21222](https://github.com/microsoft/fluentui/pull/21222) by behowell@microsoft.com)
83
+ - Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
84
+ - feat: implement `MenuSplitGroup` component for split menu items ([PR #21095](https://github.com/microsoft/fluentui/pull/21095) by lingfangao@hotmail.com)
85
+ - Updating use of tokens.fontWeight now that we don't need to use casting. ([PR #21217](https://github.com/microsoft/fluentui/pull/21217) by Humberto.Morimoto@microsoft.com)
86
+ - (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
87
+ - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
88
+ - breaking: MenuTrigger must be the first child of the `Menu` ([PR #21096](https://github.com/microsoft/fluentui/pull/21096) by lingfangao@hotmail.com)
89
+ - Bump @fluentui/keyboard-keys to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
90
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
91
+ - Bump @fluentui/react-portal to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
92
+ - Bump @fluentui/react-positioning to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
93
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
94
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
95
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
96
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
97
+
98
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-beta.5)
99
+
100
+ Thu, 25 Nov 2021 08:34:14 GMT
101
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-beta.4..@fluentui/react-menu_v9.0.0-beta.5)
102
+
103
+ ### Changes
104
+
105
+ - update react-icons dependency ([PR #20563](https://github.com/microsoft/fluentui/pull/20563) by ololubek@microsoft.com)
106
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
107
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
108
+ - Bump @fluentui/react-portal to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
109
+ - Bump @fluentui/react-positioning to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
110
+ - Bump @fluentui/react-shared-contexts to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
111
+ - Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
112
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
113
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
114
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
115
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
116
+
117
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-beta.4)
118
+
119
+ Fri, 12 Nov 2021 13:25:27 GMT
120
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-beta.3..@fluentui/react-menu_v9.0.0-beta.4)
121
+
122
+ ### Changes
123
+
124
+ - Adds typings for `onCheckedValueChange` method ([PR #20493](https://github.com/microsoft/fluentui/pull/20493) by bsunderhus@microsoft.com)
125
+ - use react-shared-contexts instead of react-provider ([PR #20578](https://github.com/microsoft/fluentui/pull/20578) by olfedias@microsoft.com)
126
+ - export static classes for components ([PR #20450](https://github.com/microsoft/fluentui/pull/20450) by olfedias@microsoft.com)
127
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
128
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
129
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
130
+ - Bump @fluentui/react-portal to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
131
+ - Bump @fluentui/react-positioning to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
132
+ - Bump @fluentui/react-shared-contexts to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
133
+ - Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
134
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
135
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
136
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
137
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
138
+
139
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-beta.3)
140
+
141
+ Wed, 27 Oct 2021 12:14:20 GMT
142
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-beta.2..@fluentui/react-menu_v9.0.0-beta.3)
143
+
144
+ ### Changes
145
+
146
+ - Simplify type for MenuOpenChangeData ([PR #20096](https://github.com/microsoft/fluentui/pull/20096) by olfedias@microsoft.com)
147
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
148
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
149
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
150
+ - Bump @fluentui/react-portal to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
151
+ - Bump @fluentui/react-positioning to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
152
+ - Bump @fluentui/react-provider to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
153
+ - Bump @fluentui/react-tabster to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
154
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
155
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
156
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
157
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
158
+
159
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-beta.2)
160
+
161
+ Tue, 12 Oct 2021 19:45:58 GMT
162
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-beta.1..@fluentui/react-menu_v9.0.0-beta.2)
163
+
164
+ ### Changes
165
+
166
+ - Bump @fluentui/react-portal to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
167
+ - Bump @fluentui/react-provider to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
168
+ - Bump @fluentui/react-tabster to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
169
+
170
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-beta.1)
171
+
172
+ Wed, 06 Oct 2021 10:37:22 GMT
173
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.92..@fluentui/react-menu_v9.0.0-beta.1)
174
+
175
+ ### Changes
176
+
177
+ - Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
178
+ - Bump @fluentui/keyboard-keys to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
179
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
180
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
181
+ - Bump @fluentui/react-portal to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
182
+ - Bump @fluentui/react-positioning to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
183
+ - Bump @fluentui/react-provider to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
184
+ - Bump @fluentui/react-tabster to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
185
+ - Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
186
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
187
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
188
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
189
+
190
+ ## [9.0.0-alpha.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.92)
191
+
192
+ Tue, 05 Oct 2021 12:47:58 GMT
193
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.91..@fluentui/react-menu_v9.0.0-alpha.92)
194
+
195
+ ### Changes
196
+
197
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.78 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
198
+ - Bump @fluentui/react-portal to v9.0.0-alpha.61 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
199
+ - Bump @fluentui/react-provider to v9.0.0-alpha.90 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
200
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.73 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
201
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.60 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
202
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
203
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.22 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
204
+
205
+ ## [9.0.0-alpha.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.91)
206
+
207
+ Tue, 05 Oct 2021 09:28:07 GMT
208
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.90..@fluentui/react-menu_v9.0.0-alpha.91)
209
+
210
+ ### Changes
211
+
212
+ - Adds ForwardRefComponent to react-menu components declaration ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
213
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.39 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
214
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
215
+ - Bump @fluentui/react-portal to v9.0.0-alpha.60 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
216
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.65 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
217
+ - Bump @fluentui/react-provider to v9.0.0-alpha.89 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
218
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.72 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
219
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
220
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.59 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
221
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
222
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
223
+
224
+ ## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.90)
225
+
226
+ Fri, 01 Oct 2021 14:13:08 GMT
227
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.88..@fluentui/react-menu_v9.0.0-alpha.90)
228
+
229
+ ### Changes
230
+
231
+ - Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
232
+ - Bump @fluentui/keyboard-keys to v9.0.0-alpha.5 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
233
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.38 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
234
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.76 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
235
+ - Bump @fluentui/react-portal to v9.0.0-alpha.59 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
236
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.64 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
237
+ - Bump @fluentui/react-provider to v9.0.0-alpha.88 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
238
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.71 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
239
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.55 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
240
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.58 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
241
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
242
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
243
+
244
+ ## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.88)
245
+
246
+ Fri, 01 Oct 2021 12:30:46 GMT
247
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.87..@fluentui/react-menu_v9.0.0-alpha.88)
248
+
249
+ ### Changes
250
+
251
+ - Remove focus `color` styling since it should use normal root `color` ([PR #18814](https://github.com/microsoft/fluentui/pull/18814) by lingfangao@hotmail.com)
252
+
253
+ ## [9.0.0-alpha.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.87)
254
+
255
+ Fri, 01 Oct 2021 09:44:56 GMT
256
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.86..@fluentui/react-menu_v9.0.0-alpha.87)
257
+
258
+ ### Changes
259
+
260
+ - Use new default pseudo element focus outline style ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by lingfangao@hotmail.com)
261
+ - feat(Menu): Update styles from design spec ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by lingfangao@hotmail.com)
262
+ - Bump @fluentui/react-portal to v9.0.0-alpha.57 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball)
263
+ - Bump @fluentui/react-provider to v9.0.0-alpha.86 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball)
264
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.69 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball)
265
+
266
+ ## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.86)
267
+
268
+ Thu, 30 Sep 2021 09:18:15 GMT
269
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.85..@fluentui/react-menu_v9.0.0-alpha.86)
270
+
271
+ ### Changes
272
+
273
+ - export to codesandbox ([PR #19802](https://github.com/microsoft/fluentui/pull/19802) by peter@draxler.ml)
274
+
275
+ ## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.85)
276
+
277
+ Wed, 29 Sep 2021 08:06:11 GMT
278
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.84..@fluentui/react-menu_v9.0.0-alpha.85)
279
+
280
+ ### Changes
281
+
282
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.74 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
283
+ - Bump @fluentui/react-portal to v9.0.0-alpha.56 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
284
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.62 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
285
+ - Bump @fluentui/react-provider to v9.0.0-alpha.85 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
286
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.68 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
287
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.56 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
288
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
289
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
290
+
291
+ ## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.84)
292
+
293
+ Mon, 27 Sep 2021 08:06:00 GMT
294
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.83..@fluentui/react-menu_v9.0.0-alpha.84)
295
+
296
+ ### Changes
297
+
298
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.36 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
299
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
300
+ - Bump @fluentui/react-portal to v9.0.0-alpha.55 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
301
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.61 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
302
+ - Bump @fluentui/react-provider to v9.0.0-alpha.84 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
303
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.67 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
304
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
305
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.55 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
306
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
307
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
308
+
309
+ ## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.83)
310
+
311
+ Fri, 24 Sep 2021 09:17:17 GMT
312
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.82..@fluentui/react-menu_v9.0.0-alpha.83)
313
+
314
+ ### Changes
315
+
316
+ - fix(Menu): export useMenuPopoverStyles ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by lingfangao@hotmail.com)
317
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.35 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
318
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.72 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
319
+ - Bump @fluentui/react-portal to v9.0.0-alpha.54 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
320
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.60 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
321
+ - Bump @fluentui/react-provider to v9.0.0-alpha.83 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
322
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.66 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
323
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.52 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
324
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.54 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
325
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
326
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
327
+
328
+ ## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.82)
329
+
330
+ Thu, 23 Sep 2021 08:21:34 GMT
331
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.81..@fluentui/react-menu_v9.0.0-alpha.82)
332
+
333
+ ### Changes
334
+
335
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.34 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
336
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.71 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
337
+ - Bump @fluentui/react-portal to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
338
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.59 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
339
+ - Bump @fluentui/react-provider to v9.0.0-alpha.82 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
340
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.65 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
341
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.51 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
342
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
343
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
344
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
345
+
346
+ ## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.81)
347
+
348
+ Wed, 22 Sep 2021 10:10:07 GMT
349
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.80..@fluentui/react-menu_v9.0.0-alpha.81)
350
+
351
+ ### Changes
352
+
353
+ - update react-icons dependency ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by ololubek@microsoft.com)
354
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.33 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
355
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.70 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
356
+ - Bump @fluentui/react-portal to v9.0.0-alpha.52 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
357
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.58 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
358
+ - Bump @fluentui/react-provider to v9.0.0-alpha.81 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
359
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.64 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
360
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.50 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
361
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.52 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
362
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
363
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
364
+
365
+ ## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.80)
366
+
367
+ Tue, 21 Sep 2021 07:42:34 GMT
368
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.79..@fluentui/react-menu_v9.0.0-alpha.80)
369
+
370
+ ### Changes
371
+
372
+ - Updating to types over interfaces ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by gcox@microsoft.com)
373
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.69 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
374
+ - Bump @fluentui/react-portal to v9.0.0-alpha.51 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
375
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.57 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
376
+ - Bump @fluentui/react-provider to v9.0.0-alpha.80 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
377
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.63 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
378
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.51 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
379
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
380
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
381
+
382
+ ## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.79)
383
+
384
+ Mon, 20 Sep 2021 07:36:26 GMT
385
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.78..@fluentui/react-menu_v9.0.0-alpha.79)
386
+
387
+ ### Changes
388
+
389
+ - Bump @fluentui/react-menu to v9.0.0-alpha.79 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com)
390
+
391
+ ## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.78)
392
+
393
+ Fri, 17 Sep 2021 07:35:26 GMT
394
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.77..@fluentui/react-menu_v9.0.0-alpha.78)
395
+
396
+ ### Changes
397
+
398
+ - Menu: Making MenuTrigger accept function components which customize where props go as children. ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
399
+ - Bump @fluentui/react-menu to v9.0.0-alpha.78 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
400
+
401
+ ## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.77)
402
+
403
+ Thu, 16 Sep 2021 07:38:39 GMT
404
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.76..@fluentui/react-menu_v9.0.0-alpha.77)
405
+
406
+ ### Changes
407
+
408
+ - Fix typings in React.forwardRef ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
409
+ - Bump @fluentui/react-menu to v9.0.0-alpha.77 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
410
+
411
+ ## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.76)
412
+
413
+ Tue, 14 Sep 2021 20:09:02 GMT
414
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.75..@fluentui/react-menu_v9.0.0-alpha.76)
415
+
416
+ ### Changes
417
+
418
+ - Bump @fluentui/react-menu to v9.0.0-alpha.76 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com)
419
+
420
+ ## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.75)
421
+
422
+ Fri, 10 Sep 2021 16:31:53 GMT
423
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.74..@fluentui/react-menu_v9.0.0-alpha.75)
424
+
425
+ ### Changes
426
+
427
+ - chore(v9): Move all internal v9 dependencies from caret to fixed version ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
428
+ - Bump @fluentui/react-menu to v9.0.0-alpha.75 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
429
+
430
+ ## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.74)
431
+
432
+ Fri, 10 Sep 2021 07:39:51 GMT
433
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.73..@fluentui/react-menu_v9.0.0-alpha.74)
434
+
435
+ ### Changes
436
+
437
+ - Refactor ObjectShorthandProps into IntrinsicShorthandProps ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com)
438
+
439
+ ## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.73)
440
+
441
+ Wed, 08 Sep 2021 07:34:11 GMT
442
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.72..@fluentui/react-menu_v9.0.0-alpha.73)
443
+
444
+ ### Changes
445
+
446
+ - fix(Menu): Missing submenu indicator slot ([PR #19661](https://github.com/microsoft/fluentui/pull/19661) by lingfangao@hotmail.com)
447
+
448
+ ## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.72)
449
+
450
+ Mon, 06 Sep 2021 07:34:53 GMT
451
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.71..@fluentui/react-menu_v9.0.0-alpha.72)
452
+
453
+ ### Changes
454
+
455
+ - refactor(Menu): use `event.key` for keyboard events ([PR #19637](https://github.com/microsoft/fluentui/pull/19637) by lingfangao@hotmail.com)
456
+
457
+ ## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.71)
458
+
459
+ Thu, 02 Sep 2021 07:36:46 GMT
460
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.70..@fluentui/react-menu_v9.0.0-alpha.71)
461
+
462
+ ### Patches
463
+
464
+ - Bump @fluentui/react-conformance to v0.4.5 ([PR #19590](https://github.com/microsoft/fluentui/pull/19590) by olfedias@microsoft.com)
465
+
466
+ ### Changes
467
+
468
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.43 ([PR #19065](https://github.com/microsoft/fluentui/pull/19065) by olfedias@microsoft.com)
469
+
470
+ ## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.70)
471
+
472
+ Wed, 01 Sep 2021 07:39:56 GMT
473
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.69..@fluentui/react-menu_v9.0.0-alpha.70)
474
+
475
+ ### Changes
476
+
477
+ - Updates react-menu to use root as slot ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com)
478
+
479
+ ## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.69)
480
+
481
+ Tue, 31 Aug 2021 07:37:47 GMT
482
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.68..@fluentui/react-menu_v9.0.0-alpha.69)
483
+
484
+ ### Changes
485
+
486
+ - update signature for callbacks ([PR #19544](https://github.com/microsoft/fluentui/pull/19544) by olfedias@microsoft.com)
487
+
488
+ ## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.68)
489
+
490
+ Fri, 27 Aug 2021 07:33:32 GMT
491
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.67..@fluentui/react-menu_v9.0.0-alpha.68)
492
+
493
+ ### Changes
494
+
495
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.40 ([PR #19462](https://github.com/microsoft/fluentui/pull/19462) by olfedias@microsoft.com)
496
+
497
+ ## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.67)
498
+
499
+ Thu, 26 Aug 2021 07:35:43 GMT
500
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.66..@fluentui/react-menu_v9.0.0-alpha.67)
501
+
502
+ ### Changes
503
+
504
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.39 ([PR #19486](https://github.com/microsoft/fluentui/pull/19486) by martinhochel@microsoft.com)
505
+
506
+ ## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.66)
507
+
508
+ Tue, 24 Aug 2021 07:34:48 GMT
509
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.65..@fluentui/react-menu_v9.0.0-alpha.66)
510
+
511
+ ### Changes
512
+
513
+ - Updating TypeScript type-only imports/exports to use import/export syntax. ([PR #19473](https://github.com/microsoft/fluentui/pull/19473) by dzearing@hotmail.com)
514
+
515
+ ## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.65)
516
+
517
+ Fri, 20 Aug 2021 07:37:28 GMT
518
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.64..@fluentui/react-menu_v9.0.0-alpha.65)
519
+
520
+ ### Changes
521
+
522
+ - Update .npmignore ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
523
+
524
+ ## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.64)
525
+
526
+ Thu, 19 Aug 2021 07:41:35 GMT
527
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.63..@fluentui/react-menu_v9.0.0-alpha.64)
528
+
529
+ ### Changes
530
+
531
+ - Updates react-menu on slot null rendering ([PR #19273](https://github.com/microsoft/fluentui/pull/19273) by bsunderhus@microsoft.com)
532
+
533
+ ## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.63)
534
+
535
+ Mon, 16 Aug 2021 07:36:39 GMT
536
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.62..@fluentui/react-menu_v9.0.0-alpha.63)
537
+
538
+ ### Changes
539
+
540
+ - feat(Menu): replace align, position, coverTarget props with single `positioning` shorthand prop ([PR #19364](https://github.com/microsoft/fluentui/pull/19364) by lingfan.gao@microsoft.com)
541
+
542
+ ## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.62)
543
+
544
+ Fri, 13 Aug 2021 07:36:34 GMT
545
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.61..@fluentui/react-menu_v9.0.0-alpha.62)
546
+
547
+ ### Changes
548
+
549
+ - chore(Menu): implement useContextValues() pattern ([PR #19342](https://github.com/microsoft/fluentui/pull/19342) by olfedias@microsoft.com)
550
+ - fix(MenuTrigger): Retain original child ref ([PR #19375](https://github.com/microsoft/fluentui/pull/19375) by lingfan.gao@microsoft.com)
551
+
552
+ ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.61)
553
+
554
+ Wed, 11 Aug 2021 07:34:54 GMT
555
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.60..@fluentui/react-menu_v9.0.0-alpha.61)
556
+
557
+ ### Changes
558
+
559
+ - feat(Menu): Use react-icons for checkmarks and stories ([PR #19313](https://github.com/microsoft/fluentui/pull/19313) by lingfan.gao@microsoft.com)
560
+
561
+ ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.60)
562
+
563
+ Tue, 10 Aug 2021 07:33:28 GMT
564
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.59..@fluentui/react-menu_v9.0.0-alpha.60)
565
+
566
+ ### Changes
567
+
568
+ - fix(MenuPopover): Remove min-height value ([PR #19322](https://github.com/microsoft/fluentui/pull/19322) by lingfan.gao@microsoft.com)
569
+
570
+ ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.59)
571
+
572
+ Fri, 06 Aug 2021 07:35:14 GMT
573
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.58..@fluentui/react-menu_v9.0.0-alpha.59)
574
+
575
+ ### Changes
576
+
577
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.34 ([PR #19281](https://github.com/microsoft/fluentui/pull/19281) by jspurlin@microsoft.com)
578
+
579
+ ## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.58)
580
+
581
+ Tue, 03 Aug 2021 07:39:30 GMT
582
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.57..@fluentui/react-menu_v9.0.0-alpha.58)
583
+
584
+ ### Patches
585
+
586
+ - Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
587
+ - Bump @fluentui/keyboard-key to v0.3.4 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
588
+ - Bump @fluentui/react-conformance to v0.4.4 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
589
+ - Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
590
+
591
+ ### Changes
592
+
593
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.33 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
594
+
595
+ ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.57)
596
+
597
+ Mon, 02 Aug 2021 07:36:20 GMT
598
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.56..@fluentui/react-menu_v9.0.0-alpha.57)
599
+
600
+ ### Changes
601
+
602
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.20 ([PR #19204](https://github.com/microsoft/fluentui/pull/19204) by lingfan.gao@microsoft.com)
603
+
604
+ ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.56)
605
+
606
+ Tue, 27 Jul 2021 07:34:27 GMT
607
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.55..@fluentui/react-menu_v9.0.0-alpha.56)
608
+
609
+ ### Changes
610
+
611
+ - fix(Menu): merge `checkmark` slot for selectable menu items ([PR #19133](https://github.com/microsoft/fluentui/pull/19133) by lingfan.gao@microsoft.com)
612
+
613
+ ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.55)
614
+
615
+ Mon, 26 Jul 2021 07:37:30 GMT
616
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.54..@fluentui/react-menu_v9.0.0-alpha.55)
617
+
618
+ ### Changes
619
+
620
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.46 ([PR #18968](https://github.com/microsoft/fluentui/pull/18968) by olfedias@microsoft.com)
621
+
622
+ ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.54)
623
+
624
+ Fri, 23 Jul 2021 07:38:19 GMT
625
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.53..@fluentui/react-menu_v9.0.0-alpha.54)
626
+
627
+ ### Changes
628
+
629
+ - Update theme tokens ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com)
630
+
631
+ ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.53)
632
+
633
+ Thu, 22 Jul 2021 07:36:55 GMT
634
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.52..@fluentui/react-menu_v9.0.0-alpha.53)
635
+
636
+ ### Changes
637
+
638
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.29 ([PR #19038](https://github.com/microsoft/fluentui/pull/19038) by lingfan.gao@microsoft.com)
639
+
640
+ ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.52)
641
+
642
+ Tue, 20 Jul 2021 22:23:17 GMT
643
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.51..@fluentui/react-menu_v9.0.0-alpha.52)
644
+
645
+ ### Changes
646
+
647
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.28 ([PR #18998](https://github.com/microsoft/fluentui/pull/18998) by olfedias@microsoft.com)
648
+
649
+ ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.51)
650
+
651
+ Fri, 16 Jul 2021 22:53:17 GMT
652
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.50..@fluentui/react-menu_v9.0.0-alpha.51)
653
+
654
+ ### Changes
655
+
656
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.26 ([PR #18973](https://github.com/microsoft/fluentui/pull/18973) by olfedias@microsoft.com)
657
+
658
+ ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.50)
659
+
660
+ Thu, 15 Jul 2021 07:36:18 GMT
661
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.49..@fluentui/react-menu_v9.0.0-alpha.50)
662
+
663
+ ### Changes
664
+
665
+ - feat(Menu): replace useControllableValue with useControllableState ([PR #18881](https://github.com/microsoft/fluentui/pull/18881) by lingfan.gao@microsoft.com)
666
+ - feat(Menu): remove parent context flags with new hook ([PR #18812](https://github.com/microsoft/fluentui/pull/18812) by lingfan.gao@microsoft.com)
667
+
668
+ ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.49)
669
+
670
+ Tue, 13 Jul 2021 22:32:58 GMT
671
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.48..@fluentui/react-menu_v9.0.0-alpha.49)
672
+
673
+ ### Patches
674
+
675
+ - Bump @fluentui/react-conformance to v0.4.3 ([PR #18925](https://github.com/microsoft/fluentui/pull/18925) by elcraig@microsoft.com)
676
+
677
+ ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.48)
678
+
679
+ Tue, 13 Jul 2021 07:35:36 GMT
680
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.47..@fluentui/react-menu_v9.0.0-alpha.48)
681
+
682
+ ### Changes
683
+
684
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.24 ([PR #18560](https://github.com/microsoft/fluentui/pull/18560) by behowell@microsoft.com)
685
+
686
+ ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.47)
687
+
688
+ Mon, 12 Jul 2021 07:33:23 GMT
689
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.46..@fluentui/react-menu_v9.0.0-alpha.47)
690
+
691
+ ### Changes
692
+
693
+ - chore(Menu): remove makeMergeProps and getSlotsCompat ([PR #18819](https://github.com/microsoft/fluentui/pull/18819) by lingfan.gao@microsoft.com)
694
+
695
+ ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.46)
696
+
697
+ Fri, 09 Jul 2021 07:39:31 GMT
698
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.45..@fluentui/react-menu_v9.0.0-alpha.46)
699
+
700
+ ### Patches
701
+
702
+ - Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
703
+ - Bump @fluentui/keyboard-key to v0.3.3 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
704
+ - Bump @fluentui/react-conformance to v0.4.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
705
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
706
+
707
+ ### Changes
708
+
709
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.23 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
710
+
711
+ ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.45)
712
+
713
+ Fri, 02 Jul 2021 23:15:55 GMT
714
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.44..@fluentui/react-menu_v9.0.0-alpha.45)
715
+
716
+ ### Changes
717
+
718
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.22 ([PR #18816](https://github.com/microsoft/fluentui/pull/18816) by olfedias@microsoft.com)
719
+
720
+ ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.44)
721
+
722
+ Fri, 02 Jul 2021 07:37:06 GMT
723
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.43..@fluentui/react-menu_v9.0.0-alpha.44)
724
+
725
+ ### Changes
726
+
727
+ - Rename typings and getSlots to have the Compat Suffix ([PR #18796](https://github.com/microsoft/fluentui/pull/18796) by bsunderhus@microsoft.com)
728
+ - fix(Menu): Submenu state should include `MenuList` ([PR #18791](https://github.com/microsoft/fluentui/pull/18791) by lingfan.gao@microsoft.com)
729
+
730
+ ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.43)
731
+
732
+ Thu, 01 Jul 2021 07:35:05 GMT
733
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.42..@fluentui/react-menu_v9.0.0-alpha.43)
734
+
735
+ ### Changes
736
+
737
+ - Fixing bug in start script of converged packages. ([PR #18768](https://github.com/microsoft/fluentui/pull/18768) by Humberto.Morimoto@microsoft.com)
738
+
739
+ ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.42)
740
+
741
+ Wed, 30 Jun 2021 07:38:35 GMT
742
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.41..@fluentui/react-menu_v9.0.0-alpha.42)
743
+
744
+ ### Changes
745
+
746
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.19 ([PR #18695](https://github.com/microsoft/fluentui/pull/18695) by tristan.watanabe@gmail.com)
747
+
748
+ ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.41)
749
+
750
+ Tue, 29 Jun 2021 07:33:32 GMT
751
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.40..@fluentui/react-menu_v9.0.0-alpha.41)
752
+
753
+ ### Changes
754
+
755
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.18 ([PR #18169](https://github.com/microsoft/fluentui/pull/18169) by olfedias@microsoft.com)
756
+
757
+ ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.40)
758
+
759
+ Tue, 22 Jun 2021 07:35:11 GMT
760
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.39..@fluentui/react-menu_v9.0.0-alpha.40)
761
+
762
+ ### Changes
763
+
764
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.17 ([PR #18397](https://github.com/microsoft/fluentui/pull/18397) by olfedias@microsoft.com)
765
+
766
+ ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.39)
767
+
768
+ Mon, 21 Jun 2021 07:34:33 GMT
769
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.38..@fluentui/react-menu_v9.0.0-alpha.39)
770
+
771
+ ### Changes
772
+
773
+ - fix(Menu): Do not open submenus without mousemove, other a11y changes ([PR #18618](https://github.com/microsoft/fluentui/pull/18618) by lingfan.gao@microsoft.com)
774
+ - fix(Menu): Change chevron icon for RTL ([PR #18626](https://github.com/microsoft/fluentui/pull/18626) by lingfan.gao@microsoft.com)
775
+
776
+ ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.38)
777
+
778
+ Thu, 17 Jun 2021 07:34:11 GMT
779
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.37..@fluentui/react-menu_v9.0.0-alpha.38)
780
+
781
+ ### Changes
782
+
783
+ - Bump @fluentui/react-portal to v9.0.0-alpha.21 ([PR #18482](https://github.com/microsoft/fluentui/pull/18482) by lingfan.gao@microsoft.com)
784
+
785
+ ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.37)
786
+
787
+ Wed, 16 Jun 2021 07:34:24 GMT
788
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.36..@fluentui/react-menu_v9.0.0-alpha.37)
789
+
790
+ ### Changes
791
+
792
+ - feat(Menu): Allow custom and virtual popover target ([PR #18565](https://github.com/microsoft/fluentui/pull/18565) by lingfan.gao@microsoft.com)
793
+
794
+ ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.36)
795
+
796
+ Tue, 15 Jun 2021 07:40:20 GMT
797
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.35..@fluentui/react-menu_v9.0.0-alpha.36)
798
+
799
+ ### Changes
800
+
801
+ - feat(Menu): Render submenus out of Order ([PR #18490](https://github.com/microsoft/fluentui/pull/18490) by lingfan.gao@microsoft.com)
802
+
803
+ ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.35)
804
+
805
+ Thu, 10 Jun 2021 07:32:59 GMT
806
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.34..@fluentui/react-menu_v9.0.0-alpha.35)
807
+
808
+ ### Changes
809
+
810
+ - feat(Menu): MenuPopover component ([PR #18464](https://github.com/microsoft/fluentui/pull/18464) by lingfan.gao@microsoft.com)
811
+
812
+ ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.34)
813
+
814
+ Wed, 09 Jun 2021 07:33:38 GMT
815
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.33..@fluentui/react-menu_v9.0.0-alpha.34)
816
+
817
+ ### Changes
818
+
819
+ - Add MenuTriggerChildProps interface ([PR #18415](https://github.com/microsoft/fluentui/pull/18415) by lingfan.gao@microsoft.com)
820
+
821
+ ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.33)
822
+
823
+ Mon, 07 Jun 2021 07:38:15 GMT
824
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.32..@fluentui/react-menu_v9.0.0-alpha.33)
825
+
826
+ ### Patches
827
+
828
+ - Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
829
+ - Bump @fluentui/keyboard-key to v0.3.2 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
830
+ - Bump @fluentui/react-conformance to v0.4.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
831
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
832
+
833
+ ### Changes
834
+
835
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.15 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
836
+
837
+ ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.32)
838
+
839
+ Fri, 04 Jun 2021 07:37:23 GMT
840
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.31..@fluentui/react-menu_v9.0.0-alpha.32)
841
+
842
+ ### Changes
843
+
844
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.16 ([PR #18168](https://github.com/microsoft/fluentui/pull/18168) by Humberto.Morimoto@microsoft.com)
845
+
846
+ ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.31)
847
+
848
+ Thu, 03 Jun 2021 07:36:03 GMT
849
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.30..@fluentui/react-menu_v9.0.0-alpha.31)
850
+
851
+ ### Changes
852
+
853
+ - Updates focus indicator style ([PR #18417](https://github.com/microsoft/fluentui/pull/18417) by bsunderhus@microsoft.com)
854
+ - Only dismiss menu when a menu item is clicked ([PR #18365](https://github.com/microsoft/fluentui/pull/18365) by lingfan.gao@microsoft.com)
855
+
856
+ ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.30)
857
+
858
+ Wed, 02 Jun 2021 07:37:15 GMT
859
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.29..@fluentui/react-menu_v9.0.0-alpha.30)
860
+
861
+ ### Changes
862
+
863
+ - Adds focus indicator styles for react-menu ([PR #18399](https://github.com/microsoft/fluentui/pull/18399) by bsunderhus@microsoft.com)
864
+
865
+ ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.29)
866
+
867
+ Fri, 28 May 2021 07:33:57 GMT
868
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.28..@fluentui/react-menu_v9.0.0-alpha.29)
869
+
870
+ ### Changes
871
+
872
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.24 ([PR #18312](https://github.com/microsoft/fluentui/pull/18312) by lingfan.gao@microsoft.com)
873
+
874
+ ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.28)
875
+
876
+ Thu, 27 May 2021 07:33:21 GMT
877
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.27..@fluentui/react-menu_v9.0.0-alpha.28)
878
+
879
+ ### Changes
880
+
881
+ - fix: Add high contrast border ([PR #18335](https://github.com/microsoft/fluentui/pull/18335) by lingfan.gao@microsoft.com)
882
+
883
+ ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.27)
884
+
885
+ Wed, 26 May 2021 07:35:43 GMT
886
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.26..@fluentui/react-menu_v9.0.0-alpha.27)
887
+
888
+ ### Changes
889
+
890
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.10 ([PR #18323](https://github.com/microsoft/fluentui/pull/18323) by lingfan.gao@microsoft.com)
891
+
892
+ ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.26)
893
+
894
+ Fri, 21 May 2021 07:34:54 GMT
895
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.25..@fluentui/react-menu_v9.0.0-alpha.26)
896
+
897
+ ### Changes
898
+
899
+ - feat(Menu): Menu can cover its trigger ([PR #18265](https://github.com/microsoft/fluentui/pull/18265) by lingfan.gao@microsoft.com)
900
+
901
+ ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.25)
902
+
903
+ Thu, 20 May 2021 07:41:54 GMT
904
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.24..@fluentui/react-menu_v9.0.0-alpha.25)
905
+
906
+ ### Patches
907
+
908
+ - Bump @fluentui/eslint-plugin to v1.3.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
909
+ - Bump @fluentui/keyboard-key to v0.3.1 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
910
+ - Bump @fluentui/react-conformance to v0.4.0 ([PR #17577](https://github.com/microsoft/fluentui/pull/17577) by elcraig@microsoft.com)
911
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
912
+
913
+ ### Changes
914
+
915
+ - fix(MenuItem): Don't select text with double click ([PR #18120](https://github.com/microsoft/fluentui/pull/18120) by lingfan.gao@microsoft.com)
916
+
917
+ ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.24)
918
+
919
+ Wed, 19 May 2021 07:34:20 GMT
920
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.23..@fluentui/react-menu_v9.0.0-alpha.24)
921
+
922
+ ### Patches
923
+
924
+ - Bump @fluentui/react-conformance to v0.3.1 ([PR #18194](https://github.com/microsoft/fluentui/pull/18194) by martinhochel@microsoft.com)
925
+
926
+ ### Changes
927
+
928
+ - chore: add more Babel plugins ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com)
929
+
930
+ ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.23)
931
+
932
+ Tue, 18 May 2021 07:34:38 GMT
933
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.22..@fluentui/react-menu_v9.0.0-alpha.23)
934
+
935
+ ### Changes
936
+
937
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.8 ([PR #18171](https://github.com/microsoft/fluentui/pull/18171) by olfedias@microsoft.com)
938
+
939
+ ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.22)
940
+
941
+ Thu, 13 May 2021 07:36:55 GMT
942
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.21..@fluentui/react-menu_v9.0.0-alpha.22)
943
+
944
+ ### Changes
945
+
946
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.7 ([PR #18039](https://github.com/microsoft/fluentui/pull/18039) by olfedias@microsoft.com)
947
+
948
+ ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.21)
949
+
950
+ Wed, 12 May 2021 07:36:20 GMT
951
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.20..@fluentui/react-menu_v9.0.0-alpha.21)
952
+
953
+ ### Changes
954
+
955
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.6 ([PR #18097](https://github.com/microsoft/fluentui/pull/18097) by olfedias@microsoft.com)
956
+
957
+ ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.20)
958
+
959
+ Mon, 10 May 2021 07:36:07 GMT
960
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.19..@fluentui/react-menu_v9.0.0-alpha.20)
961
+
962
+ ### Changes
963
+
964
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.5 ([PR #18095](https://github.com/microsoft/fluentui/pull/18095) by olfedias@microsoft.com)
965
+
966
+ ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.19)
967
+
968
+ Wed, 05 May 2021 07:36:50 GMT
969
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.18..@fluentui/react-menu_v9.0.0-alpha.19)
970
+
971
+ ### Changes
972
+
973
+ - transform styles with Babel plugin ([PR #16534](https://github.com/microsoft/fluentui/pull/16534) by olfedias@microsoft.com)
974
+ - Hoist focus effects to root Menu ([PR #17986](https://github.com/microsoft/fluentui/pull/17986) by lingfan.gao@microsoft.com)
975
+
976
+ ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.18)
977
+
978
+ Tue, 04 May 2021 07:36:35 GMT
979
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.17..@fluentui/react-menu_v9.0.0-alpha.18)
980
+
981
+ ### Changes
982
+
983
+ - undefined ([PR #18007](https://github.com/microsoft/fluentui/pull/18007) by lingfan.gao@microsoft.com)
984
+
985
+ ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.17)
986
+
987
+ Mon, 03 May 2021 07:45:19 GMT
988
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.16..@fluentui/react-menu_v9.0.0-alpha.17)
989
+
990
+ ### Changes
991
+
992
+ - Disable outside click listener when menu is closed ([PR #18005](https://github.com/microsoft/fluentui/pull/18005) by lingfan.gao@microsoft.com)
993
+ - undefined ([PR #17171](https://github.com/microsoft/fluentui/pull/17171) by lingfan.gao@microsoft.com)
994
+
995
+ ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.16)
996
+
997
+ Fri, 30 Apr 2021 07:42:23 GMT
998
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.15..@fluentui/react-menu_v9.0.0-alpha.16)
999
+
1000
+ ### Patches
1001
+
1002
+ - Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
1003
+ - Bump @fluentui/keyboard-key to v0.3.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
1004
+ - Bump @fluentui/react-conformance to v0.3.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
1005
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
1006
+
1007
+ ### Changes
1008
+
1009
+ - Upgrade to ts 4.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
1010
+ - update snapshots ([PR #17924](https://github.com/microsoft/fluentui/pull/17924) by olfedias@microsoft.com)
1011
+
1012
+ ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.15)
1013
+
1014
+ Wed, 28 Apr 2021 07:32:59 GMT
1015
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.14..@fluentui/react-menu_v9.0.0-alpha.15)
1016
+
1017
+ ### Changes
1018
+
1019
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.20 ([PR #17971](https://github.com/microsoft/fluentui/pull/17971) by olfedias@microsoft.com)
1020
+
1021
+ ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.14)
1022
+
1023
+ Tue, 27 Apr 2021 07:34:03 GMT
1024
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.13..@fluentui/react-menu_v9.0.0-alpha.14)
1025
+
1026
+ ### Changes
1027
+
1028
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5 ([PR #17922](https://github.com/microsoft/fluentui/pull/17922) by bsunderhus@microsoft.com)
1029
+
1030
+ ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.13)
1031
+
1032
+ Mon, 26 Apr 2021 07:34:31 GMT
1033
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.12..@fluentui/react-menu_v9.0.0-alpha.13)
1034
+
1035
+ ### Changes
1036
+
1037
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4 ([PR #17936](https://github.com/microsoft/fluentui/pull/17936) by bsunderhus@microsoft.com)
1038
+
1039
+ ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.12)
1040
+
1041
+ Fri, 23 Apr 2021 07:37:10 GMT
1042
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.11..@fluentui/react-menu_v9.0.0-alpha.12)
1043
+
1044
+ ### Patches
1045
+
1046
+ - Bump @fluentui/eslint-plugin to v1.1.1 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
1047
+ - Bump @fluentui/keyboard-key to v0.2.17 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
1048
+ - Bump @fluentui/react-conformance to v0.2.6 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
1049
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
1050
+
1051
+ ### Changes
1052
+
1053
+ - Render root menu in portal ([PR #17868](https://github.com/microsoft/fluentui/pull/17868) by lingfan.gao@microsoft.com)
1054
+
1055
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.11)
1056
+
1057
+ Thu, 22 Apr 2021 07:33:28 GMT
1058
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.10..@fluentui/react-menu_v9.0.0-alpha.11)
1059
+
1060
+ ### Changes
1061
+
1062
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2 ([PR #17826](https://github.com/microsoft/fluentui/pull/17826) by bsunderhus@microsoft.com)
1063
+
1064
+ ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.10)
1065
+
1066
+ Wed, 21 Apr 2021 07:31:50 GMT
1067
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.9..@fluentui/react-menu_v9.0.0-alpha.10)
1068
+
1069
+ ### Changes
1070
+
1071
+ - undefined ([PR #17778](https://github.com/microsoft/fluentui/pull/17778) by lingfan.gao@microsoft.com)
1072
+ - Rename ax() to mergeClasses() ([PR #17875](https://github.com/microsoft/fluentui/pull/17875) by miroslav.stastny@microsoft.com)
1073
+
1074
+ ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.9)
1075
+
1076
+ Tue, 20 Apr 2021 07:31:35 GMT
1077
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.8..@fluentui/react-menu_v9.0.0-alpha.9)
1078
+
1079
+ ### Changes
1080
+
1081
+ - Rename `document` props to `targetDocument` ([PR #17827](https://github.com/microsoft/fluentui/pull/17827) by lingfan.gao@microsoft.com)
1082
+
1083
+ ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.8)
1084
+
1085
+ Fri, 16 Apr 2021 18:08:21 GMT
1086
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.7..@fluentui/react-menu_v9.0.0-alpha.8)
1087
+
1088
+ ### Changes
1089
+
1090
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.22 ([PR #17840](https://github.com/microsoft/fluentui/pull/17840) by bsunderhus@microsoft.com)
1091
+
1092
+ ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.7)
1093
+
1094
+ Fri, 16 Apr 2021 07:32:08 GMT
1095
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.6..@fluentui/react-menu_v9.0.0-alpha.7)
1096
+
1097
+ ### Changes
1098
+
1099
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.9 ([PR #17812](https://github.com/microsoft/fluentui/pull/17812) by behowell@microsoft.com)
1100
+
1101
+ ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.6)
1102
+
1103
+ Wed, 14 Apr 2021 07:34:12 GMT
1104
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.5..@fluentui/react-menu_v9.0.0-alpha.6)
1105
+
1106
+ ### Changes
1107
+
1108
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.21 ([PR #17707](https://github.com/microsoft/fluentui/pull/17707) by bsunderhus@microsoft.com)
1109
+
1110
+ ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.5)
1111
+
1112
+ Fri, 09 Apr 2021 23:42:49 GMT
1113
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.4..@fluentui/react-menu_v9.0.0-alpha.5)
1114
+
1115
+ ### Changes
1116
+
1117
+ - Replace `on` prefix with `openOn` ([PR #17753](https://github.com/microsoft/fluentui/pull/17753) by lingfan.gao@microsoft.com)
1118
+
1119
+ ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.4)
1120
+
1121
+ Fri, 09 Apr 2021 07:31:06 GMT
1122
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.3..@fluentui/react-menu_v9.0.0-alpha.4)
1123
+
1124
+ ### Changes
1125
+
1126
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.20 ([PR #17670](https://github.com/microsoft/fluentui/pull/17670) by olfedias@microsoft.com)
1127
+
1128
+ ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.3)
1129
+
1130
+ Thu, 08 Apr 2021 07:33:06 GMT
1131
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.2..@fluentui/react-menu_v9.0.0-alpha.3)
1132
+
1133
+ ### Changes
1134
+
1135
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.19 ([PR #17713](https://github.com/microsoft/fluentui/pull/17713) by olfedias@microsoft.com)
1136
+
1137
+ ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.2)
1138
+
1139
+ Wed, 07 Apr 2021 08:04:03 GMT
1140
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v9.0.0-alpha.1..@fluentui/react-menu_v9.0.0-alpha.2)
1141
+
1142
+ ### Changes
1143
+
1144
+ - Support onOpenChange for controlled menu ([PR #17712](https://github.com/microsoft/fluentui/pull/17712) by lingfan.gao@microsoft.com)
1145
+ - Add props for menu item alignment ([PR #17682](https://github.com/microsoft/fluentui/pull/17682) by lingfan.gao@microsoft.com)
1146
+
1147
+ ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v9.0.0-alpha.1)
1148
+
1149
+ Thu, 01 Apr 2021 20:13:37 GMT
1150
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.14.0..@fluentui/react-menu_v9.0.0-alpha.1)
1151
+
1152
+ ### Changes
1153
+
1154
+ - Initial prerelease ([PR #17666](https://github.com/microsoft/fluentui/pull/17666) by lingfan.gao@microsoft.com)
1155
+ - Support content and secondary content slots for menu item ([PR #17649](https://github.com/microsoft/fluentui/pull/17649) by lingfan.gao@microsoft.com)
1156
+ - Change react-focus-management to react-tabster ([PR #17651](https://github.com/microsoft/fluentui/pull/17651) by bsunderhus@microsoft.com)
1157
+
1158
+ ## [0.14.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.14.0)
1159
+
1160
+ Thu, 01 Apr 2021 07:33:24 GMT
1161
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.13.0..@fluentui/react-menu_v0.14.0)
1162
+
1163
+ ### Minor changes
1164
+
1165
+ - Support disabled menu item and trigger ([PR #17640](https://github.com/microsoft/fluentui/pull/17640) by lingfan.gao@microsoft.com)
1166
+ - Render chevron icon for submenu trigger ([PR #17629](https://github.com/microsoft/fluentui/pull/17629) by lingfan.gao@microsoft.com)
1167
+
1168
+ ## [0.13.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.13.0)
1169
+
1170
+ Wed, 31 Mar 2021 00:53:43 GMT
1171
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.12.1..@fluentui/react-menu_v0.13.0)
1172
+
1173
+ ### Minor changes
1174
+
1175
+ - Add keyboard interactions for nested menus ([PR #17572](https://github.com/microsoft/fluentui/pull/17572) by lingfan.gao@microsoft.com)
1176
+
1177
+ ### Patches
1178
+
1179
+ - mergeProps was updated to improve type checking; use compat layer until type errors can be fixed ([PR #17508](https://github.com/microsoft/fluentui/pull/17508) by behowell@microsoft.com)
1180
+ - Bump @fluentui/eslint-plugin to v1.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1181
+ - Bump @fluentui/keyboard-key to v0.2.16 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1182
+ - Bump @fluentui/react-conformance to v0.2.5 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1183
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1184
+
1185
+ ### Changes
1186
+
1187
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.14 ([PR #17508](https://github.com/microsoft/fluentui/pull/17508) by behowell@microsoft.com)
1188
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.5 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1189
+ - Bump @fluentui/react-provider to v9.0.0-alpha.17 ([PR #17508](https://github.com/microsoft/fluentui/pull/17508) by behowell@microsoft.com)
1190
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.2 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1191
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.13 ([PR #17508](https://github.com/microsoft/fluentui/pull/17508) by behowell@microsoft.com)
1192
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.17 ([PR #17549](https://github.com/microsoft/fluentui/pull/17549) by olfedias@microsoft.com)
1193
+
1194
+ ## [0.12.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.12.1)
1195
+
1196
+ Tue, 30 Mar 2021 07:34:45 GMT
1197
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.12.0..@fluentui/react-menu_v0.12.1)
1198
+
1199
+ ### Patches
1200
+
1201
+ - chore: restore "sideEffects" to enable treeshaking ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
1202
+ - Bump react-context-selector to v9 ([PR #17350](https://github.com/microsoft/fluentui/pull/17350) by lingfan.gao@microsoft.com)
1203
+
1204
+ ### Changes
1205
+
1206
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.1 ([PR #17350](https://github.com/microsoft/fluentui/pull/17350) by lingfan.gao@microsoft.com)
1207
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.12 ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
1208
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.16 ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
1209
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.4 ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
1210
+ - Bump @fluentui/react-provider to v9.0.0-alpha.16 ([PR #17586](https://github.com/microsoft/fluentui/pull/17586) by bsunderhus@microsoft.com)
1211
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.13 ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
1212
+
1213
+ ## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.12.0)
1214
+
1215
+ Fri, 26 Mar 2021 07:32:34 GMT
1216
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.11.0..@fluentui/react-menu_v0.12.0)
1217
+
1218
+ ### Minor changes
1219
+
1220
+ - Support mouse interactions for nested menus ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com)
1221
+
1222
+ ### Changes
1223
+
1224
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.12 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com)
1225
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.11 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com)
1226
+ - Bump @fluentui/react-provider to v9.0.0-alpha.15 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com)
1227
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.15 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com)
1228
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.3 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com)
1229
+
1230
+ ## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.11.0)
1231
+
1232
+ Thu, 25 Mar 2021 07:33:24 GMT
1233
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.11.0..@fluentui/react-menu_v0.11.0)
1234
+
1235
+ ### Changes
1236
+
1237
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.14 ([PR #17539](https://github.com/microsoft/fluentui/pull/17539) by olfedias@microsoft.com)
1238
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.11 ([PR #17528](https://github.com/microsoft/fluentui/pull/17528) by lingfan.gao@microsoft.com)
1239
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.10 ([PR #17528](https://github.com/microsoft/fluentui/pull/17528) by lingfan.gao@microsoft.com)
1240
+ - Bump @fluentui/react-provider to v9.0.0-alpha.14 ([PR #17528](https://github.com/microsoft/fluentui/pull/17528) by lingfan.gao@microsoft.com)
1241
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.2 ([PR #17528](https://github.com/microsoft/fluentui/pull/17528) by lingfan.gao@microsoft.com)
1242
+
1243
+ ## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.11.0)
1244
+
1245
+ Tue, 23 Mar 2021 07:31:43 GMT
1246
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.10.0..@fluentui/react-menu_v0.11.0)
1247
+
1248
+ ### Minor changes
1249
+
1250
+ - Use positioning for Menu ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
1251
+
1252
+ ### Changes
1253
+
1254
+ - Bump @fluentui/react-positioning to v9.0.0-alpha.1 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
1255
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.10 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
1256
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.9 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
1257
+ - Bump @fluentui/react-provider to v9.0.0-alpha.13 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
1258
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.13 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
1259
+
1260
+ ## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.10.0)
1261
+
1262
+ Fri, 19 Mar 2021 07:32:43 GMT
1263
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.9.0..@fluentui/react-menu_v0.10.0)
1264
+
1265
+ ### Minor changes
1266
+
1267
+ - react-menu - Updates styles from makeStylesCompat to makeStyles ([PR #17439](https://github.com/microsoft/fluentui/pull/17439) by bsunderhus@microsoft.com)
1268
+
1269
+ ## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.9.0)
1270
+
1271
+ Thu, 18 Mar 2021 20:15:34 GMT
1272
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.8.3..@fluentui/react-menu_v0.9.0)
1273
+
1274
+ ### Minor changes
1275
+
1276
+ - Add menu open interactions ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com)
1277
+
1278
+ ### Changes
1279
+
1280
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.9 ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com)
1281
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.8 ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com)
1282
+ - Bump @fluentui/react-provider to v9.0.0-alpha.12 ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com)
1283
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.12 ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com)
1284
+
1285
+ ## [0.8.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.8.3)
1286
+
1287
+ Tue, 16 Mar 2021 07:32:44 GMT
1288
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.8.2..@fluentui/react-menu_v0.8.3)
1289
+
1290
+ ### Patches
1291
+
1292
+ - Bump @fluentui/react-conformance to v0.2.4 ([PR #17418](https://github.com/microsoft/fluentui/pull/17418) by elcraig@microsoft.com)
1293
+
1294
+ ### Changes
1295
+
1296
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.11 ([PR #17418](https://github.com/microsoft/fluentui/pull/17418) by elcraig@microsoft.com)
1297
+
1298
+ ## [0.8.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.8.2)
1299
+
1300
+ Mon, 15 Mar 2021 07:36:20 GMT
1301
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.8.1..@fluentui/react-menu_v0.8.2)
1302
+
1303
+ ### Patches
1304
+
1305
+ - Remove set-version references ([PR #17381](https://github.com/microsoft/fluentui/pull/17381) by elcraig@microsoft.com)
1306
+
1307
+ ## [0.8.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.8.1)
1308
+
1309
+ Fri, 12 Mar 2021 20:04:27 GMT
1310
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.8.0..@fluentui/react-menu_v0.8.1)
1311
+
1312
+ ### Patches
1313
+
1314
+ - Change makeStyles to makeStylesCompat ([PR #17354](https://github.com/microsoft/fluentui/pull/17354) by bsunderhus@microsoft.com)
1315
+
1316
+ ### Changes
1317
+
1318
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.9 ([PR #17373](https://github.com/microsoft/fluentui/pull/17373) by elcraig@microsoft.com)
1319
+
1320
+ ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.8.0)
1321
+
1322
+ Wed, 10 Mar 2021 07:34:39 GMT
1323
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.8.0..@fluentui/react-menu_v0.8.0)
1324
+
1325
+ ### Changes
1326
+
1327
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.7 ([PR #17293](https://github.com/microsoft/fluentui/pull/17293) by lingfan.gao@microsoft.com)
1328
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.6 ([PR #17293](https://github.com/microsoft/fluentui/pull/17293) by lingfan.gao@microsoft.com)
1329
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.8 ([PR #17293](https://github.com/microsoft/fluentui/pull/17293) by lingfan.gao@microsoft.com)
1330
+
1331
+ ## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.8.0)
1332
+
1333
+ Sun, 07 Mar 2021 23:34:51 GMT
1334
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.7.0..@fluentui/react-menu_v0.8.0)
1335
+
1336
+ ### Minor changes
1337
+
1338
+ - Add Menu, MenuTrigger components ([PR #17271](https://github.com/microsoft/fluentui/pull/17271) by lingfan.gao@microsoft.com)
1339
+
1340
+ ## [0.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.7.0)
1341
+
1342
+ Fri, 05 Mar 2021 20:30:59 GMT
1343
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.7.0..@fluentui/react-menu_v0.7.0)
1344
+
1345
+ ### Changes
1346
+
1347
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.6 ([PR #17273](https://github.com/microsoft/fluentui/pull/17273) by lingfan.gao@microsoft.com)
1348
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.5 ([PR #17273](https://github.com/microsoft/fluentui/pull/17273) by lingfan.gao@microsoft.com)
1349
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.7 ([PR #17273](https://github.com/microsoft/fluentui/pull/17273) by lingfan.gao@microsoft.com)
1350
+
1351
+ ## [0.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.7.0)
1352
+
1353
+ Wed, 03 Mar 2021 00:10:09 GMT
1354
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.6.1..@fluentui/react-menu_v0.7.0)
1355
+
1356
+ ### Minor changes
1357
+
1358
+ - Allow menu to be used uncontrolled ([PR #17176](https://github.com/microsoft/fluentui/pull/17176) by lingfan.gao@microsoft.com)
1359
+
1360
+ ### Patches
1361
+
1362
+ - Remove set-version dependency from converged components ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com)
1363
+
1364
+ ### Changes
1365
+
1366
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.5 ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com)
1367
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.4 ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com)
1368
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.6 ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com)
1369
+
1370
+ ## [0.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.6.1)
1371
+
1372
+ Tue, 02 Mar 2021 07:24:27 GMT
1373
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.6.1..@fluentui/react-menu_v0.6.1)
1374
+
1375
+ ### Changes
1376
+
1377
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.5 ([PR #17131](https://github.com/microsoft/fluentui/pull/17131) by behowell@microsoft.com)
1378
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.4 ([PR #17197](https://github.com/microsoft/fluentui/pull/17197) by olfedias@microsoft.com)
1379
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.3 ([PR #17197](https://github.com/microsoft/fluentui/pull/17197) by olfedias@microsoft.com)
1380
+
1381
+ ## [0.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.6.1)
1382
+
1383
+ Fri, 26 Feb 2021 01:16:27 GMT
1384
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.6.0..@fluentui/react-menu_v0.6.1)
1385
+
1386
+ ### Patches
1387
+
1388
+ - Update references to major-bumped packages ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1389
+
1390
+ ### Changes
1391
+
1392
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.2 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1393
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.4 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1394
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.3 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
1395
+
1396
+ ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.6.0)
1397
+
1398
+ Thu, 25 Feb 2021 20:16:39 GMT
1399
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.6.0..@fluentui/react-menu_v0.6.0)
1400
+
1401
+ ### Changes
1402
+
1403
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.3 ([PR #17085](https://github.com/microsoft/fluentui/pull/17085) by humbertomakotomorimoto@gmail.com)
1404
+
1405
+ ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.6.0)
1406
+
1407
+ Thu, 25 Feb 2021 01:15:27 GMT
1408
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.5.1..@fluentui/react-menu_v0.6.0)
1409
+
1410
+ ### Minor changes
1411
+
1412
+ - Refactor selection logic with context selector ([PR #17113](https://github.com/microsoft/fluentui/pull/17113) by lingfan.gao@microsoft.com)
1413
+
1414
+ ### Patches
1415
+
1416
+ - Support keyboard navigation ([PR #17137](https://github.com/microsoft/fluentui/pull/17137) by lingfan.gao@microsoft.com)
1417
+ - Bump @fluentui/react-conformance to v0.2.1 ([PR #17118](https://github.com/microsoft/fluentui/pull/17118) by altinokd@microsoft.com)
1418
+
1419
+ ### Changes
1420
+
1421
+ - Bump @fluentui/react-focus-management to v9.0.0-alpha.1 ([PR #17137](https://github.com/microsoft/fluentui/pull/17137) by lingfan.gao@microsoft.com)
1422
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.2 ([PR #17157](https://github.com/microsoft/fluentui/pull/17157) by olfedias@microsoft.com)
1423
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.2 ([PR #17113](https://github.com/microsoft/fluentui/pull/17113) by lingfan.gao@microsoft.com)
1424
+
1425
+ ## [0.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.5.1)
1426
+
1427
+ Wed, 24 Feb 2021 00:05:29 GMT
1428
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.5.0..@fluentui/react-menu_v0.5.1)
1429
+
1430
+ ### Patches
1431
+
1432
+ - bump dependencies to v9 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com)
1433
+
1434
+ ### Changes
1435
+
1436
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.1 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com)
1437
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.1 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com)
1438
+
1439
+ ## [0.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.5.0)
1440
+
1441
+ Mon, 22 Feb 2021 12:26:22 GMT
1442
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.4.2..@fluentui/react-menu_v0.5.0)
1443
+
1444
+ ### Minor changes
1445
+
1446
+ - Breaks dependency on react-hooks for convergence ([PR #17091](https://github.com/microsoft/fluentui/pull/17091) by lingfan.gao@microsoft.com)
1447
+
1448
+ ### Patches
1449
+
1450
+ - Bump @fluentui/react-make-styles to v0.2.8 ([PR #17061](https://github.com/microsoft/fluentui/pull/17061) by elcraig@microsoft.com)
1451
+ - Bump @fluentui/react-theme to v0.3.3 ([PR #17061](https://github.com/microsoft/fluentui/pull/17061) by elcraig@microsoft.com)
1452
+
1453
+ ### Changes
1454
+
1455
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.27 ([PR #17061](https://github.com/microsoft/fluentui/pull/17061) by elcraig@microsoft.com)
1456
+
1457
+ ## [0.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.4.2)
1458
+
1459
+ Thu, 18 Feb 2021 19:38:50 GMT
1460
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.4.1..@fluentui/react-menu_v0.4.2)
1461
+
1462
+ ### Patches
1463
+
1464
+ - Allow React 17 in peerDependencies ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
1465
+
1466
+ ### Changes
1467
+
1468
+ - Bump @fluentui/react-hooks to v8.0.0-beta.14 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
1469
+ - Bump @fluentui/react-make-styles to v0.2.7 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
1470
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.26 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
1471
+
1472
+ ## [0.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.4.1)
1473
+
1474
+ Thu, 18 Feb 2021 12:27:34 GMT
1475
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.4.0..@fluentui/react-menu_v0.4.1)
1476
+
1477
+ ### Patches
1478
+
1479
+ - use @fluentui/react-utilities instead of @fluentui/react-utils ([PR #16970](https://github.com/microsoft/fluentui/pull/16970) by olfedias@microsoft.com)
1480
+
1481
+ ### Changes
1482
+
1483
+ - Bump @fluentui/eslint-plugin to v1.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1484
+ - Bump @fluentui/react-hooks to v8.0.0-beta.13 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1485
+ - Bump @fluentui/react-make-styles to v0.2.7-0 ([PR #16970](https://github.com/microsoft/fluentui/pull/16970) by olfedias@microsoft.com)
1486
+ - Bump @fluentui/react-conformance to v1.0.0 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1487
+ - Bump @fluentui/set-version to v8.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1488
+ - Bump @fluentui/scripts to v1.0.0 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
1489
+
1490
+ ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.4.0)
1491
+
1492
+ Wed, 17 Feb 2021 12:21:39 GMT
1493
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.3.0..@fluentui/react-menu_v0.4.0)
1494
+
1495
+ ### Minor changes
1496
+
1497
+ - Add menu group, divider and section ([PR #16972](https://github.com/microsoft/fluentui/pull/16972) by lingfan.gao@microsoft.com)
1498
+
1499
+ ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.3.0)
1500
+
1501
+ Mon, 15 Feb 2021 12:22:00 GMT
1502
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.2.1..@fluentui/react-menu_v0.3.0)
1503
+
1504
+ ### Minor changes
1505
+
1506
+ - Add checkbox implementation for menu item ([PR #16888](https://github.com/microsoft/fluentui/pull/16888) by lingfan.gao@microsoft.com)
1507
+
1508
+ ### Patches
1509
+
1510
+ - Bump @fluentui/react-make-styles to v0.2.6 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
1511
+
1512
+ ### Changes
1513
+
1514
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.24 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
1515
+ - Bump @fluentui/react-hooks to v8.0.0-beta.12 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
1516
+ - Bump @fluentui/react-utils to v0.3.2-0 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
1517
+
1518
+ ## [0.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.2.1)
1519
+
1520
+ Fri, 12 Feb 2021 12:26:20 GMT
1521
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.2.0..@fluentui/react-menu_v0.2.1)
1522
+
1523
+ ### Patches
1524
+
1525
+ - Updated typings ([PR #16902](https://github.com/microsoft/fluentui/pull/16902) by lingfan.gao@microsoft.com)
1526
+
1527
+ ### Changes
1528
+
1529
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.23 ([PR #16945](https://github.com/microsoft/fluentui/pull/16945) by lingfan.gao@microsoft.com)
1530
+ - Bump @fluentui/react-make-styles to v0.2.5 ([PR #16945](https://github.com/microsoft/fluentui/pull/16945) by lingfan.gao@microsoft.com)
1531
+
1532
+ ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.2.0)
1533
+
1534
+ Thu, 11 Feb 2021 00:58:10 GMT
1535
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.2.0..@fluentui/react-menu_v0.2.0)
1536
+
1537
+ ### Changes
1538
+
1539
+ - Bump @fluentui/react-hooks to v8.0.0-beta.11 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
1540
+ - Bump @fluentui/react-make-styles to v0.2.5-0 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
1541
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.22 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
1542
+ - Bump @fluentui/react-utils to v0.3.1-0 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
1543
+
1544
+ ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.2.0)
1545
+
1546
+ Tue, 09 Feb 2021 00:56:52 GMT
1547
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-menu_v0.1.0..@fluentui/react-menu_v0.2.0)
1548
+
1549
+ ### Minor changes
1550
+
1551
+ - Add MenuList and MenuItem components ([PR #16865](https://github.com/microsoft/fluentui/pull/16865) by lingfan.gao@microsoft.com)
1552
+
1553
+ ### Patches
1554
+
1555
+ - Bump @fluentui/react-theme to v0.3.1 ([PR #16869](https://github.com/microsoft/fluentui/pull/16869) by olfedias@microsoft.com)
1556
+ - Bump @fluentui/react-make-styles to v0.2.4 ([PR #16865](https://github.com/microsoft/fluentui/pull/16865) by lingfan.gao@microsoft.com)
1557
+ - Bump @fluentui/react-utils to v0.3.0 ([PR #16865](https://github.com/microsoft/fluentui/pull/16865) by lingfan.gao@microsoft.com)
1558
+
1559
+ ### Changes
1560
+
1561
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.21 ([PR #16865](https://github.com/microsoft/fluentui/pull/16865) by lingfan.gao@microsoft.com)
1562
+
1563
+ ## [0.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-menu_v0.1.0)
1564
+
1565
+ Mon, 08 Feb 2021 12:23:08 GMT
1566
+
1567
+ ### Changes
1568
+
1569
+ - Bump @fluentui/react-theme-provider to v1.0.0-beta.20 ([PR #16844](https://github.com/microsoft/fluentui/pull/16844) by miroslav.stastny@microsoft.com)