@fluentui/react-tabs 1.0.0-beta.98 → 9.0.0-beta.11

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 (224) hide show
  1. package/CHANGELOG.json +234 -1765
  2. package/CHANGELOG.md +66 -723
  3. package/README.md +0 -17
  4. package/Spec.md +433 -0
  5. package/dist/index.d.ts +243 -0
  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 +81 -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 +403 -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/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 +61 -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 +6 -0
  74. package/lib-commonjs/components/Tab/index.js +20 -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 +28 -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 +94 -0
  81. package/lib-commonjs/components/Tab/useTab.js.map +1 -0
  82. package/lib-commonjs/components/Tab/useTabAnimatedIndicator.d.ts +5 -0
  83. package/lib-commonjs/components/Tab/useTabAnimatedIndicator.js +148 -0
  84. package/lib-commonjs/components/Tab/useTabAnimatedIndicator.js.map +1 -0
  85. package/lib-commonjs/components/Tab/useTabStyles.d.ts +8 -0
  86. package/lib-commonjs/components/Tab/useTabStyles.js +416 -0
  87. package/lib-commonjs/components/Tab/useTabStyles.js.map +1 -0
  88. package/lib-commonjs/components/TabList/TabList.d.ts +6 -0
  89. package/lib-commonjs/components/TabList/TabList.js +29 -0
  90. package/lib-commonjs/components/TabList/TabList.js.map +1 -0
  91. package/lib-commonjs/components/TabList/TabList.types.d.ts +104 -0
  92. package/lib-commonjs/components/TabList/TabList.types.js +6 -0
  93. package/lib-commonjs/components/TabList/TabList.types.js.map +1 -0
  94. package/lib-commonjs/components/TabList/TabListContext.d.ts +3 -0
  95. package/lib-commonjs/components/TabList/TabListContext.js +31 -0
  96. package/lib-commonjs/components/TabList/TabListContext.js.map +1 -0
  97. package/lib-commonjs/components/TabList/index.d.ts +5 -0
  98. package/lib-commonjs/components/TabList/index.js +18 -0
  99. package/lib-commonjs/components/TabList/index.js.map +1 -0
  100. package/lib-commonjs/components/TabList/renderTabList.d.ts +5 -0
  101. package/lib-commonjs/components/TabList/renderTabList.js +30 -0
  102. package/lib-commonjs/components/TabList/renderTabList.js.map +1 -0
  103. package/lib-commonjs/components/TabList/useTabList.d.ts +12 -0
  104. package/lib-commonjs/components/TabList/useTabList.js +93 -0
  105. package/lib-commonjs/components/TabList/useTabList.js.map +1 -0
  106. package/lib-commonjs/components/TabList/useTabListContextValues.d.ts +2 -0
  107. package/lib-commonjs/components/TabList/useTabListContextValues.js +37 -0
  108. package/lib-commonjs/components/TabList/useTabListContextValues.js.map +1 -0
  109. package/lib-commonjs/components/TabList/useTabListStyles.d.ts +8 -0
  110. package/lib-commonjs/components/TabList/useTabListStyles.js +55 -0
  111. package/lib-commonjs/components/TabList/useTabListStyles.js.map +1 -0
  112. package/lib-commonjs/index.d.ts +4 -1
  113. package/lib-commonjs/index.js +83 -3
  114. package/lib-commonjs/index.js.map +1 -1
  115. package/package.json +25 -21
  116. package/config/api-extractor.json +0 -3
  117. package/config/tests.js +0 -14
  118. package/dist/react-tabs.d.ts +0 -197
  119. package/etc/react-tabs.api.md +0 -104
  120. package/just.config.ts +0 -3
  121. package/lib/Tabs.d.ts +0 -1
  122. package/lib/Tabs.js +0 -2
  123. package/lib/Tabs.js.map +0 -1
  124. package/lib/common/isConformant.d.ts +0 -2
  125. package/lib/common/isConformant.js +0 -9
  126. package/lib/common/isConformant.js.map +0 -1
  127. package/lib/components/Tabs/TabItem.d.ts +0 -6
  128. package/lib/components/Tabs/TabItem.js +0 -18
  129. package/lib/components/Tabs/TabItem.js.map +0 -1
  130. package/lib/components/Tabs/TabItem.types.d.ts +0 -61
  131. package/lib/components/Tabs/TabItem.types.js +0 -2
  132. package/lib/components/Tabs/TabItem.types.js.map +0 -1
  133. package/lib/components/Tabs/Tabs.base.d.ts +0 -3
  134. package/lib/components/Tabs/Tabs.base.js +0 -179
  135. package/lib/components/Tabs/Tabs.base.js.map +0 -1
  136. package/lib/components/Tabs/Tabs.d.ts +0 -8
  137. package/lib/components/Tabs/Tabs.js +0 -12
  138. package/lib/components/Tabs/Tabs.js.map +0 -1
  139. package/lib/components/Tabs/Tabs.styles.d.ts +0 -2
  140. package/lib/components/Tabs/Tabs.styles.js +0 -264
  141. package/lib/components/Tabs/Tabs.styles.js.map +0 -1
  142. package/lib/components/Tabs/Tabs.types.d.ts +0 -113
  143. package/lib/components/Tabs/Tabs.types.js +0 -2
  144. package/lib/components/Tabs/Tabs.types.js.map +0 -1
  145. package/lib/components/Tabs/index.d.ts +0 -5
  146. package/lib/components/Tabs/index.js +0 -6
  147. package/lib/components/Tabs/index.js.map +0 -1
  148. package/lib/utilities/observeResize.d.ts +0 -21
  149. package/lib/utilities/observeResize.js +0 -46
  150. package/lib/utilities/observeResize.js.map +0 -1
  151. package/lib/utilities/useOverflow.d.ts +0 -45
  152. package/lib/utilities/useOverflow.js +0 -126
  153. package/lib/utilities/useOverflow.js.map +0 -1
  154. package/lib-amd/Tabs.d.ts +0 -1
  155. package/lib-amd/Tabs.js +0 -6
  156. package/lib-amd/Tabs.js.map +0 -1
  157. package/lib-amd/common/isConformant.d.ts +0 -2
  158. package/lib-amd/common/isConformant.js +0 -14
  159. package/lib-amd/common/isConformant.js.map +0 -1
  160. package/lib-amd/components/Tabs/TabItem.d.ts +0 -6
  161. package/lib-amd/components/Tabs/TabItem.js +0 -20
  162. package/lib-amd/components/Tabs/TabItem.js.map +0 -1
  163. package/lib-amd/components/Tabs/TabItem.types.d.ts +0 -61
  164. package/lib-amd/components/Tabs/TabItem.types.js +0 -5
  165. package/lib-amd/components/Tabs/TabItem.types.js.map +0 -1
  166. package/lib-amd/components/Tabs/Tabs.base.d.ts +0 -3
  167. package/lib-amd/components/Tabs/Tabs.base.js +0 -176
  168. package/lib-amd/components/Tabs/Tabs.base.js.map +0 -1
  169. package/lib-amd/components/Tabs/Tabs.d.ts +0 -8
  170. package/lib-amd/components/Tabs/Tabs.js +0 -14
  171. package/lib-amd/components/Tabs/Tabs.js.map +0 -1
  172. package/lib-amd/components/Tabs/Tabs.styles.d.ts +0 -2
  173. package/lib-amd/components/Tabs/Tabs.styles.js +0 -267
  174. package/lib-amd/components/Tabs/Tabs.styles.js.map +0 -1
  175. package/lib-amd/components/Tabs/Tabs.types.d.ts +0 -113
  176. package/lib-amd/components/Tabs/Tabs.types.js +0 -5
  177. package/lib-amd/components/Tabs/Tabs.types.js.map +0 -1
  178. package/lib-amd/components/Tabs/index.d.ts +0 -5
  179. package/lib-amd/components/Tabs/index.js +0 -11
  180. package/lib-amd/components/Tabs/index.js.map +0 -1
  181. package/lib-amd/index.d.ts +0 -1
  182. package/lib-amd/index.js +0 -6
  183. package/lib-amd/index.js.map +0 -1
  184. package/lib-amd/utilities/observeResize.d.ts +0 -21
  185. package/lib-amd/utilities/observeResize.js +0 -51
  186. package/lib-amd/utilities/observeResize.js.map +0 -1
  187. package/lib-amd/utilities/useOverflow.d.ts +0 -45
  188. package/lib-amd/utilities/useOverflow.js +0 -128
  189. package/lib-amd/utilities/useOverflow.js.map +0 -1
  190. package/lib-commonjs/Tabs.d.ts +0 -1
  191. package/lib-commonjs/Tabs.js +0 -5
  192. package/lib-commonjs/Tabs.js.map +0 -1
  193. package/lib-commonjs/common/isConformant.d.ts +0 -2
  194. package/lib-commonjs/common/isConformant.js +0 -13
  195. package/lib-commonjs/common/isConformant.js.map +0 -1
  196. package/lib-commonjs/components/Tabs/TabItem.d.ts +0 -6
  197. package/lib-commonjs/components/Tabs/TabItem.js +0 -21
  198. package/lib-commonjs/components/Tabs/TabItem.js.map +0 -1
  199. package/lib-commonjs/components/Tabs/TabItem.types.d.ts +0 -61
  200. package/lib-commonjs/components/Tabs/TabItem.types.js +0 -3
  201. package/lib-commonjs/components/Tabs/TabItem.types.js.map +0 -1
  202. package/lib-commonjs/components/Tabs/Tabs.base.d.ts +0 -3
  203. package/lib-commonjs/components/Tabs/Tabs.base.js +0 -182
  204. package/lib-commonjs/components/Tabs/Tabs.base.js.map +0 -1
  205. package/lib-commonjs/components/Tabs/Tabs.d.ts +0 -8
  206. package/lib-commonjs/components/Tabs/Tabs.js +0 -15
  207. package/lib-commonjs/components/Tabs/Tabs.js.map +0 -1
  208. package/lib-commonjs/components/Tabs/Tabs.styles.d.ts +0 -2
  209. package/lib-commonjs/components/Tabs/Tabs.styles.js +0 -268
  210. package/lib-commonjs/components/Tabs/Tabs.styles.js.map +0 -1
  211. package/lib-commonjs/components/Tabs/Tabs.types.d.ts +0 -113
  212. package/lib-commonjs/components/Tabs/Tabs.types.js +0 -3
  213. package/lib-commonjs/components/Tabs/Tabs.types.js.map +0 -1
  214. package/lib-commonjs/components/Tabs/index.d.ts +0 -5
  215. package/lib-commonjs/components/Tabs/index.js +0 -11
  216. package/lib-commonjs/components/Tabs/index.js.map +0 -1
  217. package/lib-commonjs/utilities/observeResize.d.ts +0 -21
  218. package/lib-commonjs/utilities/observeResize.js +0 -50
  219. package/lib-commonjs/utilities/observeResize.js.map +0 -1
  220. package/lib-commonjs/utilities/useOverflow.d.ts +0 -45
  221. package/lib-commonjs/utilities/useOverflow.js +0 -130
  222. package/lib-commonjs/utilities/useOverflow.js.map +0 -1
  223. package/src/components/Tabs/TabItem.types.ts +0 -69
  224. package/src/components/Tabs/Tabs.types.ts +0 -131
package/CHANGELOG.json CHANGED
@@ -2,1887 +2,356 @@
2
2
  "name": "@fluentui/react-tabs",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 19 May 2021 07:30:20 GMT",
