@fluentui/react-tabs 1.0.0-beta.97 → 9.0.0-beta.10

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 (229) hide show
  1. package/CHANGELOG.json +181 -1762
  2. package/CHANGELOG.md +54 -718
  3. package/README.md +0 -17
  4. package/Spec.md +433 -0
  5. package/dist/react-tabs.d.ts +173 -127
  6. package/lib/Tab.d.ts +1 -0
  7. package/lib/Tab.js +2 -0
  8. package/lib/Tab.js.map +1 -0
  9. package/lib/TabList.d.ts +1 -0
  10. package/lib/TabList.js +2 -0
  11. package/lib/TabList.js.map +1 -0
  12. package/lib/components/Tab/Tab.d.ts +6 -0
  13. package/lib/components/Tab/Tab.js +15 -0
  14. package/lib/components/Tab/Tab.js.map +1 -0
  15. package/lib/components/Tab/Tab.types.d.ts +61 -0
  16. package/lib/components/Tab/Tab.types.js +2 -0
  17. package/lib/components/Tab/Tab.types.js.map +1 -0
  18. package/lib/components/Tab/index.d.ts +6 -0
  19. package/lib/components/Tab/index.js +7 -0
  20. package/lib/components/Tab/index.js.map +1 -0
  21. package/lib/components/Tab/renderTab.d.ts +5 -0
  22. package/lib/components/Tab/renderTab.js +17 -0
  23. package/lib/components/Tab/renderTab.js.map +1 -0
  24. package/lib/components/Tab/useTab.d.ts +12 -0
  25. package/lib/components/Tab/useTab.js +78 -0
  26. package/lib/components/Tab/useTab.js.map +1 -0
  27. package/lib/components/Tab/useTabAnimatedIndicator.d.ts +5 -0
  28. package/lib/components/Tab/useTabAnimatedIndicator.js +134 -0
  29. package/lib/components/Tab/useTabAnimatedIndicator.js.map +1 -0
  30. package/lib/components/Tab/useTabStyles.d.ts +8 -0
  31. package/lib/components/Tab/useTabStyles.js +402 -0
  32. package/lib/components/Tab/useTabStyles.js.map +1 -0
  33. package/lib/components/TabList/TabList.d.ts +6 -0
  34. package/lib/components/TabList/TabList.js +17 -0
  35. package/lib/components/TabList/TabList.js.map +1 -0
  36. package/lib/components/TabList/TabList.types.d.ts +104 -0
  37. package/lib/components/TabList/TabList.types.js +2 -0
  38. package/lib/components/TabList/TabList.types.js.map +1 -0
  39. package/lib/components/TabList/TabListContext.d.ts +3 -0
  40. package/lib/components/TabList/TabListContext.js +23 -0
  41. package/lib/components/TabList/TabListContext.js.map +1 -0
  42. package/lib/components/TabList/index.d.ts +5 -0
  43. package/lib/components/TabList/index.js +6 -0
  44. package/lib/components/TabList/index.js.map +1 -0
  45. package/lib/components/TabList/renderTabList.d.ts +5 -0
  46. package/lib/components/TabList/renderTabList.js +18 -0
  47. package/lib/components/TabList/renderTabList.js.map +1 -0
  48. package/lib/components/TabList/useTabList.d.ts +12 -0
  49. package/lib/components/TabList/useTabList.js +81 -0
  50. package/lib/components/TabList/useTabList.js.map +1 -0
  51. package/lib/components/TabList/useTabListContextValues.d.ts +2 -0
  52. package/lib/components/TabList/useTabListContextValues.js +28 -0
  53. package/lib/components/TabList/useTabListContextValues.js.map +1 -0
  54. package/lib/components/TabList/useTabListStyles.d.ts +8 -0
  55. package/lib/components/TabList/useTabListStyles.js +45 -0
  56. package/lib/components/TabList/useTabListStyles.js.map +1 -0
  57. package/lib/index.d.ts +4 -1
  58. package/lib/index.js +2 -1
  59. package/lib/index.js.map +1 -1
  60. package/lib/tab.constants.d.ts +62 -0
  61. package/lib/tab.constants.js +68 -0
  62. package/lib/tab.constants.js.map +1 -0
  63. package/lib/tsdoc-metadata.json +1 -1
  64. package/lib-commonjs/Tab.d.ts +1 -0
  65. package/lib-commonjs/Tab.js +10 -0
  66. package/lib-commonjs/Tab.js.map +1 -0
  67. package/lib-commonjs/TabList.d.ts +1 -0
  68. package/lib-commonjs/TabList.js +10 -0
  69. package/lib-commonjs/TabList.js.map +1 -0
  70. package/lib-commonjs/components/Tab/Tab.d.ts +6 -0
  71. package/lib-commonjs/components/Tab/Tab.js +26 -0
  72. package/lib-commonjs/components/Tab/Tab.js.map +1 -0
  73. package/lib-commonjs/components/Tab/Tab.types.d.ts +61 -0
  74. package/lib-commonjs/components/Tab/Tab.types.js +6 -0
  75. package/lib-commonjs/components/Tab/Tab.types.js.map +1 -0
  76. package/lib-commonjs/components/Tab/index.d.ts +6 -0
  77. package/lib-commonjs/components/Tab/index.js +20 -0
  78. package/lib-commonjs/components/Tab/index.js.map +1 -0
  79. package/lib-commonjs/components/Tab/renderTab.d.ts +5 -0
  80. package/lib-commonjs/components/Tab/renderTab.js +28 -0
  81. package/lib-commonjs/components/Tab/renderTab.js.map +1 -0
  82. package/lib-commonjs/components/Tab/useTab.d.ts +12 -0
  83. package/lib-commonjs/components/Tab/useTab.js +91 -0
  84. package/lib-commonjs/components/Tab/useTab.js.map +1 -0
  85. package/lib-commonjs/components/Tab/useTabAnimatedIndicator.d.ts +5 -0
  86. package/lib-commonjs/components/Tab/useTabAnimatedIndicator.js +148 -0
  87. package/lib-commonjs/components/Tab/useTabAnimatedIndicator.js.map +1 -0
  88. package/lib-commonjs/components/Tab/useTabStyles.d.ts +8 -0
  89. package/lib-commonjs/components/Tab/useTabStyles.js +416 -0
  90. package/lib-commonjs/components/Tab/useTabStyles.js.map +1 -0
  91. package/lib-commonjs/components/TabList/TabList.d.ts +6 -0
  92. package/lib-commonjs/components/TabList/TabList.js +29 -0
  93. package/lib-commonjs/components/TabList/TabList.js.map +1 -0
  94. package/lib-commonjs/components/TabList/TabList.types.d.ts +104 -0
  95. package/lib-commonjs/components/TabList/TabList.types.js +6 -0
  96. package/lib-commonjs/components/TabList/TabList.types.js.map +1 -0
  97. package/lib-commonjs/components/TabList/TabListContext.d.ts +3 -0
  98. package/lib-commonjs/components/TabList/TabListContext.js +31 -0
  99. package/lib-commonjs/components/TabList/TabListContext.js.map +1 -0
  100. package/lib-commonjs/components/TabList/index.d.ts +5 -0
  101. package/lib-commonjs/components/TabList/index.js +18 -0
  102. package/lib-commonjs/components/TabList/index.js.map +1 -0
  103. package/lib-commonjs/components/TabList/renderTabList.d.ts +5 -0
  104. package/lib-commonjs/components/TabList/renderTabList.js +30 -0
  105. package/lib-commonjs/components/TabList/renderTabList.js.map +1 -0
  106. package/lib-commonjs/components/TabList/useTabList.d.ts +12 -0
  107. package/lib-commonjs/components/TabList/useTabList.js +93 -0
  108. package/lib-commonjs/components/TabList/useTabList.js.map +1 -0
  109. package/lib-commonjs/components/TabList/useTabListContextValues.d.ts +2 -0
  110. package/lib-commonjs/components/TabList/useTabListContextValues.js +37 -0
  111. package/lib-commonjs/components/TabList/useTabListContextValues.js.map +1 -0
  112. package/lib-commonjs/components/TabList/useTabListStyles.d.ts +8 -0
  113. package/lib-commonjs/components/TabList/useTabListStyles.js +55 -0
  114. package/lib-commonjs/components/TabList/useTabListStyles.js.map +1 -0
  115. package/lib-commonjs/index.d.ts +4 -1
  116. package/lib-commonjs/index.js +83 -3
  117. package/lib-commonjs/index.js.map +1 -1
  118. package/lib-commonjs/tab.constants.d.ts +62 -0
  119. package/lib-commonjs/tab.constants.js +75 -0
  120. package/lib-commonjs/tab.constants.js.map +1 -0
  121. package/package.json +25 -21
  122. package/config/api-extractor.json +0 -3
  123. package/config/tests.js +0 -14
  124. package/etc/react-tabs.api.md +0 -104
  125. package/just.config.ts +0 -3
  126. package/lib/Tabs.d.ts +0 -1
  127. package/lib/Tabs.js +0 -2
  128. package/lib/Tabs.js.map +0 -1
  129. package/lib/common/isConformant.d.ts +0 -2
  130. package/lib/common/isConformant.js +0 -9
  131. package/lib/common/isConformant.js.map +0 -1
  132. package/lib/components/Tabs/TabItem.d.ts +0 -6
  133. package/lib/components/Tabs/TabItem.js +0 -18
  134. package/lib/components/Tabs/TabItem.js.map +0 -1
  135. package/lib/components/Tabs/TabItem.types.d.ts +0 -61
  136. package/lib/components/Tabs/TabItem.types.js +0 -2
  137. package/lib/components/Tabs/TabItem.types.js.map +0 -1
  138. package/lib/components/Tabs/Tabs.base.d.ts +0 -3
  139. package/lib/components/Tabs/Tabs.base.js +0 -179
  140. package/lib/components/Tabs/Tabs.base.js.map +0 -1
  141. package/lib/components/Tabs/Tabs.d.ts +0 -8
  142. package/lib/components/Tabs/Tabs.js +0 -12
  143. package/lib/components/Tabs/Tabs.js.map +0 -1
  144. package/lib/components/Tabs/Tabs.styles.d.ts +0 -2
  145. package/lib/components/Tabs/Tabs.styles.js +0 -264
  146. package/lib/components/Tabs/Tabs.styles.js.map +0 -1
  147. package/lib/components/Tabs/Tabs.types.d.ts +0 -113
  148. package/lib/components/Tabs/Tabs.types.js +0 -2
  149. package/lib/components/Tabs/Tabs.types.js.map +0 -1
  150. package/lib/components/Tabs/index.d.ts +0 -5
  151. package/lib/components/Tabs/index.js +0 -6
  152. package/lib/components/Tabs/index.js.map +0 -1
  153. package/lib/utilities/observeResize.d.ts +0 -21
  154. package/lib/utilities/observeResize.js +0 -46
  155. package/lib/utilities/observeResize.js.map +0 -1
  156. package/lib/utilities/useOverflow.d.ts +0 -45
  157. package/lib/utilities/useOverflow.js +0 -126
  158. package/lib/utilities/useOverflow.js.map +0 -1
  159. package/lib-amd/Tabs.d.ts +0 -1
  160. package/lib-amd/Tabs.js +0 -6
  161. package/lib-amd/Tabs.js.map +0 -1
  162. package/lib-amd/common/isConformant.d.ts +0 -2
  163. package/lib-amd/common/isConformant.js +0 -14
  164. package/lib-amd/common/isConformant.js.map +0 -1
  165. package/lib-amd/components/Tabs/TabItem.d.ts +0 -6
  166. package/lib-amd/components/Tabs/TabItem.js +0 -20
  167. package/lib-amd/components/Tabs/TabItem.js.map +0 -1
  168. package/lib-amd/components/Tabs/TabItem.types.d.ts +0 -61
  169. package/lib-amd/components/Tabs/TabItem.types.js +0 -5
  170. package/lib-amd/components/Tabs/TabItem.types.js.map +0 -1
  171. package/lib-amd/components/Tabs/Tabs.base.d.ts +0 -3
  172. package/lib-amd/components/Tabs/Tabs.base.js +0 -176
  173. package/lib-amd/components/Tabs/Tabs.base.js.map +0 -1
  174. package/lib-amd/components/Tabs/Tabs.d.ts +0 -8
  175. package/lib-amd/components/Tabs/Tabs.js +0 -14
  176. package/lib-amd/components/Tabs/Tabs.js.map +0 -1
  177. package/lib-amd/components/Tabs/Tabs.styles.d.ts +0 -2
  178. package/lib-amd/components/Tabs/Tabs.styles.js +0 -267
  179. package/lib-amd/components/Tabs/Tabs.styles.js.map +0 -1
  180. package/lib-amd/components/Tabs/Tabs.types.d.ts +0 -113
  181. package/lib-amd/components/Tabs/Tabs.types.js +0 -5
  182. package/lib-amd/components/Tabs/Tabs.types.js.map +0 -1
  183. package/lib-amd/components/Tabs/index.d.ts +0 -5
  184. package/lib-amd/components/Tabs/index.js +0 -11
  185. package/lib-amd/components/Tabs/index.js.map +0 -1
  186. package/lib-amd/index.d.ts +0 -1
  187. package/lib-amd/index.js +0 -6
  188. package/lib-amd/index.js.map +0 -1
  189. package/lib-amd/utilities/observeResize.d.ts +0 -21
  190. package/lib-amd/utilities/observeResize.js +0 -51
  191. package/lib-amd/utilities/observeResize.js.map +0 -1
  192. package/lib-amd/utilities/useOverflow.d.ts +0 -45
  193. package/lib-amd/utilities/useOverflow.js +0 -128
  194. package/lib-amd/utilities/useOverflow.js.map +0 -1
  195. package/lib-commonjs/Tabs.d.ts +0 -1
  196. package/lib-commonjs/Tabs.js +0 -5
  197. package/lib-commonjs/Tabs.js.map +0 -1
  198. package/lib-commonjs/common/isConformant.d.ts +0 -2
  199. package/lib-commonjs/common/isConformant.js +0 -13
  200. package/lib-commonjs/common/isConformant.js.map +0 -1
  201. package/lib-commonjs/components/Tabs/TabItem.d.ts +0 -6
  202. package/lib-commonjs/components/Tabs/TabItem.js +0 -21
  203. package/lib-commonjs/components/Tabs/TabItem.js.map +0 -1
  204. package/lib-commonjs/components/Tabs/TabItem.types.d.ts +0 -61
  205. package/lib-commonjs/components/Tabs/TabItem.types.js +0 -3
  206. package/lib-commonjs/components/Tabs/TabItem.types.js.map +0 -1
  207. package/lib-commonjs/components/Tabs/Tabs.base.d.ts +0 -3
  208. package/lib-commonjs/components/Tabs/Tabs.base.js +0 -182
  209. package/lib-commonjs/components/Tabs/Tabs.base.js.map +0 -1
  210. package/lib-commonjs/components/Tabs/Tabs.d.ts +0 -8
  211. package/lib-commonjs/components/Tabs/Tabs.js +0 -15
  212. package/lib-commonjs/components/Tabs/Tabs.js.map +0 -1
  213. package/lib-commonjs/components/Tabs/Tabs.styles.d.ts +0 -2
  214. package/lib-commonjs/components/Tabs/Tabs.styles.js +0 -268
  215. package/lib-commonjs/components/Tabs/Tabs.styles.js.map +0 -1
  216. package/lib-commonjs/components/Tabs/Tabs.types.d.ts +0 -113
  217. package/lib-commonjs/components/Tabs/Tabs.types.js +0 -3
  218. package/lib-commonjs/components/Tabs/Tabs.types.js.map +0 -1
  219. package/lib-commonjs/components/Tabs/index.d.ts +0 -5
  220. package/lib-commonjs/components/Tabs/index.js +0 -11
  221. package/lib-commonjs/components/Tabs/index.js.map +0 -1
  222. package/lib-commonjs/utilities/observeResize.d.ts +0 -21
  223. package/lib-commonjs/utilities/observeResize.js +0 -50
  224. package/lib-commonjs/utilities/observeResize.js.map +0 -1
  225. package/lib-commonjs/utilities/useOverflow.d.ts +0 -45
  226. package/lib-commonjs/utilities/useOverflow.js +0 -130
  227. package/lib-commonjs/utilities/useOverflow.js.map +0 -1
  228. package/src/components/Tabs/TabItem.types.ts +0 -69
  229. package/src/components/Tabs/Tabs.types.ts +0 -131
