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