6
- "tag": "@fluentui/react-tabs_v1.0.0-beta.98",
7
- "version": "1.0.0-beta.98",
5
+ "date": "Wed, 04 May 2022 13:24:19 GMT",
6
+ "tag": "@fluentui/react-tabs_v9.0.0-beta.11",
7
+ "version": "9.0.0-beta.11",
8
8
  "comments": {
9
- "patch": [
9
+ "prerelease": [
10
10
  {
11
- "comment": "Bump @fluentui/react-conformance to v0.3.1",
12
- "author": "martinhochel@microsoft.com",
13
- "commit": "616b4b7c381c757871e8a590564d8eff7337834c",
14
- "package": "@fluentui/react-tabs"
11
+ "author": "gcox@microsoft.com",
12
+ "package": "@fluentui/react-tabs",
13
+ "commit": "97939a4e5f523b3ef05c815f909819701eee92ea",
14
+ "comment": "Added aria-selected"
15
15
  },
16
16
  {
17
- "comment": "Bump @fluentui/react to v8.14.11",
18
- "author": "martinhochel@microsoft.com",
19
- "commit": "616b4b7c381c757871e8a590564d8eff7337834c",
20
- "package": "@fluentui/react-tabs"
21
- }
22
- ]
23
- }
24
- },
25
- {
26
- "date": "Tue, 18 May 2021 07:34:38 GMT",
27
- "tag": "@fluentui/react-tabs_v1.0.0-beta.97",
28
- "version": "1.0.0-beta.97",
29
- "comments": {
30
- "patch": [
31
- {
32
- "comment": "Bump @fluentui/react to v8.14.10",
33
- "author": "zhigzhen@microsoft.com",
34
- "commit": "644df65321367dd615548b2877293d5268595c2b",
35
- "package": "@fluentui/react-tabs"
36
- }
37
- ]
38
- }
39
- },
40
- {
41
- "date": "Mon, 17 May 2021 07:33:48 GMT",
42
- "tag": "@fluentui/react-tabs_v1.0.0-beta.96",
43
- "version": "1.0.0-beta.96",
44
- "comments": {
45
- "patch": [
17
+ "author": "gcox@microsoft.com",
18
+ "package": "@fluentui/react-tabs",
19
+ "commit": "c2562b5382305152a09402a367ec853d603438e7",
20
+ "comment": "Updated to use correct pseudo-elements"
21
+ },
46
22
  {
47
- "comment": "Bump @fluentui/react to v8.14.9",
48
- "author": "tkrasniqi@microsoft.com",
49
- "commit": "6f5eb945a92b483141ee732b2ef439206a026627",
50
- "package": "@fluentui/react-tabs"
51
- }
52
- ]
53
- }
54
- },
55
- {
56
- "date": "Fri, 14 May 2021 07:35:10 GMT",
57
- "tag": "@fluentui/react-tabs_v1.0.0-beta.95",
58
- "version": "1.0.0-beta.95",
59
- "comments": {
60
- "prerelease": [
23
+ "author": "gcox@microsoft.com",
24
+ "package": "@fluentui/react-tabs",
25
+ "commit": "6c764b820241483c1a9a6e225f758a4c8d4b060e",
26
+ "comment": "Updated to use tokens"
27
+ },
61
28
  {
62
- "comment": "Tabs: role prop of header button can now take tab.role value",
63
- "author": "hetanthakkar1@gmail.com",
64
- "commit": "2e6d5cd387a0bc07077c5cb4b7f6eef08db8762f",
65
- "package": "@fluentui/react-tabs"
66
- }
67
- ],
68
- "patch": [
29
+ "author": "gcox@microsoft.com",
30
+ "package": "@fluentui/react-tabs",
31
+ "commit": "55e2b1b53e81efa510a5bc15c6ab0398b52ace7f",
32
+ "comment": "Removed unnecessary width and height from indicators"
33
+ },
69
34
  {
70
- "comment": "Bump @fluentui/react to v8.14.8",
71
- "author": "tristan.watanabe@gmail.com",
72
- "commit": "8ae04eedf0f6b332d32da6cfeab59776251b70b0",
73
- "package": "@fluentui/react-tabs"
74
- }
75
- ]
76
- }
77
- },
78
- {
79
- "date": "Thu, 13 May 2021 07:36:55 GMT",
80
- "tag": "@fluentui/react-tabs_v1.0.0-beta.94",
81
- "version": "1.0.0-beta.94",
82
- "comments": {
83
- "patch": [
35
+ "author": "gcox@microsoft.com",
36
+ "package": "@fluentui/react-tabs",
37
+ "commit": "17ed5008371df7344540af658209840985dc4754",
38
+ "comment": "Allow tab to animate when value is numeric zero"
39
+ },
84
40
  {
85
- "comment": "Bump @fluentui/react to v8.14.7",
86
- "author": "tristan.watanabe@gmail.com",
87
- "commit": "a51398178a1519e74485a8f6b31c5d3fca09c0b4",
88
- "package": "@fluentui/react-tabs"
89
- }
90
- ]
91
- }
92
- },
93
- {
94
- "date": "Wed, 12 May 2021 07:36:20 GMT",
95
- "tag": "@fluentui/react-tabs_v1.0.0-beta.93",
96
- "version": "1.0.0-beta.93",
97
- "comments": {
98
- "patch": [
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-tabs",
43
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.7",
44
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
45
+ },
99
46
  {
100
- "comment": "Bump @fluentui/react to v8.14.6",
101
- "author": "oliver.webb@starleaf.com",
102
- "commit": "2119518232b6d1a822ef2fa99bb488312053c4c5",
103
- "package": "@fluentui/react-tabs"
104
- }
105
- ]
106
- }
107
- },
108
- {
109
- "date": "Mon, 10 May 2021 07:36:07 GMT",
110
- "tag": "@fluentui/react-tabs_v1.0.0-beta.92",
111
- "version": "1.0.0-beta.92",
112
- "comments": {
113
- "patch": [
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-tabs",
49
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.8",
50
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
51
+ },
114
52
  {
115
- "comment": "Bump @fluentui/react to v8.14.5",
116
- "author": "cujurgen@microsoft.com",
117
- "commit": "cbb18aa631e7376359e7765fa7e5b6ca11b75621",
118
- "package": "@fluentui/react-tabs"
119
- }
120
- ]
121
- }
122
- },
123
- {
124
- "date": "Fri, 07 May 2021 07:34:34 GMT",
125
- "tag": "@fluentui/react-tabs_v1.0.0-beta.91",
126
- "version": "1.0.0-beta.91",
127
- "comments": {
128
- "patch": [
53
+ "author": "beachball",
54
+ "package": "@fluentui/react-tabs",
55
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.6",
56
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
57
+ },
129
58
  {
130
- "comment": "Bump @fluentui/react to v8.14.4",
131
- "author": "anhw@microsoft.com",
132
- "commit": "6701eb20d01c4b846624b1c3f9ea37ed8c4ee72a",
133
- "package": "@fluentui/react-tabs"
59
+ "author": "beachball",
60
+ "package": "@fluentui/react-tabs",
61
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.7",
62
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
134
63
  }
135
- ]
136
- }
137
- },
138
- {
139
- "date": "Thu, 06 May 2021 07:35:51 GMT",
140
- "tag": "@fluentui/react-tabs_v1.0.0-beta.90",
141
- "version": "1.0.0-beta.90",
142
- "comments": {
143
- "patch": [
64
+ ],
65
+ "none": [
144
66
  {
145
- "comment": "Bump @fluentui/react to v8.14.3",
146
67
  "author": "tristan.watanabe@gmail.com",
147
- "commit": "83930898b3f9e0972bf994dc55e66b477d12ea3c",
148
- "package": "@fluentui/react-tabs"
68
+ "package": "@fluentui/react-tabs",
69
+ "commit": "f1c470c25de01baef3180067fa99dcc10ec9ebd5",
70
+ "comment": "react-tabs: Move to new common folder."
149
71
  }
150
72
  ]
151
73
  }
152
74
  },
153
75
  {
154
- "date": "Wed, 05 May 2021 07:36:50 GMT",
155
- "tag": "@fluentui/react-tabs_v1.0.0-beta.89",
156
- "version": "1.0.0-beta.89",
76
+ "date": "Mon, 25 Apr 2022 09:32:15 GMT",
77
+ "tag": "@fluentui/react-tabs_v9.0.0-beta.10",
78
+ "version": "9.0.0-beta.10",
157
79
  "comments": {
158
- "none": [
80
+ "prerelease": [
159
81
  {
160
- "comment": "Bump @fluentui/react to v8.14.2",
161
- "author": "sarah.higley@microsoft.com",
162
- "commit": "30a71c476a4c57a0be40ccef3717a456b354e0d6",
163
- "package": "@fluentui/react-tabs"
164
- }
165
- ]
166
- }
167
- },
168
- {
169
- "date": "Tue, 04 May 2021 07:36:35 GMT",
170
- "tag": "@fluentui/react-tabs_v1.0.0-beta.89",
171
- "version": "1.0.0-beta.89",
172
- "comments": {
173
- "patch": [
82
+ "author": "gcox@microsoft.com",
83
+ "package": "@fluentui/react-tabs",
84
+ "commit": "9b558cf266817f6499fece14e71bd90e98385a6b",
85
+ "comment": "Added styles to support future overflow calcs"
86
+ },
174
87
  {
175
- "comment": "Bump @fluentui/react to v8.14.1",
176
- "author": "tristan.watanabe@gmail.com",
177
- "commit": "83c7ebbe3aae5cb052e4f1405cbc8d68dc79aa8f",
178
- "package": "@fluentui/react-tabs"
88
+ "author": "beachball",
89
+ "package": "@fluentui/react-tabs",
90
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.7",
91
+ "commit": "02ca1d3c198452c1693067f5f18bd01b2ed5d6e6"
179
92
  }
180
93
  ]
181
94
  }
182
95
  },
