Skip to content

Commit

Permalink
Merge pull request #88 from andrewconnell/fy25q2-refresh
Browse files Browse the repository at this point in the history
FY25Q2 content refresh
  • Loading branch information
VesaJuvonen authored Jan 16, 2025
2 parents ec8172d + 29fa9ca commit 4e93a04
Show file tree
Hide file tree
Showing 32 changed files with 30,933 additions and 28,414 deletions.
Binary file added Demos/.DS_Store
Binary file not shown.
33 changes: 0 additions & 33 deletions Demos/01-appcustomizer/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,39 +20,6 @@ module.exports = {
'@rushstack/security/no-unsafe-regexp': 1,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/adjacent-overload-signatures': 1,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
//
// CONFIGURATION: By default, these are banned: String, Boolean, Number, Object, Symbol
'@typescript-eslint/ban-types': [
1,
{
'extendDefaults': false,
'types': {
'String': {
'message': 'Use \'string\' instead',
'fixWith': 'string'
},
'Boolean': {
'message': 'Use \'boolean\' instead',
'fixWith': 'boolean'
},
'Number': {
'message': 'Use \'number\' instead',
'fixWith': 'number'
},
'Object': {
'message': 'Use \'object\' instead, or else define a proper TypeScript type:'
},
'Symbol': {
'message': 'Use \'symbol\' instead',
'fixWith': 'symbol'
},
'Function': {
'message': 'The \'Function\' type accepts any function-like value.\nIt provides no type safety when calling the function, which can be a common source of bugs.\nIt also accepts things like class declarations, which will throw at runtime as they will not be called with \'new\'.\nIf you are expecting the function to accept certain arguments, you should explicitly define the function shape.'
}
}
}
],
// RATIONALE: Code is more readable when the type of every variable is immediately obvious.
// Even if the compiler may be able to infer a type, this inference will be unavailable
// to a person who is reviewing a GitHub diff. This rule makes writing code harder,
Expand Down
8 changes: 4 additions & 4 deletions Demos/01-appcustomizer/.yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"@microsoft/generator-sharepoint": {
"plusBeta": false,
"isCreatingSolution": true,
"nodeVersion": "18.20.1",
"nodeVersion": "18.20.4",
"sdksVersions": {
"@microsoft/microsoft-graph-client": "3.0.2",
"@microsoft/teams-js": "2.12.0"
"@microsoft/teams-js": "2.24.0"
},
"version": "1.19.0",
"version": "1.20.0",
"libraryName": "sp-fx-app-customizer",
"libraryId": "22056c64-403d-468e-8d5d-7704f9ae8130",
"libraryId": "6f6559b3-4e6b-4d3e-b883-9ad65d1efa73",
"environment": "spo",
"packageManager": "npm",
"solutionName": "SPFxAppCustomizer",
Expand Down
2 changes: 1 addition & 1 deletion Demos/01-appcustomizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Short summary on functionality and used technologies.

## Used SharePoint Framework Version

![version](https://img.shields.io/badge/version-1.19.0-green.svg)
![version](https://img.shields.io/badge/version-1.20.0-green.svg)

## Applies to

Expand Down
6 changes: 3 additions & 3 deletions Demos/01-appcustomizer/config/package-solution.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "sp-fx-app-customizer-client-side-solution",
"id": "22056c64-403d-468e-8d5d-7704f9ae8130",
"id": "6f6559b3-4e6b-4d3e-b883-9ad65d1efa73",
"version": "1.0.0.0",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
Expand All @@ -12,7 +12,7 @@
"websiteUrl": "",
"privacyUrl": "",
"termsOfUseUrl": "",
"mpnId": "Undefined-1.19.0"
"mpnId": "Undefined-1.20.0"
},
"metadata": {
"shortDescription": {
Expand All @@ -29,7 +29,7 @@
{
"title": "Application Extension - Deployment of custom action",
"description": "Deploys a custom action with ClientSideComponentId association",
"id": "a719bf1f-5802-4b78-9dad-f685f8f0c91d",
"id": "6c6496fa-b559-473a-aa02-01ce119ffe1b",
"version": "1.0.0.0",
"assets": {
"elementManifests": [
Expand Down
14 changes: 6 additions & 8 deletions Demos/01-appcustomizer/config/serve.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,23 @@
"https": true,
"serveConfigurations": {
"default": {
"pageUrl": "https://{tenantDomain}/sites/DeveloperSite/SitePages/CollabHome.aspx",
"pageUrl": "https://{tenantDomain}/SitePages/myPage.aspx",
"customActions": {
"d94a4d1f-a9f5-44de-a150-12034336b6ad": {
"342e615e-2efd-41f6-aa02-4993f5a84db2": {
"location": "ClientSideExtension.ApplicationCustomizer",
"properties": {
"header": "Header area of the page",
"footer": "Footer area of the page"
"testMessage": "Test message"
}
}
}
},
"helloAppCustomizer": {
"pageUrl": "https://{tenantDomain}/sites/DeveloperSite/SitePages/CollabHome.aspx",
"pageUrl": "https://{tenantDomain}/SitePages/myPage.aspx",
"customActions": {
"d94a4d1f-a9f5-44de-a150-12034336b6ad": {
"342e615e-2efd-41f6-aa02-4993f5a84db2": {
"location": "ClientSideExtension.ApplicationCustomizer",
"properties": {
"header": "Header area of the page",
"footer": "Footer area of the page"
"testMessage": "Test message"
}
}
}
Expand Down
Loading

0 comments on commit 4e93a04

Please sign in to comment.