react-skype-status: upgraded to spfx 1.8.0 (#823)

This commit is contained in:
Vincent Biret 2019-03-30 06:55:45 -04:00 committed by Vesa Juvonen
parent 124a485758
commit 8609ea0544
7 changed files with 3068 additions and 4261 deletions

View File

@ -1,6 +1,6 @@
{ {
"@microsoft/generator-sharepoint": { "@microsoft/generator-sharepoint": {
"version": "1.7.0", "version": "1.8.0",
"libraryName": "skype-presence-spfx-react", "libraryName": "skype-presence-spfx-react",
"libraryId": "8508d562-b356-4ae0-80ed-7315b2d70b0b", "libraryId": "8508d562-b356-4ae0-80ed-7315b2d70b0b",
"environment": "spo", "environment": "spo",

View File

@ -27,6 +27,7 @@ react-skype-status|[Vincent Biret](https://github.com/baywet)
Version|Date|Comments Version|Date|Comments
-------|----|-------- -------|----|--------
1.4|March 27th, 2019|Upgrade to SPFx 1.8.0
1.3|November 18th, 2018|Upgrade to SPFX 1.7.0 1.3|November 18th, 2018|Upgrade to SPFX 1.7.0
1.2|July 4th, 2018|Fixed a bug when subscribing to the current user's status 1.2|July 4th, 2018|Fixed a bug when subscribing to the current user's status
1.1|June 25th, 2018|Upgrade to 1.5 1.1|June 25th, 2018|Upgrade to 1.5

File diff suppressed because it is too large Load Diff

View File

@ -11,24 +11,25 @@
"test": "gulp test" "test": "gulp test"
}, },
"dependencies": { "dependencies": {
"@microsoft/sp-core-library": "1.7.0", "@microsoft/sp-core-library": "1.8.0",
"@microsoft/sp-lodash-subset": "1.7.0", "@microsoft/sp-lodash-subset": "1.8.0",
"@microsoft/sp-office-ui-fabric-core": "1.7.0", "@microsoft/sp-office-ui-fabric-core": "1.8.0",
"@microsoft/sp-webpart-base": "1.7.0", "@microsoft/sp-webpart-base": "1.8.0",
"@types/es6-promise": "0.0.33", "@types/es6-promise": "0.0.33",
"@types/react": "16.4.2", "@types/react": "16.4.2",
"@types/react-dom": "16.0.5", "@types/react-dom": "16.0.5",
"@types/webpack-env": "1.13.1", "@types/webpack-env": "1.13.1",
"jquery": "^3.3.1", "jquery": "^3.3.1",
"office-ui-fabric-react": "^6.19.0", "office-ui-fabric-react": "^6.19.0",
"react": "16.3.2", "react": "16.7.0",
"react-dom": "16.3.2" "react-dom": "16.7.0"
}, },
"devDependencies": { "devDependencies": {
"@microsoft/sp-build-web": "1.7.0", "@microsoft/rush-stack-compiler-2.7": "0.4.0",
"@microsoft/sp-module-interfaces": "1.7.0", "@microsoft/sp-build-web": "1.8.0",
"@microsoft/sp-tslint-rules": "1.7.0", "@microsoft/sp-module-interfaces": "1.8.0",
"@microsoft/sp-webpart-workbench": "1.7.0", "@microsoft/sp-tslint-rules": "1.8.0",
"@microsoft/sp-webpart-workbench": "1.8.0",
"@types/chai": "3.4.34", "@types/chai": "3.4.34",
"@types/jquery": "^3.3.4", "@types/jquery": "^3.3.4",
"@types/mocha": "2.2.38", "@types/mocha": "2.2.38",

View File

@ -12,7 +12,7 @@
// 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,
"supportedHosts": ["SharePointWebPart"],
"preconfiguredEntries": [{ "preconfiguredEntries": [{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other "groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
"group": { "default": "Other" }, "group": { "default": "Other" },

View File

@ -1,11 +1,8 @@
import * as React from "react"; 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 } from "@microsoft/sp-webpart-base";
BaseClientSideWebPart, import { IPropertyPaneConfiguration, PropertyPaneTextField } from "@microsoft/sp-property-pane";
IPropertyPaneConfiguration,
PropertyPaneTextField
} from "@microsoft/sp-webpart-base";
import * as strings from "SkypePresenceReactWebPartStrings"; import * as strings from "SkypePresenceReactWebPartStrings";
import SkypePresenceReact from "./components/SkypePresenceReact"; import SkypePresenceReact from "./components/SkypePresenceReact";

View File

@ -1,4 +1,5 @@
{ {
"extends": "./node_modules/@microsoft/rush-stack-compiler-2.7/includes/tsconfig-web.json",
"include": [ "include": [
"src/**/*.ts" "src/**/*.ts"
], ],
@ -14,6 +15,9 @@
"moduleResolution": "node", "moduleResolution": "node",
"jsx": "react", "jsx": "react",
"declaration": true, "declaration": true,
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"skipLibCheck": true, "skipLibCheck": true,
"sourceMap": true, "sourceMap": true,
"experimentalDecorators": true, "experimentalDecorators": true,