update to spfx 1.17.2

This commit is contained in:
Nick Brown 2023-05-15 20:41:37 +01:00
parent 9574051b8f
commit 863b7dad30
5 changed files with 26 additions and 58019 deletions

View File

@ -31,4 +31,4 @@ obj
*.resx.ts
# Styles Generated Code
*.scss.ts
*.scss.ts

View File

@ -2,11 +2,11 @@
"@microsoft/generator-sharepoint": {
"plusBeta": false,
"isCreatingSolution": true,
"version": "1.16.0",
"nodeVersion": "16.17.0",
"version": "1.17.2",
"nodeVersion": "16.20.0",
"sdksVersions": {
"@microsoft/microsoft-graph-client": "3.0.2",
"@microsoft/teams-js": "2.4.1"
"@microsoft/teams-js": "2.9.1"
},
"libraryName": "react-fluentui-9",
"libraryId": "d955a989-7441-475a-b4eb-ff132968b3c5",

View File

@ -14,7 +14,7 @@ This demos the use of the new [Fluent UI version 9](https://github.com/microsoft
| Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.|
|Refer to <https://aka.ms/spfx-matrix> for more information on SPFx compatibility. |
![SPFx 1.16.1](https://img.shields.io/badge/SPFx-1.16.1-green.svg)
![SPFx 1.17.2](https://img.shields.io/badge/SPFx-1.17.2-green.svg)
![Node.js v16](https://img.shields.io/badge/Node.js-v16-green.svg)
![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg)
![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower")
@ -48,8 +48,9 @@ This demos the use of the new [Fluent UI version 9](https://github.com/microsoft
Version|Date|Comments
-------|----|--------
1.0|April 20, 2022|Initial release
1.0.1|November 14, 2022|Updated to SPFx 15, latest Fluent UI 9, shim based theme mapping
1.0.2|January 18, 2023|Updated SPFx 16.1
1.0.1|November 14, 2022|Updated to SPFx 1.15, latest Fluent UI 9, shim based theme mapping
1.0.2|January 18, 2023|Updated SPFx 1.16.1
1.0.2|May 15, 2023|Updated SPFx 1.17.2, latest Fluent UI 9
- Clone this repository (or [download this solution as a .ZIP file](https://pnp.github.io/download-partial/?url=https://github.com/pnp/sp-dev-fx-webparts/tree/main/samples/react-fluentui-9) then unzip it)
- From your command-line, change your current directory to the directory containing this sample (`react-fluentui-9`, located under `samples`)

File diff suppressed because it is too large Load Diff

View File

@ -12,29 +12,31 @@
"test": "gulp test"
},
"dependencies": {
"@fluentui/react-components": "^9.10.1",
"@microsoft/sp-core-library": "1.16.1",
"@microsoft/sp-lodash-subset": "1.16.1",
"@microsoft/sp-office-ui-fabric-core": "1.16.1",
"@microsoft/sp-property-pane": "1.16.1",
"@microsoft/sp-webpart-base": "1.16.1",
"tslib": "2.3.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"tslib": "2.3.1"
"@fluentui/react-components": "^9.20.0",
"@microsoft/sp-core-library": "1.17.2",
"@microsoft/sp-component-base": "1.17.2",
"@microsoft/sp-property-pane": "1.17.2",
"@microsoft/sp-webpart-base": "1.17.2",
"@microsoft/sp-lodash-subset": "1.17.2",
"@microsoft/sp-office-ui-fabric-core": "1.17.2"
},
"devDependencies": {
"@microsoft/eslint-config-spfx": "1.16.1",
"@microsoft/eslint-plugin-spfx": "1.16.1",
"@microsoft/rush-stack-compiler-4.5": "0.2.2",
"@microsoft/sp-build-web": "1.16.1",
"@microsoft/sp-module-interfaces": "1.16.1",
"@microsoft/rush-stack-compiler-4.5": "0.5.0",
"@rushstack/eslint-config": "2.5.1",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.17",
"@microsoft/eslint-plugin-spfx": "1.17.2",
"@microsoft/eslint-config-spfx": "1.17.2",
"@microsoft/sp-build-web": "1.17.2",
"@types/webpack-env": "~1.15.2",
"ajv": "^6.12.5",
"eslint-plugin-react-hooks": "4.3.0",
"eslint": "8.7.0",
"gulp": "4.0.2",
"typescript": "4.5.5"
"typescript": "4.5.5",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.17",
"eslint-plugin-react-hooks": "4.3.0",
"@microsoft/sp-module-interfaces": "1.17.2"
}
}