@fluentui/react-accordion 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 (218) hide show
  1. package/CHANGELOG.json +3236 -0
  2. package/CHANGELOG.md +1098 -0
  3. package/LICENSE +15 -0
  4. package/README.md +5 -0
  5. package/Spec.md +447 -0
  6. package/dist/react-accordion.d.ts +264 -0
  7. package/lib/Accordion.d.ts +1 -0
  8. package/lib/Accordion.js +2 -0
  9. package/lib/Accordion.js.map +1 -0
  10. package/lib/AccordionHeader.d.ts +1 -0
  11. package/lib/AccordionHeader.js +2 -0
  12. package/lib/AccordionHeader.js.map +1 -0
  13. package/lib/AccordionItem.d.ts +1 -0
  14. package/lib/AccordionItem.js +2 -0
  15. package/lib/AccordionItem.js.map +1 -0
  16. package/lib/AccordionPanel.d.ts +1 -0
  17. package/lib/AccordionPanel.js +2 -0
  18. package/lib/AccordionPanel.js.map +1 -0
  19. package/lib/components/Accordion/Accordion.d.ts +6 -0
  20. package/lib/components/Accordion/Accordion.js +17 -0
  21. package/lib/components/Accordion/Accordion.js.map +1 -0
  22. package/lib/components/Accordion/Accordion.types.d.ts +54 -0
  23. package/lib/components/Accordion/Accordion.types.js +2 -0
  24. package/lib/components/Accordion/Accordion.types.js.map +1 -0
  25. package/lib/components/Accordion/AccordionContext.d.ts +3 -0
  26. package/lib/components/Accordion/AccordionContext.js +11 -0
  27. package/lib/components/Accordion/AccordionContext.js.map +1 -0
  28. package/lib/components/Accordion/index.d.ts +7 -0
  29. package/lib/components/Accordion/index.js +8 -0
  30. package/lib/components/Accordion/index.js.map +1 -0
  31. package/lib/components/Accordion/renderAccordion.d.ts +5 -0
  32. package/lib/components/Accordion/renderAccordion.js +18 -0
  33. package/lib/components/Accordion/renderAccordion.js.map +1 -0
  34. package/lib/components/Accordion/useAccordion.d.ts +8 -0
  35. package/lib/components/Accordion/useAccordion.js +108 -0
  36. package/lib/components/Accordion/useAccordion.js.map +1 -0
  37. package/lib/components/Accordion/useAccordionContextValues.d.ts +2 -0
  38. package/lib/components/Accordion/useAccordionContextValues.js +19 -0
  39. package/lib/components/Accordion/useAccordionContextValues.js.map +1 -0
  40. package/lib/components/Accordion/useAccordionStyles.d.ts +3 -0
  41. package/lib/components/Accordion/useAccordionStyles.js +7 -0
  42. package/lib/components/Accordion/useAccordionStyles.js.map +1 -0
  43. package/lib/components/AccordionHeader/AccordionHeader.d.ts +7 -0
  44. package/lib/components/AccordionHeader/AccordionHeader.js +18 -0
  45. package/lib/components/AccordionHeader/AccordionHeader.js.map +1 -0
  46. package/lib/components/AccordionHeader/AccordionHeader.types.d.ts +48 -0
  47. package/lib/components/AccordionHeader/AccordionHeader.types.js +2 -0
  48. package/lib/components/AccordionHeader/AccordionHeader.types.js.map +1 -0
  49. package/lib/components/AccordionHeader/AccordionHeaderContext.d.ts +4 -0
  50. package/lib/components/AccordionHeader/AccordionHeaderContext.js +9 -0
  51. package/lib/components/AccordionHeader/AccordionHeaderContext.js.map +1 -0
  52. package/lib/components/AccordionHeader/index.d.ts +6 -0
  53. package/lib/components/AccordionHeader/index.js +7 -0
  54. package/lib/components/AccordionHeader/index.js.map +1 -0
  55. package/lib/components/AccordionHeader/renderAccordionHeader.d.ts +5 -0
  56. package/lib/components/AccordionHeader/renderAccordionHeader.js +22 -0
  57. package/lib/components/AccordionHeader/renderAccordionHeader.js.map +1 -0
  58. package/lib/components/AccordionHeader/useAccordionHeader.d.ts +8 -0
  59. package/lib/components/AccordionHeader/useAccordionHeader.js +97 -0
  60. package/lib/components/AccordionHeader/useAccordionHeader.js.map +1 -0
  61. package/lib/components/AccordionHeader/useAccordionHeaderContextValues.d.ts +2 -0
  62. package/lib/components/AccordionHeader/useAccordionHeaderContextValues.js +19 -0
  63. package/lib/components/AccordionHeader/useAccordionHeaderContextValues.js.map +1 -0
  64. package/lib/components/AccordionHeader/useAccordionHeaderStyles.d.ts +4 -0
  65. package/lib/components/AccordionHeader/useAccordionHeaderStyles.js +141 -0
  66. package/lib/components/AccordionHeader/useAccordionHeaderStyles.js.map +1 -0
  67. package/lib/components/AccordionItem/AccordionItem.d.ts +6 -0
  68. package/lib/components/AccordionItem/AccordionItem.js +17 -0
  69. package/lib/components/AccordionItem/AccordionItem.js.map +1 -0
  70. package/lib/components/AccordionItem/AccordionItem.types.d.ts +26 -0
  71. package/lib/components/AccordionItem/AccordionItem.types.js +2 -0
  72. package/lib/components/AccordionItem/AccordionItem.types.js.map +1 -0
  73. package/lib/components/AccordionItem/AccordionItemContext.d.ts +4 -0
  74. package/lib/components/AccordionItem/AccordionItemContext.js +12 -0
  75. package/lib/components/AccordionItem/AccordionItemContext.js.map +1 -0
  76. package/lib/components/AccordionItem/index.d.ts +7 -0
  77. package/lib/components/AccordionItem/index.js +8 -0
  78. package/lib/components/AccordionItem/index.js.map +1 -0
  79. package/lib/components/AccordionItem/renderAccordionItem.d.ts +5 -0
  80. package/lib/components/AccordionItem/renderAccordionItem.js +18 -0
  81. package/lib/components/AccordionItem/renderAccordionItem.js.map +1 -0
  82. package/lib/components/AccordionItem/useAccordionItem.d.ts +8 -0
  83. package/lib/components/AccordionItem/useAccordionItem.js +39 -0
  84. package/lib/components/AccordionItem/useAccordionItem.js.map +1 -0
  85. package/lib/components/AccordionItem/useAccordionItemContextValues.d.ts +2 -0
  86. package/lib/components/AccordionItem/useAccordionItemContextValues.js +17 -0
  87. package/lib/components/AccordionItem/useAccordionItemContextValues.js.map +1 -0
  88. package/lib/components/AccordionItem/useAccordionItemStyles.d.ts +3 -0
  89. package/lib/components/AccordionItem/useAccordionItemStyles.js +7 -0
  90. package/lib/components/AccordionItem/useAccordionItemStyles.js.map +1 -0
  91. package/lib/components/AccordionPanel/AccordionPanel.d.ts +6 -0
  92. package/lib/components/AccordionPanel/AccordionPanel.js +15 -0
  93. package/lib/components/AccordionPanel/AccordionPanel.js.map +1 -0
  94. package/lib/components/AccordionPanel/AccordionPanel.types.d.ts +11 -0
  95. package/lib/components/AccordionPanel/AccordionPanel.types.js +2 -0
  96. package/lib/components/AccordionPanel/AccordionPanel.types.js.map +1 -0
  97. package/lib/components/AccordionPanel/index.d.ts +5 -0
  98. package/lib/components/AccordionPanel/index.js +6 -0
  99. package/lib/components/AccordionPanel/index.js.map +1 -0
  100. package/lib/components/AccordionPanel/renderAccordionPanel.d.ts +5 -0
  101. package/lib/components/AccordionPanel/renderAccordionPanel.js +15 -0
  102. package/lib/components/AccordionPanel/renderAccordionPanel.js.map +1 -0
  103. package/lib/components/AccordionPanel/useAccordionPanel.d.ts +8 -0
  104. package/lib/components/AccordionPanel/useAccordionPanel.js +24 -0
  105. package/lib/components/AccordionPanel/useAccordionPanel.js.map +1 -0
  106. package/lib/components/AccordionPanel/useAccordionPanelStyles.d.ts +4 -0
  107. package/lib/components/AccordionPanel/useAccordionPanelStyles.js +23 -0
  108. package/lib/components/AccordionPanel/useAccordionPanelStyles.js.map +1 -0
  109. package/lib/index.d.ts +4 -0
  110. package/lib/index.js +5 -0
  111. package/lib/index.js.map +1 -0
  112. package/lib/tsdoc-metadata.json +11 -0
  113. package/lib-commonjs/Accordion.d.ts +1 -0
  114. package/lib-commonjs/Accordion.js +10 -0
  115. package/lib-commonjs/Accordion.js.map +1 -0
  116. package/lib-commonjs/AccordionHeader.d.ts +1 -0
  117. package/lib-commonjs/AccordionHeader.js +10 -0
  118. package/lib-commonjs/AccordionHeader.js.map +1 -0
  119. package/lib-commonjs/AccordionItem.d.ts +1 -0
  120. package/lib-commonjs/AccordionItem.js +10 -0
  121. package/lib-commonjs/AccordionItem.js.map +1 -0
  122. package/lib-commonjs/AccordionPanel.d.ts +1 -0
  123. package/lib-commonjs/AccordionPanel.js +10 -0
  124. package/lib-commonjs/AccordionPanel.js.map +1 -0
  125. package/lib-commonjs/components/Accordion/Accordion.d.ts +6 -0
  126. package/lib-commonjs/components/Accordion/Accordion.js +29 -0
  127. package/lib-commonjs/components/Accordion/Accordion.js.map +1 -0
  128. package/lib-commonjs/components/Accordion/Accordion.types.d.ts +54 -0
  129. package/lib-commonjs/components/Accordion/Accordion.types.js +6 -0
  130. package/lib-commonjs/components/Accordion/Accordion.types.js.map +1 -0
  131. package/lib-commonjs/components/Accordion/AccordionContext.d.ts +3 -0
  132. package/lib-commonjs/components/Accordion/AccordionContext.js +19 -0
  133. package/lib-commonjs/components/Accordion/AccordionContext.js.map +1 -0
  134. package/lib-commonjs/components/Accordion/index.d.ts +7 -0
  135. package/lib-commonjs/components/Accordion/index.js +22 -0
  136. package/lib-commonjs/components/Accordion/index.js.map +1 -0
  137. package/lib-commonjs/components/Accordion/renderAccordion.d.ts +5 -0
  138. package/lib-commonjs/components/Accordion/renderAccordion.js +30 -0
  139. package/lib-commonjs/components/Accordion/renderAccordion.js.map +1 -0
  140. package/lib-commonjs/components/Accordion/useAccordion.d.ts +8 -0
  141. package/lib-commonjs/components/Accordion/useAccordion.js +120 -0
  142. package/lib-commonjs/components/Accordion/useAccordion.js.map +1 -0
  143. package/lib-commonjs/components/Accordion/useAccordionContextValues.d.ts +2 -0
  144. package/lib-commonjs/components/Accordion/useAccordionContextValues.js +28 -0
  145. package/lib-commonjs/components/Accordion/useAccordionContextValues.js.map +1 -0
  146. package/lib-commonjs/components/Accordion/useAccordionStyles.d.ts +3 -0
  147. package/lib-commonjs/components/Accordion/useAccordionStyles.js +18 -0
  148. package/lib-commonjs/components/Accordion/useAccordionStyles.js.map +1 -0
  149. package/lib-commonjs/components/AccordionHeader/AccordionHeader.d.ts +7 -0
  150. package/lib-commonjs/components/AccordionHeader/AccordionHeader.js +30 -0
  151. package/lib-commonjs/components/AccordionHeader/AccordionHeader.js.map +1 -0
  152. package/lib-commonjs/components/AccordionHeader/AccordionHeader.types.d.ts +48 -0
  153. package/lib-commonjs/components/AccordionHeader/AccordionHeader.types.js +6 -0
  154. package/lib-commonjs/components/AccordionHeader/AccordionHeader.types.js.map +1 -0
  155. package/lib-commonjs/components/AccordionHeader/AccordionHeaderContext.d.ts +4 -0
  156. package/lib-commonjs/components/AccordionHeader/AccordionHeaderContext.js +20 -0
  157. package/lib-commonjs/components/AccordionHeader/AccordionHeaderContext.js.map +1 -0
  158. package/lib-commonjs/components/AccordionHeader/index.d.ts +6 -0
  159. package/lib-commonjs/components/AccordionHeader/index.js +20 -0
  160. package/lib-commonjs/components/AccordionHeader/index.js.map +1 -0
  161. package/lib-commonjs/components/AccordionHeader/renderAccordionHeader.d.ts +5 -0
  162. package/lib-commonjs/components/AccordionHeader/renderAccordionHeader.js +34 -0
  163. package/lib-commonjs/components/AccordionHeader/renderAccordionHeader.js.map +1 -0
  164. package/lib-commonjs/components/AccordionHeader/useAccordionHeader.d.ts +8 -0
  165. package/lib-commonjs/components/AccordionHeader/useAccordionHeader.js +114 -0
  166. package/lib-commonjs/components/AccordionHeader/useAccordionHeader.js.map +1 -0
  167. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderContextValues.d.ts +2 -0
  168. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderContextValues.js +29 -0
  169. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderContextValues.js.map +1 -0
  170. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderStyles.d.ts +4 -0
  171. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderStyles.js +153 -0
  172. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderStyles.js.map +1 -0
  173. package/lib-commonjs/components/AccordionItem/AccordionItem.d.ts +6 -0
  174. package/lib-commonjs/components/AccordionItem/AccordionItem.js +29 -0
  175. package/lib-commonjs/components/AccordionItem/AccordionItem.js.map +1 -0
  176. package/lib-commonjs/components/AccordionItem/AccordionItem.types.d.ts +26 -0
  177. package/lib-commonjs/components/AccordionItem/AccordionItem.types.js +6 -0
  178. package/lib-commonjs/components/AccordionItem/AccordionItem.types.js.map +1 -0
  179. package/lib-commonjs/components/AccordionItem/AccordionItemContext.d.ts +4 -0
  180. package/lib-commonjs/components/AccordionItem/AccordionItemContext.js +23 -0
  181. package/lib-commonjs/components/AccordionItem/AccordionItemContext.js.map +1 -0
  182. package/lib-commonjs/components/AccordionItem/index.d.ts +7 -0
  183. package/lib-commonjs/components/AccordionItem/index.js +22 -0
  184. package/lib-commonjs/components/AccordionItem/index.js.map +1 -0
  185. package/lib-commonjs/components/AccordionItem/renderAccordionItem.d.ts +5 -0
  186. package/lib-commonjs/components/AccordionItem/renderAccordionItem.js +30 -0
  187. package/lib-commonjs/components/AccordionItem/renderAccordionItem.js.map +1 -0
  188. package/lib-commonjs/components/AccordionItem/useAccordionItem.d.ts +8 -0
  189. package/lib-commonjs/components/AccordionItem/useAccordionItem.js +53 -0
  190. package/lib-commonjs/components/AccordionItem/useAccordionItem.js.map +1 -0
  191. package/lib-commonjs/components/AccordionItem/useAccordionItemContextValues.d.ts +2 -0
  192. package/lib-commonjs/components/AccordionItem/useAccordionItemContextValues.js +27 -0
  193. package/lib-commonjs/components/AccordionItem/useAccordionItemContextValues.js.map +1 -0
  194. package/lib-commonjs/components/AccordionItem/useAccordionItemStyles.d.ts +3 -0
  195. package/lib-commonjs/components/AccordionItem/useAccordionItemStyles.js +18 -0
  196. package/lib-commonjs/components/AccordionItem/useAccordionItemStyles.js.map +1 -0
  197. package/lib-commonjs/components/AccordionPanel/AccordionPanel.d.ts +6 -0
  198. package/lib-commonjs/components/AccordionPanel/AccordionPanel.js +26 -0
  199. package/lib-commonjs/components/AccordionPanel/AccordionPanel.js.map +1 -0
  200. package/lib-commonjs/components/AccordionPanel/AccordionPanel.types.d.ts +11 -0
  201. package/lib-commonjs/components/AccordionPanel/AccordionPanel.types.js +6 -0
  202. package/lib-commonjs/components/AccordionPanel/AccordionPanel.types.js.map +1 -0
  203. package/lib-commonjs/components/AccordionPanel/index.d.ts +5 -0
  204. package/lib-commonjs/components/AccordionPanel/index.js +18 -0
  205. package/lib-commonjs/components/AccordionPanel/index.js.map +1 -0
  206. package/lib-commonjs/components/AccordionPanel/renderAccordionPanel.d.ts +5 -0
  207. package/lib-commonjs/components/AccordionPanel/renderAccordionPanel.js +26 -0
  208. package/lib-commonjs/components/AccordionPanel/renderAccordionPanel.js.map +1 -0
  209. package/lib-commonjs/components/AccordionPanel/useAccordionPanel.d.ts +8 -0
  210. package/lib-commonjs/components/AccordionPanel/useAccordionPanel.js +35 -0
  211. package/lib-commonjs/components/AccordionPanel/useAccordionPanel.js.map +1 -0
  212. package/lib-commonjs/components/AccordionPanel/useAccordionPanelStyles.d.ts +4 -0
  213. package/lib-commonjs/components/AccordionPanel/useAccordionPanelStyles.js +33 -0
  214. package/lib-commonjs/components/AccordionPanel/useAccordionPanelStyles.js.map +1 -0
  215. package/lib-commonjs/index.d.ts +4 -0
  216. package/lib-commonjs/index.js +16 -0
  217. package/lib-commonjs/index.js.map +1 -0
  218. package/package.json +67 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1098 @@
