@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.json ADDED
@@ -0,0 +1,3236 @@
1
+ {
2
+ "name": "@fluentui/react-accordion",
3
+ "entries": [
4
+ {
5
+ "date": "Wed, 02 Mar 2022 04:14:51 GMT",
6
+ "tag": "@fluentui/react-accordion_v0.0.0-nightly-20220302-0405.1",
7
+ "version": "0.0.0-nightly-20220302-0405.1",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "email not defined",
12
+ "package": "@fluentui/react-accordion",
13
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec",
14
+ "comment": "Release nightly v9"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-accordion",
19
+ "comment": "Bump @fluentui/react-aria to v0.0.0-nightly-20220302-0405.1",
20
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-accordion",
25
+ "comment": "Bump @fluentui/react-context-selector to v0.0.0-nightly-20220302-0405.1",
26
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-accordion",
31
+ "comment": "Bump @fluentui/react-tabster to v0.0.0-nightly-20220302-0405.1",
32
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-accordion",
37
+ "comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1",
38
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-accordion",
43
+ "comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1",
44
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-accordion",
49
+ "comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220302-0405.1",
50
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
51
+ }
52
+ ]
53
+ }
54
+ },
55
+ {
56
+ "date": "Tue, 01 Mar 2022 02:17:40 GMT",
57
+ "tag": "@fluentui/react-accordion_v9.0.0-rc.4",
58
+ "version": "9.0.0-rc.4",
59
+ "comments": {
60
+ "prerelease": [
61
+ {
62
+ "author": "beachball",
63
+ "package": "@fluentui/react-accordion",
64
+ "comment": "Bump @fluentui/react-aria to v9.0.0-rc.4",
65
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
66
+ },
67
+ {
68
+ "author": "beachball",
69
+ "package": "@fluentui/react-accordion",
70
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.4",
71
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
72
+ },
73
+ {
74
+ "author": "beachball",
75
+ "package": "@fluentui/react-accordion",
76
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.4",
77
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
78
+ },
79
+ {
80
+ "author": "beachball",
81
+ "package": "@fluentui/react-accordion",
82
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
83
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
84
+ }
85
+ ]
86
+ }
87
+ },
88
+ {
89
+ "date": "Fri, 18 Feb 2022 13:35:37 GMT",
90
+ "tag": "@fluentui/react-accordion_v9.0.0-rc.3",
91
+ "version": "9.0.0-rc.3",
92
+ "comments": {
93
+ "prerelease": [
94
+ {
95
+ "author": "bsunderhus@microsoft.com",
96
+ "package": "@fluentui/react-accordion",
97
+ "commit": "5a45a787f2669a9f694a274b220823dbc10b04e2",
98
+ "comment": "Updates initial open items value to be empty on every case"
99
+ },
100
+ {
101
+ "author": "lingfangao@hotmail.com",
102
+ "package": "@fluentui/react-accordion",
103
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
104
+ "comment": "fix: Source maps contain original source code"
105
+ },
106
+ {
107
+ "author": "bsunderhus@microsoft.com",
108
+ "package": "@fluentui/react-accordion",
109
+ "commit": "ea090f75ef4a477f6ea9ffa2b4d7bec826a99b5f",
110
+ "comment": "Breaking change: navigable becomes navigation"
111
+ },
112
+ {
113
+ "author": "beachball",
114
+ "package": "@fluentui/react-accordion",
115
+ "comment": "Bump @fluentui/react-aria to v9.0.0-rc.3",
116
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
117
+ },
118
+ {
119
+ "author": "beachball",
120
+ "package": "@fluentui/react-accordion",
121
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.3",
122
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
123
+ },
124
+ {
125
+ "author": "beachball",
126
+ "package": "@fluentui/react-accordion",
127
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.3",
128
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
129
+ },
130
+ {
131
+ "author": "beachball",
132
+ "package": "@fluentui/react-accordion",
133
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.3",
134
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
135
+ },
136
+ {
137
+ "author": "beachball",
138
+ "package": "@fluentui/react-accordion",
139
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
140
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
141
+ },
142
+ {
143
+ "author": "beachball",
144
+ "package": "@fluentui/react-accordion",
145
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
146
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
147
+ }
148
+ ],
149
+ "none": [
150
+ {
151
+ "author": "bsunderhus@microsoft.com",
152
+ "package": "@fluentui/react-accordion",
153
+ "commit": "3068d4518c5e599c60a216455eac40531d896162",
154
+ "comment": "Updates spec and story to add warning about heading level"
155
+ }
156
+ ]
157
+ }
158
+ },
159
+ {
160
+ "date": "Thu, 10 Feb 2022 08:52:11 GMT",
161
+ "tag": "@fluentui/react-accordion_v9.0.0-rc.1",
162
+ "version": "9.0.0-rc.1",
163
+ "comments": {
164
+ "prerelease": [
165
+ {
166
+ "author": "olfedias@microsoft.com",
167
+ "package": "@fluentui/react-accordion",
168
+ "commit": "b23239743c4f5518bcf7dcad496a36fc16bbd2e5",
169
+ "comment": "update @fluentui/react-icons package"
170
+ },
171
+ {
172
+ "author": "olfedias@microsoft.com",
173
+ "package": "@fluentui/react-accordion",
174
+ "commit": "b8537fb52cc3cc2787be5675c65300e01d882add",
175
+ "comment": "update styles to not use CSS shorthands"
176
+ },
177
+ {
178
+ "author": "mgodbolt@microsoft.com",
179
+ "package": "@fluentui/react-accordion",
180
+ "commit": "839ec14849e112b85aa321d034739ec421199141",
181
+ "comment": "remove export of commons types"
182
+ },
183
+ {
184
+ "author": "behowell@microsoft.com",
185
+ "package": "@fluentui/react-accordion",
186
+ "commit": "53b01d71e335715fda91b33e3d7bbd9d471d5ed3",
187
+ "comment": "Refactor component Slot typings"
188
+ },
189
+ {
190
+ "author": "tristan.watanabe@gmail.com",
191
+ "package": "@fluentui/react-accordion",
192
+ "commit": "13f940ea4687d769dd2faf61edc27ff75f6bb565",
193
+ "comment": "Allow React 17 in peerDependencies."
194
+ },
195
+ {
196
+ "author": "behowell@microsoft.com",
197
+ "package": "@fluentui/react-accordion",
198
+ "commit": "7cc28ed8320b00f42d91c63882f10316db2205c5",
199
+ "comment": "Remove component's shorthandProps array"
200
+ },
201
+ {
202
+ "author": "olfedias@microsoft.com",
203
+ "package": "@fluentui/react-accordion",
204
+ "commit": "a2e02b2015b1f9307c69c8ecf005c166d496e206",
205
+ "comment": "use Griffel packages"
206
+ },
207
+ {
208
+ "author": "Humberto.Morimoto@microsoft.com",
209
+ "package": "@fluentui/react-accordion",
210
+ "commit": "0bc161458eae5ae8d387172430496ce9829b1bb1",
211
+ "comment": "Using ComponentSlotProps instead of ObjectShorthandProps."
212
+ },
213
+ {
214
+ "author": "bsunderhus@microsoft.com",
215
+ "package": "@fluentui/react-accordion",
216
+ "commit": "940a86cbd6a9f711d275df3a823292b527017852",
217
+ "comment": "Removes children as a slot from AccordionHeader"
218
+ },
219
+ {
220
+ "author": "lingfangao@hotmail.com",
221
+ "package": "@fluentui/react-accordion",
222
+ "commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
223
+ "comment": "Bump Fluent UI packages to 9.0.0-rc"
224
+ },
225
+ {
226
+ "author": "sarah.higley@microsoft.com",
227
+ "package": "@fluentui/react-accordion",
228
+ "commit": "d0758018bf44c69e01451c8a6bd4f73b43e397b7",
229
+ "comment": "update semantic elements and ARIA roles in react-accordion, add heading level story"
230
+ },
231
+ {
232
+ "author": "ololubek@microsoft.com",
233
+ "package": "@fluentui/react-accordion",
234
+ "commit": "63cbefe55e5db10eedbde19392aa8b6376d6a7f7",
235
+ "comment": "Update react-icons usage to resizable icons"
236
+ },
237
+ {
238
+ "author": "behowell@microsoft.com",
239
+ "package": "@fluentui/react-accordion",
240
+ "commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
241
+ "comment": "BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
242
+ },
243
+ {
244
+ "author": "Humberto.Morimoto@microsoft.com",
245
+ "package": "@fluentui/react-accordion",
246
+ "commit": "e0b8e1fa6980077e7b311fd1c72c28d3e4305db0",
247
+ "comment": "Updating based on changes to composition types."
248
+ },
249
+ {
250
+ "author": "Humberto.Morimoto@microsoft.com",
251
+ "package": "@fluentui/react-accordion",
252
+ "commit": "38c8bed2c707014688ae2ae689033fa36ef23075",
253
+ "comment": "Updating packages based on changes to focusIndicator functions to remove functions from makeStyles in @fluentui/react-tabster."
254
+ },
255
+ {
256
+ "author": "Humberto.Morimoto@microsoft.com",
257
+ "package": "@fluentui/react-accordion",
258
+ "commit": "22ef7434eddbe45d8818b16ff43c3488ac84ae45",
259
+ "comment": "Replacing use of functions in makeStyles with direct use of tokens."
260
+ },
261
+ {
262
+ "author": "behowell@microsoft.com",
263
+ "package": "@fluentui/react-accordion",
264
+ "commit": "dfb5538a2494b48cbb61702c4c2c9aaf8de37a6f",
265
+ "comment": "Remove AccordionHeaderExpandIcon, and use ChevronRightRegular from @fluentui/react-icons instead"
266
+ },
267
+ {
268
+ "author": "beachball",
269
+ "package": "@fluentui/react-accordion",
270
+ "comment": "Bump @fluentui/react-aria to v9.0.0-rc.1",
271
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
272
+ },
273
+ {
274
+ "author": "beachball",
275
+ "package": "@fluentui/react-accordion",
276
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.1",
277
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
278
+ },
279
+ {
280
+ "author": "beachball",
281
+ "package": "@fluentui/react-accordion",
282
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.1",
283
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
284
+ },
285
+ {
286
+ "author": "beachball",
287
+ "package": "@fluentui/react-accordion",
288
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.1",
289
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
290
+ },
291
+ {
292
+ "author": "beachball",
293
+ "package": "@fluentui/react-accordion",
294
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
295
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
296
+ },
297
+ {
298
+ "author": "beachball",
299
+ "package": "@fluentui/react-accordion",
300
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
301
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
302
+ }
303
+ ],
304
+ "none": [
305
+ {
306
+ "author": "martinhochel@microsoft.com",
307
+ "package": "@fluentui/react-accordion",
308
+ "commit": "28ceaaa83cd92a0389c466f0b15b283e3d9b08e4",
309
+ "comment": "chore: update all jest deps to v25 + apply single version policy"
310
+ },
311
+ {
312
+ "author": "bsunderhus@microsoft.com",
313
+ "package": "@fluentui/react-accordion",
314
+ "commit": "c0d4e63ee58e60e2c6674efbacc0783cd520984e",
315
+ "comment": "Updates components with nullRender changes"
316
+ },
317
+ {
318
+ "author": "martinhochel@microsoft.com",
319
+ "package": "@fluentui/react-accordion",
320
+ "commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
321
+ "comment": "chore: use storybook runner for all vNext packages"
322
+ },
323
+ {
324
+ "author": "olfedias@microsoft.com",
325
+ "package": "@fluentui/react-accordion",
326
+ "commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
327
+ "comment": "remove inline-style-expand-shorthand from tsconfigs"
328
+ }
329
+ ]
330
+ }
331
+ },
332
+ {
333
+ "date": "Thu, 25 Nov 2021 08:34:10 GMT",
334
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.5",
335
+ "version": "9.0.0-beta.5",
336
+ "comments": {
337
+ "none": [
338
+ {
339
+ "author": "lingfangao@hotmail.com",
340
+ "package": "@fluentui/react-accordion",
341
+ "commit": "8a141d14f3a14de2e1c4691dad908622f310a9d1",
342
+ "comment": "Migrate package to use solution tsconfigs"
343
+ }
344
+ ],
345
+ "prerelease": [
346
+ {
347
+ "author": "beachball",
348
+ "package": "@fluentui/react-accordion",
349
+ "comment": "Bump @fluentui/react-aria to v9.0.0-beta.4",
350
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
351
+ },
352
+ {
353
+ "author": "beachball",
354
+ "package": "@fluentui/react-accordion",
355
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.4",
356
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
357
+ },
358
+ {
359
+ "author": "beachball",
360
+ "package": "@fluentui/react-accordion",
361
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
362
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
363
+ },
364
+ {
365
+ "author": "beachball",
366
+ "package": "@fluentui/react-accordion",
367
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
368
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
369
+ },
370
+ {
371
+ "author": "beachball",
372
+ "package": "@fluentui/react-accordion",
373
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.4",
374
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
375
+ },
376
+ {
377
+ "author": "beachball",
378
+ "package": "@fluentui/react-accordion",
379
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
380
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
381
+ },
382
+ {
383
+ "author": "beachball",
384
+ "package": "@fluentui/react-accordion",
385
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
386
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
387
+ },
388
+ {
389
+ "author": "beachball",
390
+ "package": "@fluentui/react-accordion",
391
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
392
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
393
+ },
394
+ {
395
+ "author": "beachball",
396
+ "package": "@fluentui/react-accordion",
397
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
398
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
399
+ }
400
+ ]
401
+ }
402
+ },
403
+ {
404
+ "date": "Fri, 12 Nov 2021 13:25:12 GMT",
405
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.4",
406
+ "version": "9.0.0-beta.4",
407
+ "comments": {
408
+ "prerelease": [
409
+ {
410
+ "author": "olfedias@microsoft.com",
411
+ "package": "@fluentui/react-accordion",
412
+ "commit": "825ea92aae027295a94048368157c180358260f2",
413
+ "comment": "export static classes for components"
414
+ },
415
+ {
416
+ "author": "Humberto.Morimoto@microsoft.com",
417
+ "package": "@fluentui/react-accordion",
418
+ "commit": "a4ea9b6227d2f634f85b40fe4cec10e4c391244b",
419
+ "comment": "Updating AccordionHeader tests to match changes in useARIAButton."
420
+ },
421
+ {
422
+ "author": "gcox@microsoft.com",
423
+ "package": "@fluentui/react-accordion",
424
+ "commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
425
+ "comment": "Updated beta and RC components to ES2019"
426
+ },
427
+ {
428
+ "author": "beachball",
429
+ "package": "@fluentui/react-accordion",
430
+ "comment": "Bump @fluentui/react-aria to v9.0.0-beta.3",
431
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
432
+ },
433
+ {
434
+ "author": "beachball",
435
+ "package": "@fluentui/react-accordion",
436
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.3",
437
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
438
+ },
439
+ {
440
+ "author": "beachball",
441
+ "package": "@fluentui/react-accordion",
442
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
443
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
444
+ },
445
+ {
446
+ "author": "beachball",
447
+ "package": "@fluentui/react-accordion",
448
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.4",
449
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
450
+ },
451
+ {
452
+ "author": "beachball",
453
+ "package": "@fluentui/react-accordion",
454
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.3",
455
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
456
+ },
457
+ {
458
+ "author": "beachball",
459
+ "package": "@fluentui/react-accordion",
460
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
461
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
462
+ },
463
+ {
464
+ "author": "beachball",
465
+ "package": "@fluentui/react-accordion",
466
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
467
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
468
+ },
469
+ {
470
+ "author": "beachball",
471
+ "package": "@fluentui/react-accordion",
472
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
473
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
474
+ },
475
+ {
476
+ "author": "beachball",
477
+ "package": "@fluentui/react-accordion",
478
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
479
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
480
+ }
481
+ ],
482
+ "none": [
483
+ {
484
+ "author": "me@levithomason.com",
485
+ "package": "@fluentui/react-accordion",
486
+ "commit": "cdbe0769d2a6ee91a98a3e62c6ac9329a714355c",
487
+ "comment": "Docs update"
488
+ },
489
+ {
490
+ "author": "lingfangao@hotmail.com",
491
+ "package": "@fluentui/react-accordion",
492
+ "commit": "00f70581480b536e723fb69edf0ae617beac4807",
493
+ "comment": "Remove beta release tag"
494
+ },
495
+ {
496
+ "author": "mgodbolt@microsoft.com",
497
+ "package": "@fluentui/react-accordion",
498
+ "commit": "7fafe76eb2c09f9d17a03c11ba73729d91ef411e",
499
+ "comment": "update docs descriptions"
500
+ }
501
+ ]
502
+ }
503
+ },
504
+ {
505
+ "date": "Wed, 27 Oct 2021 12:14:12 GMT",
506
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.3",
507
+ "version": "9.0.0-beta.3",
508
+ "comments": {
509
+ "none": [
510
+ {
511
+ "author": "olfedias@microsoft.com",
512
+ "package": "@fluentui/react-accordion",
513
+ "commit": "193af6527f202f11efdd71da7581cc6e76ca2925",
514
+ "comment": "replace temporary icons in stories"
515
+ }
516
+ ],
517
+ "prerelease": [
518
+ {
519
+ "author": "peter@draxler.ml",
520
+ "package": "@fluentui/react-accordion",
521
+ "commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
522
+ "comment": "added styling of documentation"
523
+ },
524
+ {
525
+ "author": "beachball",
526
+ "package": "@fluentui/react-accordion",
527
+ "comment": "Bump @fluentui/react-aria to v9.0.0-beta.2",
528
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
529
+ },
530
+ {
531
+ "author": "beachball",
532
+ "package": "@fluentui/react-accordion",
533
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.2",
534
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
535
+ },
536
+ {
537
+ "author": "beachball",
538
+ "package": "@fluentui/react-accordion",
539
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.2",
540
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
541
+ },
542
+ {
543
+ "author": "beachball",
544
+ "package": "@fluentui/react-accordion",
545
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.3",
546
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
547
+ },
548
+ {
549
+ "author": "beachball",
550
+ "package": "@fluentui/react-accordion",
551
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.2",
552
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
553
+ },
554
+ {
555
+ "author": "beachball",
556
+ "package": "@fluentui/react-accordion",
557
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
558
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
559
+ },
560
+ {
561
+ "author": "beachball",
562
+ "package": "@fluentui/react-accordion",
563
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.2",
564
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
565
+ },
566
+ {
567
+ "author": "beachball",
568
+ "package": "@fluentui/react-accordion",
569
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2",
570
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
571
+ },
572
+ {
573
+ "author": "beachball",
574
+ "package": "@fluentui/react-accordion",
575
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2",
576
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
577
+ }
578
+ ]
579
+ }
580
+ },
581
+ {
582
+ "date": "Tue, 12 Oct 2021 19:45:58 GMT",
583
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.2",
584
+ "version": "9.0.0-beta.2",
585
+ "comments": {
586
+ "prerelease": [
587
+ {
588
+ "author": "bsunderhus@microsoft.com",
589
+ "package": "@fluentui/react-accordion",
590
+ "comment": "Fix a11y errors on aria-expanded and disabled state",
591
+ "commit": "bdd19e2bb827fc1d8eb329e6ed48cd0542048358"
592
+ },
593
+ {
594
+ "author": "beachball",
595
+ "package": "@fluentui/react-accordion",
596
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.2",
597
+ "commit": "bdd19e2bb827fc1d8eb329e6ed48cd0542048358"
598
+ }
599
+ ]
600
+ }
601
+ },
602
+ {
603
+ "date": "Wed, 06 Oct 2021 10:37:22 GMT",
604
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.1",
605
+ "version": "9.0.0-beta.1",
606
+ "comments": {
607
+ "prerelease": [
608
+ {
609
+ "author": "lingfangao@hotmail.com",
610
+ "package": "@fluentui/react-accordion",
611
+ "comment": "Bump all v9 components to beta prerelease tag",
612
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
613
+ },
614
+ {
615
+ "author": "beachball",
616
+ "package": "@fluentui/react-accordion",
617
+ "comment": "Bump @fluentui/react-aria to v9.0.0-beta.1",
618
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
619
+ },
620
+ {
621
+ "author": "beachball",
622
+ "package": "@fluentui/react-accordion",
623
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.1",
624
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
625
+ },
626
+ {
627
+ "author": "beachball",
628
+ "package": "@fluentui/react-accordion",
629
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.1",
630
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
631
+ },
632
+ {
633
+ "author": "beachball",
634
+ "package": "@fluentui/react-accordion",
635
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.1",
636
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
637
+ },
638
+ {
639
+ "author": "beachball",
640
+ "package": "@fluentui/react-accordion",
641
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.1",
642
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
643
+ },
644
+ {
645
+ "author": "beachball",
646
+ "package": "@fluentui/react-accordion",
647
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.1",
648
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
649
+ },
650
+ {
651
+ "author": "beachball",
652
+ "package": "@fluentui/react-accordion",
653
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.1",
654
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
655
+ },
656
+ {
657
+ "author": "beachball",
658
+ "package": "@fluentui/react-accordion",
659
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1",
660
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
661
+ },
662
+ {
663
+ "author": "beachball",
664
+ "package": "@fluentui/react-accordion",
665
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1",
666
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
667
+ }
668
+ ]
669
+ }
670
+ },
671
+ {
672
+ "date": "Tue, 05 Oct 2021 12:47:58 GMT",
673
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.90",
674
+ "version": "9.0.0-alpha.90",
675
+ "comments": {
676
+ "prerelease": [
677
+ {
678
+ "author": "beachball",
679
+ "package": "@fluentui/react-accordion",
680
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.45",
681
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
682
+ },
683
+ {
684
+ "author": "beachball",
685
+ "package": "@fluentui/react-accordion",
686
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.78",
687
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
688
+ },
689
+ {
690
+ "author": "beachball",
691
+ "package": "@fluentui/react-accordion",
692
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.73",
693
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
694
+ },
695
+ {
696
+ "author": "beachball",
697
+ "package": "@fluentui/react-accordion",
698
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.60",
699
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
700
+ },
701
+ {
702
+ "author": "beachball",
703
+ "package": "@fluentui/react-accordion",
704
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53",
705
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
706
+ },
707
+ {
708
+ "author": "beachball",
709
+ "package": "@fluentui/react-accordion",
710
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.22",
711
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
712
+ }
713
+ ]
714
+ }
715
+ },
716
+ {
717
+ "date": "Tue, 05 Oct 2021 09:28:07 GMT",
718
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.89",
719
+ "version": "9.0.0-alpha.89",
720
+ "comments": {
721
+ "prerelease": [
722
+ {
723
+ "author": "bsunderhus@microsoft.com",
724
+ "package": "@fluentui/react-accordion",
725
+ "comment": "Adds ForwardRefComponent to components declaration",
726
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
727
+ },
728
+ {
729
+ "author": "beachball",
730
+ "package": "@fluentui/react-accordion",
731
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.44",
732
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
733
+ },
734
+ {
735
+ "author": "beachball",
736
+ "package": "@fluentui/react-accordion",
737
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.39",
738
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
739
+ },
740
+ {
741
+ "author": "beachball",
742
+ "package": "@fluentui/react-accordion",
743
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.77",
744
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
745
+ },
746
+ {
747
+ "author": "beachball",
748
+ "package": "@fluentui/react-accordion",
749
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.72",
750
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
751
+ },
752
+ {
753
+ "author": "beachball",
754
+ "package": "@fluentui/react-accordion",
755
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.56",
756
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
757
+ },
758
+ {
759
+ "author": "beachball",
760
+ "package": "@fluentui/react-accordion",
761
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.59",
762
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
763
+ },
764
+ {
765
+ "author": "beachball",
766
+ "package": "@fluentui/react-accordion",
767
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52",
768
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
769
+ },
770
+ {
771
+ "author": "beachball",
772
+ "package": "@fluentui/react-accordion",
773
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21",
774
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
775
+ }
776
+ ]
777
+ }
778
+ },
779
+ {
780
+ "date": "Fri, 01 Oct 2021 14:13:08 GMT",
781
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.88",
782
+ "version": "9.0.0-alpha.88",
783
+ "comments": {
784
+ "prerelease": [
785
+ {
786
+ "author": "lingfangao@hotmail.com",
787
+ "package": "@fluentui/react-accordion",
788
+ "comment": "Bump v9 prerelease versions to rerelease",
789
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
790
+ },
791
+ {
792
+ "author": "beachball",
793
+ "package": "@fluentui/react-accordion",
794
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.43",
795
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
796
+ },
797
+ {
798
+ "author": "beachball",
799
+ "package": "@fluentui/react-accordion",
800
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.38",
801
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
802
+ },
803
+ {
804
+ "author": "beachball",
805
+ "package": "@fluentui/react-accordion",
806
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.76",
807
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
808
+ },
809
+ {
810
+ "author": "beachball",
811
+ "package": "@fluentui/react-accordion",
812
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.71",
813
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
814
+ },
815
+ {
816
+ "author": "beachball",
817
+ "package": "@fluentui/react-accordion",
818
+ "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.26",
819
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
820
+ },
821
+ {
822
+ "author": "beachball",
823
+ "package": "@fluentui/react-accordion",
824
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.55",
825
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
826
+ },
827
+ {
828
+ "author": "beachball",
829
+ "package": "@fluentui/react-accordion",
830
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.58",
831
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
832
+ },
833
+ {
834
+ "author": "beachball",
835
+ "package": "@fluentui/react-accordion",
836
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51",
837
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
838
+ },
839
+ {
840
+ "author": "beachball",
841
+ "package": "@fluentui/react-accordion",
842
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20",
843
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
844
+ }
845
+ ]
846
+ }
847
+ },
848
+ {
849
+ "date": "Fri, 01 Oct 2021 12:30:46 GMT",
850
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.86",
851
+ "version": "9.0.0-alpha.86",
852
+ "comments": {
853
+ "prerelease": [
854
+ {
855
+ "author": "Humberto.Morimoto@microsoft.com",
856
+ "package": "@fluentui/react-accordion",
857
+ "comment": "Updating API to reflect aria button changes.",
858
+ "commit": "c5f91bfccb65073eb01e4b4aa0b720bb6bf06b5d"
859
+ },
860
+ {
861
+ "author": "beachball",
862
+ "package": "@fluentui/react-accordion",
863
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.41",
864
+ "commit": "c5f91bfccb65073eb01e4b4aa0b720bb6bf06b5d"
865
+ }
866
+ ]
867
+ }
868
+ },
869
+ {
870
+ "date": "Fri, 01 Oct 2021 09:44:56 GMT",
871
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.85",
872
+ "version": "9.0.0-alpha.85",
873
+ "comments": {
874
+ "prerelease": [
875
+ {
876
+ "author": "lingfangao@hotmail.com",
877
+ "package": "@fluentui/react-accordion",
878
+ "comment": "Use new default pseudo element focus outline style",
879
+ "commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5"
880
+ },
881
+ {
882
+ "author": "beachball",
883
+ "package": "@fluentui/react-accordion",
884
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.69",
885
+ "commit": "0ebd18ceaba3d032748f76da4ce06fcf8942c6c5"
886
+ }
887
+ ]
888
+ }
889
+ },
890
+ {
891
+ "date": "Wed, 29 Sep 2021 08:06:11 GMT",
892
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.84",
893
+ "version": "9.0.0-alpha.84",
894
+ "comments": {
895
+ "prerelease": [
896
+ {
897
+ "author": "beachball",
898
+ "package": "@fluentui/react-accordion",
899
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.40",
900
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
901
+ },
902
+ {
903
+ "author": "beachball",
904
+ "package": "@fluentui/react-accordion",
905
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.74",
906
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
907
+ },
908
+ {
909
+ "author": "beachball",
910
+ "package": "@fluentui/react-accordion",
911
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.68",
912
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
913
+ },
914
+ {
915
+ "author": "beachball",
916
+ "package": "@fluentui/react-accordion",
917
+ "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.24",
918
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
919
+ },
920
+ {
921
+ "author": "beachball",
922
+ "package": "@fluentui/react-accordion",
923
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.56",
924
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
925
+ },
926
+ {
927
+ "author": "beachball",
928
+ "package": "@fluentui/react-accordion",
929
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49",
930
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
931
+ },
932
+ {
933
+ "author": "beachball",
934
+ "package": "@fluentui/react-accordion",
935
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18",
936
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
937
+ }
938
+ ]
939
+ }
940
+ },
941
+ {
942
+ "date": "Mon, 27 Sep 2021 08:06:00 GMT",
943
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.83",
944
+ "version": "9.0.0-alpha.83",
945
+ "comments": {
946
+ "prerelease": [
947
+ {
948
+ "author": "beachball",
949
+ "package": "@fluentui/react-accordion",
950
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.39",
951
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
952
+ },
953
+ {
954
+ "author": "beachball",
955
+ "package": "@fluentui/react-accordion",
956
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.36",
957
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
958
+ },
959
+ {
960
+ "author": "beachball",
961
+ "package": "@fluentui/react-accordion",
962
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.73",
963
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
964
+ },
965
+ {
966
+ "author": "beachball",
967
+ "package": "@fluentui/react-accordion",
968
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.67",
969
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
970
+ },
971
+ {
972
+ "author": "beachball",
973
+ "package": "@fluentui/react-accordion",
974
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.53",
975
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
976
+ },
977
+ {
978
+ "author": "beachball",
979
+ "package": "@fluentui/react-accordion",
980
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.55",
981
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
982
+ },
983
+ {
984
+ "author": "beachball",
985
+ "package": "@fluentui/react-accordion",
986
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48",
987
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
988
+ },
989
+ {
990
+ "author": "beachball",
991
+ "package": "@fluentui/react-accordion",
992
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17",
993
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
994
+ }
995
+ ]
996
+ }
997
+ },
998
+ {
999
+ "date": "Fri, 24 Sep 2021 09:17:17 GMT",
1000
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.82",
1001
+ "version": "9.0.0-alpha.82",
1002
+ "comments": {
1003
+ "prerelease": [
1004
+ {
1005
+ "author": "beachball",
1006
+ "package": "@fluentui/react-accordion",
1007
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.38",
1008
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
1009
+ },
1010
+ {
1011
+ "author": "beachball",
1012
+ "package": "@fluentui/react-accordion",
1013
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.35",
1014
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
1015
+ },
1016
+ {
1017
+ "author": "beachball",
1018
+ "package": "@fluentui/react-accordion",
1019
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.72",
1020
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
1021
+ },
1022
+ {
1023
+ "author": "beachball",
1024
+ "package": "@fluentui/react-accordion",
1025
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.66",
1026
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
1027
+ },
1028
+ {
1029
+ "author": "beachball",
1030
+ "package": "@fluentui/react-accordion",
1031
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.52",
1032
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
1033
+ },
1034
+ {
1035
+ "author": "beachball",
1036
+ "package": "@fluentui/react-accordion",
1037
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.54",
1038
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
1039
+ },
1040
+ {
1041
+ "author": "beachball",
1042
+ "package": "@fluentui/react-accordion",
1043
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47",
1044
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
1045
+ },
1046
+ {
1047
+ "author": "beachball",
1048
+ "package": "@fluentui/react-accordion",
1049
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16",
1050
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
1051
+ }
1052
+ ]
1053
+ }
1054
+ },
1055
+ {
1056
+ "date": "Thu, 23 Sep 2021 08:21:34 GMT",
1057
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.81",
1058
+ "version": "9.0.0-alpha.81",
1059
+ "comments": {
1060
+ "prerelease": [
1061
+ {
1062
+ "author": "beachball",
1063
+ "package": "@fluentui/react-accordion",
1064
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.37",
1065
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
1066
+ },
1067
+ {
1068
+ "author": "beachball",
1069
+ "package": "@fluentui/react-accordion",
1070
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.34",
1071
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
1072
+ },
1073
+ {
1074
+ "author": "beachball",
1075
+ "package": "@fluentui/react-accordion",
1076
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.71",
1077
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
1078
+ },
1079
+ {
1080
+ "author": "beachball",
1081
+ "package": "@fluentui/react-accordion",
1082
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.65",
1083
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
1084
+ },
1085
+ {
1086
+ "author": "beachball",
1087
+ "package": "@fluentui/react-accordion",
1088
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.51",
1089
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
1090
+ },
1091
+ {
1092
+ "author": "beachball",
1093
+ "package": "@fluentui/react-accordion",
1094
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.53",
1095
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
1096
+ },
1097
+ {
1098
+ "author": "beachball",
1099
+ "package": "@fluentui/react-accordion",
1100
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46",
1101
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
1102
+ },
1103
+ {
1104
+ "author": "beachball",
1105
+ "package": "@fluentui/react-accordion",
1106
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15",
1107
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
1108
+ }
1109
+ ]
1110
+ }
1111
+ },
1112
+ {
1113
+ "date": "Wed, 22 Sep 2021 10:10:07 GMT",
1114
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.80",
1115
+ "version": "9.0.0-alpha.80",
1116
+ "comments": {
1117
+ "prerelease": [
1118
+ {
1119
+ "author": "beachball",
1120
+ "package": "@fluentui/react-accordion",
1121
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.36",
1122
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
1123
+ },
1124
+ {
1125
+ "author": "beachball",
1126
+ "package": "@fluentui/react-accordion",
1127
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.33",
1128
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
1129
+ },
1130
+ {
1131
+ "author": "beachball",
1132
+ "package": "@fluentui/react-accordion",
1133
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.70",
1134
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
1135
+ },
1136
+ {
1137
+ "author": "beachball",
1138
+ "package": "@fluentui/react-accordion",
1139
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.64",
1140
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
1141
+ },
1142
+ {
1143
+ "author": "beachball",
1144
+ "package": "@fluentui/react-accordion",
1145
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.50",
1146
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
1147
+ },
1148
+ {
1149
+ "author": "beachball",
1150
+ "package": "@fluentui/react-accordion",
1151
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.52",
1152
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
1153
+ },
1154
+ {
1155
+ "author": "beachball",
1156
+ "package": "@fluentui/react-accordion",
1157
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45",
1158
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
1159
+ },
1160
+ {
1161
+ "author": "beachball",
1162
+ "package": "@fluentui/react-accordion",
1163
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14",
1164
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
1165
+ }
1166
+ ]
1167
+ }
1168
+ },
1169
+ {
1170
+ "date": "Tue, 21 Sep 2021 07:42:34 GMT",
1171
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.79",
1172
+ "version": "9.0.0-alpha.79",
1173
+ "comments": {
1174
+ "prerelease": [
1175
+ {
1176
+ "author": "gcox@microsoft.com",
1177
+ "package": "@fluentui/react-accordion",
1178
+ "comment": "Updating to types over interfaces",
1179
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
1180
+ },
1181
+ {
1182
+ "author": "beachball",
1183
+ "package": "@fluentui/react-accordion",
1184
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.35",
1185
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
1186
+ },
1187
+ {
1188
+ "author": "beachball",
1189
+ "package": "@fluentui/react-accordion",
1190
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.69",
1191
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
1192
+ },
1193
+ {
1194
+ "author": "beachball",
1195
+ "package": "@fluentui/react-accordion",
1196
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.63",
1197
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
1198
+ },
1199
+ {
1200
+ "author": "beachball",
1201
+ "package": "@fluentui/react-accordion",
1202
+ "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.23",
1203
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
1204
+ },
1205
+ {
1206
+ "author": "beachball",
1207
+ "package": "@fluentui/react-accordion",
1208
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.51",
1209
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
1210
+ },
1211
+ {
1212
+ "author": "beachball",
1213
+ "package": "@fluentui/react-accordion",
1214
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44",
1215
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
1216
+ },
1217
+ {
1218
+ "author": "beachball",
1219
+ "package": "@fluentui/react-accordion",
1220
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13",
1221
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
1222
+ }
1223
+ ]
1224
+ }
1225
+ },
1226
+ {
1227
+ "date": "Mon, 20 Sep 2021 07:36:26 GMT",
1228
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.78",
1229
+ "version": "9.0.0-alpha.78",
1230
+ "comments": {
1231
+ "none": [
1232
+ {
1233
+ "author": "lingfangao@hotmail.com",
1234
+ "package": "@fluentui/react-accordion",
1235
+ "comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
1236
+ "commit": "b8a304770f77c0353553a152dad34421070400a6"
1237
+ }
1238
+ ],
1239
+ "prerelease": [
1240
+ {
1241
+ "author": "lingfangao@hotmail.com",
1242
+ "package": "@fluentui/react-accordion",
1243
+ "commit": "b8a304770f77c0353553a152dad34421070400a6",
1244
+ "comment": "Bump @fluentui/react-accordion to v9.0.0-alpha.78"
1245
+ }
1246
+ ]
1247
+ }
1248
+ },
1249
+ {
1250
+ "date": "Fri, 17 Sep 2021 07:35:26 GMT",
1251
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.77",
1252
+ "version": "9.0.0-alpha.77",
1253
+ "comments": {
1254
+ "prerelease": [
1255
+ {
1256
+ "author": "Humberto.Morimoto@microsoft.com",
1257
+ "package": "@fluentui/react-accordion",
1258
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575",
1259
+ "comment": "Bump @fluentui/react-accordion to v9.0.0-alpha.77"
1260
+ }
1261
+ ]
1262
+ }
1263
+ },
1264
+ {
1265
+ "date": "Thu, 16 Sep 2021 07:38:39 GMT",
1266
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.76",
1267
+ "version": "9.0.0-alpha.76",
1268
+ "comments": {
1269
+ "prerelease": [
1270
+ {
1271
+ "author": "behowell@microsoft.com",
1272
+ "package": "@fluentui/react-accordion",
1273
+ "comment": "Fix typings in React.forwardRef",
1274
+ "commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c"
1275
+ },
1276
+ {
1277
+ "author": "behowell@microsoft.com",
1278
+ "package": "@fluentui/react-accordion",
1279
+ "commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c",
1280
+ "comment": "Bump @fluentui/react-accordion to v9.0.0-alpha.76"
1281
+ }
1282
+ ]
1283
+ }
1284
+ },
1285
+ {
1286
+ "date": "Wed, 15 Sep 2021 16:53:08 GMT",
1287
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.75",
1288
+ "version": "9.0.0-alpha.75",
1289
+ "comments": {
1290
+ "none": [
1291
+ {
1292
+ "author": "email not defined",
1293
+ "package": "@fluentui/react-accordion",
1294
+ "comment": "Change files",
1295
+ "commit": "0b118407aa49e5924a2630f99eacbe795899853b"
1296
+ }
1297
+ ]
1298
+ }
1299
+ },
1300
+ {
1301
+ "date": "Tue, 14 Sep 2021 20:09:02 GMT",
1302
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.75",
1303
+ "version": "9.0.0-alpha.75",
1304
+ "comments": {
1305
+ "prerelease": [
1306
+ {
1307
+ "author": "bsunderhus@microsoft.com",
1308
+ "package": "@fluentui/react-accordion",
1309
+ "commit": "10495c31fb5c5cf48b4665601a75a0cfabb6a03c",
1310
+ "comment": "Bump @fluentui/react-accordion to v9.0.0-alpha.75"
1311
+ }
1312
+ ]
1313
+ }
1314
+ },
1315
+ {
1316
+ "date": "Tue, 14 Sep 2021 07:38:18 GMT",
1317
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.74",
1318
+ "version": "9.0.0-alpha.74",
1319
+ "comments": {
1320
+ "prerelease": [
1321
+ {
1322
+ "author": "bsunderhus@microsoft.com",
1323
+ "package": "@fluentui/react-accordion",
1324
+ "commit": "fe05da92ddc2742135a689b7b990f8152bd752c3",
1325
+ "comment": "Bump @fluentui/react-accordion to v9.0.0-alpha.74"
1326
+ }
1327
+ ]
1328
+ }
1329
+ },
1330
+ {
1331
+ "date": "Fri, 10 Sep 2021 16:31:53 GMT",
1332
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.73",
1333
+ "version": "9.0.0-alpha.73",
1334
+ "comments": {
1335
+ "prerelease": [
1336
+ {
1337
+ "author": "lingfangao@hotmail.com",
1338
+ "package": "@fluentui/react-accordion",
1339
+ "comment": "chore(v9): Move all internal v9 dependencies from caret to fixed version",
1340
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0"
1341
+ },
1342
+ {
1343
+ "author": "lingfangao@hotmail.com",
1344
+ "package": "@fluentui/react-accordion",
1345
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0",
1346
+ "comment": "Bump @fluentui/react-accordion to v9.0.0-alpha.73"
1347
+ }
1348
+ ]
1349
+ }
1350
+ },
1351
+ {
1352
+ "date": "Fri, 10 Sep 2021 07:39:51 GMT",
1353
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.72",
1354
+ "version": "9.0.0-alpha.72",
1355
+ "comments": {
1356
+ "prerelease": [
1357
+ {
1358
+ "comment": "Refactor ObjectShorthandProps into IntrinsicShorthandProps",
1359
+ "author": "behowell@microsoft.com",
1360
+ "commit": "8700a515c7f2659761c5b53f55c32453bc3510b1",
1361
+ "package": "@fluentui/react-accordion"
1362
+ }
1363
+ ]
1364
+ }
1365
+ },
1366
+ {
1367
+ "date": "Tue, 07 Sep 2021 07:34:55 GMT",
1368
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.71",
1369
+ "version": "9.0.0-alpha.71",
1370
+ "comments": {
1371
+ "none": [
1372
+ {
1373
+ "comment": "Bump @fluentui/react-conformance to v0.5.0",
1374
+ "author": "olfedias@microsoft.com",
1375
+ "commit": "37e0f35eb706d40c4537010de97db94a831022d3",
1376
+ "package": "@fluentui/react-accordion"
1377
+ }
1378
+ ]
1379
+ }
1380
+ },
1381
+ {
1382
+ "date": "Mon, 06 Sep 2021 07:34:53 GMT",
1383
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.71",
1384
+ "version": "9.0.0-alpha.71",
1385
+ "comments": {
1386
+ "prerelease": [
1387
+ {
1388
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.44",
1389
+ "author": "lingfangao@hotmail.com",
1390
+ "commit": "cd22a603bb20947e7d23a3357b9a535afdb5ee1d",
1391
+ "package": "@fluentui/react-accordion"
1392
+ }
1393
+ ]
1394
+ }
1395
+ },
1396
+ {
1397
+ "date": "Thu, 02 Sep 2021 07:36:46 GMT",
1398
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.70",
1399
+ "version": "9.0.0-alpha.70",
1400
+ "comments": {
1401
+ "none": [
1402
+ {
1403
+ "comment": "enable makeStyles conformance tests",
1404
+ "author": "olfedias@microsoft.com",
1405
+ "commit": "3ec83a00d7c5605f449bfd0fcfc31f5dd31a1d81",
1406
+ "package": "@fluentui/react-accordion"
1407
+ }
1408
+ ],
1409
+ "prerelease": [
1410
+ {
1411
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.43",
1412
+ "author": "olfedias@microsoft.com",
1413
+ "commit": "ff3225d408fa6a97628e3f08a5a11a196bef6934",
1414
+ "package": "@fluentui/react-accordion"
1415
+ }
1416
+ ],
1417
+ "patch": [
1418
+ {
1419
+ "comment": "Bump @fluentui/react-conformance to v0.4.5",
1420
+ "author": "olfedias@microsoft.com",
1421
+ "commit": "8f887d05e8f2fed8433b147c6e175d8297455c51",
1422
+ "package": "@fluentui/react-accordion"
1423
+ }
1424
+ ]
1425
+ }
1426
+ },
1427
+ {
1428
+ "date": "Wed, 01 Sep 2021 07:39:56 GMT",
1429
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.69",
1430
+ "version": "9.0.0-alpha.69",
1431
+ "comments": {
1432
+ "prerelease": [
1433
+ {
1434
+ "comment": "Updates react-accordion to use root as slot",
1435
+ "author": "bsunderhus@microsoft.com",
1436
+ "commit": "40254a1b07bd51affd276e51af0b1d517714b45c",
1437
+ "package": "@fluentui/react-accordion"
1438
+ }
1439
+ ]
1440
+ }
1441
+ },
1442
+ {
1443
+ "date": "Tue, 31 Aug 2021 07:37:47 GMT",
1444
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.68",
1445
+ "version": "9.0.0-alpha.68",
1446
+ "comments": {
1447
+ "prerelease": [
1448
+ {
1449
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.54",
1450
+ "author": "marata@microsoft.com",
1451
+ "commit": "4a7f81f3d92f128a672717eda660af3ba50ee71b",
1452
+ "package": "@fluentui/react-accordion"
1453
+ }
1454
+ ]
1455
+ }
1456
+ },
1457
+ {
1458
+ "date": "Mon, 30 Aug 2021 07:35:05 GMT",
1459
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.67",
1460
+ "version": "9.0.0-alpha.67",
1461
+ "comments": {
1462
+ "prerelease": [
1463
+ {
1464
+ "comment": "Updating TypeScript type-only imports/exports to use import/export type syntax.",
1465
+ "author": "dzearing@hotmail.com",
1466
+ "commit": "e2ee214821eeb15080fa66ea0905dee4838fb291",
1467
+ "package": "@fluentui/react-accordion"
1468
+ }
1469
+ ]
1470
+ }
1471
+ },
1472
+ {
1473
+ "date": "Fri, 27 Aug 2021 07:33:32 GMT",
1474
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.66",
1475
+ "version": "9.0.0-alpha.66",
1476
+ "comments": {
1477
+ "prerelease": [
1478
+ {
1479
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.40",
1480
+ "author": "olfedias@microsoft.com",
1481
+ "commit": "a59db5b49ed755bf1b64ac0ac051d626ec50ffd3",
1482
+ "package": "@fluentui/react-accordion"
1483
+ }
1484
+ ]
1485
+ }
1486
+ },
1487
+ {
1488
+ "date": "Thu, 26 Aug 2021 07:35:43 GMT",
1489
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.65",
1490
+ "version": "9.0.0-alpha.65",
1491
+ "comments": {
1492
+ "prerelease": [
1493
+ {
1494
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.39",
1495
+ "author": "martinhochel@microsoft.com",
1496
+ "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
1497
+ "package": "@fluentui/react-accordion"
1498
+ }
1499
+ ],
1500
+ "none": [
1501
+ {
1502
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
1503
+ "author": "martinhochel@microsoft.com",
1504
+ "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
1505
+ "package": "@fluentui/react-accordion"
1506
+ },
1507
+ {
1508
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.22",
1509
+ "author": "martinhochel@microsoft.com",
1510
+ "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
1511
+ "package": "@fluentui/react-accordion"
1512
+ }
1513
+ ]
1514
+ }
1515
+ },
1516
+ {
1517
+ "date": "Tue, 24 Aug 2021 07:34:48 GMT",
1518
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.64",
1519
+ "version": "9.0.0-alpha.64",
1520
+ "comments": {
1521
+ "none": [
1522
+ {
1523
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.38",
1524
+ "author": "dzearing@hotmail.com",
1525
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
1526
+ "package": "@fluentui/react-accordion"
1527
+ }
1528
+ ]
1529
+ }
1530
+ },
1531
+ {
1532
+ "date": "Fri, 20 Aug 2021 07:37:28 GMT",
1533
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.64",
1534
+ "version": "9.0.0-alpha.64",
1535
+ "comments": {
1536
+ "prerelease": [
1537
+ {
1538
+ "comment": "Update .npmignore",
1539
+ "author": "elcraig@microsoft.com",
1540
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1541
+ "package": "@fluentui/react-accordion"
1542
+ }
1543
+ ],
1544
+ "none": [
1545
+ {
1546
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.38",
1547
+ "author": "elcraig@microsoft.com",
1548
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1549
+ "package": "@fluentui/react-accordion"
1550
+ },
1551
+ {
1552
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.0",
1553
+ "author": "behowell@microsoft.com",
1554
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1555
+ "package": "@fluentui/react-accordion"
1556
+ },
1557
+ {
1558
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
1559
+ "author": "elcraig@microsoft.com",
1560
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1561
+ "package": "@fluentui/react-accordion"
1562
+ },
1563
+ {
1564
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.22",
1565
+ "author": "elcraig@microsoft.com",
1566
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1567
+ "package": "@fluentui/react-accordion"
1568
+ },
1569
+ {
1570
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.40",
1571
+ "author": "elcraig@microsoft.com",
1572
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1573
+ "package": "@fluentui/react-accordion"
1574
+ },
1575
+ {
1576
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.24",
1577
+ "author": "elcraig@microsoft.com",
1578
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1579
+ "package": "@fluentui/react-accordion"
1580
+ },
1581
+ {
1582
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.58",
1583
+ "author": "elcraig@microsoft.com",
1584
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1585
+ "package": "@fluentui/react-accordion"
1586
+ },
1587
+ {
1588
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.52",
1589
+ "author": "elcraig@microsoft.com",
1590
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1591
+ "package": "@fluentui/react-accordion"
1592
+ },
1593
+ {
1594
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
1595
+ "author": "behowell@microsoft.com",
1596
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1597
+ "package": "@fluentui/react-accordion"
1598
+ },
1599
+ {
1600
+ "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.21",
1601
+ "author": "elcraig@microsoft.com",
1602
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1603
+ "package": "@fluentui/react-accordion"
1604
+ },
1605
+ {
1606
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1607
+ "author": "behowell@microsoft.com",
1608
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1609
+ "package": "@fluentui/react-accordion"
1610
+ }
1611
+ ]
1612
+ }
1613
+ },
1614
+ {
1615
+ "date": "Thu, 19 Aug 2021 07:41:35 GMT",
1616
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.63",
1617
+ "version": "9.0.0-alpha.63",
1618
+ "comments": {
1619
+ "prerelease": [
1620
+ {
1621
+ "comment": "Updates react-accordion on slot null rendering",
1622
+ "author": "bsunderhus@microsoft.com",
1623
+ "commit": "e467d64e7d3edb2512a81efdaeca5813269039b4",
1624
+ "package": "@fluentui/react-accordion"
1625
+ }
1626
+ ]
1627
+ }
1628
+ },
1629
+ {
1630
+ "date": "Wed, 18 Aug 2021 07:33:54 GMT",
1631
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.62",
1632
+ "version": "9.0.0-alpha.62",
1633
+ "comments": {
1634
+ "none": [
1635
+ {
1636
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.36",
1637
+ "author": "martinhochel@microsoft.com",
1638
+ "commit": "5dfa622011b10aaab3ab1fb3fc2e5f77c8a13166",
1639
+ "package": "@fluentui/react-accordion"
1640
+ }
1641
+ ]
1642
+ }
1643
+ },
1644
+ {
1645
+ "date": "Fri, 13 Aug 2021 07:36:34 GMT",
1646
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.62",
1647
+ "version": "9.0.0-alpha.62",
1648
+ "comments": {
1649
+ "prerelease": [
1650
+ {
1651
+ "comment": "chore(Accordion): implement useContextValues() pattern",
1652
+ "author": "olfedias@microsoft.com",
1653
+ "commit": "4206575d51e8ae49fdd4f2b6aa2eb30a9b253a18",
1654
+ "package": "@fluentui/react-accordion"
1655
+ }
1656
+ ]
1657
+ }
1658
+ },
1659
+ {
1660
+ "date": "Wed, 11 Aug 2021 07:34:54 GMT",
1661
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.61",
1662
+ "version": "9.0.0-alpha.61",
1663
+ "comments": {
1664
+ "prerelease": [
1665
+ {
1666
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.35",
1667
+ "author": "olfedias@microsoft.com",
1668
+ "commit": "954ba1d43684df75942a18c0ef05dc99187729ff",
1669
+ "package": "@fluentui/react-accordion"
1670
+ }
1671
+ ]
1672
+ }
1673
+ },
1674
+ {
1675
+ "date": "Mon, 09 Aug 2021 07:35:14 GMT",
1676
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.60",
1677
+ "version": "9.0.0-alpha.60",
1678
+ "comments": {
1679
+ "none": [
1680
+ {
1681
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.34",
1682
+ "author": "czearing@outlook.com",
1683
+ "commit": "c8aa3a59fbe9a59ca90077418d7c82de9f31ee13",
1684
+ "package": "@fluentui/react-accordion"
1685
+ }
1686
+ ]
1687
+ }
1688
+ },
1689
+ {
1690
+ "date": "Fri, 06 Aug 2021 07:35:14 GMT",
1691
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.60",
1692
+ "version": "9.0.0-alpha.60",
1693
+ "comments": {
1694
+ "prerelease": [
1695
+ {
1696
+ "comment": "Removes descendants API in favor of explicit values",
1697
+ "author": "bsunderhus@microsoft.com",
1698
+ "commit": "9ac8b044a6a524d6ce55f3f801ce0189a8087e85",
1699
+ "package": "@fluentui/react-accordion"
1700
+ }
1701
+ ]
1702
+ }
1703
+ },
1704
+ {
1705
+ "date": "Wed, 04 Aug 2021 07:34:12 GMT",
1706
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.59",
1707
+ "version": "9.0.0-alpha.59",
1708
+ "comments": {
1709
+ "none": [
1710
+ {
1711
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.37",
1712
+ "author": "czearing@outlook.com",
1713
+ "commit": "109e85b19d8ee37a9c31ddf8e2083471bab64526",
1714
+ "package": "@fluentui/react-accordion"
1715
+ }
1716
+ ]
1717
+ }
1718
+ },
1719
+ {
1720
+ "date": "Tue, 03 Aug 2021 07:39:30 GMT",
1721
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.59",
1722
+ "version": "9.0.0-alpha.59",
1723
+ "comments": {
1724
+ "patch": [
1725
+ {
1726
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.3",
1727
+ "author": "behowell@microsoft.com",
1728
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1729
+ "package": "@fluentui/react-accordion"
1730
+ },
1731
+ {
1732
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
1733
+ "author": "behowell@microsoft.com",
1734
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1735
+ "package": "@fluentui/react-accordion"
1736
+ },
1737
+ {
1738
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1739
+ "author": "behowell@microsoft.com",
1740
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1741
+ "package": "@fluentui/react-accordion"
1742
+ }
1743
+ ],
1744
+ "prerelease": [
1745
+ {
1746
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.33",
1747
+ "author": "behowell@microsoft.com",
1748
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1749
+ "package": "@fluentui/react-accordion"
1750
+ }
1751
+ ]
1752
+ }
1753
+ },
1754
+ {
1755
+ "date": "Mon, 02 Aug 2021 07:36:20 GMT",
1756
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.58",
1757
+ "version": "9.0.0-alpha.58",
1758
+ "comments": {
1759
+ "prerelease": [
1760
+ {
1761
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.36",
1762
+ "author": "lingfan.gao@microsoft.com",
1763
+ "commit": "ab0e1bafdd9ace2974b3362cd2300fb32af466fb",
1764
+ "package": "@fluentui/react-accordion"
1765
+ }
1766
+ ]
1767
+ }
1768
+ },
1769
+ {
1770
+ "date": "Mon, 26 Jul 2021 07:37:30 GMT",
1771
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.57",
1772
+ "version": "9.0.0-alpha.57",
1773
+ "comments": {
1774
+ "prerelease": [
1775
+ {
1776
+ "comment": "Migrate to useControllableState hook",
1777
+ "author": "bsunderhus@microsoft.com",
1778
+ "commit": "68f0838cfebb7cb514ddf2bf55fd171f714b7bc2",
1779
+ "package": "@fluentui/react-accordion"
1780
+ }
1781
+ ],
1782
+ "none": [
1783
+ {
1784
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.31",
1785
+ "author": "olfedias@microsoft.com",
1786
+ "commit": "8c249a1c1a8dcc4b0d9877e5d5e8e6d126063788",
1787
+ "package": "@fluentui/react-accordion"
1788
+ }
1789
+ ]
1790
+ }
1791
+ },
1792
+ {
1793
+ "date": "Fri, 23 Jul 2021 07:38:19 GMT",
1794
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.56",
1795
+ "version": "9.0.0-alpha.56",
1796
+ "comments": {
1797
+ "prerelease": [
1798
+ {
1799
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.30",
1800
+ "author": "miroslav.stastny@microsoft.com",
1801
+ "commit": "5d812148593dc574a6f3a343a5657614b4d10456",
1802
+ "package": "@fluentui/react-accordion"
1803
+ }
1804
+ ]
1805
+ }
1806
+ },
1807
+ {
1808
+ "date": "Thu, 22 Jul 2021 07:36:55 GMT",
1809
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.55",
1810
+ "version": "9.0.0-alpha.55",
1811
+ "comments": {
1812
+ "prerelease": [
1813
+ {
1814
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.29",
1815
+ "author": "lingfan.gao@microsoft.com",
1816
+ "commit": "84296aa8db9ddbf0250f24703fb304c360ff05e1",
1817
+ "package": "@fluentui/react-accordion"
1818
+ }
1819
+ ]
1820
+ }
1821
+ },
1822
+ {
1823
+ "date": "Tue, 20 Jul 2021 22:23:17 GMT",
1824
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.54",
1825
+ "version": "9.0.0-alpha.54",
1826
+ "comments": {
1827
+ "none": [
1828
+ {
1829
+ "comment": "Sync babel-make-styles with published version",
1830
+ "author": "elcraig@microsoft.com",
1831
+ "commit": "d57f601738c32dfa1e651529d8edfec10a6b46b7",
1832
+ "package": "@fluentui/react-accordion"
1833
+ },
1834
+ {
1835
+ "comment": "add bundle size fixtures",
1836
+ "author": "olfedias@microsoft.com",
1837
+ "commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
1838
+ "package": "@fluentui/react-accordion"
1839
+ },
1840
+ {
1841
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.25",
1842
+ "author": "olfedias@microsoft.com",
1843
+ "commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
1844
+ "package": "@fluentui/react-accordion"
1845
+ },
1846
+ {
1847
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.13",
1848
+ "author": "olfedias@microsoft.com",
1849
+ "commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
1850
+ "package": "@fluentui/react-accordion"
1851
+ },
1852
+ {
1853
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.49",
1854
+ "author": "olfedias@microsoft.com",
1855
+ "commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
1856
+ "package": "@fluentui/react-accordion"
1857
+ },
1858
+ {
1859
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.43",
1860
+ "author": "olfedias@microsoft.com",
1861
+ "commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
1862
+ "package": "@fluentui/react-accordion"
1863
+ },
1864
+ {
1865
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.33",
1866
+ "author": "olfedias@microsoft.com",
1867
+ "commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
1868
+ "package": "@fluentui/react-accordion"
1869
+ },
1870
+ {
1871
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.17",
1872
+ "author": "olfedias@microsoft.com",
1873
+ "commit": "0723d064145b7f6be971187a5cf9b66859308e2f",
1874
+ "package": "@fluentui/react-accordion"
1875
+ }
1876
+ ],
1877
+ "prerelease": [
1878
+ {
1879
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.28",
1880
+ "author": "olfedias@microsoft.com",
1881
+ "commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
1882
+ "package": "@fluentui/react-accordion"
1883
+ }
1884
+ ]
1885
+ }
1886
+ },
1887
+ {
1888
+ "date": "Fri, 16 Jul 2021 22:53:17 GMT",
1889
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.53",
1890
+ "version": "9.0.0-alpha.53",
1891
+ "comments": {
1892
+ "prerelease": [
1893
+ {
1894
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.26",
1895
+ "author": "olfedias@microsoft.com",
1896
+ "commit": "91e053b6cfb80ed71f99957fc1e6b92f67920ab3",
1897
+ "package": "@fluentui/react-accordion"
1898
+ }
1899
+ ]
1900
+ }
1901
+ },
1902
+ {
1903
+ "date": "Thu, 15 Jul 2021 07:36:18 GMT",
1904
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.52",
1905
+ "version": "9.0.0-alpha.52",
1906
+ "comments": {
1907
+ "prerelease": [
1908
+ {
1909
+ "comment": "Fix react-accordion due to changes on slots typings",
1910
+ "author": "bsunderhus@microsoft.com",
1911
+ "commit": "b60234948eacb8c6fa9d08ab8e98d963f583d475",
1912
+ "package": "@fluentui/react-accordion"
1913
+ }
1914
+ ]
1915
+ }
1916
+ },
1917
+ {
1918
+ "date": "Tue, 13 Jul 2021 22:32:58 GMT",
1919
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.51",
1920
+ "version": "9.0.0-alpha.51",
1921
+ "comments": {
1922
+ "patch": [
1923
+ {
1924
+ "comment": "Bump @fluentui/react-conformance to v0.4.3",
1925
+ "author": "elcraig@microsoft.com",
1926
+ "commit": "12b74625dec55bd1919f6370513043d87705e5ea",
1927
+ "package": "@fluentui/react-accordion"
1928
+ }
1929
+ ]
1930
+ }
1931
+ },
1932
+ {
1933
+ "date": "Tue, 13 Jul 2021 07:35:36 GMT",
1934
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.50",
1935
+ "version": "9.0.0-alpha.50",
1936
+ "comments": {
1937
+ "prerelease": [
1938
+ {
1939
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.24",
1940
+ "author": "behowell@microsoft.com",
1941
+ "commit": "8e5969e291bcafac21df12c9fb591bdd5654c613",
1942
+ "package": "@fluentui/react-accordion"
1943
+ }
1944
+ ]
1945
+ }
1946
+ },
1947
+ {
1948
+ "date": "Mon, 12 Jul 2021 07:33:23 GMT",
1949
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.49",
1950
+ "version": "9.0.0-alpha.49",
1951
+ "comments": {
1952
+ "prerelease": [
1953
+ {
1954
+ "comment": "Forces children prop with Fragment in useAccordionHeader",
1955
+ "author": "bsunderhus@microsoft.com",
1956
+ "commit": "b77307bb8ec2b07db583fda8367b73911598b4f6",
1957
+ "package": "@fluentui/react-accordion"
1958
+ },
1959
+ {
1960
+ "comment": "Refactor Accordion component internals",
1961
+ "author": "bsunderhus@microsoft.com",
1962
+ "commit": "8176afa816ded18f39884673d5afa3ce709a17dd",
1963
+ "package": "@fluentui/react-accordion"
1964
+ },
1965
+ {
1966
+ "comment": "Update prop merging mechanism",
1967
+ "author": "bsunderhus@microsoft.com",
1968
+ "commit": "5d52e386874b7c44f7c1ba39091c7b5638eb9d65",
1969
+ "package": "@fluentui/react-accordion"
1970
+ }
1971
+ ]
1972
+ }
1973
+ },
1974
+ {
1975
+ "date": "Fri, 09 Jul 2021 07:39:31 GMT",
1976
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.48",
1977
+ "version": "9.0.0-alpha.48",
1978
+ "comments": {
1979
+ "patch": [
1980
+ {
1981
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.2",
1982
+ "author": "martinhochel@microsoft.com",
1983
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1984
+ "package": "@fluentui/react-accordion"
1985
+ },
1986
+ {
1987
+ "comment": "Bump @fluentui/react-conformance to v0.4.2",
1988
+ "author": "martinhochel@microsoft.com",
1989
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1990
+ "package": "@fluentui/react-accordion"
1991
+ },
1992
+ {
1993
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1994
+ "author": "martinhochel@microsoft.com",
1995
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1996
+ "package": "@fluentui/react-accordion"
1997
+ }
1998
+ ],
1999
+ "prerelease": [
2000
+ {
2001
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.23",
2002
+ "author": "martinhochel@microsoft.com",
2003
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
2004
+ "package": "@fluentui/react-accordion"
2005
+ }
2006
+ ]
2007
+ }
2008
+ },
2009
+ {
2010
+ "date": "Fri, 02 Jul 2021 23:15:55 GMT",
2011
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.47",
2012
+ "version": "9.0.0-alpha.47",
2013
+ "comments": {
2014
+ "prerelease": [
2015
+ {
2016
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.22",
2017
+ "author": "olfedias@microsoft.com",
2018
+ "commit": "936b45148b58d15c9c843f0503f7bdf12b9da4e9",
2019
+ "package": "@fluentui/react-accordion"
2020
+ }
2021
+ ]
2022
+ }
2023
+ },
2024
+ {
2025
+ "date": "Fri, 02 Jul 2021 07:37:06 GMT",
2026
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.46",
2027
+ "version": "9.0.0-alpha.46",
2028
+ "comments": {
2029
+ "prerelease": [
2030
+ {
2031
+ "comment": "Rename typings and getSlots to have the Compat Suffix",
2032
+ "author": "bsunderhus@microsoft.com",
2033
+ "commit": "c939e67b1840a9eb5f7706afcda8c14df8f18d33",
2034
+ "package": "@fluentui/react-accordion"
2035
+ }
2036
+ ]
2037
+ }
2038
+ },
2039
+ {
2040
+ "date": "Thu, 01 Jul 2021 07:35:05 GMT",
2041
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.45",
2042
+ "version": "9.0.0-alpha.45",
2043
+ "comments": {
2044
+ "prerelease": [
2045
+ {
2046
+ "comment": "remove redundant dependency on react-theme-provider",
2047
+ "author": "olfedias@microsoft.com",
2048
+ "commit": "76680e02208f2e8a479a60289ba9f6b9e27c9f5d",
2049
+ "package": "@fluentui/react-accordion"
2050
+ },
2051
+ {
2052
+ "comment": "Fixing bug in start script of converged packages.",
2053
+ "author": "Humberto.Morimoto@microsoft.com",
2054
+ "commit": "c7eff2580a6fe159bbb3c4e77e549925187f3150",
2055
+ "package": "@fluentui/react-accordion"
2056
+ }
2057
+ ],
2058
+ "none": [
2059
+ {
2060
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.13",
2061
+ "author": "lingfan.gao@microsoft.com",
2062
+ "commit": "5c06b5a9bd09cefc6ef3afc90f5575ca4663f665",
2063
+ "package": "@fluentui/react-accordion"
2064
+ }
2065
+ ]
2066
+ }
2067
+ },
2068
+ {
2069
+ "date": "Wed, 30 Jun 2021 07:38:35 GMT",
2070
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.44",
2071
+ "version": "9.0.0-alpha.44",
2072
+ "comments": {
2073
+ "prerelease": [
2074
+ {
2075
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.19",
2076
+ "author": "tristan.watanabe@gmail.com",
2077
+ "commit": "804ca93da84e19cec0737729473be5034a2e4939",
2078
+ "package": "@fluentui/react-accordion"
2079
+ }
2080
+ ]
2081
+ }
2082
+ },
2083
+ {
2084
+ "date": "Tue, 29 Jun 2021 07:33:32 GMT",
2085
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.43",
2086
+ "version": "9.0.0-alpha.43",
2087
+ "comments": {
2088
+ "prerelease": [
2089
+ {
2090
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.18",
2091
+ "author": "olfedias@microsoft.com",
2092
+ "commit": "073ea5f67e3088a92f68caeeca32ef96410aabc5",
2093
+ "package": "@fluentui/react-accordion"
2094
+ }
2095
+ ],
2096
+ "none": [
2097
+ {
2098
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.35",
2099
+ "author": "lingfan.gao@microsoft.com",
2100
+ "commit": "4f907a837f3b85923178b611e4fbb0d9ac222dda",
2101
+ "package": "@fluentui/react-accordion"
2102
+ }
2103
+ ]
2104
+ }
2105
+ },
2106
+ {
2107
+ "date": "Mon, 28 Jun 2021 07:35:16 GMT",
2108
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.42",
2109
+ "version": "9.0.0-alpha.42",
2110
+ "comments": {
2111
+ "none": [
2112
+ {
2113
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.17",
2114
+ "author": "olfedias@microsoft.com",
2115
+ "commit": "bf6fd1290ea6c6861a5d80f704e0d6d0cadb71e0",
2116
+ "package": "@fluentui/react-accordion"
2117
+ }
2118
+ ]
2119
+ }
2120
+ },
2121
+ {
2122
+ "date": "Wed, 23 Jun 2021 07:31:49 GMT",
2123
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.42",
2124
+ "version": "9.0.0-alpha.42",
2125
+ "comments": {
2126
+ "none": [
2127
+ {
2128
+ "comment": "Update build:local output path",
2129
+ "author": "miroslav.stastny@microsoft.com",
2130
+ "commit": "e4b6b9a9cbc90d5de498a85aeb793678b48f649b",
2131
+ "package": "@fluentui/react-accordion"
2132
+ }
2133
+ ]
2134
+ }
2135
+ },
2136
+ {
2137
+ "date": "Tue, 22 Jun 2021 07:35:11 GMT",
2138
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.42",
2139
+ "version": "9.0.0-alpha.42",
2140
+ "comments": {
2141
+ "prerelease": [
2142
+ {
2143
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.17",
2144
+ "author": "olfedias@microsoft.com",
2145
+ "commit": "3fccf5c8a8ea30529b736b9189e294969242f886",
2146
+ "package": "@fluentui/react-accordion"
2147
+ }
2148
+ ]
2149
+ }
2150
+ },
2151
+ {
2152
+ "date": "Mon, 21 Jun 2021 07:34:33 GMT",
2153
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.41",
2154
+ "version": "9.0.0-alpha.41",
2155
+ "comments": {
2156
+ "prerelease": [
2157
+ {
2158
+ "comment": "Adds react-aria",
2159
+ "author": "bsunderhus@microsoft.com",
2160
+ "commit": "ca7bfda38b206027532062d9d360272a583f1b86",
2161
+ "package": "@fluentui/react-accordion"
2162
+ }
2163
+ ],
2164
+ "none": [
2165
+ {
2166
+ "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.15",
2167
+ "author": "miroslav.stastny@microsoft.com",
2168
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
2169
+ "package": "@fluentui/react-accordion"
2170
+ },
2171
+ {
2172
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.16",
2173
+ "author": "miroslav.stastny@microsoft.com",
2174
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
2175
+ "package": "@fluentui/react-accordion"
2176
+ },
2177
+ {
2178
+ "comment": "Bump @fluentui/react-theme-provider to v9.0.0-alpha.43",
2179
+ "author": "miroslav.stastny@microsoft.com",
2180
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
2181
+ "package": "@fluentui/react-accordion"
2182
+ },
2183
+ {
2184
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.42",
2185
+ "author": "miroslav.stastny@microsoft.com",
2186
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
2187
+ "package": "@fluentui/react-accordion"
2188
+ },
2189
+ {
2190
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.18",
2191
+ "author": "miroslav.stastny@microsoft.com",
2192
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
2193
+ "package": "@fluentui/react-accordion"
2194
+ },
2195
+ {
2196
+ "comment": "Bump @fluentui/react-aria to v9.0.0-alpha.2",
2197
+ "author": "miroslav.stastny@microsoft.com",
2198
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
2199
+ "package": "@fluentui/react-accordion"
2200
+ },
2201
+ {
2202
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.34",
2203
+ "author": "miroslav.stastny@microsoft.com",
2204
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
2205
+ "package": "@fluentui/react-accordion"
2206
+ }
2207
+ ]
2208
+ }
2209
+ },
2210
+ {
2211
+ "date": "Wed, 16 Jun 2021 07:34:24 GMT",
2212
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.40",
2213
+ "version": "9.0.0-alpha.40",
2214
+ "comments": {
2215
+ "prerelease": [
2216
+ {
2217
+ "comment": "Refactor from makeMergePropsCompat to makeMergeProps",
2218
+ "author": "bsunderhus@microsoft.com",
2219
+ "commit": "b23fd366be888411a894e41d5d8e2e788fb5b0b5",
2220
+ "package": "@fluentui/react-accordion"
2221
+ }
2222
+ ]
2223
+ }
2224
+ },
2225
+ {
2226
+ "date": "Tue, 15 Jun 2021 07:40:20 GMT",
2227
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.39",
2228
+ "version": "9.0.0-alpha.39",
2229
+ "comments": {
2230
+ "prerelease": [
2231
+ {
2232
+ "comment": "Migrates react-accordion",
2233
+ "author": "bsunderhus@microsoft.com",
2234
+ "commit": "c9f54ec20c2023fb2201007456719a49c1a13e5d",
2235
+ "package": "@fluentui/react-accordion"
2236
+ }
2237
+ ]
2238
+ }
2239
+ },
2240
+ {
2241
+ "date": "Wed, 09 Jun 2021 07:33:38 GMT",
2242
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.38",
2243
+ "version": "9.0.0-alpha.38",
2244
+ "comments": {
2245
+ "prerelease": [
2246
+ {
2247
+ "comment": "Adds focus indicator style rule",
2248
+ "author": "bsunderhus@microsoft.com",
2249
+ "commit": "b7549f7316c033888edd79fa51a02258275925f2",
2250
+ "package": "@fluentui/react-accordion"
2251
+ }
2252
+ ]
2253
+ }
2254
+ },
2255
+ {
2256
+ "date": "Mon, 07 Jun 2021 07:38:15 GMT",
2257
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.37",
2258
+ "version": "9.0.0-alpha.37",
2259
+ "comments": {
2260
+ "patch": [
2261
+ {
2262
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.1",
2263
+ "author": "martinhochel@microsoft.com",
2264
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
2265
+ "package": "@fluentui/react-accordion"
2266
+ },
2267
+ {
2268
+ "comment": "Bump @fluentui/react-conformance to v0.4.1",
2269
+ "author": "martinhochel@microsoft.com",
2270
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
2271
+ "package": "@fluentui/react-accordion"
2272
+ },
2273
+ {
2274
+ "comment": "Bump @fluentui/scripts to v1.0.0",
2275
+ "author": "martinhochel@microsoft.com",
2276
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
2277
+ "package": "@fluentui/react-accordion"
2278
+ }
2279
+ ],
2280
+ "prerelease": [
2281
+ {
2282
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.15",
2283
+ "author": "martinhochel@microsoft.com",
2284
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
2285
+ "package": "@fluentui/react-accordion"
2286
+ }
2287
+ ]
2288
+ }
2289
+ },
2290
+ {
2291
+ "date": "Fri, 04 Jun 2021 07:37:23 GMT",
2292
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.36",
2293
+ "version": "9.0.0-alpha.36",
2294
+ "comments": {
2295
+ "prerelease": [
2296
+ {
2297
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.16",
2298
+ "author": "Humberto.Morimoto@microsoft.com",
2299
+ "commit": "1ca8c8f0c4eb633e6b34c0b6182c09103d4c7fcb",
2300
+ "package": "@fluentui/react-accordion"
2301
+ }
2302
+ ]
2303
+ }
2304
+ },
2305
+ {
2306
+ "date": "Thu, 03 Jun 2021 07:36:03 GMT",
2307
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.35",
2308
+ "version": "9.0.0-alpha.35",
2309
+ "comments": {
2310
+ "none": [
2311
+ {
2312
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.13",
2313
+ "author": "martinhochel@microsoft.com",
2314
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
2315
+ "package": "@fluentui/react-accordion"
2316
+ },
2317
+ {
2318
+ "comment": "Bump @fluentui/react-theme-provider to v9.0.0-alpha.40",
2319
+ "author": "martinhochel@microsoft.com",
2320
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
2321
+ "package": "@fluentui/react-accordion"
2322
+ },
2323
+ {
2324
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.39",
2325
+ "author": "martinhochel@microsoft.com",
2326
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
2327
+ "package": "@fluentui/react-accordion"
2328
+ },
2329
+ {
2330
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.15",
2331
+ "author": "martinhochel@microsoft.com",
2332
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
2333
+ "package": "@fluentui/react-accordion"
2334
+ },
2335
+ {
2336
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.26",
2337
+ "author": "martinhochel@microsoft.com",
2338
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
2339
+ "package": "@fluentui/react-accordion"
2340
+ },
2341
+ {
2342
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-alpha.10",
2343
+ "author": "martinhochel@microsoft.com",
2344
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
2345
+ "package": "@fluentui/react-accordion"
2346
+ }
2347
+ ],
2348
+ "prerelease": [
2349
+ {
2350
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.31",
2351
+ "author": "martinhochel@microsoft.com",
2352
+ "commit": "01f798f6ac6b7b0e4c968e34a0c3f0e692aa3d43",
2353
+ "package": "@fluentui/react-accordion"
2354
+ }
2355
+ ]
2356
+ }
2357
+ },
2358
+ {
2359
+ "date": "Wed, 02 Jun 2021 07:37:15 GMT",
2360
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.34",
2361
+ "version": "9.0.0-alpha.34",
2362
+ "comments": {
2363
+ "prerelease": [
2364
+ {
2365
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.12",
2366
+ "author": "bsunderhus@microsoft.com",
2367
+ "commit": "7f5734bd8a2a124969c6402534605fe0ee9df4af",
2368
+ "package": "@fluentui/react-accordion"
2369
+ }
2370
+ ]
2371
+ }
2372
+ },
2373
+ {
2374
+ "date": "Tue, 01 Jun 2021 07:31:58 GMT",
2375
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.33",
2376
+ "version": "9.0.0-alpha.33",
2377
+ "comments": {
2378
+ "none": [
2379
+ {
2380
+ "comment": "Revert \"chore: enable Jest aliases for converged packages (#18337)\"",
2381
+ "author": "olfedias@microsoft.com",
2382
+ "commit": "b5f2a02b37c8ea394a65f7a22bff057de93370dd",
2383
+ "package": "@fluentui/react-accordion"
2384
+ }
2385
+ ]
2386
+ }
2387
+ },
2388
+ {
2389
+ "date": "Mon, 31 May 2021 07:33:15 GMT",
2390
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.33",
2391
+ "version": "9.0.0-alpha.33",
2392
+ "comments": {
2393
+ "none": [
2394
+ {
2395
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.29",
2396
+ "author": "lingfan.gao@microsoft.com",
2397
+ "commit": "203ccaf025da07d4064f8e4983298f0c1972c67d",
2398
+ "package": "@fluentui/react-accordion"
2399
+ }
2400
+ ]
2401
+ }
2402
+ },
2403
+ {
2404
+ "date": "Fri, 28 May 2021 07:33:57 GMT",
2405
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.33",
2406
+ "version": "9.0.0-alpha.33",
2407
+ "comments": {
2408
+ "none": [
2409
+ {
2410
+ "comment": "enable Jest aliases",
2411
+ "author": "olfedias@microsoft.com",
2412
+ "commit": "5379823a6f53bd36a936806153d228b9a0ef0543",
2413
+ "package": "@fluentui/react-accordion"
2414
+ }
2415
+ ]
2416
+ }
2417
+ },
2418
+ {
2419
+ "date": "Wed, 26 May 2021 07:35:43 GMT",
2420
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.33",
2421
+ "version": "9.0.0-alpha.33",
2422
+ "comments": {
2423
+ "none": [
2424
+ {
2425
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.11",
2426
+ "author": "olfedias@microsoft.com",
2427
+ "commit": "d2504c72ec7fba0cf4dcf1984c2e1a9322720225",
2428
+ "package": "@fluentui/react-accordion"
2429
+ }
2430
+ ],
2431
+ "prerelease": [
2432
+ {
2433
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.25",
2434
+ "author": "lingfan.gao@microsoft.com",
2435
+ "commit": "6ffca36c9537a1852d8ec26478b8b7aeb059e17c",
2436
+ "package": "@fluentui/react-accordion"
2437
+ }
2438
+ ]
2439
+ }
2440
+ },
2441
+ {
2442
+ "date": "Fri, 21 May 2021 07:34:54 GMT",
2443
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.32",
2444
+ "version": "9.0.0-alpha.32",
2445
+ "comments": {
2446
+ "prerelease": [
2447
+ {
2448
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.27",
2449
+ "author": "miroslav.stastny@microsoft.com",
2450
+ "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
2451
+ "package": "@fluentui/react-accordion"
2452
+ }
2453
+ ],
2454
+ "none": [
2455
+ {
2456
+ "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.13",
2457
+ "author": "miroslav.stastny@microsoft.com",
2458
+ "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
2459
+ "package": "@fluentui/react-accordion"
2460
+ },
2461
+ {
2462
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.11",
2463
+ "author": "miroslav.stastny@microsoft.com",
2464
+ "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
2465
+ "package": "@fluentui/react-accordion"
2466
+ },
2467
+ {
2468
+ "comment": "Bump @fluentui/react-theme-provider to v9.0.0-alpha.37",
2469
+ "author": "miroslav.stastny@microsoft.com",
2470
+ "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
2471
+ "package": "@fluentui/react-accordion"
2472
+ },
2473
+ {
2474
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.37",
2475
+ "author": "miroslav.stastny@microsoft.com",
2476
+ "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
2477
+ "package": "@fluentui/react-accordion"
2478
+ },
2479
+ {
2480
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.14",
2481
+ "author": "miroslav.stastny@microsoft.com",
2482
+ "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
2483
+ "package": "@fluentui/react-accordion"
2484
+ }
2485
+ ]
2486
+ }
2487
+ },
2488
+ {
2489
+ "date": "Thu, 20 May 2021 07:41:54 GMT",
2490
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.31",
2491
+ "version": "9.0.0-alpha.31",
2492
+ "comments": {
2493
+ "none": [
2494
+ {
2495
+ "comment": "Update conformance tests in all packages to use a package-level isConformant wrapper with appropriate generics for props",
2496
+ "author": "elcraig@microsoft.com",
2497
+ "commit": "1e6ad173e2cfa18cfcae13311be7916f1b241432",
2498
+ "package": "@fluentui/react-accordion"
2499
+ },
2500
+ {
2501
+ "comment": "Run prettier on all files",
2502
+ "author": "elcraig@microsoft.com",
2503
+ "commit": "505db08044507a6a9260459a1013897ca68a2ed6",
2504
+ "package": "@fluentui/react-accordion"
2505
+ }
2506
+ ],
2507
+ "prerelease": [
2508
+ {
2509
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.10",
2510
+ "author": "elcraig@microsoft.com",
2511
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
2512
+ "package": "@fluentui/react-accordion"
2513
+ }
2514
+ ],
2515
+ "patch": [
2516
+ {
2517
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.0",
2518
+ "author": "elcraig@microsoft.com",
2519
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
2520
+ "package": "@fluentui/react-accordion"
2521
+ },
2522
+ {
2523
+ "comment": "Bump @fluentui/react-conformance to v0.4.0",
2524
+ "author": "elcraig@microsoft.com",
2525
+ "commit": "1e6ad173e2cfa18cfcae13311be7916f1b241432",
2526
+ "package": "@fluentui/react-accordion"
2527
+ },
2528
+ {
2529
+ "comment": "Bump @fluentui/scripts to v1.0.0",
2530
+ "author": "elcraig@microsoft.com",
2531
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
2532
+ "package": "@fluentui/react-accordion"
2533
+ }
2534
+ ]
2535
+ }
2536
+ },
2537
+ {
2538
+ "date": "Wed, 19 May 2021 07:34:20 GMT",
2539
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.30",
2540
+ "version": "9.0.0-alpha.30",
2541
+ "comments": {
2542
+ "prerelease": [
2543
+ {
2544
+ "comment": "chore: add more Babel plugins",
2545
+ "author": "olfedias@microsoft.com",
2546
+ "commit": "975140887c6ad2391f8db63003ed440239ec9c25",
2547
+ "package": "@fluentui/react-accordion"
2548
+ }
2549
+ ],
2550
+ "patch": [
2551
+ {
2552
+ "comment": "Bump @fluentui/react-conformance to v0.3.1",
2553
+ "author": "martinhochel@microsoft.com",
2554
+ "commit": "616b4b7c381c757871e8a590564d8eff7337834c",
2555
+ "package": "@fluentui/react-accordion"
2556
+ }
2557
+ ]
2558
+ }
2559
+ },
2560
+ {
2561
+ "date": "Tue, 18 May 2021 07:34:38 GMT",
2562
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.29",
2563
+ "version": "9.0.0-alpha.29",
2564
+ "comments": {
2565
+ "prerelease": [
2566
+ {
2567
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.8",
2568
+ "author": "olfedias@microsoft.com",
2569
+ "commit": "c845a5045c99d8d83b2584cee016b1701cd3de57",
2570
+ "package": "@fluentui/react-accordion"
2571
+ }
2572
+ ]
2573
+ }
2574
+ },
2575
+ {
2576
+ "date": "Thu, 13 May 2021 07:36:55 GMT",
2577
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.28",
2578
+ "version": "9.0.0-alpha.28",
2579
+ "comments": {
2580
+ "prerelease": [
2581
+ {
2582
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.7",
2583
+ "author": "olfedias@microsoft.com",
2584
+ "commit": "fb53fd67729d8236e0681d74322717f6974c8b72",
2585
+ "package": "@fluentui/react-accordion"
2586
+ }
2587
+ ]
2588
+ }
2589
+ },
2590
+ {
2591
+ "date": "Wed, 12 May 2021 07:36:20 GMT",
2592
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.27",
2593
+ "version": "9.0.0-alpha.27",
2594
+ "comments": {
2595
+ "prerelease": [
2596
+ {
2597
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.6",
2598
+ "author": "olfedias@microsoft.com",
2599
+ "commit": "894712616ee3271fcf06e5fb24ad01e326e30bb5",
2600
+ "package": "@fluentui/react-accordion"
2601
+ }
2602
+ ]
2603
+ }
2604
+ },
2605
+ {
2606
+ "date": "Mon, 10 May 2021 07:36:07 GMT",
2607
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.26",
2608
+ "version": "9.0.0-alpha.26",
2609
+ "comments": {
2610
+ "prerelease": [
2611
+ {
2612
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.5",
2613
+ "author": "olfedias@microsoft.com",
2614
+ "commit": "78c12235fcfebe43b7a77d36cbdfc67461ec32dc",
2615
+ "package": "@fluentui/react-accordion"
2616
+ }
2617
+ ]
2618
+ }
2619
+ },
2620
+ {
2621
+ "date": "Wed, 05 May 2021 07:36:50 GMT",
2622
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.25",
2623
+ "version": "9.0.0-alpha.25",
2624
+ "comments": {
2625
+ "prerelease": [
2626
+ {
2627
+ "comment": "transform styles with Babel plugin",
2628
+ "author": "olfedias@microsoft.com",
2629
+ "commit": "a48d8dfd969f944c44b8c902cc9d418c333d063d",
2630
+ "package": "@fluentui/react-accordion"
2631
+ }
2632
+ ]
2633
+ }
2634
+ },
2635
+ {
2636
+ "date": "Mon, 03 May 2021 07:45:19 GMT",
2637
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.24",
2638
+ "version": "9.0.0-alpha.24",
2639
+ "comments": {
2640
+ "prerelease": [
2641
+ {
2642
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.21",
2643
+ "author": "lingfan.gao@microsoft.com",
2644
+ "commit": "5e6aa4df0c03051e59d686d24b35f01c721a3b4e",
2645
+ "package": "@fluentui/react-accordion"
2646
+ }
2647
+ ]
2648
+ }
2649
+ },
2650
+ {
2651
+ "date": "Fri, 30 Apr 2021 07:42:23 GMT",
2652
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.23",
2653
+ "version": "9.0.0-alpha.23",
2654
+ "comments": {
2655
+ "prerelease": [
2656
+ {
2657
+ "comment": "update snapshots",
2658
+ "author": "olfedias@microsoft.com",
2659
+ "commit": "2a95add2ed379f3e061339d86ae03199ef0d5080",
2660
+ "package": "@fluentui/react-accordion"
2661
+ },
2662
+ {
2663
+ "comment": "Upgrade to typescript 4.1.5",
2664
+ "author": "joschect@microsoft.com",
2665
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
2666
+ "package": "@fluentui/react-accordion"
2667
+ }
2668
+ ],
2669
+ "patch": [
2670
+ {
2671
+ "comment": "Bump @fluentui/eslint-plugin to v1.2.0",
2672
+ "author": "joschect@microsoft.com",
2673
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
2674
+ "package": "@fluentui/react-accordion"
2675
+ },
2676
+ {
2677
+ "comment": "Bump @fluentui/react-conformance to v0.3.0",
2678
+ "author": "joschect@microsoft.com",
2679
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
2680
+ "package": "@fluentui/react-accordion"
2681
+ },
2682
+ {
2683
+ "comment": "Bump @fluentui/scripts to v1.0.0",
2684
+ "author": "joschect@microsoft.com",
2685
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
2686
+ "package": "@fluentui/react-accordion"
2687
+ }
2688
+ ]
2689
+ }
2690
+ },
2691
+ {
2692
+ "date": "Wed, 28 Apr 2021 07:32:59 GMT",
2693
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.22",
2694
+ "version": "9.0.0-alpha.22",
2695
+ "comments": {
2696
+ "prerelease": [
2697
+ {
2698
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-alpha.20",
2699
+ "author": "olfedias@microsoft.com",
2700
+ "commit": "cabcb25b3329ad3e8536f798ceaabcd1ee93e1b4",
2701
+ "package": "@fluentui/react-accordion"
2702
+ }
2703
+ ]
2704
+ }
2705
+ },
2706
+ {
2707
+ "date": "Tue, 27 Apr 2021 07:34:03 GMT",
2708
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.21",
2709
+ "version": "9.0.0-alpha.21",
2710
+ "comments": {
2711
+ "prerelease": [
2712
+ {
2713
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.5",
2714
+ "author": "bsunderhus@microsoft.com",
2715
+ "commit": "fdb1af09ba60238bb1c3913af6a6a6fe98f49034",
2716
+ "package": "@fluentui/react-accordion"
2717
+ }
2718
+ ]
2719
+ }
2720
+ },
2721
+ {
2722
+ "date": "Mon, 26 Apr 2021 07:34:31 GMT",
2723
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.20",
2724
+ "version": "9.0.0-alpha.20",
2725
+ "comments": {
2726
+ "prerelease": [
2727
+ {
2728
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.4",
2729
+ "author": "bsunderhus@microsoft.com",
2730
+ "commit": "76e2027d772bc9d19d3d217c449c5965262f73c4",
2731
+ "package": "@fluentui/react-accordion"
2732
+ }
2733
+ ]
2734
+ }
2735
+ },
2736
+ {
2737
+ "date": "Fri, 23 Apr 2021 07:37:10 GMT",
2738
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.19",
2739
+ "version": "9.0.0-alpha.19",
2740
+ "comments": {
2741
+ "prerelease": [
2742
+ {
2743
+ "comment": "Invoke useTabster to ensure Tabster exists",
2744
+ "author": "lingfan.gao@microsoft.com",
2745
+ "commit": "e9ef2a1d7e2d57a5b52642dd35243cb6a8600237",
2746
+ "package": "@fluentui/react-accordion"
2747
+ }
2748
+ ],
2749
+ "patch": [
2750
+ {
2751
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.1",
2752
+ "author": "olfedias@microsoft.com",
2753
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
2754
+ "package": "@fluentui/react-accordion"
2755
+ },
2756
+ {
2757
+ "comment": "Bump @fluentui/react-conformance to v0.2.6",
2758
+ "author": "olfedias@microsoft.com",
2759
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
2760
+ "package": "@fluentui/react-accordion"
2761
+ },
2762
+ {
2763
+ "comment": "Bump @fluentui/scripts to v1.0.0",
2764
+ "author": "olfedias@microsoft.com",
2765
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
2766
+ "package": "@fluentui/react-accordion"
2767
+ }
2768
+ ]
2769
+ }
2770
+ },
2771
+ {
2772
+ "date": "Thu, 22 Apr 2021 07:33:28 GMT",
2773
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.18",
2774
+ "version": "9.0.0-alpha.18",
2775
+ "comments": {
2776
+ "none": [
2777
+ {
2778
+ "comment": "Adds snapshot serializer to converged component",
2779
+ "author": "bsunderhus@microsoft.com",
2780
+ "commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add",
2781
+ "package": "@fluentui/react-accordion"
2782
+ }
2783
+ ],
2784
+ "prerelease": [
2785
+ {
2786
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.2",
2787
+ "author": "bsunderhus@microsoft.com",
2788
+ "commit": "bf7ee8d466296bd5974bd5abf9aaa20868aa9add",
2789
+ "package": "@fluentui/react-accordion"
2790
+ }
2791
+ ]
2792
+ }
2793
+ },
2794
+ {
2795
+ "date": "Wed, 21 Apr 2021 07:31:50 GMT",
2796
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.17",
2797
+ "version": "9.0.0-alpha.17",
2798
+ "comments": {
2799
+ "prerelease": [
2800
+ {
2801
+ "comment": "Rename ax() to mergeClasses()",
2802
+ "author": "miroslav.stastny@microsoft.com",
2803
+ "commit": "64da065944467537d8f23a97ef4c19c3d60a529b",
2804
+ "package": "@fluentui/react-accordion"
2805
+ }
2806
+ ],
2807
+ "none": [
2808
+ {
2809
+ "comment": "Bump @fluentui/react-conformance to v0.2.5",
2810
+ "author": "martinhochel@microsoft.com",
2811
+ "commit": "c12557d08ab5673ec3d3ba9747cfec64f39309eb",
2812
+ "package": "@fluentui/react-accordion"
2813
+ },
2814
+ {
2815
+ "comment": "Bump @fluentui/react-theme-provider to v9.0.0-alpha.23",
2816
+ "author": "miroslav.stastny@microsoft.com",
2817
+ "commit": "64da065944467537d8f23a97ef4c19c3d60a529b",
2818
+ "package": "@fluentui/react-accordion"
2819
+ }
2820
+ ]
2821
+ }
2822
+ },
2823
+ {
2824
+ "date": "Tue, 20 Apr 2021 07:31:35 GMT",
2825
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.16",
2826
+ "version": "9.0.0-alpha.16",
2827
+ "comments": {
2828
+ "prerelease": [
2829
+ {
2830
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.23",
2831
+ "author": "lingfan.gao@microsoft.com",
2832
+ "commit": "c1e049dbcbf869f0a6e04d00f84dcfa7217eb808",
2833
+ "package": "@fluentui/react-accordion"
2834
+ }
2835
+ ]
2836
+ }
2837
+ },
2838
+ {
2839
+ "date": "Mon, 19 Apr 2021 07:33:33 GMT",
2840
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.15",
2841
+ "version": "9.0.0-alpha.15",
2842
+ "comments": {
2843
+ "none": [
2844
+ {
2845
+ "comment": "Remove unneeded react-app-polyfill devDependency",
2846
+ "author": "elcraig@microsoft.com",
2847
+ "commit": "fdc32557d49e5d70ea7e4af8957102d415b44547",
2848
+ "package": "@fluentui/react-accordion"
2849
+ }
2850
+ ]
2851
+ }
2852
+ },
2853
+ {
2854
+ "date": "Fri, 16 Apr 2021 18:08:21 GMT",
2855
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.15",
2856
+ "version": "9.0.0-alpha.15",
2857
+ "comments": {
2858
+ "prerelease": [
2859
+ {
2860
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.22",
2861
+ "author": "bsunderhus@microsoft.com",
2862
+ "commit": "e158c65f9712556cfcca1e80c7156889885c95b0",
2863
+ "package": "@fluentui/react-accordion"
2864
+ }
2865
+ ]
2866
+ }
2867
+ },
2868
+ {
2869
+ "date": "Wed, 14 Apr 2021 07:34:12 GMT",
2870
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.14",
2871
+ "version": "9.0.0-alpha.14",
2872
+ "comments": {
2873
+ "prerelease": [
2874
+ {
2875
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.21",
2876
+ "author": "bsunderhus@microsoft.com",
2877
+ "commit": "1b2e9185653032fed3dce7d3a919f8d6e95550c7",
2878
+ "package": "@fluentui/react-accordion"
2879
+ }
2880
+ ]
2881
+ }
2882
+ },
2883
+ {
2884
+ "date": "Fri, 09 Apr 2021 23:42:49 GMT",
2885
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.13",
2886
+ "version": "9.0.0-alpha.13",
2887
+ "comments": {
2888
+ "prerelease": [
2889
+ {
2890
+ "comment": "Add A11y implementation",
2891
+ "author": "bsunderhus@microsoft.com",
2892
+ "commit": "a0ca5598064875c87d57341d691365921ec9c97a",
2893
+ "package": "@fluentui/react-accordion"
2894
+ },
2895
+ {
2896
+ "comment": "Adds styling to disabled state in react-accordion",
2897
+ "author": "bsunderhus@microsoft.com",
2898
+ "commit": "39a6f1c73d2ebdd2527cd2ff405a80da76fc5331",
2899
+ "package": "@fluentui/react-accordion"
2900
+ }
2901
+ ],
2902
+ "none": [
2903
+ {
2904
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.20",
2905
+ "author": "olfedias@microsoft.com",
2906
+ "commit": "3febbf40a59f1acb8e37516559fed1dd6f5b62fb",
2907
+ "package": "@fluentui/react-accordion"
2908
+ }
2909
+ ]
2910
+ }
2911
+ },
2912
+ {
2913
+ "date": "Fri, 09 Apr 2021 07:31:06 GMT",
2914
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.12",
2915
+ "version": "9.0.0-alpha.12",
2916
+ "comments": {
2917
+ "prerelease": [
2918
+ {
2919
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.20",
2920
+ "author": "olfedias@microsoft.com",
2921
+ "commit": "876c6d64de40213f9cc15062464bb13f702002fd",
2922
+ "package": "@fluentui/react-accordion"
2923
+ }
2924
+ ]
2925
+ }
2926
+ },
2927
+ {
2928
+ "date": "Thu, 08 Apr 2021 07:33:06 GMT",
2929
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.11",
2930
+ "version": "9.0.0-alpha.11",
2931
+ "comments": {
2932
+ "prerelease": [
2933
+ {
2934
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.19",
2935
+ "author": "olfedias@microsoft.com",
2936
+ "commit": "45f6f31cefc412032a792179308ad837af63155a",
2937
+ "package": "@fluentui/react-accordion"
2938
+ }
2939
+ ]
2940
+ }
2941
+ },
2942
+ {
2943
+ "date": "Thu, 01 Apr 2021 20:13:37 GMT",
2944
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.10",
2945
+ "version": "9.0.0-alpha.10",
2946
+ "comments": {
2947
+ "prerelease": [
2948
+ {
2949
+ "comment": "Change react-focus-management to react-tabster",
2950
+ "author": "bsunderhus@microsoft.com",
2951
+ "commit": "dec60bc3ea87901ff8c2c52989301ae8f4229721",
2952
+ "package": "@fluentui/react-accordion"
2953
+ }
2954
+ ]
2955
+ }
2956
+ },
2957
+ {
2958
+ "date": "Thu, 01 Apr 2021 07:33:24 GMT",
2959
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.9",
2960
+ "version": "9.0.0-alpha.9",
2961
+ "comments": {
2962
+ "prerelease": [
2963
+ {
2964
+ "comment": "Rollback makeStyles usage in AccordionHeader style for a single hook",
2965
+ "author": "bsunderhus@microsoft.com",
2966
+ "commit": "29dc190a42ed638d0c3576f1b3031e51e97644f2",
2967
+ "package": "@fluentui/react-accordion"
2968
+ },
2969
+ {
2970
+ "comment": "Adds Icon slot",
2971
+ "author": "bsunderhus@microsoft.com",
2972
+ "commit": "4fe5fc2f0572951257dd63edf0b88a39f20fb88c",
2973
+ "package": "@fluentui/react-accordion"
2974
+ }
2975
+ ]
2976
+ }
2977
+ },
2978
+ {
2979
+ "date": "Wed, 31 Mar 2021 00:53:43 GMT",
2980
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.8",
2981
+ "version": "9.0.0-alpha.8",
2982
+ "comments": {
2983
+ "prerelease": [
2984
+ {
2985
+ "comment": "mergeProps was updated to improve type checking; use compat layer until type errors can be fixed",
2986
+ "author": "behowell@microsoft.com",
2987
+ "commit": "e45eeaba8deb93e825a9d3f72e87a9c4c9225ea1",
2988
+ "package": "@fluentui/react-accordion"
2989
+ },
2990
+ {
2991
+ "comment": "Adds disabled state in AccordionItem",
2992
+ "author": "bsunderhus@microsoft.com",
2993
+ "commit": "157285aad0a69593552058840b8ad722417fbbd6",
2994
+ "package": "@fluentui/react-accordion"
2995
+ }
2996
+ ],
2997
+ "patch": [
2998
+ {
2999
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.0",
3000
+ "author": "elcraig@microsoft.com",
3001
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
3002
+ "package": "@fluentui/react-accordion"
3003
+ },
3004
+ {
3005
+ "comment": "Bump @fluentui/react-conformance to v0.2.5",
3006
+ "author": "elcraig@microsoft.com",
3007
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
3008
+ "package": "@fluentui/react-accordion"
3009
+ },
3010
+ {
3011
+ "comment": "Bump @fluentui/scripts to v1.0.0",
3012
+ "author": "elcraig@microsoft.com",
3013
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
3014
+ "package": "@fluentui/react-accordion"
3015
+ }
3016
+ ]
3017
+ }
3018
+ },
3019
+ {
3020
+ "date": "Tue, 30 Mar 2021 07:34:45 GMT",
3021
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.7",
3022
+ "version": "9.0.0-alpha.7",
3023
+ "comments": {
3024
+ "prerelease": [
3025
+ {
3026
+ "comment": "chore: restore \"sideEffects\" to enable treeshaking",
3027
+ "author": "olfedias@microsoft.com",
3028
+ "commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3",
3029
+ "package": "@fluentui/react-accordion"
3030
+ },
3031
+ {
3032
+ "comment": "Bump react-context-selector to v9",
3033
+ "author": "olfedias@microsoft.com",
3034
+ "commit": "890a63720bfe2e467bc208a32547c6e67587393c",
3035
+ "package": "@fluentui/react-accordion"
3036
+ }
3037
+ ]
3038
+ }
3039
+ },
3040
+ {
3041
+ "date": "Fri, 26 Mar 2021 07:32:34 GMT",
3042
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.6",
3043
+ "version": "9.0.0-alpha.6",
3044
+ "comments": {
3045
+ "prerelease": [
3046
+ {
3047
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.12",
3048
+ "author": "lingfan.gao@microsoft.com",
3049
+ "commit": "8b5295e082e07dbe428bff7b9548c80c338f07c8",
3050
+ "package": "@fluentui/react-accordion"
3051
+ }
3052
+ ]
3053
+ }
3054
+ },
3055
+ {
3056
+ "date": "Thu, 25 Mar 2021 07:33:24 GMT",
3057
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.5",
3058
+ "version": "9.0.0-alpha.5",
3059
+ "comments": {
3060
+ "prerelease": [
3061
+ {
3062
+ "comment": "Adds id control for AccordionHeader and AccordionPanel",
3063
+ "author": "bsunderhus@microsoft.com",
3064
+ "commit": "ad6de8f2d366057ea0c39fa64e648fb5776c9c35",
3065
+ "package": "@fluentui/react-accordion"
3066
+ },
3067
+ {
3068
+ "comment": "Move descendants to react-utilities",
3069
+ "author": "lingfan.gao@microsoft.com",
3070
+ "commit": "31b7b0d625e40f818d33c5df0890b584caaf0e6c",
3071
+ "package": "@fluentui/react-accordion"
3072
+ }
3073
+ ]
3074
+ }
3075
+ },
3076
+ {
3077
+ "date": "Tue, 23 Mar 2021 07:31:43 GMT",
3078
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.4",
3079
+ "version": "9.0.0-alpha.4",
3080
+ "comments": {
3081
+ "prerelease": [
3082
+ {
3083
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.10",
3084
+ "author": "lingfan.gao@microsoft.com",
3085
+ "commit": "fc0d87258337229e59ec1c1fec87dc91193858f1",
3086
+ "package": "@fluentui/react-accordion"
3087
+ }
3088
+ ]
3089
+ }
3090
+ },
3091
+ {
3092
+ "date": "Mon, 22 Mar 2021 07:34:09 GMT",
3093
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.3",
3094
+ "version": "9.0.0-alpha.3",
3095
+ "comments": {
3096
+ "none": [
3097
+ {
3098
+ "comment": "chore: apply single version policy on @testing-library packages",
3099
+ "author": "martinhochel@microsoft.com",
3100
+ "commit": "25c4ce7c54a2a65d3db4e5f2b13785468b669329",
3101
+ "package": "@fluentui/react-accordion"
3102
+ }
3103
+ ]
3104
+ }
3105
+ },
3106
+ {
3107
+ "date": "Thu, 18 Mar 2021 20:15:34 GMT",
3108
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.3",
3109
+ "version": "9.0.0-alpha.3",
3110
+ "comments": {
3111
+ "prerelease": [
3112
+ {
3113
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.9",
3114
+ "author": "lingfan.gao@microsoft.com",
3115
+ "commit": "165259181dd79866dc7ae5fa57c10a0f209d668f",
3116
+ "package": "@fluentui/react-accordion"
3117
+ }
3118
+ ]
3119
+ }
3120
+ },
3121
+ {
3122
+ "date": "Wed, 17 Mar 2021 07:35:44 GMT",
3123
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.2",
3124
+ "version": "9.0.0-alpha.2",
3125
+ "comments": {
3126
+ "none": [
3127
+ {
3128
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.8",
3129
+ "author": "olfedias@microsoft.com",
3130
+ "commit": "51902da6d01f0e9a790ca686e32eb94b31ecf733",
3131
+ "package": "@fluentui/react-accordion"
3132
+ }
3133
+ ]
3134
+ }
3135
+ },
3136
+ {
3137
+ "date": "Tue, 16 Mar 2021 07:32:44 GMT",
3138
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.2",
3139
+ "version": "9.0.0-alpha.2",
3140
+ "comments": {
3141
+ "prerelease": [
3142
+ {
3143
+ "comment": "Updates styles from makeStylesCompat to makeStyles",
3144
+ "author": "bsunderhus@microsoft.com",
3145
+ "commit": "dccb7a76b393af76bdad9b14e1faef2c418c9892",
3146
+ "package": "@fluentui/react-accordion"
3147
+ }
3148
+ ],
3149
+ "patch": [
3150
+ {
3151
+ "comment": "Bump @fluentui/react-conformance to v0.2.4",
3152
+ "author": "elcraig@microsoft.com",
3153
+ "commit": "8bbe3d16c5c00716dfcbafa6d693437b8d090da3",
3154
+ "package": "@fluentui/react-accordion"
3155
+ }
3156
+ ]
3157
+ }
3158
+ },
3159
+ {
3160
+ "date": "Mon, 15 Mar 2021 07:36:20 GMT",
3161
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.1",
3162
+ "version": "9.0.0-alpha.1",
3163
+ "comments": {
3164
+ "none": [
3165
+ {
3166
+ "comment": "Remove unneeded scripts",
3167
+ "author": "elcraig@microsoft.com",
3168
+ "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
3169
+ "package": "@fluentui/react-accordion"
3170
+ }
3171
+ ]
3172
+ }
3173
+ },
3174
+ {
3175
+ "date": "Fri, 12 Mar 2021 20:04:27 GMT",
3176
+ "tag": "@fluentui/react-accordion_v9.0.0-alpha.1",
3177
+ "version": "9.0.0-alpha.1",
3178
+ "comments": {
3179
+ "prerelease": [
3180
+ {
3181
+ "comment": "Move `@types/node` and `@types/webpack-env` devDependencies to root, and remove unneeded references",
3182
+ "author": "elcraig@microsoft.com",
3183
+ "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
3184
+ "package": "@fluentui/react-accordion"
3185
+ },
3186
+ {
3187
+ "comment": "Initial release",
3188
+ "author": "bsunderhus@microsoft.com",
3189
+ "commit": "29a6c8d78385f27a21c9d9834575daace60067e7",
3190
+ "package": "@fluentui/react-accordion"
3191
+ }
3192
+ ],
3193
+ "patch": [
3194
+ {
3195
+ "comment": "Bump @fluentui/react-conformance to v0.2.3",
3196
+ "author": "martinhochel@microsoft.com",
3197
+ "commit": "860bb829b416a8ee63fb25d11da7ad9c67d9312c",
3198
+ "package": "@fluentui/react-accordion"
3199
+ }
3200
+ ],
3201
+ "none": [
3202
+ {
3203
+ "comment": "Bump @fluentui/react-theme-provider to v9.0.0-alpha.9",
3204
+ "author": "elcraig@microsoft.com",
3205
+ "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
3206
+ "package": "@fluentui/react-accordion"
3207
+ },
3208
+ {
3209
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.9",
3210
+ "author": "elcraig@microsoft.com",
3211
+ "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
3212
+ "package": "@fluentui/react-accordion"
3213
+ },
3214
+ {
3215
+ "comment": "Bump @fluentui/react-theme to v9.0.0-alpha.5",
3216
+ "author": "elcraig@microsoft.com",
3217
+ "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
3218
+ "package": "@fluentui/react-accordion"
3219
+ },
3220
+ {
3221
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.7",
3222
+ "author": "elcraig@microsoft.com",
3223
+ "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
3224
+ "package": "@fluentui/react-accordion"
3225
+ },
3226
+ {
3227
+ "comment": "Bump @fluentui/react-focus-management to v9.0.0-alpha.6",
3228
+ "author": "elcraig@microsoft.com",
3229
+ "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
3230
+ "package": "@fluentui/react-accordion"
3231
+ }
3232
+ ]
3233
+ }
3234
+ }
3235
+ ]
3236
+ }