Invitation Manager Updated to version 1.3.0 (#326)
* first commit * configured the property pane * readme updated and demo gif uploaded * correction * added author * add more descriptions * Updated to GA Version, New properties that allow to specify the number of items to display and which entities retrieve (User, SharePoint Groups, Distribution Lists, Security Groups). * First release * readme changed * release date modified * readme updated * Updated to version 1.3.0
This commit is contained in:
parent
3a2dee2a6a
commit
f1c13aea44
|
@ -15,7 +15,7 @@ Look at this to go deep:
|
|||
![The invitation manager web part displayed in SharePoint workbench](./assets/SPFx-Invitation-Manager.gif)
|
||||
|
||||
## Used SharePoint Framework Version
|
||||
![drop](https://img.shields.io/badge/drop-GA-green.svg)
|
||||
![drop](https://img.shields.io/badge/drop-1.3.0-green.svg)
|
||||
|
||||
## Applies to
|
||||
|
||||
|
@ -33,6 +33,7 @@ react-invitation-manager|Giuliano De Luca ([@giuleon](https://twitter.com/giuleo
|
|||
Version|Date|Comments
|
||||
-------|----|--------
|
||||
1.0.0|July 14, 2017|Initial release
|
||||
1.0.1|October 09, 2017|Updated to version 1.3.0
|
||||
|
||||
## Disclaimer
|
||||
**THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.**
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
{
|
||||
"entries": [
|
||||
{
|
||||
"entry": "./lib/webparts/invitationManager/InvitationManagerWebPart.js",
|
||||
"manifest": "./src/webparts/invitationManager/InvitationManagerWebPart.manifest.json",
|
||||
"outputPath": "./dist/invitation-manager.bundle.js"
|
||||
"$schema": "https://dev.office.com/json-schemas/spfx-build/config.2.0.schema.json",
|
||||
"version": "2.0",
|
||||
"bundles": {
|
||||
"invitation-manager-bundle": {
|
||||
"components": [
|
||||
{
|
||||
"entrypoint": "./lib/webparts/invitationManager/InvitationManagerWebPart.js",
|
||||
"manifest": "./src/webparts/invitationManager/InvitationManagerWebPart.manifest.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"externals": {},
|
||||
"localizedResources": {
|
||||
"invitationManagerStrings": "webparts/invitationManager/loc/{locale}.js"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"solution": {
|
||||
"name": "react-invitation-manager-client-side-solution",
|
||||
"id": "7d08f6e8-b222-4ed7-8910-8ea911d117fe",
|
||||
"version": "1.0.0.0"
|
||||
"version": "1.0.1.0"
|
||||
},
|
||||
"paths": {
|
||||
"zippedPackage": "solution/react-invitation-manager.sppkg"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "react-invitation-manager",
|
||||
"version": "1.1.0",
|
||||
"version": "1.0.1",
|
||||
"private": true,
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
|
@ -10,23 +10,23 @@
|
|||
"url": "http://www.delucagiuliano.com"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-client-base": "~1.0.0",
|
||||
"@microsoft/sp-core-library": "~1.0.0",
|
||||
"@microsoft/sp-webpart-base": "~1.0.0",
|
||||
"@types/react": "0.14.46",
|
||||
"@microsoft/sp-core-library": "~1.3.0",
|
||||
"@microsoft/sp-webpart-base": "~1.3.0",
|
||||
"@types/react": "15.0.38",
|
||||
"@types/react-addons-shallow-compare": "0.14.17",
|
||||
"@types/react-addons-test-utils": "0.14.15",
|
||||
"@types/react-addons-update": "0.14.14",
|
||||
"@types/react-dom": "0.14.18",
|
||||
"@types/webpack-env": ">=1.12.1 <1.14.0",
|
||||
"adal-angular": "1.0.12",
|
||||
"office-ui-fabric-react": "^4.40.1",
|
||||
"react": "15.4.2",
|
||||
"react-dom": "15.4.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/sp-build-web": "~1.0.0",
|
||||
"@microsoft/sp-module-interfaces": "~1.0.0",
|
||||
"@microsoft/sp-webpart-workbench": "~1.0.0",
|
||||
"@microsoft/sp-build-web": "~1.3.0",
|
||||
"@microsoft/sp-module-interfaces": "~1.3.0",
|
||||
"@microsoft/sp-webpart-workbench": "~1.3.0",
|
||||
"@types/adal": "^1.0.25",
|
||||
"@types/chai": ">=3.4.34 <3.6.0",
|
||||
"@types/mocha": ">=2.2.33 <2.6.0",
|
||||
|
|
Loading…
Reference in New Issue