@fluentui/react-accordion 0.0.0-nightlyfe9829e48120211112.1 → 0.0.0-nightlyff78d1e27a20220217.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 (181) hide show
  1. package/CHANGELOG.json +337 -22
  2. package/CHANGELOG.md +78 -14
  3. package/Spec.md +36 -4
  4. package/dist/react-accordion.d.ts +40 -58
  5. package/lib/Accordion.js.map +1 -1
  6. package/lib/AccordionHeader.js.map +1 -1
  7. package/lib/AccordionItem.js.map +1 -1
  8. package/lib/AccordionPanel.js.map +1 -1
  9. package/lib/components/Accordion/Accordion.d.ts +1 -1
  10. package/lib/components/Accordion/Accordion.js +9 -9
  11. package/lib/components/Accordion/Accordion.js.map +1 -1
  12. package/lib/components/Accordion/Accordion.types.d.ts +7 -5
  13. package/lib/components/Accordion/Accordion.types.js.map +1 -1
  14. package/lib/components/Accordion/AccordionContext.js +0 -1
  15. package/lib/components/Accordion/AccordionContext.js.map +1 -1
  16. package/lib/components/Accordion/index.js.map +1 -1
  17. package/lib/components/Accordion/renderAccordion.d.ts +1 -1
  18. package/lib/components/Accordion/renderAccordion.js +3 -2
  19. package/lib/components/Accordion/renderAccordion.js.map +1 -1
  20. package/lib/components/Accordion/useAccordion.d.ts +2 -3
  21. package/lib/components/Accordion/useAccordion.js +17 -20
  22. package/lib/components/Accordion/useAccordion.js.map +1 -1
  23. package/lib/components/Accordion/useAccordionContextValues.d.ts +1 -1
  24. package/lib/components/Accordion/useAccordionContextValues.js +3 -3
  25. package/lib/components/Accordion/useAccordionContextValues.js.map +1 -1
  26. package/lib/components/Accordion/useAccordionStyles.d.ts +1 -1
  27. package/lib/components/Accordion/useAccordionStyles.js +2 -2
  28. package/lib/components/Accordion/useAccordionStyles.js.map +1 -1
  29. package/lib/components/AccordionHeader/AccordionHeader.d.ts +2 -1
  30. package/lib/components/AccordionHeader/AccordionHeader.js +10 -9
  31. package/lib/components/AccordionHeader/AccordionHeader.js.map +1 -1
  32. package/lib/components/AccordionHeader/AccordionHeader.types.d.ts +12 -11
  33. package/lib/components/AccordionHeader/AccordionHeader.types.js.map +1 -1
  34. package/lib/components/AccordionHeader/AccordionHeaderContext.js.map +1 -1
  35. package/lib/components/AccordionHeader/index.d.ts +0 -1
  36. package/lib/components/AccordionHeader/index.js +0 -1
  37. package/lib/components/AccordionHeader/index.js.map +1 -1
  38. package/lib/components/AccordionHeader/renderAccordionHeader.d.ts +1 -1
  39. package/lib/components/AccordionHeader/renderAccordionHeader.js +8 -4
  40. package/lib/components/AccordionHeader/renderAccordionHeader.js.map +1 -1
  41. package/lib/components/AccordionHeader/useAccordionHeader.d.ts +2 -6
  42. package/lib/components/AccordionHeader/useAccordionHeader.js +28 -19
  43. package/lib/components/AccordionHeader/useAccordionHeader.js.map +1 -1
  44. package/lib/components/AccordionHeader/useAccordionHeaderContextValues.d.ts +1 -1
  45. package/lib/components/AccordionHeader/useAccordionHeaderContextValues.js +1 -1
  46. package/lib/components/AccordionHeader/useAccordionHeaderContextValues.js.map +1 -1
  47. package/lib/components/AccordionHeader/useAccordionHeaderStyles.d.ts +1 -1
  48. package/lib/components/AccordionHeader/useAccordionHeaderStyles.js +39 -49
  49. package/lib/components/AccordionHeader/useAccordionHeaderStyles.js.map +1 -1
  50. package/lib/components/AccordionItem/AccordionItem.d.ts +1 -1
  51. package/lib/components/AccordionItem/AccordionItem.js +9 -9
  52. package/lib/components/AccordionItem/AccordionItem.js.map +1 -1
  53. package/lib/components/AccordionItem/AccordionItem.types.d.ts +4 -3
  54. package/lib/components/AccordionItem/AccordionItem.types.js.map +1 -1
  55. package/lib/components/AccordionItem/AccordionItemContext.d.ts +1 -1
  56. package/lib/components/AccordionItem/AccordionItemContext.js +1 -1
  57. package/lib/components/AccordionItem/AccordionItemContext.js.map +1 -1
  58. package/lib/components/AccordionItem/index.js.map +1 -1
  59. package/lib/components/AccordionItem/renderAccordionItem.d.ts +1 -1
  60. package/lib/components/AccordionItem/renderAccordionItem.js +4 -4
  61. package/lib/components/AccordionItem/renderAccordionItem.js.map +1 -1
  62. package/lib/components/AccordionItem/useAccordionItem.d.ts +2 -6
  63. package/lib/components/AccordionItem/useAccordionItem.js +9 -13
  64. package/lib/components/AccordionItem/useAccordionItem.js.map +1 -1
  65. package/lib/components/AccordionItem/useAccordionItemContextValues.d.ts +1 -1
  66. package/lib/components/AccordionItem/useAccordionItemContextValues.js +1 -1
  67. package/lib/components/AccordionItem/useAccordionItemContextValues.js.map +1 -1
  68. package/lib/components/AccordionItem/useAccordionItemStyles.d.ts +1 -1
  69. package/lib/components/AccordionItem/useAccordionItemStyles.js +2 -2
  70. package/lib/components/AccordionItem/useAccordionItemStyles.js.map +1 -1
  71. package/lib/components/AccordionPanel/AccordionPanel.d.ts +1 -1
  72. package/lib/components/AccordionPanel/AccordionPanel.js +7 -7
  73. package/lib/components/AccordionPanel/AccordionPanel.js.map +1 -1
  74. package/lib/components/AccordionPanel/AccordionPanel.types.d.ts +2 -2
  75. package/lib/components/AccordionPanel/AccordionPanel.types.js.map +1 -1
  76. package/lib/components/AccordionPanel/index.js.map +1 -1
  77. package/lib/components/AccordionPanel/renderAccordionPanel.d.ts +1 -1
  78. package/lib/components/AccordionPanel/renderAccordionPanel.js +4 -4
  79. package/lib/components/AccordionPanel/renderAccordionPanel.js.map +1 -1
  80. package/lib/components/AccordionPanel/useAccordionPanel.d.ts +2 -6
  81. package/lib/components/AccordionPanel/useAccordionPanel.js +6 -9
  82. package/lib/components/AccordionPanel/useAccordionPanel.js.map +1 -1
  83. package/lib/components/AccordionPanel/useAccordionPanelStyles.d.ts +1 -1
  84. package/lib/components/AccordionPanel/useAccordionPanelStyles.js +2 -2
  85. package/lib/components/AccordionPanel/useAccordionPanelStyles.js.map +1 -1
  86. package/lib/index.js.map +1 -1
  87. package/lib-commonjs/Accordion.js.map +1 -1
  88. package/lib-commonjs/AccordionHeader.js.map +1 -1
  89. package/lib-commonjs/AccordionItem.js.map +1 -1
  90. package/lib-commonjs/AccordionPanel.js.map +1 -1
  91. package/lib-commonjs/components/Accordion/Accordion.d.ts +1 -1
  92. package/lib-commonjs/components/Accordion/Accordion.js +5 -5
  93. package/lib-commonjs/components/Accordion/Accordion.js.map +1 -1
  94. package/lib-commonjs/components/Accordion/Accordion.types.d.ts +7 -5
  95. package/lib-commonjs/components/Accordion/Accordion.types.js.map +1 -1
  96. package/lib-commonjs/components/Accordion/AccordionContext.js +0 -1
  97. package/lib-commonjs/components/Accordion/AccordionContext.js.map +1 -1
  98. package/lib-commonjs/components/Accordion/index.js.map +1 -1
  99. package/lib-commonjs/components/Accordion/renderAccordion.d.ts +1 -1
  100. package/lib-commonjs/components/Accordion/renderAccordion.js +5 -4
  101. package/lib-commonjs/components/Accordion/renderAccordion.js.map +1 -1
  102. package/lib-commonjs/components/Accordion/useAccordion.d.ts +2 -3
  103. package/lib-commonjs/components/Accordion/useAccordion.js +20 -22
  104. package/lib-commonjs/components/Accordion/useAccordion.js.map +1 -1
  105. package/lib-commonjs/components/Accordion/useAccordionContextValues.d.ts +1 -1
  106. package/lib-commonjs/components/Accordion/useAccordionContextValues.js +5 -5
  107. package/lib-commonjs/components/Accordion/useAccordionContextValues.js.map +1 -1
  108. package/lib-commonjs/components/Accordion/useAccordionStyles.d.ts +1 -1
  109. package/lib-commonjs/components/Accordion/useAccordionStyles.js +5 -5
  110. package/lib-commonjs/components/Accordion/useAccordionStyles.js.map +1 -1
  111. package/lib-commonjs/components/AccordionHeader/AccordionHeader.d.ts +2 -1
  112. package/lib-commonjs/components/AccordionHeader/AccordionHeader.js +6 -5
  113. package/lib-commonjs/components/AccordionHeader/AccordionHeader.js.map +1 -1
  114. package/lib-commonjs/components/AccordionHeader/AccordionHeader.types.d.ts +12 -11
  115. package/lib-commonjs/components/AccordionHeader/AccordionHeader.types.js.map +1 -1
  116. package/lib-commonjs/components/AccordionHeader/AccordionHeaderContext.js.map +1 -1
  117. package/lib-commonjs/components/AccordionHeader/index.d.ts +0 -1
  118. package/lib-commonjs/components/AccordionHeader/index.js +0 -2
  119. package/lib-commonjs/components/AccordionHeader/index.js.map +1 -1
  120. package/lib-commonjs/components/AccordionHeader/renderAccordionHeader.d.ts +1 -1
  121. package/lib-commonjs/components/AccordionHeader/renderAccordionHeader.js +10 -7
  122. package/lib-commonjs/components/AccordionHeader/renderAccordionHeader.js.map +1 -1
  123. package/lib-commonjs/components/AccordionHeader/useAccordionHeader.d.ts +2 -6
  124. package/lib-commonjs/components/AccordionHeader/useAccordionHeader.js +31 -20
  125. package/lib-commonjs/components/AccordionHeader/useAccordionHeader.js.map +1 -1
  126. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderContextValues.d.ts +1 -1
  127. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderContextValues.js +3 -3
  128. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderContextValues.js.map +1 -1
  129. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderStyles.d.ts +1 -1
  130. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderStyles.js +46 -55
  131. package/lib-commonjs/components/AccordionHeader/useAccordionHeaderStyles.js.map +1 -1
  132. package/lib-commonjs/components/AccordionItem/AccordionItem.d.ts +1 -1
  133. package/lib-commonjs/components/AccordionItem/AccordionItem.js +5 -5
  134. package/lib-commonjs/components/AccordionItem/AccordionItem.js.map +1 -1
  135. package/lib-commonjs/components/AccordionItem/AccordionItem.types.d.ts +4 -3
  136. package/lib-commonjs/components/AccordionItem/AccordionItem.types.js.map +1 -1
  137. package/lib-commonjs/components/AccordionItem/AccordionItemContext.d.ts +1 -1
  138. package/lib-commonjs/components/AccordionItem/AccordionItemContext.js +3 -3
  139. package/lib-commonjs/components/AccordionItem/AccordionItemContext.js.map +1 -1
  140. package/lib-commonjs/components/AccordionItem/index.js.map +1 -1
  141. package/lib-commonjs/components/AccordionItem/renderAccordionItem.d.ts +1 -1
  142. package/lib-commonjs/components/AccordionItem/renderAccordionItem.js +6 -7
  143. package/lib-commonjs/components/AccordionItem/renderAccordionItem.js.map +1 -1
  144. package/lib-commonjs/components/AccordionItem/useAccordionItem.d.ts +2 -6
  145. package/lib-commonjs/components/AccordionItem/useAccordionItem.js +11 -15
  146. package/lib-commonjs/components/AccordionItem/useAccordionItem.js.map +1 -1
  147. package/lib-commonjs/components/AccordionItem/useAccordionItemContextValues.d.ts +1 -1
  148. package/lib-commonjs/components/AccordionItem/useAccordionItemContextValues.js +3 -3
  149. package/lib-commonjs/components/AccordionItem/useAccordionItemContextValues.js.map +1 -1
  150. package/lib-commonjs/components/AccordionItem/useAccordionItemStyles.d.ts +1 -1
  151. package/lib-commonjs/components/AccordionItem/useAccordionItemStyles.js +5 -5
  152. package/lib-commonjs/components/AccordionItem/useAccordionItemStyles.js.map +1 -1
  153. package/lib-commonjs/components/AccordionPanel/AccordionPanel.d.ts +1 -1
  154. package/lib-commonjs/components/AccordionPanel/AccordionPanel.js +4 -4
  155. package/lib-commonjs/components/AccordionPanel/AccordionPanel.js.map +1 -1
  156. package/lib-commonjs/components/AccordionPanel/AccordionPanel.types.d.ts +2 -2
  157. package/lib-commonjs/components/AccordionPanel/AccordionPanel.types.js.map +1 -1
  158. package/lib-commonjs/components/AccordionPanel/index.js.map +1 -1
  159. package/lib-commonjs/components/AccordionPanel/renderAccordionPanel.d.ts +1 -1
  160. package/lib-commonjs/components/AccordionPanel/renderAccordionPanel.js +6 -7
  161. package/lib-commonjs/components/AccordionPanel/renderAccordionPanel.js.map +1 -1
  162. package/lib-commonjs/components/AccordionPanel/useAccordionPanel.d.ts +2 -6
  163. package/lib-commonjs/components/AccordionPanel/useAccordionPanel.js +8 -11
  164. package/lib-commonjs/components/AccordionPanel/useAccordionPanel.js.map +1 -1
  165. package/lib-commonjs/components/AccordionPanel/useAccordionPanelStyles.d.ts +1 -1
  166. package/lib-commonjs/components/AccordionPanel/useAccordionPanelStyles.js +6 -6
  167. package/lib-commonjs/components/AccordionPanel/useAccordionPanelStyles.js.map +1 -1
  168. package/lib-commonjs/index.js.map +1 -1
  169. package/package.json +17 -19
  170. package/lib/common/isConformant.d.ts +0 -4
  171. package/lib/common/isConformant.js +0 -12
  172. package/lib/common/isConformant.js.map +0 -1
  173. package/lib/components/AccordionHeader/AccordionHeaderExpandIcon.d.ts +0 -3
  174. package/lib/components/AccordionHeader/AccordionHeaderExpandIcon.js +0 -41
  175. package/lib/components/AccordionHeader/AccordionHeaderExpandIcon.js.map +0 -1
  176. package/lib-commonjs/common/isConformant.d.ts +0 -4
  177. package/lib-commonjs/common/isConformant.js +0 -23
  178. package/lib-commonjs/common/isConformant.js.map +0 -1
  179. package/lib-commonjs/components/AccordionHeader/AccordionHeaderExpandIcon.d.ts +0 -3
  180. package/lib-commonjs/components/AccordionHeader/AccordionHeaderExpandIcon.js +0 -50
  181. package/lib-commonjs/components/AccordionHeader/AccordionHeaderExpandIcon.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,17 +2,326 @@
