@fluentui/react-tabs 1.0.0-beta.99 → 9.0.0-beta.8

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