upgrade to v1.11.0

This commit is contained in:
Don Kirkham 2020-11-03 15:29:25 -06:00
parent bcff312786
commit 3c77c3a313
10 changed files with 17245 additions and 195 deletions

View File

@ -2,10 +2,11 @@
"@microsoft/generator-sharepoint": { "@microsoft/generator-sharepoint": {
"isCreatingSolution": true, "isCreatingSolution": true,
"environment": "onprem19", "environment": "onprem19",
"version": "1.10.0", "version": "1.11.0",
"libraryName": "word-game", "libraryName": "word-game",
"libraryId": "751649b4-2c99-4349-9d65-9a6cc7533dfa", "libraryId": "751649b4-2c99-4349-9d65-9a6cc7533dfa",
"packageManager": "npm", "packageManager": "npm",
"componentType": "webpart" "componentType": "webpart",
"isDomainIsolated": false
} }
} }

View File

@ -5,7 +5,15 @@
"id": "751649b4-2c99-4349-9d65-9a6cc7533dfa", "id": "751649b4-2c99-4349-9d65-9a6cc7533dfa",
"version": "1.0.0.3", "version": "1.0.0.3",
"includeClientSideAssets": true, "includeClientSideAssets": true,
"skipFeatureDeployment": true "skipFeatureDeployment": true,
"isDomainIsolated": false,
"developer": {
"name": "Contoso",
"privacyUrl": "https://contoso.com/privacy",
"termsOfUseUrl": "https://contoso.com/terms-of-use",
"websiteUrl": "https://contoso.com/my-app",
"mpnId": "000000"
}
}, },
"paths": { "paths": {
"zippedPackage": "solution/word-game.sppkg" "zippedPackage": "solution/word-game.sppkg"

17023
samples/react-word-game/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -12,27 +12,27 @@
"test": "gulp test" "test": "gulp test"
}, },
"dependencies": { "dependencies": {
"react": "15.6.2", "@microsoft/sp-core-library": "1.11.0",
"react-dom": "15.6.2", "@microsoft/sp-lodash-subset": "1.11.0",
"@types/react": "15.6.6", "@microsoft/sp-office-ui-fabric-core": "1.11.0",
"@types/react-dom": "15.5.6", "@microsoft/sp-property-pane": "1.11.0",
"@microsoft/sp-core-library": "~1.4.0", "@microsoft/sp-webpart-base": "1.11.0",
"@microsoft/sp-webpart-base": "~1.4.0", "office-ui-fabric-react": "6.214.0",
"@microsoft/sp-lodash-subset": "~1.4.0", "react": "16.8.5",
"@microsoft/sp-office-ui-fabric-core": "~1.4.0", "react-dom": "16.8.5"
"@types/webpack-env": "1.13.1",
"@types/es6-promise": "0.0.33"
}, },
"resolutions": { "resolutions": {
"@types/react": "15.6.6" "@types/react": "16.8.8"
}, },
"devDependencies": { "devDependencies": {
"@microsoft/sp-build-web": "~1.4.1", "@microsoft/rush-stack-compiler-3.3": "0.3.5",
"@microsoft/sp-module-interfaces": "~1.4.1", "@microsoft/sp-build-web": "1.11.0",
"@microsoft/sp-webpart-workbench": "~1.4.1", "@microsoft/sp-module-interfaces": "1.11.0",
"gulp": "~3.9.1", "@microsoft/sp-tslint-rules": "1.11.0",
"@microsoft/sp-webpart-workbench": "1.11.0",
"@types/chai": "3.4.34", "@types/chai": "3.4.34",
"@types/mocha": "2.2.38", "@types/mocha": "2.2.38",
"ajv": "~5.2.2" "ajv": "~5.2.2",
"gulp": "~3.9.1"
} }
} }

View File

@ -3,24 +3,32 @@
"id": "e33f043c-3d0d-4873-a5aa-3dd37f70d3bd", "id": "e33f043c-3d0d-4873-a5aa-3dd37f70d3bd",
"alias": "WordGameWebPart", "alias": "WordGameWebPart",
"componentType": "WebPart", "componentType": "WebPart",
// The "*" signifies that the version should be taken from the package.json // The "*" signifies that the version should be taken from the package.json
"version": "*", "version": "*",
"manifestVersion": 2, "manifestVersion": 2,
"supportedHosts": [
"SharePointWebPart"
],
// If true, the component can only be installed on sites where Custom Script is allowed. // If true, the component can only be installed on sites where Custom Script is allowed.
// Components that allow authors to embed arbitrary script code should set this to true. // Components that allow authors to embed arbitrary script code should set this to true.
// https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f // https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f
"requiresCustomScript": false, "requiresCustomScript": false,
"preconfiguredEntries": [
"preconfiguredEntries": [{ {
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other "groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
"group": { "default": "Other" }, "group": {
"title": { "default": "WordGame" }, "default": "Other"
"description": { "default": "A fun game where you unscramble the words before the time runs out" }, },
"title": {
"default": "WordGame"
},
"description": {
"default": "A fun game where you unscramble the words before the time runs out"
},
"officeFabricIconFontName": "TextField", "officeFabricIconFontName": "TextField",
"properties": { "properties": {
"description": "WordGame" "description": "WordGame"
} }
}] }
]
} }

