Updated README and package version
This commit is contained in:
parent
c562af5323
commit
b305006518
|
@ -14,14 +14,16 @@ extensions:
|
||||||
# Display List JavaScript Client-Side Web Part
|
# Display List JavaScript Client-Side Web Part
|
||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
This simplistic sample Web Part demonstrates the use of JavaScript in a SharePoint Framework web part. The properties pane for this web part display a drop down list of lists in the current web. Once the user selects one of the lists, the web part display the contents of the list.
|
|
||||||
|
|
||||||
![Screeshot of the Display List web part](./assets/display-list-preview.png).
|
This simplistic sample web part demonstrates the use of JavaScript in a SharePoint Framework web part. The properties pane for this web part display a drop down list of lists in the current web. Once the user selects one of the lists, the web part display the contents of the list.
|
||||||
|
|
||||||
|
![Screenshot of the Display List web part](./assets/display-list-preview.png).
|
||||||
|
|
||||||
> Does only show data when hosted in SharePoint. No mock data at this point for local testing the rendering.
|
> Does only show data when hosted in SharePoint. No mock data at this point for local testing the rendering.
|
||||||
|
|
||||||
## Used SharePoint Framework Version
|
## Used SharePoint Framework Version
|
||||||
![drop](https://img.shields.io/badge/drop-GA-green.svg)
|
|
||||||
|
![SPFx 1.11.0](https://img.shields.io/badge/drop-1.11.0-green.svg)
|
||||||
|
|
||||||
## Applies to
|
## Applies to
|
||||||
|
|
||||||
|
@ -33,8 +35,10 @@ This simplistic sample Web Part demonstrates the use of JavaScript in a SharePoi
|
||||||
|
|
||||||
Solution|Author(s)
|
Solution|Author(s)
|
||||||
--------|---------
|
--------|---------
|
||||||
js-display-list|Naamat Al-Aswad, P.Eng.
|
js-display-list| Naamat Al-Aswad, P.Eng.
|
||||||
Updated to GA Version| Velin Georgiev ([@VelinGeorgiev](https://twitter.com/velingeorgiev))
|
js-display-list| Velin Georgiev ([@VelinGeorgiev](https://twitter.com/velingeorgiev)) (Updated to GA Version)
|
||||||
|
js-display-list| Ryan Schouten ([@ShrPntKnight](https://twitter.com/ShrPntKnight)) (Upgraded to SPFx 1.11.0)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Version history
|
## Version history
|
||||||
|
@ -43,9 +47,11 @@ Version|Date|Comments
|
||||||
-------|----|--------
|
-------|----|--------
|
||||||
1.0|September 22, 2016|Initial release
|
1.0|September 22, 2016|Initial release
|
||||||
1.1|May 15, 2017|Updated to GA Version
|
1.1|May 15, 2017|Updated to GA Version
|
||||||
|
2.0|August 29, 2020|Upgraded to SPFx 1.11.0
|
||||||
|
|
||||||
|
|
||||||
## Disclaimer
|
## 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.**
|
**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.**
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -61,6 +67,7 @@ Version|Date|Comments
|
||||||
- Basic functionality can be tested locally, data is only shown when used in context of SharePoint
|
- Basic functionality can be tested locally, data is only shown when used in context of SharePoint
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
The js-display-list web part displays the content of the list specified in the web part properties pane.
|
The js-display-list web part displays the content of the list specified in the web part properties pane.
|
||||||
|
|
||||||
This Web Part illustrates the following concepts on top of the SharePoint Framework:
|
This Web Part illustrates the following concepts on top of the SharePoint Framework:
|
||||||
|
|
|
@ -3,16 +3,9 @@
|
||||||
"solution": {
|
"solution": {
|
||||||
"name": "js-display-list-client-side-solution",
|
"name": "js-display-list-client-side-solution",
|
||||||
"id": "faf13055-4551-491c-8bbf-a00b30adfd54",
|
"id": "faf13055-4551-491c-8bbf-a00b30adfd54",
|
||||||
"version": "1.0.0.0",
|
"version": "2.0.0.0",
|
||||||
"isDomainIsolated": false,
|
"isDomainIsolated": false,
|
||||||
"includeClientSideAssets": true,
|
"includeClientSideAssets": true
|
||||||
"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/js-display-list.spapp"
|
"zippedPackage": "solution/js-display-list.spapp"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "js-display-list",
|
"name": "js-display-list",
|
||||||
"version": "0.0.2",
|
"version": "2.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue