Merge pull request #2949 from salascz/patch-1

React Script Editor - section background support
This commit is contained in:
Hugo Bernier 2022-09-05 20:16:43 -07:00 committed by GitHub
commit 055d9c9293
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 5 deletions

View File

@ -205,6 +205,7 @@ Version|Date|Comments
1.0.0.16|April 1st, 2020|Improved how script tags are handled and cleaned up on smart page navigation. 1.0.0.16|April 1st, 2020|Improved how script tags are handled and cleaned up on smart page navigation.
1.0.17.0|January 29th, 2021|Changed versioning to 3 parts. Updated npm packages, restructured documentation, minor change to webpack analyzer setup. 1.0.17.0|January 29th, 2021|Changed versioning to 3 parts. Updated npm packages, restructured documentation, minor change to webpack analyzer setup.
1.0.18.0|June 14, 2022|Upgrade to SPFx v1.13.1 1.0.18.0|June 14, 2022|Upgrade to SPFx v1.13.1
1.0.19.0|August 31, 2022|Added support for section background color
## Minimal Path to Awesome ## Minimal Path to Awesome

View File

@ -9,7 +9,7 @@
"Coming from old classic SharePoint pages you might have existing script solutions you want to re-use on a modern page without having to repackage it as a new SharePoint Framework web part." "Coming from old classic SharePoint pages you might have existing script solutions you want to re-use on a modern page without having to repackage it as a new SharePoint Framework web part."
], ],
"creationDateTime": "2019-10-13", "creationDateTime": "2019-10-13",
"updateDateTime": "2022-06-14", "updateDateTime": "2022-08-31",
"products": [ "products": [
"SharePoint" "SharePoint"
], ],

View File

@ -3,7 +3,7 @@
"solution": { "solution": {
"name": "Modern Script Editor web part by mikaelsvenson", "name": "Modern Script Editor web part by mikaelsvenson",
"id": "1425175f-3ed8-44d2-8fc4-dd1497191294", "id": "1425175f-3ed8-44d2-8fc4-dd1497191294",
"version": "1.0.18.0", "version": "1.0.19.0",
"includeClientSideAssets": true, "includeClientSideAssets": true,
"skipFeatureDeployment": false, "skipFeatureDeployment": false,
"isDomainIsolated": false, "isDomainIsolated": false,
@ -18,4 +18,4 @@
"paths": { "paths": {
"zippedPackage": "solution/pnp-script-editor.sppkg" "zippedPackage": "solution/pnp-script-editor.sppkg"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "pnp-script-editor", "name": "pnp-script-editor",
"version": "1.0.18", "version": "1.0.19",
"private": true, "private": true,
"main": "lib/index.js", "main": "lib/index.js",
"resolutions": { "resolutions": {

View File

@ -8,6 +8,7 @@
"manifestVersion": 2, "manifestVersion": 2,
"supportedHosts": ["SharePointWebPart", "SharePointFullPage", "TeamsTab"], "supportedHosts": ["SharePointWebPart", "SharePointFullPage", "TeamsTab"],
"requiresCustomScript": true, "requiresCustomScript": true,
"supportsThemeVariants": true,
"preconfiguredEntries": [{ "preconfiguredEntries": [{
"groupId": "3a328f0a-99c4-4b28-95ab-fe0847f657a3", "groupId": "3a328f0a-99c4-4b28-95ab-fe0847f657a3",
"group": { "group": {
@ -27,4 +28,4 @@
"spPageContextInfo": false "spPageContextInfo": false
} }
}] }]
} }