183
96
  {
184
- "date": "Fri, 30 Apr 2021 07:42:23 GMT",
185
- "tag": "@fluentui/react-tabs_v1.0.0-beta.88",
186
- "version": "1.0.0-beta.88",
97
+ "date": "Tue, 19 Apr 2022 19:16:56 GMT",
98
+ "tag": "@fluentui/react-tabs_v9.0.0-beta.9",
99
+ "version": "9.0.0-beta.9",
187
100
  "comments": {
188
101
  "prerelease": [
189
102
  {
190
- "comment": "Upgrade to ts 4.0",
191
- "author": "joschect@microsoft.com",
192
- "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
193
- "package": "@fluentui/react-tabs"
194
- }
195
- ],
196
- "patch": [
197
- {
198
- "comment": "Bump @fluentui/react to v8.14.0",
199
- "author": "jdh@microsoft.com",
200
- "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
201
- "package": "@fluentui/react-tabs"
103
+ "author": "gcox@microsoft.com",
104
+ "package": "@fluentui/react-tabs",
105
+ "commit": "b514b6072c080c6d3539cfc67c4a3e554d9bb775",
106
+ "comment": "Set disabled tab background to transparent"
202
107
  },
203
108
  {
204
- "comment": "Bump @fluentui/utilities to v8.1.0",
205
- "author": "joschect@microsoft.com",
206
- "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
207
- "package": "@fluentui/react-tabs"
109
+ "author": "seanmonahan@microsoft.com",
110
+ "package": "@fluentui/react-tabs",
111
+ "commit": "086a675fd0c648944ff4048450190a0a13467de3",
112
+ "comment": "Add static classnames to Tabs"
208
113
  },
209
114
  {
210
- "comment": "Bump @fluentui/react-hooks to v8.2.0",
211
- "author": "joschect@microsoft.com",
212
- "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
213
- "package": "@fluentui/react-tabs"
115
+ "author": "olfedias@microsoft.com",
116
+ "package": "@fluentui/react-tabs",
117
+ "commit": "e569d6e04d83cbcc6225e61db52ff81d2addd363",
118
+ "comment": "chore: Update Griffel to latest version"
214
119
  },
215
120
  {
216
- "comment": "Bump @fluentui/style-utilities to v8.1.0",
217
- "author": "joschect@microsoft.com",
218
- "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
219
- "package": "@fluentui/react-tabs"
121
+ "author": "Humberto.Morimoto@microsoft.com",
122
+ "package": "@fluentui/react-tabs",
123
+ "commit": "ad93ede78815d6767af5bf496ea6ad3ab6f47120",
124
+ "comment": "Removing star exports."
220
125
  },
221
126
  {
222
- "comment": "Bump @fluentui/eslint-plugin to v1.2.0",
223
- "author": "joschect@microsoft.com",
224
- "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
225
- "package": "@fluentui/react-tabs"
127
+ "author": "martinhochel@microsoft.com",
128
+ "package": "@fluentui/react-tabs",
129
+ "commit": "8722596e561b57decfe9aa79121db844737102ff",
130
+ "comment": "fix missing dependencies and lint warnings"
226
131
  },
227
132
  {
228
- "comment": "Bump @fluentui/react-conformance to v0.3.0",
229
- "author": "joschect@microsoft.com",
230
- "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
231
- "package": "@fluentui/react-tabs"
133
+ "author": "gcox@microsoft.com",
134
+ "package": "@fluentui/react-tabs",
135
+ "commit": "72fa867ab6b084656b53c8f644df74b31077ae15",
136
+ "comment": "Fix subtle style on tabs"
232
137
  },
233
138
  {
234
- "comment": "Bump @fluentui/scripts to v1.0.0",
235
- "author": "joschect@microsoft.com",
236
- "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
237
- "package": "@fluentui/react-tabs"
238
- }
239
- ]
240
- }
241
- },
242
- {
243
- "date": "Wed, 28 Apr 2021 07:32:59 GMT",
244
- "tag": "@fluentui/react-tabs_v1.0.0-beta.87",
245
- "version": "1.0.0-beta.87",
246
- "comments": {
247
- "patch": [
248
- {
249
- "comment": "Bump @fluentui/react to v8.13.1",
250
- "author": "shi.cheng@microsoft.com",
251
- "commit": "0c1058d6057d25eb97a73482e026ee00719175de",
252
- "package": "@fluentui/react-tabs"
253
- }
254
- ]
255
- }
256
- },
257
- {
258
- "date": "Tue, 27 Apr 2021 07:34:03 GMT",
259
- "tag": "@fluentui/react-tabs_v1.0.0-beta.86",
260
- "version": "1.0.0-beta.86",
261
- "comments": {
262
- "patch": [
263
- {
264
- "comment": "Bump @fluentui/react to v8.13.0",
265
- "author": "jolamusg@microsoft.com",
266
- "commit": "7d2a0ee3af7ab8a13f4cf007bfed6aeebde35b23",
267
- "package": "@fluentui/react-tabs"
268
- }
269
- ]
270
- }
271
- },
272
- {
273
- "date": "Mon, 26 Apr 2021 07:34:31 GMT",
274
- "tag": "@fluentui/react-tabs_v1.0.0-beta.85",
275
- "version": "1.0.0-beta.85",
276
- "comments": {
277
- "patch": [
278
- {
279
- "comment": "Bump @fluentui/react to v8.12.1",
280
- "author": "sarah.higley@microsoft.com",
281
- "commit": "5f36a1e53dbb353f48089303ce281bd7dfac0ee7",
282
- "package": "@fluentui/react-tabs"
283
- }
284
- ]
285
- }
286
- },
287
- {
288
- "date": "Fri, 23 Apr 2021 07:37:10 GMT",
289
- "tag": "@fluentui/react-tabs_v1.0.0-beta.84",
290
- "version": "1.0.0-beta.84",
291
- "comments": {
292
- "none": [
293
- {
294
- "comment": "disable lint rules",
295
- "author": "olfedias@microsoft.com",
296
- "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
297
- "package": "@fluentui/react-tabs"
298
- }
299
- ],
300
- "patch": [
301
- {
302
- "comment": "Bump @fluentui/eslint-plugin to v1.1.1",
303
- "author": "olfedias@microsoft.com",
304
- "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
305
- "package": "@fluentui/react-tabs"
139
+ "author": "gcox@microsoft.com",
140
+ "package": "@fluentui/react-tabs",
141
+ "commit": "374dca7b9d662f71a1f81297d7e4f4ea95615645",
142
+ "comment": "react-tabs fit and finish"
306
143
  },
307
144
  {
308
- "comment": "Bump @fluentui/react to v8.12.0",
309
- "author": "olfedias@microsoft.com",
310
- "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
311
- "package": "@fluentui/react-tabs"
145
+ "author": "gcox@microsoft.com",
146
+ "package": "@fluentui/react-tabs",
147
+ "commit": "69bcdf2f52fe6a8bf7d5f7ca71be74d753202356",
148
+ "comment": "Set subtle tab background to subtle background tokens"
312
149
  },
313
150
  {
314
- "comment": "Bump @fluentui/utilities to v8.0.5",
315
- "author": "olfedias@microsoft.com",
316
- "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
317
- "package": "@fluentui/react-tabs"
151
+ "author": "gcox@microsoft.com",
152
+ "package": "@fluentui/react-tabs",
153
+ "commit": "f098bb23b512e4084534238f2eca794a39a5c2e0",
154
+ "comment": "Updated to decrease gap of small vertical tab per figma change"
318
155
  },
319
156
  {
320
- "comment": "Bump @fluentui/react-hooks to v8.1.3",
321
- "author": "olfedias@microsoft.com",
322
- "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
323
- "package": "@fluentui/react-tabs"
157
+ "author": "beachball",
158
+ "package": "@fluentui/react-tabs",
159
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.6",
160
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
324
161
  },
325
162
  {
326
- "comment": "Bump @fluentui/style-utilities to v8.0.5",
327
- "author": "olfedias@microsoft.com",
328
- "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
329
- "package": "@fluentui/react-tabs"
163
+ "author": "beachball",
164
+ "package": "@fluentui/react-tabs",
165
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.6",
166
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
330
167
  },
331
168
  {
332
- "comment": "Bump @fluentui/react-conformance to v0.2.6",
333
- "author": "olfedias@microsoft.com",
334
- "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
335
- "package": "@fluentui/react-tabs"
169
+ "author": "beachball",
170
+ "package": "@fluentui/react-tabs",
171
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.5",
172
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
336
173
  },
337
174
  {
338
- "comment": "Bump @fluentui/scripts to v1.0.0",
339
- "author": "olfedias@microsoft.com",
340
- "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
341
- "package": "@fluentui/react-tabs"
342
- }
343
- ]
344
- }
345
- },
346
- {
347
- "date": "Wed, 21 Apr 2021 07:31:50 GMT",
348
- "tag": "@fluentui/react-tabs_v1.0.0-beta.83",
349
- "version": "1.0.0-beta.83",
350
- "comments": {
351
- "none": [
175
+ "author": "beachball",
176
+ "package": "@fluentui/react-tabs",
177
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.6",
178
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
179
+ },
352
180
  {
353
- "comment": "Bump @fluentui/react to v8.11.2",
354
- "author": "b.sjursen@gmail.com",
355
- "commit": "0bae195a92606a9de6549af2a47fa716c5298fc9",
356
- "package": "@fluentui/react-tabs"
181
+ "author": "beachball",
182
+ "package": "@fluentui/react-tabs",
183
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4",
184
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
357
185
  }
358
- ]
359
- }
360
- },
361
- {
362
- "date": "Mon, 19 Apr 2021 07:33:33 GMT",
363
- "tag": "@fluentui/react-tabs_v1.0.0-beta.83",
364
- "version": "1.0.0-beta.83",
365
- "comments": {
186
+ ],
366
187
  "none": [
367
188
  {
368
- "comment": "Remove unneeded react-app-polyfill devDependency",
369
189
  "author": "elcraig@microsoft.com",
370
- "commit": "fdc32557d49e5d70ea7e4af8957102d415b44547",
371
- "package": "@fluentui/react-tabs"
372
- }
373
- ]
374
- }
375
- },
376
- {
377
- "date": "Fri, 16 Apr 2021 07:32:08 GMT",
378
- "tag": "@fluentui/react-tabs_v1.0.0-beta.83",
379
- "version": "1.0.0-beta.83",
380
- "comments": {
381
- "patch": [
382
- {
383
- "comment": "Bump @fluentui/react to v8.11.0",
384
- "author": "Humberto.Morimoto@microsoft.com",
385
- "commit": "6168a30a5b8c0b053eb6343cb160ce609b01f397",
386
- "package": "@fluentui/react-tabs"
387
- }
388
- ]
389
- }
390
- },
391
- {
392
- "date": "Wed, 14 Apr 2021 07:34:12 GMT",
393
- "tag": "@fluentui/react-tabs_v1.0.0-beta.82",
394
- "version": "1.0.0-beta.82",
395
- "comments": {
396
- "patch": [
190
+ "package": "@fluentui/react-tabs",
191
+ "commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
192
+ "comment": "Update React dev deps and hoist them to the repo root"
193
+ },
397
194
  {
398
- "comment": "Bump @fluentui/react to v8.10.1",
399
- "author": "miclo@microsoft.com",
400
- "commit": "79e54368e24723655df2a1fa017f730fd642677f",
401
- "package": "@fluentui/react-tabs"
195
+ "author": "mgodbolt@microsoft.com",
196
+ "package": "@fluentui/react-tabs",
197
+ "commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
198
+ "comment": "create v9 api extractor config and set all v9 packags to use it, suppress forgotten export"
402
199
  }
403
200
  ]
404
201
  }
405
202
  },
406
203
  {
407
- "date": "Tue, 13 Apr 2021 14:55:56 GMT",
408
- "tag": "@fluentui/react-tabs_v1.0.0-beta.81",
409
- "version": "1.0.0-beta.81",
204
+ "date": "Fri, 04 Mar 2022 05:17:30 GMT",
205
+ "tag": "@fluentui/react-tabs_v9.0.0-beta.8",
206
+ "version": "9.0.0-beta.8",
410
207
  "comments": {
411
- "patch": [
208
+ "prerelease": [
412
209
  {
413
- "comment": "Bump @fluentui/react to v8.10.0",
414
- "author": "jaredi@microsoft.com",
415
- "commit": "f3a06cfc20204db5ea8222709437a59b54ff235a",
416
- "package": "@fluentui/react-tabs"
210
+ "author": "dzearing@microsoft.com",
211
+ "package": "@fluentui/react-tabs",
212
+ "commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
213
+ "comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
417
214
  },
418
215
  {
419
- "comment": "Bump @fluentui/utilities to v8.0.4",
420
- "author": "jaredi@microsoft.com",
421
- "commit": "f3a06cfc20204db5ea8222709437a59b54ff235a",
422
- "package": "@fluentui/react-tabs"
216
+ "author": "beachball",
217
+ "package": "@fluentui/react-tabs",
218
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.5",
219
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
423
220
  },
424
221
  {
425
- "comment": "Bump @fluentui/react-hooks to v8.1.2",
426
- "author": "jaredi@microsoft.com",
427
- "commit": "f3a06cfc20204db5ea8222709437a59b54ff235a",
428
- "package": "@fluentui/react-tabs"
222
+ "author": "beachball",
223
+ "package": "@fluentui/react-tabs",
224
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.4",
225
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
429
226
  },
430
227
  {
431
- "comment": "Bump @fluentui/style-utilities to v8.0.4",
432
- "author": "jaredi@microsoft.com",
433
- "commit": "f3a06cfc20204db5ea8222709437a59b54ff235a",
434
- "package": "@fluentui/react-tabs"
435
- }
436
- ]
437
- }
438
- },
439
- {
440
- "date": "Sat, 10 Apr 2021 03:23:10 GMT",
441
- "tag": "@fluentui/react-tabs_v1.0.0-beta.80",
442
- "version": "1.0.0-beta.80",
443
- "comments": {
444
- "patch": [
445
- {
446
- "comment": "Bump @fluentui/react to v8.9.4",
447
- "author": "tristan.watanabe@gmail.com",
448
- "commit": "4e5a243010c67069e4aeef715863cf3abc9dc319",
449
- "package": "@fluentui/react-tabs"
450
- }
451
- ]
452
- }
453
- },
454
- {
455
- "date": "Fri, 09 Apr 2021 23:42:49 GMT",
456
- "tag": "@fluentui/react-tabs_v1.0.0-beta.79",
457
- "version": "1.0.0-beta.79",
458
- "comments": {
459
- "patch": [
460
- {
461
- "comment": "Bump @fluentui/react to v8.9.3",
462
- "author": "tristan.watanabe@gmail.com",
463
- "commit": "51828b1013e47654a6f4898110572fd9f334c12e",
464
- "package": "@fluentui/react-tabs"
465
- }
466
- ]
467
- }
468
- },
469
- {
470
- "date": "Fri, 09 Apr 2021 07:31:06 GMT",
471
- "tag": "@fluentui/react-tabs_v1.0.0-beta.78",
472
- "version": "1.0.0-beta.78",
473
- "comments": {
474
- "none": [
228
+ "author": "beachball",
229
+ "package": "@fluentui/react-tabs",
230
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.5",
231
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
232
+ },
475
233
  {
476
- "comment": "Bump @fluentui/react to v8.9.2",
477
- "author": "shi.cheng@microsoft.com",
478
- "commit": "f2b20a55b5bbe88021e45230b4b59c8528749e94",
479
- "package": "@fluentui/react-tabs"
234
+ "author": "beachball",
235
+ "package": "@fluentui/react-tabs",
236
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.5",
237
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
480
238
  }
481
239
  ]
482
240
  }
483
241
  },
