Skip to content

Commit cb6e47d

Browse files
Merge pull request #211 from a1mery/JoinNewTeams-upgrade-1.23
Upgrade PrimaryTextCard-Graph-JoinNewTeams to SPFx 1.23 Thanks for the update.
2 parents a4de362 + fd15e7a commit cb6e47d

26 files changed

Lines changed: 16850 additions & 20978 deletions

samples/PrimaryTextCard-Graph-JoinNewTeams/.eslintrc.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

samples/PrimaryTextCard-Graph-JoinNewTeams/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,7 @@ obj
3333
*.scss.ts
3434

3535
.heft
36+
lib-dts
37+
lib-commonjs
38+
lib-esm
39+
jest-output

samples/PrimaryTextCard-Graph-JoinNewTeams/.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"configurations": [
88
{
99
"name": "Hosted workbench",
10-
"type": "chrome",
10+
"type": "msedge",
1111
"request": "launch",
12-
"url": "https://enter-your-SharePoint-site/_layouts/workbench.aspx",
12+
"url": "https://{tenantDomain}/_layouts/workbench.aspx",
1313
"webRoot": "${workspaceRoot}",
1414
"sourceMaps": true,
1515
"sourceMapPathOverrides": {

samples/PrimaryTextCard-Graph-JoinNewTeams/.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"**/bower_components": true,
88
"**/coverage": true,
99
"**/lib-amd": true,
10-
"src/**/*.scss.ts": true
10+
"src/**/*.scss.ts": true,
11+
"**/jest-output": true
1112
},
1213
"typescript.tsdk": ".\\node_modules\\typescript\\lib"
1314
}

samples/PrimaryTextCard-Graph-JoinNewTeams/.yo-rc.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
"@microsoft/generator-sharepoint": {
33
"plusBeta": true,
44
"isCreatingSolution": true,
5+
"useGulp": false,
56
"environment": "spo",
6-
"version": "1.16.1",
7+
"version": "1.23.0",
78
"nodeVersion": "14.18.2",
89
"libraryName": "new-teams",
910
"libraryId": "3d234977-0365-4ec7-ab4a-8cc91fcca7f1",
@@ -14,7 +15,7 @@
1415
"aceTemplateType": "PrimaryText",
1516
"sdkVersions": {
1617
"@microsoft/microsoft-graph-client": "3.0.2",
17-
"@microsoft/teams-js": "2.4.1"
18+
"@microsoft/teams-js": "2.24.0"
1819
}
1920
}
2021
}

samples/PrimaryTextCard-Graph-JoinNewTeams/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This sample shows how to build an ACE that displays recently created Teams.
2020

2121
## Used SharePoint Framework Version
2222

23-
![version](https://img.shields.io/badge/version-1.16.1-green.svg)
23+
![version](https://img.shields.io/badge/version-1.23-green.svg)
2424
![SharePoint Online](https://img.shields.io/badge/SharePoint-Online-yellow.svg)
2525

2626
## Applies to
@@ -53,6 +53,7 @@ Version|Date|Comments
5353
-------|----|--------
5454
1.0|February 28, 2021|Initial release
5555
1.1|March 06, 2023|Upgrade to SPFx v1.16.1
56+
1.2|May 28, 2026|Upgrade to SPFx v1.23.0
5657

5758
## Disclaimer
5859

samples/PrimaryTextCard-Graph-JoinNewTeams/config/package-solution.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"solution": {
44
"name": "new-teams-client-side-solution",
55
"id": "3d234977-0365-4ec7-ab4a-8cc91fcca7f1",
6-
"version": "1.1.0.0",
6+
"version": "1.2.0.0",
77
"includeClientSideAssets": true,
88
"skipFeatureDeployment": true,
99
"isDomainIsolated": false,
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
// The "rig.json" file directs tools to look for their config files in an external package.
3+
// Documentation for this system: https://www.npmjs.com/package/@rushstack/rig-package
4+
"$schema": "https://developer.microsoft.com/json-schemas/rig-package/rig.schema.json",
5+
6+
"rigPackageName": "@microsoft/spfx-web-build-rig"
7+
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/sass.schema.json"
2+
"$schema": "https://developer.microsoft.com/json-schemas/heft/v0/heft-sass-plugin.schema.json",
3+
"extends": "@microsoft/spfx-web-build-rig/profiles/default/config/sass.json"
34
}

samples/PrimaryTextCard-Graph-JoinNewTeams/config/serve.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
33
"port": 4321,
44
"https": true,
5-
"initialPage": "https://enter-your-SharePoint-site/_layouts/workbench.aspx"
5+
"initialPage": "https://{tenantDomain}/_layouts/workbench.aspx"
66
}

0 commit comments

Comments
 (0)