diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..bf20d22 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,2 @@ +node_modules +**/dist \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..11b928a --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,6 @@ +{ + "extends": "react-app", + "rules": { + "react/forbid-foreign-prop-types": 0 + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fb5dd93 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# dependencies +node_modules +/.pnp +.pnp.js + +# production +/build +public/* + +# misc +.DS_Store +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# build +dist/ + +# work in progress +packages/website +packages/generate-from-figma \ No newline at end of file diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..53405e2 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,11 @@ +build +node_modules +package-lock.json +package.json +storybook-static +public +.cache +dist +.next +out +.mdx-data \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..fc363c6 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,15 @@ +{ + "singleQuote": true, + "trailingComma": "es5", + "printWidth": 120, + "semi": true, + "tabWidth": 2, + "overrides": [ + { + "files": "*.mdx", + "options": { + "printWidth": 80 + } + } + ] +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e59c182 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Pingback LLC + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/lerna.json b/lerna.json new file mode 100644 index 0000000..93dc0c3 --- /dev/null +++ b/lerna.json @@ -0,0 +1,7 @@ +{ + "useNx": true, + "useWorkspaces": true, + "packages": ["packages/*"], + "version": "independent", + "npmClient": "yarn" +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..0b1f092 --- /dev/null +++ b/package.json @@ -0,0 +1,25 @@ +{ + "name": "root", + "private": true, + "workspaces": [ + "packages/*" + ], + "devDependencies": { + "@typescript-eslint/eslint-plugin": "^1.13.0", + "@typescript-eslint/parser": "^1.13.0", + "babel-eslint": "10.0.2", + "eslint": "5.16.0", + "eslint-config-react-app": "^4.0.1", + "eslint-plugin-flowtype": "3.11.1", + "eslint-plugin-import": "2.18.0", + "eslint-plugin-jsx-a11y": "6.2.3", + "eslint-plugin-react": "7.14.2", + "eslint-plugin-react-hooks": "1.6.1", + "husky": "^2.7.0", + "lerna": "6.0.1", + "lint-staged": "^9.0.0", + "prettier": "^2.0.5", + "rimraf": "^2.6.3", + "yarnhook": "^0.4.1" + } +} diff --git a/packages/duotone/package.json b/packages/duotone/package.json new file mode 100644 index 0000000..be7ab78 --- /dev/null +++ b/packages/duotone/package.json @@ -0,0 +1,34 @@ +{ + "name": "@stash-ui/duotone-icons", + "private": false, + "version": "1.0.0", + "license": "MIT", + "description": "React Duotone Icons Set", + "authors": [ + "Tiago Gerken ", + "Pedro Ladeira " + ], + "module": "dist/duotone-icons.esm.js", + "main": "index.js", + "types": "dist/index.d.ts", + "files": [ + "index.js", + "manifest.json" + ], + "publishConfig": { + "access": "public" + }, + "scripts": { + "generate-src": "generate-icons --file=X5DiJzGRQXCyEfBqocT235 --style=duotone", + "build": "rimraf dist && tsdx build --format es,cjs --entry src/index.tsx", + "watch": "rimraf dist && tsdx watch --format es,cjs --entry src/index.tsx", + "prepublishOnly": "npm run build" + }, + "peerDependencies": { + "react": "^16.x || ^17.x || ^18.x" + }, + "devDependencies": { + "tsdx": "0.14.0", + "@stash-ui/generate-from-figma": "*" + } + } \ No newline at end of file diff --git a/packages/duotone/readme.md b/packages/duotone/readme.md new file mode 100644 index 0000000..96097a1 --- /dev/null +++ b/packages/duotone/readme.md @@ -0,0 +1,54 @@ +
@stash-ui/duotone-icons
+
Solid icons variation.
+
+
+Website + · +GitHub + · +Figma + · +Discord +
+ +## Install + +Install the set of duotone icons from your command line. + +#### With yarn + +```sh +yarn add @stash-ui/duotone-icons +``` + +#### With npm + +```sh +npm install @stash-ui/duotone-icons +``` + +## Getting started + +Add the SVG icon to your application. Include color where needed. + +```jsx +import { AngleDownIcon, AngleUpIcon } from '@stash-ui/duotone-icons'; + +const App = () => { + return ( + + + ); +}; +``` + +## Authors + +- Tiago Gerken ([@tgerken](https://twitter.com/tgerken)) - [Pingback](https://pingback.com) +- Pedro Ladeira ([@pedrooladeira](https://twitter.com/pedrooladeira)) - [Pingback](https://pingback.com) + +## License + +Licensed under the MIT License, Copyright © 2022-present Pingback LLC. + +See [LICENSE](./LICENSE) for more information. diff --git a/packages/duotone/src/AngleDownIcon.tsx b/packages/duotone/src/AngleDownIcon.tsx new file mode 100644 index 0000000..a77ccf0 --- /dev/null +++ b/packages/duotone/src/AngleDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleDownIcon; diff --git a/packages/duotone/src/AngleLeftIcon.tsx b/packages/duotone/src/AngleLeftIcon.tsx new file mode 100644 index 0000000..a726178 --- /dev/null +++ b/packages/duotone/src/AngleLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleLeftIcon; diff --git a/packages/duotone/src/AngleRightIcon.tsx b/packages/duotone/src/AngleRightIcon.tsx new file mode 100644 index 0000000..e36da26 --- /dev/null +++ b/packages/duotone/src/AngleRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleRightIcon; diff --git a/packages/duotone/src/AngleUpIcon.tsx b/packages/duotone/src/AngleUpIcon.tsx new file mode 100644 index 0000000..07a6e0c --- /dev/null +++ b/packages/duotone/src/AngleUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleUpIcon; diff --git a/packages/duotone/src/ArrowDownIcon.tsx b/packages/duotone/src/ArrowDownIcon.tsx new file mode 100644 index 0000000..541374c --- /dev/null +++ b/packages/duotone/src/ArrowDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowDownIcon; diff --git a/packages/duotone/src/ArrowDownLargeIcon.tsx b/packages/duotone/src/ArrowDownLargeIcon.tsx new file mode 100644 index 0000000..20154d5 --- /dev/null +++ b/packages/duotone/src/ArrowDownLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowDownLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowDownLargeIcon; diff --git a/packages/duotone/src/ArrowLeftIcon.tsx b/packages/duotone/src/ArrowLeftIcon.tsx new file mode 100644 index 0000000..78f728b --- /dev/null +++ b/packages/duotone/src/ArrowLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowLeftIcon; diff --git a/packages/duotone/src/ArrowLeftLargeIcon.tsx b/packages/duotone/src/ArrowLeftLargeIcon.tsx new file mode 100644 index 0000000..aa37414 --- /dev/null +++ b/packages/duotone/src/ArrowLeftLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowLeftLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowLeftLargeIcon; diff --git a/packages/duotone/src/ArrowRetryIcon.tsx b/packages/duotone/src/ArrowRetryIcon.tsx new file mode 100644 index 0000000..15a7091 --- /dev/null +++ b/packages/duotone/src/ArrowRetryIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRetryIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRetryIcon; diff --git a/packages/duotone/src/ArrowRightIcon.tsx b/packages/duotone/src/ArrowRightIcon.tsx new file mode 100644 index 0000000..fa385e5 --- /dev/null +++ b/packages/duotone/src/ArrowRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRightIcon; diff --git a/packages/duotone/src/ArrowRightLargeIcon.tsx b/packages/duotone/src/ArrowRightLargeIcon.tsx new file mode 100644 index 0000000..32d8514 --- /dev/null +++ b/packages/duotone/src/ArrowRightLargeIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRightLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRightLargeIcon; diff --git a/packages/duotone/src/ArrowUpIcon.tsx b/packages/duotone/src/ArrowUpIcon.tsx new file mode 100644 index 0000000..739e81c --- /dev/null +++ b/packages/duotone/src/ArrowUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowUpIcon; diff --git a/packages/duotone/src/ArrowUpLargeIcon.tsx b/packages/duotone/src/ArrowUpLargeIcon.tsx new file mode 100644 index 0000000..6bcdef1 --- /dev/null +++ b/packages/duotone/src/ArrowUpLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowUpLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowUpLargeIcon; diff --git a/packages/duotone/src/ArrowsSwitchIcon.tsx b/packages/duotone/src/ArrowsSwitchIcon.tsx new file mode 100644 index 0000000..6420e34 --- /dev/null +++ b/packages/duotone/src/ArrowsSwitchIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowsSwitchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ArrowsSwitchIcon; diff --git a/packages/duotone/src/ArticleAltIcon.tsx b/packages/duotone/src/ArticleAltIcon.tsx new file mode 100644 index 0000000..fc13d75 --- /dev/null +++ b/packages/duotone/src/ArticleAltIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticleAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default ArticleAltIcon; diff --git a/packages/duotone/src/ArticleIcon.tsx b/packages/duotone/src/ArticleIcon.tsx new file mode 100644 index 0000000..a8262bc --- /dev/null +++ b/packages/duotone/src/ArticleIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default ArticleIcon; diff --git a/packages/duotone/src/ArticlePlusIcon.tsx b/packages/duotone/src/ArticlePlusIcon.tsx new file mode 100644 index 0000000..166649c --- /dev/null +++ b/packages/duotone/src/ArticlePlusIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticlePlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default ArticlePlusIcon; diff --git a/packages/duotone/src/AsteriskIcon.tsx b/packages/duotone/src/AsteriskIcon.tsx new file mode 100644 index 0000000..c4b83db --- /dev/null +++ b/packages/duotone/src/AsteriskIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AsteriskIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AsteriskIcon; diff --git a/packages/duotone/src/AtSymbolIcon.tsx b/packages/duotone/src/AtSymbolIcon.tsx new file mode 100644 index 0000000..6a2c1f4 --- /dev/null +++ b/packages/duotone/src/AtSymbolIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AtSymbolIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AtSymbolIcon; diff --git a/packages/duotone/src/BadgeDollarIcon.tsx b/packages/duotone/src/BadgeDollarIcon.tsx new file mode 100644 index 0000000..46ebabf --- /dev/null +++ b/packages/duotone/src/BadgeDollarIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BadgeDollarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BadgeDollarIcon; diff --git a/packages/duotone/src/BadgeVerifiedIcon.tsx b/packages/duotone/src/BadgeVerifiedIcon.tsx new file mode 100644 index 0000000..9a5d149 --- /dev/null +++ b/packages/duotone/src/BadgeVerifiedIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BadgeVerifiedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BadgeVerifiedIcon; diff --git a/packages/duotone/src/BalanceIcon.tsx b/packages/duotone/src/BalanceIcon.tsx new file mode 100644 index 0000000..2f55581 --- /dev/null +++ b/packages/duotone/src/BalanceIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BalanceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default BalanceIcon; diff --git a/packages/duotone/src/BellIcon.tsx b/packages/duotone/src/BellIcon.tsx new file mode 100644 index 0000000..c289e20 --- /dev/null +++ b/packages/duotone/src/BellIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BellIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BellIcon; diff --git a/packages/duotone/src/BillingInfoIcon.tsx b/packages/duotone/src/BillingInfoIcon.tsx new file mode 100644 index 0000000..8b73ea7 --- /dev/null +++ b/packages/duotone/src/BillingInfoIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BillingInfoIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default BillingInfoIcon; diff --git a/packages/duotone/src/BurgerArrowLeftIcon.tsx b/packages/duotone/src/BurgerArrowLeftIcon.tsx new file mode 100644 index 0000000..eca7774 --- /dev/null +++ b/packages/duotone/src/BurgerArrowLeftIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BurgerArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default BurgerArrowLeftIcon; diff --git a/packages/duotone/src/BurgerArrowRightIcon.tsx b/packages/duotone/src/BurgerArrowRightIcon.tsx new file mode 100644 index 0000000..5013ed4 --- /dev/null +++ b/packages/duotone/src/BurgerArrowRightIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BurgerArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default BurgerArrowRightIcon; diff --git a/packages/duotone/src/BurgerClassicIcon.tsx b/packages/duotone/src/BurgerClassicIcon.tsx new file mode 100644 index 0000000..7e4fc57 --- /dev/null +++ b/packages/duotone/src/BurgerClassicIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BurgerClassicIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BurgerClassicIcon; diff --git a/packages/duotone/src/CalendarEndIcon.tsx b/packages/duotone/src/CalendarEndIcon.tsx new file mode 100644 index 0000000..884424d --- /dev/null +++ b/packages/duotone/src/CalendarEndIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarEndIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default CalendarEndIcon; diff --git a/packages/duotone/src/CalendarIcon.tsx b/packages/duotone/src/CalendarIcon.tsx new file mode 100644 index 0000000..9266053 --- /dev/null +++ b/packages/duotone/src/CalendarIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default CalendarIcon; diff --git a/packages/duotone/src/CalendarNineIcon.tsx b/packages/duotone/src/CalendarNineIcon.tsx new file mode 100644 index 0000000..24f3a7c --- /dev/null +++ b/packages/duotone/src/CalendarNineIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarNineIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default CalendarNineIcon; diff --git a/packages/duotone/src/CalendarStarIcon.tsx b/packages/duotone/src/CalendarStarIcon.tsx new file mode 100644 index 0000000..92aebd9 --- /dev/null +++ b/packages/duotone/src/CalendarStarIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarStarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default CalendarStarIcon; diff --git a/packages/duotone/src/CaretDownIcon.tsx b/packages/duotone/src/CaretDownIcon.tsx new file mode 100644 index 0000000..8613507 --- /dev/null +++ b/packages/duotone/src/CaretDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretDownIcon; diff --git a/packages/duotone/src/CaretLeftIcon.tsx b/packages/duotone/src/CaretLeftIcon.tsx new file mode 100644 index 0000000..add7693 --- /dev/null +++ b/packages/duotone/src/CaretLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretLeftIcon; diff --git a/packages/duotone/src/CaretRightIcon.tsx b/packages/duotone/src/CaretRightIcon.tsx new file mode 100644 index 0000000..775bcfb --- /dev/null +++ b/packages/duotone/src/CaretRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretRightIcon; diff --git a/packages/duotone/src/CaretUpIcon.tsx b/packages/duotone/src/CaretUpIcon.tsx new file mode 100644 index 0000000..6a1c1cb --- /dev/null +++ b/packages/duotone/src/CaretUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretUpIcon; diff --git a/packages/duotone/src/ChartPieIcon.tsx b/packages/duotone/src/ChartPieIcon.tsx new file mode 100644 index 0000000..85a15fd --- /dev/null +++ b/packages/duotone/src/ChartPieIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartPieIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ChartPieIcon; diff --git a/packages/duotone/src/ChartTrendDownIcon.tsx b/packages/duotone/src/ChartTrendDownIcon.tsx new file mode 100644 index 0000000..1064fe9 --- /dev/null +++ b/packages/duotone/src/ChartTrendDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartTrendDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChartTrendDownIcon; diff --git a/packages/duotone/src/ChartTrendUpIcon.tsx b/packages/duotone/src/ChartTrendUpIcon.tsx new file mode 100644 index 0000000..10c8e58 --- /dev/null +++ b/packages/duotone/src/ChartTrendUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartTrendUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChartTrendUpIcon; diff --git a/packages/duotone/src/CheckCircleIcon.tsx b/packages/duotone/src/CheckCircleIcon.tsx new file mode 100644 index 0000000..3233508 --- /dev/null +++ b/packages/duotone/src/CheckCircleIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CheckCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CheckCircleIcon; diff --git a/packages/duotone/src/CheckIcon.tsx b/packages/duotone/src/CheckIcon.tsx new file mode 100644 index 0000000..f245b89 --- /dev/null +++ b/packages/duotone/src/CheckIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CheckIcon; diff --git a/packages/duotone/src/ChevronDownIcon.tsx b/packages/duotone/src/ChevronDownIcon.tsx new file mode 100644 index 0000000..1852b26 --- /dev/null +++ b/packages/duotone/src/ChevronDownIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronDownIcon; diff --git a/packages/duotone/src/ChevronLeftIcon.tsx b/packages/duotone/src/ChevronLeftIcon.tsx new file mode 100644 index 0000000..a13be95 --- /dev/null +++ b/packages/duotone/src/ChevronLeftIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronLeftIcon; diff --git a/packages/duotone/src/ChevronRightIcon.tsx b/packages/duotone/src/ChevronRightIcon.tsx new file mode 100644 index 0000000..ef2dd21 --- /dev/null +++ b/packages/duotone/src/ChevronRightIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronRightIcon; diff --git a/packages/duotone/src/ChevronUpIcon.tsx b/packages/duotone/src/ChevronUpIcon.tsx new file mode 100644 index 0000000..b8c80f2 --- /dev/null +++ b/packages/duotone/src/ChevronUpIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronUpIcon; diff --git a/packages/duotone/src/CircleDotIcon.tsx b/packages/duotone/src/CircleDotIcon.tsx new file mode 100644 index 0000000..d47e556 --- /dev/null +++ b/packages/duotone/src/CircleDotIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CircleDotIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CircleDotIcon; diff --git a/packages/duotone/src/CircleIcon.tsx b/packages/duotone/src/CircleIcon.tsx new file mode 100644 index 0000000..76e2cdb --- /dev/null +++ b/packages/duotone/src/CircleIcon.tsx @@ -0,0 +1,26 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CircleIcon; diff --git a/packages/duotone/src/ClockIcon.tsx b/packages/duotone/src/ClockIcon.tsx new file mode 100644 index 0000000..7205489 --- /dev/null +++ b/packages/duotone/src/ClockIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ClockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ClockIcon; diff --git a/packages/duotone/src/CloudArrowDownIcon.tsx b/packages/duotone/src/CloudArrowDownIcon.tsx new file mode 100644 index 0000000..71fc48d --- /dev/null +++ b/packages/duotone/src/CloudArrowDownIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudArrowDownIcon; diff --git a/packages/duotone/src/CloudArrowUpIcon.tsx b/packages/duotone/src/CloudArrowUpIcon.tsx new file mode 100644 index 0000000..6ece237 --- /dev/null +++ b/packages/duotone/src/CloudArrowUpIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudArrowUpIcon; diff --git a/packages/duotone/src/CloudCheckIcon.tsx b/packages/duotone/src/CloudCheckIcon.tsx new file mode 100644 index 0000000..bcc1e91 --- /dev/null +++ b/packages/duotone/src/CloudCheckIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudCheckIcon; diff --git a/packages/duotone/src/CloudIcon.tsx b/packages/duotone/src/CloudIcon.tsx new file mode 100644 index 0000000..fb5ff6a --- /dev/null +++ b/packages/duotone/src/CloudIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CloudIcon; diff --git a/packages/duotone/src/CloudMinusIcon.tsx b/packages/duotone/src/CloudMinusIcon.tsx new file mode 100644 index 0000000..0c47136 --- /dev/null +++ b/packages/duotone/src/CloudMinusIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudMinusIcon; diff --git a/packages/duotone/src/CloudPlusIcon.tsx b/packages/duotone/src/CloudPlusIcon.tsx new file mode 100644 index 0000000..b309239 --- /dev/null +++ b/packages/duotone/src/CloudPlusIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudPlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudPlusIcon; diff --git a/packages/duotone/src/CogIcon.tsx b/packages/duotone/src/CogIcon.tsx new file mode 100644 index 0000000..3a56fde --- /dev/null +++ b/packages/duotone/src/CogIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CogIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CogIcon; diff --git a/packages/duotone/src/CompassIcon.tsx b/packages/duotone/src/CompassIcon.tsx new file mode 100644 index 0000000..23f256b --- /dev/null +++ b/packages/duotone/src/CompassIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CompassIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default CompassIcon; diff --git a/packages/duotone/src/CopyIcon.tsx b/packages/duotone/src/CopyIcon.tsx new file mode 100644 index 0000000..30dada6 --- /dev/null +++ b/packages/duotone/src/CopyIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CopyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CopyIcon; diff --git a/packages/duotone/src/CreatorsClubIcon.tsx b/packages/duotone/src/CreatorsClubIcon.tsx new file mode 100644 index 0000000..365b0bd --- /dev/null +++ b/packages/duotone/src/CreatorsClubIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CreatorsClubIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CreatorsClubIcon; diff --git a/packages/duotone/src/CreditCardIcon.tsx b/packages/duotone/src/CreditCardIcon.tsx new file mode 100644 index 0000000..8abadfc --- /dev/null +++ b/packages/duotone/src/CreditCardIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CreditCardIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CreditCardIcon; diff --git a/packages/duotone/src/CrownIcon.tsx b/packages/duotone/src/CrownIcon.tsx new file mode 100644 index 0000000..bfead9b --- /dev/null +++ b/packages/duotone/src/CrownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CrownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CrownIcon; diff --git a/packages/duotone/src/CursorArrowIcon.tsx b/packages/duotone/src/CursorArrowIcon.tsx new file mode 100644 index 0000000..c3256ac --- /dev/null +++ b/packages/duotone/src/CursorArrowIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CursorArrowIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CursorArrowIcon; diff --git a/packages/duotone/src/DashboardIcon.tsx b/packages/duotone/src/DashboardIcon.tsx new file mode 100644 index 0000000..ad9ab8c --- /dev/null +++ b/packages/duotone/src/DashboardIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DashboardIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default DashboardIcon; diff --git a/packages/duotone/src/DataBooleanIcon.tsx b/packages/duotone/src/DataBooleanIcon.tsx new file mode 100644 index 0000000..ac7c9dd --- /dev/null +++ b/packages/duotone/src/DataBooleanIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataBooleanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default DataBooleanIcon; diff --git a/packages/duotone/src/DataNumbersIcon.tsx b/packages/duotone/src/DataNumbersIcon.tsx new file mode 100644 index 0000000..d446821 --- /dev/null +++ b/packages/duotone/src/DataNumbersIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataNumbersIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DataNumbersIcon; diff --git a/packages/duotone/src/DataTextIcon.tsx b/packages/duotone/src/DataTextIcon.tsx new file mode 100644 index 0000000..b617e68 --- /dev/null +++ b/packages/duotone/src/DataTextIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataTextIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DataTextIcon; diff --git a/packages/duotone/src/DesktopCheckIcon.tsx b/packages/duotone/src/DesktopCheckIcon.tsx new file mode 100644 index 0000000..d608eca --- /dev/null +++ b/packages/duotone/src/DesktopCheckIcon.tsx @@ -0,0 +1,42 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DesktopCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default DesktopCheckIcon; diff --git a/packages/duotone/src/DesktopIcon.tsx b/packages/duotone/src/DesktopIcon.tsx new file mode 100644 index 0000000..7183021 --- /dev/null +++ b/packages/duotone/src/DesktopIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DesktopIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default DesktopIcon; diff --git a/packages/duotone/src/DivideIcon.tsx b/packages/duotone/src/DivideIcon.tsx new file mode 100644 index 0000000..17ada7e --- /dev/null +++ b/packages/duotone/src/DivideIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DivideIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DivideIcon; diff --git a/packages/duotone/src/DollarSignIcon.tsx b/packages/duotone/src/DollarSignIcon.tsx new file mode 100644 index 0000000..a4804c5 --- /dev/null +++ b/packages/duotone/src/DollarSignIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DollarSignIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DollarSignIcon; diff --git a/packages/duotone/src/DomainIcon.tsx b/packages/duotone/src/DomainIcon.tsx new file mode 100644 index 0000000..388a24b --- /dev/null +++ b/packages/duotone/src/DomainIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DomainIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default DomainIcon; diff --git a/packages/duotone/src/EllipsisHIcon.tsx b/packages/duotone/src/EllipsisHIcon.tsx new file mode 100644 index 0000000..e5d8f0a --- /dev/null +++ b/packages/duotone/src/EllipsisHIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EllipsisHIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default EllipsisHIcon; diff --git a/packages/duotone/src/EllipsisVIcon.tsx b/packages/duotone/src/EllipsisVIcon.tsx new file mode 100644 index 0000000..0c6b5ec --- /dev/null +++ b/packages/duotone/src/EllipsisVIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EllipsisVIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default EllipsisVIcon; diff --git a/packages/duotone/src/EmojiPissedOffIcon.tsx b/packages/duotone/src/EmojiPissedOffIcon.tsx new file mode 100644 index 0000000..96a6d5d --- /dev/null +++ b/packages/duotone/src/EmojiPissedOffIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EmojiPissedOffIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default EmojiPissedOffIcon; diff --git a/packages/duotone/src/EngagementIcon.tsx b/packages/duotone/src/EngagementIcon.tsx new file mode 100644 index 0000000..f477592 --- /dev/null +++ b/packages/duotone/src/EngagementIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EngagementIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default EngagementIcon; diff --git a/packages/duotone/src/EnvelopeAtIcon.tsx b/packages/duotone/src/EnvelopeAtIcon.tsx new file mode 100644 index 0000000..e9d967e --- /dev/null +++ b/packages/duotone/src/EnvelopeAtIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EnvelopeAtIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default EnvelopeAtIcon; diff --git a/packages/duotone/src/EnvelopeFlyingIcon.tsx b/packages/duotone/src/EnvelopeFlyingIcon.tsx new file mode 100644 index 0000000..363f8ee --- /dev/null +++ b/packages/duotone/src/EnvelopeFlyingIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EnvelopeFlyingIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default EnvelopeFlyingIcon; diff --git a/packages/duotone/src/EnvelopeIcon.tsx b/packages/duotone/src/EnvelopeIcon.tsx new file mode 100644 index 0000000..99a0446 --- /dev/null +++ b/packages/duotone/src/EnvelopeIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EnvelopeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EnvelopeIcon; diff --git a/packages/duotone/src/EqualIcon.tsx b/packages/duotone/src/EqualIcon.tsx new file mode 100644 index 0000000..4acaa5c --- /dev/null +++ b/packages/duotone/src/EqualIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EqualIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EqualIcon; diff --git a/packages/duotone/src/EspiralBookIcon.tsx b/packages/duotone/src/EspiralBookIcon.tsx new file mode 100644 index 0000000..1d45c5e --- /dev/null +++ b/packages/duotone/src/EspiralBookIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EspiralBookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default EspiralBookIcon; diff --git a/packages/duotone/src/ExclamationAlertIcon.tsx b/packages/duotone/src/ExclamationAlertIcon.tsx new file mode 100644 index 0000000..ae81a90 --- /dev/null +++ b/packages/duotone/src/ExclamationAlertIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationAlertIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default ExclamationAlertIcon; diff --git a/packages/duotone/src/ExclamationCircleIcon.tsx b/packages/duotone/src/ExclamationCircleIcon.tsx new file mode 100644 index 0000000..b17a6c3 --- /dev/null +++ b/packages/duotone/src/ExclamationCircleIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ExclamationCircleIcon; diff --git a/packages/duotone/src/ExclamationTriangleIcon.tsx b/packages/duotone/src/ExclamationTriangleIcon.tsx new file mode 100644 index 0000000..35d6f99 --- /dev/null +++ b/packages/duotone/src/ExclamationTriangleIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationTriangleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ExclamationTriangleIcon; diff --git a/packages/duotone/src/ExpandDiagonalIcon.tsx b/packages/duotone/src/ExpandDiagonalIcon.tsx new file mode 100644 index 0000000..407a9ab --- /dev/null +++ b/packages/duotone/src/ExpandDiagonalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExpandDiagonalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExpandDiagonalIcon; diff --git a/packages/duotone/src/ExpandVerticalIcon.tsx b/packages/duotone/src/ExpandVerticalIcon.tsx new file mode 100644 index 0000000..5b45f32 --- /dev/null +++ b/packages/duotone/src/ExpandVerticalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExpandVerticalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExpandVerticalIcon; diff --git a/packages/duotone/src/ExplicitContentIcon.tsx b/packages/duotone/src/ExplicitContentIcon.tsx new file mode 100644 index 0000000..42e5406 --- /dev/null +++ b/packages/duotone/src/ExplicitContentIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExplicitContentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ExplicitContentIcon; diff --git a/packages/duotone/src/EyeClosedIcon.tsx b/packages/duotone/src/EyeClosedIcon.tsx new file mode 100644 index 0000000..760a837 --- /dev/null +++ b/packages/duotone/src/EyeClosedIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EyeClosedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EyeClosedIcon; diff --git a/packages/duotone/src/EyeOpenedIcon.tsx b/packages/duotone/src/EyeOpenedIcon.tsx new file mode 100644 index 0000000..9c0473c --- /dev/null +++ b/packages/duotone/src/EyeOpenedIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EyeOpenedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default EyeOpenedIcon; diff --git a/packages/duotone/src/FeedIcon.tsx b/packages/duotone/src/FeedIcon.tsx new file mode 100644 index 0000000..49bd6bf --- /dev/null +++ b/packages/duotone/src/FeedIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FeedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default FeedIcon; diff --git a/packages/duotone/src/FilterIcon.tsx b/packages/duotone/src/FilterIcon.tsx new file mode 100644 index 0000000..0173b26 --- /dev/null +++ b/packages/duotone/src/FilterIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FilterIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FilterIcon; diff --git a/packages/duotone/src/FolderAltIcon.tsx b/packages/duotone/src/FolderAltIcon.tsx new file mode 100644 index 0000000..3f933af --- /dev/null +++ b/packages/duotone/src/FolderAltIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderAltIcon; diff --git a/packages/duotone/src/FolderArrowDownIcon.tsx b/packages/duotone/src/FolderArrowDownIcon.tsx new file mode 100644 index 0000000..ecf6497 --- /dev/null +++ b/packages/duotone/src/FolderArrowDownIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowDownIcon; diff --git a/packages/duotone/src/FolderArrowLeftIcon.tsx b/packages/duotone/src/FolderArrowLeftIcon.tsx new file mode 100644 index 0000000..e8fdd15 --- /dev/null +++ b/packages/duotone/src/FolderArrowLeftIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowLeftIcon; diff --git a/packages/duotone/src/FolderArrowRightIcon.tsx b/packages/duotone/src/FolderArrowRightIcon.tsx new file mode 100644 index 0000000..1517057 --- /dev/null +++ b/packages/duotone/src/FolderArrowRightIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowRightIcon; diff --git a/packages/duotone/src/FolderArrowUpIcon.tsx b/packages/duotone/src/FolderArrowUpIcon.tsx new file mode 100644 index 0000000..a541ecb --- /dev/null +++ b/packages/duotone/src/FolderArrowUpIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowUpIcon; diff --git a/packages/duotone/src/FolderIcon.tsx b/packages/duotone/src/FolderIcon.tsx new file mode 100644 index 0000000..ad1530b --- /dev/null +++ b/packages/duotone/src/FolderIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderIcon; diff --git a/packages/duotone/src/FolderLockIcon.tsx b/packages/duotone/src/FolderLockIcon.tsx new file mode 100644 index 0000000..e21aa30 --- /dev/null +++ b/packages/duotone/src/FolderLockIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderLockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderLockIcon; diff --git a/packages/duotone/src/FolderMultipleIcon.tsx b/packages/duotone/src/FolderMultipleIcon.tsx new file mode 100644 index 0000000..a1a5c14 --- /dev/null +++ b/packages/duotone/src/FolderMultipleIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderMultipleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderMultipleIcon; diff --git a/packages/duotone/src/FolderPlusIcon.tsx b/packages/duotone/src/FolderPlusIcon.tsx new file mode 100644 index 0000000..cb5b696 --- /dev/null +++ b/packages/duotone/src/FolderPlusIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderPlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderPlusIcon; diff --git a/packages/duotone/src/FolderRefreshIcon.tsx b/packages/duotone/src/FolderRefreshIcon.tsx new file mode 100644 index 0000000..304946c --- /dev/null +++ b/packages/duotone/src/FolderRefreshIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderRefreshIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderRefreshIcon; diff --git a/packages/duotone/src/FolderSearchIcon.tsx b/packages/duotone/src/FolderSearchIcon.tsx new file mode 100644 index 0000000..86eecb1 --- /dev/null +++ b/packages/duotone/src/FolderSearchIcon.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderSearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default FolderSearchIcon; diff --git a/packages/duotone/src/GifIcon.tsx b/packages/duotone/src/GifIcon.tsx new file mode 100644 index 0000000..e863b23 --- /dev/null +++ b/packages/duotone/src/GifIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GifIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default GifIcon; diff --git a/packages/duotone/src/GlobeIcon.tsx b/packages/duotone/src/GlobeIcon.tsx new file mode 100644 index 0000000..d705bea --- /dev/null +++ b/packages/duotone/src/GlobeIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GlobeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default GlobeIcon; diff --git a/packages/duotone/src/GlobeTimezoneIcon.tsx b/packages/duotone/src/GlobeTimezoneIcon.tsx new file mode 100644 index 0000000..9488795 --- /dev/null +++ b/packages/duotone/src/GlobeTimezoneIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GlobeTimezoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default GlobeTimezoneIcon; diff --git a/packages/duotone/src/GoogleDriveIcon.tsx b/packages/duotone/src/GoogleDriveIcon.tsx new file mode 100644 index 0000000..6f5f01a --- /dev/null +++ b/packages/duotone/src/GoogleDriveIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GoogleDriveIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default GoogleDriveIcon; diff --git a/packages/duotone/src/HashIcon.tsx b/packages/duotone/src/HashIcon.tsx new file mode 100644 index 0000000..93cf5ce --- /dev/null +++ b/packages/duotone/src/HashIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HashIcon; diff --git a/packages/duotone/src/HeadphonesIcon.tsx b/packages/duotone/src/HeadphonesIcon.tsx new file mode 100644 index 0000000..4994ee8 --- /dev/null +++ b/packages/duotone/src/HeadphonesIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HeadphonesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default HeadphonesIcon; diff --git a/packages/duotone/src/HeartIcon.tsx b/packages/duotone/src/HeartIcon.tsx new file mode 100644 index 0000000..7090fdf --- /dev/null +++ b/packages/duotone/src/HeartIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HeartIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HeartIcon; diff --git a/packages/duotone/src/HomeIcon.tsx b/packages/duotone/src/HomeIcon.tsx new file mode 100644 index 0000000..10d0ad1 --- /dev/null +++ b/packages/duotone/src/HomeIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HomeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default HomeIcon; diff --git a/packages/duotone/src/ImageArrowDownIcon.tsx b/packages/duotone/src/ImageArrowDownIcon.tsx new file mode 100644 index 0000000..772fd24 --- /dev/null +++ b/packages/duotone/src/ImageArrowDownIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageArrowDownIcon; diff --git a/packages/duotone/src/ImageArrowUpIcon.tsx b/packages/duotone/src/ImageArrowUpIcon.tsx new file mode 100644 index 0000000..0780b5d --- /dev/null +++ b/packages/duotone/src/ImageArrowUpIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageArrowUpIcon; diff --git a/packages/duotone/src/ImageBanIcon.tsx b/packages/duotone/src/ImageBanIcon.tsx new file mode 100644 index 0000000..a2051e7 --- /dev/null +++ b/packages/duotone/src/ImageBanIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageBanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageBanIcon; diff --git a/packages/duotone/src/ImageExclamationIcon.tsx b/packages/duotone/src/ImageExclamationIcon.tsx new file mode 100644 index 0000000..d37248b --- /dev/null +++ b/packages/duotone/src/ImageExclamationIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageExclamationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageExclamationIcon; diff --git a/packages/duotone/src/ImageIcon.tsx b/packages/duotone/src/ImageIcon.tsx new file mode 100644 index 0000000..e52fdf9 --- /dev/null +++ b/packages/duotone/src/ImageIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImageIcon; diff --git a/packages/duotone/src/ImageMinusIcon.tsx b/packages/duotone/src/ImageMinusIcon.tsx new file mode 100644 index 0000000..6903c8a --- /dev/null +++ b/packages/duotone/src/ImageMinusIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageMinusIcon; diff --git a/packages/duotone/src/ImageOpenIcon.tsx b/packages/duotone/src/ImageOpenIcon.tsx new file mode 100644 index 0000000..52a97f2 --- /dev/null +++ b/packages/duotone/src/ImageOpenIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageOpenIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + + ); + } +); + +export default ImageOpenIcon; diff --git a/packages/duotone/src/ImagePlusIcon.tsx b/packages/duotone/src/ImagePlusIcon.tsx new file mode 100644 index 0000000..b5dd182 --- /dev/null +++ b/packages/duotone/src/ImagePlusIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImagePlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImagePlusIcon; diff --git a/packages/duotone/src/ImageSearchIcon.tsx b/packages/duotone/src/ImageSearchIcon.tsx new file mode 100644 index 0000000..f1dad68 --- /dev/null +++ b/packages/duotone/src/ImageSearchIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageSearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageSearchIcon; diff --git a/packages/duotone/src/ImageSwitchIcon.tsx b/packages/duotone/src/ImageSwitchIcon.tsx new file mode 100644 index 0000000..96c211e --- /dev/null +++ b/packages/duotone/src/ImageSwitchIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageSwitchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageSwitchIcon; diff --git a/packages/duotone/src/ImageTimesIcon.tsx b/packages/duotone/src/ImageTimesIcon.tsx new file mode 100644 index 0000000..247845f --- /dev/null +++ b/packages/duotone/src/ImageTimesIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageTimesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageTimesIcon; diff --git a/packages/duotone/src/ImageTrashIcon.tsx b/packages/duotone/src/ImageTrashIcon.tsx new file mode 100644 index 0000000..2fd4532 --- /dev/null +++ b/packages/duotone/src/ImageTrashIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageTrashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageTrashIcon; diff --git a/packages/duotone/src/InboxIcon.tsx b/packages/duotone/src/InboxIcon.tsx new file mode 100644 index 0000000..4f6094e --- /dev/null +++ b/packages/duotone/src/InboxIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InboxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default InboxIcon; diff --git a/packages/duotone/src/InfinityIcon.tsx b/packages/duotone/src/InfinityIcon.tsx new file mode 100644 index 0000000..585b990 --- /dev/null +++ b/packages/duotone/src/InfinityIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InfinityIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default InfinityIcon; diff --git a/packages/duotone/src/InfoCircleIcon.tsx b/packages/duotone/src/InfoCircleIcon.tsx new file mode 100644 index 0000000..c07200c --- /dev/null +++ b/packages/duotone/src/InfoCircleIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InfoCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default InfoCircleIcon; diff --git a/packages/duotone/src/IntegrationsIcon.tsx b/packages/duotone/src/IntegrationsIcon.tsx new file mode 100644 index 0000000..cc3f778 --- /dev/null +++ b/packages/duotone/src/IntegrationsIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const IntegrationsIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default IntegrationsIcon; diff --git a/packages/duotone/src/InvoiceIcon.tsx b/packages/duotone/src/InvoiceIcon.tsx new file mode 100644 index 0000000..84130c9 --- /dev/null +++ b/packages/duotone/src/InvoiceIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InvoiceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default InvoiceIcon; diff --git a/packages/duotone/src/LastUpdatesIcon.tsx b/packages/duotone/src/LastUpdatesIcon.tsx new file mode 100644 index 0000000..7b8aac7 --- /dev/null +++ b/packages/duotone/src/LastUpdatesIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LastUpdatesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LastUpdatesIcon; diff --git a/packages/duotone/src/LifeRingIcon.tsx b/packages/duotone/src/LifeRingIcon.tsx new file mode 100644 index 0000000..34cfd3d --- /dev/null +++ b/packages/duotone/src/LifeRingIcon.tsx @@ -0,0 +1,40 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LifeRingIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default LifeRingIcon; diff --git a/packages/duotone/src/LightBulbExclamationIcon.tsx b/packages/duotone/src/LightBulbExclamationIcon.tsx new file mode 100644 index 0000000..b5c556b --- /dev/null +++ b/packages/duotone/src/LightBulbExclamationIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LightBulbExclamationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default LightBulbExclamationIcon; diff --git a/packages/duotone/src/LightBulbIcon.tsx b/packages/duotone/src/LightBulbIcon.tsx new file mode 100644 index 0000000..f864a01 --- /dev/null +++ b/packages/duotone/src/LightBulbIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LightBulbIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LightBulbIcon; diff --git a/packages/duotone/src/LinkIcon.tsx b/packages/duotone/src/LinkIcon.tsx new file mode 100644 index 0000000..3d9733e --- /dev/null +++ b/packages/duotone/src/LinkIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LinkIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LinkIcon; diff --git a/packages/duotone/src/LocationIcon.tsx b/packages/duotone/src/LocationIcon.tsx new file mode 100644 index 0000000..387180e --- /dev/null +++ b/packages/duotone/src/LocationIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LocationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LocationIcon; diff --git a/packages/duotone/src/LockClosedIcon.tsx b/packages/duotone/src/LockClosedIcon.tsx new file mode 100644 index 0000000..ce3fb5e --- /dev/null +++ b/packages/duotone/src/LockClosedIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LockClosedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LockClosedIcon; diff --git a/packages/duotone/src/LockOpenedIcon.tsx b/packages/duotone/src/LockOpenedIcon.tsx new file mode 100644 index 0000000..6efb639 --- /dev/null +++ b/packages/duotone/src/LockOpenedIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LockOpenedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LockOpenedIcon; diff --git a/packages/duotone/src/MailboxEmptyIcon.tsx b/packages/duotone/src/MailboxEmptyIcon.tsx new file mode 100644 index 0000000..ce1d9e7 --- /dev/null +++ b/packages/duotone/src/MailboxEmptyIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MailboxEmptyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MailboxEmptyIcon; diff --git a/packages/duotone/src/MailboxFullIcon.tsx b/packages/duotone/src/MailboxFullIcon.tsx new file mode 100644 index 0000000..ee5ca5d --- /dev/null +++ b/packages/duotone/src/MailboxFullIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MailboxFullIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default MailboxFullIcon; diff --git a/packages/duotone/src/MarkerIcon.tsx b/packages/duotone/src/MarkerIcon.tsx new file mode 100644 index 0000000..e51d143 --- /dev/null +++ b/packages/duotone/src/MarkerIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MarkerIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MarkerIcon; diff --git a/packages/duotone/src/MegaphoneIcon.tsx b/packages/duotone/src/MegaphoneIcon.tsx new file mode 100644 index 0000000..c75da0b --- /dev/null +++ b/packages/duotone/src/MegaphoneIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MegaphoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MegaphoneIcon; diff --git a/packages/duotone/src/MinusIcon.tsx b/packages/duotone/src/MinusIcon.tsx new file mode 100644 index 0000000..ac605c2 --- /dev/null +++ b/packages/duotone/src/MinusIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MinusIcon; diff --git a/packages/duotone/src/MonetizeIcon.tsx b/packages/duotone/src/MonetizeIcon.tsx new file mode 100644 index 0000000..061f257 --- /dev/null +++ b/packages/duotone/src/MonetizeIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MonetizeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MonetizeIcon; diff --git a/packages/duotone/src/NewWindowPageIcon.tsx b/packages/duotone/src/NewWindowPageIcon.tsx new file mode 100644 index 0000000..c4c4251 --- /dev/null +++ b/packages/duotone/src/NewWindowPageIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const NewWindowPageIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default NewWindowPageIcon; diff --git a/packages/duotone/src/NotebookIcon.tsx b/packages/duotone/src/NotebookIcon.tsx new file mode 100644 index 0000000..db801ac --- /dev/null +++ b/packages/duotone/src/NotebookIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const NotebookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default NotebookIcon; diff --git a/packages/duotone/src/OutboxIcon.tsx b/packages/duotone/src/OutboxIcon.tsx new file mode 100644 index 0000000..b1ed00d --- /dev/null +++ b/packages/duotone/src/OutboxIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const OutboxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default OutboxIcon; diff --git a/packages/duotone/src/PackIcon.tsx b/packages/duotone/src/PackIcon.tsx new file mode 100644 index 0000000..a1741a2 --- /dev/null +++ b/packages/duotone/src/PackIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PackIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default PackIcon; diff --git a/packages/duotone/src/PaperplaneIcon.tsx b/packages/duotone/src/PaperplaneIcon.tsx new file mode 100644 index 0000000..6b1c9a1 --- /dev/null +++ b/packages/duotone/src/PaperplaneIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PaperplaneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PaperplaneIcon; diff --git a/packages/duotone/src/PauseIcon.tsx b/packages/duotone/src/PauseIcon.tsx new file mode 100644 index 0000000..71248e0 --- /dev/null +++ b/packages/duotone/src/PauseIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PauseIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default PauseIcon; diff --git a/packages/duotone/src/PaymentLinkIcon.tsx b/packages/duotone/src/PaymentLinkIcon.tsx new file mode 100644 index 0000000..89b352c --- /dev/null +++ b/packages/duotone/src/PaymentLinkIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PaymentLinkIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default PaymentLinkIcon; diff --git a/packages/duotone/src/PencilIcon.tsx b/packages/duotone/src/PencilIcon.tsx new file mode 100644 index 0000000..c2adbee --- /dev/null +++ b/packages/duotone/src/PencilIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PencilIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PencilIcon; diff --git a/packages/duotone/src/PeopleGroupIcon.tsx b/packages/duotone/src/PeopleGroupIcon.tsx new file mode 100644 index 0000000..1930f24 --- /dev/null +++ b/packages/duotone/src/PeopleGroupIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PeopleGroupIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default PeopleGroupIcon; diff --git a/packages/duotone/src/PercentIcon.tsx b/packages/duotone/src/PercentIcon.tsx new file mode 100644 index 0000000..0d0ac7b --- /dev/null +++ b/packages/duotone/src/PercentIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PercentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PercentIcon; diff --git a/packages/duotone/src/PersonIcon.tsx b/packages/duotone/src/PersonIcon.tsx new file mode 100644 index 0000000..58a306c --- /dev/null +++ b/packages/duotone/src/PersonIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PersonIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PersonIcon; diff --git a/packages/duotone/src/PinLocationIcon.tsx b/packages/duotone/src/PinLocationIcon.tsx new file mode 100644 index 0000000..5bbb51b --- /dev/null +++ b/packages/duotone/src/PinLocationIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PinLocationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PinLocationIcon; diff --git a/packages/duotone/src/PinPlaceIcon.tsx b/packages/duotone/src/PinPlaceIcon.tsx new file mode 100644 index 0000000..a5b17c2 --- /dev/null +++ b/packages/duotone/src/PinPlaceIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PinPlaceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PinPlaceIcon; diff --git a/packages/duotone/src/PixIcon.tsx b/packages/duotone/src/PixIcon.tsx new file mode 100644 index 0000000..9bbb18d --- /dev/null +++ b/packages/duotone/src/PixIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PixIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default PixIcon; diff --git a/packages/duotone/src/PlanIcon.tsx b/packages/duotone/src/PlanIcon.tsx new file mode 100644 index 0000000..c8f7988 --- /dev/null +++ b/packages/duotone/src/PlanIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default PlanIcon; diff --git a/packages/duotone/src/PlayIcon.tsx b/packages/duotone/src/PlayIcon.tsx new file mode 100644 index 0000000..1f15ac9 --- /dev/null +++ b/packages/duotone/src/PlayIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlayIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PlayIcon; diff --git a/packages/duotone/src/PlusIcon.tsx b/packages/duotone/src/PlusIcon.tsx new file mode 100644 index 0000000..9ec215f --- /dev/null +++ b/packages/duotone/src/PlusIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PlusIcon; diff --git a/packages/duotone/src/PrivateContentIcon.tsx b/packages/duotone/src/PrivateContentIcon.tsx new file mode 100644 index 0000000..4a60a22 --- /dev/null +++ b/packages/duotone/src/PrivateContentIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PrivateContentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + + ); + } +); + +export default PrivateContentIcon; diff --git a/packages/duotone/src/QrCodeIcon.tsx b/packages/duotone/src/QrCodeIcon.tsx new file mode 100644 index 0000000..572ee58 --- /dev/null +++ b/packages/duotone/src/QrCodeIcon.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const QrCodeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default QrCodeIcon; diff --git a/packages/duotone/src/QuestionIcon.tsx b/packages/duotone/src/QuestionIcon.tsx new file mode 100644 index 0000000..7b913ab --- /dev/null +++ b/packages/duotone/src/QuestionIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const QuestionIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default QuestionIcon; diff --git a/packages/duotone/src/RacketBallIcon.tsx b/packages/duotone/src/RacketBallIcon.tsx new file mode 100644 index 0000000..3e8d99e --- /dev/null +++ b/packages/duotone/src/RacketBallIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RacketBallIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default RacketBallIcon; diff --git a/packages/duotone/src/RacketIcon.tsx b/packages/duotone/src/RacketIcon.tsx new file mode 100644 index 0000000..ee05d7d --- /dev/null +++ b/packages/duotone/src/RacketIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RacketIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default RacketIcon; diff --git a/packages/duotone/src/RadarIcon.tsx b/packages/duotone/src/RadarIcon.tsx new file mode 100644 index 0000000..d9aceac --- /dev/null +++ b/packages/duotone/src/RadarIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RadarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default RadarIcon; diff --git a/packages/duotone/src/ScrewNutIcon.tsx b/packages/duotone/src/ScrewNutIcon.tsx new file mode 100644 index 0000000..d84f9c1 --- /dev/null +++ b/packages/duotone/src/ScrewNutIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ScrewNutIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ScrewNutIcon; diff --git a/packages/duotone/src/SearchBoxIcon.tsx b/packages/duotone/src/SearchBoxIcon.tsx new file mode 100644 index 0000000..f0d1e8e --- /dev/null +++ b/packages/duotone/src/SearchBoxIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchBoxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default SearchBoxIcon; diff --git a/packages/duotone/src/SearchIcon.tsx b/packages/duotone/src/SearchIcon.tsx new file mode 100644 index 0000000..b9cb7d5 --- /dev/null +++ b/packages/duotone/src/SearchIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SearchIcon; diff --git a/packages/duotone/src/SearchSplitIcon.tsx b/packages/duotone/src/SearchSplitIcon.tsx new file mode 100644 index 0000000..6626b5f --- /dev/null +++ b/packages/duotone/src/SearchSplitIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchSplitIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SearchSplitIcon; diff --git a/packages/duotone/src/SensitiveIcon.tsx b/packages/duotone/src/SensitiveIcon.tsx new file mode 100644 index 0000000..c6b6e74 --- /dev/null +++ b/packages/duotone/src/SensitiveIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SensitiveIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SensitiveIcon; diff --git a/packages/duotone/src/ShareIcon.tsx b/packages/duotone/src/ShareIcon.tsx new file mode 100644 index 0000000..8a01e23 --- /dev/null +++ b/packages/duotone/src/ShareIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShareIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ShareIcon; diff --git a/packages/duotone/src/ShieldCheckIcon.tsx b/packages/duotone/src/ShieldCheckIcon.tsx new file mode 100644 index 0000000..8b9a7ff --- /dev/null +++ b/packages/duotone/src/ShieldCheckIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShieldCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ShieldCheckIcon; diff --git a/packages/duotone/src/ShieldIcon.tsx b/packages/duotone/src/ShieldIcon.tsx new file mode 100644 index 0000000..ab92975 --- /dev/null +++ b/packages/duotone/src/ShieldIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShieldIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ShieldIcon; diff --git a/packages/duotone/src/ShieldUserIcon.tsx b/packages/duotone/src/ShieldUserIcon.tsx new file mode 100644 index 0000000..fc23b45 --- /dev/null +++ b/packages/duotone/src/ShieldUserIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShieldUserIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ShieldUserIcon; diff --git a/packages/duotone/src/ShrinkDiagonalIcon.tsx b/packages/duotone/src/ShrinkDiagonalIcon.tsx new file mode 100644 index 0000000..5e1637d --- /dev/null +++ b/packages/duotone/src/ShrinkDiagonalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShrinkDiagonalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShrinkDiagonalIcon; diff --git a/packages/duotone/src/ShrinkVerticalIcon.tsx b/packages/duotone/src/ShrinkVerticalIcon.tsx new file mode 100644 index 0000000..944cc67 --- /dev/null +++ b/packages/duotone/src/ShrinkVerticalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShrinkVerticalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShrinkVerticalIcon; diff --git a/packages/duotone/src/SidePeekIcon.tsx b/packages/duotone/src/SidePeekIcon.tsx new file mode 100644 index 0000000..182050e --- /dev/null +++ b/packages/duotone/src/SidePeekIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SidePeekIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SidePeekIcon; diff --git a/packages/duotone/src/SigninAltIcon.tsx b/packages/duotone/src/SigninAltIcon.tsx new file mode 100644 index 0000000..2685de7 --- /dev/null +++ b/packages/duotone/src/SigninAltIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SigninAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SigninAltIcon; diff --git a/packages/duotone/src/SigninIcon.tsx b/packages/duotone/src/SigninIcon.tsx new file mode 100644 index 0000000..88f2d13 --- /dev/null +++ b/packages/duotone/src/SigninIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SigninIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SigninIcon; diff --git a/packages/duotone/src/SignoutAltIcon.tsx b/packages/duotone/src/SignoutAltIcon.tsx new file mode 100644 index 0000000..b5c35f3 --- /dev/null +++ b/packages/duotone/src/SignoutAltIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SignoutAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SignoutAltIcon; diff --git a/packages/duotone/src/SignoutIcon.tsx b/packages/duotone/src/SignoutIcon.tsx new file mode 100644 index 0000000..d9d0c33 --- /dev/null +++ b/packages/duotone/src/SignoutIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SignoutIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SignoutIcon; diff --git a/packages/duotone/src/SlidersHIcon.tsx b/packages/duotone/src/SlidersHIcon.tsx new file mode 100644 index 0000000..1f16ecd --- /dev/null +++ b/packages/duotone/src/SlidersHIcon.tsx @@ -0,0 +1,36 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SlidersHIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default SlidersHIcon; diff --git a/packages/duotone/src/SlidersVIcon.tsx b/packages/duotone/src/SlidersVIcon.tsx new file mode 100644 index 0000000..6629442 --- /dev/null +++ b/packages/duotone/src/SlidersVIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SlidersVIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default SlidersVIcon; diff --git a/packages/duotone/src/SmartphoneIcon.tsx b/packages/duotone/src/SmartphoneIcon.tsx new file mode 100644 index 0000000..c4f5f77 --- /dev/null +++ b/packages/duotone/src/SmartphoneIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SmartphoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default SmartphoneIcon; diff --git a/packages/duotone/src/SocialFacebookIcon.tsx b/packages/duotone/src/SocialFacebookIcon.tsx new file mode 100644 index 0000000..cc8f027 --- /dev/null +++ b/packages/duotone/src/SocialFacebookIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialFacebookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SocialFacebookIcon; diff --git a/packages/duotone/src/SocialTwitterIcon.tsx b/packages/duotone/src/SocialTwitterIcon.tsx new file mode 100644 index 0000000..3a02b5e --- /dev/null +++ b/packages/duotone/src/SocialTwitterIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialTwitterIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SocialTwitterIcon; diff --git a/packages/duotone/src/SocialUnsplashIcon.tsx b/packages/duotone/src/SocialUnsplashIcon.tsx new file mode 100644 index 0000000..b3d11c0 --- /dev/null +++ b/packages/duotone/src/SocialUnsplashIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialUnsplashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SocialUnsplashIcon; diff --git a/packages/duotone/src/SocialWhatsappIcon.tsx b/packages/duotone/src/SocialWhatsappIcon.tsx new file mode 100644 index 0000000..cd7d8db --- /dev/null +++ b/packages/duotone/src/SocialWhatsappIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialWhatsappIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SocialWhatsappIcon; diff --git a/packages/duotone/src/SquareCheckIcon.tsx b/packages/duotone/src/SquareCheckIcon.tsx new file mode 100644 index 0000000..9e30650 --- /dev/null +++ b/packages/duotone/src/SquareCheckIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SquareCheckIcon; diff --git a/packages/duotone/src/SquareIcon.tsx b/packages/duotone/src/SquareIcon.tsx new file mode 100644 index 0000000..910ab05 --- /dev/null +++ b/packages/duotone/src/SquareIcon.tsx @@ -0,0 +1,26 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SquareIcon; diff --git a/packages/duotone/src/SquareMinusIcon.tsx b/packages/duotone/src/SquareMinusIcon.tsx new file mode 100644 index 0000000..c3328ba --- /dev/null +++ b/packages/duotone/src/SquareMinusIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SquareMinusIcon; diff --git a/packages/duotone/src/StarIcon.tsx b/packages/duotone/src/StarIcon.tsx new file mode 100644 index 0000000..a304da8 --- /dev/null +++ b/packages/duotone/src/StarIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const StarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default StarIcon; diff --git a/packages/duotone/src/StarsIcon.tsx b/packages/duotone/src/StarsIcon.tsx new file mode 100644 index 0000000..9c158f4 --- /dev/null +++ b/packages/duotone/src/StarsIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const StarsIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default StarsIcon; diff --git a/packages/duotone/src/TabletIcon.tsx b/packages/duotone/src/TabletIcon.tsx new file mode 100644 index 0000000..035532a --- /dev/null +++ b/packages/duotone/src/TabletIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TabletIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default TabletIcon; diff --git a/packages/duotone/src/TargetIcon.tsx b/packages/duotone/src/TargetIcon.tsx new file mode 100644 index 0000000..335302e --- /dev/null +++ b/packages/duotone/src/TargetIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TargetIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default TargetIcon; diff --git a/packages/duotone/src/ThumbDownIcon.tsx b/packages/duotone/src/ThumbDownIcon.tsx new file mode 100644 index 0000000..5dbfe72 --- /dev/null +++ b/packages/duotone/src/ThumbDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ThumbDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ThumbDownIcon; diff --git a/packages/duotone/src/ThumbUpIcon.tsx b/packages/duotone/src/ThumbUpIcon.tsx new file mode 100644 index 0000000..e46a8fc --- /dev/null +++ b/packages/duotone/src/ThumbUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ThumbUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ThumbUpIcon; diff --git a/packages/duotone/src/TimesCircleIcon.tsx b/packages/duotone/src/TimesCircleIcon.tsx new file mode 100644 index 0000000..10e30fa --- /dev/null +++ b/packages/duotone/src/TimesCircleIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TimesCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TimesCircleIcon; diff --git a/packages/duotone/src/TimesIcon.tsx b/packages/duotone/src/TimesIcon.tsx new file mode 100644 index 0000000..97ec964 --- /dev/null +++ b/packages/duotone/src/TimesIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TimesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TimesIcon; diff --git a/packages/duotone/src/TrashCanIcon.tsx b/packages/duotone/src/TrashCanIcon.tsx new file mode 100644 index 0000000..0a16ef0 --- /dev/null +++ b/packages/duotone/src/TrashCanIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrashCanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TrashCanIcon; diff --git a/packages/duotone/src/TrendArrowDownIcon.tsx b/packages/duotone/src/TrendArrowDownIcon.tsx new file mode 100644 index 0000000..6112339 --- /dev/null +++ b/packages/duotone/src/TrendArrowDownIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrendArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TrendArrowDownIcon; diff --git a/packages/duotone/src/TrendArrowUpIcon.tsx b/packages/duotone/src/TrendArrowUpIcon.tsx new file mode 100644 index 0000000..3e88a99 --- /dev/null +++ b/packages/duotone/src/TrendArrowUpIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrendArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TrendArrowUpIcon; diff --git a/packages/duotone/src/TrophyIcon.tsx b/packages/duotone/src/TrophyIcon.tsx new file mode 100644 index 0000000..c387d52 --- /dev/null +++ b/packages/duotone/src/TrophyIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrophyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TrophyIcon; diff --git a/packages/duotone/src/UserArrowDownIcon.tsx b/packages/duotone/src/UserArrowDownIcon.tsx new file mode 100644 index 0000000..32fe187 --- /dev/null +++ b/packages/duotone/src/UserArrowDownIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserArrowDownIcon; diff --git a/packages/duotone/src/UserAtIcon.tsx b/packages/duotone/src/UserAtIcon.tsx new file mode 100644 index 0000000..26b6c34 --- /dev/null +++ b/packages/duotone/src/UserAtIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserAtIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserAtIcon; diff --git a/packages/duotone/src/UserAvatarIcon.tsx b/packages/duotone/src/UserAvatarIcon.tsx new file mode 100644 index 0000000..526e5a9 --- /dev/null +++ b/packages/duotone/src/UserAvatarIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserAvatarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserAvatarIcon; diff --git a/packages/duotone/src/UserCheckIcon.tsx b/packages/duotone/src/UserCheckIcon.tsx new file mode 100644 index 0000000..0ef0680 --- /dev/null +++ b/packages/duotone/src/UserCheckIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserCheckIcon; diff --git a/packages/duotone/src/UserClockIcon.tsx b/packages/duotone/src/UserClockIcon.tsx new file mode 100644 index 0000000..d23534d --- /dev/null +++ b/packages/duotone/src/UserClockIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserClockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserClockIcon; diff --git a/packages/duotone/src/UserCogIcon.tsx b/packages/duotone/src/UserCogIcon.tsx new file mode 100644 index 0000000..adb18ee --- /dev/null +++ b/packages/duotone/src/UserCogIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserCogIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserCogIcon; diff --git a/packages/duotone/src/UserDollarIcon.tsx b/packages/duotone/src/UserDollarIcon.tsx new file mode 100644 index 0000000..d0ff389 --- /dev/null +++ b/packages/duotone/src/UserDollarIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserDollarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserDollarIcon; diff --git a/packages/duotone/src/UserEnvelopeIcon.tsx b/packages/duotone/src/UserEnvelopeIcon.tsx new file mode 100644 index 0000000..3696d4b --- /dev/null +++ b/packages/duotone/src/UserEnvelopeIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserEnvelopeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserEnvelopeIcon; diff --git a/packages/duotone/src/UserGroupIcon.tsx b/packages/duotone/src/UserGroupIcon.tsx new file mode 100644 index 0000000..e0c663d --- /dev/null +++ b/packages/duotone/src/UserGroupIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserGroupIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default UserGroupIcon; diff --git a/packages/duotone/src/UserHeartIcon.tsx b/packages/duotone/src/UserHeartIcon.tsx new file mode 100644 index 0000000..fd927fb --- /dev/null +++ b/packages/duotone/src/UserHeartIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserHeartIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserHeartIcon; diff --git a/packages/duotone/src/UserIdIcon.tsx b/packages/duotone/src/UserIdIcon.tsx new file mode 100644 index 0000000..fe14dd6 --- /dev/null +++ b/packages/duotone/src/UserIdIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserIdIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default UserIdIcon; diff --git a/packages/duotone/src/UserShieldIcon.tsx b/packages/duotone/src/UserShieldIcon.tsx new file mode 100644 index 0000000..10deb80 --- /dev/null +++ b/packages/duotone/src/UserShieldIcon.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserShieldIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserShieldIcon; diff --git a/packages/duotone/src/UsersCrownIcon.tsx b/packages/duotone/src/UsersCrownIcon.tsx new file mode 100644 index 0000000..6ecf265 --- /dev/null +++ b/packages/duotone/src/UsersCrownIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UsersCrownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default UsersCrownIcon; diff --git a/packages/duotone/src/VaultIcon.tsx b/packages/duotone/src/VaultIcon.tsx new file mode 100644 index 0000000..977ef67 --- /dev/null +++ b/packages/duotone/src/VaultIcon.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const VaultIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + + ); + } +); + +export default VaultIcon; diff --git a/packages/duotone/src/WalletIcon.tsx b/packages/duotone/src/WalletIcon.tsx new file mode 100644 index 0000000..755844f --- /dev/null +++ b/packages/duotone/src/WalletIcon.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const WalletIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default WalletIcon; diff --git a/packages/duotone/src/WandIcon.tsx b/packages/duotone/src/WandIcon.tsx new file mode 100644 index 0000000..b6bfd77 --- /dev/null +++ b/packages/duotone/src/WandIcon.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const WandIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default WandIcon; diff --git a/packages/duotone/src/index.tsx b/packages/duotone/src/index.tsx new file mode 100644 index 0000000..3f4bb40 --- /dev/null +++ b/packages/duotone/src/index.tsx @@ -0,0 +1,215 @@ +export { default as FeedIcon } from './FeedIcon'; +export { default as CompassIcon } from './CompassIcon'; +export { default as SearchIcon } from './SearchIcon'; +export { default as SearchSplitIcon } from './SearchSplitIcon'; +export { default as LastUpdatesIcon } from './LastUpdatesIcon'; +export { default as SearchBoxIcon } from './SearchBoxIcon'; +export { default as BellIcon } from './BellIcon'; +export { default as MonetizeIcon } from './MonetizeIcon'; +export { default as TargetIcon } from './TargetIcon'; +export { default as UserAvatarIcon } from './UserAvatarIcon'; +export { default as AtSymbolIcon } from './AtSymbolIcon'; +export { default as InfoCircleIcon } from './InfoCircleIcon'; +export { default as QuestionIcon } from './QuestionIcon'; +export { default as ExclamationTriangleIcon } from './ExclamationTriangleIcon'; +export { default as ExclamationCircleIcon } from './ExclamationCircleIcon'; +export { default as ExclamationAlertIcon } from './ExclamationAlertIcon'; +export { default as ExplicitContentIcon } from './ExplicitContentIcon'; +export { default as TrashCanIcon } from './TrashCanIcon'; +export { default as PencilIcon } from './PencilIcon'; +export { default as CheckIcon } from './CheckIcon'; +export { default as CopyIcon } from './CopyIcon'; +export { default as EyeOpenedIcon } from './EyeOpenedIcon'; +export { default as EyeClosedIcon } from './EyeClosedIcon'; +export { default as CheckCircleIcon } from './CheckCircleIcon'; +export { default as ImageIcon } from './ImageIcon'; +export { default as ImageOpenIcon } from './ImageOpenIcon'; +export { default as ImageArrowUpIcon } from './ImageArrowUpIcon'; +export { default as ImageArrowDownIcon } from './ImageArrowDownIcon'; +export { default as ImageSearchIcon } from './ImageSearchIcon'; +export { default as ImageTimesIcon } from './ImageTimesIcon'; +export { default as ImageSwitchIcon } from './ImageSwitchIcon'; +export { default as ImageTrashIcon } from './ImageTrashIcon'; +export { default as ImageMinusIcon } from './ImageMinusIcon'; +export { default as ImageBanIcon } from './ImageBanIcon'; +export { default as ImagePlusIcon } from './ImagePlusIcon'; +export { default as ImageExclamationIcon } from './ImageExclamationIcon'; +export { default as LightBulbIcon } from './LightBulbIcon'; +export { default as LightBulbExclamationIcon } from './LightBulbExclamationIcon'; +export { default as CloudIcon } from './CloudIcon'; +export { default as CloudCheckIcon } from './CloudCheckIcon'; +export { default as CloudPlusIcon } from './CloudPlusIcon'; +export { default as CloudMinusIcon } from './CloudMinusIcon'; +export { default as CloudArrowUpIcon } from './CloudArrowUpIcon'; +export { default as CloudArrowDownIcon } from './CloudArrowDownIcon'; +export { default as PersonIcon } from './PersonIcon'; +export { default as PeopleGroupIcon } from './PeopleGroupIcon'; +export { default as UserIdIcon } from './UserIdIcon'; +export { default as UserCogIcon } from './UserCogIcon'; +export { default as UserShieldIcon } from './UserShieldIcon'; +export { default as UserAtIcon } from './UserAtIcon'; +export { default as LocationIcon } from './LocationIcon'; +export { default as UserHeartIcon } from './UserHeartIcon'; +export { default as UserEnvelopeIcon } from './UserEnvelopeIcon'; +export { default as UserArrowDownIcon } from './UserArrowDownIcon'; +export { default as UserClockIcon } from './UserClockIcon'; +export { default as UserDollarIcon } from './UserDollarIcon'; +export { default as UserCheckIcon } from './UserCheckIcon'; +export { default as UserGroupIcon } from './UserGroupIcon'; +export { default as DollarSignIcon } from './DollarSignIcon'; +export { default as CreditCardIcon } from './CreditCardIcon'; +export { default as PaymentLinkIcon } from './PaymentLinkIcon'; +export { default as LockClosedIcon } from './LockClosedIcon'; +export { default as LockOpenedIcon } from './LockOpenedIcon'; +export { default as SigninIcon } from './SigninIcon'; +export { default as SignoutIcon } from './SignoutIcon'; +export { default as SigninAltIcon } from './SigninAltIcon'; +export { default as SignoutAltIcon } from './SignoutAltIcon'; +export { default as PlanIcon } from './PlanIcon'; +export { default as InvoiceIcon } from './InvoiceIcon'; +export { default as VaultIcon } from './VaultIcon'; +export { default as WalletIcon } from './WalletIcon'; +export { default as ShieldIcon } from './ShieldIcon'; +export { default as ShieldUserIcon } from './ShieldUserIcon'; +export { default as ShieldCheckIcon } from './ShieldCheckIcon'; +export { default as NewWindowPageIcon } from './NewWindowPageIcon'; +export { default as ScrewNutIcon } from './ScrewNutIcon'; +export { default as SlidersHIcon } from './SlidersHIcon'; +export { default as SlidersVIcon } from './SlidersVIcon'; +export { default as CogIcon } from './CogIcon'; +export { default as IntegrationsIcon } from './IntegrationsIcon'; +export { default as BurgerClassicIcon } from './BurgerClassicIcon'; +export { default as BurgerArrowRightIcon } from './BurgerArrowRightIcon'; +export { default as BurgerArrowLeftIcon } from './BurgerArrowLeftIcon'; +export { default as HomeIcon } from './HomeIcon'; +export { default as LifeRingIcon } from './LifeRingIcon'; +export { default as ClockIcon } from './ClockIcon'; +export { default as DashboardIcon } from './DashboardIcon'; +export { default as ChartPieIcon } from './ChartPieIcon'; +export { default as UsersCrownIcon } from './UsersCrownIcon'; +export { default as CreatorsClubIcon } from './CreatorsClubIcon'; +export { default as StarIcon } from './StarIcon'; +export { default as StarsIcon } from './StarsIcon'; +export { default as WandIcon } from './WandIcon'; +export { default as ThumbUpIcon } from './ThumbUpIcon'; +export { default as ThumbDownIcon } from './ThumbDownIcon'; +export { default as HeartIcon } from './HeartIcon'; +export { default as EngagementIcon } from './EngagementIcon'; +export { default as CrownIcon } from './CrownIcon'; +export { default as AngleRightIcon } from './AngleRightIcon'; +export { default as AngleLeftIcon } from './AngleLeftIcon'; +export { default as AngleUpIcon } from './AngleUpIcon'; +export { default as AngleDownIcon } from './AngleDownIcon'; +export { default as ChevronRightIcon } from './ChevronRightIcon'; +export { default as ChevronUpIcon } from './ChevronUpIcon'; +export { default as ChevronDownIcon } from './ChevronDownIcon'; +export { default as ChevronLeftIcon } from './ChevronLeftIcon'; +export { default as CaretRightIcon } from './CaretRightIcon'; +export { default as CaretLeftIcon } from './CaretLeftIcon'; +export { default as CaretUpIcon } from './CaretUpIcon'; +export { default as CaretDownIcon } from './CaretDownIcon'; +export { default as ArrowRightIcon } from './ArrowRightIcon'; +export { default as ArrowLeftIcon } from './ArrowLeftIcon'; +export { default as ArrowUpIcon } from './ArrowUpIcon'; +export { default as ArrowDownIcon } from './ArrowDownIcon'; +export { default as ArrowRightLargeIcon } from './ArrowRightLargeIcon'; +export { default as ArrowLeftLargeIcon } from './ArrowLeftLargeIcon'; +export { default as ArrowUpLargeIcon } from './ArrowUpLargeIcon'; +export { default as ArrowDownLargeIcon } from './ArrowDownLargeIcon'; +export { default as ArrowRetryIcon } from './ArrowRetryIcon'; +export { default as ArrowsSwitchIcon } from './ArrowsSwitchIcon'; +export { default as GlobeTimezoneIcon } from './GlobeTimezoneIcon'; +export { default as PinLocationIcon } from './PinLocationIcon'; +export { default as PinPlaceIcon } from './PinPlaceIcon'; +export { default as PrivateContentIcon } from './PrivateContentIcon'; +export { default as SensitiveIcon } from './SensitiveIcon'; +export { default as TimesCircleIcon } from './TimesCircleIcon'; +export { default as TrophyIcon } from './TrophyIcon'; +export { default as RadarIcon } from './RadarIcon'; +export { default as SquareIcon } from './SquareIcon'; +export { default as SquareMinusIcon } from './SquareMinusIcon'; +export { default as SquareCheckIcon } from './SquareCheckIcon'; +export { default as CircleIcon } from './CircleIcon'; +export { default as CircleDotIcon } from './CircleDotIcon'; +export { default as AsteriskIcon } from './AsteriskIcon'; +export { default as EnvelopeIcon } from './EnvelopeIcon'; +export { default as EnvelopeFlyingIcon } from './EnvelopeFlyingIcon'; +export { default as EnvelopeAtIcon } from './EnvelopeAtIcon'; +export { default as LinkIcon } from './LinkIcon'; +export { default as PaperplaneIcon } from './PaperplaneIcon'; +export { default as OutboxIcon } from './OutboxIcon'; +export { default as InboxIcon } from './InboxIcon'; +export { default as MailboxEmptyIcon } from './MailboxEmptyIcon'; +export { default as MailboxFullIcon } from './MailboxFullIcon'; +export { default as TrendArrowUpIcon } from './TrendArrowUpIcon'; +export { default as TrendArrowDownIcon } from './TrendArrowDownIcon'; +export { default as CalendarIcon } from './CalendarIcon'; +export { default as CalendarNineIcon } from './CalendarNineIcon'; +export { default as CalendarEndIcon } from './CalendarEndIcon'; +export { default as CalendarStarIcon } from './CalendarStarIcon'; +export { default as DomainIcon } from './DomainIcon'; +export { default as HeadphonesIcon } from './HeadphonesIcon'; +export { default as BadgeVerifiedIcon } from './BadgeVerifiedIcon'; +export { default as BadgeDollarIcon } from './BadgeDollarIcon'; +export { default as PlayIcon } from './PlayIcon'; +export { default as PauseIcon } from './PauseIcon'; +export { default as TimesIcon } from './TimesIcon'; +export { default as PlusIcon } from './PlusIcon'; +export { default as MinusIcon } from './MinusIcon'; +export { default as EqualIcon } from './EqualIcon'; +export { default as DivideIcon } from './DivideIcon'; +export { default as PercentIcon } from './PercentIcon'; +export { default as HashIcon } from './HashIcon'; +export { default as ExpandVerticalIcon } from './ExpandVerticalIcon'; +export { default as ShrinkVerticalIcon } from './ShrinkVerticalIcon'; +export { default as ExpandDiagonalIcon } from './ExpandDiagonalIcon'; +export { default as ShrinkDiagonalIcon } from './ShrinkDiagonalIcon'; +export { default as ChartTrendUpIcon } from './ChartTrendUpIcon'; +export { default as ChartTrendDownIcon } from './ChartTrendDownIcon'; +export { default as CursorArrowIcon } from './CursorArrowIcon'; +export { default as MegaphoneIcon } from './MegaphoneIcon'; +export { default as SmartphoneIcon } from './SmartphoneIcon'; +export { default as TabletIcon } from './TabletIcon'; +export { default as NotebookIcon } from './NotebookIcon'; +export { default as DesktopIcon } from './DesktopIcon'; +export { default as DesktopCheckIcon } from './DesktopCheckIcon'; +export { default as PackIcon } from './PackIcon'; +export { default as BalanceIcon } from './BalanceIcon'; +export { default as BillingInfoIcon } from './BillingInfoIcon'; +export { default as InfinityIcon } from './InfinityIcon'; +export { default as RacketIcon } from './RacketIcon'; +export { default as RacketBallIcon } from './RacketBallIcon'; +export { default as FilterIcon } from './FilterIcon'; +export { default as ArticleIcon } from './ArticleIcon'; +export { default as EspiralBookIcon } from './EspiralBookIcon'; +export { default as GoogleDriveIcon } from './GoogleDriveIcon'; +export { default as EmojiPissedOffIcon } from './EmojiPissedOffIcon'; +export { default as EllipsisVIcon } from './EllipsisVIcon'; +export { default as EllipsisHIcon } from './EllipsisHIcon'; +export { default as SocialTwitterIcon } from './SocialTwitterIcon'; +export { default as SocialWhatsappIcon } from './SocialWhatsappIcon'; +export { default as SocialFacebookIcon } from './SocialFacebookIcon'; +export { default as FolderIcon } from './FolderIcon'; +export { default as FolderMultipleIcon } from './FolderMultipleIcon'; +export { default as FolderAltIcon } from './FolderAltIcon'; +export { default as FolderRefreshIcon } from './FolderRefreshIcon'; +export { default as FolderLockIcon } from './FolderLockIcon'; +export { default as FolderSearchIcon } from './FolderSearchIcon'; +export { default as FolderPlusIcon } from './FolderPlusIcon'; +export { default as FolderArrowLeftIcon } from './FolderArrowLeftIcon'; +export { default as FolderArrowUpIcon } from './FolderArrowUpIcon'; +export { default as FolderArrowDownIcon } from './FolderArrowDownIcon'; +export { default as FolderArrowRightIcon } from './FolderArrowRightIcon'; +export { default as ArticleAltIcon } from './ArticleAltIcon'; +export { default as ArticlePlusIcon } from './ArticlePlusIcon'; +export { default as ShareIcon } from './ShareIcon'; +export { default as SocialUnsplashIcon } from './SocialUnsplashIcon'; +export { default as GifIcon } from './GifIcon'; +export { default as QrCodeIcon } from './QrCodeIcon'; +export { default as SidePeekIcon } from './SidePeekIcon'; +export { default as GlobeIcon } from './GlobeIcon'; +export { default as PixIcon } from './PixIcon'; +export { default as DataTextIcon } from './DataTextIcon'; +export { default as DataBooleanIcon } from './DataBooleanIcon'; +export { default as DataNumbersIcon } from './DataNumbersIcon'; +export { default as MarkerIcon } from './MarkerIcon'; diff --git a/packages/duotone/src/types.tsx b/packages/duotone/src/types.tsx new file mode 100644 index 0000000..82bd33c --- /dev/null +++ b/packages/duotone/src/types.tsx @@ -0,0 +1,6 @@ +import * as React from 'react'; + +export interface IconProps extends React.SVGAttributes { + children?: never; + color?: string; +} \ No newline at end of file diff --git a/packages/editor/package.json b/packages/editor/package.json new file mode 100644 index 0000000..d5759bc --- /dev/null +++ b/packages/editor/package.json @@ -0,0 +1,34 @@ +{ + "name": "@stash-ui/editor-icons", + "private": false, + "version": "1.0.0", + "license": "MIT", + "description": "React Editor Icons Set", + "authors": [ + "Tiago Gerken ", + "Pedro Ladeira " + ], + "module": "dist/editor-icons.esm.js", + "main": "index.js", + "types": "dist/index.d.ts", + "files": [ + "index.js", + "manifest.json" + ], + "publishConfig": { + "access": "public" + }, + "scripts": { + "generate-src": "generate-icons --file=X5DiJzGRQXCyEfBqocT235 --style=editor", + "build": "rimraf dist && tsdx build --format es,cjs --entry src/index.tsx", + "watch": "rimraf dist && tsdx watch --format es,cjs --entry src/index.tsx", + "prepublishOnly": "npm run build" + }, + "peerDependencies": { + "react": "^16.x || ^17.x || ^18.x" + }, + "devDependencies": { + "tsdx": "0.14.0", + "@stash-ui/generate-from-figma": "*" + } +} \ No newline at end of file diff --git a/packages/editor/readme.md b/packages/editor/readme.md new file mode 100644 index 0000000..9d9f3d1 --- /dev/null +++ b/packages/editor/readme.md @@ -0,0 +1,54 @@ +
@stash-ui/editor-icons
+
Solid icons variation.
+
+
+Website + · +GitHub + · +Figma + · +Discord +
+ +## Install + +Install the set of editor icons from your command line. + +#### With yarn + +```sh +yarn add @stash-ui/editor-icons +``` + +#### With npm + +```sh +npm install @stash-ui/editor-icons +``` + +## Getting started + +Add the SVG icon to your application. Include color where needed. + +```jsx +import { BoldIcon, ItalicIcon } from '@stash-ui/editor-icons'; + +const App = () => { + return ( + + + ); +}; +``` + +## Authors + +- Tiago Gerken ([@tgerken](https://twitter.com/tgerken)) - [Pingback](https://pingback.com) +- Pedro Ladeira ([@pedrooladeira](https://twitter.com/pedrooladeira)) - [Pingback](https://pingback.com) + +## License + +Licensed under the MIT License, Copyright © 2022-present Pingback LLC. + +See [LICENSE](./LICENSE) for more information. diff --git a/packages/editor/src/AttachmentIcon.tsx b/packages/editor/src/AttachmentIcon.tsx new file mode 100644 index 0000000..ec7f5fb --- /dev/null +++ b/packages/editor/src/AttachmentIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AttachmentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AttachmentIcon; diff --git a/packages/editor/src/BoldIcon.tsx b/packages/editor/src/BoldIcon.tsx new file mode 100644 index 0000000..e2ec787 --- /dev/null +++ b/packages/editor/src/BoldIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BoldIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BoldIcon; diff --git a/packages/editor/src/ButtonFillIcon.tsx b/packages/editor/src/ButtonFillIcon.tsx new file mode 100644 index 0000000..0138377 --- /dev/null +++ b/packages/editor/src/ButtonFillIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ButtonFillIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ButtonFillIcon; diff --git a/packages/editor/src/ButtonHugIcon.tsx b/packages/editor/src/ButtonHugIcon.tsx new file mode 100644 index 0000000..8139f53 --- /dev/null +++ b/packages/editor/src/ButtonHugIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ButtonHugIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ButtonHugIcon; diff --git a/packages/editor/src/EditorDividerIcon.tsx b/packages/editor/src/EditorDividerIcon.tsx new file mode 100644 index 0000000..2599c1b --- /dev/null +++ b/packages/editor/src/EditorDividerIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EditorDividerIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EditorDividerIcon; diff --git a/packages/editor/src/Heading1Icon.tsx b/packages/editor/src/Heading1Icon.tsx new file mode 100644 index 0000000..1bb7345 --- /dev/null +++ b/packages/editor/src/Heading1Icon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const Heading1Icon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default Heading1Icon; diff --git a/packages/editor/src/Heading2Icon.tsx b/packages/editor/src/Heading2Icon.tsx new file mode 100644 index 0000000..7fad1f7 --- /dev/null +++ b/packages/editor/src/Heading2Icon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const Heading2Icon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default Heading2Icon; diff --git a/packages/editor/src/Heading3Icon.tsx b/packages/editor/src/Heading3Icon.tsx new file mode 100644 index 0000000..9a319c6 --- /dev/null +++ b/packages/editor/src/Heading3Icon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const Heading3Icon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default Heading3Icon; diff --git a/packages/editor/src/Heading4Icon.tsx b/packages/editor/src/Heading4Icon.tsx new file mode 100644 index 0000000..398286a --- /dev/null +++ b/packages/editor/src/Heading4Icon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const Heading4Icon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default Heading4Icon; diff --git a/packages/editor/src/Heading5Icon.tsx b/packages/editor/src/Heading5Icon.tsx new file mode 100644 index 0000000..bf641b1 --- /dev/null +++ b/packages/editor/src/Heading5Icon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const Heading5Icon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default Heading5Icon; diff --git a/packages/editor/src/Heading6Icon.tsx b/packages/editor/src/Heading6Icon.tsx new file mode 100644 index 0000000..e409d33 --- /dev/null +++ b/packages/editor/src/Heading6Icon.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const Heading6Icon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default Heading6Icon; diff --git a/packages/editor/src/ImageArrowDownIcon.tsx b/packages/editor/src/ImageArrowDownIcon.tsx new file mode 100644 index 0000000..e04e4f8 --- /dev/null +++ b/packages/editor/src/ImageArrowDownIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageArrowDownIcon; diff --git a/packages/editor/src/ImageArrowUpIcon.tsx b/packages/editor/src/ImageArrowUpIcon.tsx new file mode 100644 index 0000000..79d7410 --- /dev/null +++ b/packages/editor/src/ImageArrowUpIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageArrowUpIcon; diff --git a/packages/editor/src/ImageBanIcon.tsx b/packages/editor/src/ImageBanIcon.tsx new file mode 100644 index 0000000..4c8e4ea --- /dev/null +++ b/packages/editor/src/ImageBanIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageBanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageBanIcon; diff --git a/packages/editor/src/ImageExclamationIcon.tsx b/packages/editor/src/ImageExclamationIcon.tsx new file mode 100644 index 0000000..8aef11c --- /dev/null +++ b/packages/editor/src/ImageExclamationIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageExclamationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageExclamationIcon; diff --git a/packages/editor/src/ImageFitFullIcon.tsx b/packages/editor/src/ImageFitFullIcon.tsx new file mode 100644 index 0000000..2f2ecc5 --- /dev/null +++ b/packages/editor/src/ImageFitFullIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageFitFullIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ImageFitFullIcon; diff --git a/packages/editor/src/ImageFitLeftIcon.tsx b/packages/editor/src/ImageFitLeftIcon.tsx new file mode 100644 index 0000000..7704405 --- /dev/null +++ b/packages/editor/src/ImageFitLeftIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageFitLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ImageFitLeftIcon; diff --git a/packages/editor/src/ImageFitRightIcon.tsx b/packages/editor/src/ImageFitRightIcon.tsx new file mode 100644 index 0000000..3c8af05 --- /dev/null +++ b/packages/editor/src/ImageFitRightIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageFitRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ImageFitRightIcon; diff --git a/packages/editor/src/ImageIcon.tsx b/packages/editor/src/ImageIcon.tsx new file mode 100644 index 0000000..a8400ba --- /dev/null +++ b/packages/editor/src/ImageIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImageIcon; diff --git a/packages/editor/src/ImageMinusIcon.tsx b/packages/editor/src/ImageMinusIcon.tsx new file mode 100644 index 0000000..e90ad3b --- /dev/null +++ b/packages/editor/src/ImageMinusIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImageMinusIcon; diff --git a/packages/editor/src/ImageOpenIcon.tsx b/packages/editor/src/ImageOpenIcon.tsx new file mode 100644 index 0000000..e169393 --- /dev/null +++ b/packages/editor/src/ImageOpenIcon.tsx @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageOpenIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageOpenIcon; diff --git a/packages/editor/src/ImagePlusIcon.tsx b/packages/editor/src/ImagePlusIcon.tsx new file mode 100644 index 0000000..0e9f958 --- /dev/null +++ b/packages/editor/src/ImagePlusIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImagePlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImagePlusIcon; diff --git a/packages/editor/src/ImageSearchIcon.tsx b/packages/editor/src/ImageSearchIcon.tsx new file mode 100644 index 0000000..dbf9eec --- /dev/null +++ b/packages/editor/src/ImageSearchIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageSearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageSearchIcon; diff --git a/packages/editor/src/ImageSwitchIcon.tsx b/packages/editor/src/ImageSwitchIcon.tsx new file mode 100644 index 0000000..2753679 --- /dev/null +++ b/packages/editor/src/ImageSwitchIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageSwitchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageSwitchIcon; diff --git a/packages/editor/src/ImageTimesIcon.tsx b/packages/editor/src/ImageTimesIcon.tsx new file mode 100644 index 0000000..24041c8 --- /dev/null +++ b/packages/editor/src/ImageTimesIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageTimesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageTimesIcon; diff --git a/packages/editor/src/ImageTrashIcon.tsx b/packages/editor/src/ImageTrashIcon.tsx new file mode 100644 index 0000000..e35dd76 --- /dev/null +++ b/packages/editor/src/ImageTrashIcon.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageTrashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImageTrashIcon; diff --git a/packages/editor/src/ItalicIcon.tsx b/packages/editor/src/ItalicIcon.tsx new file mode 100644 index 0000000..c3181cc --- /dev/null +++ b/packages/editor/src/ItalicIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ItalicIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ItalicIcon; diff --git a/packages/editor/src/LinkIcon.tsx b/packages/editor/src/LinkIcon.tsx new file mode 100644 index 0000000..49923b9 --- /dev/null +++ b/packages/editor/src/LinkIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LinkIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default LinkIcon; diff --git a/packages/editor/src/MarkerIcon.tsx b/packages/editor/src/MarkerIcon.tsx new file mode 100644 index 0000000..92df78a --- /dev/null +++ b/packages/editor/src/MarkerIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MarkerIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MarkerIcon; diff --git a/packages/editor/src/NoneIcon.tsx b/packages/editor/src/NoneIcon.tsx new file mode 100644 index 0000000..ada20a3 --- /dev/null +++ b/packages/editor/src/NoneIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const NoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default NoneIcon; diff --git a/packages/editor/src/NumberedIcon.tsx b/packages/editor/src/NumberedIcon.tsx new file mode 100644 index 0000000..d2ffb05 --- /dev/null +++ b/packages/editor/src/NumberedIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const NumberedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default NumberedIcon; diff --git a/packages/editor/src/ParagraphIcon.tsx b/packages/editor/src/ParagraphIcon.tsx new file mode 100644 index 0000000..49a00e1 --- /dev/null +++ b/packages/editor/src/ParagraphIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ParagraphIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ParagraphIcon; diff --git a/packages/editor/src/QuotationIcon.tsx b/packages/editor/src/QuotationIcon.tsx new file mode 100644 index 0000000..27d9692 --- /dev/null +++ b/packages/editor/src/QuotationIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const QuotationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default QuotationIcon; diff --git a/packages/editor/src/StrikethroughIcon.tsx b/packages/editor/src/StrikethroughIcon.tsx new file mode 100644 index 0000000..3d330d5 --- /dev/null +++ b/packages/editor/src/StrikethroughIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const StrikethroughIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default StrikethroughIcon; diff --git a/packages/editor/src/TasklistIcon.tsx b/packages/editor/src/TasklistIcon.tsx new file mode 100644 index 0000000..6cc8eeb --- /dev/null +++ b/packages/editor/src/TasklistIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TasklistIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TasklistIcon; diff --git a/packages/editor/src/TextColorIcon.tsx b/packages/editor/src/TextColorIcon.tsx new file mode 100644 index 0000000..a0ca90a --- /dev/null +++ b/packages/editor/src/TextColorIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TextColorIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default TextColorIcon; diff --git a/packages/editor/src/TextIdentationLeftIcon.tsx b/packages/editor/src/TextIdentationLeftIcon.tsx new file mode 100644 index 0000000..fda8f12 --- /dev/null +++ b/packages/editor/src/TextIdentationLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TextIdentationLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TextIdentationLeftIcon; diff --git a/packages/editor/src/TextIdentationRightIcon.tsx b/packages/editor/src/TextIdentationRightIcon.tsx new file mode 100644 index 0000000..27b664d --- /dev/null +++ b/packages/editor/src/TextIdentationRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TextIdentationRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TextIdentationRightIcon; diff --git a/packages/editor/src/UnderlineIcon.tsx b/packages/editor/src/UnderlineIcon.tsx new file mode 100644 index 0000000..51554e6 --- /dev/null +++ b/packages/editor/src/UnderlineIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UnderlineIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UnderlineIcon; diff --git a/packages/editor/src/UnorderedIcon.tsx b/packages/editor/src/UnorderedIcon.tsx new file mode 100644 index 0000000..74c6a5c --- /dev/null +++ b/packages/editor/src/UnorderedIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UnorderedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UnorderedIcon; diff --git a/packages/editor/src/index.tsx b/packages/editor/src/index.tsx new file mode 100644 index 0000000..6f418f8 --- /dev/null +++ b/packages/editor/src/index.tsx @@ -0,0 +1,40 @@ +export { default as AttachmentIcon } from './AttachmentIcon'; +export { default as LinkIcon } from './LinkIcon'; +export { default as EditorDividerIcon } from './EditorDividerIcon'; +export { default as ButtonHugIcon } from './ButtonHugIcon'; +export { default as ButtonFillIcon } from './ButtonFillIcon'; +export { default as BoldIcon } from './BoldIcon'; +export { default as ItalicIcon } from './ItalicIcon'; +export { default as StrikethroughIcon } from './StrikethroughIcon'; +export { default as UnderlineIcon } from './UnderlineIcon'; +export { default as NoneIcon } from './NoneIcon'; +export { default as TextColorIcon } from './TextColorIcon'; +export { default as MarkerIcon } from './MarkerIcon'; +export { default as Heading1Icon } from './Heading1Icon'; +export { default as Heading2Icon } from './Heading2Icon'; +export { default as Heading3Icon } from './Heading3Icon'; +export { default as Heading4Icon } from './Heading4Icon'; +export { default as Heading5Icon } from './Heading5Icon'; +export { default as Heading6Icon } from './Heading6Icon'; +export { default as ParagraphIcon } from './ParagraphIcon'; +export { default as QuotationIcon } from './QuotationIcon'; +export { default as TextIdentationRightIcon } from './TextIdentationRightIcon'; +export { default as TextIdentationLeftIcon } from './TextIdentationLeftIcon'; +export { default as ImageFitRightIcon } from './ImageFitRightIcon'; +export { default as ImageFitLeftIcon } from './ImageFitLeftIcon'; +export { default as ImageFitFullIcon } from './ImageFitFullIcon'; +export { default as NumberedIcon } from './NumberedIcon'; +export { default as UnorderedIcon } from './UnorderedIcon'; +export { default as TasklistIcon } from './TasklistIcon'; +export { default as ImageIcon } from './ImageIcon'; +export { default as ImageOpenIcon } from './ImageOpenIcon'; +export { default as ImageArrowUpIcon } from './ImageArrowUpIcon'; +export { default as ImageArrowDownIcon } from './ImageArrowDownIcon'; +export { default as ImageSearchIcon } from './ImageSearchIcon'; +export { default as ImageTimesIcon } from './ImageTimesIcon'; +export { default as ImageSwitchIcon } from './ImageSwitchIcon'; +export { default as ImageTrashIcon } from './ImageTrashIcon'; +export { default as ImageMinusIcon } from './ImageMinusIcon'; +export { default as ImageBanIcon } from './ImageBanIcon'; +export { default as ImagePlusIcon } from './ImagePlusIcon'; +export { default as ImageExclamationIcon } from './ImageExclamationIcon'; diff --git a/packages/editor/src/types.tsx b/packages/editor/src/types.tsx new file mode 100644 index 0000000..82bd33c --- /dev/null +++ b/packages/editor/src/types.tsx @@ -0,0 +1,6 @@ +import * as React from 'react'; + +export interface IconProps extends React.SVGAttributes { + children?: never; + color?: string; +} \ No newline at end of file diff --git a/packages/light/package.json b/packages/light/package.json new file mode 100644 index 0000000..9ee01d9 --- /dev/null +++ b/packages/light/package.json @@ -0,0 +1,34 @@ +{ + "name": "@stash-ui/light-icons", + "private": false, + "version": "1.0.0", + "license": "MIT", + "description": "React Light Icons Set", + "authors": [ + "Tiago Gerken ", + "Pedro Ladeira " + ], + "module": "dist/light-icons.esm.js", + "main": "index.js", + "types": "dist/index.d.ts", + "files": [ + "index.js", + "manifest.json" + ], + "publishConfig": { + "access": "public" + }, + "scripts": { + "generate-src": "generate-icons --file=X5DiJzGRQXCyEfBqocT235 --style=light", + "build": "rimraf dist && tsdx build --format es,cjs --entry src/index.tsx", + "watch": "rimraf dist && tsdx watch --format es,cjs --entry src/index.tsx", + "prepublishOnly": "npm run build" + }, + "peerDependencies": { + "react": "^16.x || ^17.x || ^18.x" + }, + "devDependencies": { + "tsdx": "0.14.0", + "@stash-ui/generate-from-figma": "*" + } + } \ No newline at end of file diff --git a/packages/light/readme.md b/packages/light/readme.md new file mode 100644 index 0000000..8fedf6b --- /dev/null +++ b/packages/light/readme.md @@ -0,0 +1,54 @@ +
@stash-ui/light-icons
+
Solid icons variation.
+
+
+Website + · +GitHub + · +Figma + · +Discord +
+ +## Install + +Install the set of light icons from your command line. + +#### With yarn + +```sh +yarn add @stash-ui/light-icons +``` + +#### With npm + +```sh +npm install @stash-ui/light-icons +``` + +## Getting started + +Add the SVG icon to your application. Include color where needed. + +```jsx +import { AngleDownIcon, AngleUpIcon } from '@stash-ui/light-icons'; + +const App = () => { + return ( + + + ); +}; +``` + +## Authors + +- Tiago Gerken ([@tgerken](https://twitter.com/tgerken)) - [Pingback](https://pingback.com) +- Pedro Ladeira ([@pedrooladeira](https://twitter.com/pedrooladeira)) - [Pingback](https://pingback.com) + +## License + +Licensed under the MIT License, Copyright © 2022-present Pingback LLC. + +See [LICENSE](./LICENSE) for more information. diff --git a/packages/light/src/AngleDownIcon.tsx b/packages/light/src/AngleDownIcon.tsx new file mode 100644 index 0000000..0dff30b --- /dev/null +++ b/packages/light/src/AngleDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleDownIcon; diff --git a/packages/light/src/AngleLeftIcon.tsx b/packages/light/src/AngleLeftIcon.tsx new file mode 100644 index 0000000..0bef5c7 --- /dev/null +++ b/packages/light/src/AngleLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleLeftIcon; diff --git a/packages/light/src/AngleRightIcon.tsx b/packages/light/src/AngleRightIcon.tsx new file mode 100644 index 0000000..7623df1 --- /dev/null +++ b/packages/light/src/AngleRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleRightIcon; diff --git a/packages/light/src/AngleUpIcon.tsx b/packages/light/src/AngleUpIcon.tsx new file mode 100644 index 0000000..24fa693 --- /dev/null +++ b/packages/light/src/AngleUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleUpIcon; diff --git a/packages/light/src/ArrowDownIcon.tsx b/packages/light/src/ArrowDownIcon.tsx new file mode 100644 index 0000000..9ce0ef1 --- /dev/null +++ b/packages/light/src/ArrowDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowDownIcon; diff --git a/packages/light/src/ArrowDownLargeIcon.tsx b/packages/light/src/ArrowDownLargeIcon.tsx new file mode 100644 index 0000000..98b366d --- /dev/null +++ b/packages/light/src/ArrowDownLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowDownLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowDownLargeIcon; diff --git a/packages/light/src/ArrowLeftIcon.tsx b/packages/light/src/ArrowLeftIcon.tsx new file mode 100644 index 0000000..9124613 --- /dev/null +++ b/packages/light/src/ArrowLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowLeftIcon; diff --git a/packages/light/src/ArrowLeftLargeIcon.tsx b/packages/light/src/ArrowLeftLargeIcon.tsx new file mode 100644 index 0000000..6d37f3f --- /dev/null +++ b/packages/light/src/ArrowLeftLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowLeftLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowLeftLargeIcon; diff --git a/packages/light/src/ArrowRetryIcon.tsx b/packages/light/src/ArrowRetryIcon.tsx new file mode 100644 index 0000000..f4c2acf --- /dev/null +++ b/packages/light/src/ArrowRetryIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRetryIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRetryIcon; diff --git a/packages/light/src/ArrowRightIcon.tsx b/packages/light/src/ArrowRightIcon.tsx new file mode 100644 index 0000000..48c9a90 --- /dev/null +++ b/packages/light/src/ArrowRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRightIcon; diff --git a/packages/light/src/ArrowRightLargeIcon.tsx b/packages/light/src/ArrowRightLargeIcon.tsx new file mode 100644 index 0000000..9987ced --- /dev/null +++ b/packages/light/src/ArrowRightLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRightLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRightLargeIcon; diff --git a/packages/light/src/ArrowUpIcon.tsx b/packages/light/src/ArrowUpIcon.tsx new file mode 100644 index 0000000..a1b4965 --- /dev/null +++ b/packages/light/src/ArrowUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowUpIcon; diff --git a/packages/light/src/ArrowUpLargeIcon.tsx b/packages/light/src/ArrowUpLargeIcon.tsx new file mode 100644 index 0000000..b36ef2e --- /dev/null +++ b/packages/light/src/ArrowUpLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowUpLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowUpLargeIcon; diff --git a/packages/light/src/ArrowsSwitchIcon.tsx b/packages/light/src/ArrowsSwitchIcon.tsx new file mode 100644 index 0000000..135217a --- /dev/null +++ b/packages/light/src/ArrowsSwitchIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowsSwitchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowsSwitchIcon; diff --git a/packages/light/src/ArticleAltIcon.tsx b/packages/light/src/ArticleAltIcon.tsx new file mode 100644 index 0000000..ae23d2f --- /dev/null +++ b/packages/light/src/ArticleAltIcon.tsx @@ -0,0 +1,39 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticleAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ArticleAltIcon; diff --git a/packages/light/src/ArticleIcon.tsx b/packages/light/src/ArticleIcon.tsx new file mode 100644 index 0000000..a0cdf40 --- /dev/null +++ b/packages/light/src/ArticleIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ArticleIcon; diff --git a/packages/light/src/ArticlePlusIcon.tsx b/packages/light/src/ArticlePlusIcon.tsx new file mode 100644 index 0000000..121f8f8 --- /dev/null +++ b/packages/light/src/ArticlePlusIcon.tsx @@ -0,0 +1,39 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticlePlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ArticlePlusIcon; diff --git a/packages/light/src/AsteriskIcon.tsx b/packages/light/src/AsteriskIcon.tsx new file mode 100644 index 0000000..b515dd7 --- /dev/null +++ b/packages/light/src/AsteriskIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AsteriskIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AsteriskIcon; diff --git a/packages/light/src/AtSymbolIcon.tsx b/packages/light/src/AtSymbolIcon.tsx new file mode 100644 index 0000000..e073ef4 --- /dev/null +++ b/packages/light/src/AtSymbolIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AtSymbolIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AtSymbolIcon; diff --git a/packages/light/src/BadgeDollarIcon.tsx b/packages/light/src/BadgeDollarIcon.tsx new file mode 100644 index 0000000..6ca32bc --- /dev/null +++ b/packages/light/src/BadgeDollarIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BadgeDollarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BadgeDollarIcon; diff --git a/packages/light/src/BadgeVerifiedIcon.tsx b/packages/light/src/BadgeVerifiedIcon.tsx new file mode 100644 index 0000000..3c91e76 --- /dev/null +++ b/packages/light/src/BadgeVerifiedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BadgeVerifiedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BadgeVerifiedIcon; diff --git a/packages/light/src/BalanceIcon.tsx b/packages/light/src/BalanceIcon.tsx new file mode 100644 index 0000000..58a925f --- /dev/null +++ b/packages/light/src/BalanceIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BalanceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BalanceIcon; diff --git a/packages/light/src/BellIcon.tsx b/packages/light/src/BellIcon.tsx new file mode 100644 index 0000000..413eca8 --- /dev/null +++ b/packages/light/src/BellIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BellIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BellIcon; diff --git a/packages/light/src/BillingInfoIcon.tsx b/packages/light/src/BillingInfoIcon.tsx new file mode 100644 index 0000000..9730327 --- /dev/null +++ b/packages/light/src/BillingInfoIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BillingInfoIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BillingInfoIcon; diff --git a/packages/light/src/BurgerArrowLeftIcon.tsx b/packages/light/src/BurgerArrowLeftIcon.tsx new file mode 100644 index 0000000..83c4267 --- /dev/null +++ b/packages/light/src/BurgerArrowLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BurgerArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BurgerArrowLeftIcon; diff --git a/packages/light/src/BurgerArrowRightIcon.tsx b/packages/light/src/BurgerArrowRightIcon.tsx new file mode 100644 index 0000000..3f543ae --- /dev/null +++ b/packages/light/src/BurgerArrowRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BurgerArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BurgerArrowRightIcon; diff --git a/packages/light/src/BurgerClassicIcon.tsx b/packages/light/src/BurgerClassicIcon.tsx new file mode 100644 index 0000000..bb021cd --- /dev/null +++ b/packages/light/src/BurgerClassicIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BurgerClassicIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BurgerClassicIcon; diff --git a/packages/light/src/CalendarEndIcon.tsx b/packages/light/src/CalendarEndIcon.tsx new file mode 100644 index 0000000..8d28819 --- /dev/null +++ b/packages/light/src/CalendarEndIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarEndIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CalendarEndIcon; diff --git a/packages/light/src/CalendarIcon.tsx b/packages/light/src/CalendarIcon.tsx new file mode 100644 index 0000000..eb57801 --- /dev/null +++ b/packages/light/src/CalendarIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CalendarIcon; diff --git a/packages/light/src/CalendarNineIcon.tsx b/packages/light/src/CalendarNineIcon.tsx new file mode 100644 index 0000000..eab7f38 --- /dev/null +++ b/packages/light/src/CalendarNineIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarNineIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CalendarNineIcon; diff --git a/packages/light/src/CalendarStarIcon.tsx b/packages/light/src/CalendarStarIcon.tsx new file mode 100644 index 0000000..7573381 --- /dev/null +++ b/packages/light/src/CalendarStarIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarStarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CalendarStarIcon; diff --git a/packages/light/src/CaretDownIcon.tsx b/packages/light/src/CaretDownIcon.tsx new file mode 100644 index 0000000..8613507 --- /dev/null +++ b/packages/light/src/CaretDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretDownIcon; diff --git a/packages/light/src/CaretLeftIcon.tsx b/packages/light/src/CaretLeftIcon.tsx new file mode 100644 index 0000000..add7693 --- /dev/null +++ b/packages/light/src/CaretLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretLeftIcon; diff --git a/packages/light/src/CaretRightIcon.tsx b/packages/light/src/CaretRightIcon.tsx new file mode 100644 index 0000000..775bcfb --- /dev/null +++ b/packages/light/src/CaretRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretRightIcon; diff --git a/packages/light/src/CaretUpIcon.tsx b/packages/light/src/CaretUpIcon.tsx new file mode 100644 index 0000000..6a1c1cb --- /dev/null +++ b/packages/light/src/CaretUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretUpIcon; diff --git a/packages/light/src/ChartPieIcon.tsx b/packages/light/src/ChartPieIcon.tsx new file mode 100644 index 0000000..57d315f --- /dev/null +++ b/packages/light/src/ChartPieIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartPieIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ChartPieIcon; diff --git a/packages/light/src/ChartTrendDownIcon.tsx b/packages/light/src/ChartTrendDownIcon.tsx new file mode 100644 index 0000000..4314834 --- /dev/null +++ b/packages/light/src/ChartTrendDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartTrendDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChartTrendDownIcon; diff --git a/packages/light/src/ChartTrendUpIcon.tsx b/packages/light/src/ChartTrendUpIcon.tsx new file mode 100644 index 0000000..023e824 --- /dev/null +++ b/packages/light/src/ChartTrendUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartTrendUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChartTrendUpIcon; diff --git a/packages/light/src/CheckCircleIcon.tsx b/packages/light/src/CheckCircleIcon.tsx new file mode 100644 index 0000000..67bb45a --- /dev/null +++ b/packages/light/src/CheckCircleIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CheckCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CheckCircleIcon; diff --git a/packages/light/src/CheckIcon.tsx b/packages/light/src/CheckIcon.tsx new file mode 100644 index 0000000..570660b --- /dev/null +++ b/packages/light/src/CheckIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CheckIcon; diff --git a/packages/light/src/ChevronDownIcon.tsx b/packages/light/src/ChevronDownIcon.tsx new file mode 100644 index 0000000..a027483 --- /dev/null +++ b/packages/light/src/ChevronDownIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronDownIcon; diff --git a/packages/light/src/ChevronLeftIcon.tsx b/packages/light/src/ChevronLeftIcon.tsx new file mode 100644 index 0000000..650f4d6 --- /dev/null +++ b/packages/light/src/ChevronLeftIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronLeftIcon; diff --git a/packages/light/src/ChevronRightIcon.tsx b/packages/light/src/ChevronRightIcon.tsx new file mode 100644 index 0000000..6d3d693 --- /dev/null +++ b/packages/light/src/ChevronRightIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronRightIcon; diff --git a/packages/light/src/ChevronUpIcon.tsx b/packages/light/src/ChevronUpIcon.tsx new file mode 100644 index 0000000..c4827b1 --- /dev/null +++ b/packages/light/src/ChevronUpIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronUpIcon; diff --git a/packages/light/src/CircleDotIcon.tsx b/packages/light/src/CircleDotIcon.tsx new file mode 100644 index 0000000..6db768c --- /dev/null +++ b/packages/light/src/CircleDotIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CircleDotIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CircleDotIcon; diff --git a/packages/light/src/CircleIcon.tsx b/packages/light/src/CircleIcon.tsx new file mode 100644 index 0000000..c3e2bc3 --- /dev/null +++ b/packages/light/src/CircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CircleIcon; diff --git a/packages/light/src/ClockIcon.tsx b/packages/light/src/ClockIcon.tsx new file mode 100644 index 0000000..a1e012a --- /dev/null +++ b/packages/light/src/ClockIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ClockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ClockIcon; diff --git a/packages/light/src/CloudArrowDownIcon.tsx b/packages/light/src/CloudArrowDownIcon.tsx new file mode 100644 index 0000000..3730aa6 --- /dev/null +++ b/packages/light/src/CloudArrowDownIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudArrowDownIcon; diff --git a/packages/light/src/CloudArrowUpIcon.tsx b/packages/light/src/CloudArrowUpIcon.tsx new file mode 100644 index 0000000..b906869 --- /dev/null +++ b/packages/light/src/CloudArrowUpIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudArrowUpIcon; diff --git a/packages/light/src/CloudCheckIcon.tsx b/packages/light/src/CloudCheckIcon.tsx new file mode 100644 index 0000000..b028689 --- /dev/null +++ b/packages/light/src/CloudCheckIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudCheckIcon; diff --git a/packages/light/src/CloudIcon.tsx b/packages/light/src/CloudIcon.tsx new file mode 100644 index 0000000..d05f8aa --- /dev/null +++ b/packages/light/src/CloudIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CloudIcon; diff --git a/packages/light/src/CloudMinusIcon.tsx b/packages/light/src/CloudMinusIcon.tsx new file mode 100644 index 0000000..23f656c --- /dev/null +++ b/packages/light/src/CloudMinusIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudMinusIcon; diff --git a/packages/light/src/CloudPlusIcon.tsx b/packages/light/src/CloudPlusIcon.tsx new file mode 100644 index 0000000..45388e8 --- /dev/null +++ b/packages/light/src/CloudPlusIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudPlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudPlusIcon; diff --git a/packages/light/src/CogIcon.tsx b/packages/light/src/CogIcon.tsx new file mode 100644 index 0000000..107cb76 --- /dev/null +++ b/packages/light/src/CogIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CogIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CogIcon; diff --git a/packages/light/src/CompassIcon.tsx b/packages/light/src/CompassIcon.tsx new file mode 100644 index 0000000..97a0611 --- /dev/null +++ b/packages/light/src/CompassIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CompassIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CompassIcon; diff --git a/packages/light/src/CopyIcon.tsx b/packages/light/src/CopyIcon.tsx new file mode 100644 index 0000000..3b69a1e --- /dev/null +++ b/packages/light/src/CopyIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CopyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CopyIcon; diff --git a/packages/light/src/CreatorsClubIcon.tsx b/packages/light/src/CreatorsClubIcon.tsx new file mode 100644 index 0000000..5937151 --- /dev/null +++ b/packages/light/src/CreatorsClubIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CreatorsClubIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CreatorsClubIcon; diff --git a/packages/light/src/CreditCardIcon.tsx b/packages/light/src/CreditCardIcon.tsx new file mode 100644 index 0000000..3d1257d --- /dev/null +++ b/packages/light/src/CreditCardIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CreditCardIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CreditCardIcon; diff --git a/packages/light/src/CrownIcon.tsx b/packages/light/src/CrownIcon.tsx new file mode 100644 index 0000000..09c5240 --- /dev/null +++ b/packages/light/src/CrownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CrownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CrownIcon; diff --git a/packages/light/src/CursorArrowIcon.tsx b/packages/light/src/CursorArrowIcon.tsx new file mode 100644 index 0000000..ca9f58b --- /dev/null +++ b/packages/light/src/CursorArrowIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CursorArrowIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CursorArrowIcon; diff --git a/packages/light/src/DashboardIcon.tsx b/packages/light/src/DashboardIcon.tsx new file mode 100644 index 0000000..2a29a5b --- /dev/null +++ b/packages/light/src/DashboardIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DashboardIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default DashboardIcon; diff --git a/packages/light/src/DataBooleanIcon.tsx b/packages/light/src/DataBooleanIcon.tsx new file mode 100644 index 0000000..2b537ae --- /dev/null +++ b/packages/light/src/DataBooleanIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataBooleanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default DataBooleanIcon; diff --git a/packages/light/src/DataNumbersIcon.tsx b/packages/light/src/DataNumbersIcon.tsx new file mode 100644 index 0000000..f1d7a77 --- /dev/null +++ b/packages/light/src/DataNumbersIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataNumbersIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DataNumbersIcon; diff --git a/packages/light/src/DataTextIcon.tsx b/packages/light/src/DataTextIcon.tsx new file mode 100644 index 0000000..75c03ce --- /dev/null +++ b/packages/light/src/DataTextIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataTextIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DataTextIcon; diff --git a/packages/light/src/DesktopCheckIcon.tsx b/packages/light/src/DesktopCheckIcon.tsx new file mode 100644 index 0000000..488d1a6 --- /dev/null +++ b/packages/light/src/DesktopCheckIcon.tsx @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DesktopCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default DesktopCheckIcon; diff --git a/packages/light/src/DesktopIcon.tsx b/packages/light/src/DesktopIcon.tsx new file mode 100644 index 0000000..eb2c8f8 --- /dev/null +++ b/packages/light/src/DesktopIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DesktopIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DesktopIcon; diff --git a/packages/light/src/DivideIcon.tsx b/packages/light/src/DivideIcon.tsx new file mode 100644 index 0000000..9e7398d --- /dev/null +++ b/packages/light/src/DivideIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DivideIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DivideIcon; diff --git a/packages/light/src/DollarSignIcon.tsx b/packages/light/src/DollarSignIcon.tsx new file mode 100644 index 0000000..d481de6 --- /dev/null +++ b/packages/light/src/DollarSignIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DollarSignIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DollarSignIcon; diff --git a/packages/light/src/DomainIcon.tsx b/packages/light/src/DomainIcon.tsx new file mode 100644 index 0000000..ed112ff --- /dev/null +++ b/packages/light/src/DomainIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DomainIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DomainIcon; diff --git a/packages/light/src/EllipsisHIcon.tsx b/packages/light/src/EllipsisHIcon.tsx new file mode 100644 index 0000000..0701659 --- /dev/null +++ b/packages/light/src/EllipsisHIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EllipsisHIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EllipsisHIcon; diff --git a/packages/light/src/EllipsisVIcon.tsx b/packages/light/src/EllipsisVIcon.tsx new file mode 100644 index 0000000..dd767aa --- /dev/null +++ b/packages/light/src/EllipsisVIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EllipsisVIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EllipsisVIcon; diff --git a/packages/light/src/EmojiPissedOffIcon.tsx b/packages/light/src/EmojiPissedOffIcon.tsx new file mode 100644 index 0000000..2f55cf7 --- /dev/null +++ b/packages/light/src/EmojiPissedOffIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EmojiPissedOffIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EmojiPissedOffIcon; diff --git a/packages/light/src/EngagementIcon.tsx b/packages/light/src/EngagementIcon.tsx new file mode 100644 index 0000000..de35208 --- /dev/null +++ b/packages/light/src/EngagementIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EngagementIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EngagementIcon; diff --git a/packages/light/src/EnvelopeAtIcon.tsx b/packages/light/src/EnvelopeAtIcon.tsx new file mode 100644 index 0000000..10fe856 --- /dev/null +++ b/packages/light/src/EnvelopeAtIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EnvelopeAtIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default EnvelopeAtIcon; diff --git a/packages/light/src/EnvelopeFlyingIcon.tsx b/packages/light/src/EnvelopeFlyingIcon.tsx new file mode 100644 index 0000000..6f6b358 --- /dev/null +++ b/packages/light/src/EnvelopeFlyingIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EnvelopeFlyingIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EnvelopeFlyingIcon; diff --git a/packages/light/src/EnvelopeIcon.tsx b/packages/light/src/EnvelopeIcon.tsx new file mode 100644 index 0000000..9520e95 --- /dev/null +++ b/packages/light/src/EnvelopeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EnvelopeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EnvelopeIcon; diff --git a/packages/light/src/EqualIcon.tsx b/packages/light/src/EqualIcon.tsx new file mode 100644 index 0000000..08260c1 --- /dev/null +++ b/packages/light/src/EqualIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EqualIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EqualIcon; diff --git a/packages/light/src/EspiralBookIcon.tsx b/packages/light/src/EspiralBookIcon.tsx new file mode 100644 index 0000000..4e30d5e --- /dev/null +++ b/packages/light/src/EspiralBookIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EspiralBookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EspiralBookIcon; diff --git a/packages/light/src/ExclamationAlertIcon.tsx b/packages/light/src/ExclamationAlertIcon.tsx new file mode 100644 index 0000000..e905cef --- /dev/null +++ b/packages/light/src/ExclamationAlertIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationAlertIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ExclamationAlertIcon; diff --git a/packages/light/src/ExclamationCircleIcon.tsx b/packages/light/src/ExclamationCircleIcon.tsx new file mode 100644 index 0000000..9b1034d --- /dev/null +++ b/packages/light/src/ExclamationCircleIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ExclamationCircleIcon; diff --git a/packages/light/src/ExclamationTriangleIcon.tsx b/packages/light/src/ExclamationTriangleIcon.tsx new file mode 100644 index 0000000..f2eb053 --- /dev/null +++ b/packages/light/src/ExclamationTriangleIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationTriangleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ExclamationTriangleIcon; diff --git a/packages/light/src/ExpandDiagonalIcon.tsx b/packages/light/src/ExpandDiagonalIcon.tsx new file mode 100644 index 0000000..506c94f --- /dev/null +++ b/packages/light/src/ExpandDiagonalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExpandDiagonalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExpandDiagonalIcon; diff --git a/packages/light/src/ExpandVerticalIcon.tsx b/packages/light/src/ExpandVerticalIcon.tsx new file mode 100644 index 0000000..2a44409 --- /dev/null +++ b/packages/light/src/ExpandVerticalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExpandVerticalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExpandVerticalIcon; diff --git a/packages/light/src/ExplicitContentIcon.tsx b/packages/light/src/ExplicitContentIcon.tsx new file mode 100644 index 0000000..51d1059 --- /dev/null +++ b/packages/light/src/ExplicitContentIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExplicitContentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ExplicitContentIcon; diff --git a/packages/light/src/EyeClosedIcon.tsx b/packages/light/src/EyeClosedIcon.tsx new file mode 100644 index 0000000..873a96b --- /dev/null +++ b/packages/light/src/EyeClosedIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EyeClosedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EyeClosedIcon; diff --git a/packages/light/src/EyeOpenedIcon.tsx b/packages/light/src/EyeOpenedIcon.tsx new file mode 100644 index 0000000..5e94437 --- /dev/null +++ b/packages/light/src/EyeOpenedIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EyeOpenedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EyeOpenedIcon; diff --git a/packages/light/src/FeedIcon.tsx b/packages/light/src/FeedIcon.tsx new file mode 100644 index 0000000..883f380 --- /dev/null +++ b/packages/light/src/FeedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FeedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FeedIcon; diff --git a/packages/light/src/FilterIcon.tsx b/packages/light/src/FilterIcon.tsx new file mode 100644 index 0000000..88121a2 --- /dev/null +++ b/packages/light/src/FilterIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FilterIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FilterIcon; diff --git a/packages/light/src/FolderAltIcon.tsx b/packages/light/src/FolderAltIcon.tsx new file mode 100644 index 0000000..28d1a2d --- /dev/null +++ b/packages/light/src/FolderAltIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderAltIcon; diff --git a/packages/light/src/FolderArrowDownIcon.tsx b/packages/light/src/FolderArrowDownIcon.tsx new file mode 100644 index 0000000..0337e4b --- /dev/null +++ b/packages/light/src/FolderArrowDownIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowDownIcon; diff --git a/packages/light/src/FolderArrowLeftIcon.tsx b/packages/light/src/FolderArrowLeftIcon.tsx new file mode 100644 index 0000000..d05d71c --- /dev/null +++ b/packages/light/src/FolderArrowLeftIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowLeftIcon; diff --git a/packages/light/src/FolderArrowRightIcon.tsx b/packages/light/src/FolderArrowRightIcon.tsx new file mode 100644 index 0000000..d975960 --- /dev/null +++ b/packages/light/src/FolderArrowRightIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowRightIcon; diff --git a/packages/light/src/FolderArrowUpIcon.tsx b/packages/light/src/FolderArrowUpIcon.tsx new file mode 100644 index 0000000..278ea6f --- /dev/null +++ b/packages/light/src/FolderArrowUpIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowUpIcon; diff --git a/packages/light/src/FolderIcon.tsx b/packages/light/src/FolderIcon.tsx new file mode 100644 index 0000000..5c9c14a --- /dev/null +++ b/packages/light/src/FolderIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderIcon; diff --git a/packages/light/src/FolderLockIcon.tsx b/packages/light/src/FolderLockIcon.tsx new file mode 100644 index 0000000..5538e4a --- /dev/null +++ b/packages/light/src/FolderLockIcon.tsx @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderLockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default FolderLockIcon; diff --git a/packages/light/src/FolderMultipleIcon.tsx b/packages/light/src/FolderMultipleIcon.tsx new file mode 100644 index 0000000..1101210 --- /dev/null +++ b/packages/light/src/FolderMultipleIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderMultipleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderMultipleIcon; diff --git a/packages/light/src/FolderPlusIcon.tsx b/packages/light/src/FolderPlusIcon.tsx new file mode 100644 index 0000000..2895802 --- /dev/null +++ b/packages/light/src/FolderPlusIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderPlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderPlusIcon; diff --git a/packages/light/src/FolderRefreshIcon.tsx b/packages/light/src/FolderRefreshIcon.tsx new file mode 100644 index 0000000..ce31717 --- /dev/null +++ b/packages/light/src/FolderRefreshIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderRefreshIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderRefreshIcon; diff --git a/packages/light/src/FolderSearchIcon.tsx b/packages/light/src/FolderSearchIcon.tsx new file mode 100644 index 0000000..66d9349 --- /dev/null +++ b/packages/light/src/FolderSearchIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderSearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderSearchIcon; diff --git a/packages/light/src/GifIcon.tsx b/packages/light/src/GifIcon.tsx new file mode 100644 index 0000000..58c5d9c --- /dev/null +++ b/packages/light/src/GifIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GifIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default GifIcon; diff --git a/packages/light/src/GlobeIcon.tsx b/packages/light/src/GlobeIcon.tsx new file mode 100644 index 0000000..d0d89d8 --- /dev/null +++ b/packages/light/src/GlobeIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GlobeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default GlobeIcon; diff --git a/packages/light/src/GlobeTimezoneIcon.tsx b/packages/light/src/GlobeTimezoneIcon.tsx new file mode 100644 index 0000000..c3d047d --- /dev/null +++ b/packages/light/src/GlobeTimezoneIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GlobeTimezoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default GlobeTimezoneIcon; diff --git a/packages/light/src/GoogleDriveIcon.tsx b/packages/light/src/GoogleDriveIcon.tsx new file mode 100644 index 0000000..dea92d3 --- /dev/null +++ b/packages/light/src/GoogleDriveIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GoogleDriveIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default GoogleDriveIcon; diff --git a/packages/light/src/HashIcon.tsx b/packages/light/src/HashIcon.tsx new file mode 100644 index 0000000..36da191 --- /dev/null +++ b/packages/light/src/HashIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HashIcon; diff --git a/packages/light/src/HeadphonesIcon.tsx b/packages/light/src/HeadphonesIcon.tsx new file mode 100644 index 0000000..fa93dd9 --- /dev/null +++ b/packages/light/src/HeadphonesIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HeadphonesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HeadphonesIcon; diff --git a/packages/light/src/HeartIcon.tsx b/packages/light/src/HeartIcon.tsx new file mode 100644 index 0000000..0b76236 --- /dev/null +++ b/packages/light/src/HeartIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HeartIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HeartIcon; diff --git a/packages/light/src/HomeIcon.tsx b/packages/light/src/HomeIcon.tsx new file mode 100644 index 0000000..2c8a7e0 --- /dev/null +++ b/packages/light/src/HomeIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HomeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default HomeIcon; diff --git a/packages/light/src/ImageArrowDownIcon.tsx b/packages/light/src/ImageArrowDownIcon.tsx new file mode 100644 index 0000000..d4c2ca4 --- /dev/null +++ b/packages/light/src/ImageArrowDownIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageArrowDownIcon; diff --git a/packages/light/src/ImageArrowUpIcon.tsx b/packages/light/src/ImageArrowUpIcon.tsx new file mode 100644 index 0000000..3e75a8a --- /dev/null +++ b/packages/light/src/ImageArrowUpIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageArrowUpIcon; diff --git a/packages/light/src/ImageBanIcon.tsx b/packages/light/src/ImageBanIcon.tsx new file mode 100644 index 0000000..73c0bb6 --- /dev/null +++ b/packages/light/src/ImageBanIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageBanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageBanIcon; diff --git a/packages/light/src/ImageExclamationIcon.tsx b/packages/light/src/ImageExclamationIcon.tsx new file mode 100644 index 0000000..1ee1f28 --- /dev/null +++ b/packages/light/src/ImageExclamationIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageExclamationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageExclamationIcon; diff --git a/packages/light/src/ImageIcon.tsx b/packages/light/src/ImageIcon.tsx new file mode 100644 index 0000000..728cc47 --- /dev/null +++ b/packages/light/src/ImageIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageIcon; diff --git a/packages/light/src/ImageMinusIcon.tsx b/packages/light/src/ImageMinusIcon.tsx new file mode 100644 index 0000000..cf2a075 --- /dev/null +++ b/packages/light/src/ImageMinusIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImageMinusIcon; diff --git a/packages/light/src/ImageOpenIcon.tsx b/packages/light/src/ImageOpenIcon.tsx new file mode 100644 index 0000000..8e4ed63 --- /dev/null +++ b/packages/light/src/ImageOpenIcon.tsx @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageOpenIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageOpenIcon; diff --git a/packages/light/src/ImagePlusIcon.tsx b/packages/light/src/ImagePlusIcon.tsx new file mode 100644 index 0000000..5bcfa80 --- /dev/null +++ b/packages/light/src/ImagePlusIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImagePlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImagePlusIcon; diff --git a/packages/light/src/ImageSearchIcon.tsx b/packages/light/src/ImageSearchIcon.tsx new file mode 100644 index 0000000..8fdcdc4 --- /dev/null +++ b/packages/light/src/ImageSearchIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageSearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ImageSearchIcon; diff --git a/packages/light/src/ImageSwitchIcon.tsx b/packages/light/src/ImageSwitchIcon.tsx new file mode 100644 index 0000000..7ac41b5 --- /dev/null +++ b/packages/light/src/ImageSwitchIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageSwitchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageSwitchIcon; diff --git a/packages/light/src/ImageTimesIcon.tsx b/packages/light/src/ImageTimesIcon.tsx new file mode 100644 index 0000000..7f896cc --- /dev/null +++ b/packages/light/src/ImageTimesIcon.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageTimesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImageTimesIcon; diff --git a/packages/light/src/ImageTrashIcon.tsx b/packages/light/src/ImageTrashIcon.tsx new file mode 100644 index 0000000..fbc5cfa --- /dev/null +++ b/packages/light/src/ImageTrashIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageTrashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageTrashIcon; diff --git a/packages/light/src/InboxIcon.tsx b/packages/light/src/InboxIcon.tsx new file mode 100644 index 0000000..049d11e --- /dev/null +++ b/packages/light/src/InboxIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InboxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default InboxIcon; diff --git a/packages/light/src/InfinityIcon.tsx b/packages/light/src/InfinityIcon.tsx new file mode 100644 index 0000000..0aa9ff5 --- /dev/null +++ b/packages/light/src/InfinityIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InfinityIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default InfinityIcon; diff --git a/packages/light/src/InfoCircleIcon.tsx b/packages/light/src/InfoCircleIcon.tsx new file mode 100644 index 0000000..74bca6d --- /dev/null +++ b/packages/light/src/InfoCircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InfoCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default InfoCircleIcon; diff --git a/packages/light/src/IntegrationsIcon.tsx b/packages/light/src/IntegrationsIcon.tsx new file mode 100644 index 0000000..b576611 --- /dev/null +++ b/packages/light/src/IntegrationsIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const IntegrationsIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default IntegrationsIcon; diff --git a/packages/light/src/InvoiceIcon.tsx b/packages/light/src/InvoiceIcon.tsx new file mode 100644 index 0000000..fcf5d05 --- /dev/null +++ b/packages/light/src/InvoiceIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InvoiceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default InvoiceIcon; diff --git a/packages/light/src/LastUpdatesIcon.tsx b/packages/light/src/LastUpdatesIcon.tsx new file mode 100644 index 0000000..f6cd9c5 --- /dev/null +++ b/packages/light/src/LastUpdatesIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LastUpdatesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LastUpdatesIcon; diff --git a/packages/light/src/LifeRingIcon.tsx b/packages/light/src/LifeRingIcon.tsx new file mode 100644 index 0000000..922a3e4 --- /dev/null +++ b/packages/light/src/LifeRingIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LifeRingIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default LifeRingIcon; diff --git a/packages/light/src/LightBulbExclamationIcon.tsx b/packages/light/src/LightBulbExclamationIcon.tsx new file mode 100644 index 0000000..43c42c7 --- /dev/null +++ b/packages/light/src/LightBulbExclamationIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LightBulbExclamationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LightBulbExclamationIcon; diff --git a/packages/light/src/LightBulbIcon.tsx b/packages/light/src/LightBulbIcon.tsx new file mode 100644 index 0000000..927e892 --- /dev/null +++ b/packages/light/src/LightBulbIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LightBulbIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default LightBulbIcon; diff --git a/packages/light/src/LinkIcon.tsx b/packages/light/src/LinkIcon.tsx new file mode 100644 index 0000000..5323777 --- /dev/null +++ b/packages/light/src/LinkIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LinkIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default LinkIcon; diff --git a/packages/light/src/LocationIcon.tsx b/packages/light/src/LocationIcon.tsx new file mode 100644 index 0000000..1f6e763 --- /dev/null +++ b/packages/light/src/LocationIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LocationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default LocationIcon; diff --git a/packages/light/src/LockClosedIcon.tsx b/packages/light/src/LockClosedIcon.tsx new file mode 100644 index 0000000..ae217cb --- /dev/null +++ b/packages/light/src/LockClosedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LockClosedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LockClosedIcon; diff --git a/packages/light/src/LockOpenedIcon.tsx b/packages/light/src/LockOpenedIcon.tsx new file mode 100644 index 0000000..0e6e1c3 --- /dev/null +++ b/packages/light/src/LockOpenedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LockOpenedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LockOpenedIcon; diff --git a/packages/light/src/MailboxEmptyIcon.tsx b/packages/light/src/MailboxEmptyIcon.tsx new file mode 100644 index 0000000..92df01a --- /dev/null +++ b/packages/light/src/MailboxEmptyIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MailboxEmptyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MailboxEmptyIcon; diff --git a/packages/light/src/MailboxFullIcon.tsx b/packages/light/src/MailboxFullIcon.tsx new file mode 100644 index 0000000..5d54d99 --- /dev/null +++ b/packages/light/src/MailboxFullIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MailboxFullIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MailboxFullIcon; diff --git a/packages/light/src/MarkerIcon.tsx b/packages/light/src/MarkerIcon.tsx new file mode 100644 index 0000000..a5e143b --- /dev/null +++ b/packages/light/src/MarkerIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MarkerIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MarkerIcon; diff --git a/packages/light/src/MegaphoneIcon.tsx b/packages/light/src/MegaphoneIcon.tsx new file mode 100644 index 0000000..58244a5 --- /dev/null +++ b/packages/light/src/MegaphoneIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MegaphoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MegaphoneIcon; diff --git a/packages/light/src/MinusIcon.tsx b/packages/light/src/MinusIcon.tsx new file mode 100644 index 0000000..5489f3b --- /dev/null +++ b/packages/light/src/MinusIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MinusIcon; diff --git a/packages/light/src/MonetizeIcon.tsx b/packages/light/src/MonetizeIcon.tsx new file mode 100644 index 0000000..c89aa10 --- /dev/null +++ b/packages/light/src/MonetizeIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MonetizeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MonetizeIcon; diff --git a/packages/light/src/NewWindowPageIcon.tsx b/packages/light/src/NewWindowPageIcon.tsx new file mode 100644 index 0000000..754dcd2 --- /dev/null +++ b/packages/light/src/NewWindowPageIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const NewWindowPageIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default NewWindowPageIcon; diff --git a/packages/light/src/NotebookIcon.tsx b/packages/light/src/NotebookIcon.tsx new file mode 100644 index 0000000..439b55c --- /dev/null +++ b/packages/light/src/NotebookIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const NotebookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default NotebookIcon; diff --git a/packages/light/src/OutboxIcon.tsx b/packages/light/src/OutboxIcon.tsx new file mode 100644 index 0000000..4a68a90 --- /dev/null +++ b/packages/light/src/OutboxIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const OutboxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default OutboxIcon; diff --git a/packages/light/src/PackIcon.tsx b/packages/light/src/PackIcon.tsx new file mode 100644 index 0000000..c241c7e --- /dev/null +++ b/packages/light/src/PackIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PackIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PackIcon; diff --git a/packages/light/src/PaperplaneIcon.tsx b/packages/light/src/PaperplaneIcon.tsx new file mode 100644 index 0000000..adfcb1c --- /dev/null +++ b/packages/light/src/PaperplaneIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PaperplaneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PaperplaneIcon; diff --git a/packages/light/src/PauseIcon.tsx b/packages/light/src/PauseIcon.tsx new file mode 100644 index 0000000..644acd8 --- /dev/null +++ b/packages/light/src/PauseIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PauseIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PauseIcon; diff --git a/packages/light/src/PaymentLinkIcon.tsx b/packages/light/src/PaymentLinkIcon.tsx new file mode 100644 index 0000000..108d0a1 --- /dev/null +++ b/packages/light/src/PaymentLinkIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PaymentLinkIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PaymentLinkIcon; diff --git a/packages/light/src/PencilIcon.tsx b/packages/light/src/PencilIcon.tsx new file mode 100644 index 0000000..00dd81d --- /dev/null +++ b/packages/light/src/PencilIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PencilIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PencilIcon; diff --git a/packages/light/src/PeopleGroupIcon.tsx b/packages/light/src/PeopleGroupIcon.tsx new file mode 100644 index 0000000..7e076db --- /dev/null +++ b/packages/light/src/PeopleGroupIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PeopleGroupIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PeopleGroupIcon; diff --git a/packages/light/src/PercentIcon.tsx b/packages/light/src/PercentIcon.tsx new file mode 100644 index 0000000..85de71b --- /dev/null +++ b/packages/light/src/PercentIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PercentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PercentIcon; diff --git a/packages/light/src/PersonIcon.tsx b/packages/light/src/PersonIcon.tsx new file mode 100644 index 0000000..c232f74 --- /dev/null +++ b/packages/light/src/PersonIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PersonIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PersonIcon; diff --git a/packages/light/src/PinLocationIcon.tsx b/packages/light/src/PinLocationIcon.tsx new file mode 100644 index 0000000..0df66f8 --- /dev/null +++ b/packages/light/src/PinLocationIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PinLocationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PinLocationIcon; diff --git a/packages/light/src/PinPlaceIcon.tsx b/packages/light/src/PinPlaceIcon.tsx new file mode 100644 index 0000000..817c83f --- /dev/null +++ b/packages/light/src/PinPlaceIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PinPlaceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PinPlaceIcon; diff --git a/packages/light/src/PixIcon.tsx b/packages/light/src/PixIcon.tsx new file mode 100644 index 0000000..3c69892 --- /dev/null +++ b/packages/light/src/PixIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PixIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PixIcon; diff --git a/packages/light/src/PlanIcon.tsx b/packages/light/src/PlanIcon.tsx new file mode 100644 index 0000000..70fa6b4 --- /dev/null +++ b/packages/light/src/PlanIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PlanIcon; diff --git a/packages/light/src/PlayIcon.tsx b/packages/light/src/PlayIcon.tsx new file mode 100644 index 0000000..6dc80ab --- /dev/null +++ b/packages/light/src/PlayIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlayIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PlayIcon; diff --git a/packages/light/src/PlusIcon.tsx b/packages/light/src/PlusIcon.tsx new file mode 100644 index 0000000..5ef3a14 --- /dev/null +++ b/packages/light/src/PlusIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PlusIcon; diff --git a/packages/light/src/PrivateContentIcon.tsx b/packages/light/src/PrivateContentIcon.tsx new file mode 100644 index 0000000..33568fa --- /dev/null +++ b/packages/light/src/PrivateContentIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PrivateContentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default PrivateContentIcon; diff --git a/packages/light/src/QrCodeIcon.tsx b/packages/light/src/QrCodeIcon.tsx new file mode 100644 index 0000000..4309559 --- /dev/null +++ b/packages/light/src/QrCodeIcon.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const QrCodeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default QrCodeIcon; diff --git a/packages/light/src/QuestionIcon.tsx b/packages/light/src/QuestionIcon.tsx new file mode 100644 index 0000000..dd27cae --- /dev/null +++ b/packages/light/src/QuestionIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const QuestionIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default QuestionIcon; diff --git a/packages/light/src/RacketBallIcon.tsx b/packages/light/src/RacketBallIcon.tsx new file mode 100644 index 0000000..82dc29a --- /dev/null +++ b/packages/light/src/RacketBallIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RacketBallIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default RacketBallIcon; diff --git a/packages/light/src/RacketIcon.tsx b/packages/light/src/RacketIcon.tsx new file mode 100644 index 0000000..6198837 --- /dev/null +++ b/packages/light/src/RacketIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RacketIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default RacketIcon; diff --git a/packages/light/src/RadarIcon.tsx b/packages/light/src/RadarIcon.tsx new file mode 100644 index 0000000..65a92b5 --- /dev/null +++ b/packages/light/src/RadarIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RadarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default RadarIcon; diff --git a/packages/light/src/ScrewNutIcon.tsx b/packages/light/src/ScrewNutIcon.tsx new file mode 100644 index 0000000..2464c0b --- /dev/null +++ b/packages/light/src/ScrewNutIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ScrewNutIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ScrewNutIcon; diff --git a/packages/light/src/SearchBoxIcon.tsx b/packages/light/src/SearchBoxIcon.tsx new file mode 100644 index 0000000..6178542 --- /dev/null +++ b/packages/light/src/SearchBoxIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchBoxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default SearchBoxIcon; diff --git a/packages/light/src/SearchIcon.tsx b/packages/light/src/SearchIcon.tsx new file mode 100644 index 0000000..ec846dc --- /dev/null +++ b/packages/light/src/SearchIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SearchIcon; diff --git a/packages/light/src/SearchSplitIcon.tsx b/packages/light/src/SearchSplitIcon.tsx new file mode 100644 index 0000000..8c8b76f --- /dev/null +++ b/packages/light/src/SearchSplitIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchSplitIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SearchSplitIcon; diff --git a/packages/light/src/SensitiveIcon.tsx b/packages/light/src/SensitiveIcon.tsx new file mode 100644 index 0000000..b4a3db0 --- /dev/null +++ b/packages/light/src/SensitiveIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SensitiveIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SensitiveIcon; diff --git a/packages/light/src/ShareIcon.tsx b/packages/light/src/ShareIcon.tsx new file mode 100644 index 0000000..ca2562f --- /dev/null +++ b/packages/light/src/ShareIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShareIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShareIcon; diff --git a/packages/light/src/ShieldCheckIcon.tsx b/packages/light/src/ShieldCheckIcon.tsx new file mode 100644 index 0000000..cbcac06 --- /dev/null +++ b/packages/light/src/ShieldCheckIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShieldCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ShieldCheckIcon; diff --git a/packages/light/src/ShieldIcon.tsx b/packages/light/src/ShieldIcon.tsx new file mode 100644 index 0000000..c720862 --- /dev/null +++ b/packages/light/src/ShieldIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShieldIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShieldIcon; diff --git a/packages/light/src/ShieldUserIcon.tsx b/packages/light/src/ShieldUserIcon.tsx new file mode 100644 index 0000000..68748e2 --- /dev/null +++ b/packages/light/src/ShieldUserIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShieldUserIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ShieldUserIcon; diff --git a/packages/light/src/ShrinkDiagonalIcon.tsx b/packages/light/src/ShrinkDiagonalIcon.tsx new file mode 100644 index 0000000..f456161 --- /dev/null +++ b/packages/light/src/ShrinkDiagonalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShrinkDiagonalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShrinkDiagonalIcon; diff --git a/packages/light/src/ShrinkVerticalIcon.tsx b/packages/light/src/ShrinkVerticalIcon.tsx new file mode 100644 index 0000000..9fd681a --- /dev/null +++ b/packages/light/src/ShrinkVerticalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShrinkVerticalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShrinkVerticalIcon; diff --git a/packages/light/src/SidePeekIcon.tsx b/packages/light/src/SidePeekIcon.tsx new file mode 100644 index 0000000..76e1d74 --- /dev/null +++ b/packages/light/src/SidePeekIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SidePeekIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SidePeekIcon; diff --git a/packages/light/src/SigninAltIcon.tsx b/packages/light/src/SigninAltIcon.tsx new file mode 100644 index 0000000..5ddf576 --- /dev/null +++ b/packages/light/src/SigninAltIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SigninAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SigninAltIcon; diff --git a/packages/light/src/SigninIcon.tsx b/packages/light/src/SigninIcon.tsx new file mode 100644 index 0000000..623f106 --- /dev/null +++ b/packages/light/src/SigninIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SigninIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SigninIcon; diff --git a/packages/light/src/SignoutAltIcon.tsx b/packages/light/src/SignoutAltIcon.tsx new file mode 100644 index 0000000..f7c57f1 --- /dev/null +++ b/packages/light/src/SignoutAltIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SignoutAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SignoutAltIcon; diff --git a/packages/light/src/SignoutIcon.tsx b/packages/light/src/SignoutIcon.tsx new file mode 100644 index 0000000..6a098b0 --- /dev/null +++ b/packages/light/src/SignoutIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SignoutIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SignoutIcon; diff --git a/packages/light/src/SlidersHIcon.tsx b/packages/light/src/SlidersHIcon.tsx new file mode 100644 index 0000000..a3c6d4e --- /dev/null +++ b/packages/light/src/SlidersHIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SlidersHIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SlidersHIcon; diff --git a/packages/light/src/SlidersVIcon.tsx b/packages/light/src/SlidersVIcon.tsx new file mode 100644 index 0000000..8d5a480 --- /dev/null +++ b/packages/light/src/SlidersVIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SlidersVIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SlidersVIcon; diff --git a/packages/light/src/SmartphoneIcon.tsx b/packages/light/src/SmartphoneIcon.tsx new file mode 100644 index 0000000..a0eb541 --- /dev/null +++ b/packages/light/src/SmartphoneIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SmartphoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SmartphoneIcon; diff --git a/packages/light/src/SocialFacebookIcon.tsx b/packages/light/src/SocialFacebookIcon.tsx new file mode 100644 index 0000000..0219952 --- /dev/null +++ b/packages/light/src/SocialFacebookIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialFacebookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialFacebookIcon; diff --git a/packages/light/src/SocialTwitterIcon.tsx b/packages/light/src/SocialTwitterIcon.tsx new file mode 100644 index 0000000..08056d4 --- /dev/null +++ b/packages/light/src/SocialTwitterIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialTwitterIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialTwitterIcon; diff --git a/packages/light/src/SocialUnsplashIcon.tsx b/packages/light/src/SocialUnsplashIcon.tsx new file mode 100644 index 0000000..860beb2 --- /dev/null +++ b/packages/light/src/SocialUnsplashIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialUnsplashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialUnsplashIcon; diff --git a/packages/light/src/SocialWhatsappIcon.tsx b/packages/light/src/SocialWhatsappIcon.tsx new file mode 100644 index 0000000..1e61a6a --- /dev/null +++ b/packages/light/src/SocialWhatsappIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialWhatsappIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SocialWhatsappIcon; diff --git a/packages/light/src/SquareCheckIcon.tsx b/packages/light/src/SquareCheckIcon.tsx new file mode 100644 index 0000000..d3bb43d --- /dev/null +++ b/packages/light/src/SquareCheckIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SquareCheckIcon; diff --git a/packages/light/src/SquareIcon.tsx b/packages/light/src/SquareIcon.tsx new file mode 100644 index 0000000..4242d28 --- /dev/null +++ b/packages/light/src/SquareIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SquareIcon; diff --git a/packages/light/src/SquareMinusIcon.tsx b/packages/light/src/SquareMinusIcon.tsx new file mode 100644 index 0000000..328cf7f --- /dev/null +++ b/packages/light/src/SquareMinusIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SquareMinusIcon; diff --git a/packages/light/src/StarIcon.tsx b/packages/light/src/StarIcon.tsx new file mode 100644 index 0000000..047a8d0 --- /dev/null +++ b/packages/light/src/StarIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const StarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default StarIcon; diff --git a/packages/light/src/StarsIcon.tsx b/packages/light/src/StarsIcon.tsx new file mode 100644 index 0000000..0be10f1 --- /dev/null +++ b/packages/light/src/StarsIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const StarsIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default StarsIcon; diff --git a/packages/light/src/TabletIcon.tsx b/packages/light/src/TabletIcon.tsx new file mode 100644 index 0000000..b5194d5 --- /dev/null +++ b/packages/light/src/TabletIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TabletIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TabletIcon; diff --git a/packages/light/src/TargetIcon.tsx b/packages/light/src/TargetIcon.tsx new file mode 100644 index 0000000..bcf23c9 --- /dev/null +++ b/packages/light/src/TargetIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TargetIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TargetIcon; diff --git a/packages/light/src/ThumbDownIcon.tsx b/packages/light/src/ThumbDownIcon.tsx new file mode 100644 index 0000000..850e707 --- /dev/null +++ b/packages/light/src/ThumbDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ThumbDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ThumbDownIcon; diff --git a/packages/light/src/ThumbUpIcon.tsx b/packages/light/src/ThumbUpIcon.tsx new file mode 100644 index 0000000..a13d663 --- /dev/null +++ b/packages/light/src/ThumbUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ThumbUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ThumbUpIcon; diff --git a/packages/light/src/TimesCircleIcon.tsx b/packages/light/src/TimesCircleIcon.tsx new file mode 100644 index 0000000..8e2442a --- /dev/null +++ b/packages/light/src/TimesCircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TimesCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TimesCircleIcon; diff --git a/packages/light/src/TimesIcon.tsx b/packages/light/src/TimesIcon.tsx new file mode 100644 index 0000000..64e8a09 --- /dev/null +++ b/packages/light/src/TimesIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TimesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TimesIcon; diff --git a/packages/light/src/TrashCanIcon.tsx b/packages/light/src/TrashCanIcon.tsx new file mode 100644 index 0000000..c1e2e14 --- /dev/null +++ b/packages/light/src/TrashCanIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrashCanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TrashCanIcon; diff --git a/packages/light/src/TrendArrowDownIcon.tsx b/packages/light/src/TrendArrowDownIcon.tsx new file mode 100644 index 0000000..fdf0e44 --- /dev/null +++ b/packages/light/src/TrendArrowDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrendArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TrendArrowDownIcon; diff --git a/packages/light/src/TrendArrowUpIcon.tsx b/packages/light/src/TrendArrowUpIcon.tsx new file mode 100644 index 0000000..1d952b1 --- /dev/null +++ b/packages/light/src/TrendArrowUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrendArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TrendArrowUpIcon; diff --git a/packages/light/src/TrophyIcon.tsx b/packages/light/src/TrophyIcon.tsx new file mode 100644 index 0000000..66114ad --- /dev/null +++ b/packages/light/src/TrophyIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrophyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TrophyIcon; diff --git a/packages/light/src/UserArrowDownIcon.tsx b/packages/light/src/UserArrowDownIcon.tsx new file mode 100644 index 0000000..b4d4567 --- /dev/null +++ b/packages/light/src/UserArrowDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserArrowDownIcon; diff --git a/packages/light/src/UserAtIcon.tsx b/packages/light/src/UserAtIcon.tsx new file mode 100644 index 0000000..a79ac02 --- /dev/null +++ b/packages/light/src/UserAtIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserAtIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserAtIcon; diff --git a/packages/light/src/UserAvatarIcon.tsx b/packages/light/src/UserAvatarIcon.tsx new file mode 100644 index 0000000..0387c04 --- /dev/null +++ b/packages/light/src/UserAvatarIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserAvatarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserAvatarIcon; diff --git a/packages/light/src/UserCheckIcon.tsx b/packages/light/src/UserCheckIcon.tsx new file mode 100644 index 0000000..b962474 --- /dev/null +++ b/packages/light/src/UserCheckIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserCheckIcon; diff --git a/packages/light/src/UserClockIcon.tsx b/packages/light/src/UserClockIcon.tsx new file mode 100644 index 0000000..f6cefd7 --- /dev/null +++ b/packages/light/src/UserClockIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserClockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserClockIcon; diff --git a/packages/light/src/UserCogIcon.tsx b/packages/light/src/UserCogIcon.tsx new file mode 100644 index 0000000..552bece --- /dev/null +++ b/packages/light/src/UserCogIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserCogIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserCogIcon; diff --git a/packages/light/src/UserDollarIcon.tsx b/packages/light/src/UserDollarIcon.tsx new file mode 100644 index 0000000..87eef0d --- /dev/null +++ b/packages/light/src/UserDollarIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserDollarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserDollarIcon; diff --git a/packages/light/src/UserEnvelopeIcon.tsx b/packages/light/src/UserEnvelopeIcon.tsx new file mode 100644 index 0000000..89f3231 --- /dev/null +++ b/packages/light/src/UserEnvelopeIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserEnvelopeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserEnvelopeIcon; diff --git a/packages/light/src/UserGroupIcon.tsx b/packages/light/src/UserGroupIcon.tsx new file mode 100644 index 0000000..2771e27 --- /dev/null +++ b/packages/light/src/UserGroupIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserGroupIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserGroupIcon; diff --git a/packages/light/src/UserHeartIcon.tsx b/packages/light/src/UserHeartIcon.tsx new file mode 100644 index 0000000..b906472 --- /dev/null +++ b/packages/light/src/UserHeartIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserHeartIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserHeartIcon; diff --git a/packages/light/src/UserIdIcon.tsx b/packages/light/src/UserIdIcon.tsx new file mode 100644 index 0000000..5ec1757 --- /dev/null +++ b/packages/light/src/UserIdIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserIdIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserIdIcon; diff --git a/packages/light/src/UserShieldIcon.tsx b/packages/light/src/UserShieldIcon.tsx new file mode 100644 index 0000000..705b68e --- /dev/null +++ b/packages/light/src/UserShieldIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserShieldIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserShieldIcon; diff --git a/packages/light/src/UsersCrownIcon.tsx b/packages/light/src/UsersCrownIcon.tsx new file mode 100644 index 0000000..f2c8371 --- /dev/null +++ b/packages/light/src/UsersCrownIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UsersCrownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UsersCrownIcon; diff --git a/packages/light/src/VaultIcon.tsx b/packages/light/src/VaultIcon.tsx new file mode 100644 index 0000000..7f17afa --- /dev/null +++ b/packages/light/src/VaultIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const VaultIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default VaultIcon; diff --git a/packages/light/src/WalletIcon.tsx b/packages/light/src/WalletIcon.tsx new file mode 100644 index 0000000..2980da5 --- /dev/null +++ b/packages/light/src/WalletIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const WalletIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default WalletIcon; diff --git a/packages/light/src/WandIcon.tsx b/packages/light/src/WandIcon.tsx new file mode 100644 index 0000000..00c4e81 --- /dev/null +++ b/packages/light/src/WandIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const WandIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default WandIcon; diff --git a/packages/light/src/index.tsx b/packages/light/src/index.tsx new file mode 100644 index 0000000..3f4bb40 --- /dev/null +++ b/packages/light/src/index.tsx @@ -0,0 +1,215 @@ +export { default as FeedIcon } from './FeedIcon'; +export { default as CompassIcon } from './CompassIcon'; +export { default as SearchIcon } from './SearchIcon'; +export { default as SearchSplitIcon } from './SearchSplitIcon'; +export { default as LastUpdatesIcon } from './LastUpdatesIcon'; +export { default as SearchBoxIcon } from './SearchBoxIcon'; +export { default as BellIcon } from './BellIcon'; +export { default as MonetizeIcon } from './MonetizeIcon'; +export { default as TargetIcon } from './TargetIcon'; +export { default as UserAvatarIcon } from './UserAvatarIcon'; +export { default as AtSymbolIcon } from './AtSymbolIcon'; +export { default as InfoCircleIcon } from './InfoCircleIcon'; +export { default as QuestionIcon } from './QuestionIcon'; +export { default as ExclamationTriangleIcon } from './ExclamationTriangleIcon'; +export { default as ExclamationCircleIcon } from './ExclamationCircleIcon'; +export { default as ExclamationAlertIcon } from './ExclamationAlertIcon'; +export { default as ExplicitContentIcon } from './ExplicitContentIcon'; +export { default as TrashCanIcon } from './TrashCanIcon'; +export { default as PencilIcon } from './PencilIcon'; +export { default as CheckIcon } from './CheckIcon'; +export { default as CopyIcon } from './CopyIcon'; +export { default as EyeOpenedIcon } from './EyeOpenedIcon'; +export { default as EyeClosedIcon } from './EyeClosedIcon'; +export { default as CheckCircleIcon } from './CheckCircleIcon'; +export { default as ImageIcon } from './ImageIcon'; +export { default as ImageOpenIcon } from './ImageOpenIcon'; +export { default as ImageArrowUpIcon } from './ImageArrowUpIcon'; +export { default as ImageArrowDownIcon } from './ImageArrowDownIcon'; +export { default as ImageSearchIcon } from './ImageSearchIcon'; +export { default as ImageTimesIcon } from './ImageTimesIcon'; +export { default as ImageSwitchIcon } from './ImageSwitchIcon'; +export { default as ImageTrashIcon } from './ImageTrashIcon'; +export { default as ImageMinusIcon } from './ImageMinusIcon'; +export { default as ImageBanIcon } from './ImageBanIcon'; +export { default as ImagePlusIcon } from './ImagePlusIcon'; +export { default as ImageExclamationIcon } from './ImageExclamationIcon'; +export { default as LightBulbIcon } from './LightBulbIcon'; +export { default as LightBulbExclamationIcon } from './LightBulbExclamationIcon'; +export { default as CloudIcon } from './CloudIcon'; +export { default as CloudCheckIcon } from './CloudCheckIcon'; +export { default as CloudPlusIcon } from './CloudPlusIcon'; +export { default as CloudMinusIcon } from './CloudMinusIcon'; +export { default as CloudArrowUpIcon } from './CloudArrowUpIcon'; +export { default as CloudArrowDownIcon } from './CloudArrowDownIcon'; +export { default as PersonIcon } from './PersonIcon'; +export { default as PeopleGroupIcon } from './PeopleGroupIcon'; +export { default as UserIdIcon } from './UserIdIcon'; +export { default as UserCogIcon } from './UserCogIcon'; +export { default as UserShieldIcon } from './UserShieldIcon'; +export { default as UserAtIcon } from './UserAtIcon'; +export { default as LocationIcon } from './LocationIcon'; +export { default as UserHeartIcon } from './UserHeartIcon'; +export { default as UserEnvelopeIcon } from './UserEnvelopeIcon'; +export { default as UserArrowDownIcon } from './UserArrowDownIcon'; +export { default as UserClockIcon } from './UserClockIcon'; +export { default as UserDollarIcon } from './UserDollarIcon'; +export { default as UserCheckIcon } from './UserCheckIcon'; +export { default as UserGroupIcon } from './UserGroupIcon'; +export { default as DollarSignIcon } from './DollarSignIcon'; +export { default as CreditCardIcon } from './CreditCardIcon'; +export { default as PaymentLinkIcon } from './PaymentLinkIcon'; +export { default as LockClosedIcon } from './LockClosedIcon'; +export { default as LockOpenedIcon } from './LockOpenedIcon'; +export { default as SigninIcon } from './SigninIcon'; +export { default as SignoutIcon } from './SignoutIcon'; +export { default as SigninAltIcon } from './SigninAltIcon'; +export { default as SignoutAltIcon } from './SignoutAltIcon'; +export { default as PlanIcon } from './PlanIcon'; +export { default as InvoiceIcon } from './InvoiceIcon'; +export { default as VaultIcon } from './VaultIcon'; +export { default as WalletIcon } from './WalletIcon'; +export { default as ShieldIcon } from './ShieldIcon'; +export { default as ShieldUserIcon } from './ShieldUserIcon'; +export { default as ShieldCheckIcon } from './ShieldCheckIcon'; +export { default as NewWindowPageIcon } from './NewWindowPageIcon'; +export { default as ScrewNutIcon } from './ScrewNutIcon'; +export { default as SlidersHIcon } from './SlidersHIcon'; +export { default as SlidersVIcon } from './SlidersVIcon'; +export { default as CogIcon } from './CogIcon'; +export { default as IntegrationsIcon } from './IntegrationsIcon'; +export { default as BurgerClassicIcon } from './BurgerClassicIcon'; +export { default as BurgerArrowRightIcon } from './BurgerArrowRightIcon'; +export { default as BurgerArrowLeftIcon } from './BurgerArrowLeftIcon'; +export { default as HomeIcon } from './HomeIcon'; +export { default as LifeRingIcon } from './LifeRingIcon'; +export { default as ClockIcon } from './ClockIcon'; +export { default as DashboardIcon } from './DashboardIcon'; +export { default as ChartPieIcon } from './ChartPieIcon'; +export { default as UsersCrownIcon } from './UsersCrownIcon'; +export { default as CreatorsClubIcon } from './CreatorsClubIcon'; +export { default as StarIcon } from './StarIcon'; +export { default as StarsIcon } from './StarsIcon'; +export { default as WandIcon } from './WandIcon'; +export { default as ThumbUpIcon } from './ThumbUpIcon'; +export { default as ThumbDownIcon } from './ThumbDownIcon'; +export { default as HeartIcon } from './HeartIcon'; +export { default as EngagementIcon } from './EngagementIcon'; +export { default as CrownIcon } from './CrownIcon'; +export { default as AngleRightIcon } from './AngleRightIcon'; +export { default as AngleLeftIcon } from './AngleLeftIcon'; +export { default as AngleUpIcon } from './AngleUpIcon'; +export { default as AngleDownIcon } from './AngleDownIcon'; +export { default as ChevronRightIcon } from './ChevronRightIcon'; +export { default as ChevronUpIcon } from './ChevronUpIcon'; +export { default as ChevronDownIcon } from './ChevronDownIcon'; +export { default as ChevronLeftIcon } from './ChevronLeftIcon'; +export { default as CaretRightIcon } from './CaretRightIcon'; +export { default as CaretLeftIcon } from './CaretLeftIcon'; +export { default as CaretUpIcon } from './CaretUpIcon'; +export { default as CaretDownIcon } from './CaretDownIcon'; +export { default as ArrowRightIcon } from './ArrowRightIcon'; +export { default as ArrowLeftIcon } from './ArrowLeftIcon'; +export { default as ArrowUpIcon } from './ArrowUpIcon'; +export { default as ArrowDownIcon } from './ArrowDownIcon'; +export { default as ArrowRightLargeIcon } from './ArrowRightLargeIcon'; +export { default as ArrowLeftLargeIcon } from './ArrowLeftLargeIcon'; +export { default as ArrowUpLargeIcon } from './ArrowUpLargeIcon'; +export { default as ArrowDownLargeIcon } from './ArrowDownLargeIcon'; +export { default as ArrowRetryIcon } from './ArrowRetryIcon'; +export { default as ArrowsSwitchIcon } from './ArrowsSwitchIcon'; +export { default as GlobeTimezoneIcon } from './GlobeTimezoneIcon'; +export { default as PinLocationIcon } from './PinLocationIcon'; +export { default as PinPlaceIcon } from './PinPlaceIcon'; +export { default as PrivateContentIcon } from './PrivateContentIcon'; +export { default as SensitiveIcon } from './SensitiveIcon'; +export { default as TimesCircleIcon } from './TimesCircleIcon'; +export { default as TrophyIcon } from './TrophyIcon'; +export { default as RadarIcon } from './RadarIcon'; +export { default as SquareIcon } from './SquareIcon'; +export { default as SquareMinusIcon } from './SquareMinusIcon'; +export { default as SquareCheckIcon } from './SquareCheckIcon'; +export { default as CircleIcon } from './CircleIcon'; +export { default as CircleDotIcon } from './CircleDotIcon'; +export { default as AsteriskIcon } from './AsteriskIcon'; +export { default as EnvelopeIcon } from './EnvelopeIcon'; +export { default as EnvelopeFlyingIcon } from './EnvelopeFlyingIcon'; +export { default as EnvelopeAtIcon } from './EnvelopeAtIcon'; +export { default as LinkIcon } from './LinkIcon'; +export { default as PaperplaneIcon } from './PaperplaneIcon'; +export { default as OutboxIcon } from './OutboxIcon'; +export { default as InboxIcon } from './InboxIcon'; +export { default as MailboxEmptyIcon } from './MailboxEmptyIcon'; +export { default as MailboxFullIcon } from './MailboxFullIcon'; +export { default as TrendArrowUpIcon } from './TrendArrowUpIcon'; +export { default as TrendArrowDownIcon } from './TrendArrowDownIcon'; +export { default as CalendarIcon } from './CalendarIcon'; +export { default as CalendarNineIcon } from './CalendarNineIcon'; +export { default as CalendarEndIcon } from './CalendarEndIcon'; +export { default as CalendarStarIcon } from './CalendarStarIcon'; +export { default as DomainIcon } from './DomainIcon'; +export { default as HeadphonesIcon } from './HeadphonesIcon'; +export { default as BadgeVerifiedIcon } from './BadgeVerifiedIcon'; +export { default as BadgeDollarIcon } from './BadgeDollarIcon'; +export { default as PlayIcon } from './PlayIcon'; +export { default as PauseIcon } from './PauseIcon'; +export { default as TimesIcon } from './TimesIcon'; +export { default as PlusIcon } from './PlusIcon'; +export { default as MinusIcon } from './MinusIcon'; +export { default as EqualIcon } from './EqualIcon'; +export { default as DivideIcon } from './DivideIcon'; +export { default as PercentIcon } from './PercentIcon'; +export { default as HashIcon } from './HashIcon'; +export { default as ExpandVerticalIcon } from './ExpandVerticalIcon'; +export { default as ShrinkVerticalIcon } from './ShrinkVerticalIcon'; +export { default as ExpandDiagonalIcon } from './ExpandDiagonalIcon'; +export { default as ShrinkDiagonalIcon } from './ShrinkDiagonalIcon'; +export { default as ChartTrendUpIcon } from './ChartTrendUpIcon'; +export { default as ChartTrendDownIcon } from './ChartTrendDownIcon'; +export { default as CursorArrowIcon } from './CursorArrowIcon'; +export { default as MegaphoneIcon } from './MegaphoneIcon'; +export { default as SmartphoneIcon } from './SmartphoneIcon'; +export { default as TabletIcon } from './TabletIcon'; +export { default as NotebookIcon } from './NotebookIcon'; +export { default as DesktopIcon } from './DesktopIcon'; +export { default as DesktopCheckIcon } from './DesktopCheckIcon'; +export { default as PackIcon } from './PackIcon'; +export { default as BalanceIcon } from './BalanceIcon'; +export { default as BillingInfoIcon } from './BillingInfoIcon'; +export { default as InfinityIcon } from './InfinityIcon'; +export { default as RacketIcon } from './RacketIcon'; +export { default as RacketBallIcon } from './RacketBallIcon'; +export { default as FilterIcon } from './FilterIcon'; +export { default as ArticleIcon } from './ArticleIcon'; +export { default as EspiralBookIcon } from './EspiralBookIcon'; +export { default as GoogleDriveIcon } from './GoogleDriveIcon'; +export { default as EmojiPissedOffIcon } from './EmojiPissedOffIcon'; +export { default as EllipsisVIcon } from './EllipsisVIcon'; +export { default as EllipsisHIcon } from './EllipsisHIcon'; +export { default as SocialTwitterIcon } from './SocialTwitterIcon'; +export { default as SocialWhatsappIcon } from './SocialWhatsappIcon'; +export { default as SocialFacebookIcon } from './SocialFacebookIcon'; +export { default as FolderIcon } from './FolderIcon'; +export { default as FolderMultipleIcon } from './FolderMultipleIcon'; +export { default as FolderAltIcon } from './FolderAltIcon'; +export { default as FolderRefreshIcon } from './FolderRefreshIcon'; +export { default as FolderLockIcon } from './FolderLockIcon'; +export { default as FolderSearchIcon } from './FolderSearchIcon'; +export { default as FolderPlusIcon } from './FolderPlusIcon'; +export { default as FolderArrowLeftIcon } from './FolderArrowLeftIcon'; +export { default as FolderArrowUpIcon } from './FolderArrowUpIcon'; +export { default as FolderArrowDownIcon } from './FolderArrowDownIcon'; +export { default as FolderArrowRightIcon } from './FolderArrowRightIcon'; +export { default as ArticleAltIcon } from './ArticleAltIcon'; +export { default as ArticlePlusIcon } from './ArticlePlusIcon'; +export { default as ShareIcon } from './ShareIcon'; +export { default as SocialUnsplashIcon } from './SocialUnsplashIcon'; +export { default as GifIcon } from './GifIcon'; +export { default as QrCodeIcon } from './QrCodeIcon'; +export { default as SidePeekIcon } from './SidePeekIcon'; +export { default as GlobeIcon } from './GlobeIcon'; +export { default as PixIcon } from './PixIcon'; +export { default as DataTextIcon } from './DataTextIcon'; +export { default as DataBooleanIcon } from './DataBooleanIcon'; +export { default as DataNumbersIcon } from './DataNumbersIcon'; +export { default as MarkerIcon } from './MarkerIcon'; diff --git a/packages/light/src/types.tsx b/packages/light/src/types.tsx new file mode 100644 index 0000000..82bd33c --- /dev/null +++ b/packages/light/src/types.tsx @@ -0,0 +1,6 @@ +import * as React from 'react'; + +export interface IconProps extends React.SVGAttributes { + children?: never; + color?: string; +} \ No newline at end of file diff --git a/packages/regular/package.json b/packages/regular/package.json new file mode 100644 index 0000000..29fcc33 --- /dev/null +++ b/packages/regular/package.json @@ -0,0 +1,34 @@ +{ + "name": "@stash-ui/regular-icons", + "private": false, + "version": "1.0.0", + "license": "MIT", + "description": "React Regular Icons Set", + "authors": [ + "Tiago Gerken ", + "Pedro Ladeira " + ], + "module": "dist/regular-icons.esm.js", + "main": "index.js", + "types": "dist/index.d.ts", + "files": [ + "index.js", + "manifest.json" + ], + "publishConfig": { + "access": "public" + }, + "scripts": { + "generate-src": "generate-icons --file=X5DiJzGRQXCyEfBqocT235 --style=regular", + "build": "rimraf dist && tsdx build --format es,cjs --entry src/index.tsx", + "watch": "rimraf dist && tsdx watch --format es,cjs --entry src/index.tsx", + "prepublishOnly": "npm run build" + }, + "peerDependencies": { + "react": "^16.x || ^17.x || ^18.x" + }, + "devDependencies": { + "tsdx": "0.14.0", + "@stash-ui/generate-from-figma": "*" + } + } \ No newline at end of file diff --git a/packages/regular/readme.md b/packages/regular/readme.md new file mode 100644 index 0000000..2dbb2f3 --- /dev/null +++ b/packages/regular/readme.md @@ -0,0 +1,54 @@ +
@stash-ui/regular-icons
+
Solid icons variation.
+
+
+Website + · +GitHub + · +Figma + · +Discord +
+ +## Install + +Install the set of regular icons from your command line. + +#### With yarn + +```sh +yarn add @stash-ui/regular-icons +``` + +#### With npm + +```sh +npm install @stash-ui/regular-icons +``` + +## Getting started + +Add the SVG icon to your application. Include color where needed. + +```jsx +import { AngleDownIcon, AngleUpIcon } from '@stash-ui/regular-icons'; + +const App = () => { + return ( + + + ); +}; +``` + +## Authors + +- Tiago Gerken ([@tgerken](https://twitter.com/tgerken)) - [Pingback](https://pingback.com) +- Pedro Ladeira ([@pedrooladeira](https://twitter.com/pedrooladeira)) - [Pingback](https://pingback.com) + +## License + +Licensed under the MIT License, Copyright © 2022-present Pingback LLC. + +See [LICENSE](./LICENSE) for more information. diff --git a/packages/regular/src/AngleDownIcon.tsx b/packages/regular/src/AngleDownIcon.tsx new file mode 100644 index 0000000..a77ccf0 --- /dev/null +++ b/packages/regular/src/AngleDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleDownIcon; diff --git a/packages/regular/src/AngleLeftIcon.tsx b/packages/regular/src/AngleLeftIcon.tsx new file mode 100644 index 0000000..3dd5737 --- /dev/null +++ b/packages/regular/src/AngleLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleLeftIcon; diff --git a/packages/regular/src/AngleRightIcon.tsx b/packages/regular/src/AngleRightIcon.tsx new file mode 100644 index 0000000..dddb5a8 --- /dev/null +++ b/packages/regular/src/AngleRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleRightIcon; diff --git a/packages/regular/src/AngleUpIcon.tsx b/packages/regular/src/AngleUpIcon.tsx new file mode 100644 index 0000000..07a6e0c --- /dev/null +++ b/packages/regular/src/AngleUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AngleUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AngleUpIcon; diff --git a/packages/regular/src/ArrowDownIcon.tsx b/packages/regular/src/ArrowDownIcon.tsx new file mode 100644 index 0000000..541374c --- /dev/null +++ b/packages/regular/src/ArrowDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowDownIcon; diff --git a/packages/regular/src/ArrowDownLargeIcon.tsx b/packages/regular/src/ArrowDownLargeIcon.tsx new file mode 100644 index 0000000..20154d5 --- /dev/null +++ b/packages/regular/src/ArrowDownLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowDownLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowDownLargeIcon; diff --git a/packages/regular/src/ArrowLeftIcon.tsx b/packages/regular/src/ArrowLeftIcon.tsx new file mode 100644 index 0000000..78f728b --- /dev/null +++ b/packages/regular/src/ArrowLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowLeftIcon; diff --git a/packages/regular/src/ArrowLeftLargeIcon.tsx b/packages/regular/src/ArrowLeftLargeIcon.tsx new file mode 100644 index 0000000..aa37414 --- /dev/null +++ b/packages/regular/src/ArrowLeftLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowLeftLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowLeftLargeIcon; diff --git a/packages/regular/src/ArrowRetryIcon.tsx b/packages/regular/src/ArrowRetryIcon.tsx new file mode 100644 index 0000000..15a7091 --- /dev/null +++ b/packages/regular/src/ArrowRetryIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRetryIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRetryIcon; diff --git a/packages/regular/src/ArrowRightIcon.tsx b/packages/regular/src/ArrowRightIcon.tsx new file mode 100644 index 0000000..fa385e5 --- /dev/null +++ b/packages/regular/src/ArrowRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRightIcon; diff --git a/packages/regular/src/ArrowRightLargeIcon.tsx b/packages/regular/src/ArrowRightLargeIcon.tsx new file mode 100644 index 0000000..5bf1bb1 --- /dev/null +++ b/packages/regular/src/ArrowRightLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRightLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRightLargeIcon; diff --git a/packages/regular/src/ArrowUpIcon.tsx b/packages/regular/src/ArrowUpIcon.tsx new file mode 100644 index 0000000..e16497d --- /dev/null +++ b/packages/regular/src/ArrowUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowUpIcon; diff --git a/packages/regular/src/ArrowUpLargeIcon.tsx b/packages/regular/src/ArrowUpLargeIcon.tsx new file mode 100644 index 0000000..6bcdef1 --- /dev/null +++ b/packages/regular/src/ArrowUpLargeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowUpLargeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowUpLargeIcon; diff --git a/packages/regular/src/ArrowsSwitchIcon.tsx b/packages/regular/src/ArrowsSwitchIcon.tsx new file mode 100644 index 0000000..efb6e4c --- /dev/null +++ b/packages/regular/src/ArrowsSwitchIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowsSwitchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowsSwitchIcon; diff --git a/packages/regular/src/ArticleAltIcon.tsx b/packages/regular/src/ArticleAltIcon.tsx new file mode 100644 index 0000000..1468c29 --- /dev/null +++ b/packages/regular/src/ArticleAltIcon.tsx @@ -0,0 +1,39 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticleAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ArticleAltIcon; diff --git a/packages/regular/src/ArticleIcon.tsx b/packages/regular/src/ArticleIcon.tsx new file mode 100644 index 0000000..6e09937 --- /dev/null +++ b/packages/regular/src/ArticleIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ArticleIcon; diff --git a/packages/regular/src/ArticlePlusIcon.tsx b/packages/regular/src/ArticlePlusIcon.tsx new file mode 100644 index 0000000..95baaa1 --- /dev/null +++ b/packages/regular/src/ArticlePlusIcon.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticlePlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ArticlePlusIcon; diff --git a/packages/regular/src/AsteriskIcon.tsx b/packages/regular/src/AsteriskIcon.tsx new file mode 100644 index 0000000..c4b83db --- /dev/null +++ b/packages/regular/src/AsteriskIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AsteriskIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AsteriskIcon; diff --git a/packages/regular/src/AtSymbolIcon.tsx b/packages/regular/src/AtSymbolIcon.tsx new file mode 100644 index 0000000..6a2c1f4 --- /dev/null +++ b/packages/regular/src/AtSymbolIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AtSymbolIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AtSymbolIcon; diff --git a/packages/regular/src/BadgeDollarIcon.tsx b/packages/regular/src/BadgeDollarIcon.tsx new file mode 100644 index 0000000..3b5d190 --- /dev/null +++ b/packages/regular/src/BadgeDollarIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BadgeDollarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BadgeDollarIcon; diff --git a/packages/regular/src/BadgeVerifiedIcon.tsx b/packages/regular/src/BadgeVerifiedIcon.tsx new file mode 100644 index 0000000..f9e4b6d --- /dev/null +++ b/packages/regular/src/BadgeVerifiedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BadgeVerifiedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BadgeVerifiedIcon; diff --git a/packages/regular/src/BalanceIcon.tsx b/packages/regular/src/BalanceIcon.tsx new file mode 100644 index 0000000..c188e55 --- /dev/null +++ b/packages/regular/src/BalanceIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BalanceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BalanceIcon; diff --git a/packages/regular/src/BellIcon.tsx b/packages/regular/src/BellIcon.tsx new file mode 100644 index 0000000..d541c0f --- /dev/null +++ b/packages/regular/src/BellIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BellIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BellIcon; diff --git a/packages/regular/src/BillingInfoIcon.tsx b/packages/regular/src/BillingInfoIcon.tsx new file mode 100644 index 0000000..ac9ab98 --- /dev/null +++ b/packages/regular/src/BillingInfoIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BillingInfoIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BillingInfoIcon; diff --git a/packages/regular/src/BurgerArrowLeftIcon.tsx b/packages/regular/src/BurgerArrowLeftIcon.tsx new file mode 100644 index 0000000..65ca8d9 --- /dev/null +++ b/packages/regular/src/BurgerArrowLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BurgerArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BurgerArrowLeftIcon; diff --git a/packages/regular/src/BurgerArrowRightIcon.tsx b/packages/regular/src/BurgerArrowRightIcon.tsx new file mode 100644 index 0000000..6278d0f --- /dev/null +++ b/packages/regular/src/BurgerArrowRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BurgerArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BurgerArrowRightIcon; diff --git a/packages/regular/src/BurgerClassicIcon.tsx b/packages/regular/src/BurgerClassicIcon.tsx new file mode 100644 index 0000000..7e4fc57 --- /dev/null +++ b/packages/regular/src/BurgerClassicIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BurgerClassicIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BurgerClassicIcon; diff --git a/packages/regular/src/CalendarEndIcon.tsx b/packages/regular/src/CalendarEndIcon.tsx new file mode 100644 index 0000000..f2aad6e --- /dev/null +++ b/packages/regular/src/CalendarEndIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarEndIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CalendarEndIcon; diff --git a/packages/regular/src/CalendarIcon.tsx b/packages/regular/src/CalendarIcon.tsx new file mode 100644 index 0000000..af2a633 --- /dev/null +++ b/packages/regular/src/CalendarIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CalendarIcon; diff --git a/packages/regular/src/CalendarNineIcon.tsx b/packages/regular/src/CalendarNineIcon.tsx new file mode 100644 index 0000000..8bfbf68 --- /dev/null +++ b/packages/regular/src/CalendarNineIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarNineIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CalendarNineIcon; diff --git a/packages/regular/src/CalendarStarIcon.tsx b/packages/regular/src/CalendarStarIcon.tsx new file mode 100644 index 0000000..4a242ce --- /dev/null +++ b/packages/regular/src/CalendarStarIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CalendarStarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CalendarStarIcon; diff --git a/packages/regular/src/CaretDownIcon.tsx b/packages/regular/src/CaretDownIcon.tsx new file mode 100644 index 0000000..8613507 --- /dev/null +++ b/packages/regular/src/CaretDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretDownIcon; diff --git a/packages/regular/src/CaretLeftIcon.tsx b/packages/regular/src/CaretLeftIcon.tsx new file mode 100644 index 0000000..add7693 --- /dev/null +++ b/packages/regular/src/CaretLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretLeftIcon; diff --git a/packages/regular/src/CaretRightIcon.tsx b/packages/regular/src/CaretRightIcon.tsx new file mode 100644 index 0000000..775bcfb --- /dev/null +++ b/packages/regular/src/CaretRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretRightIcon; diff --git a/packages/regular/src/CaretUpIcon.tsx b/packages/regular/src/CaretUpIcon.tsx new file mode 100644 index 0000000..6a1c1cb --- /dev/null +++ b/packages/regular/src/CaretUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CaretUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CaretUpIcon; diff --git a/packages/regular/src/ChartPieIcon.tsx b/packages/regular/src/ChartPieIcon.tsx new file mode 100644 index 0000000..90e480c --- /dev/null +++ b/packages/regular/src/ChartPieIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartPieIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ChartPieIcon; diff --git a/packages/regular/src/ChartTrendDownIcon.tsx b/packages/regular/src/ChartTrendDownIcon.tsx new file mode 100644 index 0000000..1256511 --- /dev/null +++ b/packages/regular/src/ChartTrendDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartTrendDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChartTrendDownIcon; diff --git a/packages/regular/src/ChartTrendUpIcon.tsx b/packages/regular/src/ChartTrendUpIcon.tsx new file mode 100644 index 0000000..e2ffb4c --- /dev/null +++ b/packages/regular/src/ChartTrendUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartTrendUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChartTrendUpIcon; diff --git a/packages/regular/src/CheckCircleIcon.tsx b/packages/regular/src/CheckCircleIcon.tsx new file mode 100644 index 0000000..c542258 --- /dev/null +++ b/packages/regular/src/CheckCircleIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CheckCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CheckCircleIcon; diff --git a/packages/regular/src/CheckIcon.tsx b/packages/regular/src/CheckIcon.tsx new file mode 100644 index 0000000..f245b89 --- /dev/null +++ b/packages/regular/src/CheckIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CheckIcon; diff --git a/packages/regular/src/ChevronDownIcon.tsx b/packages/regular/src/ChevronDownIcon.tsx new file mode 100644 index 0000000..e027eb5 --- /dev/null +++ b/packages/regular/src/ChevronDownIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronDownIcon; diff --git a/packages/regular/src/ChevronLeftIcon.tsx b/packages/regular/src/ChevronLeftIcon.tsx new file mode 100644 index 0000000..592c74c --- /dev/null +++ b/packages/regular/src/ChevronLeftIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronLeftIcon; diff --git a/packages/regular/src/ChevronRightIcon.tsx b/packages/regular/src/ChevronRightIcon.tsx new file mode 100644 index 0000000..0c7909e --- /dev/null +++ b/packages/regular/src/ChevronRightIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronRightIcon; diff --git a/packages/regular/src/ChevronUpIcon.tsx b/packages/regular/src/ChevronUpIcon.tsx new file mode 100644 index 0000000..b777770 --- /dev/null +++ b/packages/regular/src/ChevronUpIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronUpIcon; diff --git a/packages/regular/src/CircleDotIcon.tsx b/packages/regular/src/CircleDotIcon.tsx new file mode 100644 index 0000000..cdac77e --- /dev/null +++ b/packages/regular/src/CircleDotIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CircleDotIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CircleDotIcon; diff --git a/packages/regular/src/CircleIcon.tsx b/packages/regular/src/CircleIcon.tsx new file mode 100644 index 0000000..1f25129 --- /dev/null +++ b/packages/regular/src/CircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CircleIcon; diff --git a/packages/regular/src/ClockIcon.tsx b/packages/regular/src/ClockIcon.tsx new file mode 100644 index 0000000..de4715b --- /dev/null +++ b/packages/regular/src/ClockIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ClockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ClockIcon; diff --git a/packages/regular/src/CloudArrowDownIcon.tsx b/packages/regular/src/CloudArrowDownIcon.tsx new file mode 100644 index 0000000..2e56c81 --- /dev/null +++ b/packages/regular/src/CloudArrowDownIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudArrowDownIcon; diff --git a/packages/regular/src/CloudArrowUpIcon.tsx b/packages/regular/src/CloudArrowUpIcon.tsx new file mode 100644 index 0000000..07c4fb5 --- /dev/null +++ b/packages/regular/src/CloudArrowUpIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudArrowUpIcon; diff --git a/packages/regular/src/CloudCheckIcon.tsx b/packages/regular/src/CloudCheckIcon.tsx new file mode 100644 index 0000000..2376a85 --- /dev/null +++ b/packages/regular/src/CloudCheckIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudCheckIcon; diff --git a/packages/regular/src/CloudIcon.tsx b/packages/regular/src/CloudIcon.tsx new file mode 100644 index 0000000..fb5ff6a --- /dev/null +++ b/packages/regular/src/CloudIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CloudIcon; diff --git a/packages/regular/src/CloudMinusIcon.tsx b/packages/regular/src/CloudMinusIcon.tsx new file mode 100644 index 0000000..739d9fb --- /dev/null +++ b/packages/regular/src/CloudMinusIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudMinusIcon; diff --git a/packages/regular/src/CloudPlusIcon.tsx b/packages/regular/src/CloudPlusIcon.tsx new file mode 100644 index 0000000..1c353d0 --- /dev/null +++ b/packages/regular/src/CloudPlusIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudPlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CloudPlusIcon; diff --git a/packages/regular/src/CogIcon.tsx b/packages/regular/src/CogIcon.tsx new file mode 100644 index 0000000..c45b3e0 --- /dev/null +++ b/packages/regular/src/CogIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CogIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CogIcon; diff --git a/packages/regular/src/CompassIcon.tsx b/packages/regular/src/CompassIcon.tsx new file mode 100644 index 0000000..b24477a --- /dev/null +++ b/packages/regular/src/CompassIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CompassIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default CompassIcon; diff --git a/packages/regular/src/CopyIcon.tsx b/packages/regular/src/CopyIcon.tsx new file mode 100644 index 0000000..42ac8f4 --- /dev/null +++ b/packages/regular/src/CopyIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CopyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CopyIcon; diff --git a/packages/regular/src/CreatorsClubIcon.tsx b/packages/regular/src/CreatorsClubIcon.tsx new file mode 100644 index 0000000..594d482 --- /dev/null +++ b/packages/regular/src/CreatorsClubIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CreatorsClubIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CreatorsClubIcon; diff --git a/packages/regular/src/CreditCardIcon.tsx b/packages/regular/src/CreditCardIcon.tsx new file mode 100644 index 0000000..ff4d359 --- /dev/null +++ b/packages/regular/src/CreditCardIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CreditCardIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default CreditCardIcon; diff --git a/packages/regular/src/CrownIcon.tsx b/packages/regular/src/CrownIcon.tsx new file mode 100644 index 0000000..4e73617 --- /dev/null +++ b/packages/regular/src/CrownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CrownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CrownIcon; diff --git a/packages/regular/src/CursorArrowIcon.tsx b/packages/regular/src/CursorArrowIcon.tsx new file mode 100644 index 0000000..49ed2f6 --- /dev/null +++ b/packages/regular/src/CursorArrowIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CursorArrowIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CursorArrowIcon; diff --git a/packages/regular/src/DashboardIcon.tsx b/packages/regular/src/DashboardIcon.tsx new file mode 100644 index 0000000..f1848e9 --- /dev/null +++ b/packages/regular/src/DashboardIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DashboardIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default DashboardIcon; diff --git a/packages/regular/src/DataBooleanIcon.tsx b/packages/regular/src/DataBooleanIcon.tsx new file mode 100644 index 0000000..f093ad8 --- /dev/null +++ b/packages/regular/src/DataBooleanIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataBooleanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default DataBooleanIcon; diff --git a/packages/regular/src/DataNumbersIcon.tsx b/packages/regular/src/DataNumbersIcon.tsx new file mode 100644 index 0000000..4c3be78 --- /dev/null +++ b/packages/regular/src/DataNumbersIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataNumbersIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DataNumbersIcon; diff --git a/packages/regular/src/DataTextIcon.tsx b/packages/regular/src/DataTextIcon.tsx new file mode 100644 index 0000000..6d3b287 --- /dev/null +++ b/packages/regular/src/DataTextIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataTextIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DataTextIcon; diff --git a/packages/regular/src/DesktopCheckIcon.tsx b/packages/regular/src/DesktopCheckIcon.tsx new file mode 100644 index 0000000..fb8bdf2 --- /dev/null +++ b/packages/regular/src/DesktopCheckIcon.tsx @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DesktopCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default DesktopCheckIcon; diff --git a/packages/regular/src/DesktopIcon.tsx b/packages/regular/src/DesktopIcon.tsx new file mode 100644 index 0000000..44bfe6b --- /dev/null +++ b/packages/regular/src/DesktopIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DesktopIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default DesktopIcon; diff --git a/packages/regular/src/DivideIcon.tsx b/packages/regular/src/DivideIcon.tsx new file mode 100644 index 0000000..faedf11 --- /dev/null +++ b/packages/regular/src/DivideIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DivideIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DivideIcon; diff --git a/packages/regular/src/DollarSignIcon.tsx b/packages/regular/src/DollarSignIcon.tsx new file mode 100644 index 0000000..ccc19df --- /dev/null +++ b/packages/regular/src/DollarSignIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DollarSignIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DollarSignIcon; diff --git a/packages/regular/src/DomainIcon.tsx b/packages/regular/src/DomainIcon.tsx new file mode 100644 index 0000000..f697c9f --- /dev/null +++ b/packages/regular/src/DomainIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DomainIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DomainIcon; diff --git a/packages/regular/src/EllipsisHIcon.tsx b/packages/regular/src/EllipsisHIcon.tsx new file mode 100644 index 0000000..f037bd0 --- /dev/null +++ b/packages/regular/src/EllipsisHIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EllipsisHIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EllipsisHIcon; diff --git a/packages/regular/src/EllipsisVIcon.tsx b/packages/regular/src/EllipsisVIcon.tsx new file mode 100644 index 0000000..0f22649 --- /dev/null +++ b/packages/regular/src/EllipsisVIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EllipsisVIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EllipsisVIcon; diff --git a/packages/regular/src/EmojiPissedOffIcon.tsx b/packages/regular/src/EmojiPissedOffIcon.tsx new file mode 100644 index 0000000..e8be3b2 --- /dev/null +++ b/packages/regular/src/EmojiPissedOffIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EmojiPissedOffIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EmojiPissedOffIcon; diff --git a/packages/regular/src/EngagementIcon.tsx b/packages/regular/src/EngagementIcon.tsx new file mode 100644 index 0000000..8765e8a --- /dev/null +++ b/packages/regular/src/EngagementIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EngagementIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EngagementIcon; diff --git a/packages/regular/src/EnvelopeAtIcon.tsx b/packages/regular/src/EnvelopeAtIcon.tsx new file mode 100644 index 0000000..c8d283d --- /dev/null +++ b/packages/regular/src/EnvelopeAtIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EnvelopeAtIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default EnvelopeAtIcon; diff --git a/packages/regular/src/EnvelopeFlyingIcon.tsx b/packages/regular/src/EnvelopeFlyingIcon.tsx new file mode 100644 index 0000000..9e40c29 --- /dev/null +++ b/packages/regular/src/EnvelopeFlyingIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EnvelopeFlyingIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EnvelopeFlyingIcon; diff --git a/packages/regular/src/EnvelopeIcon.tsx b/packages/regular/src/EnvelopeIcon.tsx new file mode 100644 index 0000000..5b5c6e9 --- /dev/null +++ b/packages/regular/src/EnvelopeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EnvelopeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EnvelopeIcon; diff --git a/packages/regular/src/EqualIcon.tsx b/packages/regular/src/EqualIcon.tsx new file mode 100644 index 0000000..df3d143 --- /dev/null +++ b/packages/regular/src/EqualIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EqualIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EqualIcon; diff --git a/packages/regular/src/EspiralBookIcon.tsx b/packages/regular/src/EspiralBookIcon.tsx new file mode 100644 index 0000000..5625273 --- /dev/null +++ b/packages/regular/src/EspiralBookIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EspiralBookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EspiralBookIcon; diff --git a/packages/regular/src/ExclamationAlertIcon.tsx b/packages/regular/src/ExclamationAlertIcon.tsx new file mode 100644 index 0000000..1ce4668 --- /dev/null +++ b/packages/regular/src/ExclamationAlertIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationAlertIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ExclamationAlertIcon; diff --git a/packages/regular/src/ExclamationCircleIcon.tsx b/packages/regular/src/ExclamationCircleIcon.tsx new file mode 100644 index 0000000..577df05 --- /dev/null +++ b/packages/regular/src/ExclamationCircleIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ExclamationCircleIcon; diff --git a/packages/regular/src/ExclamationTriangleIcon.tsx b/packages/regular/src/ExclamationTriangleIcon.tsx new file mode 100644 index 0000000..9812800 --- /dev/null +++ b/packages/regular/src/ExclamationTriangleIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationTriangleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ExclamationTriangleIcon; diff --git a/packages/regular/src/ExpandDiagonalIcon.tsx b/packages/regular/src/ExpandDiagonalIcon.tsx new file mode 100644 index 0000000..e98eb49 --- /dev/null +++ b/packages/regular/src/ExpandDiagonalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExpandDiagonalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExpandDiagonalIcon; diff --git a/packages/regular/src/ExpandVerticalIcon.tsx b/packages/regular/src/ExpandVerticalIcon.tsx new file mode 100644 index 0000000..57a8b33 --- /dev/null +++ b/packages/regular/src/ExpandVerticalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExpandVerticalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExpandVerticalIcon; diff --git a/packages/regular/src/ExplicitContentIcon.tsx b/packages/regular/src/ExplicitContentIcon.tsx new file mode 100644 index 0000000..18e8b11 --- /dev/null +++ b/packages/regular/src/ExplicitContentIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExplicitContentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ExplicitContentIcon; diff --git a/packages/regular/src/EyeClosedIcon.tsx b/packages/regular/src/EyeClosedIcon.tsx new file mode 100644 index 0000000..760a837 --- /dev/null +++ b/packages/regular/src/EyeClosedIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EyeClosedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EyeClosedIcon; diff --git a/packages/regular/src/EyeOpenedIcon.tsx b/packages/regular/src/EyeOpenedIcon.tsx new file mode 100644 index 0000000..1c58cb8 --- /dev/null +++ b/packages/regular/src/EyeOpenedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EyeOpenedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EyeOpenedIcon; diff --git a/packages/regular/src/FeedIcon.tsx b/packages/regular/src/FeedIcon.tsx new file mode 100644 index 0000000..4ad3422 --- /dev/null +++ b/packages/regular/src/FeedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FeedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FeedIcon; diff --git a/packages/regular/src/FilterIcon.tsx b/packages/regular/src/FilterIcon.tsx new file mode 100644 index 0000000..79564e6 --- /dev/null +++ b/packages/regular/src/FilterIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FilterIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FilterIcon; diff --git a/packages/regular/src/FolderAltIcon.tsx b/packages/regular/src/FolderAltIcon.tsx new file mode 100644 index 0000000..a854998 --- /dev/null +++ b/packages/regular/src/FolderAltIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderAltIcon; diff --git a/packages/regular/src/FolderArrowDownIcon.tsx b/packages/regular/src/FolderArrowDownIcon.tsx new file mode 100644 index 0000000..3c4900f --- /dev/null +++ b/packages/regular/src/FolderArrowDownIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderArrowDownIcon; diff --git a/packages/regular/src/FolderArrowLeftIcon.tsx b/packages/regular/src/FolderArrowLeftIcon.tsx new file mode 100644 index 0000000..061c8a1 --- /dev/null +++ b/packages/regular/src/FolderArrowLeftIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowLeftIcon; diff --git a/packages/regular/src/FolderArrowRightIcon.tsx b/packages/regular/src/FolderArrowRightIcon.tsx new file mode 100644 index 0000000..4f9f4b3 --- /dev/null +++ b/packages/regular/src/FolderArrowRightIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderArrowRightIcon; diff --git a/packages/regular/src/FolderArrowUpIcon.tsx b/packages/regular/src/FolderArrowUpIcon.tsx new file mode 100644 index 0000000..909a4a5 --- /dev/null +++ b/packages/regular/src/FolderArrowUpIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderArrowUpIcon; diff --git a/packages/regular/src/FolderIcon.tsx b/packages/regular/src/FolderIcon.tsx new file mode 100644 index 0000000..59e65df --- /dev/null +++ b/packages/regular/src/FolderIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderIcon; diff --git a/packages/regular/src/FolderLockIcon.tsx b/packages/regular/src/FolderLockIcon.tsx new file mode 100644 index 0000000..711b66e --- /dev/null +++ b/packages/regular/src/FolderLockIcon.tsx @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderLockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default FolderLockIcon; diff --git a/packages/regular/src/FolderMultipleIcon.tsx b/packages/regular/src/FolderMultipleIcon.tsx new file mode 100644 index 0000000..88a3ce4 --- /dev/null +++ b/packages/regular/src/FolderMultipleIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderMultipleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderMultipleIcon; diff --git a/packages/regular/src/FolderPlusIcon.tsx b/packages/regular/src/FolderPlusIcon.tsx new file mode 100644 index 0000000..b313abe --- /dev/null +++ b/packages/regular/src/FolderPlusIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderPlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderPlusIcon; diff --git a/packages/regular/src/FolderRefreshIcon.tsx b/packages/regular/src/FolderRefreshIcon.tsx new file mode 100644 index 0000000..a7d4679 --- /dev/null +++ b/packages/regular/src/FolderRefreshIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderRefreshIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderRefreshIcon; diff --git a/packages/regular/src/FolderSearchIcon.tsx b/packages/regular/src/FolderSearchIcon.tsx new file mode 100644 index 0000000..30f4500 --- /dev/null +++ b/packages/regular/src/FolderSearchIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderSearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderSearchIcon; diff --git a/packages/regular/src/GifIcon.tsx b/packages/regular/src/GifIcon.tsx new file mode 100644 index 0000000..b8d6267 --- /dev/null +++ b/packages/regular/src/GifIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GifIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default GifIcon; diff --git a/packages/regular/src/GlobeIcon.tsx b/packages/regular/src/GlobeIcon.tsx new file mode 100644 index 0000000..d68063e --- /dev/null +++ b/packages/regular/src/GlobeIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GlobeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default GlobeIcon; diff --git a/packages/regular/src/GlobeTimezoneIcon.tsx b/packages/regular/src/GlobeTimezoneIcon.tsx new file mode 100644 index 0000000..c582117 --- /dev/null +++ b/packages/regular/src/GlobeTimezoneIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GlobeTimezoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default GlobeTimezoneIcon; diff --git a/packages/regular/src/GoogleDriveIcon.tsx b/packages/regular/src/GoogleDriveIcon.tsx new file mode 100644 index 0000000..51e1d46 --- /dev/null +++ b/packages/regular/src/GoogleDriveIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GoogleDriveIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default GoogleDriveIcon; diff --git a/packages/regular/src/HashIcon.tsx b/packages/regular/src/HashIcon.tsx new file mode 100644 index 0000000..2379bb5 --- /dev/null +++ b/packages/regular/src/HashIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HashIcon; diff --git a/packages/regular/src/HeadphonesIcon.tsx b/packages/regular/src/HeadphonesIcon.tsx new file mode 100644 index 0000000..e2396fe --- /dev/null +++ b/packages/regular/src/HeadphonesIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HeadphonesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HeadphonesIcon; diff --git a/packages/regular/src/HeartIcon.tsx b/packages/regular/src/HeartIcon.tsx new file mode 100644 index 0000000..7090fdf --- /dev/null +++ b/packages/regular/src/HeartIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HeartIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HeartIcon; diff --git a/packages/regular/src/HomeIcon.tsx b/packages/regular/src/HomeIcon.tsx new file mode 100644 index 0000000..0d9913b --- /dev/null +++ b/packages/regular/src/HomeIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HomeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default HomeIcon; diff --git a/packages/regular/src/ImageArrowDownIcon.tsx b/packages/regular/src/ImageArrowDownIcon.tsx new file mode 100644 index 0000000..e04e4f8 --- /dev/null +++ b/packages/regular/src/ImageArrowDownIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageArrowDownIcon; diff --git a/packages/regular/src/ImageArrowUpIcon.tsx b/packages/regular/src/ImageArrowUpIcon.tsx new file mode 100644 index 0000000..79d7410 --- /dev/null +++ b/packages/regular/src/ImageArrowUpIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageArrowUpIcon; diff --git a/packages/regular/src/ImageBanIcon.tsx b/packages/regular/src/ImageBanIcon.tsx new file mode 100644 index 0000000..4c8e4ea --- /dev/null +++ b/packages/regular/src/ImageBanIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageBanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageBanIcon; diff --git a/packages/regular/src/ImageExclamationIcon.tsx b/packages/regular/src/ImageExclamationIcon.tsx new file mode 100644 index 0000000..8aef11c --- /dev/null +++ b/packages/regular/src/ImageExclamationIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageExclamationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageExclamationIcon; diff --git a/packages/regular/src/ImageIcon.tsx b/packages/regular/src/ImageIcon.tsx new file mode 100644 index 0000000..a8400ba --- /dev/null +++ b/packages/regular/src/ImageIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImageIcon; diff --git a/packages/regular/src/ImageMinusIcon.tsx b/packages/regular/src/ImageMinusIcon.tsx new file mode 100644 index 0000000..e90ad3b --- /dev/null +++ b/packages/regular/src/ImageMinusIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImageMinusIcon; diff --git a/packages/regular/src/ImageOpenIcon.tsx b/packages/regular/src/ImageOpenIcon.tsx new file mode 100644 index 0000000..e169393 --- /dev/null +++ b/packages/regular/src/ImageOpenIcon.tsx @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageOpenIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + + ); + } +); + +export default ImageOpenIcon; diff --git a/packages/regular/src/ImagePlusIcon.tsx b/packages/regular/src/ImagePlusIcon.tsx new file mode 100644 index 0000000..0e9f958 --- /dev/null +++ b/packages/regular/src/ImagePlusIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImagePlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImagePlusIcon; diff --git a/packages/regular/src/ImageSearchIcon.tsx b/packages/regular/src/ImageSearchIcon.tsx new file mode 100644 index 0000000..dbf9eec --- /dev/null +++ b/packages/regular/src/ImageSearchIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageSearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageSearchIcon; diff --git a/packages/regular/src/ImageSwitchIcon.tsx b/packages/regular/src/ImageSwitchIcon.tsx new file mode 100644 index 0000000..2753679 --- /dev/null +++ b/packages/regular/src/ImageSwitchIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageSwitchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageSwitchIcon; diff --git a/packages/regular/src/ImageTimesIcon.tsx b/packages/regular/src/ImageTimesIcon.tsx new file mode 100644 index 0000000..24041c8 --- /dev/null +++ b/packages/regular/src/ImageTimesIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageTimesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ImageTimesIcon; diff --git a/packages/regular/src/ImageTrashIcon.tsx b/packages/regular/src/ImageTrashIcon.tsx new file mode 100644 index 0000000..e35dd76 --- /dev/null +++ b/packages/regular/src/ImageTrashIcon.tsx @@ -0,0 +1,35 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ImageTrashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default ImageTrashIcon; diff --git a/packages/regular/src/InboxIcon.tsx b/packages/regular/src/InboxIcon.tsx new file mode 100644 index 0000000..af71521 --- /dev/null +++ b/packages/regular/src/InboxIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InboxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default InboxIcon; diff --git a/packages/regular/src/InfinityIcon.tsx b/packages/regular/src/InfinityIcon.tsx new file mode 100644 index 0000000..9f86fb6 --- /dev/null +++ b/packages/regular/src/InfinityIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InfinityIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default InfinityIcon; diff --git a/packages/regular/src/InfoCircleIcon.tsx b/packages/regular/src/InfoCircleIcon.tsx new file mode 100644 index 0000000..d9767a0 --- /dev/null +++ b/packages/regular/src/InfoCircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InfoCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default InfoCircleIcon; diff --git a/packages/regular/src/IntegrationsIcon.tsx b/packages/regular/src/IntegrationsIcon.tsx new file mode 100644 index 0000000..cc3f778 --- /dev/null +++ b/packages/regular/src/IntegrationsIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const IntegrationsIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default IntegrationsIcon; diff --git a/packages/regular/src/InvoiceIcon.tsx b/packages/regular/src/InvoiceIcon.tsx new file mode 100644 index 0000000..acb4215 --- /dev/null +++ b/packages/regular/src/InvoiceIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InvoiceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default InvoiceIcon; diff --git a/packages/regular/src/LastUpdatesIcon.tsx b/packages/regular/src/LastUpdatesIcon.tsx new file mode 100644 index 0000000..d3d4df5 --- /dev/null +++ b/packages/regular/src/LastUpdatesIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LastUpdatesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LastUpdatesIcon; diff --git a/packages/regular/src/LifeRingIcon.tsx b/packages/regular/src/LifeRingIcon.tsx new file mode 100644 index 0000000..4baa4f0 --- /dev/null +++ b/packages/regular/src/LifeRingIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LifeRingIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default LifeRingIcon; diff --git a/packages/regular/src/LightBulbExclamationIcon.tsx b/packages/regular/src/LightBulbExclamationIcon.tsx new file mode 100644 index 0000000..182b3c2 --- /dev/null +++ b/packages/regular/src/LightBulbExclamationIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LightBulbExclamationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LightBulbExclamationIcon; diff --git a/packages/regular/src/LightBulbIcon.tsx b/packages/regular/src/LightBulbIcon.tsx new file mode 100644 index 0000000..ff5d445 --- /dev/null +++ b/packages/regular/src/LightBulbIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LightBulbIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default LightBulbIcon; diff --git a/packages/regular/src/LinkIcon.tsx b/packages/regular/src/LinkIcon.tsx new file mode 100644 index 0000000..1514392 --- /dev/null +++ b/packages/regular/src/LinkIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LinkIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default LinkIcon; diff --git a/packages/regular/src/LocationIcon.tsx b/packages/regular/src/LocationIcon.tsx new file mode 100644 index 0000000..1229c0e --- /dev/null +++ b/packages/regular/src/LocationIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LocationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LocationIcon; diff --git a/packages/regular/src/LockClosedIcon.tsx b/packages/regular/src/LockClosedIcon.tsx new file mode 100644 index 0000000..c20dccb --- /dev/null +++ b/packages/regular/src/LockClosedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LockClosedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LockClosedIcon; diff --git a/packages/regular/src/LockOpenedIcon.tsx b/packages/regular/src/LockOpenedIcon.tsx new file mode 100644 index 0000000..806ebed --- /dev/null +++ b/packages/regular/src/LockOpenedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LockOpenedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LockOpenedIcon; diff --git a/packages/regular/src/MailboxEmptyIcon.tsx b/packages/regular/src/MailboxEmptyIcon.tsx new file mode 100644 index 0000000..d0104ce --- /dev/null +++ b/packages/regular/src/MailboxEmptyIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MailboxEmptyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MailboxEmptyIcon; diff --git a/packages/regular/src/MailboxFullIcon.tsx b/packages/regular/src/MailboxFullIcon.tsx new file mode 100644 index 0000000..9dda4bb --- /dev/null +++ b/packages/regular/src/MailboxFullIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MailboxFullIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MailboxFullIcon; diff --git a/packages/regular/src/MarkerIcon.tsx b/packages/regular/src/MarkerIcon.tsx new file mode 100644 index 0000000..b604a11 --- /dev/null +++ b/packages/regular/src/MarkerIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MarkerIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MarkerIcon; diff --git a/packages/regular/src/MegaphoneIcon.tsx b/packages/regular/src/MegaphoneIcon.tsx new file mode 100644 index 0000000..41c35f3 --- /dev/null +++ b/packages/regular/src/MegaphoneIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MegaphoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MegaphoneIcon; diff --git a/packages/regular/src/MinusIcon.tsx b/packages/regular/src/MinusIcon.tsx new file mode 100644 index 0000000..d05aa45 --- /dev/null +++ b/packages/regular/src/MinusIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MinusIcon; diff --git a/packages/regular/src/MonetizeIcon.tsx b/packages/regular/src/MonetizeIcon.tsx new file mode 100644 index 0000000..8f09c3b --- /dev/null +++ b/packages/regular/src/MonetizeIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MonetizeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MonetizeIcon; diff --git a/packages/regular/src/NewWindowPageIcon.tsx b/packages/regular/src/NewWindowPageIcon.tsx new file mode 100644 index 0000000..c4c4251 --- /dev/null +++ b/packages/regular/src/NewWindowPageIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const NewWindowPageIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default NewWindowPageIcon; diff --git a/packages/regular/src/NotebookIcon.tsx b/packages/regular/src/NotebookIcon.tsx new file mode 100644 index 0000000..760086d --- /dev/null +++ b/packages/regular/src/NotebookIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const NotebookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default NotebookIcon; diff --git a/packages/regular/src/OutboxIcon.tsx b/packages/regular/src/OutboxIcon.tsx new file mode 100644 index 0000000..ebbc47d --- /dev/null +++ b/packages/regular/src/OutboxIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const OutboxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default OutboxIcon; diff --git a/packages/regular/src/PackIcon.tsx b/packages/regular/src/PackIcon.tsx new file mode 100644 index 0000000..ee6bfde --- /dev/null +++ b/packages/regular/src/PackIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PackIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PackIcon; diff --git a/packages/regular/src/PaperplaneIcon.tsx b/packages/regular/src/PaperplaneIcon.tsx new file mode 100644 index 0000000..6b1c9a1 --- /dev/null +++ b/packages/regular/src/PaperplaneIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PaperplaneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PaperplaneIcon; diff --git a/packages/regular/src/PauseIcon.tsx b/packages/regular/src/PauseIcon.tsx new file mode 100644 index 0000000..3fff8fd --- /dev/null +++ b/packages/regular/src/PauseIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PauseIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PauseIcon; diff --git a/packages/regular/src/PaymentLinkIcon.tsx b/packages/regular/src/PaymentLinkIcon.tsx new file mode 100644 index 0000000..7fced11 --- /dev/null +++ b/packages/regular/src/PaymentLinkIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PaymentLinkIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PaymentLinkIcon; diff --git a/packages/regular/src/PencilIcon.tsx b/packages/regular/src/PencilIcon.tsx new file mode 100644 index 0000000..12e4336 --- /dev/null +++ b/packages/regular/src/PencilIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PencilIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PencilIcon; diff --git a/packages/regular/src/PeopleGroupIcon.tsx b/packages/regular/src/PeopleGroupIcon.tsx new file mode 100644 index 0000000..32c0883 --- /dev/null +++ b/packages/regular/src/PeopleGroupIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PeopleGroupIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PeopleGroupIcon; diff --git a/packages/regular/src/PercentIcon.tsx b/packages/regular/src/PercentIcon.tsx new file mode 100644 index 0000000..f7e2a54 --- /dev/null +++ b/packages/regular/src/PercentIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PercentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PercentIcon; diff --git a/packages/regular/src/PersonIcon.tsx b/packages/regular/src/PersonIcon.tsx new file mode 100644 index 0000000..58a306c --- /dev/null +++ b/packages/regular/src/PersonIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PersonIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PersonIcon; diff --git a/packages/regular/src/PinLocationIcon.tsx b/packages/regular/src/PinLocationIcon.tsx new file mode 100644 index 0000000..d864624 --- /dev/null +++ b/packages/regular/src/PinLocationIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PinLocationIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PinLocationIcon; diff --git a/packages/regular/src/PinPlaceIcon.tsx b/packages/regular/src/PinPlaceIcon.tsx new file mode 100644 index 0000000..96f5f3c --- /dev/null +++ b/packages/regular/src/PinPlaceIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PinPlaceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PinPlaceIcon; diff --git a/packages/regular/src/PixIcon.tsx b/packages/regular/src/PixIcon.tsx new file mode 100644 index 0000000..92809c4 --- /dev/null +++ b/packages/regular/src/PixIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PixIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PixIcon; diff --git a/packages/regular/src/PlanIcon.tsx b/packages/regular/src/PlanIcon.tsx new file mode 100644 index 0000000..4f5e472 --- /dev/null +++ b/packages/regular/src/PlanIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PlanIcon; diff --git a/packages/regular/src/PlayIcon.tsx b/packages/regular/src/PlayIcon.tsx new file mode 100644 index 0000000..2e5e3fe --- /dev/null +++ b/packages/regular/src/PlayIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlayIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PlayIcon; diff --git a/packages/regular/src/PlusIcon.tsx b/packages/regular/src/PlusIcon.tsx new file mode 100644 index 0000000..376044e --- /dev/null +++ b/packages/regular/src/PlusIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PlusIcon; diff --git a/packages/regular/src/PrivateContentIcon.tsx b/packages/regular/src/PrivateContentIcon.tsx new file mode 100644 index 0000000..11c2808 --- /dev/null +++ b/packages/regular/src/PrivateContentIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PrivateContentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default PrivateContentIcon; diff --git a/packages/regular/src/QrCodeIcon.tsx b/packages/regular/src/QrCodeIcon.tsx new file mode 100644 index 0000000..cb76bc5 --- /dev/null +++ b/packages/regular/src/QrCodeIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const QrCodeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default QrCodeIcon; diff --git a/packages/regular/src/QuestionIcon.tsx b/packages/regular/src/QuestionIcon.tsx new file mode 100644 index 0000000..5cccefa --- /dev/null +++ b/packages/regular/src/QuestionIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const QuestionIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default QuestionIcon; diff --git a/packages/regular/src/RacketBallIcon.tsx b/packages/regular/src/RacketBallIcon.tsx new file mode 100644 index 0000000..d424613 --- /dev/null +++ b/packages/regular/src/RacketBallIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RacketBallIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default RacketBallIcon; diff --git a/packages/regular/src/RacketIcon.tsx b/packages/regular/src/RacketIcon.tsx new file mode 100644 index 0000000..dbaedc3 --- /dev/null +++ b/packages/regular/src/RacketIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RacketIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default RacketIcon; diff --git a/packages/regular/src/RadarIcon.tsx b/packages/regular/src/RadarIcon.tsx new file mode 100644 index 0000000..2e0c94a --- /dev/null +++ b/packages/regular/src/RadarIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RadarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default RadarIcon; diff --git a/packages/regular/src/ScrewNutIcon.tsx b/packages/regular/src/ScrewNutIcon.tsx new file mode 100644 index 0000000..445f0e4 --- /dev/null +++ b/packages/regular/src/ScrewNutIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ScrewNutIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ScrewNutIcon; diff --git a/packages/regular/src/SearchBoxIcon.tsx b/packages/regular/src/SearchBoxIcon.tsx new file mode 100644 index 0000000..d52546a --- /dev/null +++ b/packages/regular/src/SearchBoxIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchBoxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default SearchBoxIcon; diff --git a/packages/regular/src/SearchIcon.tsx b/packages/regular/src/SearchIcon.tsx new file mode 100644 index 0000000..fa8a9ce --- /dev/null +++ b/packages/regular/src/SearchIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SearchIcon; diff --git a/packages/regular/src/SearchSplitIcon.tsx b/packages/regular/src/SearchSplitIcon.tsx new file mode 100644 index 0000000..06a2a0a --- /dev/null +++ b/packages/regular/src/SearchSplitIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchSplitIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SearchSplitIcon; diff --git a/packages/regular/src/SensitiveIcon.tsx b/packages/regular/src/SensitiveIcon.tsx new file mode 100644 index 0000000..86a6b33 --- /dev/null +++ b/packages/regular/src/SensitiveIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SensitiveIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SensitiveIcon; diff --git a/packages/regular/src/ShareIcon.tsx b/packages/regular/src/ShareIcon.tsx new file mode 100644 index 0000000..aff71ea --- /dev/null +++ b/packages/regular/src/ShareIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShareIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShareIcon; diff --git a/packages/regular/src/ShieldCheckIcon.tsx b/packages/regular/src/ShieldCheckIcon.tsx new file mode 100644 index 0000000..cbcac06 --- /dev/null +++ b/packages/regular/src/ShieldCheckIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShieldCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ShieldCheckIcon; diff --git a/packages/regular/src/ShieldIcon.tsx b/packages/regular/src/ShieldIcon.tsx new file mode 100644 index 0000000..f3f471a --- /dev/null +++ b/packages/regular/src/ShieldIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShieldIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShieldIcon; diff --git a/packages/regular/src/ShieldUserIcon.tsx b/packages/regular/src/ShieldUserIcon.tsx new file mode 100644 index 0000000..6b08c54 --- /dev/null +++ b/packages/regular/src/ShieldUserIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShieldUserIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ShieldUserIcon; diff --git a/packages/regular/src/ShrinkDiagonalIcon.tsx b/packages/regular/src/ShrinkDiagonalIcon.tsx new file mode 100644 index 0000000..33643aa --- /dev/null +++ b/packages/regular/src/ShrinkDiagonalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShrinkDiagonalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShrinkDiagonalIcon; diff --git a/packages/regular/src/ShrinkVerticalIcon.tsx b/packages/regular/src/ShrinkVerticalIcon.tsx new file mode 100644 index 0000000..5b84ced --- /dev/null +++ b/packages/regular/src/ShrinkVerticalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShrinkVerticalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShrinkVerticalIcon; diff --git a/packages/regular/src/SidePeekIcon.tsx b/packages/regular/src/SidePeekIcon.tsx new file mode 100644 index 0000000..78d1454 --- /dev/null +++ b/packages/regular/src/SidePeekIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SidePeekIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SidePeekIcon; diff --git a/packages/regular/src/SigninAltIcon.tsx b/packages/regular/src/SigninAltIcon.tsx new file mode 100644 index 0000000..8da4677 --- /dev/null +++ b/packages/regular/src/SigninAltIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SigninAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SigninAltIcon; diff --git a/packages/regular/src/SigninIcon.tsx b/packages/regular/src/SigninIcon.tsx new file mode 100644 index 0000000..e2e3864 --- /dev/null +++ b/packages/regular/src/SigninIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SigninIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SigninIcon; diff --git a/packages/regular/src/SignoutAltIcon.tsx b/packages/regular/src/SignoutAltIcon.tsx new file mode 100644 index 0000000..06cf5a2 --- /dev/null +++ b/packages/regular/src/SignoutAltIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SignoutAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SignoutAltIcon; diff --git a/packages/regular/src/SignoutIcon.tsx b/packages/regular/src/SignoutIcon.tsx new file mode 100644 index 0000000..872472c --- /dev/null +++ b/packages/regular/src/SignoutIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SignoutIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SignoutIcon; diff --git a/packages/regular/src/SlidersHIcon.tsx b/packages/regular/src/SlidersHIcon.tsx new file mode 100644 index 0000000..15a43b2 --- /dev/null +++ b/packages/regular/src/SlidersHIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SlidersHIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SlidersHIcon; diff --git a/packages/regular/src/SlidersVIcon.tsx b/packages/regular/src/SlidersVIcon.tsx new file mode 100644 index 0000000..3cead90 --- /dev/null +++ b/packages/regular/src/SlidersVIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SlidersVIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SlidersVIcon; diff --git a/packages/regular/src/SmartphoneIcon.tsx b/packages/regular/src/SmartphoneIcon.tsx new file mode 100644 index 0000000..9f98c96 --- /dev/null +++ b/packages/regular/src/SmartphoneIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SmartphoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SmartphoneIcon; diff --git a/packages/regular/src/SocialFacebookIcon.tsx b/packages/regular/src/SocialFacebookIcon.tsx new file mode 100644 index 0000000..04f035e --- /dev/null +++ b/packages/regular/src/SocialFacebookIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialFacebookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialFacebookIcon; diff --git a/packages/regular/src/SocialTwitterIcon.tsx b/packages/regular/src/SocialTwitterIcon.tsx new file mode 100644 index 0000000..34d993d --- /dev/null +++ b/packages/regular/src/SocialTwitterIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialTwitterIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialTwitterIcon; diff --git a/packages/regular/src/SocialUnsplashIcon.tsx b/packages/regular/src/SocialUnsplashIcon.tsx new file mode 100644 index 0000000..49ace2f --- /dev/null +++ b/packages/regular/src/SocialUnsplashIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialUnsplashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialUnsplashIcon; diff --git a/packages/regular/src/SocialWhatsappIcon.tsx b/packages/regular/src/SocialWhatsappIcon.tsx new file mode 100644 index 0000000..5abd303 --- /dev/null +++ b/packages/regular/src/SocialWhatsappIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialWhatsappIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SocialWhatsappIcon; diff --git a/packages/regular/src/SquareCheckIcon.tsx b/packages/regular/src/SquareCheckIcon.tsx new file mode 100644 index 0000000..6dd1f44 --- /dev/null +++ b/packages/regular/src/SquareCheckIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SquareCheckIcon; diff --git a/packages/regular/src/SquareIcon.tsx b/packages/regular/src/SquareIcon.tsx new file mode 100644 index 0000000..72ad24e --- /dev/null +++ b/packages/regular/src/SquareIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SquareIcon; diff --git a/packages/regular/src/SquareMinusIcon.tsx b/packages/regular/src/SquareMinusIcon.tsx new file mode 100644 index 0000000..6ef69ea --- /dev/null +++ b/packages/regular/src/SquareMinusIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SquareMinusIcon; diff --git a/packages/regular/src/StarIcon.tsx b/packages/regular/src/StarIcon.tsx new file mode 100644 index 0000000..a304da8 --- /dev/null +++ b/packages/regular/src/StarIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const StarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default StarIcon; diff --git a/packages/regular/src/StarsIcon.tsx b/packages/regular/src/StarsIcon.tsx new file mode 100644 index 0000000..10a44b3 --- /dev/null +++ b/packages/regular/src/StarsIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const StarsIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default StarsIcon; diff --git a/packages/regular/src/TabletIcon.tsx b/packages/regular/src/TabletIcon.tsx new file mode 100644 index 0000000..b8ba41e --- /dev/null +++ b/packages/regular/src/TabletIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TabletIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TabletIcon; diff --git a/packages/regular/src/TargetIcon.tsx b/packages/regular/src/TargetIcon.tsx new file mode 100644 index 0000000..cee3b35 --- /dev/null +++ b/packages/regular/src/TargetIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TargetIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TargetIcon; diff --git a/packages/regular/src/ThumbDownIcon.tsx b/packages/regular/src/ThumbDownIcon.tsx new file mode 100644 index 0000000..51b4e1e --- /dev/null +++ b/packages/regular/src/ThumbDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ThumbDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ThumbDownIcon; diff --git a/packages/regular/src/ThumbUpIcon.tsx b/packages/regular/src/ThumbUpIcon.tsx new file mode 100644 index 0000000..e46a8fc --- /dev/null +++ b/packages/regular/src/ThumbUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ThumbUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ThumbUpIcon; diff --git a/packages/regular/src/TimesCircleIcon.tsx b/packages/regular/src/TimesCircleIcon.tsx new file mode 100644 index 0000000..c3be3a3 --- /dev/null +++ b/packages/regular/src/TimesCircleIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TimesCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TimesCircleIcon; diff --git a/packages/regular/src/TimesIcon.tsx b/packages/regular/src/TimesIcon.tsx new file mode 100644 index 0000000..f5e12e2 --- /dev/null +++ b/packages/regular/src/TimesIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TimesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TimesIcon; diff --git a/packages/regular/src/TrashCanIcon.tsx b/packages/regular/src/TrashCanIcon.tsx new file mode 100644 index 0000000..7d71d22 --- /dev/null +++ b/packages/regular/src/TrashCanIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrashCanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TrashCanIcon; diff --git a/packages/regular/src/TrendArrowDownIcon.tsx b/packages/regular/src/TrendArrowDownIcon.tsx new file mode 100644 index 0000000..dbf9229 --- /dev/null +++ b/packages/regular/src/TrendArrowDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrendArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TrendArrowDownIcon; diff --git a/packages/regular/src/TrendArrowUpIcon.tsx b/packages/regular/src/TrendArrowUpIcon.tsx new file mode 100644 index 0000000..1427503 --- /dev/null +++ b/packages/regular/src/TrendArrowUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrendArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TrendArrowUpIcon; diff --git a/packages/regular/src/TrophyIcon.tsx b/packages/regular/src/TrophyIcon.tsx new file mode 100644 index 0000000..7f7b249 --- /dev/null +++ b/packages/regular/src/TrophyIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrophyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default TrophyIcon; diff --git a/packages/regular/src/UserArrowDownIcon.tsx b/packages/regular/src/UserArrowDownIcon.tsx new file mode 100644 index 0000000..c6e08e5 --- /dev/null +++ b/packages/regular/src/UserArrowDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserArrowDownIcon; diff --git a/packages/regular/src/UserAtIcon.tsx b/packages/regular/src/UserAtIcon.tsx new file mode 100644 index 0000000..d0129fe --- /dev/null +++ b/packages/regular/src/UserAtIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserAtIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserAtIcon; diff --git a/packages/regular/src/UserAvatarIcon.tsx b/packages/regular/src/UserAvatarIcon.tsx new file mode 100644 index 0000000..9245942 --- /dev/null +++ b/packages/regular/src/UserAvatarIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserAvatarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserAvatarIcon; diff --git a/packages/regular/src/UserCheckIcon.tsx b/packages/regular/src/UserCheckIcon.tsx new file mode 100644 index 0000000..ecfadd2 --- /dev/null +++ b/packages/regular/src/UserCheckIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserCheckIcon; diff --git a/packages/regular/src/UserClockIcon.tsx b/packages/regular/src/UserClockIcon.tsx new file mode 100644 index 0000000..3f450b7 --- /dev/null +++ b/packages/regular/src/UserClockIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserClockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserClockIcon; diff --git a/packages/regular/src/UserCogIcon.tsx b/packages/regular/src/UserCogIcon.tsx new file mode 100644 index 0000000..7d36a62 --- /dev/null +++ b/packages/regular/src/UserCogIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserCogIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserCogIcon; diff --git a/packages/regular/src/UserDollarIcon.tsx b/packages/regular/src/UserDollarIcon.tsx new file mode 100644 index 0000000..e0660ec --- /dev/null +++ b/packages/regular/src/UserDollarIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserDollarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserDollarIcon; diff --git a/packages/regular/src/UserEnvelopeIcon.tsx b/packages/regular/src/UserEnvelopeIcon.tsx new file mode 100644 index 0000000..f2c3c69 --- /dev/null +++ b/packages/regular/src/UserEnvelopeIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserEnvelopeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserEnvelopeIcon; diff --git a/packages/regular/src/UserGroupIcon.tsx b/packages/regular/src/UserGroupIcon.tsx new file mode 100644 index 0000000..5ef4085 --- /dev/null +++ b/packages/regular/src/UserGroupIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserGroupIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserGroupIcon; diff --git a/packages/regular/src/UserHeartIcon.tsx b/packages/regular/src/UserHeartIcon.tsx new file mode 100644 index 0000000..0313b8d --- /dev/null +++ b/packages/regular/src/UserHeartIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserHeartIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserHeartIcon; diff --git a/packages/regular/src/UserIdIcon.tsx b/packages/regular/src/UserIdIcon.tsx new file mode 100644 index 0000000..c6ae179 --- /dev/null +++ b/packages/regular/src/UserIdIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserIdIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default UserIdIcon; diff --git a/packages/regular/src/UserShieldIcon.tsx b/packages/regular/src/UserShieldIcon.tsx new file mode 100644 index 0000000..26168e6 --- /dev/null +++ b/packages/regular/src/UserShieldIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UserShieldIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UserShieldIcon; diff --git a/packages/regular/src/UsersCrownIcon.tsx b/packages/regular/src/UsersCrownIcon.tsx new file mode 100644 index 0000000..c79e8cb --- /dev/null +++ b/packages/regular/src/UsersCrownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const UsersCrownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default UsersCrownIcon; diff --git a/packages/regular/src/VaultIcon.tsx b/packages/regular/src/VaultIcon.tsx new file mode 100644 index 0000000..440592e --- /dev/null +++ b/packages/regular/src/VaultIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const VaultIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default VaultIcon; diff --git a/packages/regular/src/WalletIcon.tsx b/packages/regular/src/WalletIcon.tsx new file mode 100644 index 0000000..b4d183a --- /dev/null +++ b/packages/regular/src/WalletIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const WalletIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default WalletIcon; diff --git a/packages/regular/src/WandIcon.tsx b/packages/regular/src/WandIcon.tsx new file mode 100644 index 0000000..9638c17 --- /dev/null +++ b/packages/regular/src/WandIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const WandIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default WandIcon; diff --git a/packages/regular/src/index.tsx b/packages/regular/src/index.tsx new file mode 100644 index 0000000..3f4bb40 --- /dev/null +++ b/packages/regular/src/index.tsx @@ -0,0 +1,215 @@ +export { default as FeedIcon } from './FeedIcon'; +export { default as CompassIcon } from './CompassIcon'; +export { default as SearchIcon } from './SearchIcon'; +export { default as SearchSplitIcon } from './SearchSplitIcon'; +export { default as LastUpdatesIcon } from './LastUpdatesIcon'; +export { default as SearchBoxIcon } from './SearchBoxIcon'; +export { default as BellIcon } from './BellIcon'; +export { default as MonetizeIcon } from './MonetizeIcon'; +export { default as TargetIcon } from './TargetIcon'; +export { default as UserAvatarIcon } from './UserAvatarIcon'; +export { default as AtSymbolIcon } from './AtSymbolIcon'; +export { default as InfoCircleIcon } from './InfoCircleIcon'; +export { default as QuestionIcon } from './QuestionIcon'; +export { default as ExclamationTriangleIcon } from './ExclamationTriangleIcon'; +export { default as ExclamationCircleIcon } from './ExclamationCircleIcon'; +export { default as ExclamationAlertIcon } from './ExclamationAlertIcon'; +export { default as ExplicitContentIcon } from './ExplicitContentIcon'; +export { default as TrashCanIcon } from './TrashCanIcon'; +export { default as PencilIcon } from './PencilIcon'; +export { default as CheckIcon } from './CheckIcon'; +export { default as CopyIcon } from './CopyIcon'; +export { default as EyeOpenedIcon } from './EyeOpenedIcon'; +export { default as EyeClosedIcon } from './EyeClosedIcon'; +export { default as CheckCircleIcon } from './CheckCircleIcon'; +export { default as ImageIcon } from './ImageIcon'; +export { default as ImageOpenIcon } from './ImageOpenIcon'; +export { default as ImageArrowUpIcon } from './ImageArrowUpIcon'; +export { default as ImageArrowDownIcon } from './ImageArrowDownIcon'; +export { default as ImageSearchIcon } from './ImageSearchIcon'; +export { default as ImageTimesIcon } from './ImageTimesIcon'; +export { default as ImageSwitchIcon } from './ImageSwitchIcon'; +export { default as ImageTrashIcon } from './ImageTrashIcon'; +export { default as ImageMinusIcon } from './ImageMinusIcon'; +export { default as ImageBanIcon } from './ImageBanIcon'; +export { default as ImagePlusIcon } from './ImagePlusIcon'; +export { default as ImageExclamationIcon } from './ImageExclamationIcon'; +export { default as LightBulbIcon } from './LightBulbIcon'; +export { default as LightBulbExclamationIcon } from './LightBulbExclamationIcon'; +export { default as CloudIcon } from './CloudIcon'; +export { default as CloudCheckIcon } from './CloudCheckIcon'; +export { default as CloudPlusIcon } from './CloudPlusIcon'; +export { default as CloudMinusIcon } from './CloudMinusIcon'; +export { default as CloudArrowUpIcon } from './CloudArrowUpIcon'; +export { default as CloudArrowDownIcon } from './CloudArrowDownIcon'; +export { default as PersonIcon } from './PersonIcon'; +export { default as PeopleGroupIcon } from './PeopleGroupIcon'; +export { default as UserIdIcon } from './UserIdIcon'; +export { default as UserCogIcon } from './UserCogIcon'; +export { default as UserShieldIcon } from './UserShieldIcon'; +export { default as UserAtIcon } from './UserAtIcon'; +export { default as LocationIcon } from './LocationIcon'; +export { default as UserHeartIcon } from './UserHeartIcon'; +export { default as UserEnvelopeIcon } from './UserEnvelopeIcon'; +export { default as UserArrowDownIcon } from './UserArrowDownIcon'; +export { default as UserClockIcon } from './UserClockIcon'; +export { default as UserDollarIcon } from './UserDollarIcon'; +export { default as UserCheckIcon } from './UserCheckIcon'; +export { default as UserGroupIcon } from './UserGroupIcon'; +export { default as DollarSignIcon } from './DollarSignIcon'; +export { default as CreditCardIcon } from './CreditCardIcon'; +export { default as PaymentLinkIcon } from './PaymentLinkIcon'; +export { default as LockClosedIcon } from './LockClosedIcon'; +export { default as LockOpenedIcon } from './LockOpenedIcon'; +export { default as SigninIcon } from './SigninIcon'; +export { default as SignoutIcon } from './SignoutIcon'; +export { default as SigninAltIcon } from './SigninAltIcon'; +export { default as SignoutAltIcon } from './SignoutAltIcon'; +export { default as PlanIcon } from './PlanIcon'; +export { default as InvoiceIcon } from './InvoiceIcon'; +export { default as VaultIcon } from './VaultIcon'; +export { default as WalletIcon } from './WalletIcon'; +export { default as ShieldIcon } from './ShieldIcon'; +export { default as ShieldUserIcon } from './ShieldUserIcon'; +export { default as ShieldCheckIcon } from './ShieldCheckIcon'; +export { default as NewWindowPageIcon } from './NewWindowPageIcon'; +export { default as ScrewNutIcon } from './ScrewNutIcon'; +export { default as SlidersHIcon } from './SlidersHIcon'; +export { default as SlidersVIcon } from './SlidersVIcon'; +export { default as CogIcon } from './CogIcon'; +export { default as IntegrationsIcon } from './IntegrationsIcon'; +export { default as BurgerClassicIcon } from './BurgerClassicIcon'; +export { default as BurgerArrowRightIcon } from './BurgerArrowRightIcon'; +export { default as BurgerArrowLeftIcon } from './BurgerArrowLeftIcon'; +export { default as HomeIcon } from './HomeIcon'; +export { default as LifeRingIcon } from './LifeRingIcon'; +export { default as ClockIcon } from './ClockIcon'; +export { default as DashboardIcon } from './DashboardIcon'; +export { default as ChartPieIcon } from './ChartPieIcon'; +export { default as UsersCrownIcon } from './UsersCrownIcon'; +export { default as CreatorsClubIcon } from './CreatorsClubIcon'; +export { default as StarIcon } from './StarIcon'; +export { default as StarsIcon } from './StarsIcon'; +export { default as WandIcon } from './WandIcon'; +export { default as ThumbUpIcon } from './ThumbUpIcon'; +export { default as ThumbDownIcon } from './ThumbDownIcon'; +export { default as HeartIcon } from './HeartIcon'; +export { default as EngagementIcon } from './EngagementIcon'; +export { default as CrownIcon } from './CrownIcon'; +export { default as AngleRightIcon } from './AngleRightIcon'; +export { default as AngleLeftIcon } from './AngleLeftIcon'; +export { default as AngleUpIcon } from './AngleUpIcon'; +export { default as AngleDownIcon } from './AngleDownIcon'; +export { default as ChevronRightIcon } from './ChevronRightIcon'; +export { default as ChevronUpIcon } from './ChevronUpIcon'; +export { default as ChevronDownIcon } from './ChevronDownIcon'; +export { default as ChevronLeftIcon } from './ChevronLeftIcon'; +export { default as CaretRightIcon } from './CaretRightIcon'; +export { default as CaretLeftIcon } from './CaretLeftIcon'; +export { default as CaretUpIcon } from './CaretUpIcon'; +export { default as CaretDownIcon } from './CaretDownIcon'; +export { default as ArrowRightIcon } from './ArrowRightIcon'; +export { default as ArrowLeftIcon } from './ArrowLeftIcon'; +export { default as ArrowUpIcon } from './ArrowUpIcon'; +export { default as ArrowDownIcon } from './ArrowDownIcon'; +export { default as ArrowRightLargeIcon } from './ArrowRightLargeIcon'; +export { default as ArrowLeftLargeIcon } from './ArrowLeftLargeIcon'; +export { default as ArrowUpLargeIcon } from './ArrowUpLargeIcon'; +export { default as ArrowDownLargeIcon } from './ArrowDownLargeIcon'; +export { default as ArrowRetryIcon } from './ArrowRetryIcon'; +export { default as ArrowsSwitchIcon } from './ArrowsSwitchIcon'; +export { default as GlobeTimezoneIcon } from './GlobeTimezoneIcon'; +export { default as PinLocationIcon } from './PinLocationIcon'; +export { default as PinPlaceIcon } from './PinPlaceIcon'; +export { default as PrivateContentIcon } from './PrivateContentIcon'; +export { default as SensitiveIcon } from './SensitiveIcon'; +export { default as TimesCircleIcon } from './TimesCircleIcon'; +export { default as TrophyIcon } from './TrophyIcon'; +export { default as RadarIcon } from './RadarIcon'; +export { default as SquareIcon } from './SquareIcon'; +export { default as SquareMinusIcon } from './SquareMinusIcon'; +export { default as SquareCheckIcon } from './SquareCheckIcon'; +export { default as CircleIcon } from './CircleIcon'; +export { default as CircleDotIcon } from './CircleDotIcon'; +export { default as AsteriskIcon } from './AsteriskIcon'; +export { default as EnvelopeIcon } from './EnvelopeIcon'; +export { default as EnvelopeFlyingIcon } from './EnvelopeFlyingIcon'; +export { default as EnvelopeAtIcon } from './EnvelopeAtIcon'; +export { default as LinkIcon } from './LinkIcon'; +export { default as PaperplaneIcon } from './PaperplaneIcon'; +export { default as OutboxIcon } from './OutboxIcon'; +export { default as InboxIcon } from './InboxIcon'; +export { default as MailboxEmptyIcon } from './MailboxEmptyIcon'; +export { default as MailboxFullIcon } from './MailboxFullIcon'; +export { default as TrendArrowUpIcon } from './TrendArrowUpIcon'; +export { default as TrendArrowDownIcon } from './TrendArrowDownIcon'; +export { default as CalendarIcon } from './CalendarIcon'; +export { default as CalendarNineIcon } from './CalendarNineIcon'; +export { default as CalendarEndIcon } from './CalendarEndIcon'; +export { default as CalendarStarIcon } from './CalendarStarIcon'; +export { default as DomainIcon } from './DomainIcon'; +export { default as HeadphonesIcon } from './HeadphonesIcon'; +export { default as BadgeVerifiedIcon } from './BadgeVerifiedIcon'; +export { default as BadgeDollarIcon } from './BadgeDollarIcon'; +export { default as PlayIcon } from './PlayIcon'; +export { default as PauseIcon } from './PauseIcon'; +export { default as TimesIcon } from './TimesIcon'; +export { default as PlusIcon } from './PlusIcon'; +export { default as MinusIcon } from './MinusIcon'; +export { default as EqualIcon } from './EqualIcon'; +export { default as DivideIcon } from './DivideIcon'; +export { default as PercentIcon } from './PercentIcon'; +export { default as HashIcon } from './HashIcon'; +export { default as ExpandVerticalIcon } from './ExpandVerticalIcon'; +export { default as ShrinkVerticalIcon } from './ShrinkVerticalIcon'; +export { default as ExpandDiagonalIcon } from './ExpandDiagonalIcon'; +export { default as ShrinkDiagonalIcon } from './ShrinkDiagonalIcon'; +export { default as ChartTrendUpIcon } from './ChartTrendUpIcon'; +export { default as ChartTrendDownIcon } from './ChartTrendDownIcon'; +export { default as CursorArrowIcon } from './CursorArrowIcon'; +export { default as MegaphoneIcon } from './MegaphoneIcon'; +export { default as SmartphoneIcon } from './SmartphoneIcon'; +export { default as TabletIcon } from './TabletIcon'; +export { default as NotebookIcon } from './NotebookIcon'; +export { default as DesktopIcon } from './DesktopIcon'; +export { default as DesktopCheckIcon } from './DesktopCheckIcon'; +export { default as PackIcon } from './PackIcon'; +export { default as BalanceIcon } from './BalanceIcon'; +export { default as BillingInfoIcon } from './BillingInfoIcon'; +export { default as InfinityIcon } from './InfinityIcon'; +export { default as RacketIcon } from './RacketIcon'; +export { default as RacketBallIcon } from './RacketBallIcon'; +export { default as FilterIcon } from './FilterIcon'; +export { default as ArticleIcon } from './ArticleIcon'; +export { default as EspiralBookIcon } from './EspiralBookIcon'; +export { default as GoogleDriveIcon } from './GoogleDriveIcon'; +export { default as EmojiPissedOffIcon } from './EmojiPissedOffIcon'; +export { default as EllipsisVIcon } from './EllipsisVIcon'; +export { default as EllipsisHIcon } from './EllipsisHIcon'; +export { default as SocialTwitterIcon } from './SocialTwitterIcon'; +export { default as SocialWhatsappIcon } from './SocialWhatsappIcon'; +export { default as SocialFacebookIcon } from './SocialFacebookIcon'; +export { default as FolderIcon } from './FolderIcon'; +export { default as FolderMultipleIcon } from './FolderMultipleIcon'; +export { default as FolderAltIcon } from './FolderAltIcon'; +export { default as FolderRefreshIcon } from './FolderRefreshIcon'; +export { default as FolderLockIcon } from './FolderLockIcon'; +export { default as FolderSearchIcon } from './FolderSearchIcon'; +export { default as FolderPlusIcon } from './FolderPlusIcon'; +export { default as FolderArrowLeftIcon } from './FolderArrowLeftIcon'; +export { default as FolderArrowUpIcon } from './FolderArrowUpIcon'; +export { default as FolderArrowDownIcon } from './FolderArrowDownIcon'; +export { default as FolderArrowRightIcon } from './FolderArrowRightIcon'; +export { default as ArticleAltIcon } from './ArticleAltIcon'; +export { default as ArticlePlusIcon } from './ArticlePlusIcon'; +export { default as ShareIcon } from './ShareIcon'; +export { default as SocialUnsplashIcon } from './SocialUnsplashIcon'; +export { default as GifIcon } from './GifIcon'; +export { default as QrCodeIcon } from './QrCodeIcon'; +export { default as SidePeekIcon } from './SidePeekIcon'; +export { default as GlobeIcon } from './GlobeIcon'; +export { default as PixIcon } from './PixIcon'; +export { default as DataTextIcon } from './DataTextIcon'; +export { default as DataBooleanIcon } from './DataBooleanIcon'; +export { default as DataNumbersIcon } from './DataNumbersIcon'; +export { default as MarkerIcon } from './MarkerIcon'; diff --git a/packages/regular/src/types.tsx b/packages/regular/src/types.tsx new file mode 100644 index 0000000..82bd33c --- /dev/null +++ b/packages/regular/src/types.tsx @@ -0,0 +1,6 @@ +import * as React from 'react'; + +export interface IconProps extends React.SVGAttributes { + children?: never; + color?: string; +} \ No newline at end of file diff --git a/packages/solid/package.json b/packages/solid/package.json new file mode 100644 index 0000000..5ca70bf --- /dev/null +++ b/packages/solid/package.json @@ -0,0 +1,34 @@ +{ + "name": "@stash-ui/solid-icons", + "private": false, + "version": "1.0.0", + "license": "MIT", + "description": "React Solid Icons Set", + "authors": [ + "Tiago Gerken ", + "Pedro Ladeira " + ], + "module": "dist/solid-icons.esm.js", + "main": "index.js", + "types": "dist/index.d.ts", + "files": [ + "index.js", + "manifest.json" + ], + "publishConfig": { + "access": "public" + }, + "scripts": { + "generate-src": "generate-icons --file=X5DiJzGRQXCyEfBqocT235 --style=solid", + "build": "rimraf dist && tsdx build --format es,cjs --entry src/index.tsx", + "watch": "rimraf dist && tsdx watch --format es,cjs --entry src/index.tsx", + "prepublishOnly": "npm run build" + }, + "peerDependencies": { + "react": "^16.x || ^17.x || ^18.x" + }, + "devDependencies": { + "tsdx": "0.14.0", + "@stash-ui/generate-from-figma": "*" + } + } \ No newline at end of file diff --git a/packages/solid/readme.md b/packages/solid/readme.md new file mode 100644 index 0000000..46db66c --- /dev/null +++ b/packages/solid/readme.md @@ -0,0 +1,54 @@ +
@stash-ui/solid-icons
+
Solid icons variation.
+
+
+Website + · +GitHub + · +Figma + · +Discord +
+ +## Install + +Install the set of solid icons from your command line. + +#### With yarn + +```sh +yarn add @stash-ui/solid-icons +``` + +#### With npm + +```sh +npm install @stash-ui/solid-icons +``` + +## Getting started + +Add the SVG icon to your application. Include color where needed. + +```jsx +import { AngleDownIcon, AngleUpIcon } from '@stash-ui/solid-icons'; + +const App = () => { + return ( + + + ); +}; +``` + +## Authors + +- Tiago Gerken ([@tgerken](https://twitter.com/tgerken)) - [Pingback](https://pingback.com) +- Pedro Ladeira ([@pedrooladeira](https://twitter.com/pedrooladeira)) - [Pingback](https://pingback.com) + +## License + +Licensed under the MIT License, Copyright © 2022-present Pingback LLC. + +See [LICENSE](./LICENSE) for more information. diff --git a/packages/solid/src/ArrowDownIcon.tsx b/packages/solid/src/ArrowDownIcon.tsx new file mode 100644 index 0000000..3720541 --- /dev/null +++ b/packages/solid/src/ArrowDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowDownIcon; diff --git a/packages/solid/src/ArrowLeftIcon.tsx b/packages/solid/src/ArrowLeftIcon.tsx new file mode 100644 index 0000000..1dd6101 --- /dev/null +++ b/packages/solid/src/ArrowLeftIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowLeftIcon; diff --git a/packages/solid/src/ArrowRightIcon.tsx b/packages/solid/src/ArrowRightIcon.tsx new file mode 100644 index 0000000..c31235d --- /dev/null +++ b/packages/solid/src/ArrowRightIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowRightIcon; diff --git a/packages/solid/src/ArrowUpIcon.tsx b/packages/solid/src/ArrowUpIcon.tsx new file mode 100644 index 0000000..e43e075 --- /dev/null +++ b/packages/solid/src/ArrowUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowUpIcon; diff --git a/packages/solid/src/ArrowsSwitchIcon.tsx b/packages/solid/src/ArrowsSwitchIcon.tsx new file mode 100644 index 0000000..067e717 --- /dev/null +++ b/packages/solid/src/ArrowsSwitchIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArrowsSwitchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ArrowsSwitchIcon; diff --git a/packages/solid/src/ArticleAltIcon.tsx b/packages/solid/src/ArticleAltIcon.tsx new file mode 100644 index 0000000..d7cba60 --- /dev/null +++ b/packages/solid/src/ArticleAltIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticleAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ArticleAltIcon; diff --git a/packages/solid/src/ArticleIcon.tsx b/packages/solid/src/ArticleIcon.tsx new file mode 100644 index 0000000..9e8e86c --- /dev/null +++ b/packages/solid/src/ArticleIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ArticleIcon; diff --git a/packages/solid/src/ArticlePlusIcon.tsx b/packages/solid/src/ArticlePlusIcon.tsx new file mode 100644 index 0000000..5efe9fd --- /dev/null +++ b/packages/solid/src/ArticlePlusIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ArticlePlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ArticlePlusIcon; diff --git a/packages/solid/src/AsteriskIcon.tsx b/packages/solid/src/AsteriskIcon.tsx new file mode 100644 index 0000000..d745a9b --- /dev/null +++ b/packages/solid/src/AsteriskIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AsteriskIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AsteriskIcon; diff --git a/packages/solid/src/AtSymbolIcon.tsx b/packages/solid/src/AtSymbolIcon.tsx new file mode 100644 index 0000000..b843469 --- /dev/null +++ b/packages/solid/src/AtSymbolIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const AtSymbolIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default AtSymbolIcon; diff --git a/packages/solid/src/BadgeDollarIcon.tsx b/packages/solid/src/BadgeDollarIcon.tsx new file mode 100644 index 0000000..5d36fba --- /dev/null +++ b/packages/solid/src/BadgeDollarIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BadgeDollarIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BadgeDollarIcon; diff --git a/packages/solid/src/BadgeVerifiedIcon.tsx b/packages/solid/src/BadgeVerifiedIcon.tsx new file mode 100644 index 0000000..bdec708 --- /dev/null +++ b/packages/solid/src/BadgeVerifiedIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BadgeVerifiedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default BadgeVerifiedIcon; diff --git a/packages/solid/src/BalanceIcon.tsx b/packages/solid/src/BalanceIcon.tsx new file mode 100644 index 0000000..f2a856b --- /dev/null +++ b/packages/solid/src/BalanceIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BalanceIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BalanceIcon; diff --git a/packages/solid/src/BillingInfoIcon.tsx b/packages/solid/src/BillingInfoIcon.tsx new file mode 100644 index 0000000..47e4c2c --- /dev/null +++ b/packages/solid/src/BillingInfoIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const BillingInfoIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default BillingInfoIcon; diff --git a/packages/solid/src/ChartTrendDownIcon.tsx b/packages/solid/src/ChartTrendDownIcon.tsx new file mode 100644 index 0000000..d568755 --- /dev/null +++ b/packages/solid/src/ChartTrendDownIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartTrendDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChartTrendDownIcon; diff --git a/packages/solid/src/ChartTrendUpIcon.tsx b/packages/solid/src/ChartTrendUpIcon.tsx new file mode 100644 index 0000000..f7e4ff1 --- /dev/null +++ b/packages/solid/src/ChartTrendUpIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChartTrendUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChartTrendUpIcon; diff --git a/packages/solid/src/CheckCircleIcon.tsx b/packages/solid/src/CheckCircleIcon.tsx new file mode 100644 index 0000000..3488b6b --- /dev/null +++ b/packages/solid/src/CheckCircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CheckCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CheckCircleIcon; diff --git a/packages/solid/src/CheckIcon.tsx b/packages/solid/src/CheckIcon.tsx new file mode 100644 index 0000000..1bb518e --- /dev/null +++ b/packages/solid/src/CheckIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CheckIcon; diff --git a/packages/solid/src/ChevronDownIcon.tsx b/packages/solid/src/ChevronDownIcon.tsx new file mode 100644 index 0000000..9dc00ed --- /dev/null +++ b/packages/solid/src/ChevronDownIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronDownIcon; diff --git a/packages/solid/src/ChevronLeftIcon.tsx b/packages/solid/src/ChevronLeftIcon.tsx new file mode 100644 index 0000000..295da3b --- /dev/null +++ b/packages/solid/src/ChevronLeftIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronLeftIcon; diff --git a/packages/solid/src/ChevronRightIcon.tsx b/packages/solid/src/ChevronRightIcon.tsx new file mode 100644 index 0000000..88d59ef --- /dev/null +++ b/packages/solid/src/ChevronRightIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronRightIcon; diff --git a/packages/solid/src/ChevronUpIcon.tsx b/packages/solid/src/ChevronUpIcon.tsx new file mode 100644 index 0000000..4dd8f62 --- /dev/null +++ b/packages/solid/src/ChevronUpIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ChevronUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ChevronUpIcon; diff --git a/packages/solid/src/CircleDotIcon.tsx b/packages/solid/src/CircleDotIcon.tsx new file mode 100644 index 0000000..a246d8b --- /dev/null +++ b/packages/solid/src/CircleDotIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CircleDotIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CircleDotIcon; diff --git a/packages/solid/src/CircleIcon.tsx b/packages/solid/src/CircleIcon.tsx new file mode 100644 index 0000000..48f169f --- /dev/null +++ b/packages/solid/src/CircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CircleIcon; diff --git a/packages/solid/src/CloudCheckIcon.tsx b/packages/solid/src/CloudCheckIcon.tsx new file mode 100644 index 0000000..9e4bfd2 --- /dev/null +++ b/packages/solid/src/CloudCheckIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CloudCheckIcon; diff --git a/packages/solid/src/CloudIcon.tsx b/packages/solid/src/CloudIcon.tsx new file mode 100644 index 0000000..c9961f8 --- /dev/null +++ b/packages/solid/src/CloudIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CloudIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CloudIcon; diff --git a/packages/solid/src/CreditCardIcon.tsx b/packages/solid/src/CreditCardIcon.tsx new file mode 100644 index 0000000..2d93553 --- /dev/null +++ b/packages/solid/src/CreditCardIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CreditCardIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CreditCardIcon; diff --git a/packages/solid/src/CursorArrowIcon.tsx b/packages/solid/src/CursorArrowIcon.tsx new file mode 100644 index 0000000..7ed754e --- /dev/null +++ b/packages/solid/src/CursorArrowIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const CursorArrowIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default CursorArrowIcon; diff --git a/packages/solid/src/DataBooleanIcon.tsx b/packages/solid/src/DataBooleanIcon.tsx new file mode 100644 index 0000000..e64ac53 --- /dev/null +++ b/packages/solid/src/DataBooleanIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataBooleanIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DataBooleanIcon; diff --git a/packages/solid/src/DataNumbersIcon.tsx b/packages/solid/src/DataNumbersIcon.tsx new file mode 100644 index 0000000..6efc664 --- /dev/null +++ b/packages/solid/src/DataNumbersIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataNumbersIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DataNumbersIcon; diff --git a/packages/solid/src/DataTextIcon.tsx b/packages/solid/src/DataTextIcon.tsx new file mode 100644 index 0000000..6f77ece --- /dev/null +++ b/packages/solid/src/DataTextIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DataTextIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DataTextIcon; diff --git a/packages/solid/src/DesktopCheckIcon.tsx b/packages/solid/src/DesktopCheckIcon.tsx new file mode 100644 index 0000000..db8384e --- /dev/null +++ b/packages/solid/src/DesktopCheckIcon.tsx @@ -0,0 +1,37 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DesktopCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default DesktopCheckIcon; diff --git a/packages/solid/src/DesktopIcon.tsx b/packages/solid/src/DesktopIcon.tsx new file mode 100644 index 0000000..fe5ed8d --- /dev/null +++ b/packages/solid/src/DesktopIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DesktopIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default DesktopIcon; diff --git a/packages/solid/src/DivideIcon.tsx b/packages/solid/src/DivideIcon.tsx new file mode 100644 index 0000000..3d82e4f --- /dev/null +++ b/packages/solid/src/DivideIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DivideIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DivideIcon; diff --git a/packages/solid/src/DollarSignIcon.tsx b/packages/solid/src/DollarSignIcon.tsx new file mode 100644 index 0000000..57223d4 --- /dev/null +++ b/packages/solid/src/DollarSignIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const DollarSignIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default DollarSignIcon; diff --git a/packages/solid/src/EllipsisHIcon.tsx b/packages/solid/src/EllipsisHIcon.tsx new file mode 100644 index 0000000..13be15e --- /dev/null +++ b/packages/solid/src/EllipsisHIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EllipsisHIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EllipsisHIcon; diff --git a/packages/solid/src/EllipsisVIcon.tsx b/packages/solid/src/EllipsisVIcon.tsx new file mode 100644 index 0000000..3a66af9 --- /dev/null +++ b/packages/solid/src/EllipsisVIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EllipsisVIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EllipsisVIcon; diff --git a/packages/solid/src/EmojiPissedOffIcon.tsx b/packages/solid/src/EmojiPissedOffIcon.tsx new file mode 100644 index 0000000..fbac826 --- /dev/null +++ b/packages/solid/src/EmojiPissedOffIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EmojiPissedOffIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EmojiPissedOffIcon; diff --git a/packages/solid/src/EqualIcon.tsx b/packages/solid/src/EqualIcon.tsx new file mode 100644 index 0000000..765cf03 --- /dev/null +++ b/packages/solid/src/EqualIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EqualIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EqualIcon; diff --git a/packages/solid/src/EspiralBookIcon.tsx b/packages/solid/src/EspiralBookIcon.tsx new file mode 100644 index 0000000..4c43a26 --- /dev/null +++ b/packages/solid/src/EspiralBookIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EspiralBookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EspiralBookIcon; diff --git a/packages/solid/src/ExclamationAlertIcon.tsx b/packages/solid/src/ExclamationAlertIcon.tsx new file mode 100644 index 0000000..f64cdf3 --- /dev/null +++ b/packages/solid/src/ExclamationAlertIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationAlertIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default ExclamationAlertIcon; diff --git a/packages/solid/src/ExclamationCircleIcon.tsx b/packages/solid/src/ExclamationCircleIcon.tsx new file mode 100644 index 0000000..a18a3aa --- /dev/null +++ b/packages/solid/src/ExclamationCircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExclamationCircleIcon; diff --git a/packages/solid/src/ExclamationTriangleIcon.tsx b/packages/solid/src/ExclamationTriangleIcon.tsx new file mode 100644 index 0000000..1f2c751 --- /dev/null +++ b/packages/solid/src/ExclamationTriangleIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExclamationTriangleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExclamationTriangleIcon; diff --git a/packages/solid/src/ExpandDiagonalIcon.tsx b/packages/solid/src/ExpandDiagonalIcon.tsx new file mode 100644 index 0000000..eb22f79 --- /dev/null +++ b/packages/solid/src/ExpandDiagonalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExpandDiagonalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExpandDiagonalIcon; diff --git a/packages/solid/src/ExpandVerticalIcon.tsx b/packages/solid/src/ExpandVerticalIcon.tsx new file mode 100644 index 0000000..9844272 --- /dev/null +++ b/packages/solid/src/ExpandVerticalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExpandVerticalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExpandVerticalIcon; diff --git a/packages/solid/src/ExplicitContentIcon.tsx b/packages/solid/src/ExplicitContentIcon.tsx new file mode 100644 index 0000000..00c70e8 --- /dev/null +++ b/packages/solid/src/ExplicitContentIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ExplicitContentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ExplicitContentIcon; diff --git a/packages/solid/src/EyeClosedIcon.tsx b/packages/solid/src/EyeClosedIcon.tsx new file mode 100644 index 0000000..531e3a3 --- /dev/null +++ b/packages/solid/src/EyeClosedIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EyeClosedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default EyeClosedIcon; diff --git a/packages/solid/src/EyeOpenedIcon.tsx b/packages/solid/src/EyeOpenedIcon.tsx new file mode 100644 index 0000000..53da25c --- /dev/null +++ b/packages/solid/src/EyeOpenedIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const EyeOpenedIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default EyeOpenedIcon; diff --git a/packages/solid/src/FilterIcon.tsx b/packages/solid/src/FilterIcon.tsx new file mode 100644 index 0000000..00f77af --- /dev/null +++ b/packages/solid/src/FilterIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FilterIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FilterIcon; diff --git a/packages/solid/src/FolderAltIcon.tsx b/packages/solid/src/FolderAltIcon.tsx new file mode 100644 index 0000000..e764a9b --- /dev/null +++ b/packages/solid/src/FolderAltIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderAltIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderAltIcon; diff --git a/packages/solid/src/FolderArrowDownIcon.tsx b/packages/solid/src/FolderArrowDownIcon.tsx new file mode 100644 index 0000000..bba682a --- /dev/null +++ b/packages/solid/src/FolderArrowDownIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowDownIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderArrowDownIcon; diff --git a/packages/solid/src/FolderArrowLeftIcon.tsx b/packages/solid/src/FolderArrowLeftIcon.tsx new file mode 100644 index 0000000..2b9a10b --- /dev/null +++ b/packages/solid/src/FolderArrowLeftIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowLeftIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderArrowLeftIcon; diff --git a/packages/solid/src/FolderArrowRightIcon.tsx b/packages/solid/src/FolderArrowRightIcon.tsx new file mode 100644 index 0000000..7738caf --- /dev/null +++ b/packages/solid/src/FolderArrowRightIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowRightIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderArrowRightIcon; diff --git a/packages/solid/src/FolderArrowUpIcon.tsx b/packages/solid/src/FolderArrowUpIcon.tsx new file mode 100644 index 0000000..5bfabb4 --- /dev/null +++ b/packages/solid/src/FolderArrowUpIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderArrowUpIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderArrowUpIcon; diff --git a/packages/solid/src/FolderIcon.tsx b/packages/solid/src/FolderIcon.tsx new file mode 100644 index 0000000..7a9474e --- /dev/null +++ b/packages/solid/src/FolderIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderIcon; diff --git a/packages/solid/src/FolderLockIcon.tsx b/packages/solid/src/FolderLockIcon.tsx new file mode 100644 index 0000000..aa529c7 --- /dev/null +++ b/packages/solid/src/FolderLockIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderLockIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderLockIcon; diff --git a/packages/solid/src/FolderMultipleIcon.tsx b/packages/solid/src/FolderMultipleIcon.tsx new file mode 100644 index 0000000..29fd694 --- /dev/null +++ b/packages/solid/src/FolderMultipleIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderMultipleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderMultipleIcon; diff --git a/packages/solid/src/FolderPlusIcon.tsx b/packages/solid/src/FolderPlusIcon.tsx new file mode 100644 index 0000000..fa85160 --- /dev/null +++ b/packages/solid/src/FolderPlusIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderPlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderPlusIcon; diff --git a/packages/solid/src/FolderRefreshIcon.tsx b/packages/solid/src/FolderRefreshIcon.tsx new file mode 100644 index 0000000..3e41113 --- /dev/null +++ b/packages/solid/src/FolderRefreshIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderRefreshIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default FolderRefreshIcon; diff --git a/packages/solid/src/FolderSearchIcon.tsx b/packages/solid/src/FolderSearchIcon.tsx new file mode 100644 index 0000000..a5ae92f --- /dev/null +++ b/packages/solid/src/FolderSearchIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const FolderSearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default FolderSearchIcon; diff --git a/packages/solid/src/GifIcon.tsx b/packages/solid/src/GifIcon.tsx new file mode 100644 index 0000000..88f23f2 --- /dev/null +++ b/packages/solid/src/GifIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GifIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default GifIcon; diff --git a/packages/solid/src/GlobeIcon.tsx b/packages/solid/src/GlobeIcon.tsx new file mode 100644 index 0000000..010c7d9 --- /dev/null +++ b/packages/solid/src/GlobeIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GlobeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default GlobeIcon; diff --git a/packages/solid/src/GlobeTimezoneIcon.tsx b/packages/solid/src/GlobeTimezoneIcon.tsx new file mode 100644 index 0000000..764b7cb --- /dev/null +++ b/packages/solid/src/GlobeTimezoneIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GlobeTimezoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default GlobeTimezoneIcon; diff --git a/packages/solid/src/GoogleDriveIcon.tsx b/packages/solid/src/GoogleDriveIcon.tsx new file mode 100644 index 0000000..b9a6adb --- /dev/null +++ b/packages/solid/src/GoogleDriveIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const GoogleDriveIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default GoogleDriveIcon; diff --git a/packages/solid/src/HashIcon.tsx b/packages/solid/src/HashIcon.tsx new file mode 100644 index 0000000..e3b7b87 --- /dev/null +++ b/packages/solid/src/HashIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HashIcon; diff --git a/packages/solid/src/HeadphonesIcon.tsx b/packages/solid/src/HeadphonesIcon.tsx new file mode 100644 index 0000000..41c45af --- /dev/null +++ b/packages/solid/src/HeadphonesIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HeadphonesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HeadphonesIcon; diff --git a/packages/solid/src/HeartIcon.tsx b/packages/solid/src/HeartIcon.tsx new file mode 100644 index 0000000..32c094b --- /dev/null +++ b/packages/solid/src/HeartIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const HeartIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default HeartIcon; diff --git a/packages/solid/src/InfinityIcon.tsx b/packages/solid/src/InfinityIcon.tsx new file mode 100644 index 0000000..3875789 --- /dev/null +++ b/packages/solid/src/InfinityIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InfinityIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default InfinityIcon; diff --git a/packages/solid/src/InfoCircleIcon.tsx b/packages/solid/src/InfoCircleIcon.tsx new file mode 100644 index 0000000..f17d7ce --- /dev/null +++ b/packages/solid/src/InfoCircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const InfoCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default InfoCircleIcon; diff --git a/packages/solid/src/LastUpdatesIcon.tsx b/packages/solid/src/LastUpdatesIcon.tsx new file mode 100644 index 0000000..efd708c --- /dev/null +++ b/packages/solid/src/LastUpdatesIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const LastUpdatesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default LastUpdatesIcon; diff --git a/packages/solid/src/MarkerIcon.tsx b/packages/solid/src/MarkerIcon.tsx new file mode 100644 index 0000000..a2294f2 --- /dev/null +++ b/packages/solid/src/MarkerIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MarkerIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default MarkerIcon; diff --git a/packages/solid/src/MegaphoneIcon.tsx b/packages/solid/src/MegaphoneIcon.tsx new file mode 100644 index 0000000..700c1e2 --- /dev/null +++ b/packages/solid/src/MegaphoneIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MegaphoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MegaphoneIcon; diff --git a/packages/solid/src/MinusIcon.tsx b/packages/solid/src/MinusIcon.tsx new file mode 100644 index 0000000..1960d38 --- /dev/null +++ b/packages/solid/src/MinusIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const MinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default MinusIcon; diff --git a/packages/solid/src/NotebookIcon.tsx b/packages/solid/src/NotebookIcon.tsx new file mode 100644 index 0000000..808362c --- /dev/null +++ b/packages/solid/src/NotebookIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const NotebookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default NotebookIcon; diff --git a/packages/solid/src/PackIcon.tsx b/packages/solid/src/PackIcon.tsx new file mode 100644 index 0000000..93930d8 --- /dev/null +++ b/packages/solid/src/PackIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PackIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PackIcon; diff --git a/packages/solid/src/PaperplaneIcon.tsx b/packages/solid/src/PaperplaneIcon.tsx new file mode 100644 index 0000000..7f7f82a --- /dev/null +++ b/packages/solid/src/PaperplaneIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PaperplaneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PaperplaneIcon; diff --git a/packages/solid/src/PauseIcon.tsx b/packages/solid/src/PauseIcon.tsx new file mode 100644 index 0000000..9e87e0c --- /dev/null +++ b/packages/solid/src/PauseIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PauseIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PauseIcon; diff --git a/packages/solid/src/PaymentLinkIcon.tsx b/packages/solid/src/PaymentLinkIcon.tsx new file mode 100644 index 0000000..948fa15 --- /dev/null +++ b/packages/solid/src/PaymentLinkIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PaymentLinkIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default PaymentLinkIcon; diff --git a/packages/solid/src/PercentIcon.tsx b/packages/solid/src/PercentIcon.tsx new file mode 100644 index 0000000..23ac382 --- /dev/null +++ b/packages/solid/src/PercentIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PercentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PercentIcon; diff --git a/packages/solid/src/PixIcon.tsx b/packages/solid/src/PixIcon.tsx new file mode 100644 index 0000000..c06bfe4 --- /dev/null +++ b/packages/solid/src/PixIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PixIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default PixIcon; diff --git a/packages/solid/src/PlayIcon.tsx b/packages/solid/src/PlayIcon.tsx new file mode 100644 index 0000000..c14f53e --- /dev/null +++ b/packages/solid/src/PlayIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlayIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PlayIcon; diff --git a/packages/solid/src/PlusIcon.tsx b/packages/solid/src/PlusIcon.tsx new file mode 100644 index 0000000..9ce07c2 --- /dev/null +++ b/packages/solid/src/PlusIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PlusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default PlusIcon; diff --git a/packages/solid/src/PrivateContentIcon.tsx b/packages/solid/src/PrivateContentIcon.tsx new file mode 100644 index 0000000..4cc6f25 --- /dev/null +++ b/packages/solid/src/PrivateContentIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const PrivateContentIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default PrivateContentIcon; diff --git a/packages/solid/src/QrCodeIcon.tsx b/packages/solid/src/QrCodeIcon.tsx new file mode 100644 index 0000000..326acb4 --- /dev/null +++ b/packages/solid/src/QrCodeIcon.tsx @@ -0,0 +1,29 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const QrCodeIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default QrCodeIcon; diff --git a/packages/solid/src/QuestionIcon.tsx b/packages/solid/src/QuestionIcon.tsx new file mode 100644 index 0000000..038a969 --- /dev/null +++ b/packages/solid/src/QuestionIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const QuestionIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default QuestionIcon; diff --git a/packages/solid/src/RacketBallIcon.tsx b/packages/solid/src/RacketBallIcon.tsx new file mode 100644 index 0000000..1ba08c3 --- /dev/null +++ b/packages/solid/src/RacketBallIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RacketBallIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default RacketBallIcon; diff --git a/packages/solid/src/RacketIcon.tsx b/packages/solid/src/RacketIcon.tsx new file mode 100644 index 0000000..999db14 --- /dev/null +++ b/packages/solid/src/RacketIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const RacketIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default RacketIcon; diff --git a/packages/solid/src/SearchBoxIcon.tsx b/packages/solid/src/SearchBoxIcon.tsx new file mode 100644 index 0000000..269f893 --- /dev/null +++ b/packages/solid/src/SearchBoxIcon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchBoxIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + + ); + } +); + +export default SearchBoxIcon; diff --git a/packages/solid/src/SearchIcon.tsx b/packages/solid/src/SearchIcon.tsx new file mode 100644 index 0000000..682ad39 --- /dev/null +++ b/packages/solid/src/SearchIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SearchIcon; diff --git a/packages/solid/src/SearchSplitIcon.tsx b/packages/solid/src/SearchSplitIcon.tsx new file mode 100644 index 0000000..f4b2157 --- /dev/null +++ b/packages/solid/src/SearchSplitIcon.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SearchSplitIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + + ); + } +); + +export default SearchSplitIcon; diff --git a/packages/solid/src/SensitiveIcon.tsx b/packages/solid/src/SensitiveIcon.tsx new file mode 100644 index 0000000..d96a0e8 --- /dev/null +++ b/packages/solid/src/SensitiveIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SensitiveIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SensitiveIcon; diff --git a/packages/solid/src/ShareIcon.tsx b/packages/solid/src/ShareIcon.tsx new file mode 100644 index 0000000..1842127 --- /dev/null +++ b/packages/solid/src/ShareIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShareIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShareIcon; diff --git a/packages/solid/src/ShrinkDiagonalIcon.tsx b/packages/solid/src/ShrinkDiagonalIcon.tsx new file mode 100644 index 0000000..33918ca --- /dev/null +++ b/packages/solid/src/ShrinkDiagonalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShrinkDiagonalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShrinkDiagonalIcon; diff --git a/packages/solid/src/ShrinkVerticalIcon.tsx b/packages/solid/src/ShrinkVerticalIcon.tsx new file mode 100644 index 0000000..40217af --- /dev/null +++ b/packages/solid/src/ShrinkVerticalIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const ShrinkVerticalIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default ShrinkVerticalIcon; diff --git a/packages/solid/src/SidePeekIcon.tsx b/packages/solid/src/SidePeekIcon.tsx new file mode 100644 index 0000000..cfd4ee7 --- /dev/null +++ b/packages/solid/src/SidePeekIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SidePeekIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SidePeekIcon; diff --git a/packages/solid/src/SmartphoneIcon.tsx b/packages/solid/src/SmartphoneIcon.tsx new file mode 100644 index 0000000..3e386d2 --- /dev/null +++ b/packages/solid/src/SmartphoneIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SmartphoneIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SmartphoneIcon; diff --git a/packages/solid/src/SocialFacebookIcon.tsx b/packages/solid/src/SocialFacebookIcon.tsx new file mode 100644 index 0000000..9ad9d5a --- /dev/null +++ b/packages/solid/src/SocialFacebookIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialFacebookIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialFacebookIcon; diff --git a/packages/solid/src/SocialTwitterIcon.tsx b/packages/solid/src/SocialTwitterIcon.tsx new file mode 100644 index 0000000..205c7a7 --- /dev/null +++ b/packages/solid/src/SocialTwitterIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialTwitterIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialTwitterIcon; diff --git a/packages/solid/src/SocialUnsplashIcon.tsx b/packages/solid/src/SocialUnsplashIcon.tsx new file mode 100644 index 0000000..89707f9 --- /dev/null +++ b/packages/solid/src/SocialUnsplashIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialUnsplashIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialUnsplashIcon; diff --git a/packages/solid/src/SocialWhatsappIcon.tsx b/packages/solid/src/SocialWhatsappIcon.tsx new file mode 100644 index 0000000..ea2880e --- /dev/null +++ b/packages/solid/src/SocialWhatsappIcon.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SocialWhatsappIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SocialWhatsappIcon; diff --git a/packages/solid/src/SquareCheckIcon.tsx b/packages/solid/src/SquareCheckIcon.tsx new file mode 100644 index 0000000..980dbcc --- /dev/null +++ b/packages/solid/src/SquareCheckIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareCheckIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SquareCheckIcon; diff --git a/packages/solid/src/SquareIcon.tsx b/packages/solid/src/SquareIcon.tsx new file mode 100644 index 0000000..3900765 --- /dev/null +++ b/packages/solid/src/SquareIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SquareIcon; diff --git a/packages/solid/src/SquareMinusIcon.tsx b/packages/solid/src/SquareMinusIcon.tsx new file mode 100644 index 0000000..718b0d5 --- /dev/null +++ b/packages/solid/src/SquareMinusIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const SquareMinusIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default SquareMinusIcon; diff --git a/packages/solid/src/TabletIcon.tsx b/packages/solid/src/TabletIcon.tsx new file mode 100644 index 0000000..ea8c5f1 --- /dev/null +++ b/packages/solid/src/TabletIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TabletIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TabletIcon; diff --git a/packages/solid/src/TimesCircleIcon.tsx b/packages/solid/src/TimesCircleIcon.tsx new file mode 100644 index 0000000..5c7925b --- /dev/null +++ b/packages/solid/src/TimesCircleIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TimesCircleIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TimesCircleIcon; diff --git a/packages/solid/src/TimesIcon.tsx b/packages/solid/src/TimesIcon.tsx new file mode 100644 index 0000000..6401a63 --- /dev/null +++ b/packages/solid/src/TimesIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TimesIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TimesIcon; diff --git a/packages/solid/src/TrophyIcon.tsx b/packages/solid/src/TrophyIcon.tsx new file mode 100644 index 0000000..a9927ac --- /dev/null +++ b/packages/solid/src/TrophyIcon.tsx @@ -0,0 +1,25 @@ +import * as React from 'react'; +import { IconProps } from './types'; + +export const TrophyIcon = React.forwardRef( + ({ color = 'currentColor', ...props }, forwardedRef) => { + return ( + + + + ); + } +); + +export default TrophyIcon; diff --git a/packages/solid/src/index.tsx b/packages/solid/src/index.tsx new file mode 100644 index 0000000..e573b3e --- /dev/null +++ b/packages/solid/src/index.tsx @@ -0,0 +1,107 @@ +export { default as SearchIcon } from './SearchIcon'; +export { default as SearchSplitIcon } from './SearchSplitIcon'; +export { default as LastUpdatesIcon } from './LastUpdatesIcon'; +export { default as SearchBoxIcon } from './SearchBoxIcon'; +export { default as AtSymbolIcon } from './AtSymbolIcon'; +export { default as InfoCircleIcon } from './InfoCircleIcon'; +export { default as QuestionIcon } from './QuestionIcon'; +export { default as ExclamationTriangleIcon } from './ExclamationTriangleIcon'; +export { default as ExclamationCircleIcon } from './ExclamationCircleIcon'; +export { default as ExclamationAlertIcon } from './ExclamationAlertIcon'; +export { default as ExplicitContentIcon } from './ExplicitContentIcon'; +export { default as CheckIcon } from './CheckIcon'; +export { default as EyeOpenedIcon } from './EyeOpenedIcon'; +export { default as EyeClosedIcon } from './EyeClosedIcon'; +export { default as CheckCircleIcon } from './CheckCircleIcon'; +export { default as CloudIcon } from './CloudIcon'; +export { default as CloudCheckIcon } from './CloudCheckIcon'; +export { default as DollarSignIcon } from './DollarSignIcon'; +export { default as CreditCardIcon } from './CreditCardIcon'; +export { default as PaymentLinkIcon } from './PaymentLinkIcon'; +export { default as HeartIcon } from './HeartIcon'; +export { default as ChevronRightIcon } from './ChevronRightIcon'; +export { default as ChevronUpIcon } from './ChevronUpIcon'; +export { default as ChevronDownIcon } from './ChevronDownIcon'; +export { default as ChevronLeftIcon } from './ChevronLeftIcon'; +export { default as ArrowRightIcon } from './ArrowRightIcon'; +export { default as ArrowLeftIcon } from './ArrowLeftIcon'; +export { default as ArrowUpIcon } from './ArrowUpIcon'; +export { default as ArrowDownIcon } from './ArrowDownIcon'; +export { default as ArrowsSwitchIcon } from './ArrowsSwitchIcon'; +export { default as GlobeTimezoneIcon } from './GlobeTimezoneIcon'; +export { default as PrivateContentIcon } from './PrivateContentIcon'; +export { default as SensitiveIcon } from './SensitiveIcon'; +export { default as TimesCircleIcon } from './TimesCircleIcon'; +export { default as TrophyIcon } from './TrophyIcon'; +export { default as SquareIcon } from './SquareIcon'; +export { default as SquareMinusIcon } from './SquareMinusIcon'; +export { default as SquareCheckIcon } from './SquareCheckIcon'; +export { default as CircleIcon } from './CircleIcon'; +export { default as CircleDotIcon } from './CircleDotIcon'; +export { default as AsteriskIcon } from './AsteriskIcon'; +export { default as PaperplaneIcon } from './PaperplaneIcon'; +export { default as HeadphonesIcon } from './HeadphonesIcon'; +export { default as BadgeVerifiedIcon } from './BadgeVerifiedIcon'; +export { default as BadgeDollarIcon } from './BadgeDollarIcon'; +export { default as PlayIcon } from './PlayIcon'; +export { default as PauseIcon } from './PauseIcon'; +export { default as TimesIcon } from './TimesIcon'; +export { default as PlusIcon } from './PlusIcon'; +export { default as MinusIcon } from './MinusIcon'; +export { default as EqualIcon } from './EqualIcon'; +export { default as DivideIcon } from './DivideIcon'; +export { default as PercentIcon } from './PercentIcon'; +export { default as HashIcon } from './HashIcon'; +export { default as ExpandVerticalIcon } from './ExpandVerticalIcon'; +export { default as ShrinkVerticalIcon } from './ShrinkVerticalIcon'; +export { default as ExpandDiagonalIcon } from './ExpandDiagonalIcon'; +export { default as ShrinkDiagonalIcon } from './ShrinkDiagonalIcon'; +export { default as ChartTrendUpIcon } from './ChartTrendUpIcon'; +export { default as ChartTrendDownIcon } from './ChartTrendDownIcon'; +export { default as CursorArrowIcon } from './CursorArrowIcon'; +export { default as MegaphoneIcon } from './MegaphoneIcon'; +export { default as SmartphoneIcon } from './SmartphoneIcon'; +export { default as TabletIcon } from './TabletIcon'; +export { default as NotebookIcon } from './NotebookIcon'; +export { default as DesktopIcon } from './DesktopIcon'; +export { default as DesktopCheckIcon } from './DesktopCheckIcon'; +export { default as PackIcon } from './PackIcon'; +export { default as BalanceIcon } from './BalanceIcon'; +export { default as BillingInfoIcon } from './BillingInfoIcon'; +export { default as InfinityIcon } from './InfinityIcon'; +export { default as RacketIcon } from './RacketIcon'; +export { default as RacketBallIcon } from './RacketBallIcon'; +export { default as FilterIcon } from './FilterIcon'; +export { default as ArticleIcon } from './ArticleIcon'; +export { default as EspiralBookIcon } from './EspiralBookIcon'; +export { default as GoogleDriveIcon } from './GoogleDriveIcon'; +export { default as EmojiPissedOffIcon } from './EmojiPissedOffIcon'; +export { default as EllipsisVIcon } from './EllipsisVIcon'; +export { default as EllipsisHIcon } from './EllipsisHIcon'; +export { default as SocialTwitterIcon } from './SocialTwitterIcon'; +export { default as SocialWhatsappIcon } from './SocialWhatsappIcon'; +export { default as SocialFacebookIcon } from './SocialFacebookIcon'; +export { default as FolderIcon } from './FolderIcon'; +export { default as FolderMultipleIcon } from './FolderMultipleIcon'; +export { default as FolderAltIcon } from './FolderAltIcon'; +export { default as FolderRefreshIcon } from './FolderRefreshIcon'; +export { default as FolderLockIcon } from './FolderLockIcon'; +export { default as FolderSearchIcon } from './FolderSearchIcon'; +export { default as FolderPlusIcon } from './FolderPlusIcon'; +export { default as FolderArrowLeftIcon } from './FolderArrowLeftIcon'; +export { default as FolderArrowUpIcon } from './FolderArrowUpIcon'; +export { default as FolderArrowDownIcon } from './FolderArrowDownIcon'; +export { default as FolderArrowRightIcon } from './FolderArrowRightIcon'; +export { default as ArticleAltIcon } from './ArticleAltIcon'; +export { default as ArticlePlusIcon } from './ArticlePlusIcon'; +export { default as ShareIcon } from './ShareIcon'; +export { default as SocialUnsplashIcon } from './SocialUnsplashIcon'; +export { default as GifIcon } from './GifIcon'; +export { default as QrCodeIcon } from './QrCodeIcon'; +export { default as SidePeekIcon } from './SidePeekIcon'; +export { default as GlobeIcon } from './GlobeIcon'; +export { default as PixIcon } from './PixIcon'; +export { default as DataTextIcon } from './DataTextIcon'; +export { default as DataBooleanIcon } from './DataBooleanIcon'; +export { default as DataNumbersIcon } from './DataNumbersIcon'; +export { default as MarkerIcon } from './MarkerIcon'; diff --git a/packages/solid/src/types.tsx b/packages/solid/src/types.tsx new file mode 100644 index 0000000..82bd33c --- /dev/null +++ b/packages/solid/src/types.tsx @@ -0,0 +1,6 @@ +import * as React from 'react'; + +export interface IconProps extends React.SVGAttributes { + children?: never; + color?: string; +} \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..5df89af --- /dev/null +++ b/readme.md @@ -0,0 +1,70 @@ +
Stash Icons
+
A gorgeous set of 24x24 icons.
Designed by the Pingback team.
+
+
+Website + · +GitHub + · +Figma + · +Discord +
+ +## Introduction + +A collection of high-quality and well designed SVG icons using React and TypeScript. + +## Style variations + +There are 5 different styles variations and can be installed it separately. +For install documentation, check each one: + +- [Duotone](https://github.com/stash-ui/icons/tree/master/packages/duotone) +- [Light](https://github.com/stash-ui/icons/tree/master/packages/light) +- [Regular](https://github.com/stash-ui/icons/tree/master/packages/regular) +- [Solid](https://github.com/stash-ui/icons/tree/master/packages/solid) +- [Editor](https://github.com/stash-ui/icons/tree/master/packages/editor) + +## Install + +Install one of the components from your command line. + +#### With yarn + +```sh +yarn add @react-email/button +``` + +#### With npm + +```sh +npm install @react-email/button +``` + +## Getting started + +Add the component to your email template. Include styles where needed. + +```jsx +import { Button } from '@react-email/button'; + +const Email = () => { + return ( + + ); +}; +``` + +## Authors + +- Tiago Gerken ([@tgerken](https://twitter.com/tgerken)) - [Pingback](https://pingback.com) +- Pedro Ladeira ([@pedrooladeira](https://twitter.com/pedrooladeira)) - [Pingback](https://pingback.com) + +## License + +Licensed under the MIT License, Copyright © 2022-present Pingback LLC. + +See [LICENSE](./LICENSE) for more information. \ No newline at end of file diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..195ca87 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,11750 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@^2.1.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.5.5": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" + integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + dependencies: + "@babel/highlight" "^7.18.6" + +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.4", "@babel/compat-data@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.0.tgz#9b61938c5f688212c7b9ae363a819df7d29d4093" + integrity sha512-Gt9jszFJYq7qzXVK4slhc6NzJXnOVmRECWcVjF/T23rNXD9NtWQ0W3qxdg+p9wWIB+VQw3GYV/U2Ha9bRTfs4w== + +"@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.4.4", "@babel/core@^7.7.5": + version "7.19.6" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f" + integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg== + dependencies: + "@ampproject/remapping" "^2.1.0" + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.19.6" + "@babel/helper-compilation-targets" "^7.19.3" + "@babel/helper-module-transforms" "^7.19.6" + "@babel/helpers" "^7.19.4" + "@babel/parser" "^7.19.6" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.19.6" + "@babel/types" "^7.19.4" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.1" + semver "^6.3.0" + +"@babel/generator@^7.19.6", "@babel/generator@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.0.tgz#0bfc5379e0efb05ca6092091261fcdf7ec36249d" + integrity sha512-GUPcXxWibClgmYJuIwC2Bc2Lg+8b9VjaJ+HlNdACEVt+Wlr1eoU1OPZjZRm7Hzl0gaTsUZNQfeihvZJhG7oc3w== + dependencies: + "@babel/types" "^7.20.0" + "@jridgewell/gen-mapping" "^0.3.2" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" + integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb" + integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw== + dependencies: + "@babel/helper-explode-assignable-expression" "^7.18.6" + "@babel/types" "^7.18.9" + +"@babel/helper-compilation-targets@^7.10.4", "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.19.0", "@babel/helper-compilation-targets@^7.19.3": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a" + integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ== + dependencies: + "@babel/compat-data" "^7.20.0" + "@babel/helper-validator-option" "^7.18.6" + browserslist "^4.21.3" + semver "^6.3.0" + +"@babel/helper-create-class-features-plugin@^7.18.6": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz#bfd6904620df4e46470bae4850d66be1054c404b" + integrity sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-member-expression-to-functions" "^7.18.9" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-replace-supers" "^7.18.9" + "@babel/helper-split-export-declaration" "^7.18.6" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b" + integrity sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + regexpu-core "^5.1.0" + +"@babel/helper-define-polyfill-provider@^0.0.3": + version "0.0.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.0.3.tgz#df9da66285b884ce66417abdd0b6ca91198149bd" + integrity sha512-dULDd/APiP4JowYDAMosecKOi/1v+UId99qhBGiO3myM29KtAVKS/R3x3OJJNBR0FeYB1BcYb2dCwkhqvxWXXQ== + dependencies: + "@babel/helper-compilation-targets" "^7.10.4" + "@babel/helper-module-imports" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/traverse" "^7.11.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + semver "^6.1.2" + +"@babel/helper-define-polyfill-provider@^0.3.3": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a" + integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== + dependencies: + "@babel/helper-compilation-targets" "^7.17.7" + "@babel/helper-plugin-utils" "^7.16.7" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + semver "^6.1.2" + +"@babel/helper-environment-visitor@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" + integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== + +"@babel/helper-explode-assignable-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096" + integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" + integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== + dependencies: + "@babel/template" "^7.18.10" + "@babel/types" "^7.19.0" + +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-member-expression-to-functions@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815" + integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg== + dependencies: + "@babel/types" "^7.18.9" + +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" + integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6": + version "7.19.6" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f" + integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.19.4" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.19.1" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.19.6" + "@babel/types" "^7.19.4" + +"@babel/helper-optimise-call-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" + integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf" + integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw== + +"@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" + integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-wrap-function" "^7.18.9" + "@babel/types" "^7.18.9" + +"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78" + integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-member-expression-to-functions" "^7.18.9" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/traverse" "^7.19.1" + "@babel/types" "^7.19.0" + +"@babel/helper-simple-access@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7" + integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg== + dependencies: + "@babel/types" "^7.19.4" + +"@babel/helper-skip-transparent-expression-wrappers@^7.18.9": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" + integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== + dependencies: + "@babel/types" "^7.20.0" + +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-string-parser@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" + integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== + +"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/helper-validator-option@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" + integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== + +"@babel/helper-wrap-function@^7.18.9": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1" + integrity sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg== + dependencies: + "@babel/helper-function-name" "^7.19.0" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.19.0" + "@babel/types" "^7.19.0" + +"@babel/helpers@^7.19.4": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.0.tgz#27c8ffa8cc32a2ed3762fba48886e7654dbcf77f" + integrity sha512-aGMjYraN0zosCEthoGLdqot1oRsmxVTQRHadsUPz5QM44Zej2PYRz7XiDE7GqnkZnNtLbOuxqoZw42vkU7+XEQ== + dependencies: + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.20.0" + "@babel/types" "^7.20.0" + +"@babel/highlight@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.11.5", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.19.6", "@babel/parser@^7.20.0", "@babel/parser@^7.7.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.0.tgz#b26133c888da4d79b0d3edcf42677bcadc783046" + integrity sha512-G9VgAhEaICnz8iiJeGJQyVl6J2nTjbW0xeisva0PK6XcKsga7BIaqm4ZF8Rg1Wbaqmy6znspNqhPaPkyukujzg== + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" + integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50" + integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + "@babel/plugin-proposal-optional-chaining" "^7.18.9" + +"@babel/plugin-proposal-async-generator-functions@^7.19.1": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz#34f6f5174b688529342288cd264f80c9ea9fb4a7" + integrity sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-remap-async-to-generator" "^7.18.9" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-proposal-class-properties@^7.18.6", "@babel/plugin-proposal-class-properties@^7.4.4": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-class-static-block@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020" + integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-proposal-dynamic-import@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" + integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-export-namespace-from@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" + integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" + integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-proposal-logical-assignment-operators@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23" + integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-proposal-numeric-separator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz#a8fc86e8180ff57290c91a75d83fe658189b642d" + integrity sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q== + dependencies: + "@babel/compat-data" "^7.19.4" + "@babel/helper-compilation-targets" "^7.19.3" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.18.8" + +"@babel/plugin-proposal-optional-catch-binding@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" + integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993" + integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-proposal-private-methods@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-private-property-in-object@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503" + integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" + integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-import-assertions@^7.18.6": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" + integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-syntax-import-meta@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-transform-arrow-functions@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe" + integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-async-to-generator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615" + integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag== + dependencies: + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-remap-async-to-generator" "^7.18.6" + +"@babel/plugin-transform-block-scoped-functions@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" + integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-block-scoping@^7.19.4": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.0.tgz#91fe5e6ffc9ba13cb6c95ed7f0b1204f68c988c5" + integrity sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-transform-classes@^7.19.0": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz#0e61ec257fba409c41372175e7c1e606dc79bb20" + integrity sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-compilation-targets" "^7.19.0" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-replace-supers" "^7.18.9" + "@babel/helper-split-export-declaration" "^7.18.6" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e" + integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-destructuring@^7.19.4": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.0.tgz#712829ef4825d9cc04bb379de316f981e9a6f648" + integrity sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" + integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-duplicate-keys@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" + integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-exponentiation-operator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" + integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-for-of@^7.18.8": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1" + integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-function-name@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" + integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== + dependencies: + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" + integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-member-expression-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" + integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-modules-amd@^7.18.6": + version "7.19.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz#aca391801ae55d19c4d8d2ebfeaa33df5f2a2cbd" + integrity sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg== + dependencies: + "@babel/helper-module-transforms" "^7.19.6" + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-transform-modules-commonjs@^7.18.6": + version "7.19.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz#25b32feef24df8038fc1ec56038917eacb0b730c" + integrity sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ== + dependencies: + "@babel/helper-module-transforms" "^7.19.6" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-simple-access" "^7.19.4" + +"@babel/plugin-transform-modules-systemjs@^7.19.0": + version "7.19.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d" + integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ== + dependencies: + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-module-transforms" "^7.19.6" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-validator-identifier" "^7.19.1" + +"@babel/plugin-transform-modules-umd@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" + integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== + dependencies: + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.19.1": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888" + integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.19.0" + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-transform-new-target@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" + integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-object-super@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" + integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-replace-supers" "^7.18.6" + +"@babel/plugin-transform-parameters@^7.18.8": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz#ee9f1a0ce6d78af58d0956a9378ea3427cccb48a" + integrity sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-property-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" + integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-regenerator@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73" + integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + regenerator-transform "^0.15.0" + +"@babel/plugin-transform-reserved-words@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" + integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-shorthand-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" + integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-spread@^7.19.0": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6" + integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" + +"@babel/plugin-transform-sticky-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" + integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-template-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" + integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-typeof-symbol@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" + integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-unicode-escapes@^7.18.10": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246" + integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-unicode-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" + integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/preset-env@^7.11.0": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.19.4.tgz#4c91ce2e1f994f717efb4237891c3ad2d808c94b" + integrity sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg== + dependencies: + "@babel/compat-data" "^7.19.4" + "@babel/helper-compilation-targets" "^7.19.3" + "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-validator-option" "^7.18.6" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9" + "@babel/plugin-proposal-async-generator-functions" "^7.19.1" + "@babel/plugin-proposal-class-properties" "^7.18.6" + "@babel/plugin-proposal-class-static-block" "^7.18.6" + "@babel/plugin-proposal-dynamic-import" "^7.18.6" + "@babel/plugin-proposal-export-namespace-from" "^7.18.9" + "@babel/plugin-proposal-json-strings" "^7.18.6" + "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" + "@babel/plugin-proposal-numeric-separator" "^7.18.6" + "@babel/plugin-proposal-object-rest-spread" "^7.19.4" + "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" + "@babel/plugin-proposal-optional-chaining" "^7.18.9" + "@babel/plugin-proposal-private-methods" "^7.18.6" + "@babel/plugin-proposal-private-property-in-object" "^7.18.6" + "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.18.6" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-transform-arrow-functions" "^7.18.6" + "@babel/plugin-transform-async-to-generator" "^7.18.6" + "@babel/plugin-transform-block-scoped-functions" "^7.18.6" + "@babel/plugin-transform-block-scoping" "^7.19.4" + "@babel/plugin-transform-classes" "^7.19.0" + "@babel/plugin-transform-computed-properties" "^7.18.9" + "@babel/plugin-transform-destructuring" "^7.19.4" + "@babel/plugin-transform-dotall-regex" "^7.18.6" + "@babel/plugin-transform-duplicate-keys" "^7.18.9" + "@babel/plugin-transform-exponentiation-operator" "^7.18.6" + "@babel/plugin-transform-for-of" "^7.18.8" + "@babel/plugin-transform-function-name" "^7.18.9" + "@babel/plugin-transform-literals" "^7.18.9" + "@babel/plugin-transform-member-expression-literals" "^7.18.6" + "@babel/plugin-transform-modules-amd" "^7.18.6" + "@babel/plugin-transform-modules-commonjs" "^7.18.6" + "@babel/plugin-transform-modules-systemjs" "^7.19.0" + "@babel/plugin-transform-modules-umd" "^7.18.6" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1" + "@babel/plugin-transform-new-target" "^7.18.6" + "@babel/plugin-transform-object-super" "^7.18.6" + "@babel/plugin-transform-parameters" "^7.18.8" + "@babel/plugin-transform-property-literals" "^7.18.6" + "@babel/plugin-transform-regenerator" "^7.18.6" + "@babel/plugin-transform-reserved-words" "^7.18.6" + "@babel/plugin-transform-shorthand-properties" "^7.18.6" + "@babel/plugin-transform-spread" "^7.19.0" + "@babel/plugin-transform-sticky-regex" "^7.18.6" + "@babel/plugin-transform-template-literals" "^7.18.9" + "@babel/plugin-transform-typeof-symbol" "^7.18.9" + "@babel/plugin-transform-unicode-escapes" "^7.18.10" + "@babel/plugin-transform-unicode-regex" "^7.18.6" + "@babel/preset-modules" "^0.1.5" + "@babel/types" "^7.19.4" + babel-plugin-polyfill-corejs2 "^0.3.3" + babel-plugin-polyfill-corejs3 "^0.6.0" + babel-plugin-polyfill-regenerator "^0.4.1" + core-js-compat "^3.25.1" + semver "^6.3.0" + +"@babel/preset-modules@^0.1.5": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" + integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/runtime-corejs3@^7.10.2": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.20.0.tgz#56ef7af3cd23d1570969809a5a8782e774e0141a" + integrity sha512-v1JH7PeAAGBEyTQM9TqojVl+b20zXtesFKCJHu50xMxZKD1fX0TKaKHPsZfFkXfs7D1M9M6Eeqg1FkJ3a0x2dA== + dependencies: + core-js-pure "^3.25.1" + regenerator-runtime "^0.13.10" + +"@babel/runtime@^7.10.2", "@babel/runtime@^7.18.9", "@babel/runtime@^7.4.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.0.tgz#824a9ef325ffde6f78056059db3168c08785e24a" + integrity sha512-NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q== + dependencies: + regenerator-runtime "^0.13.10" + +"@babel/template@^7.18.10", "@babel/template@^7.3.3": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" + integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.18.10" + "@babel/types" "^7.18.10" + +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.11.5", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.6", "@babel/traverse@^7.20.0", "@babel/traverse@^7.7.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.0.tgz#538c4c6ce6255f5666eba02252a7b59fc2d5ed98" + integrity sha512-5+cAXQNARgjRUK0JWu2UBwja4JLSO/rBMPJzpsKb+oBF5xlUuCfljQepS4XypBQoiigL0VQjTZy6WiONtUdScQ== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.20.0" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.20.0" + "@babel/types" "^7.20.0" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.4", "@babel/types@^7.20.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.0.tgz#52c94cf8a7e24e89d2a194c25c35b17a64871479" + integrity sha512-Jlgt3H0TajCW164wkTOTzHkZb075tMQMULzrLUoUeKmO7eFL96GgDxf7/Axhc5CAuKE3KFyVW1p6ysKsi2oXAg== + dependencies: + "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + +"@bcoe/v8-coverage@^0.2.3": + version "0.2.3" + resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" + integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== + +"@cnakazawa/watch@^1.0.3": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" + integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== + dependencies: + exec-sh "^0.3.2" + minimist "^1.2.0" + +"@eslint/eslintrc@^1.3.3": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95" + integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.4.0" + globals "^13.15.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@gar/promisify@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" + integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== + +"@humanwhocodes/config-array@^0.11.6": + version "0.11.7" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.7.tgz#38aec044c6c828f6ed51d5d7ae3d9b9faf6dbb0f" + integrity sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw== + dependencies: + "@humanwhocodes/object-schema" "^1.2.1" + debug "^4.1.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" + integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== + +"@hutson/parse-repository-url@^3.0.0": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz#98c23c950a3d9b6c8f0daed06da6c3af06981340" + integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q== + +"@isaacs/string-locale-compare@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@isaacs/string-locale-compare/-/string-locale-compare-1.1.0.tgz#291c227e93fd407a96ecd59879a35809120e432b" + integrity sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ== + +"@istanbuljs/load-nyc-config@^1.0.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" + integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== + dependencies: + camelcase "^5.3.1" + find-up "^4.1.0" + get-package-type "^0.1.0" + js-yaml "^3.13.1" + resolve-from "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" + integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== + +"@jest/console@^25.5.0": + version "25.5.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-25.5.0.tgz#770800799d510f37329c508a9edd0b7b447d9abb" + integrity sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw== + dependencies: + "@jest/types" "^25.5.0" + chalk "^3.0.0" + jest-message-util "^25.5.0" + jest-util "^25.5.0" + slash "^3.0.0" + +"@jest/core@^25.5.4": + version "25.5.4" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-25.5.4.tgz#3ef7412f7339210f003cdf36646bbca786efe7b4" + integrity sha512-3uSo7laYxF00Dg/DMgbn4xMJKmDdWvZnf89n8Xj/5/AeQ2dOQmn6b6Hkj/MleyzZWXpwv+WSdYWl4cLsy2JsoA== + dependencies: + "@jest/console" "^25.5.0" + "@jest/reporters" "^25.5.1" + "@jest/test-result" "^25.5.0" + "@jest/transform" "^25.5.1" + "@jest/types" "^25.5.0" + ansi-escapes "^4.2.1" + chalk "^3.0.0" + exit "^0.1.2" + graceful-fs "^4.2.4" + jest-changed-files "^25.5.0" + jest-config "^25.5.4" + jest-haste-map "^25.5.1" + jest-message-util "^25.5.0" + jest-regex-util "^25.2.6" + jest-resolve "^25.5.1" + jest-resolve-dependencies "^25.5.4" + jest-runner "^25.5.4" + jest-runtime "^25.5.4" + jest-snapshot "^25.5.1" + jest-util "^25.5.0" + jest-validate "^25.5.0" + jest-watcher "^25.5.0" + micromatch "^4.0.2" + p-each-series "^2.1.0" + realpath-native "^2.0.0" + rimraf "^3.0.0" + slash "^3.0.0" + strip-ansi "^6.0.0" + +"@jest/environment@^25.5.0": + version "25.5.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-25.5.0.tgz#aa33b0c21a716c65686638e7ef816c0e3a0c7b37" + integrity sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA== + dependencies: + "@jest/fake-timers" "^25.5.0" + "@jest/types" "^25.5.0" + jest-mock "^25.5.0" + +"@jest/fake-timers@^25.5.0": + version "25.5.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-25.5.0.tgz#46352e00533c024c90c2bc2ad9f2959f7f114185" + integrity sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ== + dependencies: + "@jest/types" "^25.5.0" + jest-message-util "^25.5.0" + jest-mock "^25.5.0" + jest-util "^25.5.0" + lolex "^5.0.0" + +"@jest/globals@^25.5.2": + version "25.5.2" + resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-25.5.2.tgz#5e45e9de8d228716af3257eeb3991cc2e162ca88" + integrity sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA== + dependencies: + "@jest/environment" "^25.5.0" + "@jest/types" "^25.5.0" + expect "^25.5.0" + +"@jest/reporters@^25.5.1": + version "25.5.1" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-25.5.1.tgz#cb686bcc680f664c2dbaf7ed873e93aa6811538b" + integrity sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw== + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^25.5.0" + "@jest/test-result" "^25.5.0" + "@jest/transform" "^25.5.1" + "@jest/types" "^25.5.0" + chalk "^3.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.2" + graceful-fs "^4.2.4" + istanbul-lib-coverage "^3.0.0" + istanbul-lib-instrument "^4.0.0" + istanbul-lib-report "^3.0.0" + istanbul-lib-source-maps "^4.0.0" + istanbul-reports "^3.0.2" + jest-haste-map "^25.5.1" + jest-resolve "^25.5.1" + jest-util "^25.5.0" + jest-worker "^25.5.0" + slash "^3.0.0" + source-map "^0.6.0" + string-length "^3.1.0" + terminal-link "^2.0.0" + v8-to-istanbul "^4.1.3" + optionalDependencies: + node-notifier "^6.0.0" + +"@jest/source-map@^25.5.0": + version "25.5.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-25.5.0.tgz#df5c20d6050aa292c2c6d3f0d2c7606af315bd1b" + integrity sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ== + dependencies: + callsites "^3.0.0" + graceful-fs "^4.2.4" + source-map "^0.6.0" + +"@jest/test-result@^25.5.0": + version "25.5.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-25.5.0.tgz#139a043230cdeffe9ba2d8341b27f2efc77ce87c" + integrity sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A== + dependencies: + "@jest/console" "^25.5.0" + "@jest/types" "^25.5.0" + "@types/istanbul-lib-coverage" "^2.0.0" + collect-v8-coverage "^1.0.0" + +"@jest/test-sequencer@^25.5.4": + version "25.5.4" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-25.5.4.tgz#9b4e685b36954c38d0f052e596d28161bdc8b737" + integrity sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA== + dependencies: + "@jest/test-result" "^25.5.0" + graceful-fs "^4.2.4" + jest-haste-map "^25.5.1" + jest-runner "^25.5.4" + jest-runtime "^25.5.4" + +"@jest/transform@^25.5.1": + version "25.5.1" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-25.5.1.tgz#0469ddc17699dd2bf985db55fa0fb9309f5c2db3" + integrity sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg== + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^25.5.0" + babel-plugin-istanbul "^6.0.0" + chalk "^3.0.0" + convert-source-map "^1.4.0" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.2.4" + jest-haste-map "^25.5.1" + jest-regex-util "^25.2.6" + jest-util "^25.5.0" + micromatch "^4.0.2" + pirates "^4.0.1" + realpath-native "^2.0.0" + slash "^3.0.0" + source-map "^0.6.1" + write-file-atomic "^3.0.0" + +"@jest/types@^25.5.0": + version "25.5.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d" + integrity sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^15.0.0" + chalk "^3.0.0" + +"@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/gen-mapping@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@^0.3.9": + version "0.3.17" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" + integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@leichtgewicht/ip-codec@^2.0.1": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" + integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== + +"@lerna/add@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/add/-/add-6.0.1.tgz#6d71084fe7918c96c909bebdc5c27ed6006e09d6" + integrity sha512-cCQIlMODhi3KYyTDOp2WWL4Kj2dKK+MmCiaSf+USrbSWPVVXQGn5Eb11XOMUfYYq3Ula75sWL2urtYwuu8IbmA== + dependencies: + "@lerna/bootstrap" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/filter-options" "6.0.1" + "@lerna/npm-conf" "6.0.1" + "@lerna/validation-error" "6.0.1" + dedent "^0.7.0" + npm-package-arg "8.1.1" + p-map "^4.0.0" + pacote "^13.6.1" + semver "^7.3.4" + +"@lerna/bootstrap@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/bootstrap/-/bootstrap-6.0.1.tgz#2af0b790b9ce426b78f12543159c8506d77afc28" + integrity sha512-a3DWchHFOiRmDN24VTdmTxKvAqw6Msp8pDCWXq4rgOQSFxqyYECd8BYvmy8dTW6LcC4EG0HqTGRguuEaKCasOw== + dependencies: + "@lerna/command" "6.0.1" + "@lerna/filter-options" "6.0.1" + "@lerna/has-npm-version" "6.0.1" + "@lerna/npm-install" "6.0.1" + "@lerna/package-graph" "6.0.1" + "@lerna/pulse-till-done" "6.0.1" + "@lerna/rimraf-dir" "6.0.1" + "@lerna/run-lifecycle" "6.0.1" + "@lerna/run-topologically" "6.0.1" + "@lerna/symlink-binary" "6.0.1" + "@lerna/symlink-dependencies" "6.0.1" + "@lerna/validation-error" "6.0.1" + "@npmcli/arborist" "5.3.0" + dedent "^0.7.0" + get-port "^5.1.1" + multimatch "^5.0.0" + npm-package-arg "8.1.1" + npmlog "^6.0.2" + p-map "^4.0.0" + p-map-series "^2.1.0" + p-waterfall "^2.1.1" + semver "^7.3.4" + +"@lerna/changed@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/changed/-/changed-6.0.1.tgz#58614a0c65bfab77fefd142d5edc8282e057ea83" + integrity sha512-b0KzqpNv25ZxH9M/7jtDQaXWUBhVzBVJ8DQ4PjjeoulOCQ+mA9tNQr8UVmeU1UZiaNtNz6Hcy55vyvVvNe07VA== + dependencies: + "@lerna/collect-updates" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/listable" "6.0.1" + "@lerna/output" "6.0.1" + +"@lerna/check-working-tree@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/check-working-tree/-/check-working-tree-6.0.1.tgz#ad71d53941b5c85523499b283e5f44b52eca6276" + integrity sha512-9Ti1EuE3IiJUvvAtFk+Xr9Uw6KehT78ghnI4f/hi4uew5q0Mf2+DMaBNexbhOTpRFBeIq4ucDFhiN091pNkUNw== + dependencies: + "@lerna/collect-uncommitted" "6.0.1" + "@lerna/describe-ref" "6.0.1" + "@lerna/validation-error" "6.0.1" + +"@lerna/child-process@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/child-process/-/child-process-6.0.1.tgz#2141f643a4ed7d38fa9270a80403467a353a3b39" + integrity sha512-5smM8Or/RQkHysNFrUYdrCYlhpr3buNpCYU7T2DPYzOWRPm+X5rCvt/dDOcS3UgYT2jEyS86S5Y7pK2X7eXtmg== + dependencies: + chalk "^4.1.0" + execa "^5.0.0" + strong-log-transformer "^2.1.0" + +"@lerna/clean@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/clean/-/clean-6.0.1.tgz#e59f94140e577cbb66f76f78794b97778f78a246" + integrity sha512-ZaWPzzYNkJM7Ib2GWPLSELVBf5nRCGOGBtR9DSLKAore0Me876JLgi4h2R+Y2PVyCvT1kmoQKAclnjxdZbCONA== + dependencies: + "@lerna/command" "6.0.1" + "@lerna/filter-options" "6.0.1" + "@lerna/prompt" "6.0.1" + "@lerna/pulse-till-done" "6.0.1" + "@lerna/rimraf-dir" "6.0.1" + p-map "^4.0.0" + p-map-series "^2.1.0" + p-waterfall "^2.1.1" + +"@lerna/cli@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/cli/-/cli-6.0.1.tgz#8a92386702cff815f36104792ad5dc14f11a61a8" + integrity sha512-AuAnUXkBGdts/rmHltrkZucYy11OwYPb/4HM3zxLeq4O30w2ocZIytkOtSkuVKOMPWBZR8b37fNuZBzvxe5OmA== + dependencies: + "@lerna/global-options" "6.0.1" + dedent "^0.7.0" + npmlog "^6.0.2" + yargs "^16.2.0" + +"@lerna/collect-uncommitted@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/collect-uncommitted/-/collect-uncommitted-6.0.1.tgz#b93f5acfa9c63fffe41bfaaac02a0efad9180b00" + integrity sha512-qPqwmIlSlf8XBJnqMc+6pz6qXQ0Pfjil70FB2IPvoWbfrLvMI6K3I/AXeub9X5fj5HYqNs1XtwhWHJcMFpJddw== + dependencies: + "@lerna/child-process" "6.0.1" + chalk "^4.1.0" + npmlog "^6.0.2" + +"@lerna/collect-updates@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/collect-updates/-/collect-updates-6.0.1.tgz#7b4be193ee51a72ccedc20acf845fe32fdee9ee2" + integrity sha512-OwRcLqD1N5znlZM/Ctf031RDkodHVO62byiD35AbHGoGM2EI2TSYyIbqnJ8QsQJMB05/KhIBndL8Mpcdle7/rg== + dependencies: + "@lerna/child-process" "6.0.1" + "@lerna/describe-ref" "6.0.1" + minimatch "^3.0.4" + npmlog "^6.0.2" + slash "^3.0.0" + +"@lerna/command@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/command/-/command-6.0.1.tgz#a429e724237bc3c4a735e8eaef9816f2203cb7dc" + integrity sha512-V9w8M7pMU7KztxaL0+fetTSQYTa12bhTl86ll9VjlgYZ5qUAXk9E42Y8hbVThyYtHEhkRnIMinkWsmH/9YKU/A== + dependencies: + "@lerna/child-process" "6.0.1" + "@lerna/package-graph" "6.0.1" + "@lerna/project" "6.0.1" + "@lerna/validation-error" "6.0.1" + "@lerna/write-log-file" "6.0.1" + clone-deep "^4.0.1" + dedent "^0.7.0" + execa "^5.0.0" + is-ci "^2.0.0" + npmlog "^6.0.2" + +"@lerna/conventional-commits@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/conventional-commits/-/conventional-commits-6.0.1.tgz#72dd55aadc7c20eca5af3d03cdcfb613964dafc4" + integrity sha512-6oIGEZKy1GpooW28C0aEDkZ/rVkqpX44knP8Jyb5//1054QogqPhGC5q6J0lZxyhun8dQkpF6XTHlIintI8xow== + dependencies: + "@lerna/validation-error" "6.0.1" + conventional-changelog-angular "^5.0.12" + conventional-changelog-core "^4.2.4" + conventional-recommended-bump "^6.1.0" + fs-extra "^9.1.0" + get-stream "^6.0.0" + npm-package-arg "8.1.1" + npmlog "^6.0.2" + pify "^5.0.0" + semver "^7.3.4" + +"@lerna/create-symlink@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/create-symlink/-/create-symlink-6.0.1.tgz#5a9f75f8e5c0d83c39d70240f51284cc5d6770ad" + integrity sha512-ZmLx9SP5De6u1xkD7Z6gMMFuyLKCb+2bodreFe7ryOVP3cOLbmNOmgMgj+gtUgIwIv7BDwX3qFWlPY6B3VW3hQ== + dependencies: + cmd-shim "^5.0.0" + fs-extra "^9.1.0" + npmlog "^6.0.2" + +"@lerna/create@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/create/-/create-6.0.1.tgz#7905cef9196cb6a1caff5d7cd78a46fc7ea635a9" + integrity sha512-VuTdvBJDzvAaMBYoKTRMBQC+nfwnihxdA/ekUqBD+W8MMsqPLCGCneyl7JK9RaSSib/10LyRDEmfo79UAndcgQ== + dependencies: + "@lerna/child-process" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/npm-conf" "6.0.1" + "@lerna/validation-error" "6.0.1" + dedent "^0.7.0" + fs-extra "^9.1.0" + init-package-json "^3.0.2" + npm-package-arg "8.1.1" + p-reduce "^2.1.0" + pacote "^13.6.1" + pify "^5.0.0" + semver "^7.3.4" + slash "^3.0.0" + validate-npm-package-license "^3.0.4" + validate-npm-package-name "^4.0.0" + yargs-parser "20.2.4" + +"@lerna/describe-ref@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/describe-ref/-/describe-ref-6.0.1.tgz#e9277bcc3c1c839fc7305b808f9dd02a5404aaf8" + integrity sha512-PcTVt4qgAXUPBtWHyqixtwE/eXe56+DFRnfTcJlb4x5F7LJ+7VNpdR/81qfP89Xj10U5IjELXbXmriz1KMwhfw== + dependencies: + "@lerna/child-process" "6.0.1" + npmlog "^6.0.2" + +"@lerna/diff@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/diff/-/diff-6.0.1.tgz#e8c5d541d74a9aa13a4ac6745f2f0d9531207fd1" + integrity sha512-/pGXH9txA8wX1YJ/KOBXzx0Z2opADBW4HKPCxxHAu+6dTGMbKABDljVT5Np3UpfIrAGDE5fTuf0aGL4vkKUWrg== + dependencies: + "@lerna/child-process" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/validation-error" "6.0.1" + npmlog "^6.0.2" + +"@lerna/exec@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/exec/-/exec-6.0.1.tgz#d2d0785c46b7ceb3758fe75bb6d95d177a0a0ec3" + integrity sha512-x9puoI3091Alp45w7XOGRxThOw45p+tWGPR5TBCEQiiH7f8eF9Dc4WX5HXf31ooK6NmD40eKPYhBgy8oQnJY9w== + dependencies: + "@lerna/child-process" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/filter-options" "6.0.1" + "@lerna/profiler" "6.0.1" + "@lerna/run-topologically" "6.0.1" + "@lerna/validation-error" "6.0.1" + p-map "^4.0.0" + +"@lerna/filter-options@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/filter-options/-/filter-options-6.0.1.tgz#4dbd29a31fb2ac228f72c51b223f17623d1f2c71" + integrity sha512-6KxbBI/2skRl/yQdjugQ1PWrSLq19650z8mltF0HT7B686fj7LlDNtESFOtY6iZ8IPqKBkIavOP0DPmJZd7Szw== + dependencies: + "@lerna/collect-updates" "6.0.1" + "@lerna/filter-packages" "6.0.1" + dedent "^0.7.0" + npmlog "^6.0.2" + +"@lerna/filter-packages@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/filter-packages/-/filter-packages-6.0.1.tgz#07f10dc78e852bbba44843b785ebc16f386cedaa" + integrity sha512-2bKhexeF07Urs2b0xYX2OgYUN0EzmS2FSgvw0KT6He48PGOkqgJjU7PIiWdPyOvZdukwm07qXTmJZulAHftceA== + dependencies: + "@lerna/validation-error" "6.0.1" + multimatch "^5.0.0" + npmlog "^6.0.2" + +"@lerna/get-npm-exec-opts@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-6.0.1.tgz#c766588d030c0ec7170650808957998e8ad70831" + integrity sha512-y2T+ODP8HNzHQn1ldrrPW+n823fGsN2sY0r78yURFxYZnxA9ZINyQ6IAejo5LqHrYN8Qhr++0RHo2tUisIHdKg== + dependencies: + npmlog "^6.0.2" + +"@lerna/get-packed@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/get-packed/-/get-packed-6.0.1.tgz#d31c10ec10658eeee4306886c100cd9600d6dd78" + integrity sha512-Z/5J5vbjdeGqZcPvUSiszvyizHdsTRiFlpPORWK3YfIsHllUB7QZnVHLg92UnSJrpPE0O1gH+k6ByhhR+3qEdA== + dependencies: + fs-extra "^9.1.0" + ssri "^9.0.1" + tar "^6.1.0" + +"@lerna/github-client@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/github-client/-/github-client-6.0.1.tgz#081d13c2debf312d0e5a2bb2fad6e0c69e1501d6" + integrity sha512-UA7V3XUunJnrfCL2eyW9QsCjBWShv4dCRGUITXmpQJrNIMZIqVbBJzqN9LVHDNc/hEVZGt0EjtHWdpFCgD4ypg== + dependencies: + "@lerna/child-process" "6.0.1" + "@octokit/plugin-enterprise-rest" "^6.0.1" + "@octokit/rest" "^19.0.3" + git-url-parse "^13.1.0" + npmlog "^6.0.2" + +"@lerna/gitlab-client@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/gitlab-client/-/gitlab-client-6.0.1.tgz#1863b621a1530bc482113cac8791247664dedb2a" + integrity sha512-yyaBKf/OqBAau6xDk1tnMjfkxRpC/j3OwUyXFFGfJFSulWRHpbHoFSfvIgOn/hkjAr9FfHC7TXItRg8qdm38Wg== + dependencies: + node-fetch "^2.6.1" + npmlog "^6.0.2" + +"@lerna/global-options@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/global-options/-/global-options-6.0.1.tgz#83061d85759c105120ff55716959642ba6eb0eea" + integrity sha512-vzjDI3Bg2NR+cSgfjHWax2bF1HmQYjJF2tmZlT/hJbwhaVMIEnhzHnJ9Yycmm98cdV77xEMlbmk5YD7xgFdG2w== + +"@lerna/has-npm-version@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/has-npm-version/-/has-npm-version-6.0.1.tgz#ed27a27cad2090069feb3108b105ceec765bec5e" + integrity sha512-ol1onJaauMXK0cQsfRX2rvbhNRyNBY9Ne5trrRjfMROa7Tnr8c3I4+aKQs7m4z1JdWaGBV4xBH+NSZ/esPuaWA== + dependencies: + "@lerna/child-process" "6.0.1" + semver "^7.3.4" + +"@lerna/import@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/import/-/import-6.0.1.tgz#9e869d6bbe82446ee3620c4310ca6232881b7952" + integrity sha512-GrTtIWUCnDf+FqRjenV2OKWU+khoZj0h/etgfXus45PBO2+V/SkkzIY4xof23XphiydUYrSrYtwx2i1aEmk3Wg== + dependencies: + "@lerna/child-process" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/prompt" "6.0.1" + "@lerna/pulse-till-done" "6.0.1" + "@lerna/validation-error" "6.0.1" + dedent "^0.7.0" + fs-extra "^9.1.0" + p-map-series "^2.1.0" + +"@lerna/info@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/info/-/info-6.0.1.tgz#68395061ffbd81c7716d60b99b5220c90ade2862" + integrity sha512-QEW7JtJjoR1etUrcft7BnrwPZFHE2JPmt2DoSvSmLISLyy+HlmdXHK+p6Ej3g1ql8gS0GWCacgwmlRZ27CDp5A== + dependencies: + "@lerna/command" "6.0.1" + "@lerna/output" "6.0.1" + envinfo "^7.7.4" + +"@lerna/init@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/init/-/init-6.0.1.tgz#babee56707bd19b3c1b82967e3360d1083c04cf9" + integrity sha512-zOMrSij09LSAVUUujpD3y32wkHp8dQ+/dVCp4USlfcGfI+kIPc5prkYCGDO8dEcqkze0pMfDMF23pVNvAf9g7w== + dependencies: + "@lerna/child-process" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/project" "6.0.1" + fs-extra "^9.1.0" + p-map "^4.0.0" + write-json-file "^4.3.0" + +"@lerna/link@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/link/-/link-6.0.1.tgz#a94cf3aead92538835d955c6de281c65097f3471" + integrity sha512-VXZ77AWsJCycTu219ZLUHyRzMd5hgivLk5ZyBD1s/emArFvdEmGLscj2RXn3P3w/951b+DNG2Zbi6nek0iJ6DA== + dependencies: + "@lerna/command" "6.0.1" + "@lerna/package-graph" "6.0.1" + "@lerna/symlink-dependencies" "6.0.1" + "@lerna/validation-error" "6.0.1" + p-map "^4.0.0" + slash "^3.0.0" + +"@lerna/list@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/list/-/list-6.0.1.tgz#ab6d056c5d7b99ca0ed6a17d48bf907afd9d970a" + integrity sha512-M9Vneh866E1nlpU88rcUMLR+XTVi3VY0fLPr1OqXdYF+eTe6RkEHUQj8HIk94Rnt02HsWc4+FO31T4i5sf+PaA== + dependencies: + "@lerna/command" "6.0.1" + "@lerna/filter-options" "6.0.1" + "@lerna/listable" "6.0.1" + "@lerna/output" "6.0.1" + +"@lerna/listable@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/listable/-/listable-6.0.1.tgz#444e81f6642c198d116e9e6b86d96d10ddf2e147" + integrity sha512-+xEByVX0sbnBW3EBu3XCg71Bz9/dahncmCjNK0kVnZLnQZzfULCndaQeSt+f9KO0VCs8h1tnXdo2uLPm4lThnw== + dependencies: + "@lerna/query-graph" "6.0.1" + chalk "^4.1.0" + columnify "^1.6.0" + +"@lerna/log-packed@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/log-packed/-/log-packed-6.0.1.tgz#20fe38b5f18e65392b42bf84cfdda0afc0b62330" + integrity sha512-HTJdZzfBbb5jyk/QU2O6o+yaWRwLoaPruhK+Q3ESTzQ2mlNCr0CI4UKWDcWURWx0EsVsYqsoUHuPZInpIHqCnA== + dependencies: + byte-size "^7.0.0" + columnify "^1.6.0" + has-unicode "^2.0.1" + npmlog "^6.0.2" + +"@lerna/npm-conf@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-conf/-/npm-conf-6.0.1.tgz#fa242a36ef687c7b5207a9d9a85b9e7a4f38bdc5" + integrity sha512-VjxODCnl6QJGoQ8z8AWEID1GO9CtCr2yRyn6NoRdBOTYmzI5KhBBM+nWmyMSOUe0EZI+K5j04/GRzKHg2KXTAQ== + dependencies: + config-chain "^1.1.12" + pify "^5.0.0" + +"@lerna/npm-dist-tag@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-dist-tag/-/npm-dist-tag-6.0.1.tgz#4718bdedd82f375ba619319070b694f1113e627b" + integrity sha512-jJKDgnhj6xGqSWGcbwdcbPtoo2m4mHRwqu8iln9e3TMOEyUO9aA4uvd0/18tEAsboOMiLUhhcQ8709iKv21ZEA== + dependencies: + "@lerna/otplease" "6.0.1" + npm-package-arg "8.1.1" + npm-registry-fetch "^13.3.0" + npmlog "^6.0.2" + +"@lerna/npm-install@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-install/-/npm-install-6.0.1.tgz#5d6f0c62b34f2bfeb8f20b81b08f01ca0d3ed60b" + integrity sha512-saDJSyhhl/wxgZSzRx2/pr0wsMR+hZpdhLGd1lZgo5XzLq3ogK+BxPFz3AK3xhRnNaMq96gDQ3xmeetoV53lwQ== + dependencies: + "@lerna/child-process" "6.0.1" + "@lerna/get-npm-exec-opts" "6.0.1" + fs-extra "^9.1.0" + npm-package-arg "8.1.1" + npmlog "^6.0.2" + signal-exit "^3.0.3" + write-pkg "^4.0.0" + +"@lerna/npm-publish@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-publish/-/npm-publish-6.0.1.tgz#ffbca4be5b971df978a60917460ee8f28b1c62b7" + integrity sha512-hgzF9fOfp010z7PJtqNLxNXiHr6u4UDVwiX8g22rhJKBh9Ekrq7N9NS3mF0l+RcleRU/jJKYtZ0Ci3fICaaRUg== + dependencies: + "@lerna/otplease" "6.0.1" + "@lerna/run-lifecycle" "6.0.1" + fs-extra "^9.1.0" + libnpmpublish "^6.0.4" + npm-package-arg "8.1.1" + npmlog "^6.0.2" + pify "^5.0.0" + read-package-json "^5.0.1" + +"@lerna/npm-run-script@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/npm-run-script/-/npm-run-script-6.0.1.tgz#3a255aa6f37a5e2369a37a8ddcb2709f84019ed1" + integrity sha512-K+D4LEoVRuBoKRImprkVRHIORu0xouX+c6yI1B93KWHKJ60H8qCeB0gQkA30pFALx3qG07bXVnFmfK9SGQXD3Q== + dependencies: + "@lerna/child-process" "6.0.1" + "@lerna/get-npm-exec-opts" "6.0.1" + npmlog "^6.0.2" + +"@lerna/otplease@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/otplease/-/otplease-6.0.1.tgz#da5467c603565940c1f91e65d077abf25d96df7f" + integrity sha512-RrP8GtfE9yz37GuuCFqddR3mVIQc1ulUpAaaDNK4AOTb7gM0aCsTN7V2gCGBk1zdIsBuvNvNqt5jpWm4U6/EAA== + dependencies: + "@lerna/prompt" "6.0.1" + +"@lerna/output@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/output/-/output-6.0.1.tgz#5e301ad0bed607ee139cf207fd75ed1e5fac7908" + integrity sha512-4jZ3fgaCbnsTZ353/lXE/3w20Cge6G3iUoESVip+JE2yhZ8rWgPISG8RFR0YGEtSgq2yC9AgGnGlvmOnAc4SAQ== + dependencies: + npmlog "^6.0.2" + +"@lerna/pack-directory@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/pack-directory/-/pack-directory-6.0.1.tgz#4a0bf61b7cb1b1b3f1fb95afec987a7c63ff9f95" + integrity sha512-vNgS5Rs7s6khOYuHE5nTds0VDfHBH8YNGvV1s0yGAg/Zkivi7bOTs8jDQFiYhQX3HOTC1/85BLhGQ3zcDHlrew== + dependencies: + "@lerna/get-packed" "6.0.1" + "@lerna/package" "6.0.1" + "@lerna/run-lifecycle" "6.0.1" + "@lerna/temp-write" "6.0.1" + npm-packlist "^5.1.1" + npmlog "^6.0.2" + tar "^6.1.0" + +"@lerna/package-graph@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/package-graph/-/package-graph-6.0.1.tgz#db72ab9ed45933d1518de7f7389a6c79e6059336" + integrity sha512-OMppRWpfSaI6HO/Tc5FVpNefgOsCc3/DzaMLme6QTTpbEwD3EhvQ3Xx0MgsGMPdmZhWp/WOoAJsVRnLa+l03gg== + dependencies: + "@lerna/prerelease-id-from-version" "6.0.1" + "@lerna/validation-error" "6.0.1" + npm-package-arg "8.1.1" + npmlog "^6.0.2" + semver "^7.3.4" + +"@lerna/package@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/package/-/package-6.0.1.tgz#cb950e574b1ea3ef5cd8cf62b3c4308f6c869122" + integrity sha512-vCwyiLVJ4K3SR6KZleglq1dUXIiYGmk3b+NrFWP/Z3dhVE0C+RqgxSsAS4aaUNMSO2KSI0dBdce7BT/D+FdpIQ== + dependencies: + load-json-file "^6.2.0" + npm-package-arg "8.1.1" + write-pkg "^4.0.0" + +"@lerna/prerelease-id-from-version@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-6.0.1.tgz#a47980aa6c78deaa36430d03b6300bc889960b50" + integrity sha512-aZBs/FinztKjNXlk0cW99FpABynZzZwlmJuW4h9nMrQPgWoaDAERfImbefIH/lcpxdRuuGtClyZUFBOSq8ppfg== + dependencies: + semver "^7.3.4" + +"@lerna/profiler@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/profiler/-/profiler-6.0.1.tgz#2b7a043e6999823ad97a7ddaea0ed7f338032f92" + integrity sha512-vZrgF5pDhYWY/Gx7MjtyOgTVMA6swDV2+xPZwkvRD1Z0XpWEIn5d79zRN/1SBpdMNozC7Lj++1oEbCGNWhy/ow== + dependencies: + fs-extra "^9.1.0" + npmlog "^6.0.2" + upath "^2.0.1" + +"@lerna/project@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/project/-/project-6.0.1.tgz#0d4a6dbca1943478d554d4a3a610968caf9b303a" + integrity sha512-/n2QuAEgImbwUqrJND15FxYu29p/mLTUpL/8cSg6IUlOQRFyXteESRyl8A2Ex7Wj00FMbtB13vgbmTdkTgKL0A== + dependencies: + "@lerna/package" "6.0.1" + "@lerna/validation-error" "6.0.1" + cosmiconfig "^7.0.0" + dedent "^0.7.0" + dot-prop "^6.0.1" + glob-parent "^5.1.1" + globby "^11.0.2" + js-yaml "^4.1.0" + load-json-file "^6.2.0" + npmlog "^6.0.2" + p-map "^4.0.0" + resolve-from "^5.0.0" + write-json-file "^4.3.0" + +"@lerna/prompt@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/prompt/-/prompt-6.0.1.tgz#2a744b168ce4a29b7c66d500258a3f65b3f028e2" + integrity sha512-faR7oVdHBO3QTJ6o9kUEDPpyjCftd/CCa1rAC6q8f3vlLfCPrTym0qT+DcOBFGpDQh4m2dmGfJZgpXIVi6bMbg== + dependencies: + inquirer "^8.2.4" + npmlog "^6.0.2" + +"@lerna/publish@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/publish/-/publish-6.0.1.tgz#9448a35a87e2c986c8919114698f3a314a9a2574" + integrity sha512-xIleRwCuPHtShNSPc6RDH33Z+EO1E4O0LOhPq5qTwanNPYh5eL6bDHBsox44BbMD9dhhI4PUrqIGTu3AoKdDxg== + dependencies: + "@lerna/check-working-tree" "6.0.1" + "@lerna/child-process" "6.0.1" + "@lerna/collect-updates" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/describe-ref" "6.0.1" + "@lerna/log-packed" "6.0.1" + "@lerna/npm-conf" "6.0.1" + "@lerna/npm-dist-tag" "6.0.1" + "@lerna/npm-publish" "6.0.1" + "@lerna/otplease" "6.0.1" + "@lerna/output" "6.0.1" + "@lerna/pack-directory" "6.0.1" + "@lerna/prerelease-id-from-version" "6.0.1" + "@lerna/prompt" "6.0.1" + "@lerna/pulse-till-done" "6.0.1" + "@lerna/run-lifecycle" "6.0.1" + "@lerna/run-topologically" "6.0.1" + "@lerna/validation-error" "6.0.1" + "@lerna/version" "6.0.1" + fs-extra "^9.1.0" + libnpmaccess "^6.0.3" + npm-package-arg "8.1.1" + npm-registry-fetch "^13.3.0" + npmlog "^6.0.2" + p-map "^4.0.0" + p-pipe "^3.1.0" + pacote "^13.6.1" + semver "^7.3.4" + +"@lerna/pulse-till-done@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/pulse-till-done/-/pulse-till-done-6.0.1.tgz#d23985aea1ba25bb33cf74b39f36f2b7a5d21791" + integrity sha512-DK5Ylh/O7Vzn9ObEggvoHdLxc1hiXsDZ4fUvSmi50kc5QrMrk+xo6OyPgIaDBhYxj6lm3TQ1KkvWnRgiEynKAg== + dependencies: + npmlog "^6.0.2" + +"@lerna/query-graph@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/query-graph/-/query-graph-6.0.1.tgz#f72b55f0ee4662d06167e639e975019e5c004c59" + integrity sha512-X8Z63Ax5a9nXgNBG+IAXEdCL4MG88akr7L4mBvKiTPrK5VgP46YzuZSaSoPI8bU67MlWBkSYQWAJJ5t0HEtKTw== + dependencies: + "@lerna/package-graph" "6.0.1" + +"@lerna/resolve-symlink@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/resolve-symlink/-/resolve-symlink-6.0.1.tgz#30c3ccf4c730451754ce7aa002772f26dd757c20" + integrity sha512-btosycLN+2lpqou6pz0Oeq4XIKHDIn0NvdnuCBLxtuBOBNIkdlx5QWKCtZ31GYKbCUt55w1DSGL64kfVuejVQQ== + dependencies: + fs-extra "^9.1.0" + npmlog "^6.0.2" + read-cmd-shim "^3.0.0" + +"@lerna/rimraf-dir@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/rimraf-dir/-/rimraf-dir-6.0.1.tgz#e52ba283a4c39ade75792c23d0c6dcec65dcbbf4" + integrity sha512-rBFkwrxEQWFfZV5IMiPfGVubOquvOTNsPJPUf5tZoPAqKHXVQi5iYZGB65VG8JA7eFenZxh5mVErX2gtWFh1Ew== + dependencies: + "@lerna/child-process" "6.0.1" + npmlog "^6.0.2" + path-exists "^4.0.0" + rimraf "^3.0.2" + +"@lerna/run-lifecycle@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/run-lifecycle/-/run-lifecycle-6.0.1.tgz#ab94838cf7daa1edd6228be0a161b38ec1a42a0b" + integrity sha512-gC7rnV3mrgFFIM8GlHc3d22ovYHoExu9CuIAxN26CVrMq7iEYxWoxYvweqVANsCHR7CVbs+dsDx8/TP1pQG8wg== + dependencies: + "@lerna/npm-conf" "6.0.1" + "@npmcli/run-script" "^4.1.7" + npmlog "^6.0.2" + p-queue "^6.6.2" + +"@lerna/run-topologically@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/run-topologically/-/run-topologically-6.0.1.tgz#dcf26259e57b224d4aad2e3b259555ecd2f226ea" + integrity sha512-p4J9RvOUyDUjQ21tDh7Durci9YnuBu3T8WXD8xu5ZwcxVnawK1h5B8kP4V1R5L/jwNqkXsAnlLwikPVGQ5Iptw== + dependencies: + "@lerna/query-graph" "6.0.1" + p-queue "^6.6.2" + +"@lerna/run@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/run/-/run-6.0.1.tgz#20d3c77fa8faad01b915214b95477ae5390c8b45" + integrity sha512-F1vvpaevsWCjaQs3NlBegH54izm3cO3Qbg/cRRzPZMK4Jo7gE1ddL7+zCIq0zGt6aeVqRGBOtUMk4SvNGkzI4w== + dependencies: + "@lerna/command" "6.0.1" + "@lerna/filter-options" "6.0.1" + "@lerna/npm-run-script" "6.0.1" + "@lerna/output" "6.0.1" + "@lerna/profiler" "6.0.1" + "@lerna/run-topologically" "6.0.1" + "@lerna/timer" "6.0.1" + "@lerna/validation-error" "6.0.1" + fs-extra "^9.1.0" + p-map "^4.0.0" + +"@lerna/symlink-binary@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/symlink-binary/-/symlink-binary-6.0.1.tgz#b9278650c3360cc518e0d313d9999cd740a2c054" + integrity sha512-TcwxDMgU9w+hGl0EeYihPytVRKV0KTeZZW4Bq6NEtjTCIIuKWxZjcY5ocxW22i6BClBvfFAJqkf+e+i3Nixlhg== + dependencies: + "@lerna/create-symlink" "6.0.1" + "@lerna/package" "6.0.1" + fs-extra "^9.1.0" + p-map "^4.0.0" + +"@lerna/symlink-dependencies@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/symlink-dependencies/-/symlink-dependencies-6.0.1.tgz#28c01b3f910c1d13b1d447d27c47f5c76efd0096" + integrity sha512-ImyqjLjMBu0ORGO9gYHr9oDgN/5QeeGuELtYNweLS5vMNSH1dokQW9fqZSrgfCJPbxeCizBcDTi/Knqg17ebkA== + dependencies: + "@lerna/create-symlink" "6.0.1" + "@lerna/resolve-symlink" "6.0.1" + "@lerna/symlink-binary" "6.0.1" + fs-extra "^9.1.0" + p-map "^4.0.0" + p-map-series "^2.1.0" + +"@lerna/temp-write@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/temp-write/-/temp-write-6.0.1.tgz#84f8aa3f74b6150706a70430c68815517f5301cf" + integrity sha512-9eklYncDnwTnGF9o14GOrZU05ZK5n6/x5XYRQHbuLfK5T9pmOiUyl6sO1613cZygUMaWHHi7BLtBPiw2CklqXQ== + dependencies: + graceful-fs "^4.1.15" + is-stream "^2.0.0" + make-dir "^3.0.0" + temp-dir "^1.0.0" + uuid "^8.3.2" + +"@lerna/timer@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/timer/-/timer-6.0.1.tgz#eb10242c48a1246e1bf216af305974fbd6332d39" + integrity sha512-FLoga8iprKmRkh9jO+LP4Bm7MZLO4wNHM4LML4Dlh9CPwcIOWTteI8wSgRXvEJpt33IRIoPOUnfL3iHh8WwaYA== + +"@lerna/validation-error@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/validation-error/-/validation-error-6.0.1.tgz#afcf6b193eae86d64df9561afb7698696257304f" + integrity sha512-kjAxfFY1pDltwoCTvMQCbnpBwMXBFuvE4hdi8qePhBQ1Lf0PlTOI4ZqMFIkaTud+oujzysDXraTJbYTjc+C+zw== + dependencies: + npmlog "^6.0.2" + +"@lerna/version@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/version/-/version-6.0.1.tgz#988675be8ea29f1548cb4554c257c2cc94b78084" + integrity sha512-d/addeHVsRFWx3fb/XZIh6f23KuEC9Fn3ytpaMzA8rlLF3Nob1opIR98ZfUz7Nf+skpIV1QiIbXdJTZzIKvd9g== + dependencies: + "@lerna/check-working-tree" "6.0.1" + "@lerna/child-process" "6.0.1" + "@lerna/collect-updates" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/conventional-commits" "6.0.1" + "@lerna/github-client" "6.0.1" + "@lerna/gitlab-client" "6.0.1" + "@lerna/output" "6.0.1" + "@lerna/prerelease-id-from-version" "6.0.1" + "@lerna/prompt" "6.0.1" + "@lerna/run-lifecycle" "6.0.1" + "@lerna/run-topologically" "6.0.1" + "@lerna/temp-write" "6.0.1" + "@lerna/validation-error" "6.0.1" + "@nrwl/devkit" ">=14.8.6 < 16" + chalk "^4.1.0" + dedent "^0.7.0" + load-json-file "^6.2.0" + minimatch "^3.0.4" + npmlog "^6.0.2" + p-map "^4.0.0" + p-pipe "^3.1.0" + p-reduce "^2.1.0" + p-waterfall "^2.1.1" + semver "^7.3.4" + slash "^3.0.0" + write-json-file "^4.3.0" + +"@lerna/write-log-file@6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@lerna/write-log-file/-/write-log-file-6.0.1.tgz#4335d5e08686f8250ebae9d7f56b64452bd90cd3" + integrity sha512-fJGDE8rlE35DwKSqV8M1VV2xw/vQlgwTwURjNOMvd1Ar23Aa9CkJC4XAwc9uUgIku34IsWUM8MNbw9ClSsJaqw== + dependencies: + npmlog "^6.0.2" + write-file-atomic "^4.0.1" + +"@next/env@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/env/-/env-13.0.0.tgz#38527956680693c90b4522ab4ab9a2fbe3a17f67" + integrity sha512-65v9BVuah2Mplohm4+efsKEnoEuhmlGm8B2w6vD1geeEP2wXtlSJCvR/cCRJ3fD8wzCQBV41VcMBQeYET6MRkg== + +"@next/eslint-plugin-next@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.0.0.tgz#cf3d799b21671554c1f5889c01d2513afb9973cd" + integrity sha512-z+gnX4Zizatqatc6f4CQrcC9oN8Us3Vrq/OLyc98h7K/eWctrnV91zFZodmJHUjx0cITY8uYM7LXD7IdYkg3kg== + dependencies: + glob "7.1.7" + +"@next/swc-android-arm-eabi@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.0.tgz#15cd89d19d3c00d123fdfe367bab38c362f6c515" + integrity sha512-+DUQkYF93gxFjWY+CYWE1QDX6gTgnUiWf+W4UqZjM1Jcef8U97fS6xYh+i+8rH4MM0AXHm7OSakvfOMzmjU6VA== + +"@next/swc-android-arm64@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.0.0.tgz#9410365bb07097268d4773a46b02cfe6b3fe3ab7" + integrity sha512-RW9Uy3bMSc0zVGCa11klFuwfP/jdcdkhdruqnrJ7v+7XHm6OFKkSRzX6ee7yGR1rdDZvTnP4GZSRSpzjLv/N0g== + +"@next/swc-darwin-arm64@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.0.tgz#caf262fb5cb8bb335f6f344fd67a44dc8bf6a084" + integrity sha512-APA26nps1j4qyhOIzkclW/OmgotVHj1jBxebSpMCPw2rXfiNvKNY9FA0TcuwPmUCNqaTnm703h6oW4dvp73A4Q== + +"@next/swc-darwin-x64@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.0.tgz#6b214753410e1d8512a1491045acea1e188df7d6" + integrity sha512-qsUhUdoFuRJiaJ7LnvTQ6GZv1QnMDcRXCIjxaN0FNVXwrjkq++U7KjBUaxXkRzLV4C7u0NHLNOp0iZwNNE7ypw== + +"@next/swc-freebsd-x64@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.0.tgz#eeb176bdb585f48882bdac1d04271b918ca87590" + integrity sha512-sCdyCbboS7CwdnevKH9J6hkJI76LUw1jVWt4eV7kISuLiPba3JmehZSWm80oa4ADChRVAwzhLAo2zJaYRrInbg== + +"@next/swc-linux-arm-gnueabihf@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.0.tgz#2c2a9622c93f87a8baca94e068f674da4cae6018" + integrity sha512-/X/VxfFA41C9jrEv+sUsPLQ5vbDPVIgG0CJrzKvrcc+b+4zIgPgtfsaWq9ockjHFQi3ycvlZK4TALOXO8ovQ6Q== + +"@next/swc-linux-arm64-gnu@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.0.tgz#69505827e2928fb18034150fd4d754d54c4a1c4b" + integrity sha512-x6Oxr1GIi0ZtNiT6jbw+JVcbEi3UQgF7mMmkrgfL4mfchOwXtWSHKTSSPnwoJWJfXYa0Vy1n8NElWNTGAqoWFw== + +"@next/swc-linux-arm64-musl@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.0.tgz#487a88f2583a046e882328fe0665b37eca4fd0f6" + integrity sha512-SnMH9ngI+ipGh3kqQ8+mDtWunirwmhQnQeZkEq9e/9Xsgjf04OetqrqRHKM1HmJtG2qMUJbyXFJ0F81TPuT+3g== + +"@next/swc-linux-x64-gnu@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.0.tgz#29e89c7e4fd2e2b16ad059076f6261998aee53df" + integrity sha512-VSQwTX9EmdbotArtA1J67X8964oQfe0xHb32x4tu+JqTR+wOHyG6wGzPMdXH2oKAp6rdd7BzqxUXXf0J+ypHlw== + +"@next/swc-linux-x64-musl@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.0.tgz#2f63aae922d2b2829aec21bf8f9adda8b6c16365" + integrity sha512-xBCP0nnpO0q4tsytXkvIwWFINtbFRyVY5gxa1zB0vlFtqYR9lNhrOwH3CBrks3kkeaePOXd611+8sjdUtrLnXA== + +"@next/swc-win32-arm64-msvc@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.0.tgz#4117bad96c2a6775f70294fba45c63951a8a21ac" + integrity sha512-NutwDafqhGxqPj/eiUixJq9ImS/0sgx6gqlD7jRndCvQ2Q8AvDdu1+xKcGWGNnhcDsNM/n1avf1e62OG1GaqJg== + +"@next/swc-win32-ia32-msvc@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.0.tgz#5914eb86f9ea92a00d76cb094dd9734b3bf2012c" + integrity sha512-zNaxaO+Kl/xNz02E9QlcVz0pT4MjkXGDLb25qxtAzyJL15aU0+VjjbIZAYWctG59dvggNIUNDWgoBeVTKB9xLg== + +"@next/swc-win32-x64-msvc@13.0.0": + version "13.0.0" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.0.tgz#c54a5a739dee04b20338d305226a2acdf701f67f" + integrity sha512-FFOGGWwTCRMu9W7MF496Urefxtuo2lttxF1vwS+1rIRsKvuLrWhVaVTj3T8sf2EBL6gtJbmh4TYlizS+obnGKA== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@npmcli/arborist@5.3.0": + version "5.3.0" + resolved "https://registry.yarnpkg.com/@npmcli/arborist/-/arborist-5.3.0.tgz#321d9424677bfc08569e98a5ac445ee781f32053" + integrity sha512-+rZ9zgL1lnbl8Xbb1NQdMjveOMwj4lIYfcDtyJHHi5x4X8jtR6m8SXooJMZy5vmFVZ8w7A2Bnd/oX9eTuU8w5A== + dependencies: + "@isaacs/string-locale-compare" "^1.1.0" + "@npmcli/installed-package-contents" "^1.0.7" + "@npmcli/map-workspaces" "^2.0.3" + "@npmcli/metavuln-calculator" "^3.0.1" + "@npmcli/move-file" "^2.0.0" + "@npmcli/name-from-folder" "^1.0.1" + "@npmcli/node-gyp" "^2.0.0" + "@npmcli/package-json" "^2.0.0" + "@npmcli/run-script" "^4.1.3" + bin-links "^3.0.0" + cacache "^16.0.6" + common-ancestor-path "^1.0.1" + json-parse-even-better-errors "^2.3.1" + json-stringify-nice "^1.1.4" + mkdirp "^1.0.4" + mkdirp-infer-owner "^2.0.0" + nopt "^5.0.0" + npm-install-checks "^5.0.0" + npm-package-arg "^9.0.0" + npm-pick-manifest "^7.0.0" + npm-registry-fetch "^13.0.0" + npmlog "^6.0.2" + pacote "^13.6.1" + parse-conflict-json "^2.0.1" + proc-log "^2.0.0" + promise-all-reject-late "^1.0.0" + promise-call-limit "^1.0.1" + read-package-json-fast "^2.0.2" + readdir-scoped-modules "^1.1.0" + rimraf "^3.0.2" + semver "^7.3.7" + ssri "^9.0.0" + treeverse "^2.0.0" + walk-up-path "^1.0.0" + +"@npmcli/fs@^2.1.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865" + integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== + dependencies: + "@gar/promisify" "^1.1.3" + semver "^7.3.5" + +"@npmcli/git@^3.0.0": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@npmcli/git/-/git-3.0.2.tgz#5c5de6b4d70474cf2d09af149ce42e4e1dacb931" + integrity sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w== + dependencies: + "@npmcli/promise-spawn" "^3.0.0" + lru-cache "^7.4.4" + mkdirp "^1.0.4" + npm-pick-manifest "^7.0.0" + proc-log "^2.0.0" + promise-inflight "^1.0.1" + promise-retry "^2.0.1" + semver "^7.3.5" + which "^2.0.2" + +"@npmcli/installed-package-contents@^1.0.7": + version "1.0.7" + resolved "https://registry.yarnpkg.com/@npmcli/installed-package-contents/-/installed-package-contents-1.0.7.tgz#ab7408c6147911b970a8abe261ce512232a3f4fa" + integrity sha512-9rufe0wnJusCQoLpV9ZPKIVP55itrM5BxOXs10DmdbRfgWtHy1LDyskbwRnBghuB0PrF7pNPOqREVtpz4HqzKw== + dependencies: + npm-bundled "^1.1.1" + npm-normalize-package-bin "^1.0.1" + +"@npmcli/map-workspaces@^2.0.3": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@npmcli/map-workspaces/-/map-workspaces-2.0.4.tgz#9e5e8ab655215a262aefabf139782b894e0504fc" + integrity sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg== + dependencies: + "@npmcli/name-from-folder" "^1.0.1" + glob "^8.0.1" + minimatch "^5.0.1" + read-package-json-fast "^2.0.3" + +"@npmcli/metavuln-calculator@^3.0.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@npmcli/metavuln-calculator/-/metavuln-calculator-3.1.1.tgz#9359bd72b400f8353f6a28a25c8457b562602622" + integrity sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA== + dependencies: + cacache "^16.0.0" + json-parse-even-better-errors "^2.3.1" + pacote "^13.0.3" + semver "^7.3.5" + +"@npmcli/move-file@^2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4" + integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== + dependencies: + mkdirp "^1.0.4" + rimraf "^3.0.2" + +"@npmcli/name-from-folder@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz#77ecd0a4fcb772ba6fe927e2e2e155fbec2e6b1a" + integrity sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA== + +"@npmcli/node-gyp@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/node-gyp/-/node-gyp-2.0.0.tgz#8c20e53e34e9078d18815c1d2dda6f2420d75e35" + integrity sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A== + +"@npmcli/package-json@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/package-json/-/package-json-2.0.0.tgz#3bbcf4677e21055adbe673d9f08c9f9cde942e4a" + integrity sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA== + dependencies: + json-parse-even-better-errors "^2.3.1" + +"@npmcli/promise-spawn@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@npmcli/promise-spawn/-/promise-spawn-3.0.0.tgz#53283b5f18f855c6925f23c24e67c911501ef573" + integrity sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g== + dependencies: + infer-owner "^1.0.4" + +"@npmcli/run-script@^4.1.0", "@npmcli/run-script@^4.1.3", "@npmcli/run-script@^4.1.7": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@npmcli/run-script/-/run-script-4.2.1.tgz#c07c5c71bc1c70a5f2a06b0d4da976641609b946" + integrity sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg== + dependencies: + "@npmcli/node-gyp" "^2.0.0" + "@npmcli/promise-spawn" "^3.0.0" + node-gyp "^9.0.0" + read-package-json-fast "^2.0.3" + which "^2.0.2" + +"@nrwl/cli@15.0.4": + version "15.0.4" + resolved "https://registry.yarnpkg.com/@nrwl/cli/-/cli-15.0.4.tgz#a10da4912d525c4ebc14d3a19810c7e5f09d0ac0" + integrity sha512-H3lni8iXUOzWTg1nH4YqOYxpyDz8Bq1Y30bb26r5yRlhdwsNtDBCZCaJQim8yCqYXYJVbxQnU4Ree2WR8xSg/g== + dependencies: + nx "15.0.4" + +"@nrwl/devkit@>=14.8.6 < 16": + version "15.0.4" + resolved "https://registry.yarnpkg.com/@nrwl/devkit/-/devkit-15.0.4.tgz#5139b236bef73e8f680478a4b5d76daad5c39e22" + integrity sha512-m32ust10hw2zZyWuspJNHeRGFzfvpgz8TI6OXsOt39TEk8aZiPm3CjxyKW0ntkwS6/VoYqVL7Xz+Q49R0UlItA== + dependencies: + "@phenomnomnominal/tsquery" "4.1.1" + ejs "^3.1.7" + ignore "^5.0.4" + semver "7.3.4" + tslib "^2.3.0" + +"@nrwl/tao@15.0.4": + version "15.0.4" + resolved "https://registry.yarnpkg.com/@nrwl/tao/-/tao-15.0.4.tgz#193bf740bd1811d8506de79ce34a70086705b028" + integrity sha512-hBmHI6Zlq/bAyeF+SPa9EJdWEFGAAUB+puz2jQfPWcyvTBTYDwqimLNJCaj8uy+aXBmrRCjmfNSBvgNxRiA0Sg== + dependencies: + nx "15.0.4" + +"@octokit/auth-token@^3.0.0": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.2.tgz#a0fc8de149fd15876e1ac78f6525c1c5ab48435f" + integrity sha512-pq7CwIMV1kmzkFTimdwjAINCXKTajZErLB4wMLYapR2nuB/Jpr66+05wOTZMSCBXP6n4DdDWT2W19Bm17vU69Q== + dependencies: + "@octokit/types" "^8.0.0" + +"@octokit/core@^4.1.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.1.0.tgz#b6b03a478f1716de92b3f4ec4fd64d05ba5a9251" + integrity sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ== + dependencies: + "@octokit/auth-token" "^3.0.0" + "@octokit/graphql" "^5.0.0" + "@octokit/request" "^6.0.0" + "@octokit/request-error" "^3.0.0" + "@octokit/types" "^8.0.0" + before-after-hook "^2.2.0" + universal-user-agent "^6.0.0" + +"@octokit/endpoint@^7.0.0": + version "7.0.3" + resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.3.tgz#0b96035673a9e3bedf8bab8f7335de424a2147ed" + integrity sha512-57gRlb28bwTsdNXq+O3JTQ7ERmBTuik9+LelgcLIVfYwf235VHbN9QNo4kXExtp/h8T423cR5iJThKtFYxC7Lw== + dependencies: + "@octokit/types" "^8.0.0" + is-plain-object "^5.0.0" + universal-user-agent "^6.0.0" + +"@octokit/graphql@^5.0.0": + version "5.0.4" + resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.4.tgz#519dd5c05123868276f3ae4e50ad565ed7dff8c8" + integrity sha512-amO1M5QUQgYQo09aStR/XO7KAl13xpigcy/kI8/N1PnZYSS69fgte+xA4+c2DISKqUZfsh0wwjc2FaCt99L41A== + dependencies: + "@octokit/request" "^6.0.0" + "@octokit/types" "^8.0.0" + universal-user-agent "^6.0.0" + +"@octokit/openapi-types@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-14.0.0.tgz#949c5019028c93f189abbc2fb42f333290f7134a" + integrity sha512-HNWisMYlR8VCnNurDU6os2ikx0s0VyEjDYHNS/h4cgb8DeOxQ0n72HyinUtdDVxJhFy3FWLGl0DJhfEWk3P5Iw== + +"@octokit/plugin-enterprise-rest@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-6.0.1.tgz#e07896739618dab8da7d4077c658003775f95437" + integrity sha512-93uGjlhUD+iNg1iWhUENAtJata6w5nE+V4urXOAlIXdco6xNZtUSfYY8dzp3Udy74aqO/B5UZL80x/YMa5PKRw== + +"@octokit/plugin-paginate-rest@^5.0.0": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-5.0.1.tgz#93d7e74f1f69d68ba554fa6b888c2a9cf1f99a83" + integrity sha512-7A+rEkS70pH36Z6JivSlR7Zqepz3KVucEFVDnSrgHXzG7WLAzYwcHZbKdfTXHwuTHbkT1vKvz7dHl1+HNf6Qyw== + dependencies: + "@octokit/types" "^8.0.0" + +"@octokit/plugin-request-log@^1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85" + integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA== + +"@octokit/plugin-rest-endpoint-methods@^6.7.0": + version "6.7.0" + resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-6.7.0.tgz#2f6f17f25b6babbc8b41d2bb0a95a8839672ce7c" + integrity sha512-orxQ0fAHA7IpYhG2flD2AygztPlGYNAdlzYz8yrD8NDgelPfOYoRPROfEyIe035PlxvbYrgkfUZIhSBKju/Cvw== + dependencies: + "@octokit/types" "^8.0.0" + deprecation "^2.3.1" + +"@octokit/request-error@^3.0.0": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.2.tgz#f74c0f163d19463b87528efe877216c41d6deb0a" + integrity sha512-WMNOFYrSaX8zXWoJg9u/pKgWPo94JXilMLb2VManNOby9EZxrQaBe/QSC4a1TzpAlpxofg2X/jMnCyZgL6y7eg== + dependencies: + "@octokit/types" "^8.0.0" + deprecation "^2.0.0" + once "^1.4.0" + +"@octokit/request@^6.0.0": + version "6.2.2" + resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.2.tgz#a2ba5ac22bddd5dcb3f539b618faa05115c5a255" + integrity sha512-6VDqgj0HMc2FUX2awIs+sM6OwLgwHvAi4KCK3mT2H2IKRt6oH9d0fej5LluF5mck1lRR/rFWN0YIDSYXYSylbw== + dependencies: + "@octokit/endpoint" "^7.0.0" + "@octokit/request-error" "^3.0.0" + "@octokit/types" "^8.0.0" + is-plain-object "^5.0.0" + node-fetch "^2.6.7" + universal-user-agent "^6.0.0" + +"@octokit/rest@^19.0.3": + version "19.0.5" + resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.5.tgz#4dbde8ae69b27dca04b5f1d8119d282575818f6c" + integrity sha512-+4qdrUFq2lk7Va+Qff3ofREQWGBeoTKNqlJO+FGjFP35ZahP+nBenhZiGdu8USSgmq4Ky3IJ/i4u0xbLqHaeow== + dependencies: + "@octokit/core" "^4.1.0" + "@octokit/plugin-paginate-rest" "^5.0.0" + "@octokit/plugin-request-log" "^1.0.4" + "@octokit/plugin-rest-endpoint-methods" "^6.7.0" + +"@octokit/types@^8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-8.0.0.tgz#93f0b865786c4153f0f6924da067fe0bb7426a9f" + integrity sha512-65/TPpOJP1i3K4lBJMnWqPUJ6zuOtzhtagDvydAWbEXpbFYA0oMKKyLb95NFZZP0lSh/4b6K+DQlzvYQJQQePg== + dependencies: + "@octokit/openapi-types" "^14.0.0" + +"@parcel/watcher@2.0.4": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.0.4.tgz#f300fef4cc38008ff4b8c29d92588eced3ce014b" + integrity sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg== + dependencies: + node-addon-api "^3.2.1" + node-gyp-build "^4.3.0" + +"@phenomnomnominal/tsquery@4.1.1": + version "4.1.1" + resolved "https://registry.yarnpkg.com/@phenomnomnominal/tsquery/-/tsquery-4.1.1.tgz#42971b83590e9d853d024ddb04a18085a36518df" + integrity sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ== + dependencies: + esquery "^1.0.1" + +"@rollup/plugin-babel@^5.1.0": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283" + integrity sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q== + dependencies: + "@babel/helper-module-imports" "^7.10.4" + "@rollup/pluginutils" "^3.1.0" + +"@rollup/plugin-commonjs@^11.0.0": + version "11.1.0" + resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-11.1.0.tgz#60636c7a722f54b41e419e1709df05c7234557ef" + integrity sha512-Ycr12N3ZPN96Fw2STurD21jMqzKwL9QuFhms3SD7KKRK7oaXUsBU9Zt0jL/rOPHiPYisI21/rXGO3jr9BnLHUA== + dependencies: + "@rollup/pluginutils" "^3.0.8" + commondir "^1.0.1" + estree-walker "^1.0.1" + glob "^7.1.2" + is-reference "^1.1.2" + magic-string "^0.25.2" + resolve "^1.11.0" + +"@rollup/plugin-json@^4.0.0": + version "4.1.0" + resolved "https://registry.yarnpkg.com/@rollup/plugin-json/-/plugin-json-4.1.0.tgz#54e09867ae6963c593844d8bd7a9c718294496f3" + integrity sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== + dependencies: + "@rollup/pluginutils" "^3.0.8" + +"@rollup/plugin-node-resolve@^9.0.0": + version "9.0.0" + resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-9.0.0.tgz#39bd0034ce9126b39c1699695f440b4b7d2b62e6" + integrity sha512-gPz+utFHLRrd41WMP13Jq5mqqzHL3OXrfj3/MkSyB6UBIcuNt9j60GCbarzMzdf1VHFpOxfQh/ez7wyadLMqkg== + dependencies: + "@rollup/pluginutils" "^3.1.0" + "@types/resolve" "1.17.1" + builtin-modules "^3.1.0" + deepmerge "^4.2.2" + is-module "^1.0.0" + resolve "^1.17.0" + +"@rollup/plugin-replace@^2.2.1": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz#a2d539314fbc77c244858faa523012825068510a" + integrity sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg== + dependencies: + "@rollup/pluginutils" "^3.1.0" + magic-string "^0.25.7" + +"@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.0.9", "@rollup/pluginutils@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.1.0.tgz#706b4524ee6dc8b103b3c995533e5ad680c02b9b" + integrity sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== + dependencies: + "@types/estree" "0.0.39" + estree-walker "^1.0.1" + picomatch "^2.2.2" + +"@rushstack/eslint-patch@^1.1.3": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" + integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== + +"@samverschueren/stream-to-observable@^0.3.0": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz#a21117b19ee9be70c379ec1877537ef2e1c63301" + integrity sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ== + dependencies: + any-observable "^0.3.0" + +"@sindresorhus/is@^0.14.0": + version "0.14.0" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" + integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== + +"@sinonjs/commons@^1.7.0": + version "1.8.3" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" + integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== + dependencies: + type-detect "4.0.8" + +"@swc/helpers@0.4.11": + version "0.4.11" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.11.tgz#db23a376761b3d31c26502122f349a21b592c8de" + integrity sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw== + dependencies: + tslib "^2.4.0" + +"@szmarczak/http-timer@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz#b1665e2c461a2cd92f4c1bbf50d5454de0d4b421" + integrity sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA== + dependencies: + defer-to-connect "^1.0.1" + +"@tootallnate/once@2": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" + integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== + +"@types/babel__core@^7.1.7": + version "7.1.19" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460" + integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.1" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.18.2" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.2.tgz#235bf339d17185bdec25e024ca19cce257cc7309" + integrity sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg== + dependencies: + "@babel/types" "^7.3.0" + +"@types/cheerio@^0.22.11": + version "0.22.31" + resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.31.tgz#b8538100653d6bb1b08a1e46dec75b4f2a5d5eb6" + integrity sha512-Kt7Cdjjdi2XWSfrZ53v4Of0wG3ZcmaegFXjMmz9tfNrZSkzzo36G0AL1YqSdcIA78Etjt6E609pt5h1xnQkPUw== + dependencies: + "@types/node" "*" + +"@types/dotenv@^6.1.1": + version "6.1.1" + resolved "https://registry.yarnpkg.com/@types/dotenv/-/dotenv-6.1.1.tgz#f7ce1cc4fe34f0a4373ba99fefa437b0bec54b46" + integrity sha512-ftQl3DtBvqHl9L16tpqqzA4YzCSXZfi7g8cQceTz5rOlYtk/IZbFjAv3mLOQlNIgOaylCQWQoBdDQHPgEBJPHg== + dependencies: + "@types/node" "*" + +"@types/ejs@^2.6.3": + version "2.7.0" + resolved "https://registry.yarnpkg.com/@types/ejs/-/ejs-2.7.0.tgz#bc84e083eae38f64a287a6dab9012bbe1d96e295" + integrity sha512-kM2g9Fdk/du24fKuuQhA/LBleFR4Z4JP2MVKpLxQQSzofF1uJ06D+c05zfLDAkkDO55aEeNwJih0gHrE/Ci20A== + +"@types/eslint-visitor-keys@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" + integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== + +"@types/estree@*": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2" + integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ== + +"@types/estree@0.0.39": + version "0.0.39" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" + integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== + +"@types/execa@^0.9.0": + version "0.9.0" + resolved "https://registry.yarnpkg.com/@types/execa/-/execa-0.9.0.tgz#9b025d2755f17e80beaf9368c3f4f319d8b0fb93" + integrity sha512-mgfd93RhzjYBUHHV532turHC2j4l/qxsF/PbfDmprHDEUHmNZGlDn1CEsulGK3AfsPdhkWzZQT/S/k0UGhLGsA== + dependencies: + "@types/node" "*" + +"@types/fs-extra@^5.0.5": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-5.1.0.tgz#2a325ef97901504a3828718c390d34b8426a10a1" + integrity sha512-AInn5+UBFIK9FK5xc9yP5e3TQSPNNgjHByqYcj9g5elVBnDQcQL7PlO1CIRy2gWlbwK7UPYqi7vRvFA44dCmYQ== + dependencies: + "@types/node" "*" + +"@types/glob@^7.1.1": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" + integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== + dependencies: + "@types/minimatch" "*" + "@types/node" "*" + +"@types/graceful-fs@^4.1.2": + version "4.1.5" + resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" + integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== + dependencies: + "@types/node" "*" + +"@types/ink@^0.5.1": + version "0.5.2" + resolved "https://registry.yarnpkg.com/@types/ink/-/ink-0.5.2.tgz#5e51b233d14639ee95df4d3c8b7f7845c51d094c" + integrity sha512-yEuhWTRMXJkIWiaM58c5kuRot5HFccv9kjjgy0fBZG0+tYb+sMBaxHNPVqyZXspGGlmwDOQ1d3BsygWpWlW17w== + dependencies: + "@types/node" "*" + "@types/prop-types" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + +"@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^1.1.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2" + integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== + dependencies: + "@types/istanbul-lib-coverage" "*" + "@types/istanbul-lib-report" "*" + +"@types/jest@^25.2.1": + version "25.2.3" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-25.2.3.tgz#33d27e4c4716caae4eced355097a47ad363fdcaf" + integrity sha512-JXc1nK/tXHiDhV55dvfzqtmP4S3sy3T3ouV2tkViZgxY/zeUkcpQcQPGRlgF4KmWzWW5oiWYSZwtCB+2RsE4Fw== + dependencies: + jest-diff "^25.2.1" + pretty-format "^25.2.1" + +"@types/json-schema@^7.0.3": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/lodash@^4.14.123": + version "4.14.186" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.186.tgz#862e5514dd7bd66ada6c70ee5fce844b06c8ee97" + integrity sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw== + +"@types/minimatch@*": + version "5.1.2" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" + integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== + +"@types/minimatch@^3.0.3": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40" + integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== + +"@types/minimist@^1.2.0": + version "1.2.2" + resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" + integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== + +"@types/node-fetch@^2.3.2": + version "2.6.2" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.2.tgz#d1a9c5fd049d9415dce61571557104dec3ec81da" + integrity sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + +"@types/node@*": + version "18.11.7" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.7.tgz#8ccef136f240770c1379d50100796a6952f01f94" + integrity sha512-LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ== + +"@types/node@18.11.8": + version "18.11.8" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.8.tgz#16d222a58d4363a2a359656dd20b28414de5d265" + integrity sha512-uGwPWlE0Hj972KkHtCDVwZ8O39GmyjfMane1Z3GUBGGnkZ2USDq7SxLpVIiIHpweY9DS0QTDH0Nw7RNBsAAZ5A== + +"@types/node@^11.13.5": + version "11.15.54" + resolved "https://registry.yarnpkg.com/@types/node/-/node-11.15.54.tgz#59ed60e7b0d56905a654292e8d73275034eb6283" + integrity sha512-1RWYiq+5UfozGsU6MwJyFX6BtktcT10XRjvcAQmskCtMcW3tPske88lM/nHv7BQG1w9KBXI1zPGuu5PnNCX14g== + +"@types/normalize-package-data@^2.4.0": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" + integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + +"@types/prettier@^1.16.3", "@types/prettier@^1.19.0": + version "1.19.1" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-1.19.1.tgz#33509849f8e679e4add158959fdb086440e9553f" + integrity sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ== + +"@types/prop-types@*": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + +"@types/q@^1.5.1": + version "1.5.5" + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz#75a2a8e7d8ab4b230414505d92335d1dcb53a6df" + integrity sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ== + +"@types/react-dom@18.0.8": + version "18.0.8" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.8.tgz#d2606d855186cd42cc1b11e63a71c39525441685" + integrity sha512-C3GYO0HLaOkk9dDAz3Dl4sbe4AKUGTCfFIZsz3n/82dPNN8Du533HzKatDxeUYWu24wJgMP1xICqkWk1YOLOIw== + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@18.0.24": + version "18.0.24" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.24.tgz#2f79ed5b27f08d05107aab45c17919754cc44c20" + integrity sha512-wRJWT6ouziGUy+9uX0aW4YOJxAY0bG6/AOk5AW5QSvZqI7dk6VBIbXvcVgIw/W5Jrl24f77df98GEKTJGOLx7Q== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/react@^16.8.17": + version "16.14.34" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.34.tgz#d129324ffda312044e1c47aab18696e4ed493282" + integrity sha512-b99nWeGGReLh6aKBppghVqp93dFJtgtDOzc8NXM6hewD8PQ2zZG5kBLgbx+VJr7Q7WBMjHxaIl3dwpwwPIUgyA== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/resolve@1.17.1": + version "1.17.1" + resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6" + integrity sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== + dependencies: + "@types/node" "*" + +"@types/scheduler@*": + version "0.16.2" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== + +"@types/stack-utils@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" + integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== + +"@types/svgo@^1.3.3": + version "1.3.6" + resolved "https://registry.yarnpkg.com/@types/svgo/-/svgo-1.3.6.tgz#9db00a7ddf9b26ad2feb6b834bef1818677845e1" + integrity sha512-AZU7vQcy/4WFEuwnwsNsJnFwupIpbllH1++LXScN6uxT1Z4zPzdrWG97w4/I7eFKFTvfy/bHFStWjdBAg2Vjug== + +"@types/yargs-parser@*": + version "21.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + +"@types/yargs@^15.0.0": + version "15.0.14" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz#26d821ddb89e70492160b66d10a0eb6df8f6fb06" + integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ== + dependencies: + "@types/yargs-parser" "*" + +"@types/yoga-layout@1.9.2": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@types/yoga-layout/-/yoga-layout-1.9.2.tgz#efaf9e991a7390dc081a0b679185979a83a9639a" + integrity sha512-S9q47ByT2pPvD65IvrWp7qppVMpk9WGMbVq9wbWZOHg6tnXSD4vyhao6nOSBwwfDdV2p3Kx9evA9vI+XWTfDvw== + +"@typescript-eslint/eslint-plugin@^1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-1.13.0.tgz#22fed9b16ddfeb402fd7bcde56307820f6ebc49f" + integrity sha512-WQHCozMnuNADiqMtsNzp96FNox5sOVpU8Xt4meaT4em8lOG1SrOv92/mUbEHQVh90sldKSfcOc/I0FOb/14G1g== + dependencies: + "@typescript-eslint/experimental-utils" "1.13.0" + eslint-utils "^1.3.1" + functional-red-black-tree "^1.0.1" + regexpp "^2.0.1" + tsutils "^3.7.0" + +"@typescript-eslint/eslint-plugin@^2.12.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz#6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9" + integrity sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ== + dependencies: + "@typescript-eslint/experimental-utils" "2.34.0" + functional-red-black-tree "^1.0.1" + regexpp "^3.0.0" + tsutils "^3.17.1" + +"@typescript-eslint/experimental-utils@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-1.13.0.tgz#b08c60d780c0067de2fb44b04b432f540138301e" + integrity sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg== + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/typescript-estree" "1.13.0" + eslint-scope "^4.0.0" + +"@typescript-eslint/experimental-utils@2.34.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f" + integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/typescript-estree" "2.34.0" + eslint-scope "^5.0.0" + eslint-utils "^2.0.0" + +"@typescript-eslint/parser@^1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-1.13.0.tgz#61ac7811ea52791c47dc9fd4dd4a184fae9ac355" + integrity sha512-ITMBs52PCPgLb2nGPoeT4iU3HdQZHcPaZVw+7CsFagRJHUhyeTgorEwHXhFf3e7Evzi8oujKNpHc8TONth8AdQ== + dependencies: + "@types/eslint-visitor-keys" "^1.0.0" + "@typescript-eslint/experimental-utils" "1.13.0" + "@typescript-eslint/typescript-estree" "1.13.0" + eslint-visitor-keys "^1.0.0" + +"@typescript-eslint/parser@^2.12.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8" + integrity sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA== + dependencies: + "@types/eslint-visitor-keys" "^1.0.0" + "@typescript-eslint/experimental-utils" "2.34.0" + "@typescript-eslint/typescript-estree" "2.34.0" + eslint-visitor-keys "^1.1.0" + +"@typescript-eslint/parser@^5.21.0": + version "5.41.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.41.0.tgz#0414a6405007e463dc527b459af1f19430382d67" + integrity sha512-HQVfix4+RL5YRWZboMD1pUfFN8MpRH4laziWkkAzyO1fvNOY/uinZcvo3QiFJVS/siNHupV8E5+xSwQZrl6PZA== + dependencies: + "@typescript-eslint/scope-manager" "5.41.0" + "@typescript-eslint/types" "5.41.0" + "@typescript-eslint/typescript-estree" "5.41.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.41.0": + version "5.41.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.41.0.tgz#28e3a41d626288d0628be14cf9de8d49fc30fadf" + integrity sha512-xOxPJCnuktUkY2xoEZBKXO5DBCugFzjrVndKdUnyQr3+9aDWZReKq9MhaoVnbL+maVwWJu/N0SEtrtEUNb62QQ== + dependencies: + "@typescript-eslint/types" "5.41.0" + "@typescript-eslint/visitor-keys" "5.41.0" + +"@typescript-eslint/types@5.41.0": + version "5.41.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.41.0.tgz#6800abebc4e6abaf24cdf220fb4ce28f4ab09a85" + integrity sha512-5BejraMXMC+2UjefDvrH0Fo/eLwZRV6859SXRg+FgbhA0R0l6lDqDGAQYhKbXhPN2ofk2kY5sgGyLNL907UXpA== + +"@typescript-eslint/typescript-estree@1.13.0": + version "1.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-1.13.0.tgz#8140f17d0f60c03619798f1d628b8434913dc32e" + integrity sha512-b5rCmd2e6DCC6tCTN9GSUAuxdYwCM/k/2wdjHGrIRGPSJotWMCe/dGpi66u42bhuh8q3QBzqM4TMA1GUUCJvdw== + dependencies: + lodash.unescape "4.0.1" + semver "5.5.0" + +"@typescript-eslint/typescript-estree@2.34.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5" + integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== + dependencies: + debug "^4.1.1" + eslint-visitor-keys "^1.1.0" + glob "^7.1.6" + is-glob "^4.0.1" + lodash "^4.17.15" + semver "^7.3.2" + tsutils "^3.17.1" + +"@typescript-eslint/typescript-estree@5.41.0": + version "5.41.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.41.0.tgz#bf5c6b3138adbdc73ba4871d060ae12c59366c61" + integrity sha512-SlzFYRwFSvswzDSQ/zPkIWcHv8O5y42YUskko9c4ki+fV6HATsTODUPbRbcGDFYP86gaJL5xohUEytvyNNcXWg== + dependencies: + "@typescript-eslint/types" "5.41.0" + "@typescript-eslint/visitor-keys" "5.41.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@5.41.0": + version "5.41.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.41.0.tgz#d3510712bc07d5540160ed3c0f8f213b73e3bcd9" + integrity sha512-vilqeHj267v8uzzakbm13HkPMl7cbYpKVjgFWZPIOHIJHZtinvypUhJ5xBXfWYg4eFKqztbMMpOgFpT9Gfx4fw== + dependencies: + "@typescript-eslint/types" "5.41.0" + eslint-visitor-keys "^3.3.0" + +"@yarnpkg/lockfile@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" + integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== + +"@yarnpkg/parsers@^3.0.0-rc.18": + version "3.0.0-rc.27" + resolved "https://registry.yarnpkg.com/@yarnpkg/parsers/-/parsers-3.0.0-rc.27.tgz#6bc512f37bb514303158069d4273757dcfdda984" + integrity sha512-qs2wZulOYVjaOS6tYOs3SsR7m/qeHwjPrB5i4JtBJELsgWrEkyL+rJH21RA+fVwttJobAYQqw5Xj5SYLaDK/bQ== + dependencies: + js-yaml "^3.10.0" + tslib "^2.4.0" + +"@zkochan/js-yaml@0.0.6": + version "0.0.6" + resolved "https://registry.yarnpkg.com/@zkochan/js-yaml/-/js-yaml-0.0.6.tgz#975f0b306e705e28b8068a07737fa46d3fc04826" + integrity sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg== + dependencies: + argparse "^2.0.1" + +JSONStream@^1.0.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + +abab@^2.0.0: + version "2.0.6" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" + integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== + +abbrev@1, abbrev@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +acorn-globals@^4.3.2: + version "4.3.4" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" + integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== + dependencies: + acorn "^6.0.1" + acorn-walk "^6.0.1" + +acorn-jsx@^5.0.0, acorn-jsx@^5.2.0, acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" + integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== + +acorn@^6.0.1, acorn@^6.0.7: + version "6.4.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== + +acorn@^7.1.0, acorn@^7.1.1: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +acorn@^8.8.0: + version "8.8.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" + integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== + +add-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" + integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ== + +agent-base@6, agent-base@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + +agentkeepalive@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717" + integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA== + dependencies: + debug "^4.1.0" + depd "^1.1.2" + humanize-ms "^1.2.1" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.9.1: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== + +ansi-regex@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== + +ansi-regex@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + +ansi-regex@^5.0.0, ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +any-observable@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" + integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +anymatch@^3.0.3, anymatch@~3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +"aproba@^1.0.3 || ^2.0.0", aproba@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + +are-we-there-yet@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" + integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +aria-query@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc" + integrity sha512-majUxHgLehQTeSA+hClx+DY09OVUqG3GtezWkF1krgLGNdlDu9l9V8DaqNMWbq4Eddc8wsyDA0hpDUtnYxQEXw== + dependencies: + ast-types-flow "0.0.7" + commander "^2.11.0" + +aria-query@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" + integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== + dependencies: + "@babel/runtime" "^7.10.2" + "@babel/runtime-corejs3" "^7.10.2" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA== + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== + +array-differ@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" + integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== + +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + integrity sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA== + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + integrity sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw== + +array-ify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" + integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== + +array-includes@^3.0.3, array-includes@^3.1.1, array-includes@^3.1.4, array-includes@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" + integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + get-intrinsic "^1.1.1" + is-string "^1.0.7" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== + +array.prototype.flat@^1.2.5: + version "1.3.0" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" + integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.2" + es-shim-unscopables "^1.0.0" + +array.prototype.flatmap@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" + integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.2" + es-shim-unscopables "^1.0.0" + +array.prototype.reduce@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz#8167e80089f78bff70a99e20bd4201d4663b0a6f" + integrity sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.2" + es-array-method-boxes-properly "^1.0.0" + is-string "^1.0.7" + +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +arrify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" + integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== + +asap@^2.0.0: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== + +asn1@~0.2.3: + version "0.2.6" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" + integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== + +ast-types-flow@0.0.7, ast-types-flow@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + +async@^3.2.3: + version "3.2.4" + resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" + integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +asyncro@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/asyncro/-/asyncro-3.0.0.tgz#3c7a732e263bc4a42499042f48d7d858e9c0134e" + integrity sha512-nEnWYfrBmA3taTiuiOoZYmgJ/CNrSoQLeLs29SeLcPu60yaw/mHDBHV0iOZ051fTvsTHxpCY+gXibqT9wbQYfg== + +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + +atob@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +auto-bind@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/auto-bind/-/auto-bind-4.0.0.tgz#e3589fc6c2da8f7ca43ba9f84fa52a744fc997fb" + integrity sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ== + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== + +aws4@^1.8.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" + integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== + +axe-core@^4.4.3: + version "4.5.0" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.5.0.tgz#6efe2ecdba205fcc9d7ddb3d48c2cf630f70eb5e" + integrity sha512-4+rr8eQ7+XXS5nZrKcMO/AikHL0hVqy+lHWAnE3xdHl+aguag8SOQ6eEqLexwLNWgXIMfunGuD3ON1/6Kyet0A== + +axios@^0.21.1: + version "0.21.4" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +axios@^1.0.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.1.3.tgz#8274250dada2edf53814ed7db644b9c2866c1e35" + integrity sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA== + dependencies: + follow-redirects "^1.15.0" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + +axobject-query@^2.0.2, axobject-query@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" + integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== + +babel-eslint@10.0.2: + version "10.0.2" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.2.tgz#182d5ac204579ff0881684b040560fdcc1558456" + integrity sha512-UdsurWPtgiPgpJ06ryUnuaSXC2s0WoSZnQmEpbAH65XZSdwowgN5MvyP7e88nW07FYXv72erVtpBkxyDVKhH1Q== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.0.0" + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + eslint-scope "3.7.1" + eslint-visitor-keys "^1.0.0" + +babel-eslint@^10.0.3: + version "10.1.0" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" + integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.7.0" + "@babel/traverse" "^7.7.0" + "@babel/types" "^7.7.0" + eslint-visitor-keys "^1.0.0" + resolve "^1.12.0" + +babel-jest@^25.5.1: + version "25.5.1" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-25.5.1.tgz#bc2e6101f849d6f6aec09720ffc7bc5332e62853" + integrity sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ== + dependencies: + "@jest/transform" "^25.5.1" + "@jest/types" "^25.5.0" + "@types/babel__core" "^7.1.7" + babel-plugin-istanbul "^6.0.0" + babel-preset-jest "^25.5.0" + chalk "^3.0.0" + graceful-fs "^4.2.4" + slash "^3.0.0" + +babel-plugin-annotate-pure-calls@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/babel-plugin-annotate-pure-calls/-/babel-plugin-annotate-pure-calls-0.4.0.tgz#78aa00fd878c4fcde4d49f3da397fcf5defbcce8" + integrity sha512-oi4M/PWUJOU9ZyRGoPTfPMqdyMp06jbJAomd3RcyYuzUtBOddv98BqLm96Lucpi2QFoQHkdGQt0ACvw7VzVEQA== + +babel-plugin-dev-expression@^0.2.1: + version "0.2.3" + resolved "https://registry.yarnpkg.com/babel-plugin-dev-expression/-/babel-plugin-dev-expression-0.2.3.tgz#8aaf52155dfb063ed4ddec6280456fbc256fead4" + integrity sha512-rP5LK9QQTzCW61nVVzw88En1oK8t8gTsIeC6E61oelxNsU842yMjF0G1MxhvUpCkxCEIj7sE8/e5ieTheT//uw== + +babel-plugin-istanbul@^6.0.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" + integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-instrument "^5.0.4" + test-exclude "^6.0.0" + +babel-plugin-jest-hoist@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-25.5.0.tgz#129c80ba5c7fc75baf3a45b93e2e372d57ca2677" + integrity sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g== + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__traverse" "^7.0.6" + +babel-plugin-macros@^2.6.1: + version "2.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" + integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== + dependencies: + "@babel/runtime" "^7.7.2" + cosmiconfig "^6.0.0" + resolve "^1.12.0" + +babel-plugin-polyfill-corejs2@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122" + integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== + dependencies: + "@babel/compat-data" "^7.17.7" + "@babel/helper-define-polyfill-provider" "^0.3.3" + semver "^6.1.1" + +babel-plugin-polyfill-corejs3@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a" + integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.3" + core-js-compat "^3.25.1" + +babel-plugin-polyfill-regenerator@^0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.0.4.tgz#588641af9a2cb4e299b1400c47672a4a104d2459" + integrity sha512-+/uCzO9JTYVZVGCpZpVAQkgPGt2zkR0VYiZvJ4aVoCe4ccgpKvNQqcjzAgQzSsjK64Jhc5hvrCR3l0087BevkA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.0.3" + +babel-plugin-polyfill-regenerator@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747" + integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.3" + +babel-plugin-transform-rename-import@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-rename-import/-/babel-plugin-transform-rename-import-2.3.0.tgz#5d9d645f937b0ca5c26a24b2510a06277b6ffd9b" + integrity sha512-dPgJoT57XC0PqSnLgl2FwNvxFrWlspatX2dkk7yjKQj5HHGw071vAcOf+hqW8ClqcBDMvEbm6mevn5yHAD8mlQ== + +babel-preset-current-node-syntax@^0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-0.1.4.tgz#826f1f8e7245ad534714ba001f84f7e906c3b615" + integrity sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w== + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +babel-preset-jest@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-25.5.0.tgz#c1d7f191829487a907764c65307faa0e66590b49" + integrity sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw== + dependencies: + babel-plugin-jest-hoist "^25.5.0" + babel-preset-current-node-syntax "^0.1.2" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== + dependencies: + tweetnacl "^0.14.3" + +before-after-hook@^2.2.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c" + integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== + +bin-links@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-3.0.3.tgz#3842711ef3db2cd9f16a5f404a996a12db355a6e" + integrity sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA== + dependencies: + cmd-shim "^5.0.0" + mkdirp-infer-owner "^2.0.0" + npm-normalize-package-bin "^2.0.0" + read-cmd-shim "^3.0.0" + rimraf "^3.0.0" + write-file-atomic "^4.0.0" + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bl@^4.0.3, bl@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + +boolbase@^1.0.0, boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browser-process-hrtime@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== + +browser-resolve@^1.11.3: + version "1.11.3" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" + integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== + dependencies: + resolve "1.1.7" + +browserslist@^4.21.3, browserslist@^4.21.4: + version "4.21.4" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" + integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== + dependencies: + caniuse-lite "^1.0.30001400" + electron-to-chromium "^1.4.251" + node-releases "^2.0.6" + update-browserslist-db "^1.0.9" + +bs-logger@0.x: + version "0.2.6" + resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" + integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== + dependencies: + fast-json-stable-stringify "2.x" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-from@1.x, buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + +builtin-modules@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" + integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== + +builtins@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + integrity sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ== + +builtins@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9" + integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ== + dependencies: + semver "^7.0.0" + +byte-size@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-7.0.1.tgz#b1daf3386de7ab9d706b941a748dbfc71130dee3" + integrity sha512-crQdqyCwhokxwV1UyDzLZanhkugAgft7vt0qbbdt60C6Zf3CAiGmtUCylbtYwrU6loOUw3euGrNtW1J651ot1A== + +cacache@^16.0.0, cacache@^16.0.6, cacache@^16.1.0: + version "16.1.3" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e" + integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== + dependencies: + "@npmcli/fs" "^2.1.0" + "@npmcli/move-file" "^2.0.0" + chownr "^2.0.0" + fs-minipass "^2.1.0" + glob "^8.0.1" + infer-owner "^1.0.4" + lru-cache "^7.7.1" + minipass "^3.1.6" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + mkdirp "^1.0.4" + p-map "^4.0.0" + promise-inflight "^1.0.1" + rimraf "^3.0.2" + ssri "^9.0.0" + tar "^6.1.11" + unique-filename "^2.0.0" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +cacheable-request@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-6.1.0.tgz#20ffb8bd162ba4be11e9567d823db651052ca912" + integrity sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg== + dependencies: + clone-response "^1.0.2" + get-stream "^5.1.0" + http-cache-semantics "^4.0.0" + keyv "^3.0.0" + lowercase-keys "^2.0.0" + normalize-url "^4.1.0" + responselike "^1.0.2" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ== + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A== + dependencies: + caller-callsite "^2.0.0" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ== + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase-keys@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" + integrity sha512-Ej37YKYbFUI8QiYlvj9YHb6/Z60dZyPJW0Cs8sFilMbd2lP0bw3ylAq9yJkK4lcTA2dID5fG8LjmJYbO7kWb7Q== + dependencies: + camelcase "^4.1.0" + map-obj "^2.0.0" + quick-lru "^1.0.0" + +camelcase-keys@^6.2.2: + version "6.2.2" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" + integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== + dependencies: + camelcase "^5.3.1" + map-obj "^4.0.0" + quick-lru "^4.0.1" + +camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw== + +camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^6.0.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001406: + version "1.0.30001427" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001427.tgz#d3a749f74be7ae0671fbec3a4eea18576e8ad646" + integrity sha512-lfXQ73oB9c8DP5Suxaszm+Ta2sr/4tf8+381GkIm1MLj/YdLf+rEDyDSRCzeltuyTVGm+/s18gdZ0q+Wmp8VsQ== + +capture-exit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" + integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== + dependencies: + rsvp "^4.8.4" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== + +chalk@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" + integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^1.0.0, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +cheerio-select@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" + integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== + dependencies: + boolbase "^1.0.0" + css-select "^5.1.0" + css-what "^6.1.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.0.1" + +cheerio@^1.0.0-rc.3: + version "1.0.0-rc.12" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.12.tgz#788bf7466506b1c6bf5fae51d24a2c4d62e47683" + integrity sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q== + dependencies: + cheerio-select "^2.1.0" + dom-serializer "^2.0.0" + domhandler "^5.0.3" + domutils "^3.0.1" + htmlparser2 "^8.0.1" + parse5 "^7.0.0" + parse5-htmlparser2-tree-adapter "^7.0.0" + +chokidar@^3.5.1: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-cursor@3.1.0, cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-cursor@^2.0.0, cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== + dependencies: + restore-cursor "^2.0.0" + +cli-spinners@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d" + integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g== + +cli-spinners@^1.0.0, cli-spinners@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a" + integrity sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg== + +cli-spinners@^2.2.0, cli-spinners@^2.5.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a" + integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw== + +cli-truncate@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" + integrity sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg== + dependencies: + slice-ansi "0.0.4" + string-width "^1.0.1" + +cli-truncate@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" + integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== + dependencies: + slice-ansi "^3.0.0" + string-width "^4.2.0" + +cli-width@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" + integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + +client-only@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" + integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== + +cliui@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" + integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^6.2.0" + +cliui@^7.0.2: + version "7.0.4" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +cliui@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" + integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== + dependencies: + string-width "^4.2.0" + strip-ansi "^6.0.1" + wrap-ansi "^7.0.0" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +clone-response@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" + integrity sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA== + dependencies: + mimic-response "^1.0.0" + +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg== + +cmd-shim@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-5.0.0.tgz#8d0aaa1a6b0708630694c4dbde070ed94c707724" + integrity sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw== + dependencies: + mkdirp-infer-owner "^2.0.0" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== + +coa@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" + integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== + dependencies: + "@types/q" "^1.5.1" + chalk "^2.4.1" + q "^1.1.2" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== + +collect-v8-coverage@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" + integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw== + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-support@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + +columnify@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.6.0.tgz#6989531713c9008bb29735e61e37acf5bd553cf3" + integrity sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q== + dependencies: + strip-ansi "^6.0.1" + wcwidth "^1.0.0" + +combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^2.11.0, commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +common-ancestor-path@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz#4f7d2d1394d91b7abdf51871c62f71eadb0182a7" + integrity sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +compare-func@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-2.0.0.tgz#fb65e75edbddfd2e568554e8b5b05fff7a51fcb3" + integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== + dependencies: + array-ify "^1.0.0" + dot-prop "^5.1.0" + +component-emitter@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +concat-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-2.0.0.tgz#414cf5af790a48c60ab9be4527d56d5e41133cb1" + integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.0.2" + typedarray "^0.0.6" + +config-chain@^1.1.12: + version "1.1.13" + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" + integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== + dependencies: + ini "^1.3.4" + proto-list "~1.2.1" + +confusing-browser-globals@^1.0.7, confusing-browser-globals@^1.0.9: + version "1.0.11" + resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz#ae40e9b57cdd3915408a2805ebd3a5585608dc81" + integrity sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA== + +console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + integrity sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg== + +conventional-changelog-angular@^5.0.12: + version "5.0.13" + resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz#896885d63b914a70d4934b59d2fe7bde1832b28c" + integrity sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA== + dependencies: + compare-func "^2.0.0" + q "^1.5.1" + +conventional-changelog-core@^4.2.4: + version "4.2.4" + resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz#e50d047e8ebacf63fac3dc67bf918177001e1e9f" + integrity sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg== + dependencies: + add-stream "^1.0.0" + conventional-changelog-writer "^5.0.0" + conventional-commits-parser "^3.2.0" + dateformat "^3.0.0" + get-pkg-repo "^4.0.0" + git-raw-commits "^2.0.8" + git-remote-origin-url "^2.0.0" + git-semver-tags "^4.1.1" + lodash "^4.17.15" + normalize-package-data "^3.0.0" + q "^1.5.1" + read-pkg "^3.0.0" + read-pkg-up "^3.0.0" + through2 "^4.0.0" + +conventional-changelog-preset-loader@^2.3.4: + version "2.3.4" + resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz#14a855abbffd59027fd602581f1f34d9862ea44c" + integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g== + +conventional-changelog-writer@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359" + integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ== + dependencies: + conventional-commits-filter "^2.0.7" + dateformat "^3.0.0" + handlebars "^4.7.7" + json-stringify-safe "^5.0.1" + lodash "^4.17.15" + meow "^8.0.0" + semver "^6.0.0" + split "^1.0.0" + through2 "^4.0.0" + +conventional-commits-filter@^2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz#f8d9b4f182fce00c9af7139da49365b136c8a0b3" + integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA== + dependencies: + lodash.ismatch "^4.4.0" + modify-values "^1.0.0" + +conventional-commits-parser@^3.2.0: + version "3.2.4" + resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz#a7d3b77758a202a9b2293d2112a8d8052c740972" + integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q== + dependencies: + JSONStream "^1.0.4" + is-text-path "^1.0.1" + lodash "^4.17.15" + meow "^8.0.0" + split2 "^3.0.0" + through2 "^4.0.0" + +conventional-recommended-bump@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz#cfa623285d1de554012f2ffde70d9c8a22231f55" + integrity sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw== + dependencies: + concat-stream "^2.0.0" + conventional-changelog-preset-loader "^2.3.4" + conventional-commits-filter "^2.0.7" + conventional-commits-parser "^3.2.0" + git-raw-commits "^2.0.8" + git-semver-tags "^4.1.1" + meow "^8.0.0" + q "^1.5.1" + +convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== + +core-js-compat@^3.25.1: + version "3.26.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.0.tgz#94e2cf8ba3e63800c4956ea298a6473bc9d62b44" + integrity sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A== + dependencies: + browserslist "^4.21.4" + +core-js-pure@^3.25.1: + version "3.26.0" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.26.0.tgz#7ad8a5dd7d910756f3124374b50026e23265ca9a" + integrity sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA== + +core-util-is@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" + +cosmiconfig@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.7.2" + +cosmiconfig@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" + integrity sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.2.1" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.10.0" + +cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +crypto-random-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + integrity sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg== + +css-select-base-adapter@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" + integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== + +css-select@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" + integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== + dependencies: + boolbase "^1.0.0" + css-what "^3.2.1" + domutils "^1.7.0" + nth-check "^1.0.2" + +css-select@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + +css-tree@1.0.0-alpha.37: + version "1.0.0-alpha.37" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" + integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== + dependencies: + mdn-data "2.0.4" + source-map "^0.6.1" + +css-tree@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + dependencies: + mdn-data "2.0.14" + source-map "^0.6.1" + +css-what@^3.2.1: + version "3.4.2" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" + integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== + +css-what@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +csso@^4.0.2: + version "4.2.0" + resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" + integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + dependencies: + css-tree "^1.1.2" + +cssom@^0.4.1: + version "0.4.4" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" + integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== + +cssom@~0.3.6: + version "0.3.8" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== + +cssstyle@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" + integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== + dependencies: + cssom "~0.3.6" + +csstype@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" + integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + integrity sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng== + dependencies: + array-find-index "^1.0.1" + +damerau-levenshtein@^1.0.4, damerau-levenshtein@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" + integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== + +dargs@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc" + integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg== + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== + dependencies: + assert-plus "^1.0.0" + +data-urls@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== + dependencies: + abab "^2.0.0" + whatwg-mimetype "^2.2.0" + whatwg-url "^7.0.0" + +date-fns@^1.27.2: + version "1.30.1" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" + integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== + +dateformat@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" + integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== + +debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debuglog@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" + integrity sha512-syBZ+rnAK3EgMsH2aYEOLUW7mZSY9Gb+0wUMCFsZvcmiz+HigA0LOcq/HoQqVuGG+EKykunc7QG2bzrponfaSw== + +decamelize-keys@^1.0.0, decamelize-keys@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" + integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== + dependencies: + decamelize "^1.1.0" + map-obj "^1.0.0" + +decamelize@^1.1.0, decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== + +decompress-response@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3" + integrity sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA== + dependencies: + mimic-response "^1.0.0" + +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== + +deep-is@^0.1.3, deep-is@~0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deepmerge@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" + integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== + +defaults@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== + dependencies: + clone "^1.0.2" + +defer-to-connect@^1.0.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-1.1.3.tgz#331ae050c08dcf789f8c83a7b81f0ed94f4ac591" + integrity sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ== + +define-lazy-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== + +define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA== + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA== + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +del@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/del/-/del-5.1.0.tgz#d9487c94e367410e6eff2925ee58c0c84a75b3a7" + integrity sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA== + dependencies: + globby "^10.0.1" + graceful-fs "^4.2.2" + is-glob "^4.0.1" + is-path-cwd "^2.2.0" + is-path-inside "^3.0.1" + p-map "^3.0.0" + rimraf "^3.0.0" + slash "^3.0.0" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + +depd@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +deprecation@^2.0.0, deprecation@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" + integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== + +detect-indent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" + integrity sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g== + +detect-indent@^6.0.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-6.1.0.tgz#592485ebbbf6b3b1ab2be175c8393d04ca0d57e6" + integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== + +detect-newline@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" + integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== + +dezalgo@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.4.tgz#751235260469084c132157dfa857f386d4c33d81" + integrity sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig== + dependencies: + asap "^2.0.0" + wrappy "1" + +diff-sequences@^25.2.6: + version "25.2.6" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" + integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dns-packet@^5.2.4: + version "5.4.0" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.4.0.tgz#1f88477cf9f27e78a213fb6d118ae38e759a879b" + integrity sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g== + dependencies: + "@leichtgewicht/ip-codec" "^2.0.1" + +dns-socket@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/dns-socket/-/dns-socket-4.2.2.tgz#58b0186ec053ea0731feb06783c7eeac4b95b616" + integrity sha512-BDeBd8najI4/lS00HSKpdFia+OvUMytaVjfzR9n5Lq8MlZRSvtbI+uLtx1+XmQFls5wFU9dssccTmQQ6nfpjdg== + dependencies: + dns-packet "^5.2.4" + +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + integrity sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg== + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + +domelementtype@1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1, domelementtype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domexception@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== + dependencies: + webidl-conversions "^4.0.2" + +domhandler@^5.0.1, domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + +domutils@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.0.1.tgz#696b3875238338cb186b6c0612bd4901c89a4f1c" + integrity sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.1" + +dot-prop@^5.1.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" + integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + dependencies: + is-obj "^2.0.0" + +dot-prop@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" + integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== + dependencies: + is-obj "^2.0.0" + +dotenv@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-7.0.0.tgz#a2be3cd52736673206e8a85fb5210eea29628e7c" + integrity sha512-M3NhsLbV1i6HuGzBUH8vXrtxOk+tWmzWKDMbAVSUp3Zsjm7ywFeuwrUXhmhQyRK1q5B5GGy7hcXPbj3bnfZg2g== + +dotenv@~10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + +duplexer3@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.5.tgz#0b5e4d7bad5de8901ea4440624c8e1d20099217e" + integrity sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA== + +duplexer@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +ejs@^2.6.1: + version "2.7.4" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" + integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== + +ejs@^3.1.7: + version "3.1.8" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.8.tgz#758d32910c78047585c7ef1f92f9ee041c1c190b" + integrity sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ== + dependencies: + jake "^10.8.5" + +electron-to-chromium@^1.4.251: + version "1.4.284" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" + integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== + +elegant-spinner@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" + integrity sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ== + +emoji-regex@^7.0.1, emoji-regex@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +encoding@^0.1.13: + version "0.1.13" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== + dependencies: + iconv-lite "^0.6.2" + +end-of-stream@^1.1.0, end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +enquirer@^2.3.4, enquirer@~2.3.6: + version "2.3.6" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@^4.2.0, entities@^4.3.0, entities@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.4.0.tgz#97bdaba170339446495e653cfd2db78962900174" + integrity sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA== + +env-paths@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + +envinfo@^7.7.4: + version "7.8.1" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" + integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== + +err-code@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5, es-abstract@^1.20.1: + version "1.20.4" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" + integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.3" + get-symbol-description "^1.0.0" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + is-callable "^1.2.7" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + safe-regex-test "^1.0.0" + string.prototype.trimend "^1.0.5" + string.prototype.trimstart "^1.0.5" + unbox-primitive "^1.0.2" + +es-array-method-boxes-properly@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" + integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== + +es-shim-unscopables@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" + integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== + dependencies: + has "^1.0.3" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +escodegen@^1.11.1: + version "1.14.3" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" + integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== + dependencies: + esprima "^4.0.1" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +eslint-config-next@13.0.0: + version "13.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.0.0.tgz#d533ee1dbd6576fd3759ba4db4d5a6c4e039c242" + integrity sha512-y2nqWS2tycWySdVhb+rhp6CuDmDazGySqkzzQZf3UTyfHyC7og1m5m/AtMFwCo5mtvDqvw1BENin52kV9733lg== + dependencies: + "@next/eslint-plugin-next" "13.0.0" + "@rushstack/eslint-patch" "^1.1.3" + "@typescript-eslint/parser" "^5.21.0" + eslint-import-resolver-node "^0.3.6" + eslint-import-resolver-typescript "^2.7.1" + eslint-plugin-import "^2.26.0" + eslint-plugin-jsx-a11y "^6.5.1" + eslint-plugin-react "^7.31.7" + eslint-plugin-react-hooks "^4.5.0" + +eslint-config-prettier@^6.0.0: + version "6.15.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.15.0.tgz#7f93f6cb7d45a92f1537a70ecc06366e1ac6fed9" + integrity sha512-a1+kOYLR8wMGustcgAjdydMsQ2A/2ipRPwRKUmfYaSxc9ZPcrku080Ctl6zrZzZNs/U82MjSv+qKREkoq3bJaw== + dependencies: + get-stdin "^6.0.0" + +eslint-config-react-app@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-4.0.1.tgz#23fd0fd7ea89442ef1e733f66a7207674b23c8db" + integrity sha512-ZsaoXUIGsK8FCi/x4lT2bZR5mMkL/Kgj+Lnw690rbvvUr/uiwgFiD8FcfAhkCycm7Xte6O5lYz4EqMx2vX7jgw== + dependencies: + confusing-browser-globals "^1.0.7" + +eslint-config-react-app@^5.0.2: + version "5.2.1" + resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-5.2.1.tgz#698bf7aeee27f0cea0139eaef261c7bf7dd623df" + integrity sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ== + dependencies: + confusing-browser-globals "^1.0.9" + +eslint-import-resolver-node@^0.3.2, eslint-import-resolver-node@^0.3.6: + version "0.3.6" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" + integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== + dependencies: + debug "^3.2.7" + resolve "^1.20.0" + +eslint-import-resolver-typescript@^2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751" + integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ== + dependencies: + debug "^4.3.4" + glob "^7.2.0" + is-glob "^4.0.3" + resolve "^1.22.0" + tsconfig-paths "^3.14.1" + +eslint-module-utils@^2.4.0, eslint-module-utils@^2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" + integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== + dependencies: + debug "^3.2.7" + +eslint-plugin-flowtype@3.11.1: + version "3.11.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.11.1.tgz#1aae15a10dbcd5aecc89897f810f2e9fcc18a5e3" + integrity sha512-4NiaaGZuz9iEGRTK8j4lkA/scibOXSYaYoHbsTtgLOxxqQCkbWV3xt8ETqILKg7DAYDqB69z1H5U71UmtdF9hw== + dependencies: + lodash "^4.17.11" + +eslint-plugin-flowtype@^3.13.0: + version "3.13.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.13.0.tgz#e241ebd39c0ce519345a3f074ec1ebde4cf80f2c" + integrity sha512-bhewp36P+t7cEV0b6OdmoRWJCBYRiHFlqPZAG1oS3SF+Y0LQkeDvFSM4oxoxvczD1OdONCXMlJfQFiWLcV9urw== + dependencies: + lodash "^4.17.15" + +eslint-plugin-import@2.18.0: + version "2.18.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.0.tgz#7a5ba8d32622fb35eb9c8db195c2090bd18a3678" + integrity sha512-PZpAEC4gj/6DEMMoU2Df01C5c50r7zdGIN52Yfi7CvvWaYssG7Jt5R9nFG5gmqodxNOz9vQS87xk6Izdtpdrig== + dependencies: + array-includes "^3.0.3" + contains-path "^0.1.0" + debug "^2.6.9" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.2" + eslint-module-utils "^2.4.0" + has "^1.0.3" + lodash "^4.17.11" + minimatch "^3.0.4" + read-pkg-up "^2.0.0" + resolve "^1.11.0" + +eslint-plugin-import@^2.18.2, eslint-plugin-import@^2.26.0: + version "2.26.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" + integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== + dependencies: + array-includes "^3.1.4" + array.prototype.flat "^1.2.5" + debug "^2.6.9" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.6" + eslint-module-utils "^2.7.3" + has "^1.0.3" + is-core-module "^2.8.1" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.values "^1.1.5" + resolve "^1.22.0" + tsconfig-paths "^3.14.1" + +eslint-plugin-jsx-a11y@6.2.3: + version "6.2.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz#b872a09d5de51af70a97db1eea7dc933043708aa" + integrity sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg== + dependencies: + "@babel/runtime" "^7.4.5" + aria-query "^3.0.0" + array-includes "^3.0.3" + ast-types-flow "^0.0.7" + axobject-query "^2.0.2" + damerau-levenshtein "^1.0.4" + emoji-regex "^7.0.2" + has "^1.0.3" + jsx-ast-utils "^2.2.1" + +eslint-plugin-jsx-a11y@^6.2.3, eslint-plugin-jsx-a11y@^6.5.1: + version "6.6.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz#93736fc91b83fdc38cc8d115deedfc3091aef1ff" + integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q== + dependencies: + "@babel/runtime" "^7.18.9" + aria-query "^4.2.2" + array-includes "^3.1.5" + ast-types-flow "^0.0.7" + axe-core "^4.4.3" + axobject-query "^2.2.0" + damerau-levenshtein "^1.0.8" + emoji-regex "^9.2.2" + has "^1.0.3" + jsx-ast-utils "^3.3.2" + language-tags "^1.0.5" + minimatch "^3.1.2" + semver "^6.3.0" + +eslint-plugin-prettier@^3.1.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz#e9ddb200efb6f3d05ffe83b1665a716af4a387e5" + integrity sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g== + dependencies: + prettier-linter-helpers "^1.0.0" + +eslint-plugin-react-hooks@1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.6.1.tgz#3c66a5515ea3e0a221ffc5d4e75c971c217b1a4c" + integrity sha512-wHhmGJyVuijnYIJXZJHDUF2WM+rJYTjulUTqF9k61d3BTk8etydz+M4dXUVH7M76ZRS85rqBTCx0Es/lLsrjnA== + +eslint-plugin-react-hooks@^2.2.0: + version "2.5.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.5.1.tgz#4ef5930592588ce171abeb26f400c7fbcbc23cd0" + integrity sha512-Y2c4b55R+6ZzwtTppKwSmK/Kar8AdLiC2f9NADCuxbcTgPPg41Gyqa6b9GppgXSvCtkRw43ZE86CT5sejKC6/g== + +eslint-plugin-react-hooks@^4.5.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" + integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== + +eslint-plugin-react@7.14.2: + version "7.14.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.14.2.tgz#94c193cc77a899ac0ecbb2766fbef88685b7ecc1" + integrity sha512-jZdnKe3ip7FQOdjxks9XPN0pjUKZYq48OggNMd16Sk+8VXx6JOvXmlElxROCgp7tiUsTsze3jd78s/9AFJP2mA== + dependencies: + array-includes "^3.0.3" + doctrine "^2.1.0" + has "^1.0.3" + jsx-ast-utils "^2.1.0" + object.entries "^1.1.0" + object.fromentries "^2.0.0" + object.values "^1.1.0" + prop-types "^15.7.2" + resolve "^1.10.1" + +eslint-plugin-react@^7.14.3, eslint-plugin-react@^7.31.7: + version "7.31.10" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz#6782c2c7fe91c09e715d536067644bbb9491419a" + integrity sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA== + dependencies: + array-includes "^3.1.5" + array.prototype.flatmap "^1.3.0" + doctrine "^2.1.0" + estraverse "^5.3.0" + jsx-ast-utils "^2.4.1 || ^3.0.0" + minimatch "^3.1.2" + object.entries "^1.1.5" + object.fromentries "^2.0.5" + object.hasown "^1.1.1" + object.values "^1.1.5" + prop-types "^15.8.1" + resolve "^2.0.0-next.3" + semver "^6.3.0" + string.prototype.matchall "^4.0.7" + +eslint-scope@3.7.1: + version "3.7.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" + integrity sha512-ivpbtpUgg9SJS4TLjK7KdcDhqc/E3CGItsvQbBNLkNGUeMhd5qnJcryba/brESS+dg3vrLqPuc/UcS7jRJdN5A== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-scope@^4.0.0, eslint-scope@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" + integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-scope@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-scope@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" + integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-utils@^1.3.1, eslint-utils@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" + integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-utils@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + +eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint-visitor-keys@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" + integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== + +eslint@5.16.0: + version "5.16.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" + integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg== + dependencies: + "@babel/code-frame" "^7.0.0" + ajv "^6.9.1" + chalk "^2.1.0" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^3.0.0" + eslint-scope "^4.0.3" + eslint-utils "^1.3.1" + eslint-visitor-keys "^1.0.0" + espree "^5.0.1" + esquery "^1.0.1" + esutils "^2.0.2" + file-entry-cache "^5.0.1" + functional-red-black-tree "^1.0.1" + glob "^7.1.2" + globals "^11.7.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + inquirer "^6.2.2" + js-yaml "^3.13.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.11" + minimatch "^3.0.4" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.2" + progress "^2.0.0" + regexpp "^2.0.1" + semver "^5.5.1" + strip-ansi "^4.0.0" + strip-json-comments "^2.0.1" + table "^5.2.3" + text-table "^0.2.0" + +eslint@8.26.0: + version "8.26.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.26.0.tgz#2bcc8836e6c424c4ac26a5674a70d44d84f2181d" + integrity sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg== + dependencies: + "@eslint/eslintrc" "^1.3.3" + "@humanwhocodes/config-array" "^0.11.6" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.1.1" + eslint-utils "^3.0.0" + eslint-visitor-keys "^3.3.0" + espree "^9.4.0" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.15.0" + grapheme-splitter "^1.0.4" + ignore "^5.2.0" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-sdsl "^4.1.4" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.1" + regexpp "^3.2.0" + strip-ansi "^6.0.1" + strip-json-comments "^3.1.0" + text-table "^0.2.0" + +eslint@^6.1.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" + integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== + dependencies: + "@babel/code-frame" "^7.0.0" + ajv "^6.10.0" + chalk "^2.1.0" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^3.0.0" + eslint-scope "^5.0.0" + eslint-utils "^1.4.3" + eslint-visitor-keys "^1.1.0" + espree "^6.1.2" + esquery "^1.0.1" + esutils "^2.0.2" + file-entry-cache "^5.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.0.0" + globals "^12.1.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + inquirer "^7.0.0" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.14" + minimatch "^3.0.4" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.3" + progress "^2.0.0" + regexpp "^2.0.1" + semver "^6.1.2" + strip-ansi "^5.2.0" + strip-json-comments "^3.0.1" + table "^5.2.3" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" + integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== + dependencies: + acorn "^6.0.7" + acorn-jsx "^5.0.0" + eslint-visitor-keys "^1.0.0" + +espree@^6.1.2: + version "6.2.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" + integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== + dependencies: + acorn "^7.1.1" + acorn-jsx "^5.2.0" + eslint-visitor-keys "^1.1.0" + +espree@^9.4.0: + version "9.4.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a" + integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw== + dependencies: + acorn "^8.8.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.3.0" + +esprima@^4.0.0, esprima@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.0.1, esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.1.0, esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1, estraverse@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +estree-walker@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" + integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== + +estree-walker@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700" + integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +eventemitter3@^4.0.4: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +exec-sh@^0.3.2: + version "0.3.6" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" + integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-2.1.0.tgz#e5d3ecd837d2a60ec50f3da78fd39767747bbe99" + integrity sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw== + dependencies: + cross-spawn "^7.0.0" + get-stream "^5.0.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^3.0.0" + onetime "^5.1.0" + p-finally "^2.0.0" + signal-exit "^3.0.2" + strip-final-newline "^2.0.0" + +execa@^3.2.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-3.4.0.tgz#c08ed4550ef65d858fac269ffc8572446f37eb89" + integrity sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g== + dependencies: + cross-spawn "^7.0.0" + get-stream "^5.0.0" + human-signals "^1.1.1" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.0" + onetime "^5.1.0" + p-finally "^2.0.0" + signal-exit "^3.0.2" + strip-final-newline "^2.0.0" + +execa@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" + integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== + dependencies: + cross-spawn "^7.0.0" + get-stream "^5.0.0" + human-signals "^1.1.1" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.0" + onetime "^5.1.0" + signal-exit "^3.0.2" + strip-final-newline "^2.0.0" + +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expect@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-25.5.0.tgz#f07f848712a2813bb59167da3fb828ca21f58bba" + integrity sha512-w7KAXo0+6qqZZhovCaBVPSIqQp7/UTcx4M9uKt2m6pd2VB1voyC8JizLRqeEqud3AAVP02g+hbErDu5gu64tlA== + dependencies: + "@jest/types" "^25.5.0" + ansi-styles "^4.0.0" + jest-get-type "^25.2.6" + jest-matcher-utils "^25.5.0" + jest-message-util "^25.5.0" + jest-regex-util "^25.2.6" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== + +extsprintf@^1.2.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" + integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-diff@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + +fast-glob@3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-glob@^3.0.3, fast-glob@^3.2.9: + version "3.2.12" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.6.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" + integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== + dependencies: + reusify "^1.0.4" + +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + +figma-js@^1.6.1: + version "1.16.0" + resolved "https://registry.yarnpkg.com/figma-js/-/figma-js-1.16.0.tgz#84bfa6bf8dad25ba106b8b4ffa0d595bd6277e11" + integrity sha512-cImQT9DAJp1J0xr6FMUAswXKEnjwrDz4QKAgIBpUyydKAgDS/lm862stjweHp99uco5qLoNv+GbwQWBHyDvDQw== + dependencies: + axios "^0.21.1" + +figures@3.2.0, figures@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +figures@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + integrity sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ== + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA== + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== + dependencies: + flat-cache "^2.0.1" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +filelist@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" + integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== + dependencies: + minimatch "^5.0.1" + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ== + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-cache-dir@^3.2.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" + integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-parent-dir@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.1.tgz#c5c385b96858c3351f95d446cab866cbf9f11125" + integrity sha512-o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A== + +find-up@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== + dependencies: + locate-path "^2.0.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +find-up@^4.0.0, find-up@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== + dependencies: + flatted "^2.0.0" + rimraf "2.6.3" + write "1.0.3" + +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + +flatted@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" + integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== + +flatted@^3.1.0: + version "3.2.7" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" + integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== + +follow-redirects@^1.14.0, follow-redirects@^1.15.0: + version "1.15.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +form-data@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" + integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA== + dependencies: + map-cache "^0.2.2" + +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + +fs-extra@8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-extra@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^9.0.0, fs-extra@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-minipass@^2.0.0, fs-minipass@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@^2.1.2, fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +gauge@^4.0.3: + version "4.0.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" + integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.3" + console-control-strings "^1.1.0" + has-unicode "^2.0.1" + signal-exit "^3.0.7" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.5" + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.1, get-caller-file@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-own-enumerable-property-symbols@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" + integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== + +get-package-type@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" + integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== + +get-pkg-repo@^4.0.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz#75973e1c8050c73f48190c52047c4cee3acbf385" + integrity sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA== + dependencies: + "@hutson/parse-repository-url" "^3.0.0" + hosted-git-info "^4.0.0" + through2 "^2.0.0" + yargs "^16.2.0" + +get-port@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" + integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== + +get-stdin@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" + integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== + +get-stdin@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6" + integrity sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ== + +get-stream@^4.0.0, get-stream@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-stream@^5.0.0, get-stream@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" + integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== + dependencies: + pump "^3.0.0" + +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== + dependencies: + assert-plus "^1.0.0" + +git-raw-commits@^2.0.8: + version "2.0.11" + resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz#bc3576638071d18655e1cc60d7f524920008d723" + integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A== + dependencies: + dargs "^7.0.0" + lodash "^4.17.15" + meow "^8.0.0" + split2 "^3.0.0" + through2 "^4.0.0" + +git-remote-origin-url@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" + integrity sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw== + dependencies: + gitconfiglocal "^1.0.0" + pify "^2.3.0" + +git-semver-tags@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-4.1.1.tgz#63191bcd809b0ec3e151ba4751c16c444e5b5780" + integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA== + dependencies: + meow "^8.0.0" + semver "^6.0.0" + +git-up@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/git-up/-/git-up-7.0.0.tgz#bace30786e36f56ea341b6f69adfd83286337467" + integrity sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ== + dependencies: + is-ssh "^1.4.0" + parse-url "^8.1.0" + +git-url-parse@^13.1.0: + version "13.1.0" + resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-13.1.0.tgz#07e136b5baa08d59fabdf0e33170de425adf07b4" + integrity sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA== + dependencies: + git-up "^7.0.0" + +gitconfiglocal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" + integrity sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ== + dependencies: + ini "^1.3.2" + +glob-parent@^5.0.0, glob-parent@^5.1.1, glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob@7.1.4: + version "7.1.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" + integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@7.1.7: + version "7.1.7" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" + integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.1.1" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^8.0.1: + version "8.0.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-8.0.3.tgz#415c6eb2deed9e502c68fa44a272e6da6eeca42e" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +globals@^11.1.0, globals@^11.7.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^12.1.0: + version "12.4.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" + integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== + dependencies: + type-fest "^0.8.1" + +globals@^13.15.0: + version "13.17.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" + integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + dependencies: + type-fest "^0.20.2" + +globalyzer@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.0.tgz#cb76da79555669a1519d5a8edf093afaa0bf1465" + integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== + +globby@^10.0.1: + version "10.0.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-10.0.2.tgz#277593e745acaa4646c3ab411289ec47a0392543" + integrity sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg== + dependencies: + "@types/glob" "^7.1.1" + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.0.3" + glob "^7.1.3" + ignore "^5.1.1" + merge2 "^1.2.3" + slash "^3.0.0" + +globby@^11.0.2, globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +globrex@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" + integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== + +got@^9.6.0: + version "9.6.0" + resolved "https://registry.yarnpkg.com/got/-/got-9.6.0.tgz#edf45e7d67f99545705de1f7bbeeeb121765ed85" + integrity sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q== + dependencies: + "@sindresorhus/is" "^0.14.0" + "@szmarczak/http-timer" "^1.1.2" + cacheable-request "^6.0.0" + decompress-response "^3.3.0" + duplexer3 "^0.1.4" + get-stream "^4.1.0" + lowercase-keys "^1.0.1" + mimic-response "^1.0.1" + p-cancelable "^1.0.0" + to-readable-stream "^1.0.0" + url-parse-lax "^3.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.6: + version "4.2.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +grapheme-splitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" + integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== + +growly@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + integrity sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw== + +handlebars@^4.7.7: + version "4.7.7" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== + dependencies: + minimist "^1.2.5" + neo-async "^2.6.0" + source-map "^0.6.1" + wordwrap "^1.0.0" + optionalDependencies: + uglify-js "^3.1.4" + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== + +har-validator@~5.1.3: + version "5.1.5" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" + integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== + dependencies: + ajv "^6.12.3" + har-schema "^2.0.0" + +hard-rejection@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" + integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== + dependencies: + ansi-regex "^2.0.0" + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q== + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw== + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ== + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ== + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +hosted-git-info@^3.0.6: + version "3.0.8" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d" + integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw== + dependencies: + lru-cache "^6.0.0" + +hosted-git-info@^4.0.0, hosted-git-info@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" + integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== + dependencies: + lru-cache "^6.0.0" + +hosted-git-info@^5.0.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-5.2.1.tgz#0ba1c97178ef91f3ab30842ae63d6a272341156f" + integrity sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw== + dependencies: + lru-cache "^7.5.1" + +html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== + dependencies: + whatwg-encoding "^1.0.1" + +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +htmlparser2@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.1.tgz#abaa985474fcefe269bc761a779b544d7196d010" + integrity sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + domutils "^3.0.1" + entities "^4.3.0" + +http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" + integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== + +http-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" + integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== + dependencies: + "@tootallnate/once" "2" + agent-base "6" + debug "4" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + +human-signals@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" + integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +humanize-duration@^3.15.3: + version "3.27.3" + resolved "https://registry.yarnpkg.com/humanize-duration/-/humanize-duration-3.27.3.tgz#db654e72ebf5ccfe232c7f56bc58aa3a6fe4df88" + integrity sha512-iimHkHPfIAQ8zCDQLgn08pRqSVioyWvnGfaQ8gond2wf7Jq2jJ+24ykmnRyiz3fIldcn4oUuQXpjqKLhSVR7lw== + +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + +husky@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/husky/-/husky-2.7.0.tgz#c0a9a6a3b51146224e11bba0b46bba546e461d05" + integrity sha512-LIi8zzT6PyFpcYKdvWRCn/8X+6SuG2TgYYMrM6ckEYhlp44UcEduVymZGIZNLiwOUjrEud+78w/AsAiqJA/kRg== + dependencies: + cosmiconfig "^5.2.0" + execa "^1.0.0" + find-up "^3.0.0" + get-stdin "^7.0.0" + is-ci "^2.0.0" + pkg-dir "^4.1.0" + please-upgrade-node "^3.1.1" + read-pkg "^5.1.1" + run-node "^1.0.0" + slash "^3.0.0" + +iconv-lite@0.4.24, iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +iconv-lite@^0.6.2: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + +ieee754@^1.1.13: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +ignore-walk@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-5.0.1.tgz#5f199e23e1288f518d90358d461387788a154776" + integrity sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw== + dependencies: + minimatch "^5.0.1" + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.0.4, ignore@^5.1.1, ignore@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg== + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-local@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" + integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== + dependencies: + pkg-dir "^4.2.0" + resolve-cwd "^3.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +indent-string@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" + integrity sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ== + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +infer-owner@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +ini@^1.3.2, ini@^1.3.4: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +init-package-json@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-3.0.2.tgz#f5bc9bac93f2bdc005778bc2271be642fecfcd69" + integrity sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A== + dependencies: + npm-package-arg "^9.0.1" + promzard "^0.3.0" + read "^1.0.7" + read-package-json "^5.0.0" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + validate-npm-package-name "^4.0.0" + +ink-spinner@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/ink-spinner/-/ink-spinner-3.1.0.tgz#a1090102663bf3cc90f1dbfb81f143378a892300" + integrity sha512-sPqmE4qeJ43vJFk9DGLd0wIqhMBAr3129ZqHPt7b847fVl+YTZ3g96khI82Db+FYE7v/Fc5B3lp4ZNtJfqpRUg== + dependencies: + cli-spinners "^1.0.0" + prop-types "^15.5.10" + +ink@^2.1.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/ink/-/ink-2.7.1.tgz#ff1c75b4b022924e2993af62297fa0e48e85618b" + integrity sha512-s7lJuQDJEdjqtaIWhp3KYHl6WV3J04U9zoQ6wVc+Xoa06XM27SXUY57qC5DO46xkF0CfgXMKkKNcgvSu/SAEpA== + dependencies: + ansi-escapes "^4.2.1" + arrify "^2.0.1" + auto-bind "^4.0.0" + chalk "^3.0.0" + cli-cursor "^3.1.0" + cli-truncate "^2.1.0" + is-ci "^2.0.0" + lodash.throttle "^4.1.1" + log-update "^3.0.0" + prop-types "^15.6.2" + react-reconciler "^0.24.0" + scheduler "^0.18.0" + signal-exit "^3.0.2" + slice-ansi "^3.0.0" + string-length "^3.1.0" + widest-line "^3.1.0" + wrap-ansi "^6.2.0" + yoga-layout-prebuilt "^1.9.3" + +inquirer@^6.2.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" + integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== + dependencies: + ansi-escapes "^3.2.0" + chalk "^2.4.2" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^3.0.3" + figures "^2.0.0" + lodash "^4.17.12" + mute-stream "0.0.7" + run-async "^2.2.0" + rxjs "^6.4.0" + string-width "^2.1.0" + strip-ansi "^5.1.0" + through "^2.3.6" + +inquirer@^7.0.0: + version "7.3.3" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" + integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.19" + mute-stream "0.0.8" + run-async "^2.4.0" + rxjs "^6.6.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + +inquirer@^8.2.4: + version "8.2.5" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-8.2.5.tgz#d8654a7542c35a9b9e069d27e2df4858784d54f8" + integrity sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.1" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.21" + mute-stream "0.0.8" + ora "^5.4.1" + run-async "^2.4.0" + rxjs "^7.5.5" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + wrap-ansi "^7.0.0" + +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + +ip-regex@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + integrity sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw== + +ip-regex@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5" + integrity sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q== + +ip@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" + integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + integrity sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A== + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + dependencies: + ci-info "^2.0.0" + +is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" + integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== + dependencies: + has "^1.0.3" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + integrity sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg== + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== + +is-docker@^2.0.0, is-docker@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + +is-ip@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-ip/-/is-ip-3.1.0.tgz#2ae5ddfafaf05cb8008a62093cf29734f657c5d8" + integrity sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q== + dependencies: + ip-regex "^4.0.0" + +is-lambda@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" + integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== + +is-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" + integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg== + dependencies: + kind-of "^3.0.2" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== + +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + +is-observable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" + integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== + dependencies: + symbol-observable "^1.1.0" + +is-online@^8.2.0: + version "8.5.1" + resolved "https://registry.yarnpkg.com/is-online/-/is-online-8.5.1.tgz#bcc6970c6a3fad552a41738c0f0d0737b0ce6e63" + integrity sha512-RKyTQx/rJqw2QOXHwy7TmXdlkpe0Hhj7GBsr6TQJaj4ebNOfameZCMspU5vYbwBBzJ2brWArdSvNVox6T6oCTQ== + dependencies: + got "^9.6.0" + p-any "^2.0.0" + p-timeout "^3.0.0" + public-ip "^4.0.1" + +is-path-cwd@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" + integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== + +is-path-inside@^3.0.1, is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== + +is-plain-obj@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" + integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== + +is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-plain-object@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== + +is-promise@^2.1.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" + integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== + +is-reference@^1.1.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" + integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== + dependencies: + "@types/estree" "*" + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-ssh@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2" + integrity sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ== + dependencies: + protocols "^2.0.1" + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-text-path@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" + integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w== + dependencies: + text-extensions "^1.0.0" + +is-typedarray@^1.0.0, is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-wsl@^2.1.1, is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA== + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== + +istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" + integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== + +istanbul-lib-instrument@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" + integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== + dependencies: + "@babel/core" "^7.7.5" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.0.0" + semver "^6.3.0" + +istanbul-lib-instrument@^5.0.4: + version "5.2.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" + integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== + dependencies: + "@babel/core" "^7.12.3" + "@babel/parser" "^7.14.7" + "@istanbuljs/schema" "^0.1.2" + istanbul-lib-coverage "^3.2.0" + semver "^6.3.0" + +istanbul-lib-report@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" + integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== + dependencies: + istanbul-lib-coverage "^3.0.0" + make-dir "^3.0.0" + supports-color "^7.1.0" + +istanbul-lib-source-maps@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" + integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^3.0.0" + source-map "^0.6.1" + +istanbul-reports@^3.0.2: + version "3.1.5" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" + integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== + dependencies: + html-escaper "^2.0.0" + istanbul-lib-report "^3.0.0" + +jake@^10.8.5: + version "10.8.5" + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" + integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== + dependencies: + async "^3.2.3" + chalk "^4.0.2" + filelist "^1.0.1" + minimatch "^3.0.4" + +jest-changed-files@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-25.5.0.tgz#141cc23567ceb3f534526f8614ba39421383634c" + integrity sha512-EOw9QEqapsDT7mKF162m8HFzRPbmP8qJQny6ldVOdOVBz3ACgPm/1nAn5fPQ/NDaYhX/AHkrGwwkCncpAVSXcw== + dependencies: + "@jest/types" "^25.5.0" + execa "^3.2.0" + throat "^5.0.0" + +jest-cli@^25.5.4: + version "25.5.4" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-25.5.4.tgz#b9f1a84d1301a92c5c217684cb79840831db9f0d" + integrity sha512-rG8uJkIiOUpnREh1768/N3n27Cm+xPFkSNFO91tgg+8o2rXeVLStz+vkXkGr4UtzH6t1SNbjwoiswd7p4AhHTw== + dependencies: + "@jest/core" "^25.5.4" + "@jest/test-result" "^25.5.0" + "@jest/types" "^25.5.0" + chalk "^3.0.0" + exit "^0.1.2" + graceful-fs "^4.2.4" + import-local "^3.0.2" + is-ci "^2.0.0" + jest-config "^25.5.4" + jest-util "^25.5.0" + jest-validate "^25.5.0" + prompts "^2.0.1" + realpath-native "^2.0.0" + yargs "^15.3.1" + +jest-config@^25.5.4: + version "25.5.4" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-25.5.4.tgz#38e2057b3f976ef7309b2b2c8dcd2a708a67f02c" + integrity sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg== + dependencies: + "@babel/core" "^7.1.0" + "@jest/test-sequencer" "^25.5.4" + "@jest/types" "^25.5.0" + babel-jest "^25.5.1" + chalk "^3.0.0" + deepmerge "^4.2.2" + glob "^7.1.1" + graceful-fs "^4.2.4" + jest-environment-jsdom "^25.5.0" + jest-environment-node "^25.5.0" + jest-get-type "^25.2.6" + jest-jasmine2 "^25.5.4" + jest-regex-util "^25.2.6" + jest-resolve "^25.5.1" + jest-util "^25.5.0" + jest-validate "^25.5.0" + micromatch "^4.0.2" + pretty-format "^25.5.0" + realpath-native "^2.0.0" + +jest-diff@^25.2.1, jest-diff@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9" + integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A== + dependencies: + chalk "^3.0.0" + diff-sequences "^25.2.6" + jest-get-type "^25.2.6" + pretty-format "^25.5.0" + +jest-docblock@^25.3.0: + version "25.3.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-25.3.0.tgz#8b777a27e3477cd77a168c05290c471a575623ef" + integrity sha512-aktF0kCar8+zxRHxQZwxMy70stc9R1mOmrLsT5VO3pIT0uzGRSDAXxSlz4NqQWpuLjPpuMhPRl7H+5FRsvIQAg== + dependencies: + detect-newline "^3.0.0" + +jest-each@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-25.5.0.tgz#0c3c2797e8225cb7bec7e4d249dcd96b934be516" + integrity sha512-QBogUxna3D8vtiItvn54xXde7+vuzqRrEeaw8r1s+1TG9eZLVJE5ZkKoSUlqFwRjnlaA4hyKGiu9OlkFIuKnjA== + dependencies: + "@jest/types" "^25.5.0" + chalk "^3.0.0" + jest-get-type "^25.2.6" + jest-util "^25.5.0" + pretty-format "^25.5.0" + +jest-environment-jsdom@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-25.5.0.tgz#dcbe4da2ea997707997040ecf6e2560aec4e9834" + integrity sha512-7Jr02ydaq4jaWMZLY+Skn8wL5nVIYpWvmeatOHL3tOcV3Zw8sjnPpx+ZdeBfc457p8jCR9J6YCc+Lga0oIy62A== + dependencies: + "@jest/environment" "^25.5.0" + "@jest/fake-timers" "^25.5.0" + "@jest/types" "^25.5.0" + jest-mock "^25.5.0" + jest-util "^25.5.0" + jsdom "^15.2.1" + +jest-environment-node@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-25.5.0.tgz#0f55270d94804902988e64adca37c6ce0f7d07a1" + integrity sha512-iuxK6rQR2En9EID+2k+IBs5fCFd919gVVK5BeND82fYeLWPqvRcFNPKu9+gxTwfB5XwBGBvZ0HFQa+cHtIoslA== + dependencies: + "@jest/environment" "^25.5.0" + "@jest/fake-timers" "^25.5.0" + "@jest/types" "^25.5.0" + jest-mock "^25.5.0" + jest-util "^25.5.0" + semver "^6.3.0" + +jest-get-type@^25.2.6: + version "25.2.6" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877" + integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig== + +jest-haste-map@^25.5.1: + version "25.5.1" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-25.5.1.tgz#1df10f716c1d94e60a1ebf7798c9fb3da2620943" + integrity sha512-dddgh9UZjV7SCDQUrQ+5t9yy8iEgKc1AKqZR9YDww8xsVOtzPQSMVLDChc21+g29oTRexb9/B0bIlZL+sWmvAQ== + dependencies: + "@jest/types" "^25.5.0" + "@types/graceful-fs" "^4.1.2" + anymatch "^3.0.3" + fb-watchman "^2.0.0" + graceful-fs "^4.2.4" + jest-serializer "^25.5.0" + jest-util "^25.5.0" + jest-worker "^25.5.0" + micromatch "^4.0.2" + sane "^4.0.3" + walker "^1.0.7" + which "^2.0.2" + optionalDependencies: + fsevents "^2.1.2" + +jest-jasmine2@^25.5.4: + version "25.5.4" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-25.5.4.tgz#66ca8b328fb1a3c5364816f8958f6970a8526968" + integrity sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ== + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^25.5.0" + "@jest/source-map" "^25.5.0" + "@jest/test-result" "^25.5.0" + "@jest/types" "^25.5.0" + chalk "^3.0.0" + co "^4.6.0" + expect "^25.5.0" + is-generator-fn "^2.0.0" + jest-each "^25.5.0" + jest-matcher-utils "^25.5.0" + jest-message-util "^25.5.0" + jest-runtime "^25.5.4" + jest-snapshot "^25.5.1" + jest-util "^25.5.0" + pretty-format "^25.5.0" + throat "^5.0.0" + +jest-leak-detector@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-25.5.0.tgz#2291c6294b0ce404241bb56fe60e2d0c3e34f0bb" + integrity sha512-rV7JdLsanS8OkdDpZtgBf61L5xZ4NnYLBq72r6ldxahJWWczZjXawRsoHyXzibM5ed7C2QRjpp6ypgwGdKyoVA== + dependencies: + jest-get-type "^25.2.6" + pretty-format "^25.5.0" + +jest-matcher-utils@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-25.5.0.tgz#fbc98a12d730e5d2453d7f1ed4a4d948e34b7867" + integrity sha512-VWI269+9JS5cpndnpCwm7dy7JtGQT30UHfrnM3mXl22gHGt/b7NkjBqXfbhZ8V4B7ANUsjK18PlSBmG0YH7gjw== + dependencies: + chalk "^3.0.0" + jest-diff "^25.5.0" + jest-get-type "^25.2.6" + pretty-format "^25.5.0" + +jest-message-util@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-25.5.0.tgz#ea11d93204cc7ae97456e1d8716251185b8880ea" + integrity sha512-ezddz3YCT/LT0SKAmylVyWWIGYoKHOFOFXx3/nA4m794lfVUskMcwhip6vTgdVrOtYdjeQeis2ypzes9mZb4EA== + dependencies: + "@babel/code-frame" "^7.0.0" + "@jest/types" "^25.5.0" + "@types/stack-utils" "^1.0.1" + chalk "^3.0.0" + graceful-fs "^4.2.4" + micromatch "^4.0.2" + slash "^3.0.0" + stack-utils "^1.0.1" + +jest-mock@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-25.5.0.tgz#a91a54dabd14e37ecd61665d6b6e06360a55387a" + integrity sha512-eXWuTV8mKzp/ovHc5+3USJMYsTBhyQ+5A1Mak35dey/RG8GlM4YWVylZuGgVXinaW6tpvk/RSecmF37FKUlpXA== + dependencies: + "@jest/types" "^25.5.0" + +jest-pnp-resolver@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" + integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== + +jest-regex-util@^25.2.1, jest-regex-util@^25.2.6: + version "25.2.6" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-25.2.6.tgz#d847d38ba15d2118d3b06390056028d0f2fd3964" + integrity sha512-KQqf7a0NrtCkYmZZzodPftn7fL1cq3GQAFVMn5Hg8uKx/fIenLEobNanUxb7abQ1sjADHBseG/2FGpsv/wr+Qw== + +jest-resolve-dependencies@^25.5.4: + version "25.5.4" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-25.5.4.tgz#85501f53957c8e3be446e863a74777b5a17397a7" + integrity sha512-yFmbPd+DAQjJQg88HveObcGBA32nqNZ02fjYmtL16t1xw9bAttSn5UGRRhzMHIQbsep7znWvAvnD4kDqOFM0Uw== + dependencies: + "@jest/types" "^25.5.0" + jest-regex-util "^25.2.6" + jest-snapshot "^25.5.1" + +jest-resolve@^25.5.1: + version "25.5.1" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-25.5.1.tgz#0e6fbcfa7c26d2a5fe8f456088dc332a79266829" + integrity sha512-Hc09hYch5aWdtejsUZhA+vSzcotf7fajSlPA6EZPE1RmPBAD39XtJhvHWFStid58iit4IPDLI/Da4cwdDmAHiQ== + dependencies: + "@jest/types" "^25.5.0" + browser-resolve "^1.11.3" + chalk "^3.0.0" + graceful-fs "^4.2.4" + jest-pnp-resolver "^1.2.1" + read-pkg-up "^7.0.1" + realpath-native "^2.0.0" + resolve "^1.17.0" + slash "^3.0.0" + +jest-runner@^25.5.4: + version "25.5.4" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-25.5.4.tgz#ffec5df3875da5f5c878ae6d0a17b8e4ecd7c71d" + integrity sha512-V/2R7fKZo6blP8E9BL9vJ8aTU4TH2beuqGNxHbxi6t14XzTb+x90B3FRgdvuHm41GY8ch4xxvf0ATH4hdpjTqg== + dependencies: + "@jest/console" "^25.5.0" + "@jest/environment" "^25.5.0" + "@jest/test-result" "^25.5.0" + "@jest/types" "^25.5.0" + chalk "^3.0.0" + exit "^0.1.2" + graceful-fs "^4.2.4" + jest-config "^25.5.4" + jest-docblock "^25.3.0" + jest-haste-map "^25.5.1" + jest-jasmine2 "^25.5.4" + jest-leak-detector "^25.5.0" + jest-message-util "^25.5.0" + jest-resolve "^25.5.1" + jest-runtime "^25.5.4" + jest-util "^25.5.0" + jest-worker "^25.5.0" + source-map-support "^0.5.6" + throat "^5.0.0" + +jest-runtime@^25.5.4: + version "25.5.4" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-25.5.4.tgz#dc981fe2cb2137abcd319e74ccae7f7eeffbfaab" + integrity sha512-RWTt8LeWh3GvjYtASH2eezkc8AehVoWKK20udV6n3/gC87wlTbE1kIA+opCvNWyyPeBs6ptYsc6nyHUb1GlUVQ== + dependencies: + "@jest/console" "^25.5.0" + "@jest/environment" "^25.5.0" + "@jest/globals" "^25.5.2" + "@jest/source-map" "^25.5.0" + "@jest/test-result" "^25.5.0" + "@jest/transform" "^25.5.1" + "@jest/types" "^25.5.0" + "@types/yargs" "^15.0.0" + chalk "^3.0.0" + collect-v8-coverage "^1.0.0" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.2.4" + jest-config "^25.5.4" + jest-haste-map "^25.5.1" + jest-message-util "^25.5.0" + jest-mock "^25.5.0" + jest-regex-util "^25.2.6" + jest-resolve "^25.5.1" + jest-snapshot "^25.5.1" + jest-util "^25.5.0" + jest-validate "^25.5.0" + realpath-native "^2.0.0" + slash "^3.0.0" + strip-bom "^4.0.0" + yargs "^15.3.1" + +jest-serializer@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-25.5.0.tgz#a993f484e769b4ed54e70e0efdb74007f503072b" + integrity sha512-LxD8fY1lByomEPflwur9o4e2a5twSQ7TaVNLlFUuToIdoJuBt8tzHfCsZ42Ok6LkKXWzFWf3AGmheuLAA7LcCA== + dependencies: + graceful-fs "^4.2.4" + +jest-snapshot@^25.5.1: + version "25.5.1" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-25.5.1.tgz#1a2a576491f9961eb8d00c2e5fd479bc28e5ff7f" + integrity sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ== + dependencies: + "@babel/types" "^7.0.0" + "@jest/types" "^25.5.0" + "@types/prettier" "^1.19.0" + chalk "^3.0.0" + expect "^25.5.0" + graceful-fs "^4.2.4" + jest-diff "^25.5.0" + jest-get-type "^25.2.6" + jest-matcher-utils "^25.5.0" + jest-message-util "^25.5.0" + jest-resolve "^25.5.1" + make-dir "^3.0.0" + natural-compare "^1.4.0" + pretty-format "^25.5.0" + semver "^6.3.0" + +jest-util@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-25.5.0.tgz#31c63b5d6e901274d264a4fec849230aa3fa35b0" + integrity sha512-KVlX+WWg1zUTB9ktvhsg2PXZVdkI1NBevOJSkTKYAyXyH4QSvh+Lay/e/v+bmaFfrkfx43xD8QTfgobzlEXdIA== + dependencies: + "@jest/types" "^25.5.0" + chalk "^3.0.0" + graceful-fs "^4.2.4" + is-ci "^2.0.0" + make-dir "^3.0.0" + +jest-validate@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-25.5.0.tgz#fb4c93f332c2e4cf70151a628e58a35e459a413a" + integrity sha512-okUFKqhZIpo3jDdtUXUZ2LxGUZJIlfdYBvZb1aczzxrlyMlqdnnws9MOxezoLGhSaFc2XYaHNReNQfj5zPIWyQ== + dependencies: + "@jest/types" "^25.5.0" + camelcase "^5.3.1" + chalk "^3.0.0" + jest-get-type "^25.2.6" + leven "^3.1.0" + pretty-format "^25.5.0" + +jest-watch-typeahead@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-0.5.0.tgz#903dba6112f22daae7e90b0a271853f7ff182008" + integrity sha512-4r36w9vU8+rdg48hj0Z7TvcSqVP6Ao8dk04grlHQNgduyCB0SqrI0xWIl85ZhXrzYvxQ0N5H+rRLAejkQzEHeQ== + dependencies: + ansi-escapes "^4.2.1" + chalk "^3.0.0" + jest-regex-util "^25.2.1" + jest-watcher "^25.2.4" + slash "^3.0.0" + string-length "^3.1.0" + strip-ansi "^6.0.0" + +jest-watcher@^25.2.4, jest-watcher@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-25.5.0.tgz#d6110d101df98badebe435003956fd4a465e8456" + integrity sha512-XrSfJnVASEl+5+bb51V0Q7WQx65dTSk7NL4yDdVjPnRNpM0hG+ncFmDYJo9O8jaSRcAitVbuVawyXCRoxGrT5Q== + dependencies: + "@jest/test-result" "^25.5.0" + "@jest/types" "^25.5.0" + ansi-escapes "^4.2.1" + chalk "^3.0.0" + jest-util "^25.5.0" + string-length "^3.1.0" + +jest-worker@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" + integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== + dependencies: + merge-stream "^2.0.0" + supports-color "^6.1.0" + +jest-worker@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1" + integrity sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw== + dependencies: + merge-stream "^2.0.0" + supports-color "^7.0.0" + +jest@^25.3.0: + version "25.5.4" + resolved "https://registry.yarnpkg.com/jest/-/jest-25.5.4.tgz#f21107b6489cfe32b076ce2adcadee3587acb9db" + integrity sha512-hHFJROBTqZahnO+X+PMtT6G2/ztqAZJveGqz//FnWWHurizkD05PQGzRZOhF3XP6z7SJmL+5tCfW8qV06JypwQ== + dependencies: + "@jest/core" "^25.5.4" + import-local "^3.0.2" + jest-cli "^25.5.4" + +jpjs@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/jpjs/-/jpjs-1.2.1.tgz#f343833de8838a5beba1f42d5a219be0114c44b7" + integrity sha512-GxJWybWU4NV0RNKi6EIqk6IRPOTqd/h+U7sbtyuD7yUISUzV78LdHnq2xkevJsTlz/EImux4sWj+wfMiwKLkiw== + +js-sdsl@^4.1.4: + version "4.1.5" + resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a" + integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@4.1.0, js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +js-yaml@^3.10.0, js-yaml@^3.13.0, js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== + +jsdom@^15.2.1: + version "15.2.1" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5" + integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g== + dependencies: + abab "^2.0.0" + acorn "^7.1.0" + acorn-globals "^4.3.2" + array-equal "^1.0.0" + cssom "^0.4.1" + cssstyle "^2.0.0" + data-urls "^1.1.0" + domexception "^1.0.1" + escodegen "^1.11.1" + html-encoding-sniffer "^1.0.2" + nwsapi "^2.2.0" + parse5 "5.1.0" + pn "^1.1.0" + request "^2.88.0" + request-promise-native "^1.0.7" + saxes "^3.1.9" + symbol-tree "^3.2.2" + tough-cookie "^3.0.1" + w3c-hr-time "^1.0.1" + w3c-xmlserializer "^1.1.2" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.5" + whatwg-mimetype "^2.3.0" + whatwg-url "^7.0.0" + ws "^7.0.0" + xml-name-validator "^3.0.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-buffer@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898" + integrity sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ== + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" + integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stringify-nice@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz#2c937962b80181d3f317dd39aa323e14f5a60a67" + integrity sha512-5Z5RFW63yxReJ7vANgW6eZFGWaQvnPE3WNmZoOJrSkGju2etKA2L5rrOa1sm877TVTFt57A80BH1bArcmlLfPw== + +json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json5@2.x, json5@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" + integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +jsonc-parser@3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" + integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonparse@^1.2.0, jsonparse@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +jsprim@^1.2.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" + integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.4.0" + verror "1.10.0" + +jsx-ast-utils@^2.1.0, jsx-ast-utils@^2.2.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e" + integrity sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w== + dependencies: + array-includes "^3.1.1" + object.assign "^4.1.0" + +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2: + version "3.3.3" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" + integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== + dependencies: + array-includes "^3.1.5" + object.assign "^4.1.3" + +just-diff-apply@^5.2.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/just-diff-apply/-/just-diff-apply-5.4.1.tgz#1debed059ad009863b4db0e8d8f333d743cdd83b" + integrity sha512-AAV5Jw7tsniWwih8Ly3fXxEZ06y+6p5TwQMsw0dzZ/wPKilzyDgdAnL0Ug4NNIquPUOh1vfFWEHbmXUqM5+o8g== + +just-diff@^5.0.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/just-diff/-/just-diff-5.1.1.tgz#8da6414342a5ed6d02ccd64f5586cbbed3146202" + integrity sha512-u8HXJ3HlNrTzY7zrYYKjNEfBlyjqhdBkoyTVdjtn7p02RJD5NvR8rIClzeGA7t+UYP1/7eAkWNLU0+P3QrEqKQ== + +keyv@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.1.0.tgz#ecc228486f69991e49e9476485a5be1e8fc5c4d9" + integrity sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA== + dependencies: + json-buffer "3.0.0" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw== + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +language-subtag-registry@~0.3.2: + version "0.3.22" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" + integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== + +language-tags@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" + integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== + dependencies: + language-subtag-registry "~0.3.2" + +lerna@6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/lerna/-/lerna-6.0.1.tgz#7b14f05d1e17dc628478d33f225a579a6088d317" + integrity sha512-aNodtj1jyuEqzYmkYh+vTfRuzLkG3RZkvYxFCuLeXXzIYD5pjMHtf+1q4m03SPsZt+cElhhwkgjdg6GjihraBw== + dependencies: + "@lerna/add" "6.0.1" + "@lerna/bootstrap" "6.0.1" + "@lerna/changed" "6.0.1" + "@lerna/clean" "6.0.1" + "@lerna/cli" "6.0.1" + "@lerna/command" "6.0.1" + "@lerna/create" "6.0.1" + "@lerna/diff" "6.0.1" + "@lerna/exec" "6.0.1" + "@lerna/import" "6.0.1" + "@lerna/info" "6.0.1" + "@lerna/init" "6.0.1" + "@lerna/link" "6.0.1" + "@lerna/list" "6.0.1" + "@lerna/publish" "6.0.1" + "@lerna/run" "6.0.1" + "@lerna/version" "6.0.1" + "@nrwl/devkit" ">=14.8.6 < 16" + import-local "^3.0.2" + inquirer "^8.2.4" + npmlog "^6.0.2" + nx ">=14.8.6 < 16" + typescript "^3 || ^4" + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +libnpmaccess@^6.0.3: + version "6.0.4" + resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-6.0.4.tgz#2dd158bd8a071817e2207d3b201d37cf1ad6ae6b" + integrity sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag== + dependencies: + aproba "^2.0.0" + minipass "^3.1.1" + npm-package-arg "^9.0.1" + npm-registry-fetch "^13.0.0" + +libnpmpublish@^6.0.4: + version "6.0.5" + resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-6.0.5.tgz#5a894f3de2e267d62f86be2a508e362599b5a4b1" + integrity sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg== + dependencies: + normalize-package-data "^4.0.0" + npm-package-arg "^9.0.1" + npm-registry-fetch "^13.0.0" + semver "^7.3.7" + ssri "^9.0.0" + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +lint-staged@^9.0.0: + version "9.5.0" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-9.5.0.tgz#290ec605252af646d9b74d73a0fa118362b05a33" + integrity sha512-nawMob9cb/G1J98nb8v3VC/E8rcX1rryUYXVZ69aT9kde6YWX+uvNOEHY5yf2gcWcTJGiD0kqXmCnS3oD75GIA== + dependencies: + chalk "^2.4.2" + commander "^2.20.0" + cosmiconfig "^5.2.1" + debug "^4.1.1" + dedent "^0.7.0" + del "^5.0.0" + execa "^2.0.3" + listr "^0.14.3" + log-symbols "^3.0.0" + micromatch "^4.0.2" + normalize-path "^3.0.0" + please-upgrade-node "^3.1.1" + string-argv "^0.3.0" + stringify-object "^3.3.0" + +listr-silent-renderer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" + integrity sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA== + +listr-update-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" + integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + elegant-spinner "^1.0.1" + figures "^1.7.0" + indent-string "^3.0.0" + log-symbols "^1.0.2" + log-update "^2.3.0" + strip-ansi "^3.0.1" + +listr-verbose-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" + integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== + dependencies: + chalk "^2.4.1" + cli-cursor "^2.1.0" + date-fns "^1.27.2" + figures "^2.0.0" + +listr@^0.14.3: + version "0.14.3" + resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" + integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== + dependencies: + "@samverschueren/stream-to-observable" "^0.3.0" + is-observable "^1.1.0" + is-promise "^2.1.0" + is-stream "^1.1.0" + listr-silent-renderer "^1.1.1" + listr-update-renderer "^0.5.0" + listr-verbose-renderer "^0.5.0" + p-map "^2.0.0" + rxjs "^6.3.3" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + integrity sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ== + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +load-json-file@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-6.2.0.tgz#5c7770b42cafa97074ca2848707c61662f4251a1" + integrity sha512-gUD/epcRms75Cw8RT1pUdHugZYM5ce64ucs2GEISABwkRsOQr0q2wm/MV2TKThycIe5e0ytRweW2RZxclogCdQ== + dependencies: + graceful-fs "^4.1.15" + parse-json "^5.0.0" + strip-bom "^4.0.0" + type-fest "^0.6.0" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.ismatch@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz#756cb5150ca3ba6f11085a78849645f188f85f37" + integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g== + +lodash.memoize@4.x: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== + +lodash.throttle@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" + integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== + +lodash.unescape@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" + integrity sha512-DhhGRshNS1aX6s5YdBE3njCCouPgnG29ebyHvImlZzXZf2SHgt+J08DHgytTPnpywNbO1Y8mNUFyQuIDBq2JZg== + +lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + integrity sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ== + dependencies: + chalk "^1.0.0" + +log-symbols@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" + integrity sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== + dependencies: + chalk "^2.4.2" + +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" + integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + +log-update@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" + integrity sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg== + dependencies: + ansi-escapes "^3.0.0" + cli-cursor "^2.0.0" + wrap-ansi "^3.0.1" + +log-update@^3.0.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-3.4.0.tgz#3b9a71e00ac5b1185cc193a36d654581c48f97b9" + integrity sha512-ILKe88NeMt4gmDvk/eb615U/IVn7K9KWGkoYbdatQ69Z65nj1ZzjM6fHXfcs0Uge+e+EGnMW7DY4T9yko8vWFg== + dependencies: + ansi-escapes "^3.2.0" + cli-cursor "^2.1.0" + wrap-ansi "^5.0.0" + +lolex@^5.0.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/lolex/-/lolex-5.1.2.tgz#953694d098ce7c07bc5ed6d0e42bc6c0c6d5a367" + integrity sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A== + dependencies: + "@sinonjs/commons" "^1.7.0" + +loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + integrity sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ== + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== + +lowercase-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" + integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1: + version "7.14.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.14.0.tgz#21be64954a4680e303a09e9468f880b98a0b3c7f" + integrity sha512-EIRtP1GrSJny0dqb50QXRUNBxHJhcpxHC++M5tD7RYbvLLn5KVWKsbyswSSqDuU15UFi3bgTQIY8nhDMeF6aDQ== + +magic-string@^0.25.2, magic-string@^0.25.7: + version "0.25.9" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" + integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== + dependencies: + sourcemap-codec "^1.4.8" + +make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-dir@^3.0.0, make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +make-error@1.x, make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +make-fetch-happen@^10.0.3, make-fetch-happen@^10.0.6: + version "10.2.1" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" + integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== + dependencies: + agentkeepalive "^4.2.1" + cacache "^16.1.0" + http-cache-semantics "^4.1.0" + http-proxy-agent "^5.0.0" + https-proxy-agent "^5.0.0" + is-lambda "^1.0.1" + lru-cache "^7.7.1" + minipass "^3.1.6" + minipass-collect "^1.0.2" + minipass-fetch "^2.0.3" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^0.6.3" + promise-retry "^2.0.1" + socks-proxy-agent "^7.0.0" + ssri "^9.0.0" + +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== + +map-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== + +map-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" + integrity sha512-TzQSV2DiMYgoF5RycneKVUzIa9bQsj/B3tTgsE3dOGqlzHnGIDaC7XBE7grnA+8kZPnfqSGFe95VHc2oc0VFUQ== + +map-obj@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" + integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w== + dependencies: + object-visit "^1.0.0" + +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + +mdn-data@2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" + integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== + +meow@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" + integrity sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig== + dependencies: + camelcase-keys "^4.0.0" + decamelize-keys "^1.0.0" + loud-rejection "^1.0.0" + minimist-options "^3.0.1" + normalize-package-data "^2.3.4" + read-pkg-up "^3.0.0" + redent "^2.0.0" + trim-newlines "^2.0.0" + yargs-parser "^10.0.0" + +meow@^8.0.0: + version "8.1.2" + resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" + integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q== + dependencies: + "@types/minimist" "^1.2.0" + camelcase-keys "^6.2.2" + decamelize-keys "^1.1.0" + hard-rejection "^2.1.0" + minimist-options "4.1.0" + normalize-package-data "^3.0.0" + read-pkg-up "^7.0.1" + redent "^3.0.0" + trim-newlines "^3.0.0" + type-fest "^0.18.0" + yargs-parser "^20.2.3" + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.2.3, merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@4.x, micromatch@^4.0.2, micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +micromatch@^3.1.4: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12, mime-types@~2.1.19: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mimic-response@^1.0.0, mimic-response@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b" + integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ== + +min-indent@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + +minimatch@3.0.5: + version "3.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.5.tgz#4da8f1290ee0f0f8e83d60ca69f8f134068604a3" + integrity sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.0.tgz#1717b464f4971b144f6aabe8f2d0b8e4511e09c7" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + +minimist-options@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" + integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + kind-of "^6.0.3" + +minimist-options@^3.0.1: + version "3.0.2" + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" + integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== + dependencies: + arrify "^1.0.1" + is-plain-obj "^1.1.0" + +minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: + version "1.2.7" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" + integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== + +minipass-collect@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" + integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== + dependencies: + minipass "^3.0.0" + +minipass-fetch@^2.0.3: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" + integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== + dependencies: + minipass "^3.1.6" + minipass-sized "^1.0.3" + minizlib "^2.1.2" + optionalDependencies: + encoding "^0.1.13" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== + dependencies: + minipass "^3.0.0" + +minipass-json-stream@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz#7edbb92588fbfc2ff1db2fc10397acb7b6b44aa7" + integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== + dependencies: + jsonparse "^1.3.1" + minipass "^3.0.0" + +minipass-pipeline@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" + integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== + dependencies: + minipass "^3.0.0" + +minipass-sized@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" + integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== + dependencies: + minipass "^3.0.0" + +minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6: + version "3.3.4" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.4.tgz#ca99f95dd77c43c7a76bf51e6d200025eee0ffae" + integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw== + dependencies: + yallist "^4.0.0" + +minizlib@^2.1.1, minizlib@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mkdirp-infer-owner@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz#55d3b368e7d89065c38f32fd38e638f0ab61d316" + integrity sha512-sdqtiFt3lkOaYvTXSRIUjkIdPTcxgv5+fgqYE/5qgwdw12cOrAuzzgzvVExIkH/ul1oeHN3bCLOWSG3XOqbKKw== + dependencies: + chownr "^2.0.0" + infer-owner "^1.0.4" + mkdirp "^1.0.3" + +mkdirp@0.x, mkdirp@^0.5.1, mkdirp@~0.5.1: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +mkdirp@^1.0.3, mkdirp@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + +modify-values@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" + integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw== + +mri@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" + integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@^2.0.0, ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +multimatch@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-5.0.0.tgz#932b800963cea7a31a033328fa1e0c3a1874dbe6" + integrity sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA== + dependencies: + "@types/minimatch" "^3.0.3" + array-differ "^3.0.0" + array-union "^2.1.0" + arrify "^2.0.1" + minimatch "^3.0.4" + +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + integrity sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ== + +mute-stream@0.0.8, mute-stream@~0.0.4: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +nanoid@^3.3.4: + version "3.3.4" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" + integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +negotiator@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.6.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +next@13.0.0: + version "13.0.0" + resolved "https://registry.yarnpkg.com/next/-/next-13.0.0.tgz#6f07064a4f374562cf58677bef4dd06326ca648b" + integrity sha512-puH1WGM6rGeFOoFdXXYfUxN9Sgi4LMytCV5HkQJvVUOhHfC1DoVqOfvzaEteyp6P04IW+gbtK2Q9pInVSrltPA== + dependencies: + "@next/env" "13.0.0" + "@swc/helpers" "0.4.11" + caniuse-lite "^1.0.30001406" + postcss "8.4.14" + styled-jsx "5.1.0" + use-sync-external-store "1.2.0" + optionalDependencies: + "@next/swc-android-arm-eabi" "13.0.0" + "@next/swc-android-arm64" "13.0.0" + "@next/swc-darwin-arm64" "13.0.0" + "@next/swc-darwin-x64" "13.0.0" + "@next/swc-freebsd-x64" "13.0.0" + "@next/swc-linux-arm-gnueabihf" "13.0.0" + "@next/swc-linux-arm64-gnu" "13.0.0" + "@next/swc-linux-arm64-musl" "13.0.0" + "@next/swc-linux-x64-gnu" "13.0.0" + "@next/swc-linux-x64-musl" "13.0.0" + "@next/swc-win32-arm64-msvc" "13.0.0" + "@next/swc-win32-ia32-msvc" "13.0.0" + "@next/swc-win32-x64-msvc" "13.0.0" + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-addon-api@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.2.1.tgz#81325e0a2117789c0128dab65e7e38f07ceba161" + integrity sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A== + +node-fetch@^2.4.1, node-fetch@^2.6.1, node-fetch@^2.6.7: + version "2.6.7" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +node-gyp-build@^4.3.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.5.0.tgz#7a64eefa0b21112f89f58379da128ac177f20e40" + integrity sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg== + +node-gyp@^9.0.0: + version "9.3.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-9.3.0.tgz#f8eefe77f0ad8edb3b3b898409b53e697642b319" + integrity sha512-A6rJWfXFz7TQNjpldJ915WFb1LnhO4lIve3ANPbWreuEoLoKlFT3sxIepPBkLhM27crW8YmN+pjlgbasH6cH/Q== + dependencies: + env-paths "^2.2.0" + glob "^7.1.4" + graceful-fs "^4.2.6" + make-fetch-happen "^10.0.3" + nopt "^6.0.0" + npmlog "^6.0.0" + rimraf "^3.0.2" + semver "^7.3.5" + tar "^6.1.2" + which "^2.0.2" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-notifier@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-6.0.0.tgz#cea319e06baa16deec8ce5cd7f133c4a46b68e12" + integrity sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw== + dependencies: + growly "^1.3.0" + is-wsl "^2.1.1" + semver "^6.3.0" + shellwords "^0.1.1" + which "^1.3.1" + +node-releases@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" + integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== + +nopt@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" + integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== + dependencies: + abbrev "1" + +nopt@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-6.0.0.tgz#245801d8ebf409c6df22ab9d95b65e1309cdb16d" + integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== + dependencies: + abbrev "^1.0.0" + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-package-data@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" + integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== + dependencies: + hosted-git-info "^4.0.1" + is-core-module "^2.5.0" + semver "^7.3.4" + validate-npm-package-license "^3.0.1" + +normalize-package-data@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-4.0.1.tgz#b46b24e0616d06cadf9d5718b29b6d445a82a62c" + integrity sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg== + dependencies: + hosted-git-info "^5.0.0" + is-core-module "^2.8.1" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-url@^4.1.0: + version "4.5.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" + integrity sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA== + +npm-bundled@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" + integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== + dependencies: + npm-normalize-package-bin "^1.0.1" + +npm-bundled@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-2.0.1.tgz#94113f7eb342cd7a67de1e789f896b04d2c600f4" + integrity sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw== + dependencies: + npm-normalize-package-bin "^2.0.0" + +npm-install-checks@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-5.0.0.tgz#5ff27d209a4e3542b8ac6b0c1db6063506248234" + integrity sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA== + dependencies: + semver "^7.1.1" + +npm-normalize-package-bin@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" + integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + +npm-normalize-package-bin@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz#9447a1adaaf89d8ad0abe24c6c84ad614a675fff" + integrity sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ== + +npm-package-arg@8.1.1: + version "8.1.1" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.1.tgz#00ebf16ac395c63318e67ce66780a06db6df1b04" + integrity sha512-CsP95FhWQDwNqiYS+Q0mZ7FAEDytDZAkNxQqea6IaAFJTAY9Lhhqyl0irU/6PMc7BGfUmnsbHcqxJD7XuVM/rg== + dependencies: + hosted-git-info "^3.0.6" + semver "^7.0.0" + validate-npm-package-name "^3.0.0" + +npm-package-arg@^9.0.0, npm-package-arg@^9.0.1: + version "9.1.2" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-9.1.2.tgz#fc8acecb00235f42270dda446f36926ddd9ac2bc" + integrity sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg== + dependencies: + hosted-git-info "^5.0.0" + proc-log "^2.0.1" + semver "^7.3.5" + validate-npm-package-name "^4.0.0" + +npm-packlist@^5.1.0, npm-packlist@^5.1.1: + version "5.1.3" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-5.1.3.tgz#69d253e6fd664b9058b85005905012e00e69274b" + integrity sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg== + dependencies: + glob "^8.0.1" + ignore-walk "^5.0.1" + npm-bundled "^2.0.0" + npm-normalize-package-bin "^2.0.0" + +npm-pick-manifest@^7.0.0: + version "7.0.2" + resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-7.0.2.tgz#1d372b4e7ea7c6712316c0e99388a73ed3496e84" + integrity sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw== + dependencies: + npm-install-checks "^5.0.0" + npm-normalize-package-bin "^2.0.0" + npm-package-arg "^9.0.0" + semver "^7.3.5" + +npm-registry-fetch@^13.0.0, npm-registry-fetch@^13.0.1, npm-registry-fetch@^13.3.0: + version "13.3.1" + resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-13.3.1.tgz#bb078b5fa6c52774116ae501ba1af2a33166af7e" + integrity sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw== + dependencies: + make-fetch-happen "^10.0.6" + minipass "^3.1.6" + minipass-fetch "^2.0.3" + minipass-json-stream "^1.0.1" + minizlib "^2.1.2" + npm-package-arg "^9.0.1" + proc-log "^2.0.0" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== + dependencies: + path-key "^2.0.0" + +npm-run-path@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-3.1.0.tgz#7f91be317f6a466efed3c9f2980ad8a4ee8b0fa5" + integrity sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg== + dependencies: + path-key "^3.0.0" + +npm-run-path@^4.0.0, npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + +npmlog@^6.0.0, npmlog@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" + integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== + dependencies: + are-we-there-yet "^3.0.0" + console-control-strings "^1.1.0" + gauge "^4.0.3" + set-blocking "^2.0.0" + +nth-check@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== + +nwsapi@^2.2.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.2.tgz#e5418863e7905df67d51ec95938d67bf801f0bb0" + integrity sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw== + +nx@15.0.4, "nx@>=14.8.6 < 16": + version "15.0.4" + resolved "https://registry.yarnpkg.com/nx/-/nx-15.0.4.tgz#7299d4670c6a58584d47ca79ef79bec450163514" + integrity sha512-tCCiVJgCiX/R2zlL73dQsY49AxR/cA0dHX764KvLWIvB0mO8Zb7UWAwb8sdIbop3DqtGCopRTsAdOBcZXbe/9A== + dependencies: + "@nrwl/cli" "15.0.4" + "@nrwl/tao" "15.0.4" + "@parcel/watcher" "2.0.4" + "@yarnpkg/lockfile" "^1.1.0" + "@yarnpkg/parsers" "^3.0.0-rc.18" + "@zkochan/js-yaml" "0.0.6" + axios "^1.0.0" + chalk "4.1.0" + chokidar "^3.5.1" + cli-cursor "3.1.0" + cli-spinners "2.6.1" + cliui "^7.0.2" + dotenv "~10.0.0" + enquirer "~2.3.6" + fast-glob "3.2.7" + figures "3.2.0" + flat "^5.0.2" + fs-extra "^10.1.0" + glob "7.1.4" + ignore "^5.0.4" + js-yaml "4.1.0" + jsonc-parser "3.2.0" + minimatch "3.0.5" + npm-run-path "^4.0.1" + open "^8.4.0" + semver "7.3.4" + string-width "^4.2.3" + strong-log-transformer "^2.1.0" + tar-stream "~2.2.0" + tmp "~0.2.1" + tsconfig-paths "^3.9.0" + tslib "^2.3.0" + v8-compile-cache "2.3.0" + yargs "^17.4.0" + yargs-parser "21.0.1" + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.2" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== + dependencies: + isobject "^3.0.0" + +object.assign@^4.1.0, object.assign@^4.1.3, object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.entries@^1.1.0, object.entries@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" + integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +object.fromentries@^2.0.0, object.fromentries@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" + integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +object.getownpropertydescriptors@^2.1.0: + version "2.1.4" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz#7965e6437a57278b587383831a9b829455a4bc37" + integrity sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ== + dependencies: + array.prototype.reduce "^1.0.4" + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.1" + +object.hasown@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" + integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== + dependencies: + define-properties "^1.1.4" + es-abstract "^1.19.5" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== + dependencies: + isobject "^3.0.1" + +object.values@^1.1.0, object.values@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" + integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== + dependencies: + mimic-fn "^1.0.0" + +onetime@^5.1.0, onetime@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +open@^8.4.0: + version "8.4.0" + resolved "https://registry.yarnpkg.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" + integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== + dependencies: + define-lazy-prop "^2.0.0" + is-docker "^2.1.1" + is-wsl "^2.2.0" + +optionator@^0.8.1, optionator@^0.8.2, optionator@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.6" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + word-wrap "~1.2.3" + +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.3" + +ora@^4.0.3: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-4.1.1.tgz#566cc0348a15c36f5f0e979612842e02ba9dddbc" + integrity sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A== + dependencies: + chalk "^3.0.0" + cli-cursor "^3.1.0" + cli-spinners "^2.2.0" + is-interactive "^1.0.0" + log-symbols "^3.0.0" + mute-stream "0.0.8" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +ora@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +p-any@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-any/-/p-any-2.1.0.tgz#719489408e14f5f941a748f1e817f5c71cab35cb" + integrity sha512-JAERcaMBLYKMq+voYw36+x5Dgh47+/o7yuv2oQYuSSUml4YeqJEFznBrY2UeEkoSHqBua6hz518n/PsowTYLLg== + dependencies: + p-cancelable "^2.0.0" + p-some "^4.0.0" + type-fest "^0.3.0" + +p-cancelable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-1.1.0.tgz#d078d15a3af409220c886f1d9a0ca2e441ab26cc" + integrity sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw== + +p-cancelable@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" + integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== + +p-each-series@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" + integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== + +p-finally@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561" + integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw== + +p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + +p-limit@^2.0.0, p-limit@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== + dependencies: + p-limit "^1.1.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-map-series@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-2.1.0.tgz#7560d4c452d9da0c07e692fdbfe6e2c81a2a91f2" + integrity sha512-RpYIIK1zXSNEOdwxcfe7FdvGcs7+y5n8rifMhMNWvaxRNMPINJHF5GDeuVxWqnfrcHPSCnp7Oo5yNXHId9Av2Q== + +p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + +p-map@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" + integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== + dependencies: + aggregate-error "^3.0.0" + +p-map@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + +p-pipe@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-pipe/-/p-pipe-3.1.0.tgz#48b57c922aa2e1af6a6404cb7c6bf0eb9cc8e60e" + integrity sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw== + +p-queue@^6.6.2: + version "6.6.2" + resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" + integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== + dependencies: + eventemitter3 "^4.0.4" + p-timeout "^3.2.0" + +p-reduce@^2.0.0, p-reduce@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-2.1.0.tgz#09408da49507c6c274faa31f28df334bc712b64a" + integrity sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw== + +p-some@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-some/-/p-some-4.1.0.tgz#28e73bc1e0d62db54c2ed513acd03acba30d5c04" + integrity sha512-MF/HIbq6GeBqTrTIl5OJubzkGU+qfFhAFi0gnTAK6rgEIJIknEiABHOTtQu4e6JiXjIwuMPMUFQzyHh5QjCl1g== + dependencies: + aggregate-error "^3.0.0" + p-cancelable "^2.0.0" + +p-timeout@^3.0.0, p-timeout@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" + integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== + dependencies: + p-finally "^1.0.0" + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +p-waterfall@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/p-waterfall/-/p-waterfall-2.1.1.tgz#63153a774f472ccdc4eb281cdb2967fcf158b2ee" + integrity sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw== + dependencies: + p-reduce "^2.0.0" + +pacote@^13.0.3, pacote@^13.6.1: + version "13.6.2" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-13.6.2.tgz#0d444ba3618ab3e5cd330b451c22967bbd0ca48a" + integrity sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg== + dependencies: + "@npmcli/git" "^3.0.0" + "@npmcli/installed-package-contents" "^1.0.7" + "@npmcli/promise-spawn" "^3.0.0" + "@npmcli/run-script" "^4.1.0" + cacache "^16.0.0" + chownr "^2.0.0" + fs-minipass "^2.1.0" + infer-owner "^1.0.4" + minipass "^3.1.6" + mkdirp "^1.0.4" + npm-package-arg "^9.0.0" + npm-packlist "^5.1.0" + npm-pick-manifest "^7.0.0" + npm-registry-fetch "^13.0.1" + proc-log "^2.0.0" + promise-retry "^2.0.1" + read-package-json "^5.0.0" + read-package-json-fast "^2.0.3" + rimraf "^3.0.2" + ssri "^9.0.0" + tar "^6.1.11" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-conflict-json@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz#3d05bc8ffe07d39600dc6436c6aefe382033d323" + integrity sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA== + dependencies: + json-parse-even-better-errors "^2.3.1" + just-diff "^5.0.1" + just-diff-apply "^5.2.0" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ== + dependencies: + error-ex "^1.2.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +parse-path@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b" + integrity sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog== + dependencies: + protocols "^2.0.0" + +parse-url@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-8.1.0.tgz#972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d" + integrity sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w== + dependencies: + parse-path "^7.0.0" + +parse5-htmlparser2-tree-adapter@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz#23c2cc233bcf09bb7beba8b8a69d46b08c62c2f1" + integrity sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g== + dependencies: + domhandler "^5.0.2" + parse5 "^7.0.0" + +parse5@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" + integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== + +parse5@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.1.tgz#4649f940ccfb95d8754f37f73078ea20afe0c746" + integrity sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg== + dependencies: + entities "^4.4.0" + +pascal-case@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w== + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.0.0, path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.6, path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + integrity sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ== + dependencies: + pify "^2.0.0" + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.2, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^2.0.0, pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pify@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" + integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== + +pirates@^4.0.1: + version "4.0.5" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" + integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== + +pkg-dir@^4.1.0, pkg-dir@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +please-upgrade-node@^3.1.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" + integrity sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== + dependencies: + semver-compare "^1.0.0" + +pn@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== + +postcss@8.4.14: + version "8.4.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== + +prepend-http@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" + integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== + +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier@^1.19.1: + version "1.19.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== + +prettier@^2.0.5: + version "2.7.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" + integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== + +pretty-bytes@^5.2.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" + integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== + +pretty-format@^25.2.1, pretty-format@^25.5.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" + integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ== + dependencies: + "@jest/types" "^25.5.0" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^16.12.0" + +proc-log@^2.0.0, proc-log@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/proc-log/-/proc-log-2.0.1.tgz#8f3f69a1f608de27878f91f5c688b225391cb685" + integrity sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +progress-estimator@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/progress-estimator/-/progress-estimator-0.2.2.tgz#1c3947a5782ea56e40c8fccc290ac7ceeb1b91cb" + integrity sha512-GF76Ac02MTJD6o2nMNtmtOFjwWCnHcvXyn5HOWPQnEMO8OTLw7LAvNmrwe8LmdsB+eZhwUu9fX/c9iQnBxWaFA== + dependencies: + chalk "^2.4.1" + cli-spinners "^1.3.1" + humanize-duration "^3.15.3" + log-update "^2.3.0" + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-all-reject-late@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz#f8ebf13483e5ca91ad809ccc2fcf25f26f8643c2" + integrity sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw== + +promise-call-limit@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-call-limit/-/promise-call-limit-1.0.1.tgz#4bdee03aeb85674385ca934da7114e9bcd3c6e24" + integrity sha512-3+hgaa19jzCGLuSCbieeRsu5C2joKfYn8pY6JAuXFRVfF4IO+L7UPpFWNTeWT9pM7uhskvbPPd/oEOktCn317Q== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" + integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g== + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + +prompts@^2.0.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +promzard@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee" + integrity sha512-JZeYqd7UAcHCwI+sTOeUDYkvEU+1bQ7iE0UT1MgB/tERkAPkesW46MrpIySzODi+owTjZtiF8Ay5j9m60KmMBw== + dependencies: + read "1" + +prop-types@^15.5.10, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +proto-list@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" + integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== + +protocols@^2.0.0, protocols@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86" + integrity sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q== + +proxy-from-env@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" + integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== + +psl@^1.1.28: + version "1.9.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + +public-ip@^4.0.1: + version "4.0.4" + resolved "https://registry.yarnpkg.com/public-ip/-/public-ip-4.0.4.tgz#b3784a5a1ff1b81d015b9a18450be65ffd929eb3" + integrity sha512-EJ0VMV2vF6Cu7BIPo3IMW1Maq6ME+fbR0NcPmqDfpfNGIRPue1X8QrGjrg/rfjDkOsIkKHIf2S5FlEa48hFMTA== + dependencies: + dns-socket "^4.2.2" + got "^9.6.0" + is-ip "^3.1.0" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +q@^1.1.2, q@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== + +qs@~6.5.2: + version "6.5.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" + integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +quick-lru@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" + integrity sha512-tRS7sTgyxMXtLum8L65daJnHUhfDUgboRdcWW2bR9vBfrj2+O5HSMbQOJfJJjIVSPFqbBCF37FpwWXGitDc5tA== + +quick-lru@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" + integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +react-dom@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== + dependencies: + loose-envify "^1.1.0" + scheduler "^0.23.0" + +react-is@^16.12.0, react-is@^16.13.1: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-reconciler@^0.24.0: + version "0.24.0" + resolved "https://registry.yarnpkg.com/react-reconciler/-/react-reconciler-0.24.0.tgz#5a396b2c2f5efe8554134a5935f49f546723f2dd" + integrity sha512-gAGnwWkf+NOTig9oOowqid9O0HjTDC+XVGBCAmJYYJ2A2cN/O4gDdIuuUQjv8A4v6GDwVfJkagpBBLW5OW9HSw== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + scheduler "^0.18.0" + +react@17.0.2: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037" + integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +react@18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +read-cmd-shim@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-3.0.1.tgz#868c235ec59d1de2db69e11aec885bc095aea087" + integrity sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g== + +read-package-json-fast@^2.0.2, read-package-json-fast@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz#323ca529630da82cb34b36cc0b996693c98c2b83" + integrity sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ== + dependencies: + json-parse-even-better-errors "^2.3.0" + npm-normalize-package-bin "^1.0.1" + +read-package-json@^5.0.0, read-package-json@^5.0.1: + version "5.0.2" + resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-5.0.2.tgz#b8779ccfd169f523b67208a89cc912e3f663f3fa" + integrity sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q== + dependencies: + glob "^8.0.1" + json-parse-even-better-errors "^2.3.1" + normalize-package-data "^4.0.0" + npm-normalize-package-bin "^2.0.0" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + integrity sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w== + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" + integrity sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw== + dependencies: + find-up "^2.0.0" + read-pkg "^3.0.0" + +read-pkg-up@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" + integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== + dependencies: + find-up "^4.1.0" + read-pkg "^5.2.0" + type-fest "^0.8.1" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + integrity sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA== + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +read-pkg@^5.1.1, read-pkg@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" + integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== + dependencies: + "@types/normalize-package-data" "^2.4.0" + normalize-package-data "^2.5.0" + parse-json "^5.0.0" + type-fest "^0.6.0" + +read@1, read@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" + integrity sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ== + dependencies: + mute-stream "~0.0.4" + +readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readable-stream@~2.3.6: + version "2.3.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readdir-scoped-modules@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309" + integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw== + dependencies: + debuglog "^1.0.1" + dezalgo "^1.0.0" + graceful-fs "^4.1.2" + once "^1.3.0" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +realpath-native@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-2.0.0.tgz#7377ac429b6e1fd599dc38d08ed942d0d7beb866" + integrity sha512-v1SEYUOXXdbBZK8ZuNgO4TBjamPsiSgcFr0aP+tEKpQZK8vooEUqV6nm6Cv502mX4NF2EfsnVqtNAHG+/6Ur1Q== + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw== + dependencies: + resolve "^1.1.6" + +redent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" + integrity sha512-XNwrTx77JQCEMXTeb8movBKuK75MgH0RZkujNuDKCezemx/voapl9i2gCSi8WWm8+ox5ycJi1gxF22fR7c0Ciw== + dependencies: + indent-string "^3.0.0" + strip-indent "^2.0.0" + +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + +regenerate-unicode-properties@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" + integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.13.10, regenerator-runtime@^0.13.7: + version "0.13.10" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" + integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== + +regenerator-transform@^0.15.0: + version "0.15.0" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537" + integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg== + dependencies: + "@babel/runtime" "^7.8.4" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + +regexpp@^3.0.0, regexpp@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +regexpu-core@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.1.tgz#a69c26f324c1e962e9ffd0b88b055caba8089139" + integrity sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ== + dependencies: + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsgen "^0.7.1" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.0.0" + +regjsgen@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6" + integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA== + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== + +repeat-element@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" + integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== + +request-promise-core@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" + integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== + dependencies: + lodash "^4.17.19" + +request-promise-native@^1.0.7: + version "1.0.9" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" + integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== + dependencies: + request-promise-core "1.1.4" + stealthy-require "^1.1.1" + tough-cookie "^2.3.3" + +request@^2.88.0: + version "2.88.2" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.3" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.5.0" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +resolve-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== + dependencies: + resolve-from "^5.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== + +resolve@1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + integrity sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg== + +resolve@1.15.1: + version "1.15.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8" + integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w== + dependencies: + path-parse "^1.0.6" + +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.17.0, resolve@^1.20.0, resolve@^1.22.0: + version "1.22.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@^2.0.0-next.3: + version "2.0.0-next.4" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" + integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +responselike@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7" + integrity sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ== + dependencies: + lowercase-keys "^1.0.0" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@2.6.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +rimraf@^3.0.0, rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rollup-plugin-sourcemaps@^0.6.2: + version "0.6.3" + resolved "https://registry.yarnpkg.com/rollup-plugin-sourcemaps/-/rollup-plugin-sourcemaps-0.6.3.tgz#bf93913ffe056e414419607f1d02780d7ece84ed" + integrity sha512-paFu+nT1xvuO1tPFYXGe+XnQvg4Hjqv/eIhG8i5EspfYYPBKL57X7iVbfv55aNVASg3dzWvES9dmWsL2KhfByw== + dependencies: + "@rollup/pluginutils" "^3.0.9" + source-map-resolve "^0.6.0" + +rollup-plugin-terser@^5.1.2: + version "5.3.1" + resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz#8c650062c22a8426c64268548957463bf981b413" + integrity sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w== + dependencies: + "@babel/code-frame" "^7.5.5" + jest-worker "^24.9.0" + rollup-pluginutils "^2.8.2" + serialize-javascript "^4.0.0" + terser "^4.6.2" + +rollup-plugin-typescript2@^0.26.0: + version "0.26.0" + resolved "https://registry.yarnpkg.com/rollup-plugin-typescript2/-/rollup-plugin-typescript2-0.26.0.tgz#cee2b44d51d9623686656d76dc30a73c4de91672" + integrity sha512-lUK7XZVG77tu8dmv1L/0LZFlavED/5Yo6e4iMMl6fdox/yKdj4IFRRPPJEXNdmEaT1nDQQeCi7b5IwKHffMNeg== + dependencies: + find-cache-dir "^3.2.0" + fs-extra "8.1.0" + resolve "1.15.1" + rollup-pluginutils "2.8.2" + tslib "1.10.0" + +rollup-pluginutils@2.8.2, rollup-pluginutils@^2.8.2: + version "2.8.2" + resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" + integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== + dependencies: + estree-walker "^0.6.1" + +rollup@^1.32.1: + version "1.32.1" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.32.1.tgz#4480e52d9d9e2ae4b46ba0d9ddeaf3163940f9c4" + integrity sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A== + dependencies: + "@types/estree" "*" + "@types/node" "*" + acorn "^7.1.0" + +rsvp@^4.8.4: + version "4.8.5" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== + +run-async@^2.2.0, run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +run-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/run-node/-/run-node-1.0.0.tgz#46b50b946a2aa2d4947ae1d886e9856fd9cabe5e" + integrity sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A== + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +rxjs@^6.3.3, rxjs@^6.4.0, rxjs@^6.6.0: + version "6.6.7" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" + integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== + dependencies: + tslib "^1.9.0" + +rxjs@^7.5.5: + version "7.5.7" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39" + integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA== + dependencies: + tslib "^2.1.0" + +sade@^1.4.2: + version "1.8.1" + resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701" + integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A== + dependencies: + mri "^1.1.0" + +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-regex-test@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" + integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-regex "^1.1.4" + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sane@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" + integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== + dependencies: + "@cnakazawa/watch" "^1.0.3" + anymatch "^2.0.0" + capture-exit "^2.0.0" + exec-sh "^0.3.2" + execa "^1.0.0" + fb-watchman "^2.0.0" + micromatch "^3.1.4" + minimist "^1.1.1" + walker "~1.0.5" + +sax@~1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +saxes@^3.1.9: + version "3.1.11" + resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b" + integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== + dependencies: + xmlchars "^2.1.1" + +scheduler@^0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.18.0.tgz#5901ad6659bc1d8f3fdaf36eb7a67b0d6746b1c4" + integrity sha512-agTSHR1Nbfi6ulI0kYNK0203joW2Y5W4po4l+v03tOoiJKpTBbxpNhWDvqc/4IcOw+KLmSiQLTasZ4cab2/UWQ== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== + dependencies: + loose-envify "^1.1.0" + +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== + +"semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" + integrity sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA== + +semver@6.x, semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@7.3.4: + version "7.3.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" + integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== + dependencies: + lru-cache "^6.0.0" + +semver@^7.0.0, semver@^7.1.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7: + version "7.3.8" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" + integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== + dependencies: + randombytes "^2.1.0" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + +set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shelljs@^0.8.3: + version "0.8.5" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c" + integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +shellwords@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + integrity sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw== + +slice-ansi@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + +slice-ansi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" + integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +smart-buffer@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" + integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +socks-proxy-agent@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" + integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== + dependencies: + agent-base "^6.0.2" + debug "^4.3.3" + socks "^2.6.2" + +socks@^2.6.2: + version "2.7.1" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" + integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== + dependencies: + ip "^2.0.0" + smart-buffer "^4.2.0" + +sort-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" + integrity sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg== + dependencies: + is-plain-obj "^1.0.0" + +sort-keys@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-4.2.0.tgz#6b7638cee42c506fff8c1cecde7376d21315be18" + integrity sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg== + dependencies: + is-plain-obj "^2.0.0" + +source-map-js@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== + +source-map-resolve@^0.5.0: + version "0.5.3" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-resolve@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.6.0.tgz#3d9df87e236b53f16d01e58150fc7711138e5ed2" + integrity sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + +source-map-support@^0.5.17, source-map-support@^0.5.6, source-map-support@~0.5.12: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== + +source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.7.3: + version "0.7.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + +sourcemap-codec@^1.4.8: + version "1.4.8" + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +split2@^3.0.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" + integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== + dependencies: + readable-stream "^3.0.0" + +split@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" + integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== + dependencies: + through "2" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +sshpk@^1.7.0: + version "1.17.0" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" + integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + +ssri@^9.0.0, ssri@^9.0.1: + version "9.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" + integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== + dependencies: + minipass "^3.1.1" + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +stack-utils@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.5.tgz#a19b0b01947e0029c8e451d5d61a498f5bb1471b" + integrity sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ== + dependencies: + escape-string-regexp "^2.0.0" + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +stealthy-require@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + integrity sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g== + +string-argv@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" + integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== + +string-length@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837" + integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA== + dependencies: + astral-regex "^1.0.0" + strip-ansi "^5.2.0" + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^2.1.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string-width@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +string.prototype.matchall@^4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" + integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + get-intrinsic "^1.1.1" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + regexp.prototype.flags "^1.4.1" + side-channel "^1.0.4" + +string.prototype.trimend@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" + integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string.prototype.trimstart@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" + integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.19.5" + +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +stringify-object@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-bom@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" + integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== + +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + +strip-indent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" + integrity sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA== + +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + +strip-json-comments@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + +strip-json-comments@^3.0.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +strong-log-transformer@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz#0f5ed78d325e0421ac6f90f7f10e691d6ae3ae10" + integrity sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA== + dependencies: + duplexer "^0.1.1" + minimist "^1.2.0" + through "^2.3.4" + +styled-jsx@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.0.tgz#4a5622ab9714bd3fcfaeec292aa555871f057563" + integrity sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ== + dependencies: + client-only "0.0.1" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-hyperlinks@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" + integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +svgo@^1.2.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" + integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== + dependencies: + chalk "^2.4.1" + coa "^2.0.2" + css-select "^2.0.0" + css-select-base-adapter "^0.1.1" + css-tree "1.0.0-alpha.37" + csso "^4.0.2" + js-yaml "^3.13.1" + mkdirp "~0.5.1" + object.values "^1.1.0" + sax "~1.2.4" + stable "^0.1.8" + unquote "~1.1.1" + util.promisify "~1.0.0" + +symbol-observable@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" + integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== + +symbol-tree@^3.2.2: + version "3.2.4" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== + +table@^5.2.3: + version "5.4.6" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== + dependencies: + ajv "^6.10.2" + lodash "^4.17.14" + slice-ansi "^2.1.0" + string-width "^3.0.0" + +tar-stream@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + +tar@^6.1.0, tar@^6.1.11, tar@^6.1.2: + version "6.1.11" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" + integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^3.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + +temp-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" + integrity sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ== + +tempy@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/tempy/-/tempy-0.3.0.tgz#6f6c5b295695a16130996ad5ab01a8bd726e8bf8" + integrity sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ== + dependencies: + temp-dir "^1.0.0" + type-fest "^0.3.1" + unique-string "^1.0.0" + +terminal-link@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" + integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== + dependencies: + ansi-escapes "^4.2.1" + supports-hyperlinks "^2.0.0" + +terser@^4.6.2: + version "4.8.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.1.tgz#a00e5634562de2239fd404c649051bf6fc21144f" + integrity sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw== + dependencies: + commander "^2.20.0" + source-map "~0.6.1" + source-map-support "~0.5.12" + +test-exclude@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" + integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== + dependencies: + "@istanbuljs/schema" "^0.1.2" + glob "^7.1.4" + minimatch "^3.0.4" + +text-extensions@^1.0.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26" + integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +throat@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" + integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== + +through2@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +through2@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/through2/-/through2-4.0.2.tgz#a7ce3ac2a7a8b0b966c80e7c49f0484c3b239764" + integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== + dependencies: + readable-stream "3" + +through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +tiny-glob@^0.2.6: + version "0.2.9" + resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.9.tgz#2212d441ac17928033b110f8b3640683129d31e2" + integrity sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== + dependencies: + globalyzer "0.1.0" + globrex "^0.1.2" + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmp@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" + integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== + dependencies: + rimraf "^3.0.0" + +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== + dependencies: + kind-of "^3.0.2" + +to-readable-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/to-readable-stream/-/to-readable-stream-1.0.0.tgz#ce0aa0c2f3df6adf852efb404a783e77c0475771" + integrity sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q== + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg== + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +tough-cookie@^2.3.3, tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +tough-cookie@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" + integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== + dependencies: + ip-regex "^2.1.0" + psl "^1.1.28" + punycode "^2.1.1" + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA== + dependencies: + punycode "^2.1.0" + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== + +treeverse@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/treeverse/-/treeverse-2.0.0.tgz#036dcef04bc3fd79a9b79a68d4da03e882d8a9ca" + integrity sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A== + +trim-newlines@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" + integrity sha512-MTBWv3jhVjTU7XR3IQHllbiJs8sc75a80OEhB6or/q7pLTWgQ0bMGQXXYQSrSuXe6WiKWDZ5txXY5P59a/coVA== + +trim-newlines@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" + integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== + +ts-jest@^25.3.1: + version "25.5.1" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-25.5.1.tgz#2913afd08f28385d54f2f4e828be4d261f4337c7" + integrity sha512-kHEUlZMK8fn8vkxDjwbHlxXRB9dHYpyzqKIGDNxbzs+Rz+ssNDSDNusEK8Fk/sDd4xE6iKoQLfFkFVaskmTJyw== + dependencies: + bs-logger "0.x" + buffer-from "1.x" + fast-json-stable-stringify "2.x" + json5 "2.x" + lodash.memoize "4.x" + make-error "1.x" + micromatch "4.x" + mkdirp "0.x" + semver "6.x" + yargs-parser "18.x" + +ts-node@^8.1.0: + version "8.10.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.10.2.tgz#eee03764633b1234ddd37f8db9ec10b75ec7fb8d" + integrity sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA== + dependencies: + arg "^4.1.0" + diff "^4.0.1" + make-error "^1.1.1" + source-map-support "^0.5.17" + yn "3.1.1" + +tsconfig-paths@^3.14.1, tsconfig-paths@^3.9.0: + version "3.14.1" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" + integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tsdx@0.14.0: + version "0.14.0" + resolved "https://registry.yarnpkg.com/tsdx/-/tsdx-0.14.0.tgz#89a2bd732cd64de631e5dbadde731b4420dd76e6" + integrity sha512-6GAO4gZ818OCoR2XQ0GEThTbL+sHqZpBYBKSKyN3bDJUDFWxZUvkaZ3kpNcjbft70V0y6tHQfN1oyA8V9FAQOg== + dependencies: + "@babel/core" "^7.4.4" + "@babel/helper-module-imports" "^7.0.0" + "@babel/parser" "^7.11.5" + "@babel/plugin-proposal-class-properties" "^7.4.4" + "@babel/preset-env" "^7.11.0" + "@babel/traverse" "^7.11.5" + "@rollup/plugin-babel" "^5.1.0" + "@rollup/plugin-commonjs" "^11.0.0" + "@rollup/plugin-json" "^4.0.0" + "@rollup/plugin-node-resolve" "^9.0.0" + "@rollup/plugin-replace" "^2.2.1" + "@types/jest" "^25.2.1" + "@typescript-eslint/eslint-plugin" "^2.12.0" + "@typescript-eslint/parser" "^2.12.0" + ansi-escapes "^4.2.1" + asyncro "^3.0.0" + babel-eslint "^10.0.3" + babel-plugin-annotate-pure-calls "^0.4.0" + babel-plugin-dev-expression "^0.2.1" + babel-plugin-macros "^2.6.1" + babel-plugin-polyfill-regenerator "^0.0.4" + babel-plugin-transform-rename-import "^2.3.0" + camelcase "^6.0.0" + chalk "^4.0.0" + enquirer "^2.3.4" + eslint "^6.1.0" + eslint-config-prettier "^6.0.0" + eslint-config-react-app "^5.0.2" + eslint-plugin-flowtype "^3.13.0" + eslint-plugin-import "^2.18.2" + eslint-plugin-jsx-a11y "^6.2.3" + eslint-plugin-prettier "^3.1.0" + eslint-plugin-react "^7.14.3" + eslint-plugin-react-hooks "^2.2.0" + execa "^4.0.3" + fs-extra "^9.0.0" + jest "^25.3.0" + jest-watch-typeahead "^0.5.0" + jpjs "^1.2.1" + lodash.merge "^4.6.2" + ora "^4.0.3" + pascal-case "^3.1.1" + prettier "^1.19.1" + progress-estimator "^0.2.2" + regenerator-runtime "^0.13.7" + rollup "^1.32.1" + rollup-plugin-sourcemaps "^0.6.2" + rollup-plugin-terser "^5.1.2" + rollup-plugin-typescript2 "^0.26.0" + sade "^1.4.2" + semver "^7.1.1" + shelljs "^0.8.3" + tiny-glob "^0.2.6" + ts-jest "^25.3.1" + tslib "^1.9.3" + typescript "^3.7.3" + +tslib@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" + integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== + +tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" + integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== + +tsutils@^3.17.1, tsutils@^3.21.0, tsutils@^3.7.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== + dependencies: + prelude-ls "~1.1.2" + +type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.18.0: + version "0.18.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" + integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-fest@^0.3.0, type-fest@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" + integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== + +type-fest@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.4.1.tgz#8bdf77743385d8a4f13ba95f610f5ccd68c728f8" + integrity sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw== + +type-fest@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" + integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +typedarray-to-buffer@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" + integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== + dependencies: + is-typedarray "^1.0.0" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== + +typescript@4.8.4, "typescript@^3 || ^4": + version "4.8.4" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6" + integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ== + +typescript@^3.4.3, typescript@^3.7.3: + version "3.9.10" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" + integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== + +uglify-js@^3.1.4: + version "3.17.4" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" + integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" + integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +union-value@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^2.0.1" + +unique-filename@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" + integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== + dependencies: + unique-slug "^3.0.0" + +unique-slug@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9" + integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== + dependencies: + imurmurhash "^0.1.4" + +unique-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + integrity sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg== + dependencies: + crypto-random-string "^1.0.0" + +universal-user-agent@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" + integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + +unquote@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" + integrity sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg== + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +upath@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" + integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== + +update-browserslist-db@^1.0.9: + version "1.0.10" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" + integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== + +url-parse-lax@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c" + integrity sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ== + dependencies: + prepend-http "^2.0.0" + +use-sync-external-store@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" + integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util.promisify@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" + integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.2" + has-symbols "^1.0.1" + object.getownpropertydescriptors "^2.1.0" + +uuid@^3.3.2: + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +uuid@^8.3.2: + version "8.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== + +v8-compile-cache@2.3.0, v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +v8-to-istanbul@^4.1.3: + version "4.1.4" + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6" + integrity sha512-Rw6vJHj1mbdK8edjR7+zuJrpDtKIgNdAvTSAcpYfgMIw+u2dPDntD3dgN4XQFLU2/fvFQdzj+EeSGfd/jnY5fQ== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.1" + convert-source-map "^1.6.0" + source-map "^0.7.3" + +validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +validate-npm-package-name@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + integrity sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw== + dependencies: + builtins "^1.0.3" + +validate-npm-package-name@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz#fe8f1c50ac20afdb86f177da85b3600f0ac0d747" + integrity sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q== + dependencies: + builtins "^5.0.0" + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +w3c-hr-time@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== + dependencies: + browser-process-hrtime "^1.0.0" + +w3c-xmlserializer@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" + integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== + dependencies: + domexception "^1.0.1" + webidl-conversions "^4.0.2" + xml-name-validator "^3.0.0" + +walk-up-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/walk-up-path/-/walk-up-path-1.0.0.tgz#d4745e893dd5fd0dbb58dd0a4c6a33d9c9fec53e" + integrity sha512-hwj/qMDUEjCU5h0xr90KGCf0tg0/LgJbmOWgrWKYlcJZM7XvquvUJZ0G/HMGr7F7OQMOUuPHWP9JpriinkAlkg== + +walker@^1.0.7, walker@~1.0.5: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + +wcwidth@^1.0.0, wcwidth@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== + dependencies: + defaults "^1.0.3" + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== + dependencies: + iconv-lite "0.4.24" + +whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + +whatwg-url@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== + +which@^1.2.9, which@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1, which@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + +widest-line@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" + integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== + dependencies: + string-width "^4.0.0" + +word-wrap@^1.2.3, word-wrap@~1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +wordwrap@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q== + +wrap-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" + integrity sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ== + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + +wrap-ansi@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@^2.4.2: + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write-file-atomic@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" + integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== + dependencies: + imurmurhash "^0.1.4" + is-typedarray "^1.0.0" + signal-exit "^3.0.2" + typedarray-to-buffer "^3.1.5" + +write-file-atomic@^4.0.0, write-file-atomic@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + +write-json-file@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a" + integrity sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ== + dependencies: + detect-indent "^5.0.0" + graceful-fs "^4.1.15" + make-dir "^2.1.0" + pify "^4.0.1" + sort-keys "^2.0.0" + write-file-atomic "^2.4.2" + +write-json-file@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-4.3.0.tgz#908493d6fd23225344af324016e4ca8f702dd12d" + integrity sha512-PxiShnxf0IlnQuMYOPPhPkhExoCQuTUNPOa/2JWCYTmBquU9njyyDuwRKN26IZBlp4yn1nt+Agh2HOOBl+55HQ== + dependencies: + detect-indent "^6.0.0" + graceful-fs "^4.1.15" + is-plain-obj "^2.0.0" + make-dir "^3.0.0" + sort-keys "^4.0.0" + write-file-atomic "^3.0.0" + +write-pkg@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-4.0.0.tgz#675cc04ef6c11faacbbc7771b24c0abbf2a20039" + integrity sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA== + dependencies: + sort-keys "^2.0.0" + type-fest "^0.4.1" + write-json-file "^3.2.0" + +write@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== + dependencies: + mkdirp "^0.5.1" + +ws@^7.0.0: + version "7.5.9" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" + integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== + +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== + +xmlchars@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== + +xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + +y18n@^5.0.5: + version "5.0.8" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.10.0, yaml@^1.7.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yargs-parser@18.x, yargs-parser@^18.1.2: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@20.2.4: + version "20.2.4" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== + +yargs-parser@21.0.1: + version "21.0.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" + integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== + +yargs-parser@^10.0.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" + integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== + dependencies: + camelcase "^4.1.0" + +yargs-parser@^20.2.2, yargs-parser@^20.2.3: + version "20.2.9" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" + integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== + +yargs-parser@^21.0.0: + version "21.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" + integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== + +yargs@^15.3.1: + version "15.4.1" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" + integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== + dependencies: + cliui "^6.0.0" + decamelize "^1.2.0" + find-up "^4.1.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^4.2.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^18.1.2" + +yargs@^16.2.0: + version "16.2.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== + dependencies: + cliui "^7.0.2" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.0" + y18n "^5.0.5" + yargs-parser "^20.2.2" + +yargs@^17.4.0: + version "17.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.0.tgz#e134900fc1f218bc230192bdec06a0a5f973e46c" + integrity sha512-8H/wTDqlSwoSnScvV2N/JHfLWOKuh5MVla9hqLjK3nsfyy6Y4kDSYSvkU5YCUEPOSnRXfIyx3Sq+B/IWudTo4g== + dependencies: + cliui "^8.0.1" + escalade "^3.1.1" + get-caller-file "^2.0.5" + require-directory "^2.1.1" + string-width "^4.2.3" + y18n "^5.0.5" + yargs-parser "^21.0.0" + +yarnhook@^0.4.1: + version "0.4.5" + resolved "https://registry.yarnpkg.com/yarnhook/-/yarnhook-0.4.5.tgz#1c3c850b1c5e459e378adb4a72a68f82acef419b" + integrity sha512-ES7Z/OPagymy0/IHUc/UmogECxO916JxH+K9IpBewDdWEwtEMDa5BxJfBOB43dgobuoJORru5UdRBn0Fq40y7A== + dependencies: + execa "^4.0.3" + find-parent-dir "^0.3.0" + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + +yoga-layout-prebuilt@^1.9.3: + version "1.10.0" + resolved "https://registry.yarnpkg.com/yoga-layout-prebuilt/-/yoga-layout-prebuilt-1.10.0.tgz#2936fbaf4b3628ee0b3e3b1df44936d6c146faa6" + integrity sha512-YnOmtSbv4MTf7RGJMK0FvZ+KD8OEe/J5BNnR0GHhD8J/XcG/Qvxgszm0Un6FTHWW4uHlTgP0IztiXQnGyIR45g== + dependencies: + "@types/yoga-layout" "1.9.2"