484
242
  {
485
- "date": "Thu, 08 Apr 2021 07:33:06 GMT",
486
- "tag": "@fluentui/react-tabs_v1.0.0-beta.78",
487
- "version": "1.0.0-beta.78",
243
+ "date": "Tue, 01 Mar 2022 02:17:39 GMT",
244
+ "tag": "@fluentui/react-tabs_v9.0.0-beta.7",
245
+ "version": "9.0.0-beta.7",
488
246
  "comments": {
489
- "patch": [
247
+ "prerelease": [
490
248
  {
491
- "comment": "Bump @fluentui/react to v8.9.2",
492
- "author": "joschect@microsoft.com",
493
- "commit": "ae21a051f71e7f7f71621f711a1da8dcb9284826",
494
- "package": "@fluentui/react-tabs"
495
- }
496
- ]
497
- }
498
- },
499
- {
500
- "date": "Wed, 07 Apr 2021 08:04:03 GMT",
501
- "tag": "@fluentui/react-tabs_v1.0.0-beta.77",
502
- "version": "1.0.0-beta.77",
503
- "comments": {
504
- "patch": [
249
+ "author": "olfedias@microsoft.com",
250
+ "package": "@fluentui/react-tabs",
251
+ "commit": "084d7408855f3e52b67cbca172da1acef9dcb98f",
252
+ "comment": "fix: Add react-theme as dependency"
253
+ },
505
254
  {
506
- "comment": "Bump @fluentui/react to v8.9.1",
507
- "author": "vapullur@microsoft.com",
508
- "commit": "144f51f3db8bc7477969665376281504539b6712",
509
- "package": "@fluentui/react-tabs"
510
- }
511
- ]
512
- }
513
- },
514
- {
515
- "date": "Tue, 06 Apr 2021 07:34:10 GMT",
516
- "tag": "@fluentui/react-tabs_v1.0.0-beta.76",
517
- "version": "1.0.0-beta.76",
518
- "comments": {
519
- "patch": [
255
+ "author": "beachball",
256
+ "package": "@fluentui/react-tabs",
257
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.4",
258
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
259
+ },
520
260
  {
521
- "comment": "Bump @fluentui/react to v8.9.0",
522
- "author": "tristan.watanabe@gmail.com",
523
- "commit": "aa9c8ebb50c8a119a4d4f0acad37aacedb55e6d1",
524
- "package": "@fluentui/react-tabs"
525
- }
526
- ]
527
- }
528
- },
529
- {
530
- "date": "Thu, 01 Apr 2021 07:33:24 GMT",
531
- "tag": "@fluentui/react-tabs_v1.0.0-beta.75",
532
- "version": "1.0.0-beta.75",
533
- "comments": {
534
- "patch": [
261
+ "author": "beachball",
262
+ "package": "@fluentui/react-tabs",
263
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
264
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
265
+ },
535
266
  {
536
- "comment": "Bump @fluentui/react to v8.8.0",
537
- "author": "miclo@microsoft.com",
538
- "commit": "c47f4a89c46f9864d569ee3547ec25800b38d2c2",
539
- "package": "@fluentui/react-tabs"
267
+ "author": "beachball",
268
+ "package": "@fluentui/react-tabs",
269
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.4",
270
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
540
271
  }
541
272
  ]
542
273
  }
543
274
  },
