From e6157210029db653cb024c9fdba1dafa1cffdb0c Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 17 Oct 2022 00:55:32 -0400 Subject: [PATCH] Updates 3rd party licenses --- ThirdPartyNotices.txt | 145 +++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 126 insertions(+), 19 deletions(-) diff --git a/ThirdPartyNotices.txt b/ThirdPartyNotices.txt index 4a8a8a6..0e970a9 100644 --- a/ThirdPartyNotices.txt +++ b/ThirdPartyNotices.txt @@ -3,25 +3,132 @@ GitLens THIRD-PARTY SOFTWARE NOTICES AND INFORMATION This project incorporates components from the projects listed below. -1. @octokit/core version 4.0.5 (https://github.com/octokit/core.js) -2. @vscode/codicons version 0.0.32 (https://github.com/microsoft/vscode-codicons) -3. @vscode/webview-ui-toolkit version 1.0.1 (https://github.com/microsoft/vscode-webview-ui-toolkit) -4. ansi-regex version 6.0.1 (https://github.com/chalk/ansi-regex) -5. billboard.js version 3.5.1 (https://github.com/naver/billboard.js) -6. chroma-js version 2.4.2 (https://github.com/gka/chroma.js) -7. https-proxy-agent version 5.0.1 (https://github.com/TooTallNate/node-https-proxy-agent) -8. iconv-lite version 0.6.3 (https://github.com/ashtuchkin/iconv-lite) -9. lit version 2.3.1 (https://github.com/lit/lit) -10. lodash-es version 4.17.21 (https://github.com/lodash/lodash) -11. md5.js version 1.3.5 (https://github.com/crypto-browserify/md5.js) -12. microsoft/vscode (https://github.com/microsoft/vscode) -13. node-fetch version 2.6.7 (https://github.com/bitinn/node-fetch) -14. path-browserify version 1.0.1 (https://github.com/browserify/path-browserify) -15. react-dom version 16.8.4 (https://github.com/facebook/react) -16. react version 16.8.4 (https://github.com/facebook/react) -17. sindresorhus/is-fullwidth-code-point (https://github.com/sindresorhus/is-fullwidth-code-point) -18. sindresorhus/string-width (https://github.com/sindresorhus/string-width) -19. sortablejs version 1.15.0 (https://github.com/SortableJS/Sortable) +1. @microsoft/fast-element version 1.10.5 (https://github.com/Microsoft/fast) +2. @microsoft/fast-react-wrapper version 0.3.14 (https://github.com/Microsoft/fast) +3. @octokit/core version 4.0.5 (https://github.com/octokit/core.js) +4. @vscode/codicons version 0.0.32 (https://github.com/microsoft/vscode-codicons) +5. @vscode/webview-ui-toolkit version 1.1.0 (https://github.com/microsoft/vscode-webview-ui-toolkit) +6. ansi-regex version 6.0.1 (https://github.com/chalk/ansi-regex) +7. billboard.js version 3.5.1 (https://github.com/naver/billboard.js) +8. chroma-js version 2.4.2 (https://github.com/gka/chroma.js) +9. https-proxy-agent version 5.0.1 (https://github.com/TooTallNate/node-https-proxy-agent) +10. iconv-lite version 0.6.3 (https://github.com/ashtuchkin/iconv-lite) +11. lit version 2.3.1 (https://github.com/lit/lit) +12. lodash-es version 4.17.21 (https://github.com/lodash/lodash) +13. md5.js version 1.3.5 (https://github.com/crypto-browserify/md5.js) +14. microsoft/vscode (https://github.com/microsoft/vscode) +15. node-fetch version 2.6.7 (https://github.com/bitinn/node-fetch) +16. path-browserify version 1.0.1 (https://github.com/browserify/path-browserify) +17. react-dom version 16.8.4 (https://github.com/facebook/react) +18. react version 16.8.4 (https://github.com/facebook/react) +19. sindresorhus/is-fullwidth-code-point (https://github.com/sindresorhus/is-fullwidth-code-point) +20. sindresorhus/string-width (https://github.com/sindresorhus/string-width) +21. sortablejs version 1.15.0 (https://github.com/SortableJS/Sortable) + +%% @microsoft/fast-element NOTICES AND INFORMATION BEGIN HERE +========================================= +# FAST Element + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![npm version](https://badge.fury.io/js/%40microsoft%2Ffast-element.svg)](https://badge.fury.io/js/%40microsoft%2Ffast-element) + +The `fast-element` library is a lightweight means to easily build performant, memory-efficient, standards-compliant Web Components. FAST Elements work in every major browser and can be used in combination with any front-end framework or even without a framework. + +## Installation + +### From NPM + +To install the `fast-element` library, use either `npm` or `yarn` as follows: + +```shell +npm install --save @microsoft/fast-element +``` + +```shell +yarn add @microsoft/fast-element +``` + +Within your JavaScript or TypeScript code, you can then import library APIs like this: + +```ts +import { FASTElement } from '@microsoft/fast-element'; +``` + +:::tip +Looking for a setup that integrates with a particular front-end framework or bundler? Check out [our integration docs](../integrations/introduction.md). +::: + +### From CDN + +A pre-bundled script that contains all APIs needed to build web components with FAST Element is available on CDN. You can use this script by adding [`type="module"`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) to the script element and then importing from the CDN. + +```html + + + + + + + +``` + +The markup above always references the latest release. When deploying to production, you will want to ship with a specific version. Here's an example of the markup for that: + +```html + +``` + +:::note +For simplicity, examples throughout the documentation will assume the library has been installed from NPM, but you can always replace the import location with the CDN URL. +::: + +:::tip +Looking for a quick guide on building components? Check out [our Cheat Sheet](../resources/cheat-sheet.md#building-components). +::: +========================================= +END OF @microsoft/fast-element NOTICES AND INFORMATION + +%% @microsoft/fast-react-wrapper NOTICES AND INFORMATION BEGIN HERE +========================================= +# FAST React Wrapper + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) +[![npm version](https://badge.fury.io/js/%40microsoft%2Ffast-react-wrapper.svg)](https://badge.fury.io/js/%40microsoft%2Ffast-react-wrapper) + +The `fast-react-wrapper` package contains a utility that enables automatically wrapping Web Components in a React component for ease of integration into React projects. + +## Installation + +### From NPM + +To install the `fast-react-wrapper` library, use either `npm` or `yarn` as follows: + +```shell +npm install --save @microsoft/fast-react-wrapper +``` + +```shell +yarn add @microsoft/fast-react-wrapper +``` + +Within your JavaScript or TypeScript code, you can then and use the wrapper like this: + +```ts +import React from 'react'; +import { provideReactWrapper } from '@microsoft/fast-react-wrapper'; + +const { wrap } = provideReactWrapper(React); + +const MyComponent = wrap(MyComponent); +``` + +For additional wrapper settings and more information on integrating with Design Systems, see [our integration docs](https://fast.design/docs/integrations/react). +========================================= +END OF @microsoft/fast-react-wrapper NOTICES AND INFORMATION %% @octokit/core NOTICES AND INFORMATION BEGIN HERE =========================================