From b225f8e3595168069574475e221fdfcd912d6059 Mon Sep 17 00:00:00 2001 From: Hugo Bernier Date: Mon, 17 Oct 2022 11:12:46 -0400 Subject: [PATCH] Renamed sample, update readme, added sample.json --- samples/react-pnp-js-hooks-sample/README.md | 76 ------------- .../.eslintrc.js | 0 .../.gitignore | 0 .../.npmignore | 0 .../.yo-rc.json | 0 samples/react-pnp-js-hooks/README.md | 101 ++++++++++++++++++ .../assets/react-pnp-js-sample.png | Bin samples/react-pnp-js-hooks/assets/sample.json | 50 +++++++++ .../config/config.json | 0 .../config/deploy-azure-storage.json | 0 .../config/package-solution.json | 0 .../config/serve.json | 0 .../config/write-manifests.json | 0 .../gulpfile.js | 0 .../package-lock.json | 62 ++++++----- .../package.json | 0 .../src/index.ts | 0 .../PnPjsExampleWebPart.manifest.json | 0 .../pnPjsExample/PnPjsExampleWebPart.ts | 0 .../pnPjsExample/assets/welcome-dark.png | Bin .../pnPjsExample/assets/welcome-light.png | Bin .../components/IPnPjsExampleProps.ts | 0 .../components/PnPjsExample.module.scss | 0 .../pnPjsExample/components/PnPjsExample.tsx | 0 .../pnPjsExample/components/interfaces.ts | 0 .../pnPjsExample/hooks/useDocuments.ts | 0 .../src/webparts/pnPjsExample/loc/en-us.js | 0 .../webparts/pnPjsExample/loc/mystrings.d.ts | 0 .../src/webparts/pnPjsExample/pnpjsConfig.ts | 0 ...02dd-5b1b-4a6e-ae8f-83c9544cb711_color.png | Bin ...dd-5b1b-4a6e-ae8f-83c9544cb711_outline.png | Bin .../tsconfig.json | 0 32 files changed, 181 insertions(+), 108 deletions(-) delete mode 100644 samples/react-pnp-js-hooks-sample/README.md rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/.eslintrc.js (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/.gitignore (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/.npmignore (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/.yo-rc.json (100%) create mode 100644 samples/react-pnp-js-hooks/README.md rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/assets/react-pnp-js-sample.png (100%) create mode 100644 samples/react-pnp-js-hooks/assets/sample.json rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/config/config.json (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/config/deploy-azure-storage.json (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/config/package-solution.json (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/config/serve.json (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/config/write-manifests.json (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/gulpfile.js (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/package-lock.json (99%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/package.json (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/index.ts (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/PnPjsExampleWebPart.manifest.json (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/PnPjsExampleWebPart.ts (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/assets/welcome-dark.png (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/assets/welcome-light.png (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/components/IPnPjsExampleProps.ts (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/components/PnPjsExample.module.scss (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/components/PnPjsExample.tsx (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/components/interfaces.ts (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/hooks/useDocuments.ts (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/loc/en-us.js (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/loc/mystrings.d.ts (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/src/webparts/pnPjsExample/pnpjsConfig.ts (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_color.png (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_outline.png (100%) rename samples/{react-pnp-js-hooks-sample => react-pnp-js-hooks}/tsconfig.json (100%) diff --git a/samples/react-pnp-js-hooks-sample/README.md b/samples/react-pnp-js-hooks-sample/README.md deleted file mode 100644 index 9171e0db1..000000000 --- a/samples/react-pnp-js-hooks-sample/README.md +++ /dev/null @@ -1,76 +0,0 @@ ---- -page_type: sample -products: -- office-sp -languages: -- javascript -- typescript -extensions: - contentType: samples - technologies: - - SharePoint Framework - platforms: - - react - createdDate: 5/1/2017 12:00:00 AM ---- -# SharePoint Framework sample using @pnp/js and ReactJS Functional Components - -## Summary - -This solution builds off of the solution [react-async-await-sp-pnp-js](./react-async-await-sp-pnp-js) submitted by Jose Quinto ([@jquintozamora](https://twitter.com/jquintozamora) , [blog.josequinto.com](https://blog.josequinto.com)) and re-work of the existing class based [react-pnp-js-sample](./react-pnp-js-sample) by [Julie Turner](https://twitter.com/jfj1997) - -This implementation refactors to take aspects out and utilize and showcase PnPjs Version 3 using React Functional Components and Hooks. - -![React-pnp-js-sample](./assets/react-pnp-js-sample.png) - -## Compatibility - -![SPFx 1.14.0](https://img.shields.io/badge/SPFx-1.14.0-green.svg) -![Node.js v14 | v12](https://img.shields.io/badge/Node.js-v12%20%7C%20v14-green.svg) -![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg) -![Incompatible with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg) -![Does not work with SharePoint 2016 (Feature Pack 2)](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202)-Incompatible-red.svg "SharePoint Server 2016 Feature Pack 2 requires SPFx 1.1") -![Local Workbench Incompatible](https://img.shields.io/badge/Local%20Workbench-Incompatible-red.svg) -![Hosted Workbench Compatible](https://img.shields.io/badge/Hosted%20Workbench-Compatible-green.svg) - -## Applies to - -* [SharePoint Framework](https://docs.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview) -* [Microsoft 365 developer tenant](https://docs.microsoft.com/sharepoint/dev/spfx/set-up-your-developer-tenant) - -## Solution - -Solution|Author(s) ---------|--------- -react-pnp-js-hooks-sample | Beau Cameron ([@beau__cameron](https://twitter.com/Beau__Cameron)) - -## Version history - -Version|Date|Comments --------|----|-------- -1.0|Oct 09, 2022|Initial release - -## Minimal Path to Awesome - -1. clone this repo -1. `$ npm i` -1. Update online workbench url in the `initialPage` property of the `config/serve.json` file. -1. `$ gulp serve` - -## Features - -* Establishing context for the SharePoint Factory Interface -* Creating a project config file to centralize defining the PnPjs imports and SharePoint Querable object for reuse. -* Demo using PnPjs with React Functional Components & Hooks -* Demo extending the SharePoint Querables instance with the PnPLogging beavhior. -* Demo extending the SharePoing Queryable instance with the Caching behavior -* Demo loading list items from a SharePoint library -* Demo creating a batched instance of the SharePoint Querable object. -* Demo updating list items by modifying the Title property. -* Demo executing a batch and working with the results. - -## 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.** - - diff --git a/samples/react-pnp-js-hooks-sample/.eslintrc.js b/samples/react-pnp-js-hooks/.eslintrc.js similarity index 100% rename from samples/react-pnp-js-hooks-sample/.eslintrc.js rename to samples/react-pnp-js-hooks/.eslintrc.js diff --git a/samples/react-pnp-js-hooks-sample/.gitignore b/samples/react-pnp-js-hooks/.gitignore similarity index 100% rename from samples/react-pnp-js-hooks-sample/.gitignore rename to samples/react-pnp-js-hooks/.gitignore diff --git a/samples/react-pnp-js-hooks-sample/.npmignore b/samples/react-pnp-js-hooks/.npmignore similarity index 100% rename from samples/react-pnp-js-hooks-sample/.npmignore rename to samples/react-pnp-js-hooks/.npmignore diff --git a/samples/react-pnp-js-hooks-sample/.yo-rc.json b/samples/react-pnp-js-hooks/.yo-rc.json similarity index 100% rename from samples/react-pnp-js-hooks-sample/.yo-rc.json rename to samples/react-pnp-js-hooks/.yo-rc.json diff --git a/samples/react-pnp-js-hooks/README.md b/samples/react-pnp-js-hooks/README.md new file mode 100644 index 000000000..f417749d5 --- /dev/null +++ b/samples/react-pnp-js-hooks/README.md @@ -0,0 +1,101 @@ +--- +page_type: sample +products: +- office-sp +languages: +- javascript +- typescript +extensions: + contentType: samples + technologies: + - SharePoint Framework + platforms: + - react + createdDate: 10/10/2022 12:00:00 AM +--- +# @pnp/js and ReactJS Functional Components + +## Summary + +This solution builds off of the solution [react-async-await-sp-pnp-js](./react-async-await-sp-pnp-js) submitted by Jose Quinto ([@jquintozamora](https://twitter.com/jquintozamora) , [blog.josequinto.com](https://blog.josequinto.com)) and re-work of the existing class based [react-pnp-js-sample](./react-pnp-js-sample) by [Julie Turner](https://twitter.com/jfj1997) + +This implementation refactors to take aspects out and utilize and showcase PnPjs Version 3 using React Functional Components and Hooks. + +![React-pnp-js-sample](./assets/react-pnp-js-sample.png) + +## Compatibility + +This sample is optimally compatible with the following environment configuration: + +![SPFx 1.15.2](https://img.shields.io/badge/SPFx-1.15.2-green.svg) +![Node.js v16 | v14 | v12](https://img.shields.io/badge/Node.js-v16%20%7C%20v14%20%7C%20v12-green.svg) +![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg) +![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower") +![Does not work with SharePoint 2016 (Feature Pack 2)](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202)-Incompatible-red.svg "SharePoint Server 2016 Feature Pack 2 requires SPFx 1.1") +![Local Workbench Unsupported](https://img.shields.io/badge/Local%20Workbench-Unsupported-red.svg "Local workbench is no longer available as of SPFx 1.13 and above") +![Hosted Workbench Compatible](https://img.shields.io/badge/Hosted%20Workbench-Compatible-green.svg) +![Compatible with Remote Containers](https://img.shields.io/badge/Remote%20Containers-Compatible-green.svg) + +For more information about SPFx compatibility, please refer to + +## Applies to + +* [SharePoint Framework](https://docs.microsoft.com/sharepoint/dev/spfx/sharepoint-framework-overview) +* [Microsoft 365 tenant](https://docs.microsoft.com/sharepoint/dev/spfx/set-up-your-development-environment) + +> Get your own free development tenant by subscribing to [Microsoft 365 developer program](http://aka.ms/m365devprogram) + +## Solution + +Solution|Author(s) +--------|--------- +react-pnp-js-hooks | [Beau Cameron](https://github.com/bcameron1231) ([@beau__cameron](https://twitter.com/Beau__Cameron)) + +## Version history + +Version|Date|Comments +-------|----|-------- +1.0|Oct 09, 2022|Initial release + +## Minimal Path to Awesome + +* Clone this repository (or [download this solution as a .ZIP file](https://pnp.github.io/download-partial/?url=https://github.com/pnp/sp-dev-fx-webparts/tree/main/samples/react-pnp-js-hooks) then unzip it) +* From your command line, change your current directory to the directory containing this sample (`react-pnp-js-hooks`, located under `samples`) +* in the command line run: + * `npm install` + * Update online workbench URL in the `initialPage` property of the `config/serve.json` file. + * `gulp serve` + +## Features + +* Establishing context for the SharePoint Factory Interface +* Creating a project config file to centralize defining the PnPjs imports and SharePoint Queryable object for reuse. +* Demo using PnPjs with React Functional Components & Hooks +* Demo extending the SharePoint Queryables instance with the PnPLogging behavior. +* Demo extending the SharePoint Queryable instance with the Caching behavior +* Demo loading list items from a SharePoint library +* Demo creating a batched instance of the SharePoint Queryable object. +* Demo updating list items by modifying the Title property. +* Demo executing a batch and working with the results. + +## Help + +We do not support samples, but this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues. + +If you're having issues building the solution, please run [spfx doctor](https://pnp.github.io/cli-microsoft365/cmd/spfx/spfx-doctor/) from within the solution folder to diagnose incompatibility issues with your environment. + +You can try looking at [issues related to this sample](https://github.com/pnp/sp-dev-fx-webparts/issues?q=label%3A%22sample%3A%20react-pnp-js-hooks%22) to see if anybody else is having the same issues. + +You can also try looking at [discussions related to this sample](https://github.com/pnp/sp-dev-fx-webparts/discussions?discussions_q=react-pnp-js-hooks) and see what the community is saying. + +If you encounter any issues using this sample, [create a new issue](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Abug-suspected%2Csample%3A%20react-pnp-js-hooks&template=bug-report.yml&sample=react-pnp-js-hooks&authors=@bcameron1231&title=react-pnp-js-hooks%20-%20). + +For questions regarding this sample, [create a new question](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Aquestion%2Csample%3A%20react-pnp-js-hooks&template=question.yml&sample=react-pnp-js-hooks&authors=@bcameron1231&title=react-pnp-js-hooks%20-%20). + +Finally, if you have an idea for improvement, [make a suggestion](https://github.com/pnp/sp-dev-fx-webparts/issues/new?assignees=&labels=Needs%3A+Triage+%3Amag%3A%2Ctype%3Aenhancement%2Csample%3A%20react-pnp-js-hooks&template=suggestion.yml&sample=react-pnp-js-hooks&authors=@bcameron1231&title=react-pnp-js-hooks%20-%20). + +## 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.** + + diff --git a/samples/react-pnp-js-hooks-sample/assets/react-pnp-js-sample.png b/samples/react-pnp-js-hooks/assets/react-pnp-js-sample.png similarity index 100% rename from samples/react-pnp-js-hooks-sample/assets/react-pnp-js-sample.png rename to samples/react-pnp-js-hooks/assets/react-pnp-js-sample.png diff --git a/samples/react-pnp-js-hooks/assets/sample.json b/samples/react-pnp-js-hooks/assets/sample.json new file mode 100644 index 000000000..a4d347e52 --- /dev/null +++ b/samples/react-pnp-js-hooks/assets/sample.json @@ -0,0 +1,50 @@ +[ + { + "name": "pnp-sp-dev-spfx-web-parts-react-pnp-js-hooks", + "source": "pnp", + "title": "pnp/js and ReactJS Functional Components", + "shortDescription": "This solution builds off of the solution react-async-await-sp-pnp-js submitted by Jose Quinto, and re-work of the existing class based react-pnp-js-sample by Julie Turner. This implementation refactors to take aspects out and utilize and showcase PnPjs Version 3 using React Functional Components and Hooks.", + "url": "https://github.com/pnp/sp-dev-fx-webparts/tree/main/samples/react-pnp-js-hooks", + "downloadUrl": "https://pnp.github.io/download-partial/?url=https://github.com/pnp/sp-dev-fx-webparts/tree/main/samples/react-pnp-js-hooks", + "longDescription": [ + "This solution builds off of the solution react-async-await-sp-pnp-js submitted by Jose Quinto, and re-work of the existing class based react-pnp-js-sample by Julie Turner. This implementation refactors to take aspects out and utilize and showcase PnPjs Version 3 using React Functional Components and Hooks." + ], + "creationDateTime": "2022-10-17", + "updateDateTime": "2022-10-17", + "products": [ + "SharePoint" + ], + "metadata": [ + { + "key": "CLIENT-SIDE-DEV", + "value": "React" + }, + { + "key": "SPFX-VERSION", + "value": "1.15.2" + } + ], + "thumbnails": [ + { + "type": "image", + "order": 100, + "url": "https://github.com/pnp/sp-dev-fx-webparts/raw/main/samples/react-pnp-js-hooks/assets/react-pnp-js-sample.png", + "alt": "Web Part Preview" + } + ], + "authors": [ + { + "gitHubAccount": "bcameron1231", + "pictureUrl": "https://github.com/bcameron1231.png", + "name": "Beau Cameron" + } + ], + "references": [ + { + "name": "Build your first SharePoint client-side web part", + "description": "Client-side web parts are client-side components that run in the context of a SharePoint page. Client-side web parts can be deployed to SharePoint environments that support the SharePoint Framework. You can also use modern JavaScript web frameworks, tools, and libraries to build them.", + "url": "https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/get-started/build-a-hello-world-web-part" + } + ] + } +] \ No newline at end of file diff --git a/samples/react-pnp-js-hooks-sample/config/config.json b/samples/react-pnp-js-hooks/config/config.json similarity index 100% rename from samples/react-pnp-js-hooks-sample/config/config.json rename to samples/react-pnp-js-hooks/config/config.json diff --git a/samples/react-pnp-js-hooks-sample/config/deploy-azure-storage.json b/samples/react-pnp-js-hooks/config/deploy-azure-storage.json similarity index 100% rename from samples/react-pnp-js-hooks-sample/config/deploy-azure-storage.json rename to samples/react-pnp-js-hooks/config/deploy-azure-storage.json diff --git a/samples/react-pnp-js-hooks-sample/config/package-solution.json b/samples/react-pnp-js-hooks/config/package-solution.json similarity index 100% rename from samples/react-pnp-js-hooks-sample/config/package-solution.json rename to samples/react-pnp-js-hooks/config/package-solution.json diff --git a/samples/react-pnp-js-hooks-sample/config/serve.json b/samples/react-pnp-js-hooks/config/serve.json similarity index 100% rename from samples/react-pnp-js-hooks-sample/config/serve.json rename to samples/react-pnp-js-hooks/config/serve.json diff --git a/samples/react-pnp-js-hooks-sample/config/write-manifests.json b/samples/react-pnp-js-hooks/config/write-manifests.json similarity index 100% rename from samples/react-pnp-js-hooks-sample/config/write-manifests.json rename to samples/react-pnp-js-hooks/config/write-manifests.json diff --git a/samples/react-pnp-js-hooks-sample/gulpfile.js b/samples/react-pnp-js-hooks/gulpfile.js similarity index 100% rename from samples/react-pnp-js-hooks-sample/gulpfile.js rename to samples/react-pnp-js-hooks/gulpfile.js diff --git a/samples/react-pnp-js-hooks-sample/package-lock.json b/samples/react-pnp-js-hooks/package-lock.json similarity index 99% rename from samples/react-pnp-js-hooks-sample/package-lock.json rename to samples/react-pnp-js-hooks/package-lock.json index 2760cd566..b0697c997 100644 --- a/samples/react-pnp-js-hooks-sample/package-lock.json +++ b/samples/react-pnp-js-hooks/package-lock.json @@ -599,9 +599,9 @@ } }, "@babel/runtime": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz", - "integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==", + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz", + "integrity": "sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==", "requires": { "regenerator-runtime": "^0.13.4" } @@ -2136,6 +2136,15 @@ } } }, + "@microsoft/microsoft-graph-clientV3": { + "version": "npm:@microsoft/microsoft-graph-client@3.0.2", + "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.2.tgz", + "integrity": "sha512-eYDiApYmiGsm1s1jfAa/rhB2xQCsX4pWt0vCTd1LZmiApMQfT/c0hXj2hvpuGz5GrcLdugbu05xB79rIV57Pjw==", + "requires": { + "@babel/runtime": "^7.12.5", + "tslib": "^2.2.0" + } + }, "@microsoft/office-ui-fabric-react-bundle": { "version": "1.15.2", "resolved": "https://registry.npmjs.org/@microsoft/office-ui-fabric-react-bundle/-/office-ui-fabric-react-bundle-1.15.2.tgz", @@ -4905,32 +4914,6 @@ "adal-angular": "1.0.16", "msalLegacy": "npm:msal@1.4.12", "tslib": "2.3.1" - }, - "dependencies": { - "@microsoft/microsoft-graph-clientV3": { - "version": "npm:@microsoft/microsoft-graph-client@3.0.2", - "resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.2.tgz", - "integrity": "sha512-eYDiApYmiGsm1s1jfAa/rhB2xQCsX4pWt0vCTd1LZmiApMQfT/c0hXj2hvpuGz5GrcLdugbu05xB79rIV57Pjw==", - "requires": { - "@babel/runtime": "^7.12.5", - "tslib": "^2.2.0" - } - }, - "msalLegacy": { - "version": "npm:msal@1.4.12", - "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.12.tgz", - "integrity": "sha512-gjupwQ6nvNL6mZkl5NIXyUmZhTiEMRu5giNdgHMh8l5EPOnV2Xj6nukY1NIxFacSTkEYUSDB47Pej9GxDYf+1w==", - "requires": { - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - } } }, "@microsoft/sp-image-helper": { @@ -17665,6 +17648,21 @@ } } }, + "msalLegacy": { + "version": "npm:msal@1.4.12", + "resolved": "https://registry.npmjs.org/msal/-/msal-1.4.12.tgz", + "integrity": "sha512-gjupwQ6nvNL6mZkl5NIXyUmZhTiEMRu5giNdgHMh8l5EPOnV2Xj6nukY1NIxFacSTkEYUSDB47Pej9GxDYf+1w==", + "requires": { + "tslib": "^1.9.3" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, "multicast-dns": { "version": "6.2.3", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", @@ -20599,9 +20597,9 @@ } }, "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + "version": "0.13.10", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz", + "integrity": "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==" }, "regex-not": { "version": "1.0.2", diff --git a/samples/react-pnp-js-hooks-sample/package.json b/samples/react-pnp-js-hooks/package.json similarity index 100% rename from samples/react-pnp-js-hooks-sample/package.json rename to samples/react-pnp-js-hooks/package.json diff --git a/samples/react-pnp-js-hooks-sample/src/index.ts b/samples/react-pnp-js-hooks/src/index.ts similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/index.ts rename to samples/react-pnp-js-hooks/src/index.ts diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/PnPjsExampleWebPart.manifest.json b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/PnPjsExampleWebPart.manifest.json similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/PnPjsExampleWebPart.manifest.json rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/PnPjsExampleWebPart.manifest.json diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/PnPjsExampleWebPart.ts b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/PnPjsExampleWebPart.ts similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/PnPjsExampleWebPart.ts rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/PnPjsExampleWebPart.ts diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/assets/welcome-dark.png b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/assets/welcome-dark.png similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/assets/welcome-dark.png rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/assets/welcome-dark.png diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/assets/welcome-light.png b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/assets/welcome-light.png similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/assets/welcome-light.png rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/assets/welcome-light.png diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/components/IPnPjsExampleProps.ts b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/components/IPnPjsExampleProps.ts similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/components/IPnPjsExampleProps.ts rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/components/IPnPjsExampleProps.ts diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/components/PnPjsExample.module.scss b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/components/PnPjsExample.module.scss similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/components/PnPjsExample.module.scss rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/components/PnPjsExample.module.scss diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/components/PnPjsExample.tsx b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/components/PnPjsExample.tsx similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/components/PnPjsExample.tsx rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/components/PnPjsExample.tsx diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/components/interfaces.ts b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/components/interfaces.ts similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/components/interfaces.ts rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/components/interfaces.ts diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/hooks/useDocuments.ts b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/hooks/useDocuments.ts similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/hooks/useDocuments.ts rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/hooks/useDocuments.ts diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/loc/en-us.js b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/loc/en-us.js similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/loc/en-us.js rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/loc/en-us.js diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/loc/mystrings.d.ts b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/loc/mystrings.d.ts similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/loc/mystrings.d.ts rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/loc/mystrings.d.ts diff --git a/samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/pnpjsConfig.ts b/samples/react-pnp-js-hooks/src/webparts/pnPjsExample/pnpjsConfig.ts similarity index 100% rename from samples/react-pnp-js-hooks-sample/src/webparts/pnPjsExample/pnpjsConfig.ts rename to samples/react-pnp-js-hooks/src/webparts/pnPjsExample/pnpjsConfig.ts diff --git a/samples/react-pnp-js-hooks-sample/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_color.png b/samples/react-pnp-js-hooks/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_color.png similarity index 100% rename from samples/react-pnp-js-hooks-sample/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_color.png rename to samples/react-pnp-js-hooks/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_color.png diff --git a/samples/react-pnp-js-hooks-sample/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_outline.png b/samples/react-pnp-js-hooks/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_outline.png similarity index 100% rename from samples/react-pnp-js-hooks-sample/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_outline.png rename to samples/react-pnp-js-hooks/teams/72f602dd-5b1b-4a6e-ae8f-83c9544cb711_outline.png diff --git a/samples/react-pnp-js-hooks-sample/tsconfig.json b/samples/react-pnp-js-hooks/tsconfig.json similarity index 100% rename from samples/react-pnp-js-hooks-sample/tsconfig.json rename to samples/react-pnp-js-hooks/tsconfig.json