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

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