544
275
  {
545
- "date": "Wed, 31 Mar 2021 00:53:43 GMT",
546
- "tag": "@fluentui/react-tabs_v1.0.0-beta.74",
547
- "version": "1.0.0-beta.74",
276
+ "date": "Fri, 18 Feb 2022 13:35:35 GMT",
277
+ "tag": "@fluentui/react-tabs_v9.0.0-beta.6",
278
+ "version": "9.0.0-beta.6",
548
279
  "comments": {
549
- "patch": [
280
+ "prerelease": [
550
281
  {
551
- "comment": "Bump @fluentui/eslint-plugin to v1.1.0",
552
- "author": "elcraig@microsoft.com",
553
- "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
554
- "package": "@fluentui/react-tabs"
282
+ "author": "lingfangao@hotmail.com",
283
+ "package": "@fluentui/react-tabs",
284
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
285
+ "comment": "chore: Force bump all v9 packages to release correct source maps"
555
286
  },
556
287
  {
557
- "comment": "Bump @fluentui/react to v8.7.1",
558
- "author": "elcraig@microsoft.com",
559
- "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
560
- "package": "@fluentui/react-tabs"
288
+ "author": "gcox@microsoft.com",
289
+ "package": "@fluentui/react-tabs",
290
+ "commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
291
+ "comment": "Updated beta and RC components to ES2019"
561
292
  },
562
293
  {
563
- "comment": "Bump @fluentui/style-utilities to v8.0.3",
564
- "author": "elcraig@microsoft.com",
565
- "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
566
- "package": "@fluentui/react-tabs"
294
+ "author": "gcox@microsoft.com",
295
+ "package": "@fluentui/react-tabs",
296
+ "commit": "7fcfaee82e4ed789e9e5b1516439563e2c4f165f",
297
+ "comment": "Publish initial version"
567
298
  },
568
299
  {
569
- "comment": "Bump @fluentui/react-conformance to v0.2.5",
570
- "author": "elcraig@microsoft.com",
571
- "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
572
- "package": "@fluentui/react-tabs"
300
+ "author": "beachball",
301
+ "package": "@fluentui/react-tabs",
302
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.3",
303
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
573
304
  },
574
305
  {
575
- "comment": "Bump @fluentui/react-hooks to v8.1.1",
576
- "author": "elcraig@microsoft.com",
577
- "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
578
- "package": "@fluentui/react-tabs"
306
+ "author": "beachball",
307
+ "package": "@fluentui/react-tabs",
308
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
309
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
579
310
  },
580
311
  {
581
- "comment": "Bump @fluentui/scripts to v1.0.0",
582
- "author": "elcraig@microsoft.com",
583
- "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
584
- "package": "@fluentui/react-tabs"
312
+ "author": "beachball",
313
+ "package": "@fluentui/react-tabs",
314
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
315
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
585
316
  },
586
317
  {
587
- "comment": "Bump @fluentui/utilities to v8.0.3",
588
- "author": "elcraig@microsoft.com",
589
- "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
590
- "package": "@fluentui/react-tabs"
318
+ "author": "beachball",
319
+ "package": "@fluentui/react-tabs",
320
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.3",
321
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
591
322
  }
592
323
  ]
593
324
  }
594
325
  },
595
326
  {
596
- "date": "Tue, 30 Mar 2021 07:34:45 GMT",
597
- "tag": "@fluentui/react-tabs_v1.0.0-beta.73",
598
- "version": "1.0.0-beta.73",
327
+ "date": "Thu, 10 Feb 2022 08:52:26 GMT",
328
+ "tag": "@fluentui/react-tabs_v9.0.0-beta.4",
329
+ "version": "9.0.0-beta.4",
599
330
  "comments": {
600
331
  "prerelease": [
601
332
  {
602
- "comment": "chore: restore \"sideEffects\" to enable treeshaking",
603
- "author": "olfedias@microsoft.com",
604
- "commit": "8d6eb6f174660017e96d2c539a08e1d64ccdf4a3",
605
- "package": "@fluentui/react-tabs"
606
- }
607
- ],
608
- "patch": [
609
- {
610
- "comment": "Bump @fluentui/react to v8.7.0",
611
- "author": "bsunderhus@microsoft.com",
612
- "commit": "0e497f76bceee79ee6f15524b9903a9eda653c44",
613
- "package": "@fluentui/react-tabs"
614
- }
615
- ]
616
- }
617
- },
618
- {
619
- "date": "Thu, 25 Mar 2021 07:33:24 GMT",
620
- "tag": "@fluentui/react-tabs_v1.0.0-beta.72",
621
- "version": "1.0.0-beta.72",
622
- "comments": {
623
- "patch": [
624
- {
625
- "comment": "Bump @fluentui/react to v8.6.1",
626
- "author": "Humberto.Morimoto@microsoft.com",
627
- "commit": "2338c30df092ac05df393631bb8e59bcd9fec7b0",
628
- "package": "@fluentui/react-tabs"
629
- }
630
- ]
631
- }
632
- },
633
- {
634
- "date": "Wed, 24 Mar 2021 07:32:21 GMT",
635
- "tag": "@fluentui/react-tabs_v1.0.0-beta.71",
636
- "version": "1.0.0-beta.71",
637
- "comments": {
638
- "patch": [
639
- {
640
- "comment": "Bump @fluentui/react to v8.6.0",
641
- "author": "anhw@microsoft.com",
642
- "commit": "a8767b680206226010a1a3e6cf9b426ed66612b1",
643
- "package": "@fluentui/react-tabs"
644
- }
645
- ]
646
- }
647
- },
648
- {
649
- "date": "Mon, 22 Mar 2021 07:34:09 GMT",
650
- "tag": "@fluentui/react-tabs_v1.0.0-beta.70",
651
- "version": "1.0.0-beta.70",
652
- "comments": {
653
- "patch": [
654
- {
655
- "comment": "Bump @fluentui/react to v8.5.1",
656
- "author": "behowell@microsoft.com",
657
- "commit": "6cfa186ffffe07c197608ecee665bc597376ff4a",
658
- "package": "@fluentui/react-tabs"
659
- }
660
- ]
661
- }
662
- },
663
- {
664
- "date": "Thu, 18 Mar 2021 20:15:34 GMT",
665
- "tag": "@fluentui/react-tabs_v1.0.0-beta.69",
666
- "version": "1.0.0-beta.69",
667
- "comments": {
668
- "patch": [
669
- {
670
- "comment": "Bump @fluentui/react to v8.5.0",
671
- "author": "tristan.watanabe@gmail.com",
672
- "commit": "af62904b3f024c1f66d97982914c281f1ad748a9",
673
- "package": "@fluentui/react-tabs"
674
- }
675
- ]
676
- }
677
- },
678
- {
679
- "date": "Thu, 18 Mar 2021 07:33:22 GMT",
680
- "tag": "@fluentui/react-tabs_v1.0.0-beta.68",
681
- "version": "1.0.0-beta.68",
682
- "comments": {
683
- "patch": [
333
+ "author": "beachball",
334
+ "package": "@fluentui/react-tabs",
335
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.1",
336
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
337
+ },
684
338
  {
685
- "comment": "Bump @fluentui/react to v8.4.0",
686
- "author": "Humberto.Morimoto@microsoft.com",
687
- "commit": "fc2d46e7f8a3b1e67efc77702174c6b229ace241",
688
- "package": "@fluentui/react-tabs"
339
+ "author": "beachball",
340
+ "package": "@fluentui/react-tabs",
341
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
342
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
689
343
  },
690
344
  {
691
- "comment": "Bump @fluentui/react-hooks to v8.1.0",
692
- "author": "Humberto.Morimoto@microsoft.com",
693
- "commit": "fc2d46e7f8a3b1e67efc77702174c6b229ace241",
694
- "package": "@fluentui/react-tabs"
695
- }
696
- ]
697
- }
698
- },
699
- {
700
- "date": "Wed, 17 Mar 2021 07:35:44 GMT",
701
- "tag": "@fluentui/react-tabs_v1.0.0-beta.67",
702
- "version": "1.0.0-beta.67",
703
- "comments": {
704
- "patch": [
705
- {
706
- "comment": "Bump @fluentui/react to v8.3.2",
707
- "author": "tristan.watanabe@gmail.com",
708
- "commit": "63a804f60429b5440329f875dc4f8b697d9a6e5b",
709
- "package": "@fluentui/react-tabs"
710
- }
711
- ]
712
- }
713
- },
714
- {
715
- "date": "Tue, 16 Mar 2021 07:32:44 GMT",
716
- "tag": "@fluentui/react-tabs_v1.0.0-beta.66",
717
- "version": "1.0.0-beta.66",
718
- "comments": {
719
- "none": [
720
- {
721
- "comment": "Fix which packages depend on common-styles",
722
- "author": "elcraig@microsoft.com",
723
- "commit": "8c51f4b3b2ca22e4c166bbbd0e98d367c5ba33be",
724
- "package": "@fluentui/react-tabs"
725
- }
726
- ],
727
- "patch": [
728
- {
729
- "comment": "Bump @fluentui/react to v8.3.1",
730
- "author": "sarah.higley@microsoft.com",
731
- "commit": "37448af671102cd6dcef2fcf300a1ef0c6293b99",
732
- "package": "@fluentui/react-tabs"
733
- },
734
- {
735
- "comment": "Bump @fluentui/react-conformance to v0.2.4",
736
- "author": "elcraig@microsoft.com",
737
- "commit": "8bbe3d16c5c00716dfcbafa6d693437b8d090da3",
738
- "package": "@fluentui/react-tabs"
739
- }
740
- ]
741
- }
742
- },
743
- {
744
- "date": "Mon, 15 Mar 2021 07:36:20 GMT",
745
- "tag": "@fluentui/react-tabs_v1.0.0-beta.65",
746
- "version": "1.0.0-beta.65",
747
- "comments": {
748
- "prerelease": [
749
- {
750
- "comment": "Remove set-version references",
751
- "author": "elcraig@microsoft.com",
752
- "commit": "b0bef818ea07833d9b9797ef26a4b24200ed0307",
753
- "package": "@fluentui/react-tabs"
754
- }
755
- ],
756
- "none": [
757
- {
758
- "comment": "Remove unneeded scripts",
759
- "author": "elcraig@microsoft.com",
760
- "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
761
- "package": "@fluentui/react-tabs"
762
- },
763
- {
764
- "comment": "Bump @fluentui/react to v8.3.0",
765
- "author": "elcraig@microsoft.com",
766
- "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
767
- "package": "@fluentui/react-tabs"
768
- },
769
- {
770
- "comment": "Bump @fluentui/react-hooks to v8.0.2",
771
- "author": "elcraig@microsoft.com",
772
- "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
773
- "package": "@fluentui/react-tabs"
774
- },
775
- {
776
- "comment": "Bump @fluentui/style-utilities to v8.0.2",
777
- "author": "elcraig@microsoft.com",
778
- "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
779
- "package": "@fluentui/react-tabs"
780
- },
781
- {
782
- "comment": "Bump @fluentui/common-styles to v1.0.2",
783
- "author": "elcraig@microsoft.com",
784
- "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
785
- "package": "@fluentui/react-tabs"
786
- },
787
- {
788
- "comment": "Bump @fluentui/utilities to v8.0.2",
789
- "author": "elcraig@microsoft.com",
790
- "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
791
- "package": "@fluentui/react-tabs"
792
- }
793
- ]
794
- }
795
- },
796
- {
797
- "date": "Fri, 12 Mar 2021 20:04:27 GMT",
798
- "tag": "@fluentui/react-tabs_v1.0.0-beta.64",
799
- "version": "1.0.0-beta.64",
800
- "comments": {
801
- "none": [
802
- {
803
- "comment": "Move `@types/node` and `@types/webpack-env` devDependencies to root, and remove unneeded references",
804
- "author": "elcraig@microsoft.com",
805
- "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
806
- "package": "@fluentui/react-tabs"
807
- },
808
- {
809
- "comment": "Bump @fluentui/react-hooks to v8.0.2",
810
- "author": "elcraig@microsoft.com",
811
- "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
812
- "package": "@fluentui/react-tabs"
813
- },
814
- {
815
- "comment": "Bump @fluentui/style-utilities to v8.0.2",
816
- "author": "elcraig@microsoft.com",
817
- "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
818
- "package": "@fluentui/react-tabs"
819
- },
820
- {
821
- "comment": "Bump @fluentui/common-styles to v1.0.2",
822
- "author": "elcraig@microsoft.com",
823
- "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
824
- "package": "@fluentui/react-tabs"
825
- },
826
- {
827
- "comment": "Bump @fluentui/utilities to v8.0.2",
828
- "author": "martinhochel@microsoft.com",
829
- "commit": "860bb829b416a8ee63fb25d11da7ad9c67d9312c",
830
- "package": "@fluentui/react-tabs"
831
- }
832
- ],
833
- "patch": [
834
- {
835
- "comment": "Bump @fluentui/react to v8.2.1",
836
- "author": "elcraig@microsoft.com",
837
- "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
838
- "package": "@fluentui/react-tabs"
839
- },
840
- {
841
- "comment": "Bump @fluentui/react-conformance to v0.2.3",
842
- "author": "martinhochel@microsoft.com",
843
- "commit": "860bb829b416a8ee63fb25d11da7ad9c67d9312c",
844
- "package": "@fluentui/react-tabs"
845
- }
846
- ]
847
- }
848
- },
849
- {
850
- "date": "Thu, 11 Mar 2021 07:33:03 GMT",
851
- "tag": "@fluentui/react-tabs_v1.0.0-beta.63",
852
- "version": "1.0.0-beta.63",
853
- "comments": {
854
- "patch": [
855
- {
856
- "comment": "Bump @fluentui/react to v8.2.0",
857
- "author": "elcraig@microsoft.com",
858
- "commit": "31651de68dbcb15deea1ba0f42d670acb00e2115",
859
- "package": "@fluentui/react-tabs"
860
- }
861
- ]
862
- }
863
- },
864
- {
865
- "date": "Wed, 10 Mar 2021 07:34:39 GMT",
866
- "tag": "@fluentui/react-tabs_v1.0.0-beta.62",
867
- "version": "1.0.0-beta.62",
868
- "comments": {
869
- "patch": [
870
- {
871
- "comment": "Bump @fluentui/react to v8.1.8",
872
- "author": "dzearing@microsoft.com",
873
- "commit": "488a8c6c28291969b164bb34563ab41e877371a2",
874
- "package": "@fluentui/react-tabs"
875
- }
876
- ]
877
- }
878
- },
879
- {
880
- "date": "Tue, 09 Mar 2021 07:32:29 GMT",
881
- "tag": "@fluentui/react-tabs_v1.0.0-beta.61",
882
- "version": "1.0.0-beta.61",
883
- "comments": {
884
- "none": [
885
- {
886
- "comment": "Snapshot changes for menu button",
887
- "author": "sarah.higley@microsoft.com",
888
- "commit": "fac7ea5e97dc1d8c87f3279e1132b09545158b58",
889
- "package": "@fluentui/react-tabs"
890
- }
891
- ],
892
- "patch": [
893
- {
894
- "comment": "Bump @fluentui/react to v8.1.7",
895
- "author": "sarah.higley@microsoft.com",
896
- "commit": "fac7ea5e97dc1d8c87f3279e1132b09545158b58",
897
- "package": "@fluentui/react-tabs"
898
- }
899
- ]
900
- }
901
- },
902
- {
903
- "date": "Sun, 07 Mar 2021 23:34:51 GMT",
904
- "tag": "@fluentui/react-tabs_v1.0.0-beta.60",
905
- "version": "1.0.0-beta.60",
906
- "comments": {
907
- "patch": [
908
- {
909
- "comment": "Bump @fluentui/react to v8.1.6",
910
- "author": "miclo@microsoft.com",
911
- "commit": "5e06dfbf2d4e421934d09521a178d4acec404d02",
912
- "package": "@fluentui/react-tabs"
913
- }
914
- ]
915
- }
916
- },
917
- {
918
- "date": "Fri, 05 Mar 2021 20:30:59 GMT",
919
- "tag": "@fluentui/react-tabs_v1.0.0-beta.59",
920
- "version": "1.0.0-beta.59",
921
- "comments": {
922
- "none": [
923
- {
924
- "comment": "Bump @fluentui/react to v8.1.5",
925
- "author": "sarah.higley@microsoft.com",
926
- "commit": "45fbce608a02afd1928f80fa7cec784a667e9b60",
927
- "package": "@fluentui/react-tabs"
928
- }
929
- ]
930
- }
931
- },
932
- {
933
- "date": "Wed, 03 Mar 2021 07:45:18 GMT",
934
- "tag": "@fluentui/react-tabs_v1.0.0-beta.59",
935
- "version": "1.0.0-beta.59",
936
- "comments": {
937
- "patch": [
938
- {
939
- "comment": "Bump @fluentui/react to v8.1.4",
940
- "author": "Humberto.Morimoto@microsoft.com",
941
- "commit": "93b84367718a637734537c8a34bfe807c23faa36",
942
- "package": "@fluentui/react-tabs"
943
- }
944
- ]
945
- }
946
- },
947
- {
948
- "date": "Wed, 03 Mar 2021 00:10:09 GMT",
949
- "tag": "@fluentui/react-tabs_v1.0.0-beta.58",
950
- "version": "1.0.0-beta.58",
951
- "comments": {
952
- "patch": [
953
- {
954
- "comment": "Bump @fluentui/utilities to v8.0.2",
955
- "author": "elcraig@microsoft.com",
956
- "commit": "9fa8d85af3c60daab15f5a91ec876c8648b018f2",
957
- "package": "@fluentui/react-tabs"
958
- },
959
- {
960
- "comment": "Bump @fluentui/style-utilities to v8.0.2",
961
- "author": "elcraig@microsoft.com",
962
- "commit": "9fa8d85af3c60daab15f5a91ec876c8648b018f2",
963
- "package": "@fluentui/react-tabs"
964
- },
965
- {
966
- "comment": "Bump @fluentui/common-styles to v1.0.2",
967
- "author": "elcraig@microsoft.com",
968
- "commit": "9fa8d85af3c60daab15f5a91ec876c8648b018f2",
969
- "package": "@fluentui/react-tabs"
970
- },
971
- {
972
- "comment": "Bump @fluentui/react to v8.1.3",
973
- "author": "tristan.watanabe@gmail.com",
974
- "commit": "183f82f3891784f3e8945f984cb73d40e4083e7f",
975
- "package": "@fluentui/react-tabs"
976
- },
977
- {
978
- "comment": "Bump @fluentui/react-hooks to v8.0.2",
979
- "author": "elcraig@microsoft.com",
980
- "commit": "9fa8d85af3c60daab15f5a91ec876c8648b018f2",
981
- "package": "@fluentui/react-tabs"
982
- }
983
- ]
984
- }
985
- },
986
- {
987
- "date": "Tue, 02 Mar 2021 07:24:27 GMT",
988
- "tag": "@fluentui/react-tabs_v1.0.0-beta.57",
989
- "version": "1.0.0-beta.57",
990
- "comments": {
991
- "patch": [
992
- {
993
- "comment": "Bump @fluentui/react to v8.1.2",
994
- "author": "feodor@appveyor.com",
995
- "commit": "e21d069d3c5ae040a5990d3359a532f0742db21a",
996
- "package": "@fluentui/react-tabs"
997
- }
998
- ]
999
- }
1000
- },
1001
- {
1002
- "date": "Mon, 01 Mar 2021 07:20:46 GMT",
1003
- "tag": "@fluentui/react-tabs_v1.0.0-beta.56",
1004
- "version": "1.0.0-beta.56",
1005
- "comments": {
1006
- "patch": [
1007
- {
1008
- "comment": "Bump @fluentui/react to v8.1.1",
1009
- "author": "hantatsang@gmail.com",
1010
- "commit": "058c7645b6289f54e3cb378183096771e7fdddad",
1011
- "package": "@fluentui/react-tabs"
1012
- }
1013
- ]
1014
- }
1015
- },
1016
- {
1017
- "date": "Fri, 26 Feb 2021 01:16:27 GMT",
1018
- "tag": "@fluentui/react-tabs_v1.0.0-beta.55",
1019
- "version": "1.0.0-beta.55",
1020
- "comments": {
1021
- "prerelease": [
1022
- {
1023
- "comment": "Update references to major-bumped packages",
1024
- "author": "elcraig@microsoft.com",
1025
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1026
- "package": "@fluentui/react-tabs"
1027
- }
1028
- ],
1029
- "patch": [
1030
- {
1031
- "comment": "Bump @fluentui/common-styles to v1.0.1",
1032
- "author": "elcraig@microsoft.com",
1033
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1034
- "package": "@fluentui/react-tabs"
1035
- },
1036
- {
1037
- "comment": "Bump @fluentui/react to v8.1.0",
1038
- "author": "elcraig@microsoft.com",
1039
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1040
- "package": "@fluentui/react-tabs"
1041
- },
1042
- {
1043
- "comment": "Bump @fluentui/eslint-plugin to v1.0.1",
1044
- "author": "elcraig@microsoft.com",
1045
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1046
- "package": "@fluentui/react-tabs"
1047
- },
1048
- {
1049
- "comment": "Bump @fluentui/react-conformance to v0.2.2",
1050
- "author": "elcraig@microsoft.com",
1051
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1052
- "package": "@fluentui/react-tabs"
1053
- },
1054
- {
1055
- "comment": "Bump @fluentui/scripts to v1.0.0",
1056
- "author": "elcraig@microsoft.com",
1057
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1058
- "package": "@fluentui/react-tabs"
1059
- },
1060
- {
1061
- "comment": "Bump @fluentui/react-hooks to v8.0.1",
1062
- "author": "elcraig@microsoft.com",
1063
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1064
- "package": "@fluentui/react-tabs"
1065
- },
1066
- {
1067
- "comment": "Bump @fluentui/set-version to v8.0.1",
1068
- "author": "elcraig@microsoft.com",
1069
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1070
- "package": "@fluentui/react-tabs"
1071
- },
1072
- {
1073
- "comment": "Bump @fluentui/style-utilities to v8.0.1",
1074
- "author": "elcraig@microsoft.com",
1075
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1076
- "package": "@fluentui/react-tabs"
1077
- },
1078
- {
1079
- "comment": "Bump @fluentui/utilities to v8.0.1",
1080
- "author": "elcraig@microsoft.com",
1081
- "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
1082
- "package": "@fluentui/react-tabs"
1083
- }
1084
- ]
1085
- }
1086
- },
1087
- {
1088
- "date": "Thu, 25 Feb 2021 20:16:39 GMT",
1089
- "tag": "@fluentui/react-tabs_v1.0.0-beta.54",
1090
- "version": "1.0.0-beta.54",
1091
- "comments": {
1092
- "none": [
1093
- {
1094
- "comment": "Snapshot updates from icon changes",
1095
- "author": "sarah.higley@microsoft.com",
1096
- "commit": "23722afddd66499a1c29c511a01fe5f5ca191c76",
1097
- "package": "@fluentui/react-tabs"
1098
- }
1099
- ],
1100
- "prerelease": [
1101
- {
1102
- "comment": "Bump @fluentui/react to v8.0.0-beta.63",
1103
- "author": "sarah.higley@microsoft.com",
1104
- "commit": "23722afddd66499a1c29c511a01fe5f5ca191c76",
1105
- "package": "@fluentui/react-tabs"
1106
- }
1107
- ]
1108
- }
1109
- },
1110
- {
1111
- "date": "Thu, 25 Feb 2021 01:15:27 GMT",
1112
- "tag": "@fluentui/react-tabs_v1.0.0-beta.53",
1113
- "version": "1.0.0-beta.53",
1114
- "comments": {
1115
- "none": [
1116
- {
1117
- "comment": "make @fluentui/react-conformance public",
1118
- "author": "altinokd@microsoft.com",
1119
- "commit": "9de2c9938c00408da7746d4b3f6fe7f80b37e37f",
1120
- "package": "@fluentui/react-tabs"
1121
- }
1122
- ],
1123
- "patch": [
1124
- {
1125
- "comment": "Bump @fluentui/react-conformance to v0.2.1",
1126
- "author": "altinokd@microsoft.com",
1127
- "commit": "9de2c9938c00408da7746d4b3f6fe7f80b37e37f",
1128
- "package": "@fluentui/react-tabs"
1129
- }
1130
- ]
1131
- }
1132
- },
1133
- {
1134
- "date": "Wed, 24 Feb 2021 07:19:56 GMT",
1135
- "tag": "@fluentui/react-tabs_v1.0.0-beta.52",
1136
- "version": "1.0.0-beta.52",
1137
- "comments": {
1138
- "prerelease": [
1139
- {
1140
- "comment": "Bump @fluentui/react to v8.0.0-beta.61",
1141
- "author": "shi.cheng@microsoft.com",
1142
- "commit": "c17273e7dcdb5da25451da134b0c8259dbf72ca3",
1143
- "package": "@fluentui/react-tabs"
1144
- }
1145
- ]
1146
- }
1147
- },
1148
- {
1149
- "date": "Wed, 24 Feb 2021 00:05:29 GMT",
1150
- "tag": "@fluentui/react-tabs_v1.0.0-beta.51",
1151
- "version": "1.0.0-beta.51",
1152
- "comments": {
1153
- "prerelease": [
1154
- {
1155
- "comment": "Bump @fluentui/react to v8.0.0-beta.60",
1156
- "author": "martinhochel@microsoft.com",
1157
- "commit": "1d57d1929a9b713a5d717c93f35617b8c9340026",
1158
- "package": "@fluentui/react-tabs"
1159
- }
1160
- ]
1161
- }
1162
- },
1163
- {
1164
- "date": "Mon, 22 Feb 2021 12:26:22 GMT",
1165
- "tag": "@fluentui/react-tabs_v1.0.0-beta.50",
1166
- "version": "1.0.0-beta.50",
1167
- "comments": {
1168
- "prerelease": [
1169
- {
1170
- "comment": "Bump @fluentui/react to v8.0.0-beta.59",
1171
- "author": "elcraig@microsoft.com",
1172
- "commit": "d6fc0dc21b4eca678267c2beb17bdafe80f8890a",
1173
- "package": "@fluentui/react-tabs"
1174
- }
1175
- ]
1176
- }
1177
- },
1178
- {
1179
- "date": "Thu, 18 Feb 2021 19:38:50 GMT",
1180
- "tag": "@fluentui/react-tabs_v1.0.0-beta.49",
1181
- "version": "1.0.0-beta.49",
1182
- "comments": {
1183
- "prerelease": [
1184
- {
1185
- "comment": "Allow React 17 in peerDependencies",
1186
- "author": "elcraig@microsoft.com",
1187
- "commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4",
1188
- "package": "@fluentui/react-tabs"
1189
- }
1190
- ]
1191
- }
1192
- },
1193
- {
1194
- "date": "Thu, 18 Feb 2021 12:27:34 GMT",
1195
- "tag": "@fluentui/react-tabs_v1.0.0-beta.48",
1196
- "version": "1.0.0-beta.48",
1197
- "comments": {
1198
- "prerelease": [
1199
- {
1200
- "comment": "Bump @fluentui/react-hooks to v8.0.0-beta.13",
1201
- "author": "elcraig@microsoft.com",
1202
- "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
1203
- "package": "@fluentui/react-tabs"
1204
- }
1205
- ],
1206
- "none": [
1207
- {
1208
- "comment": "Bump @fluentui/react to v8.0.0-beta.57",
1209
- "author": "evlevy@microsoft.com",
1210
- "commit": "98d7d6b2ebcd4b2fa79c80b08e5719d5f0fdfa7f",
1211
- "package": "@fluentui/react-tabs"
1212
- }
1213
- ]
1214
- }
1215
- },
1216
- {
1217
- "date": "Wed, 17 Feb 2021 12:21:39 GMT",
1218
- "tag": "@fluentui/react-tabs_v1.0.0-beta.47",
1219
- "version": "1.0.0-beta.47",
1220
- "comments": {
1221
- "none": [
1222
- {
1223
- "comment": "chore: apply single version policy on jest",
1224
- "author": "martinhochel@microsoft.com",
1225
- "commit": "0de01d003589b5e2f166bc070729dca20125a091",
1226
- "package": "@fluentui/react-tabs"
1227
- },
1228
- {
1229
- "comment": "Bump @fluentui/react to v8.0.0-beta.56",
1230
- "author": "martinhochel@microsoft.com",
1231
- "commit": "0de01d003589b5e2f166bc070729dca20125a091",
1232
- "package": "@fluentui/react-tabs"
1233
- },
1234
- {
1235
- "comment": "Bump @fluentui/react-hooks to v8.0.0-beta.12",
1236
- "author": "martinhochel@microsoft.com",
1237
- "commit": "0de01d003589b5e2f166bc070729dca20125a091",
1238
- "package": "@fluentui/react-tabs"
1239
- },
1240
- {
1241
- "comment": "Bump @fluentui/set-version to v8.0.0-beta.1",
1242
- "author": "martinhochel@microsoft.com",
1243
- "commit": "0de01d003589b5e2f166bc070729dca20125a091",
1244
- "package": "@fluentui/react-tabs"
1245
- },
1246
- {
1247
- "comment": "Bump @fluentui/style-utilities to v8.0.0-beta.16",
1248
- "author": "martinhochel@microsoft.com",
1249
- "commit": "0de01d003589b5e2f166bc070729dca20125a091",
1250
- "package": "@fluentui/react-tabs"
1251
- },
1252
- {
1253
- "comment": "Bump @fluentui/common-styles to v1.0.0-beta.16",
1254
- "author": "martinhochel@microsoft.com",
1255
- "commit": "0de01d003589b5e2f166bc070729dca20125a091",
1256
- "package": "@fluentui/react-tabs"
1257
- },
1258
- {
1259
- "comment": "Bump @fluentui/utilities to v8.0.0-beta.12",
1260
- "author": "martinhochel@microsoft.com",
1261
- "commit": "0de01d003589b5e2f166bc070729dca20125a091",
1262
- "package": "@fluentui/react-tabs"
1263
- }
1264
- ],
1265
- "prerelease": [
1266
- {
1267
- "comment": "add labels to calendar tables, date header button, and tweak label wording for conciseness",
1268
- "author": "sarah.higley@microsoft.com",
1269
- "commit": "b6432f371a9ed22b31657dbe9b57699bbff439ba",
1270
- "package": "@fluentui/react-tabs"
1271
- }
1272
- ]
1273
- }
1274
- },
1275
- {
1276
- "date": "Mon, 15 Feb 2021 12:22:00 GMT",
1277
- "tag": "@fluentui/react-tabs_v1.0.0-beta.46",
1278
- "version": "1.0.0-beta.46",
1279
- "comments": {
1280
- "prerelease": [
1281
- {
1282
- "comment": "Bump @fluentui/react-hooks to v8.0.0-beta.12",
1283
- "author": "xgao@microsoft.com",
1284
- "commit": "d5a5a4f26ce900b3e1b3c0f6c46a17c2e3430439",
1285
- "package": "@fluentui/react-tabs"
1286
- }
1287
- ]
1288
- }
1289
- },
1290
- {
1291
- "date": "Fri, 12 Feb 2021 12:26:20 GMT",
1292
- "tag": "@fluentui/react-tabs_v1.0.0-beta.45",
1293
- "version": "1.0.0-beta.45",
1294
- "comments": {
1295
- "prerelease": [
1296
- {
1297
- "comment": "Bump @fluentui/react to v8.0.0-beta.54",
1298
- "author": "tristan.watanabe@gmail.com",
1299
- "commit": "bfc63e446500e60e38ac0ac0a023c7721152a832",
1300
- "package": "@fluentui/react-tabs"
1301
- }
1302
- ]
1303
- }
1304
- },
1305
- {
1306
- "date": "Thu, 11 Feb 2021 12:18:41 GMT",
1307
- "tag": "@fluentui/react-tabs_v1.0.0-beta.44",
1308
- "version": "1.0.0-beta.44",
1309
- "comments": {
1310
- "none": [
1311
- {
1312
- "comment": "Bump @fluentui/react to v8.0.0-beta.53",
1313
- "author": "martinhochel@microsoft.com",
1314
- "commit": "7566015a7edd355b4fcd3796bc8f44f732ef0877",
1315
- "package": "@fluentui/react-tabs"
1316
- }
1317
- ]
1318
- }
1319
- },
1320
- {
1321
- "date": "Thu, 11 Feb 2021 00:58:10 GMT",
1322
- "tag": "@fluentui/react-tabs_v1.0.0-beta.44",
1323
- "version": "1.0.0-beta.44",
1324
- "comments": {
1325
- "prerelease": [
1326
- {
1327
- "comment": "Remove compat Button imports",
1328
- "author": "elcraig@microsoft.com",
1329
- "commit": "70b63061357489ccc43878d0d0b054953690d5b2",
1330
- "package": "@fluentui/react-tabs"
1331
- }
1332
- ]
1333
- }
1334
- },
1335
- {
1336
- "date": "Wed, 10 Feb 2021 12:20:53 GMT",
1337
- "tag": "@fluentui/react-tabs_v1.0.0-beta.43",
1338
- "version": "1.0.0-beta.43",
1339
- "comments": {
1340
- "prerelease": [
1341
- {
1342
- "comment": "Bump @fluentui/react to v8.0.0-beta.52",
1343
- "author": "tristan.watanabe@gmail.com",
1344
- "commit": "06e8eda9b5b6eefb3c3c9d34a92998e605a99e8f",
1345
- "package": "@fluentui/react-tabs"
1346
- }
1347
- ]
1348
- }
1349
- },
1350
- {
1351
- "date": "Tue, 09 Feb 2021 12:24:19 GMT",
1352
- "tag": "@fluentui/react-tabs_v1.0.0-beta.42",
1353
- "version": "1.0.0-beta.42",
1354
- "comments": {
1355
- "prerelease": [
1356
- {
1357
- "comment": "Combine react-internal back into react, and update references",
1358
- "author": "elcraig@microsoft.com",
1359
- "commit": "47b42efbbe9e869864973f3b2cb717e6112b8106",
1360
- "package": "@fluentui/react-tabs"
1361
- }
1362
- ]
1363
- }
1364
- },
1365
- {
1366
- "date": "Tue, 09 Feb 2021 00:56:52 GMT",
1367
- "tag": "@fluentui/react-tabs_v1.0.0-beta.41",
1368
- "version": "1.0.0-beta.41",
1369
- "comments": {
1370
- "prerelease": [
1371
- {
1372
- "comment": "Bump @fluentui/react-internal to v8.0.0-beta.44",
1373
- "author": "ololubek@microsoft.com",
1374
- "commit": "e5458229c84393f83f794decc68e3b9a36d96fbb",
1375
- "package": "@fluentui/react-tabs"
1376
- }
1377
- ]
1378
- }
1379
- },
1380
- {
1381
- "date": "Fri, 05 Feb 2021 12:20:17 GMT",
1382
- "tag": "@fluentui/react-tabs_v1.0.0-beta.40",
1383
- "version": "1.0.0-beta.40",
1384
- "comments": {
1385
- "none": [
1386
- {
1387
- "comment": "Bump @fluentui/react-internal to v8.0.0-beta.43",
1388
- "author": "czearing@outlook.com",
1389
- "commit": "0d0fe5677db29dc9c850a013d98fc381bc941f91",
1390
- "package": "@fluentui/react-tabs"
1391
- }
1392
- ]
1393
- }
1394
- },
1395
- {
1396
- "date": "Wed, 03 Feb 2021 05:51:40 GMT",
1397
- "tag": "@fluentui/react-tabs_v1.0.0-beta.40",
1398
- "version": "1.0.0-beta.40",
1399
- "comments": {
1400
- "none": [
1401
- {
1402
- "comment": "refactor: remove unused .npmrc in packages",
1403
- "author": "hantatsang@gmail.com",
1404
- "commit": "c688ee2ea6f192c4874974ebf11598523ccf6db9",
1405
- "package": "@fluentui/react-tabs"
1406
- }
1407
- ]
1408
- }
1409
- },
1410
- {
1411
- "date": "Mon, 01 Feb 2021 12:23:48 GMT",
1412
- "tag": "@fluentui/react-tabs_v1.0.0-beta.39",
1413
- "version": "1.0.0-beta.39",
1414
- "comments": {
1415
- "prerelease": [
1416
- {
1417
- "comment": "Remove react-theme-provider exports from react-tabs.",
1418
- "author": "xgao@microsoft.com",
1419
- "commit": "4f9fe37e9be56a7e2ceb81eec8dbe9f7aa6a64be",
1420
- "package": "@fluentui/react-tabs"
1421
- },
1422
- {
1423
- "comment": "Moving Pivot from react-tabs back to react-internal.",
1424
- "author": "humbertomakotomorimoto@gmail.com",
1425
- "commit": "76f6043e4123577e17fecf64f536841bf543d32b",
1426
- "package": "@fluentui/react-tabs"
1427
- }
1428
- ]
1429
- }
1430
- },
1431
- {
1432
- "date": "Thu, 28 Jan 2021 12:25:56 GMT",
1433
- "tag": "@fluentui/react-tabs_v1.0.0-beta.37",
1434
- "version": "1.0.0-beta.37",
1435
- "comments": {
1436
- "none": [
1437
- {
1438
- "comment": "Delete update-api script which is no longer needed",
1439
- "author": "elcraig@microsoft.com",
1440
- "commit": "943a9ef5768a9cd77ade84217d142f93b1be6127",
1441
- "package": "@fluentui/react-tabs"
1442
- },
1443
- {
1444
- "comment": "Remove incorrect mock of requestAnimationFrame",
1445
- "author": "elcraig@microsoft.com",
1446
- "commit": "6bd0ce75decd9f62c40967bd7a59bfff960a0105",
1447
- "package": "@fluentui/react-tabs"
1448
- }
1449
- ],
1450
- "prerelease": [
1451
- {
1452
- "comment": "Updating to webpack 5, latest typings, latest loaders and plugins.",
1453
- "author": "dzearing@microsoft.com",
1454
- "commit": "9c2c4a61c7d9eb8d153945ff57962118b569ea5b",
1455
- "package": "@fluentui/react-tabs"
1456
- },
1457
- {
1458
- "comment": "Clean up some prop comments and deprecated messages",
1459
- "author": "elcraig@microsoft.com",
1460
- "commit": "2e22b74a17aa6a8ce8d354730717b9517cdef7cd",
1461
- "package": "@fluentui/react-tabs"
1462
- },
1463
- {
1464
- "comment": "Update high contrast to support forced colors",
1465
- "author": "sareiff@microsoft.com",
1466
- "commit": "f9189e435dc8e73337ff40c54ac6af47567d9639",
1467
- "package": "@fluentui/react-tabs"
1468
- }
1469
- ]
1470
- }
1471
- },
1472
- {
1473
- "date": "Tue, 26 Jan 2021 12:33:19 GMT",
1474
- "tag": "@fluentui/react-tabs_v1.0.0-beta.35",
1475
- "version": "1.0.0-beta.35",
1476
- "comments": {
1477
- "prerelease": [
1478
- {
1479
- "comment": "Remove doNotLayer from Pivot/Tabs overflow menu",
1480
- "author": "behowell@microsoft.com",
1481
- "commit": "21f0fdb42254e758cb935494c5a8721337fa8e02",
1482
- "package": "@fluentui/react-tabs"
1483
- }
1484
- ]
1485
- }
1486
- },
1487
- {
1488
- "date": "Thu, 21 Jan 2021 12:36:12 GMT",
1489
- "tag": "@fluentui/react-tabs_v1.0.0-beta.33",
1490
- "version": "1.0.0-beta.33",
1491
- "comments": {
1492
- "prerelease": [
1493
- {
1494
- "comment": " Updating dev dependencies.",
1495
- "author": "dzearing@microsoft.com",
1496
- "commit": "f7813725750ecc893ca37792bbb004e554591279",
1497
- "package": "@fluentui/react-tabs"
1498
- }
1499
- ]
1500
- }
1501
- },
1502
- {
1503
- "date": "Wed, 20 Jan 2021 12:22:46 GMT",
1504
- "tag": "@fluentui/react-tabs_v1.0.0-beta.32",
1505
- "version": "1.0.0-beta.32",
1506
- "comments": {
1507
- "none": [
1508
- {
1509
- "comment": "Update test snapshots due to change in react-internal",
1510
- "author": "mathew.olinger@outlook.com",
1511
- "commit": "4ad32be65728af8b75daa8386112349a636d1b14",
1512
- "package": "@fluentui/react-tabs"
1513
- }
1514
- ]
1515
- }
1516
- },
1517
- {
1518
- "date": "Tue, 03 Nov 2020 12:32:23 GMT",
1519
- "tag": "@fluentui/react-tabs_v1.0.0-beta.7",
1520
- "version": "1.0.0-beta.7",
1521
- "comments": {
1522
- "prerelease": [
1523
- {
1524
- "comment": "Remove abandoned scss-based Pivot from react-tabs/next folder",
1525
- "author": "behowell@microsoft.com",
1526
- "commit": "d34a9ef992fea7877ffe1e7691b6794155cc0e48",
1527
- "package": "@fluentui/react-tabs"
1528
- }
1529
- ]
1530
- }
1531
- },
1532
- {
1533
- "date": "Mon, 02 Nov 2020 12:32:47 GMT",
1534
- "tag": "@fluentui/react-tabs_v1.0.0-beta.6",
1535
- "version": "1.0.0-beta.6",
1536
- "comments": {
1537
- "prerelease": [
1538
- {
1539
- "comment": "Create the Tabs component as a renamed clone of the Pivot component",
1540
- "author": "behowell@microsoft.com",
1541
- "commit": "4f09ae6072f6f42512d64a8ea5f88763111c57ec",
1542
- "package": "@fluentui/react-tabs"
1543
- }
1544
- ]
1545
- }
1546
- },
1547
- {
1548
- "date": "Fri, 23 Oct 2020 03:26:15 GMT",
1549
- "tag": "@fluentui/react-tabs_v1.0.0-beta.0",
1550
- "version": "1.0.0-beta.0",
1551
- "comments": {
1552
- "prerelease": [
1553
- {
1554
- "comment": "Pivot overflow: fix scrollbars appearing when the window is just barely wide enough to show all tabs",
1555
- "author": "behowell@microsoft.com",
1556
- "commit": "c6e8a4b4b6355e068a7f672a240da769c5dc8bd7",
1557
- "package": "@fluentui/react-tabs"
1558
- },
1559
- {
1560
- "comment": "Rename office-ui-fabric-react package and update references",
1561
- "author": "elcraig@microsoft.com",
1562
- "commit": "c23194868dfef332395fef60df74d2e86dff7241",
1563
- "package": "@fluentui/react-tabs"
1564
- },
1565
- {
1566
- "comment": "Remove unneeded package dependencies.",
1567
- "author": "xgao@microsoft.com",
1568
- "commit": "9775badfc989f8820a437367a53f761cc3ca7512",
1569
- "package": "@fluentui/react-tabs"
1570
- },
1571
- {
1572
- "comment": "Removing findDOMNode usage from Pivot within react-tabs.",
1573
- "author": "czearing@outlook.com",
1574
- "commit": "b4472b18090f070d8ab97d3949baa4b1f960720f",
1575
- "package": "@fluentui/react-tabs"
1576
- },
1577
- {
1578
- "comment": "Rename @uifabric/styling to @fluentui/style-utilities",
1579
- "author": "elcraig@microsoft.com",
1580
- "commit": "5158b5e4050cb04e9c22e0d5292cd96cc674746e",
1581
- "package": "@fluentui/react-tabs"
1582
- },
1583
- {
1584
- "comment": "Fix check for ResizeObserver, which was causing errors in the testing framework @testing-library/react",
1585
- "author": "behowell@microsoft.com",
1586
- "commit": "bbfdb1f4da476bfb7c293cbf96293738542f5ee2",
1587
- "package": "@fluentui/react-tabs"
1588
- },
1589
- {
1590
- "comment": "Updating imports for Button component to import from the compat folder.",
1591
- "author": "humbertomakotomorimoto@gmail.com",
1592
- "commit": "9c92b506d8139d1ab596caaec276774d9ae27b81",
1593
- "package": "@fluentui/react-tabs"
1594
- },
1595
- {
1596
- "comment": "Rename @uifabric/icons to @fluentui/font-icons-mdl2",
1597
- "author": "ololubek@microsoft.com",
1598
- "commit": "d3bafa5b1bd0cc45ce7ba9c7888d4b670b512feb",
1599
- "package": "@fluentui/react-tabs"
1600
- },
1601
- {
1602
- "comment": "Rename @uifabric/set-version to @fluentui/set-version",
1603
- "author": "ololubek@microsoft.com",
1604
- "commit": "2eba5d5be163a7a64975f058dc38b465f2363064",
1605
- "package": "@fluentui/react-tabs"
1606
- },
1607
- {
1608
- "comment": "Rename @uifabric/react-hooks to @fluentui/react-hooks & @uifabric/utilities to @fluentui/utilities",
1609
- "author": "ololubek@microsoft.com",
1610
- "commit": "c6ae2b350037deb4e0bea07cdbdfe2e93455f4b1",
1611
- "package": "@fluentui/react-tabs"
1612
- }
1613
- ],
1614
- "none": [
1615
- {
1616
- "comment": "Update npmignore",
1617
- "author": "elcraig@microsoft.com",
1618
- "commit": "aec02d96e7cef745e9867c03a528426a5ad28038",
1619
- "package": "@fluentui/react-tabs"
1620
- },
1621
- {
1622
- "comment": "Fix imports in scss files to avoid requiring a build",
1623
- "author": "elcraig@microsoft.com",
1624
- "commit": "d2fedc85c81bb0e2d86495ec1e928604bf2260f4",
1625
- "package": "@fluentui/react-tabs"
1626
- },
1627
- {
1628
- "comment": "Rename build-related packages",
1629
- "author": "elcraig@microsoft.com",
1630
- "commit": "32a158fd2c7fca8dc308a3e41f692817e6c26c44",
1631
- "package": "@fluentui/react-tabs"
345
+ "author": "beachball",
346
+ "package": "@fluentui/react-tabs",
347
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
348
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1632
349
  },
1633
350
  {
1634
- "comment": "Update package version for @fluentui/react version 8 beta release.",
1635
- "author": "xgao@microsoft.com",
1636
- "commit": "ee2622a8572c11f1eeb9d7f1c8d759d6ae0281ca",
1637
- "package": "@fluentui/react-tabs"
1638
- }
1639
- ]
1640
- }
1641
- },
1642
- {
1643
- "date": "Fri, 25 Sep 2020 12:25:17 GMT",
1644
- "tag": "@fluentui/react-tabs_v0.6.8",
1645
- "version": "0.6.8",
1646
- "comments": {
1647
- "patch": [
1648
- {
1649
- "comment": "Moving examples to @fluentui/examples package.",
1650
- "author": "humbertomakotomorimoto@gmail.com",
1651
- "commit": "85432b281ce55e1a990dd811e5adebbad84e7cb8",
1652
- "package": "@fluentui/react-tabs"
1653
- }
1654
- ]
1655
- }
1656
- },
1657
- {
1658
- "date": "Thu, 24 Sep 2020 00:46:56 GMT",
1659
- "tag": "@fluentui/react-tabs_v0.6.7",
1660
- "version": "0.6.7",
1661
- "comments": {
1662
- "patch": [
1663
- {
1664
- "comment": "Fix HC styling for pivot tabs to show text when selected",
1665
- "author": "ololubek@microsoft.com",
1666
- "commit": "7b57bf749e164deabebe3ed9fe61804a6eeb0f4e",
1667
- "package": "@fluentui/react-tabs"
1668
- }
1669
- ]
1670
- }
1671
- },
1672
- {
1673
- "date": "Wed, 23 Sep 2020 12:27:48 GMT",
1674
- "tag": "@fluentui/react-tabs_v0.6.6",
1675
- "version": "0.6.6",
1676
- "comments": {
1677
- "none": [
1678
- {
1679
- "comment": "Adding conformant tests to v8 component test files.",
1680
- "author": "czearing@outlook.com",
1681
- "commit": "261dea7a150115ce904768724cbeac80ded20382",
1682
- "package": "@fluentui/react-tabs"
1683
- }
1684
- ]
1685
- }
1686
- },
1687
- {
1688
- "date": "Tue, 22 Sep 2020 12:25:45 GMT",
1689
- "tag": "@fluentui/react-tabs_v0.6.5",
1690
- "version": "0.6.5",
1691
- "comments": {
1692
- "patch": [
1693
- {
1694
- "comment": "Clean up comments for defaultSelectedKey.",
1695
- "author": "xgao@microsoft.com",
1696
- "commit": "1cff4ccd5d4c73ec0e1a9ae18dcb2beee28cb6e9",
1697
- "package": "@fluentui/react-tabs"
1698
- }
1699
- ]
1700
- }
1701
- },
1702
- {
1703
- "date": "Wed, 16 Sep 2020 12:27:22 GMT",
1704
- "tag": "@fluentui/react-tabs_v0.6.0",
1705
- "version": "0.6.0",
1706
- "comments": {
1707
- "minor": [
1708
- {
1709
- "comment": "Add missing ref prop typing.",
1710
- "author": "xgao@microsoft.com",
1711
- "commit": "a17c428e073721e981aaa402339d37b87fd8d385",
1712
- "package": "@fluentui/react-tabs"
1713
- }
1714
- ],
1715
- "none": [
1716
- {
1717
- "comment": "Update API Extractor settings to share config and handle newlines better",
1718
- "author": "elcraig@microsoft.com",
1719
- "commit": "7d093f59a06527fc39656c903cab4470650e3acd",
1720
- "package": "@fluentui/react-tabs"
1721
- }
1722
- ]
1723
- }
1724
- },
1725
- {
1726
- "date": "Mon, 14 Sep 2020 12:22:12 GMT",
1727
- "tag": "@fluentui/react-tabs_v0.5.11",
1728
- "version": "0.5.11",
1729
- "comments": {
1730
- "none": [
1731
- {
1732
- "comment": "Fix API file newlines",
1733
- "author": "elcraig@microsoft.com",
1734
- "commit": "728b287a05f3c521e3b1ab7ea58071ac07d7c727",
1735
- "package": "@fluentui/react-tabs"
1736
- }
1737
- ]
1738
- }
1739
- },
1740
- {
1741
- "date": "Thu, 27 Aug 2020 12:36:50 GMT",
1742
- "tag": "@fluentui/react-tabs_v0.4.0",
1743
- "version": "0.4.0",
1744
- "comments": {
1745
- "minor": [
1746
- {
1747
- "comment": "Update to use merge-styles instead of scss; move scss code to next folder.",
1748
- "author": "xgao@microsoft.com",
1749
- "commit": "84fb66faa186229dfbf011555eb1447c2401fe24",
1750
- "package": "@fluentui/react-tabs"
1751
- }
1752
- ]
1753
- }
1754
- },
1755
- {
1756
- "date": "Tue, 18 Aug 2020 07:58:00 GMT",
1757
- "tag": "@fluentui/react-tabs_v0.2.14",
1758
- "version": "0.2.14",
1759
- "comments": {
1760
- "patch": [
1761
- {
1762
- "comment": "fix publishing by syncing packages (#12715)",
1763
- "author": "kchau@microsoft.com",
1764
- "commit": "88c5b45032954e263c03ec211b950e618f9d5996",
1765
- "package": "@fluentui/react-tabs"
1766
- }
1767
- ]
1768
- }
1769
- },
1770
- {
1771
- "date": "Wed, 12 Aug 2020 18:34:18 GMT",
1772
- "tag": "@fluentui/react-tabs_v0.2.11",
1773
- "version": "0.2.11",
1774
- "comments": {
1775
- "patch": [
1776
- {
1777
- "comment": "update ThemeProvider to support v7 theme",
1778
- "author": "xgao@microsoft.com",
1779
- "commit": "306edd737757ba27ae55332825d200fddcfa5bd7",
1780
- "package": "@fluentui/react-tabs"
1781
- }
1782
- ]
1783
- }
1784
- },
1785
- {
1786
- "date": "Wed, 05 Aug 2020 12:39:43 GMT",
1787
- "tag": "@fluentui/react-tabs_v0.2.5",
1788
- "version": "0.2.5",
1789
- "comments": {
1790
- "none": [
1791
- {
1792
- "comment": "Add ways to test with strict mode",
1793
- "author": "elcraig@microsoft.com",
1794
- "commit": "9067994208834f125ce36e2a92e5bd83139bb243",
1795
- "package": "@fluentui/react-tabs"
1796
- }
1797
- ]
1798
- }
1799
- },
1800
- {
1801
- "date": "Tue, 04 Aug 2020 12:42:32 GMT",
1802
- "tag": "@fluentui/react-tabs_v0.2.4",
1803
- "version": "0.2.4",
1804
- "comments": {
1805
- "patch": [
1806
- {
1807
- "comment": "update snapshots",
1808
- "author": "ololubek@microsoft.com",
1809
- "commit": "4d82fc74127e0d905735b1755fb525a49bea9478",
1810
- "package": "@fluentui/react-tabs"
1811
- }
1812
- ]
1813
- }
1814
- },
1815
- {
1816
- "date": "Mon, 03 Aug 2020 12:45:42 GMT",
1817
- "tag": "@fluentui/react-tabs_v0.2.3",
1818
- "version": "0.2.3",
1819
- "comments": {
1820
- "patch": [
1821
- {
1822
- "comment": "update snapshots",
1823
- "author": "ololubek@microsoft.com",
1824
- "commit": "4eef39d7498c16082b380c71779204a3483d329e",
1825
- "package": "@fluentui/react-tabs"
1826
- }
1827
- ]
1828
- }
1829
- },
1830
- {
1831
- "date": "Fri, 31 Jul 2020 12:47:45 GMT",
1832
- "tag": "@fluentui/react-tabs_v0.2.2",
1833
- "version": "0.2.2",
1834
- "comments": {
1835
- "none": [
1836
- {
1837
- "comment": "Use withThemeProvider storybook decorator from @fluentui/storybook package.",
1838
- "author": "xgao@microsoft.com",
1839
- "commit": "eaada6f8e6499585952528ac8ebead0a8e7da906",
1840
- "package": "@fluentui/react-tabs"
1841
- }
1842
- ]
1843
- }
1844
- },
1845
- {
1846
- "date": "Mon, 27 Jul 2020 12:42:21 GMT",
1847
- "tag": "@fluentui/react-tabs_v0.2.0",
1848
- "version": "0.2.0",
1849
- "comments": {
1850
- "minor": [
1851
- {
1852
- "comment": "Export ThemeProvider, and update README to mention the ThemeProvider that's required for proper styling",
1853
- "author": "behowell@microsoft.com",
1854
- "commit": "20caabd592970eef8431d4b47c923e54767e3d3e",
1855
- "package": "@fluentui/react-tabs"
1856
- }
1857
- ]
1858
- }
1859
- },
1860
- {
1861
- "date": "Thu, 23 Jul 2020 12:43:51 GMT",
1862
- "tag": "@fluentui/react-tabs_v0.1.2",
1863
- "version": "0.1.2",
1864
- "comments": {
1865
- "patch": [
1866
- {
1867
- "comment": "Move shared .scss files to @fluentui/common-styles",
1868
- "author": "behowell@microsoft.com",
1869
- "commit": "940524c755d5cf60ca3f80b705e30fca61b2d5ba",
1870
- "package": "@fluentui/react-tabs"
1871
- }
1872
- ]
1873
- }
1874
- },
1875
- {
1876
- "date": "Wed, 22 Jul 2020 12:40:51 GMT",
1877
- "tag": "@fluentui/react-tabs_v0.1.1",
1878
- "version": "0.1.1",
1879
- "comments": {
1880
- "patch": [
1881
- {
1882
- "comment": "Move Pivot to @fluentui/react-tabs package",
1883
- "author": "behowell@microsoft.com",
1884
- "commit": "1b833965d061b57d71cf621a006ed7ef13ccffd8",
1885
- "package": "@fluentui/react-tabs"
351
+ "author": "beachball",
352
+ "package": "@fluentui/react-tabs",
353
+ "comment": "Bump @fluentui/react-context-selector to v9.0.0-rc.1",
354
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1886
355
  }
1887
356
  ]
1888
357
  }