@microsoft/teamsfx-react 3.0.0-alpha.46da7cd00.0 → 3.0.0-alpha.71fbf8ea7.0
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/README.md +11 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -34,10 +34,19 @@ npm install @microsoft/teamsfx-react
|
|
|
34
34
|
|
|
35
35
|
Please also install the peer dependencies if you are using npm 6.
|
|
36
36
|
```bash
|
|
37
|
-
npm install @microsoft/teamsfx@^2.0.0 @microsoft/teams-js@^2.0.0 react@^
|
|
37
|
+
npm install @microsoft/teamsfx@^2.0.0 @microsoft/teams-js@^2.0.0 react@^18.2.0 react-dom@^18.2.0 @fluentui/react-components@^9.16.0 @microsoft/microsoft-graph-client@^3.0.1
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
Note
|
|
40
|
+
#### Note
|
|
41
|
+
|
|
42
|
+
For `@microsoft/teamsfx-react@^3.0.0`, it migrated to use `@fluentui/react-components` and did not support `@fluentui/react-northstar` any longer. If you still wish to use `@fluentui/react-northstar`, please use `@microsoft/teamsfx-react@<3.0.0`. To install the peer dependencies, you could use the following line:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
npm install @microsoft/teamsfx@^2.0.0 @microsoft/teams-js@^2.0.0 react@^16.8.6 react-dom@^16.8.6 @fluentui/react-northstar@^0.62.0 @microsoft/microsoft-graph-client@^3.0.1
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
For `@microsoft/teamsfx-react@^2.0.0` and `@microsoft/teamsfx-react@^3.0.0`, they depend on `@microsoft/teamsfx@^2.0.0` and `@microsoft/teams-js@^2.0.0`. If you wish to use lower versions, please install the peer dependencies as follows:
|
|
49
|
+
|
|
41
50
|
```bash
|
|
42
51
|
npm install @microsoft/teamsfx@^0.6.0 react@^16.8.6 @fluentui/react-northstar@^0.60.1 msteams-react-base-component@^3.1.1
|
|
43
52
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/teamsfx-react",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.71fbf8ea7.0",
|
|
4
4
|
"description": "React helper functions for Microsoft TeamsFx",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@fluentui/react-components": "^9.15.0",
|
|
32
32
|
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
33
|
-
"@microsoft/eslint-plugin-teamsfx": "0.0.2-alpha.
|
|
33
|
+
"@microsoft/eslint-plugin-teamsfx": "0.0.2-alpha.71fbf8ea7.0",
|
|
34
34
|
"@microsoft/microsoft-graph-client": "^3.0.1",
|
|
35
35
|
"@microsoft/teams-js": "^2.0.0",
|
|
36
|
-
"@microsoft/teamsfx": "2.2.1-alpha.
|
|
36
|
+
"@microsoft/teamsfx": "2.2.1-alpha.71fbf8ea7.0",
|
|
37
37
|
"@testing-library/react": "^13.4.0",
|
|
38
38
|
"@types/enzyme": "^3.10.10",
|
|
39
39
|
"@types/jest": "^29.4.0",
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"npx eslint --cache --fix --quiet"
|
|
86
86
|
]
|
|
87
87
|
},
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "434d4d1dc1f9b378fc7bc94544037e4eb99d7a87"
|
|
89
89
|
}
|