@fluentui/react-accordion 9.0.0-nightly.f81b28ceb3.1 → 9.0.0-rc.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 (176) hide show
  1. package/CHANGELOG.json +377 -24
  2. package/CHANGELOG.md +86 -18
  3. package/dist/react-accordion.d.ts +47 -54
  4. package/lib/components/Accordion/Accordion.d.ts +1 -1
  5. package/lib/components/Accordion/Accordion.js +10 -8
  6. package/lib/components/Accordion/Accordion.js.map +1 -1
  7. package/lib/components/Accordion/Accordion.types.d.ts +4 -3
  8. package/lib/components/Accordion/AccordionContext.js +4 -2
  9. package/lib/components/Accordion/AccordionContext.js.map +1 -1
  10. package/lib/components/Accordion/index.d.ts +1 -0
  11. package/lib/components/Accordion/index.js +1 -0
  12. package/lib/components/Accordion/index.js.map +1 -1
  13. package/lib/components/Accordion/renderAccordion.d.ts +1 -1
  14. package/lib/components/Accordion/renderAccordion.js +7 -7
  15. package/lib/components/Accordion/renderAccordion.js.map +1 -1
  16. package/lib/components/Accordion/useAccordion.d.ts +2 -3
  17. package/lib/components/Accordion/useAccordion.js +43 -53
  18. package/lib/components/Accordion/useAccordion.js.map +1 -1
  19. package/lib/components/Accordion/useAccordionContextValues.d.ts +1 -1
  20. package/lib/components/Accordion/useAccordionContextValues.js +13 -11
  21. package/lib/components/Accordion/useAccordionContextValues.js.map +1 -1
  22. package/lib/components/Accordion/useAccordionStyles.d.ts +3 -0
  23. package/lib/components/Accordion/useAccordionStyles.js +7 -0
  24. package/lib/components/Accordion/useAccordionStyles.js.map +1 -0
  25. package/lib/components/AccordionHeader/AccordionHeader.d.ts +2 -1
  26. package/lib/components/AccordionHeader/AccordionHeader.js +11 -10
  27. package/lib/components/AccordionHeader/AccordionHeader.js.map +1 -1
  28. package/lib/components/AccordionHeader/AccordionHeader.types.d.ts +12 -11
  29. package/lib/components/AccordionHeader/AccordionHeaderContext.js +2 -4
  30. package/lib/components/AccordionHeader/AccordionHeaderContext.js.map +1 -1
  31. package/lib/components/AccordionHeader/index.d.ts +0 -1
  32. package/lib/components/AccordionHeader/index.js +0 -1
  33. package/lib/components/AccordionHeader/index.js.map +1 -1
  34. package/lib/components/AccordionHeader/renderAccordionHeader.d.ts +1 -1
  35. package/lib/components/AccordionHeader/renderAccordionHeader.js +11 -8
  36. package/lib/components/AccordionHeader/renderAccordionHeader.js.map +1 -1
  37. package/lib/components/AccordionHeader/useAccordionHeader.d.ts +2 -6
  38. package/lib/components/AccordionHeader/useAccordionHeader.js +53 -48
  39. package/lib/components/AccordionHeader/useAccordionHeader.js.map +1 -1
  40. package/lib/components/AccordionHeader/useAccordionHeaderContextValues.d.ts +1 -1
  41. package/lib/components/AccordionHeader/useAccordionHeaderContextValues.js +14 -14
  42. package/lib/components/AccordionHeader/useAccordionHeaderContextValues.js.map +1 -1
  43. package/lib/components/AccordionHeader/useAccordionHeaderStyles.d.ts +2 -1
  44. package/lib/components/AccordionHeader/useAccordionHeaderStyles.js +43 -52
  45. package/lib/components/AccordionHeader/useAccordionHeaderStyles.js.map +1 -1
  46. package/lib/components/AccordionItem/AccordionItem.d.ts +1 -1
  47. package/lib/components/AccordionItem/AccordionItem.js +10 -8
  48. package/lib/components/AccordionItem/AccordionItem.js.map +1 -1
  49. package/lib/components/AccordionItem/AccordionItem.types.d.ts +4 -3
  50. package/lib/components/AccordionItem/AccordionItemContext.d.ts +1 -1
  51. package/lib/components/AccordionItem/AccordionItemContext.js +4 -5
  52. package/lib/components/AccordionItem/AccordionItemContext.js.map +1 -1
  53. package/lib/components/AccordionItem/index.d.ts +1 -0
  54. package/lib/components/AccordionItem/index.js +1 -0
  55. package/lib/components/AccordionItem/index.js.map +1 -1
  56. package/lib/components/AccordionItem/renderAccordionItem.d.ts +1 -1
  57. package/lib/components/AccordionItem/renderAccordionItem.js +7 -8
  58. package/lib/components/AccordionItem/renderAccordionItem.js.map +1 -1
  59. package/lib/components/AccordionItem/useAccordionItem.d.ts +2 -6
  60. package/lib/components/AccordionItem/useAccordionItem.js +23 -31
  61. package/lib/components/AccordionItem/useAccordionItem.js.map +1 -1
  62. package/lib/components/AccordionItem/useAccordionItemContextValues.d.ts +1 -1
  63. package/lib/components/AccordionItem/useAccordionItemContextValues.js +12 -12
  64. package/lib/components/AccordionItem/useAccordionItemContextValues.js.map +1 -1
  65. package/lib/components/AccordionItem/useAccordionItemStyles.d.ts +3 -0
  66. package/lib/components/AccordionItem/useAccordionItemStyles.js +7 -0
  67. package/lib/components/AccordionItem/useAccordionItemStyles.js.map +1 -0
  68. package/lib/components/AccordionPanel/AccordionPanel.d.ts +1 -1
  69. package/lib/components/AccordionPanel/AccordionPanel.js +8 -8
  70. package/lib/components/AccordionPanel/AccordionPanel.js.map +1 -1
  71. package/lib/components/AccordionPanel/AccordionPanel.types.d.ts +2 -2
  72. package/lib/components/AccordionPanel/renderAccordionPanel.d.ts +1 -1
  73. package/lib/components/AccordionPanel/renderAccordionPanel.js +7 -8
  74. package/lib/components/AccordionPanel/renderAccordionPanel.js.map +1 -1
  75. package/lib/components/AccordionPanel/useAccordionPanel.d.ts +2 -6
  76. package/lib/components/AccordionPanel/useAccordionPanel.js +13 -14
  77. package/lib/components/AccordionPanel/useAccordionPanel.js.map +1 -1
  78. package/lib/components/AccordionPanel/useAccordionPanelStyles.d.ts +2 -1
  79. package/lib/components/AccordionPanel/useAccordionPanelStyles.js +6 -5
  80. package/lib/components/AccordionPanel/useAccordionPanelStyles.js.map +1 -1
  81. package/lib-commonjs/Accordion.js +1 -1
  82. package/lib-commonjs/AccordionHeader.js +1 -1
  83. package/lib-commonjs/AccordionItem.js +1 -1
  84. package/lib-commonjs/AccordionPanel.js +1 -1
  85. package/lib-commonjs/components/Accordion/Accordion.d.ts +1 -1
  86. package/lib-commonjs/components/Accordion/Accordion.js +12 -9
  87. package/lib-commonjs/components/Accordion/Accordion.js.map +1 -1
  88. package/lib-commonjs/components/Accordion/Accordion.types.d.ts +4 -3
  89. package/lib-commonjs/components/Accordion/AccordionContext.js +4 -2
  90. package/lib-commonjs/components/Accordion/AccordionContext.js.map +1 -1
  91. package/lib-commonjs/components/Accordion/index.d.ts +1 -0
  92. package/lib-commonjs/components/Accordion/index.js +3 -1
  93. package/lib-commonjs/components/Accordion/index.js.map +1 -1
  94. package/lib-commonjs/components/Accordion/renderAccordion.d.ts +1 -1
  95. package/lib-commonjs/components/Accordion/renderAccordion.js +12 -13
  96. package/lib-commonjs/components/Accordion/renderAccordion.js.map +1 -1
  97. package/lib-commonjs/components/Accordion/useAccordion.d.ts +2 -3
  98. package/lib-commonjs/components/Accordion/useAccordion.js +48 -59
  99. package/lib-commonjs/components/Accordion/useAccordion.js.map +1 -1
  100. package/lib-commonjs/components/Accordion/useAccordionContextValues.d.ts +1 -1
  101. package/lib-commonjs/components/Accordion/useAccordionContextValues.js +15 -13
  102. package/lib-commonjs/components/Accordion/useAccordionContextValues.js.map +1 -1
  103. package/lib-commonjs/components/Accordion/useAccordionStyles.d.ts +3 -0
  104. package/lib-commonjs/components/Accordion/useAccordionStyles.js +18 -0
  105. package/lib-commonjs/components/Accordion/useAccordionStyles.js.map +1 -0
  106. package/lib-commonjs/components/AccordionHeader/AccordionHeader.d.ts +2 -1
  107. package/lib-commonjs/components/AccordionHeader/AccordionHeader.js +12 -11
  108. package/lib-commonjs/components/AccordionHeader/AccordionHeader.js.map +1 -1
  109. package/lib-commonjs/components/AccordionHeader/AccordionHeader.types.d.ts +12 -11
  110. package/lib-commonjs/components/AccordionHeader/AccordionHeaderContext.js +2 -4
  111. package/lib-commonjs/components/AccordionHeader/AccordionHeaderContext.js.map +1 -1
  112. package/lib-commonjs/components/AccordionHeader/index.d.ts +0 -1
  113. package/lib-commonjs/components/AccordionHeader/index.js +1 -3
  114. package/lib-commonjs/components/AccordionHeader/index.js.map +1 -1
  115. package/lib-commonjs/components/AccordionHeader/renderAccordionHeader.d.ts +1 -1
  116. package/lib-commonjs/components/AccordionHeader/renderAccordionHeader.js +16 -15
  117. package/lib-commonjs/components/AccordionHeader/renderAccordionHeader.js.map +1 -1
  118. package/lib-commonjs/components/AccordionHeader/useAccordionHeader.d.ts +2 -6
  119. package/lib-commonjs/components/AccordionHeader/useAccordionHeader.js +60 -54
  120. package/lib-commonjs/components/AccordionHeader/useAccordionHeader.js.map +1 -1
  121. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderContextValues.d.ts +1 -1
  122. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderContextValues.js +17 -17
  123. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderContextValues.js.map +1 -1
  124. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderStyles.d.ts +2 -1
  125. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderStyles.js +50 -57
  126. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderStyles.js.map +1 -1
  127. package/lib-commonjs/components/AccordionItem/AccordionItem.d.ts +1 -1
  128. package/lib-commonjs/components/AccordionItem/AccordionItem.js +12 -9
  129. package/lib-commonjs/components/AccordionItem/AccordionItem.js.map +1 -1
  130. package/lib-commonjs/components/AccordionItem/AccordionItem.types.d.ts +4 -3
  131. package/lib-commonjs/components/AccordionItem/AccordionItemContext.d.ts +1 -1
  132. package/lib-commonjs/components/AccordionItem/AccordionItemContext.js +6 -7
  133. package/lib-commonjs/components/AccordionItem/AccordionItemContext.js.map +1 -1
  134. package/lib-commonjs/components/AccordionItem/index.d.ts +1 -0
  135. package/lib-commonjs/components/AccordionItem/index.js +3 -1
  136. package/lib-commonjs/components/AccordionItem/index.js.map +1 -1
  137. package/lib-commonjs/components/AccordionItem/renderAccordionItem.d.ts +1 -1
  138. package/lib-commonjs/components/AccordionItem/renderAccordionItem.js +12 -15
  139. package/lib-commonjs/components/AccordionItem/renderAccordionItem.js.map +1 -1
  140. package/lib-commonjs/components/AccordionItem/useAccordionItem.d.ts +2 -6
  141. package/lib-commonjs/components/AccordionItem/useAccordionItem.js +31 -40
  142. package/lib-commonjs/components/AccordionItem/useAccordionItem.js.map +1 -1
  143. package/lib-commonjs/components/AccordionItem/useAccordionItemContextValues.d.ts +1 -1
  144. package/lib-commonjs/components/AccordionItem/useAccordionItemContextValues.js +15 -15
  145. package/lib-commonjs/components/AccordionItem/useAccordionItemContextValues.js.map +1 -1
  146. package/lib-commonjs/components/AccordionItem/useAccordionItemStyles.d.ts +3 -0
  147. package/lib-commonjs/components/AccordionItem/useAccordionItemStyles.js +18 -0
  148. package/lib-commonjs/components/AccordionItem/useAccordionItemStyles.js.map +1 -0
  149. package/lib-commonjs/components/AccordionPanel/AccordionPanel.d.ts +1 -1
  150. package/lib-commonjs/components/AccordionPanel/AccordionPanel.js +9 -9
  151. package/lib-commonjs/components/AccordionPanel/AccordionPanel.js.map +1 -1
  152. package/lib-commonjs/components/AccordionPanel/AccordionPanel.types.d.ts +2 -2
  153. package/lib-commonjs/components/AccordionPanel/index.js +1 -1
  154. package/lib-commonjs/components/AccordionPanel/renderAccordionPanel.d.ts +1 -1
  155. package/lib-commonjs/components/AccordionPanel/renderAccordionPanel.js +11 -14
  156. package/lib-commonjs/components/AccordionPanel/renderAccordionPanel.js.map +1 -1
  157. package/lib-commonjs/components/AccordionPanel/useAccordionPanel.d.ts +2 -6
  158. package/lib-commonjs/components/AccordionPanel/useAccordionPanel.js +17 -19
  159. package/lib-commonjs/components/AccordionPanel/useAccordionPanel.js.map +1 -1
  160. package/lib-commonjs/components/AccordionPanel/useAccordionPanelStyles.d.ts +2 -1
  161. package/lib-commonjs/components/AccordionPanel/useAccordionPanelStyles.js +9 -8
  162. package/lib-commonjs/components/AccordionPanel/useAccordionPanelStyles.js.map +1 -1
  163. package/lib-commonjs/index.js +1 -1
  164. package/package.json +17 -19
  165. package/lib/common/isConformant.d.ts +0 -4
  166. package/lib/common/isConformant.js +0 -12
  167. package/lib/common/isConformant.js.map +0 -1
  168. package/lib/components/AccordionHeader/AccordionHeaderExpandIcon.d.ts +0 -3
  169. package/lib/components/AccordionHeader/AccordionHeaderExpandIcon.js +0 -42
  170. package/lib/components/AccordionHeader/AccordionHeaderExpandIcon.js.map +0 -1
  171. package/lib-commonjs/common/isConformant.d.ts +0 -4
  172. package/lib-commonjs/common/isConformant.js +0 -23
  173. package/lib-commonjs/common/isConformant.js.map +0 -1
  174. package/lib-commonjs/components/AccordionHeader/AccordionHeaderExpandIcon.d.ts +0 -3
  175. package/lib-commonjs/components/AccordionHeader/AccordionHeaderExpandIcon.js +0 -52
  176. package/lib-commonjs/components/AccordionHeader/AccordionHeaderExpandIcon.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,70 +2,423 @@
