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