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