@fluentui/react-tabs 9.0.0-rc.5 → 9.0.1
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 +134 -1
- package/CHANGELOG.md +44 -2
- package/MIGRATION.md +14 -0
- package/README.md +22 -3
- package/Spec.md +13 -83
- package/lib/components/Tab/Tab.js.map +1 -1
- package/lib/components/Tab/renderTab.js.map +1 -1
- package/lib/components/Tab/useTab.js.map +1 -1
- package/lib/components/Tab/useTabAnimatedIndicator.js +15 -11
- package/lib/components/Tab/useTabAnimatedIndicator.js.map +1 -1
- package/lib/components/Tab/useTabStyles.js +12 -2
- package/lib/components/Tab/useTabStyles.js.map +1 -1
- package/lib/components/TabList/TabList.js.map +1 -1
- package/lib/components/TabList/TabListContext.js.map +1 -1
- package/lib/components/TabList/renderTabList.js.map +1 -1
- package/lib/components/TabList/useTabList.js.map +1 -1
- package/lib/components/TabList/useTabListContextValues.js.map +1 -1
- package/lib/components/TabList/useTabListStyles.js.map +1 -1
- package/lib-commonjs/components/Tab/Tab.js.map +1 -1
- package/lib-commonjs/components/Tab/renderTab.js.map +1 -1
- package/lib-commonjs/components/Tab/useTab.js.map +1 -1
- package/lib-commonjs/components/Tab/useTabAnimatedIndicator.js +15 -11
- package/lib-commonjs/components/Tab/useTabAnimatedIndicator.js.map +1 -1
- package/lib-commonjs/components/Tab/useTabStyles.js +12 -2
- package/lib-commonjs/components/Tab/useTabStyles.js.map +1 -1
- package/lib-commonjs/components/TabList/TabList.js.map +1 -1
- package/lib-commonjs/components/TabList/TabListContext.js.map +1 -1
- package/lib-commonjs/components/TabList/renderTabList.js.map +1 -1
- package/lib-commonjs/components/TabList/useTabList.js.map +1 -1
- package/lib-commonjs/components/TabList/useTabListContextValues.js.map +1 -1
- package/lib-commonjs/components/TabList/useTabListStyles.js.map +1 -1
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +10 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluentui/react-tabs",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.1",
|
|
4
4
|
"description": "Fluent UI React tabs components",
|
|
5
5
|
"main": "lib-commonjs/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
@@ -27,30 +27,27 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@fluentui/eslint-plugin": "*",
|
|
29
29
|
"@fluentui/react-conformance": "*",
|
|
30
|
-
"@fluentui/react-conformance-griffel": "9.0.0-beta.
|
|
31
|
-
"@fluentui/react-context-selector": "9.0.0-rc.10",
|
|
30
|
+
"@fluentui/react-conformance-griffel": "9.0.0-beta.10",
|
|
32
31
|
"@fluentui/scripts": "^1.0.0"
|
|
33
32
|
},
|
|
34
33
|
"dependencies": {
|
|
35
|
-
"@
|
|
36
|
-
"@fluentui/react-
|
|
37
|
-
"@fluentui/react-
|
|
38
|
-
"@fluentui/react-
|
|
39
|
-
"@
|
|
34
|
+
"@fluentui/react-context-selector": "^9.0.0",
|
|
35
|
+
"@fluentui/react-tabster": "^9.0.1",
|
|
36
|
+
"@fluentui/react-theme": "^9.0.0",
|
|
37
|
+
"@fluentui/react-utilities": "^9.0.0",
|
|
38
|
+
"@griffel/react": "^1.2.0",
|
|
40
39
|
"tslib": "^2.1.0"
|
|
41
40
|
},
|
|
42
41
|
"peerDependencies": {
|
|
43
42
|
"@types/react": ">=16.8.0 <18.0.0",
|
|
44
43
|
"@types/react-dom": ">=16.8.0 <18.0.0",
|
|
45
44
|
"react": ">=16.8.0 <18.0.0",
|
|
46
|
-
"react-dom": ">=16.8.0 <18.0.0"
|
|
45
|
+
"react-dom": ">=16.8.0 <18.0.0",
|
|
46
|
+
"scheduler": "^0.19.0 || ^0.20.0"
|
|
47
47
|
},
|
|
48
48
|
"beachball": {
|
|
49
|
-
"tag": "beta",
|
|
50
49
|
"disallowedChangeTypes": [
|
|
51
|
-
"major"
|
|
52
|
-
"minor",
|
|
53
|
-
"patch"
|
|
50
|
+
"major"
|
|
54
51
|
]
|
|
55
52
|
},
|
|
56
53
|
"exports": {
|