View File

@ -2,12 +2,13 @@ import * as React from 'react';
import * as ReactDom from 'react-dom'; import * as ReactDom from 'react-dom';
import { Version } from '@microsoft/sp-core-library'; import { Version } from '@microsoft/sp-core-library';
import { import {
BaseClientSideWebPart, BaseClientSideWebPart
} from '@microsoft/sp-webpart-base';
import {
IPropertyPaneConfiguration, IPropertyPaneConfiguration,
PropertyPaneTextField, PropertyPaneTextField,
PropertyPaneCheckbox PropertyPaneCheckbox
} from '@microsoft/sp-webpart-base'; } from "@microsoft/sp-property-pane";
import WordGame from './components/WordGame'; import WordGame from './components/WordGame';
import { IWordGameProps } from './components/IWordGameProps'; import { IWordGameProps } from './components/IWordGameProps';

View File

@ -1,10 +1,10 @@
@import '~@microsoft/sp-office-ui-fabric-core/dist/sass/SPFabricCore.scss'; @import "~office-ui-fabric-react/dist/sass/References.scss";
// WORDGAME STYLES // WORDGAME STYLES
:global .wordGameCustom{ :global .wordGameCustom {
input[type="text"],
input[type=text], select { select {
width: 100%; width: 100%;
padding: 12px 20px; padding: 12px 20px;
margin: 8px 0; margin: 8px 0;
@ -15,9 +15,9 @@
} }
button, button,
input[type=submit] { input[type="submit"] {
width: 100%; width: 100%;
background-color: #4CAF50; background-color: #4caf50;
color: white; color: white;
padding: 14px 20px; padding: 14px 20px;
margin: 8px 0; margin: 8px 0;
@ -26,7 +26,7 @@
cursor: pointer; cursor: pointer;
} }
input[type=submit]:hover { input[type="submit"]:hover {
background-color: #45a049; background-color: #45a049;
} }
@ -36,27 +36,27 @@
padding: 20px; padding: 20px;
} }
.greyButton{ .greyButton {
background-color: grey; background-color: grey;
} }
.blueButton{ .blueButton {
width: unset; width: unset;
background-color: #007bff; background-color: #007bff;
} }
.currentWord{ .currentWord {
color: #007bff; color: #007bff;
font-size: 3rem; font-size: 3rem;
} }
.timer{ .timer {
font-size: 16pt; font-size: 16pt;
color: gray; color: gray;
font-weight: 600; font-weight: 600;
} }
.gameReview{ .gameReview {
text-align: left; text-align: left;
width: 250px; width: 250px;
margin-left: auto; margin-left: auto;
@ -66,53 +66,48 @@
border-color: #c3e6cb; border-color: #c3e6cb;
font-size: 16px; font-size: 16px;
} }
ul{ ul {
margin-top: 5px; margin-top: 5px;
} }
.toast{ .toast {
position: absolute; position: absolute;
top: 5px; top: 5px;
right: 5px; right: 5px;
} }
.toastMiniGreen{ .toastMiniGreen {
color: rgb(103, 181, 89); color: rgb(103, 181, 89);
} }
.toastMiniRed{ .toastMiniRed {
color: red; color: red;
} }
.toastGreen{ .toastGreen {
color: #155724; color: #155724;
background-color: #d4edda; background-color: #d4edda;
border-color: #c3e6cb; border-color: #c3e6cb;
padding: 11px; padding: 11px;
} }
.toastRed{ .toastRed {
color: #721c24; color: #721c24;
background-color: #f8d7da; background-color: #f8d7da;
border-color: #f5c6cb; border-color: #f5c6cb;
padding: 11px; padding: 11px;
} }
.numAnswersTip{ .numAnswersTip {
padding-top: 3px; padding-top: 3px;
padding-bottom: 3px; padding-bottom: 3px;
color: gray; color: gray;
} }
} }
// OFFICE STYLES // OFFICE STYLES
.wordGame { .wordGame {
.container { .container {
max-width: 700px; max-width: 700px;
margin: 0px auto; margin: 0px auto;
@ -163,7 +158,8 @@
// Basic Button // Basic Button
outline: transparent; outline: transparent;
position: relative; position: relative;
font-family: "Segoe UI WestEuropean","Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif; font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system,
BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
font-size: $ms-font-size-m; font-size: $ms-font-size-m;
font-weight: $ms-font-weight-regular; font-weight: $ms-font-weight-regular;

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 B

View File

@ -9,6 +9,10 @@
"sourceMap": true, "sourceMap": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"skipLibCheck": true, "skipLibCheck": true,
"outDir": "lib",
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"typeRoots": [ "typeRoots": [
"./node_modules/@types", "./node_modules/@types",
"./node_modules/@microsoft" "./node_modules/@microsoft"
@ -21,6 +25,15 @@
"es5", "es5",
"dom", "dom",
"es2015.collection" "es2015.collection"
] ],
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"node_modules",
"lib"
],
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.3/includes/tsconfig-web.json",
} }
} }