2
2
  "name": "@fluentui/react-accordion",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 19 Oct 2021 12:39:14 GMT",
6
- "tag": "@fluentui/react-accordion_v9.0.0-nightly.f81b28ceb3.1",
7
- "version": "9.0.0-nightly.f81b28ceb3.1",
5
+ "date": "Thu, 10 Feb 2022 08:45:25 GMT",
6
+ "tag": "@fluentui/react-accordion_v9.0.0-rc.1",
7
+ "version": "9.0.0-rc.1",
8
8
  "comments": {
9
9
  "prerelease": [
10
10
  {
11
- "author": "email not defined",
11
+ "author": "olfedias@microsoft.com",
12
+ "package": "@fluentui/react-accordion",
13
+ "commit": "b23239743c4f5518bcf7dcad496a36fc16bbd2e5",
14
+ "comment": "update @fluentui/react-icons package"
15
+ },
16
+ {
17
+ "author": "olfedias@microsoft.com",
18
+ "package": "@fluentui/react-accordion",
19
+ "commit": "b8537fb52cc3cc2787be5675c65300e01d882add",
20
+ "comment": "update styles to not use CSS shorthands"
21
+ },
22
+ {
23
+ "author": "mgodbolt@microsoft.com",
24
+ "package": "@fluentui/react-accordion",
25
+ "commit": "839ec14849e112b85aa321d034739ec421199141",
26
+ "comment": "remove export of commons types"
27
+ },
28
+ {
29
+ "author": "behowell@microsoft.com",
30
+ "package": "@fluentui/react-accordion",
31
+ "commit": "53b01d71e335715fda91b33e3d7bbd9d471d5ed3",
32
+ "comment": "Refactor component Slot typings"
33
+ },
34
+ {
35
+ "author": "tristan.watanabe@gmail.com",
36
+ "package": "@fluentui/react-accordion",
37
+ "commit": "13f940ea4687d769dd2faf61edc27ff75f6bb565",
38
+ "comment": "Allow React 17 in peerDependencies."
39
+ },
40
+ {
41
+ "author": "behowell@microsoft.com",
42
+ "package": "@fluentui/react-accordion",
43
+ "commit": "7cc28ed8320b00f42d91c63882f10316db2205c5",
44
+ "comment": "Remove component's shorthandProps array"
45
+ },
46
+ {
47
+ "author": "olfedias@microsoft.com",
48
+ "package": "@fluentui/react-accordion",
49
+ "commit": "a2e02b2015b1f9307c69c8ecf005c166d496e206",
50
+ "comment": "use Griffel packages"
51
+ },
52
+ {
53
+ "author": "Humberto.Morimoto@microsoft.com",
54
+ "package": "@fluentui/react-accordion",
55
+ "commit": "0bc161458eae5ae8d387172430496ce9829b1bb1",
56
+ "comment": "Using ComponentSlotProps instead of ObjectShorthandProps."
57
+ },
58
+ {
59
+ "author": "bsunderhus@microsoft.com",
60
+ "package": "@fluentui/react-accordion",
61
+ "commit": "940a86cbd6a9f711d275df3a823292b527017852",
62
+ "comment": "Removes children as a slot from AccordionHeader"
63
+ },
64
+ {
65
+ "author": "lingfangao@hotmail.com",
66
+ "package": "@fluentui/react-accordion",
67
+ "commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
68
+ "comment": "Bump Fluent UI packages to 9.0.0-rc"
69
+ },
70
+ {
71
+ "author": "sarah.higley@microsoft.com",
72
+ "package": "@fluentui/react-accordion",
73
+ "commit": "d0758018bf44c69e01451c8a6bd4f73b43e397b7",
74
+ "comment": "update semantic elements and ARIA roles in react-accordion, add heading level story"
75
+ },
76
+ {
77
+ "author": "ololubek@microsoft.com",
78
+ "package": "@fluentui/react-accordion",
79
+ "commit": "63cbefe55e5db10eedbde19392aa8b6376d6a7f7",
80
+ "comment": "Update react-icons usage to resizable icons"
81
+ },
82
+ {
83
+ "author": "behowell@microsoft.com",
84
+ "package": "@fluentui/react-accordion",
85
+ "commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
86
+ "comment": "BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
87
+ },
88
+ {
89
+ "author": "Humberto.Morimoto@microsoft.com",
90
+ "package": "@fluentui/react-accordion",
91
+ "commit": "e0b8e1fa6980077e7b311fd1c72c28d3e4305db0",
92
+ "comment": "Updating based on changes to composition types."
93
+ },
94
+ {
95
+ "author": "Humberto.Morimoto@microsoft.com",
96
+ "package": "@fluentui/react-accordion",
97
+ "commit": "38c8bed2c707014688ae2ae689033fa36ef23075",
98
+ "comment": "Updating packages based on changes to focusIndicator functions to remove functions from makeStyles in @fluentui/react-tabster."
99
+ },
100
+ {
101
+ "author": "Humberto.Morimoto@microsoft.com",
102
+ "package": "@fluentui/react-accordion",
103
+ "commit": "22ef7434eddbe45d8818b16ff43c3488ac84ae45",
104
+ "comment": "Replacing use of functions in makeStyles with direct use of tokens."
105
+ },
106
+ {
107
+ "author": "behowell@microsoft.com",
108
+ "package": "@fluentui/react-accordion",
109
+ "commit": "dfb5538a2494b48cbb61702c4c2c9aaf8de37a6f",
110
+ "comment": "Remove AccordionHeaderExpandIcon, and use ChevronRightRegular from @fluentui/react-icons instead"
111
+ },
112
+ {
113
+ "author": "beachball",
114
+ "package": "@fluentui/react-accordion",
115
+ "comment": "Bump @fluentui/react-aria to v9.0.0-rc.1",
116
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
117
+ },
118
+ {
119
+ "author": "beachball",
120
+ "package": "@fluentui/react-accordion",
121
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.1",
122
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
123
+ },
124
+ {
125
+ "author": "beachball",
126
+ "package": "@fluentui/react-accordion",
127
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.1",
128
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
129
+ },
130
+ {
131
+ "author": "beachball",
132
+ "package": "@fluentui/react-accordion",
133
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.1",
134
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
135
+ },
136
+ {
137
+ "author": "beachball",
138
+ "package": "@fluentui/react-accordion",
139
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
140
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
141
+ },
142
+ {
143
+ "author": "beachball",
144
+ "package": "@fluentui/react-accordion",
145
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
146
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
147
+ }
148
+ ],
149
+ "none": [
150
+ {
151
+ "author": "martinhochel@microsoft.com",
152
+ "package": "@fluentui/react-accordion",
153
+ "commit": "28ceaaa83cd92a0389c466f0b15b283e3d9b08e4",
154
+ "comment": "chore: update all jest deps to v25 + apply single version policy"
155
+ },
156
+ {
157
+ "author": "bsunderhus@microsoft.com",
158
+ "package": "@fluentui/react-accordion",
159
+ "commit": "c0d4e63ee58e60e2c6674efbacc0783cd520984e",
160
+ "comment": "Updates components with nullRender changes"
161
+ },
162
+ {
163
+ "author": "martinhochel@microsoft.com",
164
+ "package": "@fluentui/react-accordion",
165
+ "commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
166
+ "comment": "chore: use storybook runner for all vNext packages"
167
+ },
168
+ {
169
+ "author": "olfedias@microsoft.com",
170
+ "package": "@fluentui/react-accordion",
171
+ "commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
172
+ "comment": "remove inline-style-expand-shorthand from tsconfigs"
173
+ }
174
+ ]
175
+ }
176
+ },
177
+ {
178
+ "date": "Thu, 25 Nov 2021 08:34:10 GMT",
179
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.5",
180
+ "version": "9.0.0-beta.5",
181
+ "comments": {
182
+ "none": [
183
+ {
184
+ "author": "lingfangao@hotmail.com",
185
+ "package": "@fluentui/react-accordion",
186
+ "commit": "8a141d14f3a14de2e1c4691dad908622f310a9d1",
187
+ "comment": "Migrate package to use solution tsconfigs"
188
+ }
189
+ ],
190
+ "prerelease": [
191
+ {
192
+ "author": "beachball",
193
+ "package": "@fluentui/react-accordion",
194
+ "comment": "Bump @fluentui/react-aria to v9.0.0-beta.4",
195
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
196
+ },
197
+ {
198
+ "author": "beachball",
199
+ "package": "@fluentui/react-accordion",
200
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.4",
201
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
202
+ },
203
+ {
204
+ "author": "beachball",
205
+ "package": "@fluentui/react-accordion",
206
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
207
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
208
+ },
209
+ {
210
+ "author": "beachball",
211
+ "package": "@fluentui/react-accordion",
212
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
213
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
214
+ },
215
+ {
216
+ "author": "beachball",
217
+ "package": "@fluentui/react-accordion",
218
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.4",
219
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
220
+ },
221
+ {
222
+ "author": "beachball",
223
+ "package": "@fluentui/react-accordion",
224
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
225
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
226
+ },
227
+ {
228
+ "author": "beachball",
229
+ "package": "@fluentui/react-accordion",
230
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
231
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
232
+ },
233
+ {
234
+ "author": "beachball",
235
+ "package": "@fluentui/react-accordion",
236
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
237
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
238
+ },
239
+ {
240
+ "author": "beachball",
241
+ "package": "@fluentui/react-accordion",
242
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
243
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
244
+ }
245
+ ]
246
+ }
247
+ },
248
+ {
249
+ "date": "Fri, 12 Nov 2021 13:25:12 GMT",
250
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.4",
251
+ "version": "9.0.0-beta.4",
252
+ "comments": {
253
+ "prerelease": [
254
+ {
255
+ "author": "olfedias@microsoft.com",
256
+ "package": "@fluentui/react-accordion",
257
+ "commit": "825ea92aae027295a94048368157c180358260f2",
258
+ "comment": "export static classes for components"
259
+ },
260
+ {
261
+ "author": "Humberto.Morimoto@microsoft.com",
262
+ "package": "@fluentui/react-accordion",
263
+ "commit": "a4ea9b6227d2f634f85b40fe4cec10e4c391244b",
264
+ "comment": "Updating AccordionHeader tests to match changes in useARIAButton."
265
+ },
266
+ {
267
+ "author": "gcox@microsoft.com",
268
+ "package": "@fluentui/react-accordion",
269
+ "commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
270
+ "comment": "Updated beta and RC components to ES2019"
271
+ },
272
+ {
273
+ "author": "beachball",
274
+ "package": "@fluentui/react-accordion",
275
+ "comment": "Bump @fluentui/react-aria to v9.0.0-beta.3",
276
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
277
+ },
278
+ {
279
+ "author": "beachball",
280
+ "package": "@fluentui/react-accordion",
281
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.3",
282
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
283
+ },
284
+ {
285
+ "author": "beachball",
286
+ "package": "@fluentui/react-accordion",
287
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
288
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
289
+ },
290
+ {
291
+ "author": "beachball",
292
+ "package": "@fluentui/react-accordion",
293
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.4",
294
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
295
+ },
296
+ {
297
+ "author": "beachball",
298
+ "package": "@fluentui/react-accordion",
299
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.3",
300
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
301
+ },
302
+ {
303
+ "author": "beachball",
304
+ "package": "@fluentui/react-accordion",
305
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
306
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
307
+ },
308
+ {
309
+ "author": "beachball",
310
+ "package": "@fluentui/react-accordion",
311
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
312
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
313
+ },
314
+ {
315
+ "author": "beachball",
316
+ "package": "@fluentui/react-accordion",
317
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
318
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
319
+ },
320
+ {
321
+ "author": "beachball",
322
+ "package": "@fluentui/react-accordion",
323
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
324
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
325
+ }
326
+ ],
327
+ "none": [
328
+ {
329
+ "author": "me@levithomason.com",
330
+ "package": "@fluentui/react-accordion",
331
+ "commit": "cdbe0769d2a6ee91a98a3e62c6ac9329a714355c",
332
+ "comment": "Docs update"
333
+ },
334
+ {
335
+ "author": "lingfangao@hotmail.com",
336
+ "package": "@fluentui/react-accordion",
337
+ "commit": "00f70581480b536e723fb69edf0ae617beac4807",
338
+ "comment": "Remove beta release tag"
339
+ },
340
+ {
341
+ "author": "mgodbolt@microsoft.com",
342
+ "package": "@fluentui/react-accordion",
343
+ "commit": "7fafe76eb2c09f9d17a03c11ba73729d91ef411e",
344
+ "comment": "update docs descriptions"
345
+ }
346
+ ]
347
+ }
348
+ },
349
+ {
350
+ "date": "Wed, 27 Oct 2021 12:14:12 GMT",
351
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.3",
352
+ "version": "9.0.0-beta.3",
353
+ "comments": {
354
+ "none": [
355
+ {
356
+ "author": "olfedias@microsoft.com",
357
+ "package": "@fluentui/react-accordion",
358
+ "commit": "193af6527f202f11efdd71da7581cc6e76ca2925",
359
+ "comment": "replace temporary icons in stories"
360
+ }
361
+ ],
362
+ "prerelease": [
363
+ {
364
+ "author": "peter@draxler.ml",
12
365
  "package": "@fluentui/react-accordion",
13
- "comment": "Release nightly v9",
14
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
366
+ "commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
367
+ "comment": "added styling of documentation"
15
368
  },
16
369
  {
17
370
  "author": "beachball",
18
371
  "package": "@fluentui/react-accordion",
19
- "comment": "Bump @fluentui/react-aria to v9.0.0-nightly.f81b28ceb3.1",
20
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
372
+ "comment": "Bump @fluentui/react-aria to v9.0.0-beta.2",
373
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
21
374
  },
22
375
  {
23
376
  "author": "beachball",
24
377
  "package": "@fluentui/react-accordion",
25
- "comment": "Bump @fluentui/react-context-selector to v9.0.0-nightly.f81b28ceb3.1",
26
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
378
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.2",
379
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
27
380
  },
28
381
  {
29
382
  "author": "beachball",
30
383
  "package": "@fluentui/react-accordion",
31
- "comment": "Bump @fluentui/react-make-styles to v9.0.0-nightly.f81b28ceb3.1",
32
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
384
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.2",
385
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
33
386
  },
34
387
  {
35
388
  "author": "beachball",
36
389
  "package": "@fluentui/react-accordion",
37
- "comment": "Bump @fluentui/react-tabster to v9.0.0-nightly.f81b28ceb3.1",
38
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
390
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.3",
391
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
39
392
  },
40
393
  {
41
394
  "author": "beachball",
42
395
  "package": "@fluentui/react-accordion",
43
- "comment": "Bump @fluentui/react-theme to v9.0.0-nightly.f81b28ceb3.1",
44
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
396
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.2",
397
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
45
398
  },
46
399
  {
47
400
  "author": "beachball",
48
401
  "package": "@fluentui/react-accordion",
49
- "comment": "Bump @fluentui/react-utilities to v9.0.0-nightly.f81b28ceb3.1",
50
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
402
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
403
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
51
404
  },
52
405
  {
53
406
  "author": "beachball",
54
407
  "package": "@fluentui/react-accordion",
55
- "comment": "Bump @fluentui/babel-make-styles to v9.0.0-nightly.f81b28ceb3.1",
56
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
408
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.2",
409
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
57
410
  },
58
411
  {
59
412
  "author": "beachball",
60
413
  "package": "@fluentui/react-accordion",
61
- "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-nightly.f81b28ceb3.1",
62
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
414
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2",
415
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
63
416
  },
64
417
  {
65
418
  "author": "beachball",
66
419
  "package": "@fluentui/react-accordion",
67
- "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-nightly.f81b28ceb3.1",
68
- "commit": "0ae8560ad3e7b4cb03f3f47152dfce2f81523cca"
420
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2",
421
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
69
422
  }
70
423
  ]
71
424
  }
package/CHANGELOG.md CHANGED
@@ -1,26 +1,94 @@
1
1
  # Change Log - @fluentui/react-accordion
2
2
 
3
- This log was last generated on Tue, 19 Oct 2021 12:39:14 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 10 Feb 2022 08:45:25 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [9.0.0-nightly.f81b28ceb3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-nightly.f81b28ceb3.1)
8
-
9
- Tue, 19 Oct 2021 12:39:14 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.2..@fluentui/react-accordion_v9.0.0-nightly.f81b28ceb3.1)
11
-
12
- ### Changes
13
-
14
- - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by email not defined)
15
- - Bump @fluentui/react-aria to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
16
- - Bump @fluentui/react-context-selector to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
17
- - Bump @fluentui/react-make-styles to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
18
- - Bump @fluentui/react-tabster to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
19
- - Bump @fluentui/react-theme to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
20
- - Bump @fluentui/react-utilities to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
21
- - Bump @fluentui/babel-make-styles to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
22
- - Bump @fluentui/jest-serializer-make-styles to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
23
- - Bump @fluentui/react-conformance-make-styles to v9.0.0-nightly.f81b28ceb3.1 ([commit](https://github.com/microsoft/fluentui/commit/0ae8560ad3e7b4cb03f3f47152dfce2f81523cca) by beachball)
7
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-rc.1)
8
+
9
+ Thu, 10 Feb 2022 08:45:25 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.5..@fluentui/react-accordion_v9.0.0-rc.1)
11
+
12
+ ### Changes
13
+
14
+ - update @fluentui/react-icons package ([PR #21498](https://github.com/microsoft/fluentui/pull/21498) by olfedias@microsoft.com)
15
+ - update styles to not use CSS shorthands ([PR #20800](https://github.com/microsoft/fluentui/pull/20800) by olfedias@microsoft.com)
16
+ - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
17
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
18
+ - Allow React 17 in peerDependencies. ([PR #21544](https://github.com/microsoft/fluentui/pull/21544) by tristan.watanabe@gmail.com)
19
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
20
+ - use Griffel packages ([PR #21394](https://github.com/microsoft/fluentui/pull/21394) by olfedias@microsoft.com)
21
+ - Using ComponentSlotProps instead of ObjectShorthandProps. ([PR #20890](https://github.com/microsoft/fluentui/pull/20890) by Humberto.Morimoto@microsoft.com)
22
+ - Removes children as a slot from AccordionHeader ([PR #21285](https://github.com/microsoft/fluentui/pull/21285) by bsunderhus@microsoft.com)
23
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
24
+ - 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)
25
+ - Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
26
+ - 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)
27
+ - Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
28
+ - 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)
29
+ - 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)
30
+ - Remove AccordionHeaderExpandIcon, and use ChevronRightRegular from @fluentui/react-icons instead ([PR #21218](https://github.com/microsoft/fluentui/pull/21218) by behowell@microsoft.com)
31
+ - Bump @fluentui/react-aria to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
32
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
33
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
34
+ - Bump @fluentui/react-theme to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
35
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
36
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
37
+
38
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.5)
39
+
40
+ Thu, 25 Nov 2021 08:34:10 GMT
41
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.4..@fluentui/react-accordion_v9.0.0-beta.5)
42
+
43
+ ### Changes
44
+
45
+ - Bump @fluentui/react-aria to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
46
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
47
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
48
+ - Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
49
+ - Bump @fluentui/react-theme to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
50
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
51
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
52
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
53
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
54
+
55
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.4)
56
+
57
+ Fri, 12 Nov 2021 13:25:12 GMT
58
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.3..@fluentui/react-accordion_v9.0.0-beta.4)
59
+
60
+ ### Changes
61
+
62
+ - export static classes for components ([PR #20451](https://github.com/microsoft/fluentui/pull/20451) by olfedias@microsoft.com)
63
+ - Updating AccordionHeader tests to match changes in useARIAButton. ([PR #20342](https://github.com/microsoft/fluentui/pull/20342) by Humberto.Morimoto@microsoft.com)
64
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
65
+ - Bump @fluentui/react-aria to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
66
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
67
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
68
+ - Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
69
+ - Bump @fluentui/react-theme to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
70
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
71
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
72
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
73
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
74
+
75
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.3)
76
+
77
+ Wed, 27 Oct 2021 12:14:12 GMT
78
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.2..@fluentui/react-accordion_v9.0.0-beta.3)
79
+
80
+ ### Changes
81
+
82
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
83
+ - Bump @fluentui/react-aria to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
84
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
85
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
86
+ - Bump @fluentui/react-tabster to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
87
+ - Bump @fluentui/react-theme to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
88
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
89
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
90
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
91
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
24
92
 
25
93
  ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.2)
26
94