1
+ # Change Log - @fluentui/react-accordion
2
+
3
+ This log was last generated on Wed, 02 Mar 2022 04:14:51 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-accordion_v0.0.0-nightly-20220302-0405.1)
8
+
9
+ Wed, 02 Mar 2022 04:14:51 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-rc.4..@fluentui/react-accordion_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/react-aria 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-tabster to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
18
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
19
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
20
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
21
+
22
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-rc.4)
23
+
24
+ Tue, 01 Mar 2022 02:17:40 GMT
25
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-rc.3..@fluentui/react-accordion_v9.0.0-rc.4)
26
+
27
+ ### Changes
28
+
29
+ - Bump @fluentui/react-aria to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
30
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
31
+ - Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
32
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
33
+
34
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-rc.3)
35
+
36
+ Fri, 18 Feb 2022 13:35:37 GMT
37
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-rc.1..@fluentui/react-accordion_v9.0.0-rc.3)
38
+
39
+ ### Changes
40
+
41
+ - Updates initial open items value to be empty on every case ([PR #21728](https://github.com/microsoft/fluentui/pull/21728) by bsunderhus@microsoft.com)
42
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
43
+ - Breaking change: navigable becomes navigation ([PR #21729](https://github.com/microsoft/fluentui/pull/21729) by bsunderhus@microsoft.com)
44
+ - Bump @fluentui/react-aria to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
45
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
46
+ - Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
47
+ - Bump @fluentui/react-theme to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
48
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
49
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
50
+
51
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-rc.1)
52
+
53
+ Thu, 10 Feb 2022 08:52:11 GMT
54
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.5..@fluentui/react-accordion_v9.0.0-rc.1)
55
+
56
+ ### Changes
57
+
58
+ - update @fluentui/react-icons package ([PR #21498](https://github.com/microsoft/fluentui/pull/21498) by olfedias@microsoft.com)
59
+ - update styles to not use CSS shorthands ([PR #20800](https://github.com/microsoft/fluentui/pull/20800) by olfedias@microsoft.com)
60
+ - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
61
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
62
+ - Allow React 17 in peerDependencies. ([PR #21544](https://github.com/microsoft/fluentui/pull/21544) by tristan.watanabe@gmail.com)
63
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
64
+ - use Griffel packages ([PR #21394](https://github.com/microsoft/fluentui/pull/21394) by olfedias@microsoft.com)
65
+ - Using ComponentSlotProps instead of ObjectShorthandProps. ([PR #20890](https://github.com/microsoft/fluentui/pull/20890) by Humberto.Morimoto@microsoft.com)
66
+ - Removes children as a slot from AccordionHeader ([PR #21285](https://github.com/microsoft/fluentui/pull/21285) by bsunderhus@microsoft.com)
67
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
68
+ - update semantic elements and ARIA roles in react-accordion, add heading level story ([PR #21401](https://github.com/microsoft/fluentui/pull/21401) by sarah.higley@microsoft.com)
69
+ - Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@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 based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
72
+ - 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)
73
+ - Replacing use of functions in makeStyles with direct use of tokens. ([PR #21036](https://github.com/microsoft/fluentui/pull/21036) by Humberto.Morimoto@microsoft.com)
74
+ - Remove AccordionHeaderExpandIcon, and use ChevronRightRegular from @fluentui/react-icons instead ([PR #21218](https://github.com/microsoft/fluentui/pull/21218) by behowell@microsoft.com)
75
+ - Bump @fluentui/react-aria to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
76
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
77
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
78
+ - Bump @fluentui/react-theme to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
79
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
80
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
81
+
82
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.5)
83
+
84
+ Thu, 25 Nov 2021 08:34:10 GMT
85
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.4..@fluentui/react-accordion_v9.0.0-beta.5)
86
+
87
+ ### Changes
88
+
89
+ - Bump @fluentui/react-aria to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
90
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
91
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
92
+ - Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
93
+ - Bump @fluentui/react-theme to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
94
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
95
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
96
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
97
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
98
+
99
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.4)
100
+
101
+ Fri, 12 Nov 2021 13:25:12 GMT
102
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.3..@fluentui/react-accordion_v9.0.0-beta.4)
103
+
104
+ ### Changes
105
+
106
+ - export static classes for components ([PR #20451](https://github.com/microsoft/fluentui/pull/20451) by olfedias@microsoft.com)
107
+ - Updating AccordionHeader tests to match changes in useARIAButton. ([PR #20342](https://github.com/microsoft/fluentui/pull/20342) by Humberto.Morimoto@microsoft.com)
108
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
109
+ - Bump @fluentui/react-aria to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
110
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
111
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
112
+ - Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
113
+ - Bump @fluentui/react-theme to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
114
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
115
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
116
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
117
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
118
+
119
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.3)
120
+
121
+ Wed, 27 Oct 2021 12:14:12 GMT
122
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.2..@fluentui/react-accordion_v9.0.0-beta.3)
123
+
124
+ ### Changes
125
+
126
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
127
+ - Bump @fluentui/react-aria to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
128
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
129
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
130
+ - Bump @fluentui/react-tabster to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
131
+ - Bump @fluentui/react-theme to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
132
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
133
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
134
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
135
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
136
+
137
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.2)
138
+
139
+ Tue, 12 Oct 2021 19:45:58 GMT
140
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.1..@fluentui/react-accordion_v9.0.0-beta.2)
141
+
142
+ ### Changes
143
+
144
+ - Fix a11y errors on aria-expanded and disabled state ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by bsunderhus@microsoft.com)
145
+ - Bump @fluentui/react-tabster to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
146
+
147
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.1)
148
+
149
+ Wed, 06 Oct 2021 10:37:22 GMT
150
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.90..@fluentui/react-accordion_v9.0.0-beta.1)
151
+
152
+ ### Changes
153
+
154
+ - Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
155
+ - Bump @fluentui/react-aria to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
156
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
157
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
158
+ - Bump @fluentui/react-tabster to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
159
+ - Bump @fluentui/react-theme to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
160
+ - Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
161
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
162
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
163
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
164
+
165
+ ## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.90)
166
+
167
+ Tue, 05 Oct 2021 12:47:58 GMT
168
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.89..@fluentui/react-accordion_v9.0.0-alpha.90)
169
+
170
+ ### Changes
171
+
172
+ - Bump @fluentui/react-aria to v9.0.0-alpha.45 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
173
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.78 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
174
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.73 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
175
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.60 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
176
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
177
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.22 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
178
+
179
+ ## [9.0.0-alpha.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.89)
180
+
181
+ Tue, 05 Oct 2021 09:28:07 GMT
182
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.88..@fluentui/react-accordion_v9.0.0-alpha.89)
183
+
184
+ ### Changes
185
+
186
+ - Adds ForwardRefComponent to components declaration ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
187
+ - Bump @fluentui/react-aria to v9.0.0-alpha.44 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
188
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.39 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
189
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
190
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.72 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
191
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
192
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.59 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
193
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
194
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
195
+
196
+ ## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.88)
197
+
198
+ Fri, 01 Oct 2021 14:13:08 GMT
199
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.86..@fluentui/react-accordion_v9.0.0-alpha.88)
200
+
201
+ ### Changes
202
+
203
+ - Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
204
+ - Bump @fluentui/react-aria to v9.0.0-alpha.43 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
205
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.38 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
206
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.76 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
207
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.71 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
208
+ - Bump @fluentui/react-theme to v9.0.0-alpha.26 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
209
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.55 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
210
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.58 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
211
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
212
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
213
+
214
+ ## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.86)
215
+
216
+ Fri, 01 Oct 2021 12:30:46 GMT
217
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.85..@fluentui/react-accordion_v9.0.0-alpha.86)
218
+
219
+ ### Changes
220
+
221
+ - Updating API to reflect aria button changes. ([PR #18814](https://github.com/microsoft/fluentui/pull/18814) by Humberto.Morimoto@microsoft.com)
222
+ - Bump @fluentui/react-aria to v9.0.0-alpha.41 ([PR #18814](https://github.com/microsoft/fluentui/pull/18814) by beachball)
223
+
224
+ ## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.85)
225
+
226
+ Fri, 01 Oct 2021 09:44:56 GMT
227
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.84..@fluentui/react-accordion_v9.0.0-alpha.85)
228
+
229
+ ### Changes
230
+
231
+ - Use new default pseudo element focus outline style ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by lingfangao@hotmail.com)
232
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.69 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball)
233
+
234
+ ## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.84)
235
+
236
+ Wed, 29 Sep 2021 08:06:11 GMT
237
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.83..@fluentui/react-accordion_v9.0.0-alpha.84)
238
+
239
+ ### Changes
240
+
241
+ - Bump @fluentui/react-aria to v9.0.0-alpha.40 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
242
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.74 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
243
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.68 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
244
+ - Bump @fluentui/react-theme to v9.0.0-alpha.24 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
245
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.56 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
246
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
247
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
248
+
249
+ ## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.83)
250
+
251
+ Mon, 27 Sep 2021 08:06:00 GMT
252
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.82..@fluentui/react-accordion_v9.0.0-alpha.83)
253
+
254
+ ### Changes
255
+
256
+ - Bump @fluentui/react-aria to v9.0.0-alpha.39 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
257
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.36 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
258
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
259
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.67 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
260
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
261
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.55 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
262
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
263
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
264
+
265
+ ## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.82)
266
+
267
+ Fri, 24 Sep 2021 09:17:17 GMT
268
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.81..@fluentui/react-accordion_v9.0.0-alpha.82)
269
+
270
+ ### Changes
271
+
272
+ - Bump @fluentui/react-aria to v9.0.0-alpha.38 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
273
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.35 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
274
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.72 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
275
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.66 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
276
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.52 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
277
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.54 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
278
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
279
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
280
+
281
+ ## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.81)
282
+
283
+ Thu, 23 Sep 2021 08:21:34 GMT
284
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.80..@fluentui/react-accordion_v9.0.0-alpha.81)
285
+
286
+ ### Changes
287
+
288
+ - Bump @fluentui/react-aria to v9.0.0-alpha.37 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
289
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.34 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
290
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.71 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
291
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.65 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
292
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.51 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
293
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
294
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
295
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
296
+
297
+ ## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.80)
298
+
299
+ Wed, 22 Sep 2021 10:10:07 GMT
300
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.79..@fluentui/react-accordion_v9.0.0-alpha.80)
301
+
302
+ ### Changes
303
+
304
+ - Bump @fluentui/react-aria to v9.0.0-alpha.36 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
305
+ - Bump @fluentui/react-context-selector to v9.0.0-alpha.33 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
306
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.70 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
307
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.64 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
308
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.50 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
309
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.52 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
310
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
311
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
312
+
313
+ ## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.79)
314
+
315
+ Tue, 21 Sep 2021 07:42:34 GMT
316
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.78..@fluentui/react-accordion_v9.0.0-alpha.79)
317
+
318
+ ### Changes
319
+
320
+ - Updating to types over interfaces ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by gcox@microsoft.com)
321
+ - Bump @fluentui/react-aria to v9.0.0-alpha.35 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
322
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.69 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
323
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.63 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
324
+ - Bump @fluentui/react-theme to v9.0.0-alpha.23 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
325
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.51 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
326
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
327
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
328
+
329
+ ## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.78)
330
+
331
+ Mon, 20 Sep 2021 07:36:26 GMT
332
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.77..@fluentui/react-accordion_v9.0.0-alpha.78)
333
+
334
+ ### Changes
335
+
336
+ - Bump @fluentui/react-accordion to v9.0.0-alpha.78 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com)
337
+
338
+ ## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.77)
339
+
340
+ Fri, 17 Sep 2021 07:35:26 GMT
341
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.76..@fluentui/react-accordion_v9.0.0-alpha.77)
342
+
343
+ ### Changes
344
+
345
+ - Bump @fluentui/react-accordion to v9.0.0-alpha.77 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
346
+
347
+ ## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.76)
348
+
349
+ Thu, 16 Sep 2021 07:38:39 GMT
350
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.75..@fluentui/react-accordion_v9.0.0-alpha.76)
351
+
352
+ ### Changes
353
+
354
+ - Fix typings in React.forwardRef ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
355
+ - Bump @fluentui/react-accordion to v9.0.0-alpha.76 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
356
+
357
+ ## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.75)
358
+
359
+ Tue, 14 Sep 2021 20:09:02 GMT
360
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.74..@fluentui/react-accordion_v9.0.0-alpha.75)
361
+
362
+ ### Changes
363
+
364
+ - Bump @fluentui/react-accordion to v9.0.0-alpha.75 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com)
365
+
366
+ ## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.74)
367
+
368
+ Tue, 14 Sep 2021 07:38:18 GMT
369
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.73..@fluentui/react-accordion_v9.0.0-alpha.74)
370
+
371
+ ### Changes
372
+
373
+ - Bump @fluentui/react-accordion to v9.0.0-alpha.74 ([PR #19605](https://github.com/microsoft/fluentui/pull/19605) by bsunderhus@microsoft.com)
374
+
375
+ ## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.73)
376
+
377
+ Fri, 10 Sep 2021 16:31:53 GMT
378
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.72..@fluentui/react-accordion_v9.0.0-alpha.73)
379
+
380
+ ### Changes
381
+
382
+ - 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)
383
+ - Bump @fluentui/react-accordion to v9.0.0-alpha.73 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
384
+
385
+ ## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.72)
386
+
387
+ Fri, 10 Sep 2021 07:39:51 GMT
388
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.71..@fluentui/react-accordion_v9.0.0-alpha.72)
389
+
390
+ ### Changes
391
+
392
+ - Refactor ObjectShorthandProps into IntrinsicShorthandProps ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com)
393
+
394
+ ## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.71)
395
+
396
+ Mon, 06 Sep 2021 07:34:53 GMT
397
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.70..@fluentui/react-accordion_v9.0.0-alpha.71)
398
+
399
+ ### Changes
400
+
401
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.44 ([PR #19640](https://github.com/microsoft/fluentui/pull/19640) by lingfangao@hotmail.com)
402
+
403
+ ## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.70)
404
+
405
+ Thu, 02 Sep 2021 07:36:46 GMT
406
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.69..@fluentui/react-accordion_v9.0.0-alpha.70)
407
+
408
+ ### Patches
409
+
410
+ - Bump @fluentui/react-conformance to v0.4.5 ([PR #19590](https://github.com/microsoft/fluentui/pull/19590) by olfedias@microsoft.com)
411
+
412
+ ### Changes
413
+
414
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.43 ([PR #19065](https://github.com/microsoft/fluentui/pull/19065) by olfedias@microsoft.com)
415
+
416
+ ## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.69)
417
+
418
+ Wed, 01 Sep 2021 07:39:56 GMT
419
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.68..@fluentui/react-accordion_v9.0.0-alpha.69)
420
+
421
+ ### Changes
422
+
423
+ - Updates react-accordion to use root as slot ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com)
424
+
425
+ ## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.68)
426
+
427
+ Tue, 31 Aug 2021 07:37:47 GMT
428
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.67..@fluentui/react-accordion_v9.0.0-alpha.68)
429
+
430
+ ### Changes
431
+
432
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.54 ([PR #19534](https://github.com/microsoft/fluentui/pull/19534) by marata@microsoft.com)
433
+
434
+ ## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.67)
435
+
436
+ Mon, 30 Aug 2021 07:35:05 GMT
437
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.66..@fluentui/react-accordion_v9.0.0-alpha.67)
438
+
439
+ ### Changes
440
+
441
+ - Updating TypeScript type-only imports/exports to use import/export type syntax. ([PR #19485](https://github.com/microsoft/fluentui/pull/19485) by dzearing@hotmail.com)
442
+
443
+ ## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.66)
444
+
445
+ Fri, 27 Aug 2021 07:33:32 GMT
446
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.65..@fluentui/react-accordion_v9.0.0-alpha.66)
447
+
448
+ ### Changes
449
+
450
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.40 ([PR #19462](https://github.com/microsoft/fluentui/pull/19462) by olfedias@microsoft.com)
451
+
452
+ ## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.65)
453
+
454
+ Thu, 26 Aug 2021 07:35:43 GMT
455
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.64..@fluentui/react-accordion_v9.0.0-alpha.65)
456
+
457
+ ### Changes
458
+
459
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.39 ([PR #19486](https://github.com/microsoft/fluentui/pull/19486) by martinhochel@microsoft.com)
460
+
461
+ ## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.64)
462
+
463
+ Fri, 20 Aug 2021 07:37:28 GMT
464
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.63..@fluentui/react-accordion_v9.0.0-alpha.64)
465
+
466
+ ### Changes
467
+
468
+ - Update .npmignore ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
469
+
470
+ ## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.63)
471
+
472
+ Thu, 19 Aug 2021 07:41:35 GMT
473
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.62..@fluentui/react-accordion_v9.0.0-alpha.63)
474
+
475
+ ### Changes
476
+
477
+ - Updates react-accordion on slot null rendering ([PR #19273](https://github.com/microsoft/fluentui/pull/19273) by bsunderhus@microsoft.com)
478
+
479
+ ## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.62)
480
+
481
+ Fri, 13 Aug 2021 07:36:34 GMT
482
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.61..@fluentui/react-accordion_v9.0.0-alpha.62)
483
+
484
+ ### Changes
485
+
486
+ - chore(Accordion): implement useContextValues() pattern ([PR #19339](https://github.com/microsoft/fluentui/pull/19339) by olfedias@microsoft.com)
487
+
488
+ ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.61)
489
+
490
+ Wed, 11 Aug 2021 07:34:54 GMT
491
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.60..@fluentui/react-accordion_v9.0.0-alpha.61)
492
+
493
+ ### Changes
494
+
495
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.35 ([PR #19256](https://github.com/microsoft/fluentui/pull/19256) by olfedias@microsoft.com)
496
+
497
+ ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.60)
498
+
499
+ Fri, 06 Aug 2021 07:35:14 GMT
500
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.59..@fluentui/react-accordion_v9.0.0-alpha.60)
501
+
502
+ ### Changes
503
+
504
+ - Removes descendants API in favor of explicit values ([PR #19189](https://github.com/microsoft/fluentui/pull/19189) by bsunderhus@microsoft.com)
505
+
506
+ ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.59)
507
+
508
+ Tue, 03 Aug 2021 07:39:30 GMT
509
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.58..@fluentui/react-accordion_v9.0.0-alpha.59)
510
+
511
+ ### Patches
512
+
513
+ - Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
514
+ - Bump @fluentui/react-conformance to v0.4.4 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
515
+ - Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
516
+
517
+ ### Changes
518
+
519
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.33 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
520
+
521
+ ## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.58)
522
+
523
+ Mon, 02 Aug 2021 07:36:20 GMT
524
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.57..@fluentui/react-accordion_v9.0.0-alpha.58)
525
+
526
+ ### Changes
527
+
528
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.36 ([PR #19204](https://github.com/microsoft/fluentui/pull/19204) by lingfan.gao@microsoft.com)
529
+
530
+ ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.57)
531
+
532
+ Mon, 26 Jul 2021 07:37:30 GMT
533
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.56..@fluentui/react-accordion_v9.0.0-alpha.57)
534
+
535
+ ### Changes
536
+
537
+ - Migrate to useControllableState hook ([PR #19094](https://github.com/microsoft/fluentui/pull/19094) by bsunderhus@microsoft.com)
538
+
539
+ ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.56)
540
+
541
+ Fri, 23 Jul 2021 07:38:19 GMT
542
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.55..@fluentui/react-accordion_v9.0.0-alpha.56)
543
+
544
+ ### Changes
545
+
546
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.30 ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com)
547
+
548
+ ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.55)
549
+
550
+ Thu, 22 Jul 2021 07:36:55 GMT
551
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.54..@fluentui/react-accordion_v9.0.0-alpha.55)
552
+
553
+ ### Changes
554
+
555
+ - 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)
556
+
557
+ ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.54)
558
+
559
+ Tue, 20 Jul 2021 22:23:17 GMT
560
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.53..@fluentui/react-accordion_v9.0.0-alpha.54)
561
+
562
+ ### Changes
563
+
564
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.28 ([PR #18998](https://github.com/microsoft/fluentui/pull/18998) by olfedias@microsoft.com)
565
+
566
+ ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.53)
567
+
568
+ Fri, 16 Jul 2021 22:53:17 GMT
569
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.52..@fluentui/react-accordion_v9.0.0-alpha.53)
570
+
571
+ ### Changes
572
+
573
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.26 ([PR #18973](https://github.com/microsoft/fluentui/pull/18973) by olfedias@microsoft.com)
574
+
575
+ ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.52)
576
+
577
+ Thu, 15 Jul 2021 07:36:18 GMT
578
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.51..@fluentui/react-accordion_v9.0.0-alpha.52)
579
+
580
+ ### Changes
581
+
582
+ - Fix react-accordion due to changes on slots typings ([PR #18861](https://github.com/microsoft/fluentui/pull/18861) by bsunderhus@microsoft.com)
583
+
584
+ ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.51)
585
+
586
+ Tue, 13 Jul 2021 22:32:58 GMT
587
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.50..@fluentui/react-accordion_v9.0.0-alpha.51)
588
+
589
+ ### Patches
590
+
591
+ - Bump @fluentui/react-conformance to v0.4.3 ([PR #18925](https://github.com/microsoft/fluentui/pull/18925) by elcraig@microsoft.com)
592
+
593
+ ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.50)
594
+
595
+ Tue, 13 Jul 2021 07:35:36 GMT
596
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.49..@fluentui/react-accordion_v9.0.0-alpha.50)
597
+
598
+ ### Changes
599
+
600
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.24 ([PR #18560](https://github.com/microsoft/fluentui/pull/18560) by behowell@microsoft.com)
601
+
602
+ ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.49)
603
+
604
+ Mon, 12 Jul 2021 07:33:23 GMT
605
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.48..@fluentui/react-accordion_v9.0.0-alpha.49)
606
+
607
+ ### Changes
608
+
609
+ - Forces children prop with Fragment in useAccordionHeader ([PR #18879](https://github.com/microsoft/fluentui/pull/18879) by bsunderhus@microsoft.com)
610
+ - Refactor Accordion component internals ([PR #18873](https://github.com/microsoft/fluentui/pull/18873) by bsunderhus@microsoft.com)
611
+ - Update prop merging mechanism ([PR #18813](https://github.com/microsoft/fluentui/pull/18813) by bsunderhus@microsoft.com)
612
+
613
+ ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.48)
614
+
615
+ Fri, 09 Jul 2021 07:39:31 GMT
616
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.47..@fluentui/react-accordion_v9.0.0-alpha.48)
617
+
618
+ ### Patches
619
+
620
+ - Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
621
+ - Bump @fluentui/react-conformance to v0.4.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
622
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
623
+
624
+ ### Changes
625
+
626
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.23 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
627
+
628
+ ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.47)
629
+
630
+ Fri, 02 Jul 2021 23:15:55 GMT
631
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.46..@fluentui/react-accordion_v9.0.0-alpha.47)
632
+
633
+ ### Changes
634
+
635
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.22 ([PR #18816](https://github.com/microsoft/fluentui/pull/18816) by olfedias@microsoft.com)
636
+
637
+ ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.46)
638
+
639
+ Fri, 02 Jul 2021 07:37:06 GMT
640
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.45..@fluentui/react-accordion_v9.0.0-alpha.46)
641
+
642
+ ### Changes
643
+
644
+ - Rename typings and getSlots to have the Compat Suffix ([PR #18796](https://github.com/microsoft/fluentui/pull/18796) by bsunderhus@microsoft.com)
645
+
646
+ ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.45)
647
+
648
+ Thu, 01 Jul 2021 07:35:05 GMT
649
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.44..@fluentui/react-accordion_v9.0.0-alpha.45)
650
+
651
+ ### Changes
652
+
653
+ - remove redundant dependency on react-theme-provider ([PR #18710](https://github.com/microsoft/fluentui/pull/18710) by olfedias@microsoft.com)
654
+ - Fixing bug in start script of converged packages. ([PR #18768](https://github.com/microsoft/fluentui/pull/18768) by Humberto.Morimoto@microsoft.com)
655
+
656
+ ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.44)
657
+
658
+ Wed, 30 Jun 2021 07:38:35 GMT
659
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.43..@fluentui/react-accordion_v9.0.0-alpha.44)
660
+
661
+ ### Changes
662
+
663
+ - 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)
664
+
665
+ ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.43)
666
+
667
+ Tue, 29 Jun 2021 07:33:32 GMT
668
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.42..@fluentui/react-accordion_v9.0.0-alpha.43)
669
+
670
+ ### Changes
671
+
672
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.18 ([PR #18169](https://github.com/microsoft/fluentui/pull/18169) by olfedias@microsoft.com)
673
+
674
+ ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.42)
675
+
676
+ Tue, 22 Jun 2021 07:35:11 GMT
677
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.41..@fluentui/react-accordion_v9.0.0-alpha.42)
678
+
679
+ ### Changes
680
+
681
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.17 ([PR #18397](https://github.com/microsoft/fluentui/pull/18397) by olfedias@microsoft.com)
682
+
683
+ ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.41)
684
+
685
+ Mon, 21 Jun 2021 07:34:33 GMT
686
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.40..@fluentui/react-accordion_v9.0.0-alpha.41)
687
+
688
+ ### Changes
689
+
690
+ - Adds react-aria ([PR #18597](https://github.com/microsoft/fluentui/pull/18597) by bsunderhus@microsoft.com)
691
+
692
+ ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.40)
693
+
694
+ Wed, 16 Jun 2021 07:34:24 GMT
695
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.39..@fluentui/react-accordion_v9.0.0-alpha.40)
696
+
697
+ ### Changes
698
+
699
+ - Refactor from makeMergePropsCompat to makeMergeProps ([PR #18567](https://github.com/microsoft/fluentui/pull/18567) by bsunderhus@microsoft.com)
700
+
701
+ ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.39)
702
+
703
+ Tue, 15 Jun 2021 07:40:20 GMT
704
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.38..@fluentui/react-accordion_v9.0.0-alpha.39)
705
+
706
+ ### Changes
707
+
708
+ - Migrates react-accordion ([PR #18553](https://github.com/microsoft/fluentui/pull/18553) by bsunderhus@microsoft.com)
709
+
710
+ ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.38)
711
+
712
+ Wed, 09 Jun 2021 07:33:38 GMT
713
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.37..@fluentui/react-accordion_v9.0.0-alpha.38)
714
+
715
+ ### Changes
716
+
717
+ - Adds focus indicator style rule ([PR #18419](https://github.com/microsoft/fluentui/pull/18419) by bsunderhus@microsoft.com)
718
+
719
+ ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.37)
720
+
721
+ Mon, 07 Jun 2021 07:38:15 GMT
722
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.36..@fluentui/react-accordion_v9.0.0-alpha.37)
723
+
724
+ ### Patches
725
+
726
+ - Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
727
+ - Bump @fluentui/react-conformance to v0.4.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
728
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
729
+
730
+ ### Changes
731
+
732
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.15 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
733
+
734
+ ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.36)
735
+
736
+ Fri, 04 Jun 2021 07:37:23 GMT
737
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.35..@fluentui/react-accordion_v9.0.0-alpha.36)
738
+
739
+ ### Changes
740
+
741
+ - 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)
742
+
743
+ ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.35)
744
+
745
+ Thu, 03 Jun 2021 07:36:03 GMT
746
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.34..@fluentui/react-accordion_v9.0.0-alpha.35)
747
+
748
+ ### Changes
749
+
750
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.31 ([PR #18401](https://github.com/microsoft/fluentui/pull/18401) by martinhochel@microsoft.com)
751
+
752
+ ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.34)
753
+
754
+ Wed, 02 Jun 2021 07:37:15 GMT
755
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.33..@fluentui/react-accordion_v9.0.0-alpha.34)
756
+
757
+ ### Changes
758
+
759
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.12 ([PR #18404](https://github.com/microsoft/fluentui/pull/18404) by bsunderhus@microsoft.com)
760
+
761
+ ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.33)
762
+
763
+ Wed, 26 May 2021 07:35:43 GMT
764
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.32..@fluentui/react-accordion_v9.0.0-alpha.33)
765
+
766
+ ### Changes
767
+
768
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.25 ([PR #18323](https://github.com/microsoft/fluentui/pull/18323) by lingfan.gao@microsoft.com)
769
+
770
+ ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.32)
771
+
772
+ Fri, 21 May 2021 07:34:54 GMT
773
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.31..@fluentui/react-accordion_v9.0.0-alpha.32)
774
+
775
+ ### Changes
776
+
777
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.27 ([PR #18238](https://github.com/microsoft/fluentui/pull/18238) by miroslav.stastny@microsoft.com)
778
+
779
+ ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.31)
780
+
781
+ Thu, 20 May 2021 07:41:54 GMT
782
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.30..@fluentui/react-accordion_v9.0.0-alpha.31)
783
+
784
+ ### Patches
785
+
786
+ - Bump @fluentui/eslint-plugin to v1.3.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
787
+ - Bump @fluentui/react-conformance to v0.4.0 ([PR #17577](https://github.com/microsoft/fluentui/pull/17577) by elcraig@microsoft.com)
788
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
789
+
790
+ ### Changes
791
+
792
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.10 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
793
+
794
+ ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.30)
795
+
796
+ Wed, 19 May 2021 07:34:20 GMT
797
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.29..@fluentui/react-accordion_v9.0.0-alpha.30)
798
+
799
+ ### Patches
800
+
801
+ - Bump @fluentui/react-conformance to v0.3.1 ([PR #18194](https://github.com/microsoft/fluentui/pull/18194) by martinhochel@microsoft.com)
802
+
803
+ ### Changes
804
+
805
+ - chore: add more Babel plugins ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com)
806
+
807
+ ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.29)
808
+
809
+ Tue, 18 May 2021 07:34:38 GMT
810
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.28..@fluentui/react-accordion_v9.0.0-alpha.29)
811
+
812
+ ### Changes
813
+
814
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.8 ([PR #18171](https://github.com/microsoft/fluentui/pull/18171) by olfedias@microsoft.com)
815
+
816
+ ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.28)
817
+
818
+ Thu, 13 May 2021 07:36:55 GMT
819
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.27..@fluentui/react-accordion_v9.0.0-alpha.28)
820
+
821
+ ### Changes
822
+
823
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.7 ([PR #18039](https://github.com/microsoft/fluentui/pull/18039) by olfedias@microsoft.com)
824
+
825
+ ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.27)
826
+
827
+ Wed, 12 May 2021 07:36:20 GMT
828
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.26..@fluentui/react-accordion_v9.0.0-alpha.27)
829
+
830
+ ### Changes
831
+
832
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.6 ([PR #18097](https://github.com/microsoft/fluentui/pull/18097) by olfedias@microsoft.com)
833
+
834
+ ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.26)
835
+
836
+ Mon, 10 May 2021 07:36:07 GMT
837
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.25..@fluentui/react-accordion_v9.0.0-alpha.26)
838
+
839
+ ### Changes
840
+
841
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.5 ([PR #18095](https://github.com/microsoft/fluentui/pull/18095) by olfedias@microsoft.com)
842
+
843
+ ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.25)
844
+
845
+ Wed, 05 May 2021 07:36:50 GMT
846
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.24..@fluentui/react-accordion_v9.0.0-alpha.25)
847
+
848
+ ### Changes
849
+
850
+ - transform styles with Babel plugin ([PR #16534](https://github.com/microsoft/fluentui/pull/16534) by olfedias@microsoft.com)
851
+
852
+ ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.24)
853
+
854
+ Mon, 03 May 2021 07:45:19 GMT
855
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.23..@fluentui/react-accordion_v9.0.0-alpha.24)
856
+
857
+ ### Changes
858
+
859
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.21 ([PR #18005](https://github.com/microsoft/fluentui/pull/18005) by lingfan.gao@microsoft.com)
860
+
861
+ ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.23)
862
+
863
+ Fri, 30 Apr 2021 07:42:23 GMT
864
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.22..@fluentui/react-accordion_v9.0.0-alpha.23)
865
+
866
+ ### Patches
867
+
868
+ - Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
869
+ - Bump @fluentui/react-conformance to v0.3.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
870
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
871
+
872
+ ### Changes
873
+
874
+ - update snapshots ([PR #17924](https://github.com/microsoft/fluentui/pull/17924) by olfedias@microsoft.com)
875
+ - Upgrade to typescript 4.1.5 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
876
+
877
+ ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.22)
878
+
879
+ Wed, 28 Apr 2021 07:32:59 GMT
880
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.21..@fluentui/react-accordion_v9.0.0-alpha.22)
881
+
882
+ ### Changes
883
+
884
+ - Bump @fluentui/react-tabster to v9.0.0-alpha.20 ([PR #17971](https://github.com/microsoft/fluentui/pull/17971) by olfedias@microsoft.com)
885
+
886
+ ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.21)
887
+
888
+ Tue, 27 Apr 2021 07:34:03 GMT
889
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.20..@fluentui/react-accordion_v9.0.0-alpha.21)
890
+
891
+ ### Changes
892
+
893
+ - 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)
894
+
895
+ ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.20)
896
+
897
+ Mon, 26 Apr 2021 07:34:31 GMT
898
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.19..@fluentui/react-accordion_v9.0.0-alpha.20)
899
+
900
+ ### Changes
901
+
902
+ - 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)
903
+
904
+ ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.19)
905
+
906
+ Fri, 23 Apr 2021 07:37:10 GMT
907
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.18..@fluentui/react-accordion_v9.0.0-alpha.19)
908
+
909
+ ### Patches
910
+
911
+ - Bump @fluentui/eslint-plugin to v1.1.1 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
912
+ - Bump @fluentui/react-conformance to v0.2.6 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
913
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
914
+
915
+ ### Changes
916
+
917
+ - Invoke useTabster to ensure Tabster exists ([PR #17885](https://github.com/microsoft/fluentui/pull/17885) by lingfan.gao@microsoft.com)
918
+
919
+ ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.18)
920
+
921
+ Thu, 22 Apr 2021 07:33:28 GMT
922
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.17..@fluentui/react-accordion_v9.0.0-alpha.18)
923
+
924
+ ### Changes
925
+
926
+ - 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)
927
+
928
+ ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.17)
929
+
930
+ Wed, 21 Apr 2021 07:31:50 GMT
931
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.16..@fluentui/react-accordion_v9.0.0-alpha.17)
932
+
933
+ ### Changes
934
+
935
+ - Rename ax() to mergeClasses() ([PR #17875](https://github.com/microsoft/fluentui/pull/17875) by miroslav.stastny@microsoft.com)
936
+
937
+ ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.16)
938
+
939
+ Tue, 20 Apr 2021 07:31:35 GMT
940
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.15..@fluentui/react-accordion_v9.0.0-alpha.16)
941
+
942
+ ### Changes
943
+
944
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.23 ([PR #17855](https://github.com/microsoft/fluentui/pull/17855) by lingfan.gao@microsoft.com)
945
+
946
+ ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.15)
947
+
948
+ Fri, 16 Apr 2021 18:08:21 GMT
949
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.14..@fluentui/react-accordion_v9.0.0-alpha.15)
950
+
951
+ ### Changes
952
+
953
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.22 ([PR #17840](https://github.com/microsoft/fluentui/pull/17840) by bsunderhus@microsoft.com)
954
+
955
+ ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.14)
956
+
957
+ Wed, 14 Apr 2021 07:34:12 GMT
958
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.13..@fluentui/react-accordion_v9.0.0-alpha.14)
959
+
960
+ ### Changes
961
+
962
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.21 ([PR #17707](https://github.com/microsoft/fluentui/pull/17707) by bsunderhus@microsoft.com)
963
+
964
+ ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.13)
965
+
966
+ Fri, 09 Apr 2021 23:42:49 GMT
967
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.12..@fluentui/react-accordion_v9.0.0-alpha.13)
968
+
969
+ ### Changes
970
+
971
+ - Add A11y implementation ([PR #17668](https://github.com/microsoft/fluentui/pull/17668) by bsunderhus@microsoft.com)
972
+ - Adds styling to disabled state in react-accordion ([PR #17745](https://github.com/microsoft/fluentui/pull/17745) by bsunderhus@microsoft.com)
973
+
974
+ ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.12)
975
+
976
+ Fri, 09 Apr 2021 07:31:06 GMT
977
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.11..@fluentui/react-accordion_v9.0.0-alpha.12)
978
+
979
+ ### Changes
980
+
981
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.20 ([PR #17670](https://github.com/microsoft/fluentui/pull/17670) by olfedias@microsoft.com)
982
+
983
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.11)
984
+
985
+ Thu, 08 Apr 2021 07:33:06 GMT
986
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.10..@fluentui/react-accordion_v9.0.0-alpha.11)
987
+
988
+ ### Changes
989
+
990
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.19 ([PR #17713](https://github.com/microsoft/fluentui/pull/17713) by olfedias@microsoft.com)
991
+
992
+ ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.10)
993
+
994
+ Thu, 01 Apr 2021 20:13:37 GMT
995
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.9..@fluentui/react-accordion_v9.0.0-alpha.10)
996
+
997
+ ### Changes
998
+
999
+ - Change react-focus-management to react-tabster ([PR #17651](https://github.com/microsoft/fluentui/pull/17651) by bsunderhus@microsoft.com)
1000
+
1001
+ ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.9)
1002
+
1003
+ Thu, 01 Apr 2021 07:33:24 GMT
1004
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.8..@fluentui/react-accordion_v9.0.0-alpha.9)
1005
+
1006
+ ### Changes
1007
+
1008
+ - Rollback makeStyles usage in AccordionHeader style for a single hook ([PR #17647](https://github.com/microsoft/fluentui/pull/17647) by bsunderhus@microsoft.com)
1009
+ - Adds Icon slot ([PR #17645](https://github.com/microsoft/fluentui/pull/17645) by bsunderhus@microsoft.com)
1010
+
1011
+ ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.8)
1012
+
1013
+ Wed, 31 Mar 2021 00:53:43 GMT
1014
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.7..@fluentui/react-accordion_v9.0.0-alpha.8)
1015
+
1016
+ ### Patches
1017
+
1018
+ - Bump @fluentui/eslint-plugin to v1.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1019
+ - Bump @fluentui/react-conformance to v0.2.5 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1020
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
1021
+
1022
+ ### Changes
1023
+
1024
+ - 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)
1025
+ - Adds disabled state in AccordionItem ([PR #17543](https://github.com/microsoft/fluentui/pull/17543) by bsunderhus@microsoft.com)
1026
+
1027
+ ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.7)
1028
+
1029
+ Tue, 30 Mar 2021 07:34:45 GMT
1030
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.6..@fluentui/react-accordion_v9.0.0-alpha.7)
1031
+
1032
+ ### Changes
1033
+
1034
+ - chore: restore "sideEffects" to enable treeshaking ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
1035
+ - Bump react-context-selector to v9 ([PR #17350](https://github.com/microsoft/fluentui/pull/17350) by olfedias@microsoft.com)
1036
+
1037
+ ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.6)
1038
+
1039
+ Fri, 26 Mar 2021 07:32:34 GMT
1040
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.5..@fluentui/react-accordion_v9.0.0-alpha.6)
1041
+
1042
+ ### Changes
1043
+
1044
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.12 ([PR #17524](https://github.com/microsoft/fluentui/pull/17524) by lingfan.gao@microsoft.com)
1045
+
1046
+ ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.5)
1047
+
1048
+ Thu, 25 Mar 2021 07:33:24 GMT
1049
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.4..@fluentui/react-accordion_v9.0.0-alpha.5)
1050
+
1051
+ ### Changes
1052
+
1053
+ - Adds id control for AccordionHeader and AccordionPanel ([PR #17547](https://github.com/microsoft/fluentui/pull/17547) by bsunderhus@microsoft.com)
1054
+ - Move descendants to react-utilities ([PR #17528](https://github.com/microsoft/fluentui/pull/17528) by lingfan.gao@microsoft.com)
1055
+
1056
+ ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.4)
1057
+
1058
+ Tue, 23 Mar 2021 07:31:43 GMT
1059
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.3..@fluentui/react-accordion_v9.0.0-alpha.4)
1060
+
1061
+ ### Changes
1062
+
1063
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.10 ([PR #17339](https://github.com/microsoft/fluentui/pull/17339) by lingfan.gao@microsoft.com)
1064
+
1065
+ ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.3)
1066
+
1067
+ Thu, 18 Mar 2021 20:15:34 GMT
1068
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.2..@fluentui/react-accordion_v9.0.0-alpha.3)
1069
+
1070
+ ### Changes
1071
+
1072
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.9 ([PR #17387](https://github.com/microsoft/fluentui/pull/17387) by lingfan.gao@microsoft.com)
1073
+
1074
+ ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.2)
1075
+
1076
+ Tue, 16 Mar 2021 07:32:44 GMT
1077
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-alpha.1..@fluentui/react-accordion_v9.0.0-alpha.2)
1078
+
1079
+ ### Patches
1080
+
1081
+ - Bump @fluentui/react-conformance to v0.2.4 ([PR #17418](https://github.com/microsoft/fluentui/pull/17418) by elcraig@microsoft.com)
1082
+
1083
+ ### Changes
1084
+
1085
+ - Updates styles from makeStylesCompat to makeStyles ([PR #17395](https://github.com/microsoft/fluentui/pull/17395) by bsunderhus@microsoft.com)
1086
+
1087
+ ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-alpha.1)
1088
+
1089
+ Fri, 12 Mar 2021 20:04:27 GMT
1090
+
1091
+ ### Patches
1092
+
1093
+ - Bump @fluentui/react-conformance to v0.2.3 ([PR #17161](https://github.com/microsoft/fluentui/pull/17161) by martinhochel@microsoft.com)
1094
+
1095
+ ### Changes
1096
+
1097
+ - Move `@types/node` and `@types/webpack-env` devDependencies to root, and remove unneeded references ([PR #17373](https://github.com/microsoft/fluentui/pull/17373) by elcraig@microsoft.com)
1098
+ - Initial release ([PR #16969](https://github.com/microsoft/fluentui/pull/16969) by bsunderhus@microsoft.com)