2
2
  "name": "@fluentui/react-accordion",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 12 Nov 2021 04:20:19 GMT",
6
- "tag": "@fluentui/react-accordion_v0.0.0-nightlyfe9829e48120211112.1",
7
- "version": "0.0.0-nightlyfe9829e48120211112.1",
5
+ "date": "Thu, 17 Feb 2022 11:41:16 GMT",
6
+ "tag": "@fluentui/react-accordion_v0.0.0-nightlyff78d1e27a20220217.1",
7
+ "version": "0.0.0-nightlyff78d1e27a20220217.1",
8
8
  "comments": {
9
9
  "prerelease": [
10
10
  {
11
11
  "author": "email not defined",
12
12
  "package": "@fluentui/react-accordion",
13
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72",
13
+ "commit": "966e16625ca79f990ad8ca408ba47857adc522b3",
14
14
  "comment": "Release nightly v9"
15
15
  },
16
+ {
17
+ "author": "bsunderhus@microsoft.com",
18
+ "package": "@fluentui/react-accordion",
19
+ "commit": "5a45a787f2669a9f694a274b220823dbc10b04e2",
20
+ "comment": "Updates initial open items value to be empty on every case"
21
+ },
22
+ {
23
+ "author": "bsunderhus@microsoft.com",
24
+ "package": "@fluentui/react-accordion",
25
+ "commit": "ea090f75ef4a477f6ea9ffa2b4d7bec826a99b5f",
26
+ "comment": "Breaking change: navigable becomes navigation"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-accordion",
31
+ "comment": "Bump @fluentui/react-aria to v0.0.0-nightlyff78d1e27a20220217.1",
32
+ "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-accordion",
37
+ "comment": "Bump @fluentui/react-context-selector to v0.0.0-nightlyff78d1e27a20220217.1",
38
+ "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-accordion",
43
+ "comment": "Bump @fluentui/react-tabster to v0.0.0-nightlyff78d1e27a20220217.1",
44
+ "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-accordion",
49
+ "comment": "Bump @fluentui/react-theme to v0.0.0-nightlyff78d1e27a20220217.1",
50
+ "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
51
+ },
52
+ {
53
+ "author": "beachball",
54
+ "package": "@fluentui/react-accordion",
55
+ "comment": "Bump @fluentui/react-utilities to v0.0.0-nightlyff78d1e27a20220217.1",
56
+ "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
57
+ },
58
+ {
59
+ "author": "beachball",
60
+ "package": "@fluentui/react-accordion",
61
+ "comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightlyff78d1e27a20220217.1",
62
+ "commit": "966e16625ca79f990ad8ca408ba47857adc522b3"
63
+ }
64
+ ],
65
+ "none": [
66
+ {
67
+ "author": "bsunderhus@microsoft.com",
68
+ "package": "@fluentui/react-accordion",
69
+ "commit": "3068d4518c5e599c60a216455eac40531d896162",
70
+ "comment": "Updates spec and story to add warning about heading level"
71
+ }
72
+ ]
73
+ }
74
+ },
75
+ {
76
+ "date": "Thu, 10 Feb 2022 08:52:11 GMT",
77
+ "tag": "@fluentui/react-accordion_v9.0.0-rc.1",
78
+ "version": "9.0.0-rc.1",
79
+ "comments": {
80
+ "prerelease": [
81
+ {
82
+ "author": "olfedias@microsoft.com",
83
+ "package": "@fluentui/react-accordion",
84
+ "commit": "b23239743c4f5518bcf7dcad496a36fc16bbd2e5",
85
+ "comment": "update @fluentui/react-icons package"
86
+ },
87
+ {
88
+ "author": "olfedias@microsoft.com",
89
+ "package": "@fluentui/react-accordion",
90
+ "commit": "b8537fb52cc3cc2787be5675c65300e01d882add",
91
+ "comment": "update styles to not use CSS shorthands"
92
+ },
93
+ {
94
+ "author": "mgodbolt@microsoft.com",
95
+ "package": "@fluentui/react-accordion",
96
+ "commit": "839ec14849e112b85aa321d034739ec421199141",
97
+ "comment": "remove export of commons types"
98
+ },
99
+ {
100
+ "author": "behowell@microsoft.com",
101
+ "package": "@fluentui/react-accordion",
102
+ "commit": "53b01d71e335715fda91b33e3d7bbd9d471d5ed3",
103
+ "comment": "Refactor component Slot typings"
104
+ },
105
+ {
106
+ "author": "tristan.watanabe@gmail.com",
107
+ "package": "@fluentui/react-accordion",
108
+ "commit": "13f940ea4687d769dd2faf61edc27ff75f6bb565",
109
+ "comment": "Allow React 17 in peerDependencies."
110
+ },
111
+ {
112
+ "author": "behowell@microsoft.com",
113
+ "package": "@fluentui/react-accordion",
114
+ "commit": "7cc28ed8320b00f42d91c63882f10316db2205c5",
115
+ "comment": "Remove component's shorthandProps array"
116
+ },
117
+ {
118
+ "author": "olfedias@microsoft.com",
119
+ "package": "@fluentui/react-accordion",
120
+ "commit": "a2e02b2015b1f9307c69c8ecf005c166d496e206",
121
+ "comment": "use Griffel packages"
122
+ },
123
+ {
124
+ "author": "Humberto.Morimoto@microsoft.com",
125
+ "package": "@fluentui/react-accordion",
126
+ "commit": "0bc161458eae5ae8d387172430496ce9829b1bb1",
127
+ "comment": "Using ComponentSlotProps instead of ObjectShorthandProps."
128
+ },
129
+ {
130
+ "author": "bsunderhus@microsoft.com",
131
+ "package": "@fluentui/react-accordion",
132
+ "commit": "940a86cbd6a9f711d275df3a823292b527017852",
133
+ "comment": "Removes children as a slot from AccordionHeader"
134
+ },
135
+ {
136
+ "author": "lingfangao@hotmail.com",
137
+ "package": "@fluentui/react-accordion",
138
+ "commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
139
+ "comment": "Bump Fluent UI packages to 9.0.0-rc"
140
+ },
141
+ {
142
+ "author": "sarah.higley@microsoft.com",
143
+ "package": "@fluentui/react-accordion",
144
+ "commit": "d0758018bf44c69e01451c8a6bd4f73b43e397b7",
145
+ "comment": "update semantic elements and ARIA roles in react-accordion, add heading level story"
146
+ },
147
+ {
148
+ "author": "ololubek@microsoft.com",
149
+ "package": "@fluentui/react-accordion",
150
+ "commit": "63cbefe55e5db10eedbde19392aa8b6376d6a7f7",
151
+ "comment": "Update react-icons usage to resizable icons"
152
+ },
153
+ {
154
+ "author": "behowell@microsoft.com",
155
+ "package": "@fluentui/react-accordion",
156
+ "commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
157
+ "comment": "BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
158
+ },
159
+ {
160
+ "author": "Humberto.Morimoto@microsoft.com",
161
+ "package": "@fluentui/react-accordion",
162
+ "commit": "e0b8e1fa6980077e7b311fd1c72c28d3e4305db0",
163
+ "comment": "Updating based on changes to composition types."
164
+ },
165
+ {
166
+ "author": "Humberto.Morimoto@microsoft.com",
167
+ "package": "@fluentui/react-accordion",
168
+ "commit": "38c8bed2c707014688ae2ae689033fa36ef23075",
169
+ "comment": "Updating packages based on changes to focusIndicator functions to remove functions from makeStyles in @fluentui/react-tabster."
170
+ },
171
+ {
172
+ "author": "Humberto.Morimoto@microsoft.com",
173
+ "package": "@fluentui/react-accordion",
174
+ "commit": "22ef7434eddbe45d8818b16ff43c3488ac84ae45",
175
+ "comment": "Replacing use of functions in makeStyles with direct use of tokens."
176
+ },
177
+ {
178
+ "author": "behowell@microsoft.com",
179
+ "package": "@fluentui/react-accordion",
180
+ "commit": "dfb5538a2494b48cbb61702c4c2c9aaf8de37a6f",
181
+ "comment": "Remove AccordionHeaderExpandIcon, and use ChevronRightRegular from @fluentui/react-icons instead"
182
+ },
183
+ {
184
+ "author": "beachball",
185
+ "package": "@fluentui/react-accordion",
186
+ "comment": "Bump @fluentui/react-aria to v9.0.0-rc.1",
187
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
188
+ },
189
+ {
190
+ "author": "beachball",
191
+ "package": "@fluentui/react-accordion",
192
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.1",
193
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
194
+ },
195
+ {
196
+ "author": "beachball",
197
+ "package": "@fluentui/react-accordion",
198
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.1",
199
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
200
+ },
201
+ {
202
+ "author": "beachball",
203
+ "package": "@fluentui/react-accordion",
204
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.1",
205
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
206
+ },
207
+ {
208
+ "author": "beachball",
209
+ "package": "@fluentui/react-accordion",
210
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
211
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
212
+ },
213
+ {
214
+ "author": "beachball",
215
+ "package": "@fluentui/react-accordion",
216
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
217
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
218
+ }
219
+ ],
220
+ "none": [
221
+ {
222
+ "author": "martinhochel@microsoft.com",
223
+ "package": "@fluentui/react-accordion",
224
+ "commit": "28ceaaa83cd92a0389c466f0b15b283e3d9b08e4",
225
+ "comment": "chore: update all jest deps to v25 + apply single version policy"
226
+ },
227
+ {
228
+ "author": "bsunderhus@microsoft.com",
229
+ "package": "@fluentui/react-accordion",
230
+ "commit": "c0d4e63ee58e60e2c6674efbacc0783cd520984e",
231
+ "comment": "Updates components with nullRender changes"
232
+ },
233
+ {
234
+ "author": "martinhochel@microsoft.com",
235
+ "package": "@fluentui/react-accordion",
236
+ "commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
237
+ "comment": "chore: use storybook runner for all vNext packages"
238
+ },
239
+ {
240
+ "author": "olfedias@microsoft.com",
241
+ "package": "@fluentui/react-accordion",
242
+ "commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
243
+ "comment": "remove inline-style-expand-shorthand from tsconfigs"
244
+ }
245
+ ]
246
+ }
247
+ },
248
+ {
249
+ "date": "Thu, 25 Nov 2021 08:34:10 GMT",
250
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.5",
251
+ "version": "9.0.0-beta.5",
252
+ "comments": {
253
+ "none": [
254
+ {
255
+ "author": "lingfangao@hotmail.com",
256
+ "package": "@fluentui/react-accordion",
257
+ "commit": "8a141d14f3a14de2e1c4691dad908622f310a9d1",
258
+ "comment": "Migrate package to use solution tsconfigs"
259
+ }
260
+ ],
261
+ "prerelease": [
262
+ {
263
+ "author": "beachball",
264
+ "package": "@fluentui/react-accordion",
265
+ "comment": "Bump @fluentui/react-aria to v9.0.0-beta.4",
266
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
267
+ },
268
+ {
269
+ "author": "beachball",
270
+ "package": "@fluentui/react-accordion",
271
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.4",
272
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
273
+ },
274
+ {
275
+ "author": "beachball",
276
+ "package": "@fluentui/react-accordion",
277
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
278
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
279
+ },
280
+ {
281
+ "author": "beachball",
282
+ "package": "@fluentui/react-accordion",
283
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
284
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
285
+ },
286
+ {
287
+ "author": "beachball",
288
+ "package": "@fluentui/react-accordion",
289
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.4",
290
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
291
+ },
292
+ {
293
+ "author": "beachball",
294
+ "package": "@fluentui/react-accordion",
295
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
296
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
297
+ },
298
+ {
299
+ "author": "beachball",
300
+ "package": "@fluentui/react-accordion",
301
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
302
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
303
+ },
304
+ {
305
+ "author": "beachball",
306
+ "package": "@fluentui/react-accordion",
307
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
308
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
309
+ },
310
+ {
311
+ "author": "beachball",
312
+ "package": "@fluentui/react-accordion",
313
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
314
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
315
+ }
316
+ ]
317
+ }
318
+ },
319
+ {
320
+ "date": "Fri, 12 Nov 2021 13:25:12 GMT",
321
+ "tag": "@fluentui/react-accordion_v9.0.0-beta.4",
322
+ "version": "9.0.0-beta.4",
323
+ "comments": {
324
+ "prerelease": [
16
325
  {
17
326
  "author": "olfedias@microsoft.com",
18
327
  "package": "@fluentui/react-accordion",
@@ -34,56 +343,56 @@
34
343
  {
35
344
  "author": "beachball",
36
345
  "package": "@fluentui/react-accordion",
37
- "comment": "Bump @fluentui/react-aria to v0.0.0-nightlyfe9829e48120211112.1",
38
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72"
346
+ "comment": "Bump @fluentui/react-aria to v9.0.0-beta.3",
347
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
39
348
  },
40
349
  {
41
350
  "author": "beachball",
42
351
  "package": "@fluentui/react-accordion",
43
- "comment": "Bump @fluentui/react-context-selector to v0.0.0-nightlyfe9829e48120211112.1",
44
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72"
352
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-beta.3",
353
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
45
354
  },
46
355
  {
47
356
  "author": "beachball",
48
357
  "package": "@fluentui/react-accordion",
49
- "comment": "Bump @fluentui/react-make-styles to v0.0.0-nightlyfe9829e48120211112.1",
50
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72"
358
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
359
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
51
360
  },
52
361
  {
53
362
  "author": "beachball",
54
363
  "package": "@fluentui/react-accordion",
55
- "comment": "Bump @fluentui/react-tabster to v0.0.0-nightlyfe9829e48120211112.1",
56
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72"
364
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.4",
365
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
57
366
  },
58
367
  {
59
368
  "author": "beachball",
60
369
  "package": "@fluentui/react-accordion",
61
- "comment": "Bump @fluentui/react-theme to v0.0.0-nightlyfe9829e48120211112.1",
62
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72"
370
+ "comment": "Bump @fluentui/react-theme to v9.0.0-beta.3",
371
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
63
372
  },
64
373
  {
65
374
  "author": "beachball",
66
375
  "package": "@fluentui/react-accordion",
67
- "comment": "Bump @fluentui/react-utilities to v0.0.0-nightlyfe9829e48120211112.1",
68
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72"
376
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
377
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
69
378
  },
70
379
  {
71
380
  "author": "beachball",
72
381
  "package": "@fluentui/react-accordion",
73
- "comment": "Bump @fluentui/babel-make-styles to v0.0.0-nightlyfe9829e48120211112.1",
74
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72"
382
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
383
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
75
384
  },
76
385
  {
77
386
  "author": "beachball",
78
387
  "package": "@fluentui/react-accordion",
79
- "comment": "Bump @fluentui/jest-serializer-make-styles to v0.0.0-nightlyfe9829e48120211112.1",
80
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72"
388
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
389
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
81
390
  },
82
391
  {
83
392
  "author": "beachball",
84
393
  "package": "@fluentui/react-accordion",
85
- "comment": "Bump @fluentui/react-conformance-make-styles to v0.0.0-nightlyfe9829e48120211112.1",
86
- "commit": "142a7cc99189d401f2f98ff0ee2f1db652df8b72"
394
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
395
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
87
396
  }
88
397
  ],
89
398
  "none": [
@@ -93,6 +402,12 @@
93
402
  "commit": "cdbe0769d2a6ee91a98a3e62c6ac9329a714355c",
94
403
  "comment": "Docs update"
95
404
  },
405
+ {
406
+ "author": "lingfangao@hotmail.com",
407
+ "package": "@fluentui/react-accordion",
408
+ "commit": "00f70581480b536e723fb69edf0ae617beac4807",
409
+ "comment": "Remove beta release tag"
410
+ },
96
411
  {
97
412
  "author": "mgodbolt@microsoft.com",
98
413
  "package": "@fluentui/react-accordion",
package/CHANGELOG.md CHANGED
@@ -1,29 +1,93 @@
1
1
  # Change Log - @fluentui/react-accordion
2
2
 
3
- This log was last generated on Fri, 12 Nov 2021 04:20:19 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 17 Feb 2022 11:41:16 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [0.0.0-nightlyfe9829e48120211112.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v0.0.0-nightlyfe9829e48120211112.1)
7
+ ## [0.0.0-nightlyff78d1e27a20220217.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v0.0.0-nightlyff78d1e27a20220217.1)
8
8
 
9
- Fri, 12 Nov 2021 04:20:19 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.3..@fluentui/react-accordion_v0.0.0-nightlyfe9829e48120211112.1)
9
+ Thu, 17 Feb 2022 11:41:16 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-rc.1..@fluentui/react-accordion_v0.0.0-nightlyff78d1e27a20220217.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/966e16625ca79f990ad8ca408ba47857adc522b3) by email not defined)
15
+ - Updates initial open items value to be empty on every case ([PR #21728](https://github.com/microsoft/fluentui/pull/21728) by bsunderhus@microsoft.com)
16
+ - Breaking change: navigable becomes navigation ([PR #21729](https://github.com/microsoft/fluentui/pull/21729) by bsunderhus@microsoft.com)
17
+ - Bump @fluentui/react-aria to v0.0.0-nightlyff78d1e27a20220217.1 ([commit](https://github.com/microsoft/fluentui/commit/966e16625ca79f990ad8ca408ba47857adc522b3) by beachball)
18
+ - Bump @fluentui/react-context-selector to v0.0.0-nightlyff78d1e27a20220217.1 ([commit](https://github.com/microsoft/fluentui/commit/966e16625ca79f990ad8ca408ba47857adc522b3) by beachball)
19
+ - Bump @fluentui/react-tabster to v0.0.0-nightlyff78d1e27a20220217.1 ([commit](https://github.com/microsoft/fluentui/commit/966e16625ca79f990ad8ca408ba47857adc522b3) by beachball)
20
+ - Bump @fluentui/react-theme to v0.0.0-nightlyff78d1e27a20220217.1 ([commit](https://github.com/microsoft/fluentui/commit/966e16625ca79f990ad8ca408ba47857adc522b3) by beachball)
21
+ - Bump @fluentui/react-utilities to v0.0.0-nightlyff78d1e27a20220217.1 ([commit](https://github.com/microsoft/fluentui/commit/966e16625ca79f990ad8ca408ba47857adc522b3) by beachball)
22
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightlyff78d1e27a20220217.1 ([commit](https://github.com/microsoft/fluentui/commit/966e16625ca79f990ad8ca408ba47857adc522b3) by beachball)
23
+
24
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-rc.1)
25
+
26
+ Thu, 10 Feb 2022 08:52:11 GMT
27
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.5..@fluentui/react-accordion_v9.0.0-rc.1)
28
+
29
+ ### Changes
30
+
31
+ - update @fluentui/react-icons package ([PR #21498](https://github.com/microsoft/fluentui/pull/21498) by olfedias@microsoft.com)
32
+ - update styles to not use CSS shorthands ([PR #20800](https://github.com/microsoft/fluentui/pull/20800) by olfedias@microsoft.com)
33
+ - remove export of commons types ([PR #21660](https://github.com/microsoft/fluentui/pull/21660) by mgodbolt@microsoft.com)
34
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
35
+ - Allow React 17 in peerDependencies. ([PR #21544](https://github.com/microsoft/fluentui/pull/21544) by tristan.watanabe@gmail.com)
36
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
37
+ - use Griffel packages ([PR #21394](https://github.com/microsoft/fluentui/pull/21394) by olfedias@microsoft.com)
38
+ - Using ComponentSlotProps instead of ObjectShorthandProps. ([PR #20890](https://github.com/microsoft/fluentui/pull/20890) by Humberto.Morimoto@microsoft.com)
39
+ - Removes children as a slot from AccordionHeader ([PR #21285](https://github.com/microsoft/fluentui/pull/21285) by bsunderhus@microsoft.com)
40
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
41
+ - update semantic elements and ARIA roles in react-accordion, add heading level story ([PR #21401](https://github.com/microsoft/fluentui/pull/21401) by sarah.higley@microsoft.com)
42
+ - Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
43
+ - BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet ([PR #21365](https://github.com/microsoft/fluentui/pull/21365) by behowell@microsoft.com)
44
+ - Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
45
+ - Updating packages based on changes to focusIndicator functions to remove functions from makeStyles in @fluentui/react-tabster. ([PR #21035](https://github.com/microsoft/fluentui/pull/21035) by Humberto.Morimoto@microsoft.com)
46
+ - Replacing use of functions in makeStyles with direct use of tokens. ([PR #21036](https://github.com/microsoft/fluentui/pull/21036) by Humberto.Morimoto@microsoft.com)
47
+ - Remove AccordionHeaderExpandIcon, and use ChevronRightRegular from @fluentui/react-icons instead ([PR #21218](https://github.com/microsoft/fluentui/pull/21218) by behowell@microsoft.com)
48
+ - Bump @fluentui/react-aria to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
49
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
50
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
51
+ - Bump @fluentui/react-theme to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
52
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
53
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
54
+
55
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.5)
56
+
57
+ Thu, 25 Nov 2021 08:34:10 GMT
58
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.4..@fluentui/react-accordion_v9.0.0-beta.5)
59
+
60
+ ### Changes
61
+
62
+ - Bump @fluentui/react-aria to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
63
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
64
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
65
+ - Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
66
+ - Bump @fluentui/react-theme to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
67
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
68
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
69
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
70
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
71
+
72
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.4)
73
+
74
+ Fri, 12 Nov 2021 13:25:12 GMT
75
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-accordion_v9.0.0-beta.3..@fluentui/react-accordion_v9.0.0-beta.4)
11
76
 
12
77
  ### Changes
13
78
 
14
- - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by email not defined)
15
79
  - export static classes for components ([PR #20451](https://github.com/microsoft/fluentui/pull/20451) by olfedias@microsoft.com)
16
80
  - Updating AccordionHeader tests to match changes in useARIAButton. ([PR #20342](https://github.com/microsoft/fluentui/pull/20342) by Humberto.Morimoto@microsoft.com)
17
81
  - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
18
- - Bump @fluentui/react-aria to v0.0.0-nightlyfe9829e48120211112.1 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by beachball)
19
- - Bump @fluentui/react-context-selector to v0.0.0-nightlyfe9829e48120211112.1 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by beachball)
20
- - Bump @fluentui/react-make-styles to v0.0.0-nightlyfe9829e48120211112.1 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by beachball)
21
- - Bump @fluentui/react-tabster to v0.0.0-nightlyfe9829e48120211112.1 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by beachball)
22
- - Bump @fluentui/react-theme to v0.0.0-nightlyfe9829e48120211112.1 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by beachball)
23
- - Bump @fluentui/react-utilities to v0.0.0-nightlyfe9829e48120211112.1 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by beachball)
24
- - Bump @fluentui/babel-make-styles to v0.0.0-nightlyfe9829e48120211112.1 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by beachball)
25
- - Bump @fluentui/jest-serializer-make-styles to v0.0.0-nightlyfe9829e48120211112.1 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by beachball)
26
- - Bump @fluentui/react-conformance-make-styles to v0.0.0-nightlyfe9829e48120211112.1 ([commit](https://github.com/microsoft/fluentui/commit/142a7cc99189d401f2f98ff0ee2f1db652df8b72) by beachball)
82
+ - Bump @fluentui/react-aria to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
83
+ - Bump @fluentui/react-context-selector to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
84
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
85
+ - Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
86
+ - Bump @fluentui/react-theme to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
87
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
88
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
89
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
90
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
27
91
 
28
92
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-accordion_v9.0.0-beta.3)
29
93
 
package/Spec.md CHANGED
@@ -37,9 +37,10 @@ The root level component serves context and common API between all children.
37
37
  export type AccordionProps = ComponentProps &
38
38
  React.HTMLAttributes<HTMLElement> & {
39
39
  /**
40
- * Indicates if keyboard navigation is available
40
+ * Indicates if keyboard navigation is available and gives two options,
41
+ * linear or circular navigation
41
42
  */
42
- navigable?: boolean;
43
+ navigation?: 'linear' | 'circular';
43
44
  /**
44
45
  * Indicates if Accordion support multiple Panels opened at the same time
45
46
  */
@@ -410,6 +411,37 @@ As a general rule, once the accordion is closed the focus should return to the h
410
411
  | Keyboard | Home | Moves Focus | Moves focus to the first panel heading |
411
412
  | Keyboard | End | Moves Focus | Moves focus to the last panel heading |
412
413
 
413
- ## Accessibiltiy
414
+ ## Accessibility
414
415
 
415
- Accessibility behaviour is built into the spec as much as possible. This section addresses specific issues that don't fit well with the standard definition of the component.
416
+ Accessibility behavior is built into the spec as much as possible. This section addresses specific issues that don't fit well with the standard definition of the component.
417
+
418
+ ### No heading level on `AccordionHeader` by default
419
+
420
+ As described on [WAI-ARIA Roles, States, and Properties](https://www.w3.org/TR/wai-aria-practices/#wai-aria-roles-states-and-properties) documentation for accordion:
421
+
422
+ > Each accordion header button is wrapped in an element with role heading that has a value set for aria-level that is appropriate for the information architecture of the page.
423
+
424
+ Every `AccordionHeader` should have as its root a semantic heading element: `h1`, `h2`, `h3`, `h4`, `h5` or `h6`. Alternatively `role="heading"` and a proper `aria-level` attribute. This behavior is not implemented by default on `AccordionHeader` as it's impossible to predict which heading level will be required by the user. Requiring manual addition of such ARIA requirement.
425
+
426
+ ```tsx
427
+ {/* No heading level by default */}
428
+ <AccordionHeader>This is a header</AccordionHeader>
429
+ {/* Generated html */}
430
+ <div>
431
+ <button>This is a header</button>
432
+ </div>
433
+
434
+ {/* as semantic heading */}
435
+ <AccordionHeader as="h4">This is a header</AccordionHeader>
436
+ {/* Generated html */}
437
+ <h4>
438
+ <button>This is a header</button>
439
+ </h4>
440
+
441
+ {/* if no semantic heading can be used */}
442
+ <AccordionHeader role="heading" aria-level="4">This is a header</AccordionHeader>
443
+ {/* Generated html */}
444
+ <div role="heading" aria-level="4">
445
+ <button>This is a header</button>
446
+ </h4>
447
+ ```