package/CHANGELOG.md CHANGED
@@ -1,752 +1,88 @@
1
1
  # Change Log - @fluentui/react-tabs
2
2
 
3
- This log was last generated on Tue, 18 May 2021 07:31:38 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 25 Apr 2022 09:31:16 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [1.0.0-beta.97](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.97)
7
+ ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v9.0.0-beta.10)
8
8
 
9
- Tue, 18 May 2021 07:31:38 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.96..@fluentui/react-tabs_v1.0.0-beta.97)
11
-
12
- ### Patches
13
-
14
- - Bump @fluentui/react to v8.14.10 ([PR #17593](https://github.com/microsoft/fluentui/pull/17593) by zhigzhen@microsoft.com)
15
-
16
- ## [1.0.0-beta.96](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.96)
17
-
18
- Mon, 17 May 2021 07:33:48 GMT
19
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.95..@fluentui/react-tabs_v1.0.0-beta.96)
20
-
21
- ### Patches
22
-
23
- - Bump @fluentui/react to v8.14.9 ([PR #18146](https://github.com/microsoft/fluentui/pull/18146) by tkrasniqi@microsoft.com)
24
-
25
- ## [1.0.0-beta.95](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.95)
26
-
27
- Fri, 14 May 2021 07:35:10 GMT
28
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.94..@fluentui/react-tabs_v1.0.0-beta.95)
29
-
30
- ### Patches
31
-
32
- - Bump @fluentui/react to v8.14.8 ([PR #18150](https://github.com/microsoft/fluentui/pull/18150) by tristan.watanabe@gmail.com)
9
+ Mon, 25 Apr 2022 09:31:16 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v9.0.0-beta.9..@fluentui/react-tabs_v9.0.0-beta.10)
33
11
 
34
12
  ### Changes
35
13
 
36
- - Tabs: role prop of header button can now take tab.role value ([PR #18161](https://github.com/microsoft/fluentui/pull/18161) by hetanthakkar1@gmail.com)
37
-
38
- ## [1.0.0-beta.94](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.94)
39
-
40
- Thu, 13 May 2021 07:36:55 GMT
41
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.93..@fluentui/react-tabs_v1.0.0-beta.94)
42
-
43
- ### Patches
44
-
45
- - Bump @fluentui/react to v8.14.7 ([PR #18102](https://github.com/microsoft/fluentui/pull/18102) by tristan.watanabe@gmail.com)
46
-
47
- ## [1.0.0-beta.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.93)
48
-
49
- Wed, 12 May 2021 07:36:20 GMT
50
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.92..@fluentui/react-tabs_v1.0.0-beta.93)
51
-
52
- ### Patches
53
-
54
- - Bump @fluentui/react to v8.14.6 ([PR #18127](https://github.com/microsoft/fluentui/pull/18127) by oliver.webb@starleaf.com)
55
-
56
- ## [1.0.0-beta.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.92)
57
-
58
- Mon, 10 May 2021 07:36:07 GMT
59
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.91..@fluentui/react-tabs_v1.0.0-beta.92)
14
+ - Added styles to support future overflow calcs ([PR #22548](https://github.com/microsoft/fluentui/pull/22548) by gcox@microsoft.com)
15
+ - Bump @fluentui/react-tabster to v9.0.0-rc.7 ([PR #22601](https://github.com/microsoft/fluentui/pull/22601) by beachball)
60
16
 
61
- ### Patches
17
+ ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v9.0.0-beta.9)
62
18
 
63
- - Bump @fluentui/react to v8.14.5 ([PR #18042](https://github.com/microsoft/fluentui/pull/18042) by cujurgen@microsoft.com)
64
-
65
- ## [1.0.0-beta.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.91)
66
-
67
- Fri, 07 May 2021 07:34:34 GMT
68
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.90..@fluentui/react-tabs_v1.0.0-beta.91)
69
-
70
- ### Patches
71
-
72
- - Bump @fluentui/react to v8.14.4 ([PR #17810](https://github.com/microsoft/fluentui/pull/17810) by anhw@microsoft.com)
73
-
74
- ## [1.0.0-beta.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.90)
75
-
76
- Thu, 06 May 2021 07:35:51 GMT
77
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.89..@fluentui/react-tabs_v1.0.0-beta.90)
78
-
79
- ### Patches
80
-
81
- - Bump @fluentui/react to v8.14.3 ([PR #18069](https://github.com/microsoft/fluentui/pull/18069) by tristan.watanabe@gmail.com)
82
-
83
- ## [1.0.0-beta.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.89)
84
-
85
- Tue, 04 May 2021 07:36:35 GMT
86
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.88..@fluentui/react-tabs_v1.0.0-beta.89)
87
-
88
- ### Patches
89
-
90
- - Bump @fluentui/react to v8.14.1 ([PR #17925](https://github.com/microsoft/fluentui/pull/17925) by tristan.watanabe@gmail.com)
91
-
92
- ## [1.0.0-beta.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.88)
93
-
94
- Fri, 30 Apr 2021 07:42:23 GMT
95
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.87..@fluentui/react-tabs_v1.0.0-beta.88)
96
-
97
- ### Patches
98
-
99
- - Bump @fluentui/react to v8.14.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by jdh@microsoft.com)
100
- - Bump @fluentui/utilities to v8.1.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
101
- - Bump @fluentui/react-hooks to v8.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
102
- - Bump @fluentui/style-utilities to v8.1.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
103
- - Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
104
- - Bump @fluentui/react-conformance to v0.3.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
105
- - Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
19
+ Tue, 19 Apr 2022 19:16:56 GMT
20
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v9.0.0-beta.8..@fluentui/react-tabs_v9.0.0-beta.9)
106
21
 
107
22
  ### Changes
108
23
 
109
- - Upgrade to ts 4.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
110
-
111
- ## [1.0.0-beta.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.87)
112
-
113
- Wed, 28 Apr 2021 07:32:59 GMT
114
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.86..@fluentui/react-tabs_v1.0.0-beta.87)
115
-
116
- ### Patches
117
-
118
- - Bump @fluentui/react to v8.13.1 ([PR #17878](https://github.com/microsoft/fluentui/pull/17878) by shi.cheng@microsoft.com)
119
-
120
- ## [1.0.0-beta.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.86)
121
-
122
- Tue, 27 Apr 2021 07:34:03 GMT
123
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.85..@fluentui/react-tabs_v1.0.0-beta.86)
124
-
125
- ### Patches
126
-
127
- - Bump @fluentui/react to v8.13.0 ([PR #16874](https://github.com/microsoft/fluentui/pull/16874) by jolamusg@microsoft.com)
128
-
129
- ## [1.0.0-beta.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.85)
130
-
131
- Mon, 26 Apr 2021 07:34:31 GMT
132
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.84..@fluentui/react-tabs_v1.0.0-beta.85)
133
-
134
- ### Patches
135
-
136
- - Bump @fluentui/react to v8.12.1 ([PR #17933](https://github.com/microsoft/fluentui/pull/17933) by sarah.higley@microsoft.com)
137
-
138
- ## [1.0.0-beta.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.84)
139
-
140
- Fri, 23 Apr 2021 07:37:10 GMT
141
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.83..@fluentui/react-tabs_v1.0.0-beta.84)
142
-
143
- ### Patches
144
-
145
- - Bump @fluentui/eslint-plugin to v1.1.1 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
146
- - Bump @fluentui/react to v8.12.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
147
- - Bump @fluentui/utilities to v8.0.5 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
148
- - Bump @fluentui/react-hooks to v8.1.3 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
149
- - Bump @fluentui/style-utilities to v8.0.5 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
150
- - Bump @fluentui/react-conformance to v0.2.6 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
151
- - Bump @fluentui/scripts to v1.0.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
152
-
153
- ## [1.0.0-beta.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.83)
154
-
155
- Fri, 16 Apr 2021 07:32:08 GMT
156
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.82..@fluentui/react-tabs_v1.0.0-beta.83)
157
-
158
- ### Patches
159
-
160
- - Bump @fluentui/react to v8.11.0 ([PR #17831](https://github.com/microsoft/fluentui/pull/17831) by Humberto.Morimoto@microsoft.com)
161
-
162
- ## [1.0.0-beta.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.82)
163
-
164
- Wed, 14 Apr 2021 07:34:12 GMT
165
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.81..@fluentui/react-tabs_v1.0.0-beta.82)
166
-
167
- ### Patches
168
-
169
- - Bump @fluentui/react to v8.10.1 ([PR #17807](https://github.com/microsoft/fluentui/pull/17807) by miclo@microsoft.com)
170
-
171
- ## [1.0.0-beta.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.81)
172
-
173
- Tue, 13 Apr 2021 14:55:56 GMT
174
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.80..@fluentui/react-tabs_v1.0.0-beta.81)
175
-
176
- ### Patches
177
-
178
- - Bump @fluentui/react to v8.10.0 ([PR #17716](https://github.com/microsoft/fluentui/pull/17716) by jaredi@microsoft.com)
179
- - Bump @fluentui/utilities to v8.0.4 ([PR #17716](https://github.com/microsoft/fluentui/pull/17716) by jaredi@microsoft.com)
180
- - Bump @fluentui/react-hooks to v8.1.2 ([PR #17716](https://github.com/microsoft/fluentui/pull/17716) by jaredi@microsoft.com)
181
- - Bump @fluentui/style-utilities to v8.0.4 ([PR #17716](https://github.com/microsoft/fluentui/pull/17716) by jaredi@microsoft.com)
182
-
183
- ## [1.0.0-beta.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.80)
184
-
185
- Sat, 10 Apr 2021 03:23:10 GMT
186
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.79..@fluentui/react-tabs_v1.0.0-beta.80)
187
-
188
- ### Patches
189
-
190
- - Bump @fluentui/react to v8.9.4 ([PR #17683](https://github.com/microsoft/fluentui/pull/17683) by tristan.watanabe@gmail.com)
191
-
192
- ## [1.0.0-beta.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.79)
193
-
194
- Fri, 09 Apr 2021 23:42:49 GMT
195
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.78..@fluentui/react-tabs_v1.0.0-beta.79)
196
-
197
- ### Patches
198
-
199
- - Bump @fluentui/react to v8.9.3 ([PR #17739](https://github.com/microsoft/fluentui/pull/17739) by tristan.watanabe@gmail.com)
200
-
201
- ## [1.0.0-beta.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.78)
202
-
203
- Thu, 08 Apr 2021 07:33:06 GMT
204
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.77..@fluentui/react-tabs_v1.0.0-beta.78)
205
-
206
- ### Patches
207
-
208
- - Bump @fluentui/react to v8.9.2 ([PR #17733](https://github.com/microsoft/fluentui/pull/17733) by joschect@microsoft.com)
209
-
210
- ## [1.0.0-beta.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.77)
24
+ - Set disabled tab background to transparent ([PR #22342](https://github.com/microsoft/fluentui/pull/22342) by gcox@microsoft.com)
25
+ - Add static classnames to Tabs ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
26
+ - chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
27
+ - Removing star exports. ([PR #22151](https://github.com/microsoft/fluentui/pull/22151) by Humberto.Morimoto@microsoft.com)
28
+ - fix missing dependencies and lint warnings ([PR #21924](https://github.com/microsoft/fluentui/pull/21924) by martinhochel@microsoft.com)
29
+ - Fix subtle style on tabs ([PR #22439](https://github.com/microsoft/fluentui/pull/22439) by gcox@microsoft.com)
30
+ - react-tabs fit and finish ([PR #22225](https://github.com/microsoft/fluentui/pull/22225) by gcox@microsoft.com)
31
+ - Set subtle tab background to subtle background tokens ([PR #22346](https://github.com/microsoft/fluentui/pull/22346) by gcox@microsoft.com)
32
+ - Updated to decrease gap of small vertical tab per figma change ([PR #22335](https://github.com/microsoft/fluentui/pull/22335) by gcox@microsoft.com)
33
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
34
+ - Bump @fluentui/react-tabster to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
35
+ - Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
36
+ - Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
37
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
211
38
 
212
- Wed, 07 Apr 2021 08:04:03 GMT
213
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.76..@fluentui/react-tabs_v1.0.0-beta.77)
39
+ ## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v9.0.0-beta.8)
214
40
 
215
- ### Patches
216
-
217
- - Bump @fluentui/react to v8.9.1 ([PR #17603](https://github.com/microsoft/fluentui/pull/17603) by vapullur@microsoft.com)
218
-
219
- ## [1.0.0-beta.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.76)
220
-
221
- Tue, 06 Apr 2021 07:34:10 GMT
222
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.75..@fluentui/react-tabs_v1.0.0-beta.76)
223
-
224
- ### Patches
225
-
226
- - Bump @fluentui/react to v8.9.0 ([PR #17698](https://github.com/microsoft/fluentui/pull/17698) by tristan.watanabe@gmail.com)
227
-
228
- ## [1.0.0-beta.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.75)
229
-
230
- Thu, 01 Apr 2021 07:33:24 GMT
231
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.74..@fluentui/react-tabs_v1.0.0-beta.75)
232
-
233
- ### Patches
234
-
235
- - Bump @fluentui/react to v8.8.0 ([PR #17632](https://github.com/microsoft/fluentui/pull/17632) by miclo@microsoft.com)
236
-
237
- ## [1.0.0-beta.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.74)
238
-
239
- Wed, 31 Mar 2021 00:53:43 GMT
240
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.73..@fluentui/react-tabs_v1.0.0-beta.74)
241
-
242
- ### Patches
243
-
244
- - Bump @fluentui/eslint-plugin to v1.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
245
- - Bump @fluentui/react to v8.7.1 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
246
- - Bump @fluentui/style-utilities to v8.0.3 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
247
- - Bump @fluentui/react-conformance to v0.2.5 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
248
- - Bump @fluentui/react-hooks to v8.1.1 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
249
- - Bump @fluentui/scripts to v1.0.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
250
- - Bump @fluentui/utilities to v8.0.3 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
251
-
252
- ## [1.0.0-beta.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.73)
253
-
254
- Tue, 30 Mar 2021 07:34:45 GMT
255
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.72..@fluentui/react-tabs_v1.0.0-beta.73)
256
-
257
- ### Patches
258
-
259
- - Bump @fluentui/react to v8.7.0 ([PR #17586](https://github.com/microsoft/fluentui/pull/17586) by bsunderhus@microsoft.com)
41
+ Fri, 04 Mar 2022 05:17:30 GMT
42
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v9.0.0-beta.7..@fluentui/react-tabs_v9.0.0-beta.8)
260
43
 
261
44
  ### Changes
262
45
 
263
- - chore: restore "sideEffects" to enable treeshaking ([PR #17584](https://github.com/microsoft/fluentui/pull/17584) by olfedias@microsoft.com)
264
-
265
- ## [1.0.0-beta.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.72)
266
-
267
- Thu, 25 Mar 2021 07:33:24 GMT
268
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.71..@fluentui/react-tabs_v1.0.0-beta.72)
269
-
270
- ### Patches
271
-
272
- - Bump @fluentui/react to v8.6.1 ([PR #17507](https://github.com/microsoft/fluentui/pull/17507) by Humberto.Morimoto@microsoft.com)
273
-
274
- ## [1.0.0-beta.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.71)
275
-
276
- Wed, 24 Mar 2021 07:32:21 GMT
277
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.70..@fluentui/react-tabs_v1.0.0-beta.71)
278
-
279
- ### Patches
280
-
281
- - Bump @fluentui/react to v8.6.0 ([PR #17480](https://github.com/microsoft/fluentui/pull/17480) by anhw@microsoft.com)
282
-
283
- ## [1.0.0-beta.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.70)
284
-
285
- Mon, 22 Mar 2021 07:34:09 GMT
286
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.69..@fluentui/react-tabs_v1.0.0-beta.70)
287
-
288
- ### Patches
289
-
290
- - Bump @fluentui/react to v8.5.1 ([PR #17506](https://github.com/microsoft/fluentui/pull/17506) by behowell@microsoft.com)
291
-
292
- ## [1.0.0-beta.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.69)
293
-
294
- Thu, 18 Mar 2021 20:15:34 GMT
295
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.68..@fluentui/react-tabs_v1.0.0-beta.69)
296
-
297
- ### Patches
298
-
299
- - Bump @fluentui/react to v8.5.0 ([PR #17267](https://github.com/microsoft/fluentui/pull/17267) by tristan.watanabe@gmail.com)
300
-
301
- ## [1.0.0-beta.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.68)
302
-
303
- Thu, 18 Mar 2021 07:33:22 GMT
304
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.67..@fluentui/react-tabs_v1.0.0-beta.68)
305
-
306
- ### Patches
307
-
308
- - Bump @fluentui/react to v8.4.0 ([PR #17467](https://github.com/microsoft/fluentui/pull/17467) by Humberto.Morimoto@microsoft.com)
309
- - Bump @fluentui/react-hooks to v8.1.0 ([PR #17467](https://github.com/microsoft/fluentui/pull/17467) by Humberto.Morimoto@microsoft.com)
310
-
311
- ## [1.0.0-beta.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.67)
312
-
313
- Wed, 17 Mar 2021 07:35:44 GMT
314
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.66..@fluentui/react-tabs_v1.0.0-beta.67)
46
+ - Adding explicit export maps on all consumer packages for FUIR 8 and 9. ([PR #21508](https://github.com/microsoft/fluentui/pull/21508) by dzearing@microsoft.com)
47
+ - Bump @fluentui/react-tabster to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
48
+ - Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
49
+ - Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
50
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
315
51
 
316
- ### Patches
52
+ ## [9.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v9.0.0-beta.7)
317
53
 
318
- - Bump @fluentui/react to v8.3.2 ([PR #17315](https://github.com/microsoft/fluentui/pull/17315) by tristan.watanabe@gmail.com)
319
-
320
- ## [1.0.0-beta.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.66)
321
-
322
- Tue, 16 Mar 2021 07:32:44 GMT
323
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.65..@fluentui/react-tabs_v1.0.0-beta.66)
324
-
325
- ### Patches
326
-
327
- - Bump @fluentui/react to v8.3.1 ([PR #17405](https://github.com/microsoft/fluentui/pull/17405) by sarah.higley@microsoft.com)
328
- - Bump @fluentui/react-conformance to v0.2.4 ([PR #17418](https://github.com/microsoft/fluentui/pull/17418) by elcraig@microsoft.com)
329
-
330
- ## [1.0.0-beta.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.65)
331
-
332
- Mon, 15 Mar 2021 07:36:20 GMT
333
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.64..@fluentui/react-tabs_v1.0.0-beta.65)
54
+ Tue, 01 Mar 2022 02:17:39 GMT
55
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v9.0.0-beta.6..@fluentui/react-tabs_v9.0.0-beta.7)
334
56
 
335
57
  ### Changes
336
58
 
337
- - Remove set-version references ([PR #17381](https://github.com/microsoft/fluentui/pull/17381) by elcraig@microsoft.com)
338
-
339
- ## [1.0.0-beta.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.64)
340
-
341
- Fri, 12 Mar 2021 20:04:27 GMT
342
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.63..@fluentui/react-tabs_v1.0.0-beta.64)
343
-
344
- ### Patches
345
-
346
- - Bump @fluentui/react to v8.2.1 ([PR #17373](https://github.com/microsoft/fluentui/pull/17373) by elcraig@microsoft.com)
347
- - Bump @fluentui/react-conformance to v0.2.3 ([PR #17161](https://github.com/microsoft/fluentui/pull/17161) by martinhochel@microsoft.com)
348
-
349
- ## [1.0.0-beta.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.63)
350
-
351
- Thu, 11 Mar 2021 07:33:03 GMT
352
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.62..@fluentui/react-tabs_v1.0.0-beta.63)
353
-
354
- ### Patches
355
-
356
- - Bump @fluentui/react to v8.2.0 ([PR #17347](https://github.com/microsoft/fluentui/pull/17347) by elcraig@microsoft.com)
357
-
358
- ## [1.0.0-beta.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.62)
359
-
360
- Wed, 10 Mar 2021 07:34:39 GMT
361
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.61..@fluentui/react-tabs_v1.0.0-beta.62)
362
-
363
- ### Patches
364
-
365
- - Bump @fluentui/react to v8.1.8 ([PR #17316](https://github.com/microsoft/fluentui/pull/17316) by dzearing@microsoft.com)
366
-
367
- ## [1.0.0-beta.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.61)
368
-
369
- Tue, 09 Mar 2021 07:32:29 GMT
370
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.60..@fluentui/react-tabs_v1.0.0-beta.61)
371
-
372
- ### Patches
373
-
374
- - Bump @fluentui/react to v8.1.7 ([PR #17299](https://github.com/microsoft/fluentui/pull/17299) by sarah.higley@microsoft.com)
375
-
376
- ## [1.0.0-beta.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.60)
377
-
378
- Sun, 07 Mar 2021 23:34:51 GMT
379
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.59..@fluentui/react-tabs_v1.0.0-beta.60)
380
-
381
- ### Patches
382
-
383
- - Bump @fluentui/react to v8.1.6 ([PR #17296](https://github.com/microsoft/fluentui/pull/17296) by miclo@microsoft.com)
384
-
385
- ## [1.0.0-beta.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.59)
386
-
387
- Wed, 03 Mar 2021 07:45:18 GMT
388
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.58..@fluentui/react-tabs_v1.0.0-beta.59)
389
-
390
- ### Patches
391
-
392
- - Bump @fluentui/react to v8.1.4 ([PR #17252](https://github.com/microsoft/fluentui/pull/17252) by Humberto.Morimoto@microsoft.com)
393
-
394
- ## [1.0.0-beta.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.58)
395
-
396
- Wed, 03 Mar 2021 00:10:09 GMT
397
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.57..@fluentui/react-tabs_v1.0.0-beta.58)
398
-
399
- ### Patches
400
-
401
- - Bump @fluentui/utilities to v8.0.2 ([PR #17246](https://github.com/microsoft/fluentui/pull/17246) by elcraig@microsoft.com)
402
- - Bump @fluentui/style-utilities to v8.0.2 ([PR #17246](https://github.com/microsoft/fluentui/pull/17246) by elcraig@microsoft.com)
403
- - Bump @fluentui/common-styles to v1.0.2 ([PR #17246](https://github.com/microsoft/fluentui/pull/17246) by elcraig@microsoft.com)
404
- - Bump @fluentui/react to v8.1.3 ([PR #17226](https://github.com/microsoft/fluentui/pull/17226) by tristan.watanabe@gmail.com)
405
- - Bump @fluentui/react-hooks to v8.0.2 ([PR #17246](https://github.com/microsoft/fluentui/pull/17246) by elcraig@microsoft.com)
406
-
407
- ## [1.0.0-beta.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.57)
408
-
409
- Tue, 02 Mar 2021 07:24:27 GMT
410
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.56..@fluentui/react-tabs_v1.0.0-beta.57)
411
-
412
- ### Patches
413
-
414
- - Bump @fluentui/react to v8.1.2 ([PR #17001](https://github.com/microsoft/fluentui/pull/17001) by feodor@appveyor.com)
59
+ - fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
60
+ - Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
61
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
62
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
415
63
 
416
- ## [1.0.0-beta.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.56)
64
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v9.0.0-beta.6)
417
65
 
418
- Mon, 01 Mar 2021 07:20:46 GMT
419
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.55..@fluentui/react-tabs_v1.0.0-beta.56)
420
-
421
- ### Patches
422
-
423
- - Bump @fluentui/react to v8.1.1 ([PR #16599](https://github.com/microsoft/fluentui/pull/16599) by hantatsang@gmail.com)
424
-
425
- ## [1.0.0-beta.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.55)
426
-
427
- Fri, 26 Feb 2021 01:16:27 GMT
428
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.54..@fluentui/react-tabs_v1.0.0-beta.55)
429
-
430
- ### Patches
431
-
432
- - Bump @fluentui/common-styles to v1.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
433
- - Bump @fluentui/react to v8.1.0 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
434
- - Bump @fluentui/eslint-plugin to v1.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
435
- - Bump @fluentui/react-conformance to v0.2.2 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
436
- - Bump @fluentui/scripts to v1.0.0 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
437
- - Bump @fluentui/react-hooks to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
438
- - Bump @fluentui/set-version to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
439
- - Bump @fluentui/style-utilities to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
440
- - Bump @fluentui/utilities to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
441
-
442
- ### Changes
443
-
444
- - Update references to major-bumped packages ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
445
-
446
- ## [1.0.0-beta.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.54)
447
-
448
- Thu, 25 Feb 2021 20:16:39 GMT
449
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.53..@fluentui/react-tabs_v1.0.0-beta.54)
450
-
451
- ### Changes
452
-
453
- - Bump @fluentui/react to v8.0.0-beta.63 ([PR #16836](https://github.com/microsoft/fluentui/pull/16836) by sarah.higley@microsoft.com)
454
-
455
- ## [1.0.0-beta.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.53)
456
-
457
- Thu, 25 Feb 2021 01:15:27 GMT
458
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.52..@fluentui/react-tabs_v1.0.0-beta.53)
459
-
460
- ### Patches
461
-
462
- - Bump @fluentui/react-conformance to v0.2.1 ([PR #17118](https://github.com/microsoft/fluentui/pull/17118) by altinokd@microsoft.com)
463
-
464
- ## [1.0.0-beta.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.52)
465
-
466
- Wed, 24 Feb 2021 07:19:56 GMT
467
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.51..@fluentui/react-tabs_v1.0.0-beta.52)
66
+ Fri, 18 Feb 2022 13:35:35 GMT
67
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v9.0.0-beta.4..@fluentui/react-tabs_v9.0.0-beta.6)
468
68
 
469
69
  ### Changes
470
70
 
471
- - Bump @fluentui/react to v8.0.0-beta.61 ([PR #16854](https://github.com/microsoft/fluentui/pull/16854) by shi.cheng@microsoft.com)
71
+ - chore: Force bump all v9 packages to release correct source maps ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
72
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
73
+ - Publish initial version ([PR #21763](https://github.com/microsoft/fluentui/pull/21763) by gcox@microsoft.com)
74
+ - Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
75
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
76
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
77
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
472
78
 
473
- ## [1.0.0-beta.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.51)
79
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v9.0.0-beta.4)
474
80
 
475
- Wed, 24 Feb 2021 00:05:29 GMT
476
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.50..@fluentui/react-tabs_v1.0.0-beta.51)
81
+ Thu, 10 Feb 2022 08:52:26 GMT
477
82
 
478
83
  ### Changes
479
84
 
480
- - Bump @fluentui/react to v8.0.0-beta.60 ([PR #17033](https://github.com/microsoft/fluentui/pull/17033) by martinhochel@microsoft.com)
481
-
482
- ## [1.0.0-beta.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.50)
483
-
484
- Mon, 22 Feb 2021 12:26:22 GMT
485
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.49..@fluentui/react-tabs_v1.0.0-beta.50)
486
-
487
- ### Changes
488
-
489
- - Bump @fluentui/react to v8.0.0-beta.59 ([PR #17066](https://github.com/microsoft/fluentui/pull/17066) by elcraig@microsoft.com)
490
-
491
- ## [1.0.0-beta.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.49)
492
-
493
- Thu, 18 Feb 2021 19:38:50 GMT
494
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.48..@fluentui/react-tabs_v1.0.0-beta.49)
495
-
496
- ### Changes
497
-
498
- - Allow React 17 in peerDependencies ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
499
-
500
- ## [1.0.0-beta.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.48)
501
-
502
- Thu, 18 Feb 2021 12:27:34 GMT
503
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.47..@fluentui/react-tabs_v1.0.0-beta.48)
504
-
505
- ### Changes
506
-
507
- - Bump @fluentui/react-hooks to v8.0.0-beta.13 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
508
-
509
- ## [1.0.0-beta.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.47)
510
-
511
- Wed, 17 Feb 2021 12:21:39 GMT
512
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.46..@fluentui/react-tabs_v1.0.0-beta.47)
513
-
514
- ### Changes
515
-
516
- - add labels to calendar tables, date header button, and tweak label wording for conciseness ([PR #16855](https://github.com/microsoft/fluentui/pull/16855) by sarah.higley@microsoft.com)
517
-
518
- ## [1.0.0-beta.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.46)
519
-
520
- Mon, 15 Feb 2021 12:22:00 GMT
521
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.45..@fluentui/react-tabs_v1.0.0-beta.46)
522
-
523
- ### Changes
524
-
525
- - Bump @fluentui/react-hooks to v8.0.0-beta.12 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
526
-
527
- ## [1.0.0-beta.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.45)
528
-
529
- Fri, 12 Feb 2021 12:26:20 GMT
530
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.44..@fluentui/react-tabs_v1.0.0-beta.45)
531
-
532
- ### Changes
533
-
534
- - Bump @fluentui/react to v8.0.0-beta.54 ([PR #16849](https://github.com/microsoft/fluentui/pull/16849) by tristan.watanabe@gmail.com)
535
-
536
- ## [1.0.0-beta.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.44)
537
-
538
- Thu, 11 Feb 2021 00:58:10 GMT
539
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.43..@fluentui/react-tabs_v1.0.0-beta.44)
540
-
541
- ### Changes
542
-
543
- - Remove compat Button imports ([PR #16895](https://github.com/microsoft/fluentui/pull/16895) by elcraig@microsoft.com)
544
-
545
- ## [1.0.0-beta.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.43)
546
-
547
- Wed, 10 Feb 2021 12:20:53 GMT
548
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.42..@fluentui/react-tabs_v1.0.0-beta.43)
549
-
550
- ### Changes
551
-
552
- - Bump @fluentui/react to v8.0.0-beta.52 ([PR #16873](https://github.com/microsoft/fluentui/pull/16873) by tristan.watanabe@gmail.com)
553
-
554
- ## [1.0.0-beta.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.42)
555
-
556
- Tue, 09 Feb 2021 12:24:19 GMT
557
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.41..@fluentui/react-tabs_v1.0.0-beta.42)
558
-
559
- ### Changes
560
-
561
- - Combine react-internal back into react, and update references ([PR #16832](https://github.com/microsoft/fluentui/pull/16832) by elcraig@microsoft.com)
562
-
563
- ## [1.0.0-beta.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.41)
564
-
565
- Tue, 09 Feb 2021 00:56:52 GMT
566
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.40..@fluentui/react-tabs_v1.0.0-beta.41)
567
-
568
- ### Changes
569
-
570
- - Bump @fluentui/react-internal to v8.0.0-beta.44 ([PR #16835](https://github.com/microsoft/fluentui/pull/16835) by ololubek@microsoft.com)
571
-
572
- ## [1.0.0-beta.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.39)
573
-
574
- Mon, 01 Feb 2021 12:23:48 GMT
575
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.37..@fluentui/react-tabs_v1.0.0-beta.39)
576
-
577
- ### Changes
578
-
579
- - Remove react-theme-provider exports from react-tabs. ([PR #16698](https://github.com/microsoft/fluentui/pull/16698) by xgao@microsoft.com)
580
- - Moving Pivot from react-tabs back to react-internal. ([PR #16701](https://github.com/microsoft/fluentui/pull/16701) by humbertomakotomorimoto@gmail.com)
581
-
582
- ## [1.0.0-beta.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.37)
583
-
584
- Thu, 28 Jan 2021 12:25:56 GMT
585
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.35..@fluentui/react-tabs_v1.0.0-beta.37)
586
-
587
- ### Changes
588
-
589
- - Updating to webpack 5, latest typings, latest loaders and plugins. ([PR #16447](https://github.com/microsoft/fluentui/pull/16447) by dzearing@microsoft.com)
590
- - Clean up some prop comments and deprecated messages ([PR #16555](https://github.com/microsoft/fluentui/pull/16555) by elcraig@microsoft.com)
591
- - Update high contrast to support forced colors ([PR #16595](https://github.com/microsoft/fluentui/pull/16595) by sareiff@microsoft.com)
592
-
593
- ## [1.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.35)
594
-
595
- Tue, 26 Jan 2021 12:33:19 GMT
596
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.33..@fluentui/react-tabs_v1.0.0-beta.35)
597
-
598
- ### Changes
599
-
600
- - Remove doNotLayer from Pivot/Tabs overflow menu ([PR #16596](https://github.com/microsoft/fluentui/pull/16596) by behowell@microsoft.com)
601
-
602
- ## [1.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.33)
603
-
604
- Thu, 21 Jan 2021 12:36:12 GMT
605
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.32..@fluentui/react-tabs_v1.0.0-beta.33)
606
-
607
- ### Changes
608
-
609
- - Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
610
-
611
- ## [1.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.7)
612
-
613
- Tue, 03 Nov 2020 12:32:23 GMT
614
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.6..@fluentui/react-tabs_v1.0.0-beta.7)
615
-
616
- ### Changes
617
-
618
- - Remove abandoned scss-based Pivot from react-tabs/next folder ([PR #15807](https://github.com/microsoft/fluentui/pull/15807) by behowell@microsoft.com)
619
-
620
- ## [1.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.6)
621
-
622
- Mon, 02 Nov 2020 12:32:47 GMT
623
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v1.0.0-beta.0..@fluentui/react-tabs_v1.0.0-beta.6)
624
-
625
- ### Changes
626
-
627
- - Create the Tabs component as a renamed clone of the Pivot component ([PR #15782](https://github.com/microsoft/fluentui/pull/15782) by behowell@microsoft.com)
628
-
629
- ## [1.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v1.0.0-beta.0)
630
-
631
- Fri, 23 Oct 2020 03:26:15 GMT
632
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.6.8..@fluentui/react-tabs_v1.0.0-beta.0)
633
-
634
- ### Changes
635
-
636
- - Pivot overflow: fix scrollbars appearing when the window is just barely wide enough to show all tabs ([PR #15293](https://github.com/microsoft/fluentui/pull/15293) by behowell@microsoft.com)
637
- - Rename office-ui-fabric-react package and update references ([PR #15271](https://github.com/microsoft/fluentui/pull/15271) by elcraig@microsoft.com)
638
- - Remove unneeded package dependencies. ([PR #15456](https://github.com/microsoft/fluentui/pull/15456) by xgao@microsoft.com)
639
- - Removing findDOMNode usage from Pivot within react-tabs. ([PR #15558](https://github.com/microsoft/fluentui/pull/15558) by czearing@outlook.com)
640
- - Rename @uifabric/styling to @fluentui/style-utilities ([PR #15567](https://github.com/microsoft/fluentui/pull/15567) by elcraig@microsoft.com)
641
- - Fix check for ResizeObserver, which was causing errors in the testing framework @testing-library/react ([PR #15572](https://github.com/microsoft/fluentui/pull/15572) by behowell@microsoft.com)
642
- - Updating imports for Button component to import from the compat folder. ([PR #15576](https://github.com/microsoft/fluentui/pull/15576) by humbertomakotomorimoto@gmail.com)
643
- - Rename @uifabric/icons to @fluentui/font-icons-mdl2 ([PR #15603](https://github.com/microsoft/fluentui/pull/15603) by ololubek@microsoft.com)
644
- - Rename @uifabric/set-version to @fluentui/set-version ([PR #15616](https://github.com/microsoft/fluentui/pull/15616) by ololubek@microsoft.com)
645
- - Rename @uifabric/react-hooks to @fluentui/react-hooks & @uifabric/utilities to @fluentui/utilities ([PR #15629](https://github.com/microsoft/fluentui/pull/15629) by ololubek@microsoft.com)
646
-
647
- ## [0.6.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.6.8)
648
-
649
- Fri, 25 Sep 2020 12:25:17 GMT
650
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.6.7..@fluentui/react-tabs_v0.6.8)
651
-
652
- ### Patches
653
-
654
- - Moving examples to @fluentui/examples package. ([PR #15132](https://github.com/microsoft/fluentui/pull/15132) by humbertomakotomorimoto@gmail.com)
655
-
656
- ## [0.6.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.6.7)
657
-
658
- Thu, 24 Sep 2020 00:46:56 GMT
659
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.6.6..@fluentui/react-tabs_v0.6.7)
660
-
661
- ### Patches
662
-
663
- - Fix HC styling for pivot tabs to show text when selected ([PR #15166](https://github.com/microsoft/fluentui/pull/15166) by ololubek@microsoft.com)
664
-
665
- ## [0.6.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.6.5)
666
-
667
- Tue, 22 Sep 2020 12:25:45 GMT
668
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.6.0..@fluentui/react-tabs_v0.6.5)
669
-
670
- ### Patches
671
-
672
- - Clean up comments for defaultSelectedKey. ([PR #15122](https://github.com/microsoft/fluentui/pull/15122) by xgao@microsoft.com)
673
-
674
- ## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.6.0)
675
-
676
- Wed, 16 Sep 2020 12:27:22 GMT
677
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.5.11..@fluentui/react-tabs_v0.6.0)
678
-
679
- ### Minor changes
680
-
681
- - Add missing ref prop typing. ([PR #15027](https://github.com/microsoft/fluentui/pull/15027) by xgao@microsoft.com)
682
-
683
- ## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.4.0)
684
-
685
- Thu, 27 Aug 2020 12:36:50 GMT
686
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.2.14..@fluentui/react-tabs_v0.4.0)
687
-
688
- ### Minor changes
689
-
690
- - Update to use merge-styles instead of scss; move scss code to next folder. ([PR #14725](https://github.com/microsoft/fluentui/pull/14725) by xgao@microsoft.com)
691
-
692
- ## [0.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.2.14)
693
-
694
- Tue, 18 Aug 2020 07:58:00 GMT
695
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.2.11..@fluentui/react-tabs_v0.2.14)
696
-
697
- ### Patches
698
-
699
- - fix publishing by syncing packages (#12715) ([PR #14566](https://github.com/microsoft/fluentui/pull/14566) by kchau@microsoft.com)
700
-
701
- ## [0.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.2.11)
702
-
703
- Wed, 12 Aug 2020 18:34:18 GMT
704
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.2.5..@fluentui/react-tabs_v0.2.11)
705
-
706
- ### Patches
707
-
708
- - update ThemeProvider to support v7 theme ([PR #14398](https://github.com/microsoft/fluentui/pull/14398) by xgao@microsoft.com)
709
-
710
- ## [0.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.2.4)
711
-
712
- Tue, 04 Aug 2020 12:42:32 GMT
713
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.2.3..@fluentui/react-tabs_v0.2.4)
714
-
715
- ### Patches
716
-
717
- - update snapshots ([PR #14273](https://github.com/microsoft/fluentui/pull/14273) by ololubek@microsoft.com)
718
-
719
- ## [0.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.2.3)
720
-
721
- Mon, 03 Aug 2020 12:45:42 GMT
722
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.2.2..@fluentui/react-tabs_v0.2.3)
723
-
724
- ### Patches
725
-
726
- - update snapshots ([PR #14215](https://github.com/microsoft/fluentui/pull/14215) by ololubek@microsoft.com)
727
-
728
- ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.2.0)
729
-
730
- Mon, 27 Jul 2020 12:42:21 GMT
731
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.1.2..@fluentui/react-tabs_v0.2.0)
732
-
733
- ### Minor changes
734
-
735
- - Export ThemeProvider, and update README to mention the ThemeProvider that's required for proper styling ([PR #14187](https://github.com/microsoft/fluentui/pull/14187) by behowell@microsoft.com)
736
-
737
- ## [0.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.1.2)
738
-
739
- Thu, 23 Jul 2020 12:43:51 GMT
740
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabs_v0.1.1..@fluentui/react-tabs_v0.1.2)
741
-
742
- ### Patches
743
-
744
- - Move shared .scss files to @fluentui/common-styles ([PR #14155](https://github.com/microsoft/fluentui/pull/14155) by behowell@microsoft.com)
745
-
746
- ## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabs_v0.1.1)
747
-
748
- Wed, 22 Jul 2020 12:40:51 GMT
749
-
750
- ### Patches
751
-
752
- - Move Pivot to @fluentui/react-tabs package ([PR #14125](https://github.com/microsoft/fluentui/pull/14125) by behowell@microsoft.com)
85
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
86
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
87
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
88
+ - Bump @fluentui/react-context-selector to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)