From 74f8d5f17a714d336c54410f440e9f299e07183f Mon Sep 17 00:00:00 2001 From: jonathansadowski Date: Wed, 24 Aug 2022 10:15:22 -0500 Subject: [PATCH] Use syncpack to verify consistent versions for react and react-dom (#34397) * Add GitHub action and pre-push hook for syncpack for react and react-dom * Fix typo in pre-push script * Don't execute suggested command to fix mismatches automatically. * Update react and react-dom to 17.0.2 * Move changelog check to last, so that pre-push still fails if check isn't successful * Add changelog files * Correct issue with syncpack.yml referencing an internal action * Add command to top-level package.json for fixing mismatches * Update syncpack action to only run when package.json files are affected * Update workflow to just run syncpack list-mismatches * Add version pinning to syncpackrc --- .github/workflows/syncpack.yml | 33 + .syncpackrc | 18 + bin/pre-push.sh | 8 + package.json | 4 +- packages/js/components/changelog/fix-34112 | 5 + packages/js/components/package.json | 6 +- .../customer-effort-score/changelog/fix-34112 | 5 + .../js/customer-effort-score/package.json | 4 +- packages/js/data/changelog/fix-34112 | 5 + packages/js/data/package.json | 6 +- packages/js/experimental/changelog/fix-34112 | 5 + packages/js/experimental/package.json | 4 +- packages/js/notices/package.json | 4 +- pnpm-lock.yaml | 6911 ++++++++--------- 14 files changed, 3401 insertions(+), 3617 deletions(-) create mode 100644 .github/workflows/syncpack.yml create mode 100644 .syncpackrc create mode 100644 packages/js/components/changelog/fix-34112 create mode 100644 packages/js/customer-effort-score/changelog/fix-34112 create mode 100644 packages/js/data/changelog/fix-34112 create mode 100644 packages/js/experimental/changelog/fix-34112 diff --git a/.github/workflows/syncpack.yml b/.github/workflows/syncpack.yml new file mode 100644 index 00000000000..d5f119bdd32 --- /dev/null +++ b/.github/workflows/syncpack.yml @@ -0,0 +1,33 @@ +name: Syncronize Dependencies with syncpack +on: + # Run whenever a pull request is updated + pull_request: + branches: + - trunk + paths: + - '**/package.json' +jobs: + syncpack: + runs-on: ubuntu-latest + name: syncpack + steps: + - name: 'Checkout' + uses: actions/checkout@v3 + + - name: 'Setup node' + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: 'Install Syncpack' + run: npm install -g syncpack@^8.2.4 + + - name: 'List Mismatches' + run: syncpack list-mismatches + + - name: 'Explain Remedy' + if: failure() + run: | + echo "Dependency version mismatch detected. This can usually be fixed automatically by updating the pinned version in \`.syncpackrc` and then running: \`pnpm run +sync-dependencies\`" + exit 1 diff --git a/.syncpackrc b/.syncpackrc new file mode 100644 index 00000000000..7a7ed28c058 --- /dev/null +++ b/.syncpackrc @@ -0,0 +1,18 @@ +{ + "dev": true, + "filter": "^(?:react|react-dom)$", + "indent": "\t", + "overrides": true, + "peer": true, + "pnpmOverrides": true, + "prod": true, + "semverRange": "^", + "workspace": true, + "versionGroups": [ + { + "dependencies": [ "react", "react-dom" ], + "packages": [ "**" ], + "pinVersion": "^17.0.2" + } + ] +} diff --git a/bin/pre-push.sh b/bin/pre-push.sh index 283d9b00902..0bd204d5383 100755 --- a/bin/pre-push.sh +++ b/bin/pre-push.sh @@ -23,4 +23,12 @@ if [ $PROTECTED_BRANCH = $CURRENT_BRANCH ]; then exit 1 fi +pnpm exec syncpack -- list-mismatches + +if [ $? -ne 0 ]; then + echo "You must sync the dependencies listed above before you can push this branch." + echo "This can usually be accomplished automatically by updating the pinned version in `.syncpackrc` and then running \`pnpm run sync-dependencies\`." + exit 1 +fi + php tools/monorepo/check-changelogger-use.php $PROTECTED_BRANCH $CURRENT_BRANCH diff --git a/package.json b/package.json index 4486afefd95..042d34abfa4 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,8 @@ "storybook": "./tools/storybook/import-wp-css-storybook.sh && BABEL_ENV=storybook STORYBOOK=true start-storybook -c ./tools/storybook/.storybook -p 6007 --ci", "storybook-rtl": "USE_RTL_STYLE=true pnpm run storybook", "create-extension": "node ./tools/create-extension/index.js", - "cherry-pick": "node ./tools/cherry-pick/bin/run" + "cherry-pick": "node ./tools/cherry-pick/bin/run", + "sync-dependencies": "pnpm exec syncpack -- fix-mismatches" }, "devDependencies": { "@babel/preset-env": "^7.16.11", @@ -68,6 +69,7 @@ "request": "^2.88.2", "sass": "^1.49.9", "sass-loader": "^10.2.1", + "syncpack": "^8.2.4", "turbo": "^1.2.16", "typescript": "4.2.4", "url-loader": "^1.1.2", diff --git a/packages/js/components/changelog/fix-34112 b/packages/js/components/changelog/fix-34112 new file mode 100644 index 00000000000..2c06f8f49fb --- /dev/null +++ b/packages/js/components/changelog/fix-34112 @@ -0,0 +1,5 @@ +Significance: patch +Type: tweak +Comment: Minor update of react and react-dom to 17.0.2. + + diff --git a/packages/js/components/package.json b/packages/js/components/package.json index 306b5335038..3e67c7c670a 100644 --- a/packages/js/components/package.json +++ b/packages/js/components/package.json @@ -72,8 +72,8 @@ "peerDependencies": { "@wordpress/data": "^6.2.1", "lodash": "^4.17.0", - "react": "^17.0.0", - "react-dom": "^17.0.0" + "react": "^17.0.2", + "react-dom": "^17.0.2" }, "publishConfig": { "access": "public" @@ -111,7 +111,7 @@ "jest": "^27.5.1", "jest-cli": "^27.5.1", "postcss-loader": "^3.0.0", - "react": "^17.0.0", + "react": "^17.0.2", "rimraf": "^3.0.2", "sass-loader": "^10.2.1", "ts-jest": "^27.1.3", diff --git a/packages/js/customer-effort-score/changelog/fix-34112 b/packages/js/customer-effort-score/changelog/fix-34112 new file mode 100644 index 00000000000..2c06f8f49fb --- /dev/null +++ b/packages/js/customer-effort-score/changelog/fix-34112 @@ -0,0 +1,5 @@ +Significance: patch +Type: tweak +Comment: Minor update of react and react-dom to 17.0.2. + + diff --git a/packages/js/customer-effort-score/package.json b/packages/js/customer-effort-score/package.json index 89beec20573..f1df7bca71b 100644 --- a/packages/js/customer-effort-score/package.json +++ b/packages/js/customer-effort-score/package.json @@ -58,8 +58,8 @@ "webpack-cli": "^3.3.12" }, "peerDependencies": { - "react": "^17.0.0", - "react-dom": "^17.0.0" + "react": "^17.0.2", + "react-dom": "^17.0.2" }, "scripts": { "turbo:build": "pnpm run build:js && pnpm run build:css", diff --git a/packages/js/data/changelog/fix-34112 b/packages/js/data/changelog/fix-34112 new file mode 100644 index 00000000000..2c06f8f49fb --- /dev/null +++ b/packages/js/data/changelog/fix-34112 @@ -0,0 +1,5 @@ +Significance: patch +Type: tweak +Comment: Minor update of react and react-dom to 17.0.2. + + diff --git a/packages/js/data/package.json b/packages/js/data/package.json index 403203872a9..b0260175c3b 100644 --- a/packages/js/data/package.json +++ b/packages/js/data/package.json @@ -68,8 +68,8 @@ "peerDependencies": { "@wordpress/core-data": "^4.1.0", "moment": "^2.18.1", - "react": "^17.0.0", - "react-dom": "^17.0.0" + "react": "^17.0.2", + "react-dom": "^17.0.2" }, "scripts": { "turbo:build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json", @@ -91,4 +91,4 @@ "pnpm test-staged" ] } -} \ No newline at end of file +} diff --git a/packages/js/experimental/changelog/fix-34112 b/packages/js/experimental/changelog/fix-34112 new file mode 100644 index 00000000000..2c06f8f49fb --- /dev/null +++ b/packages/js/experimental/changelog/fix-34112 @@ -0,0 +1,5 @@ +Significance: patch +Type: tweak +Comment: Minor update of react and react-dom to 17.0.2. + + diff --git a/packages/js/experimental/package.json b/packages/js/experimental/package.json index 5cbc303e194..1b7aa824908 100644 --- a/packages/js/experimental/package.json +++ b/packages/js/experimental/package.json @@ -71,8 +71,8 @@ "webpack-cli": "^3.3.12" }, "peerDependencies": { - "react": "^17.0.0", - "react-dom": "^17.0.0" + "react": "^17.0.2", + "react-dom": "^17.0.2" }, "scripts": { "turbo:build": "pnpm run build:js && pnpm run build:css", diff --git a/packages/js/notices/package.json b/packages/js/notices/package.json index 826f41ad5c9..35a448b6546 100644 --- a/packages/js/notices/package.json +++ b/packages/js/notices/package.json @@ -29,8 +29,8 @@ }, "peerDependencies": { "lodash": "^4.17.0", - "react": "^17.0.0", - "react-dom": "^17.0.0" + "react": "^17.0.2", + "react-dom": "^17.0.2" }, "publishConfig": { "access": "public" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 36e4d3ecfb7..7f1518ca31f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -53,6 +53,7 @@ importers: request: ^2.88.2 sass: ^1.49.9 sass-loader: ^10.2.1 + syncpack: ^8.2.4 turbo: ^1.2.16 typescript: 4.2.4 url-loader: ^1.1.2 @@ -67,27 +68,27 @@ importers: devDependencies: '@babel/preset-env': 7.16.11_@babel+core@7.12.9 '@babel/runtime': 7.17.7 - '@storybook/addon-a11y': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/addon-actions': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addon-a11y': 6.4.19 + '@storybook/addon-actions': 6.4.19 '@storybook/addon-console': 1.2.3_@storybook+addon-actions@6.4.19 - '@storybook/addon-controls': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/addon-docs': 6.4.19_04ae9179cdf4383e1efb600f1ff5fb00 - '@storybook/addon-knobs': 6.4.0_6d3fd42cc2dc28673127a5aba3ab9a43 - '@storybook/addon-links': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/addon-storysource': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/addon-viewport': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/builder-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addon-controls': 6.4.19_typescript@4.2.4 + '@storybook/addon-docs': 6.4.19_a84ef1f946d21a14f1015f55f0de5456 + '@storybook/addon-knobs': 6.4.0_bdb88cf577f190583d60d23c102288af + '@storybook/addon-links': 6.4.19 + '@storybook/addon-storysource': 6.4.19 + '@storybook/addon-viewport': 6.4.19 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/components': 6.4.19 '@storybook/core-events': 6.4.19 - '@storybook/manager-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/react': 6.4.19_e0aa14d07c25f72541ac45bc1b107967 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/react': 6.4.19_1a3cbc393c8e54a301ca95e65ea44c36 + '@storybook/theming': 6.4.19 '@types/node': 14.14.33 '@woocommerce/eslint-plugin': link:packages/js/eslint-plugin - '@wordpress/data': 6.4.1_react@17.0.2 - '@wordpress/eslint-plugin': 11.0.1_1f52f45e7bfacc80707c778589e25ef6 + '@wordpress/data': 6.4.1 + '@wordpress/eslint-plugin': 11.0.1_45b6e6918fb11850d1105a4fd2c5fed3 '@wordpress/prettier-config': 1.1.1 babel-loader: 8.2.3_d3f6fe5812216e437b67a6bf164a056c chalk: 4.1.2 @@ -107,6 +108,7 @@ importers: request: 2.88.2 sass: 1.49.9 sass-loader: 10.2.1_sass@1.49.9+webpack@5.70.0 + syncpack: 8.2.4 turbo: 1.2.16 typescript: 4.2.4 url-loader: 1.1.2_webpack@5.70.0 @@ -138,7 +140,7 @@ importers: '@babel/core': 7.17.8 '@types/expect-puppeteer': 4.4.7 '@types/puppeteer': 5.4.5 - '@typescript-eslint/eslint-plugin': 5.15.0_c8b324c35d270b9e6d84e3592e846620 + '@typescript-eslint/eslint-plugin': 5.15.0_eslint@8.12.0+typescript@4.6.2 '@woocommerce/api': link:../api '@woocommerce/eslint-plugin': link:../eslint-plugin eslint: 8.12.0 @@ -196,7 +198,7 @@ importers: dotenv: 10.0.0 jest: 27.5.1 jest-allure: 0.1.3 - jest-runner-groups: 2.1.0_4647a0878e72be9de5cbb567f767cb2f + jest-runner-groups: 2.1.0 postman-collection: 4.1.0 supertest: 6.1.6 devDependencies: @@ -277,7 +279,7 @@ importers: moment-timezone: ^0.5.34 postcss-loader: ^3.0.0 prop-types: ^15.8.1 - react: ^17.0.0 + react: ^17.0.2 react-dates: ^21.8.0 react-transition-group: ^4.4.2 rimraf: ^3.0.2 @@ -289,14 +291,14 @@ importers: dependencies: '@automattic/calypso-color-schemes': 2.1.1 '@automattic/interpolate-components': 1.2.1_00d6772dea80510e818fd171caaa025a - '@automattic/tour-kit': 1.1.1_0d56e69a642919a20c16b00459ee3b72 + '@automattic/tour-kit': 1.1.1_0d062da66b58358356486e34422db281 '@woocommerce/csv-export': link:../csv-export '@woocommerce/currency': link:../currency '@woocommerce/data': link:../data '@woocommerce/date': link:../date '@woocommerce/navigation': link:../navigation '@wordpress/api-fetch': 6.1.1 - '@wordpress/components': 19.6.1_686eff9ab75237351863ab9743333cca + '@wordpress/components': 19.6.1_707fe24a3ddaa8115c00d0a9966a19ae '@wordpress/compose': 5.2.1_react@17.0.2 '@wordpress/date': 4.4.1 '@wordpress/deprecated': 3.4.1 @@ -327,35 +329,35 @@ importers: moment: 2.29.1 moment-timezone: 0.5.34 prop-types: 15.8.1 - react-dates: 21.8.0_895effa80be9def90ecbc38e5a9fcfe5 - react-transition-group: 4.4.2_react-dom@16.14.0+react@17.0.2 + react-dates: 21.8.0_33310dc40fed09c713f34ce185e0313d + react-transition-group: 4.4.2_react@17.0.2 devDependencies: '@babel/core': 7.17.8 '@babel/runtime': 7.17.7 - '@storybook/addon-actions': 6.4.19_d9a3f2afc99990b2b757e465d25e781f + '@storybook/addon-actions': 6.4.19_00d6772dea80510e818fd171caaa025a '@storybook/addon-console': 1.2.3_@storybook+addon-actions@6.4.19 - '@storybook/addon-controls': 6.4.19_b0cda1f11447377860c5e079f8ead547 - '@storybook/addon-docs': 6.4.19_a5163d881eff5d56a3304b3af074f65b - '@storybook/addon-knobs': 6.4.0_6f7a3a19e380d59f672b35d4e61dd5e3 - '@storybook/addon-links': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/components': 6.4.19_d9a3f2afc99990b2b757e465d25e781f + '@storybook/addon-controls': 6.4.19_8469d84421212093500428258085ef2e + '@storybook/addon-docs': 6.4.19_0e171cb44cbc3183f7a2f6791a9a5c37 + '@storybook/addon-knobs': 6.4.0_80fa647588bad5a9aae035b5831b7e40 + '@storybook/addon-links': 6.4.19_react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/api': 6.4.19_react@17.0.2 + '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a '@storybook/core-events': 6.4.19 - '@storybook/react': 6.4.19_d2f048c98daab869c00fca4878e089e9 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/react': 6.4.19_ac71394bf7b79921297ea028da6e50ca + '@storybook/theming': 6.4.19_react@17.0.2 '@testing-library/dom': 8.11.3 '@testing-library/jest-dom': 5.16.2 - '@testing-library/react': 12.1.4_react-dom@16.14.0+react@17.0.2 + '@testing-library/react': 12.1.4_react@17.0.2 '@testing-library/user-event': 13.5.0_@testing-library+dom@8.11.3 '@types/react': 17.0.40 - '@types/wordpress__components': 19.10.1_react-dom@16.14.0+react@17.0.2 - '@types/wordpress__media-utils': 3.0.0_react-dom@16.14.0+react@17.0.2 + '@types/wordpress__components': 19.10.1_react@17.0.2 + '@types/wordpress__media-utils': 3.0.0_react@17.0.2 '@types/wordpress__viewport': 2.5.4 '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-style-build': link:../internal-style-build '@wordpress/browserslist-config': 4.1.2 - '@wordpress/scripts': 12.6.1_28f977f421d1ee87451ad1193e6643e0 + '@wordpress/scripts': 12.6.1_3f1b4fa1d29169e6bd7bf0dc7584ef3d concurrently: 7.0.0 css-loader: 3.6.0_webpack@5.70.0 eslint: 8.12.0 @@ -460,20 +462,20 @@ importers: webpack-cli: ^3.3.12 dependencies: '@woocommerce/experimental': link:../experimental - '@wordpress/components': 19.6.1_978f344c876a57c1143ffe356b90df31 - '@wordpress/compose': 5.2.1_react@17.0.2 - '@wordpress/data': 6.4.1_react@17.0.2 + '@wordpress/components': 19.6.1_@babel+core@7.17.8 + '@wordpress/compose': 5.2.1 + '@wordpress/data': 6.4.1 '@wordpress/element': 4.8.0 '@wordpress/i18n': 4.4.1 - '@wordpress/notices': 3.4.1_react@17.0.2 + '@wordpress/notices': 3.4.1 classnames: 2.3.1 prop-types: 15.8.1 - react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2 + react-transition-group: 4.4.2 devDependencies: '@babel/core': 7.17.8 - '@testing-library/react': 12.1.4_react-dom@17.0.2+react@17.0.2 + '@testing-library/react': 12.1.4 '@types/prop-types': 15.7.4 - '@types/wordpress__components': 19.10.1_react-dom@17.0.2+react@17.0.2 + '@types/wordpress__components': 19.10.1 '@types/wordpress__data': 6.0.0 '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-style-build': link:../internal-style-build @@ -534,10 +536,10 @@ importers: '@woocommerce/date': link:../date '@woocommerce/navigation': link:../navigation '@wordpress/api-fetch': 6.1.1 - '@wordpress/compose': 5.2.1_react@17.0.2 - '@wordpress/core-data': 4.2.1_react@17.0.2 - '@wordpress/data': 6.4.1_react@17.0.2 - '@wordpress/data-controls': 2.4.1_react@17.0.2 + '@wordpress/compose': 5.2.1 + '@wordpress/core-data': 4.2.1 + '@wordpress/data': 6.4.1 + '@wordpress/data-controls': 2.4.1 '@wordpress/deprecated': 3.4.1 '@wordpress/element': 4.8.0 '@wordpress/hooks': 3.5.0 @@ -548,11 +550,11 @@ importers: qs: 6.10.3 rememo: 4.0.0 devDependencies: - '@automattic/data-stores': 2.0.1_3e680851ac4c44045923121481015704 + '@automattic/data-stores': 2.0.1_@wordpress+data@6.4.1 '@babel/core': 7.17.8 '@babel/runtime': 7.17.7 - '@testing-library/react': 12.1.4_react-dom@17.0.2+react@17.0.2 - '@testing-library/react-hooks': 7.0.2_react-dom@17.0.2+react@17.0.2 + '@testing-library/react': 12.1.4 + '@testing-library/react-hooks': 7.0.2 '@types/lodash': 4.14.182 '@types/md5': 2.3.2 '@types/qs': 6.9.7 @@ -717,7 +719,7 @@ importers: '@slack/web-api': 6.5.1 '@woocommerce/api': link:../api '@wordpress/e2e-test-utils': 4.16.1_jest@25.5.4+puppeteer@2.1.1 - '@wordpress/jest-preset-default': 7.1.3_c91ac9362e654c80949b9406f2b40113 + '@wordpress/jest-preset-default': 7.1.3_@babel+core@7.12.9+jest@25.5.4 app-root-path: 3.0.0 commander: 4.1.1 config: 3.3.3 @@ -773,7 +775,7 @@ importers: dependencies: '@automattic/puppeteer-utils': github.com/Automattic/puppeteer-utils/0f3ec50 '@wordpress/deprecated': 3.2.3 - '@wordpress/e2e-test-utils': 5.3.2_jest@27.5.1+puppeteer@2.1.1 + '@wordpress/e2e-test-utils': 5.3.2_jest@27.3.1 config: 3.3.3 fishery: 1.4.0 devDependencies: @@ -785,8 +787,8 @@ importers: '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.12.9 '@babel/polyfill': 7.12.1 '@babel/preset-env': 7.12.7_@babel+core@7.12.9 - '@typescript-eslint/eslint-plugin': 5.3.0_b6a4ecba2c3480e044c0fe4aec7ba9a1 - '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.6.2 + '@typescript-eslint/eslint-plugin': 5.3.0_ef742ec0d85d332d26b421951e243e75 + '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.2.4 '@woocommerce/internal-e2e-builds': link:../internal-e2e-builds '@wordpress/babel-plugin-import-jsx-pragma': 1.1.3_@babel+core@7.12.9 '@wordpress/babel-preset-default': 3.0.2 @@ -864,29 +866,29 @@ importers: webpack-cli: ^3.3.12 dependencies: '@woocommerce/components': link:../components - '@wordpress/components': 19.6.1_978f344c876a57c1143ffe356b90df31 + '@wordpress/components': 19.6.1_@babel+core@7.17.8 '@wordpress/element': 4.8.0 '@wordpress/i18n': 4.4.1 '@wordpress/icons': 8.1.0 '@wordpress/keycodes': 3.4.1 classnames: 2.3.1 dompurify: 2.3.6 - gridicons: 3.4.0_react@17.0.2 + gridicons: 3.4.0 moment: 2.29.1 - react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2 - react-visibility-sensor: 5.1.1_react-dom@17.0.2+react@17.0.2 + react-transition-group: 4.4.2 + react-visibility-sensor: 5.1.1 devDependencies: '@babel/core': 7.17.8 '@babel/runtime': 7.17.7 - '@storybook/addon-actions': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addon-actions': 6.4.19 '@storybook/addon-console': 1.2.3_@storybook+addon-actions@6.4.19 - '@storybook/react': 6.4.19_ef4e6501236e44e8b996c5f4ad254cad + '@storybook/react': 6.4.19_ce33fa78e84ed7674385e603320a18f7 '@testing-library/dom': 8.11.3 - '@testing-library/react': 12.1.4_react-dom@17.0.2+react@17.0.2 + '@testing-library/react': 12.1.4 '@testing-library/user-event': 13.5.0_@testing-library+dom@8.11.3 '@types/dompurify': 2.3.3 '@types/react-transition-group': 4.4.4 - '@types/wordpress__components': 19.10.1_react-dom@17.0.2+react@17.0.2 + '@types/wordpress__components': 19.10.1 '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-style-build': link:../internal-style-build '@wordpress/browserslist-config': 4.1.2 @@ -983,8 +985,8 @@ importers: typescript: ^4.6.2 dependencies: '@testing-library/jest-dom': 5.16.2 - '@testing-library/react': 12.1.4_react-dom@17.0.2+react@17.0.2 - '@wordpress/data': 6.4.1_react@17.0.2 + '@testing-library/react': 12.1.4 + '@wordpress/data': 6.4.1 '@wordpress/i18n': 4.5.0 '@wordpress/jest-console': 5.0.2_jest@27.5.1 regenerator-runtime: 0.13.9 @@ -1063,15 +1065,15 @@ importers: typescript: ^4.6.2 dependencies: '@wordpress/api-fetch': 6.1.1 - '@wordpress/components': 19.6.1_978f344c876a57c1143ffe356b90df31 - '@wordpress/compose': 5.2.1_react@17.0.2 + '@wordpress/components': 19.6.1_@babel+core@7.17.8 + '@wordpress/compose': 5.2.1 '@wordpress/element': 4.8.0 '@wordpress/hooks': 3.5.0 - '@wordpress/notices': 3.4.1_react@17.0.2 + '@wordpress/notices': 3.4.1 '@wordpress/url': 3.5.1 history: 5.3.0 qs: 6.10.3 - react-router-dom: 6.3.0_react-dom@17.0.2+react@17.0.2 + react-router-dom: 6.3.0 devDependencies: '@babel/core': 7.17.8 '@babel/runtime': 7.17.7 @@ -1104,10 +1106,10 @@ importers: typescript: ^4.6.2 dependencies: '@wordpress/a11y': 3.5.0 - '@wordpress/data': 6.4.1_react@18.0.0 - '@wordpress/notices': 3.4.1_react@18.0.0 + '@wordpress/data': 6.4.1 + '@wordpress/notices': 3.4.1 devDependencies: - '@automattic/data-stores': 2.0.1_62cb7b0d86a5989377d25d9c33751f76 + '@automattic/data-stores': 2.0.1_@wordpress+data@6.4.1 '@babel/core': 7.17.8 '@types/lodash': 4.14.182 '@types/wordpress__data': 6.0.0 @@ -1176,19 +1178,19 @@ importers: webpack: ^5.70.0 webpack-cli: ^3.3.12 dependencies: - '@automattic/interpolate-components': 1.2.1_react@17.0.2 + '@automattic/interpolate-components': 1.2.1 '@woocommerce/components': link:../components '@woocommerce/experimental': link:../experimental '@woocommerce/explat': link:../explat '@woocommerce/tracks': link:../tracks - '@wordpress/components': 19.6.1_978f344c876a57c1143ffe356b90df31 + '@wordpress/components': 19.6.1_@babel+core@7.17.8 '@wordpress/element': 4.8.0 '@wordpress/i18n': 4.4.1 concurrently: 7.0.0 - gridicons: 3.4.0_react@17.0.2 + gridicons: 3.4.0 devDependencies: '@babel/core': 7.17.8 - '@types/wordpress__components': 19.10.1_react-dom@17.0.2+react@17.0.2 + '@types/wordpress__components': 19.10.1 '@types/wordpress__data': 6.0.0 '@woocommerce/eslint-plugin': link:../eslint-plugin '@woocommerce/internal-style-build': link:../internal-style-build @@ -1305,7 +1307,7 @@ importers: cross-env: 6.0.3 deasync: 0.1.26 eslint: 6.8.0 - eslint-config-wpcalypso: 5.0.0_de3521d9475c33bb94206c11fe8f2bfe + eslint-config-wpcalypso: 5.0.0_eslint@6.8.0 eslint-plugin-jest: 23.20.0_eslint@6.8.0+typescript@3.9.7 istanbul: 1.0.0-alpha.2 jest: 25.5.4 @@ -1611,7 +1613,7 @@ importers: eslint: 8.11.0 eslint-import-resolver-typescript: 2.5.0_fe22d862ffeecaee86c93a006d59e41e eslint-import-resolver-webpack: 0.13.2_bac363bc2c2f46a65300020741b6cf5e - eslint-plugin-import: 2.25.4_77772d9183dc10a22461806e31fab843 + eslint-plugin-import: 2.25.4_eslint@8.11.0 eslint-plugin-react: 7.29.4_eslint@8.11.0 expose-loader: 3.1.0_webpack@5.70.0 fork-ts-checker-webpack-plugin: 6.5.0_10568ae13669cc833891d65cd6879aa0 @@ -1671,18 +1673,18 @@ importers: dependencies: '@types/prop-types': 15.7.4 '@woocommerce/data': link:../../packages/js/data - '@wordpress/api-fetch': 3.23.1_react-native@0.69.4 - '@wordpress/components': 12.0.9_9bf202fc0c1ad26f1b75f6cec4791c09 - '@wordpress/compose': 3.25.3_react@17.0.2 - '@wordpress/data': 4.27.3_react@17.0.2 - '@wordpress/data-controls': 1.21.3_react-native@0.69.4+react@17.0.2 + '@wordpress/api-fetch': 3.23.1 + '@wordpress/components': 12.0.9_@wordpress+data@4.27.3 + '@wordpress/compose': 3.25.3 + '@wordpress/data': 4.27.3 + '@wordpress/data-controls': 1.21.3 '@wordpress/element': 4.8.0 '@wordpress/hooks': 2.12.3 devDependencies: '@woocommerce/dependency-extraction-webpack-plugin': link:../../packages/js/dependency-extraction-webpack-plugin '@woocommerce/eslint-plugin': link:../../packages/js/eslint-plugin '@wordpress/env': 4.8.0 - '@wordpress/scripts': 19.2.4_084ed6dbcaa022b4f555317046ea6e16 + '@wordpress/scripts': 19.2.4_ee910045e4cc2812de8b965e303c7169 eslint: 5.16.0 uglify-js: 3.14.5 @@ -1872,7 +1874,7 @@ packages: /@automattic/color-studio/2.5.0: resolution: {integrity: sha512-gZWaJbx3p1oennAIoJtMGluTmoM95Efk4rc44TSBxWSZZ8gH3Am2eh1o3i1NhrZmg2Zt3AiVFeZZ4AJccIpBKQ==} - /@automattic/components/2.0.1_b39bf2883bf3bea497f92f89df0012e9: + /@automattic/components/2.0.1_428387ef6f7029a4af8aedaaaf9646a5: resolution: {integrity: sha512-xvIfbLcX869Cx4ccDUC5hb9MqTvZDNC5ho2yI0g1aveUfVGn7FqPxNiHwCEfW2fi5f85T63CZ727Q+ECawDoKQ==} peerDependencies: '@wordpress/data': ^6.1.5 @@ -1880,29 +1882,26 @@ packages: react-dom: ^17.0.2 dependencies: '@automattic/calypso-url': 1.0.0 - '@automattic/data-stores': 3.0.1_b39bf2883bf3bea497f92f89df0012e9 + '@automattic/data-stores': 3.0.1_428387ef6f7029a4af8aedaaaf9646a5 '@automattic/typography': 1.0.0 '@wordpress/base-styles': 4.5.0 - '@wordpress/data': 6.10.0_react@17.0.2 + '@wordpress/data': 6.4.1 classnames: 2.3.1 gridicons: 3.4.0_react@17.0.2 i18n-calypso: 6.0.1_00d6772dea80510e818fd171caaa025a lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-modal: 3.15.1_react-dom@16.14.0+react@17.0.2 + react-modal: 3.15.1_react@17.0.2 utility-types: 3.10.0 wpcom-proxy-request: 6.0.0 transitivePeerDependencies: - '@types/react' - - bufferutil - react-native - supports-color - - utf-8-validate dev: false - /@automattic/data-stores/2.0.1_3e680851ac4c44045923121481015704: + /@automattic/data-stores/2.0.1_@wordpress+data@6.4.1: resolution: {integrity: sha512-tUuWSb5iIzZpHpqCSeXw89+lX6Gpkz/Puh+FWrMyWe4ohgK/WrrAnMqEsA5O/UpEzHNtkuqVmo8haCJKL27mwg==} peerDependencies: '@wordpress/data': ^4 @@ -1910,14 +1909,13 @@ packages: dependencies: '@automattic/format-currency': 1.0.0-alpha.0 '@wordpress/api-fetch': 3.23.1 - '@wordpress/data': 6.4.1_react@17.0.2 - '@wordpress/data-controls': 1.21.3_react@17.0.2 + '@wordpress/data': 6.4.1 + '@wordpress/data-controls': 1.21.3 '@wordpress/deprecated': 2.12.3 '@wordpress/url': 2.22.2 fast-json-stable-stringify: 2.1.0 - i18n-calypso: 5.0.0_react@17.0.2 + i18n-calypso: 5.0.0 qs: 6.10.3 - react: 17.0.2 redux: 4.2.0 tslib: 2.3.1 utility-types: 3.10.0 @@ -1927,32 +1925,7 @@ packages: - supports-color dev: true - /@automattic/data-stores/2.0.1_62cb7b0d86a5989377d25d9c33751f76: - resolution: {integrity: sha512-tUuWSb5iIzZpHpqCSeXw89+lX6Gpkz/Puh+FWrMyWe4ohgK/WrrAnMqEsA5O/UpEzHNtkuqVmo8haCJKL27mwg==} - peerDependencies: - '@wordpress/data': ^4 - react: ^16.8 - dependencies: - '@automattic/format-currency': 1.0.0-alpha.0 - '@wordpress/api-fetch': 3.23.1_react-native@0.69.4 - '@wordpress/data': 6.4.1_react@18.0.0 - '@wordpress/data-controls': 1.21.3_react-native@0.69.4+react@18.0.0 - '@wordpress/deprecated': 2.12.3 - '@wordpress/url': 2.22.2_react-native@0.69.4 - fast-json-stable-stringify: 2.1.0 - i18n-calypso: 5.0.0_react@18.0.0 - qs: 6.10.3 - react: 18.0.0 - redux: 4.2.0 - tslib: 2.3.1 - utility-types: 3.10.0 - validator: 13.7.0 - transitivePeerDependencies: - - react-native - - supports-color - dev: true - - /@automattic/data-stores/3.0.1_b39bf2883bf3bea497f92f89df0012e9: + /@automattic/data-stores/3.0.1_428387ef6f7029a4af8aedaaaf9646a5: resolution: {integrity: sha512-+ZcN8x+gNf4I7nGAjbZy6ubpMPiPleOQIVPbMwkHb32v/zoJ+fL4CGa9YcgiCCjJjaEEKcPZfl5Qbuo7ddGdpA==} peerDependencies: '@wordpress/data': ^6 @@ -1960,9 +1933,9 @@ packages: dependencies: '@automattic/domain-utils': 1.0.0-alpha.0 '@automattic/format-currency': 1.0.1 - '@automattic/happychat-connection': 1.0.0_399d6adf5038a7d104e08b86cf05f3f8 + '@automattic/happychat-connection': 1.0.0_@types+react@17.0.40 '@wordpress/api-fetch': 6.12.0 - '@wordpress/data': 6.10.0_react@17.0.2 + '@wordpress/data': 6.4.1 '@wordpress/data-controls': 2.10.0_react@17.0.2 '@wordpress/deprecated': 3.10.0 '@wordpress/url': 3.16.0 @@ -1977,11 +1950,9 @@ packages: validator: 13.7.0 transitivePeerDependencies: - '@types/react' - - bufferutil - react-dom - react-native - supports-color - - utf-8-validate dev: false /@automattic/domain-utils/1.0.0-alpha.0: @@ -2016,7 +1987,7 @@ packages: tslib: 2.3.1 dev: false - /@automattic/happychat-connection/1.0.0_399d6adf5038a7d104e08b86cf05f3f8: + /@automattic/happychat-connection/1.0.0_@types+react@17.0.40: resolution: {integrity: sha512-l97adFiyKptK+ZmJNgg174njpxepbDTZBaSggZdMbJIVLQv04dt6cxNzcq4Or70NAUx7XfOYtbPS0GfskSMbMg==} dependencies: '@automattic/calypso-config': 1.2.0 @@ -2024,15 +1995,13 @@ packages: debug: 4.3.3 i18n-calypso: 6.0.1_00d6772dea80510e818fd171caaa025a react: 17.0.2 - react-query: 3.39.1_react-dom@16.14.0+react@17.0.2 + react-query: 3.39.1_react@17.0.2 socket.io-client: 2.3.0 transitivePeerDependencies: - '@types/react' - - bufferutil - react-dom - react-native - supports-color - - utf-8-validate dev: false /@automattic/i18n-utils/1.0.1: @@ -2048,6 +2017,16 @@ packages: - supports-color dev: false + /@automattic/interpolate-components/1.2.1: + resolution: {integrity: sha512-YNQtJsrs9KQ3lkBdtLyDheVRijoBA3y/PuHdgJ0eB4AX9JyjkDX7jd79Inh79+01CGNLbMQGrEJby2zvbJr17A==} + peerDependencies: + '@types/react': '>=16.14.23' + react: '>=16.2.0' + peerDependenciesMeta: + '@types/react': + optional: true + dev: false + /@automattic/interpolate-components/1.2.1_00d6772dea80510e818fd171caaa025a: resolution: {integrity: sha512-YNQtJsrs9KQ3lkBdtLyDheVRijoBA3y/PuHdgJ0eB4AX9JyjkDX7jd79Inh79+01CGNLbMQGrEJby2zvbJr17A==} peerDependencies: @@ -2061,25 +2040,13 @@ packages: react: 17.0.2 dev: false - /@automattic/interpolate-components/1.2.1_react@17.0.2: - resolution: {integrity: sha512-YNQtJsrs9KQ3lkBdtLyDheVRijoBA3y/PuHdgJ0eB4AX9JyjkDX7jd79Inh79+01CGNLbMQGrEJby2zvbJr17A==} - peerDependencies: - '@types/react': '>=16.14.23' - react: '>=16.2.0' - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - react: 17.0.2 - dev: false - /@automattic/languages/1.0.0: resolution: {integrity: sha512-froTyDbTmLitHkvY9WLCpFdjUo6moOLkDKw63J2fLiB2gBApy2thkBV+LRx4Z0kIF5iXVkQF4yYOPYkT9Sr13Q==} dependencies: tslib: 2.3.1 dev: false - /@automattic/tour-kit/1.1.1_0d56e69a642919a20c16b00459ee3b72: + /@automattic/tour-kit/1.1.1_0d062da66b58358356486e34422db281: resolution: {integrity: sha512-qC15YGZZW5VUhvl47y9C+aN0q0QIejP9g9pFZ9M3PRRgaZcXx00+ZrL1Ngg0+V9eS5io5OZcji3D8OU6i48t/w==} peerDependencies: '@wordpress/data': ^6.1.5 @@ -2088,13 +2055,13 @@ packages: reakit-utils: ^0.15.1 redux: ^4.1.2 dependencies: - '@automattic/components': 2.0.1_b39bf2883bf3bea497f92f89df0012e9 + '@automattic/components': 2.0.1_428387ef6f7029a4af8aedaaaf9646a5 '@automattic/viewport': 1.1.0 '@automattic/viewport-react': 1.0.0_react@17.0.2 '@popperjs/core': 2.11.4 '@wordpress/base-styles': 4.5.0 - '@wordpress/components': 19.12.0_686eff9ab75237351863ab9743333cca - '@wordpress/data': 6.10.0_react@17.0.2 + '@wordpress/components': 19.12.0_707fe24a3ddaa8115c00d0a9966a19ae + '@wordpress/data': 6.4.1 '@wordpress/dom': 3.10.0 '@wordpress/element': 4.8.0 '@wordpress/i18n': 4.10.0 @@ -2104,17 +2071,12 @@ packages: classnames: 2.3.1 debug: 4.3.4 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 react-popper: 2.2.5_2e9dd80dbd4df675244d857293d4c5b0 - reakit-utils: 0.15.2_react-dom@16.14.0+react@17.0.2 - redux: 4.2.0 transitivePeerDependencies: - '@babel/core' - '@types/react' - - bufferutil - react-native - supports-color - - utf-8-validate dev: false /@automattic/typography/1.0.0: @@ -2153,8 +2115,6 @@ packages: optionalDependencies: '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents chokidar: 3.5.3 - transitivePeerDependencies: - - supports-color dev: true /@babel/cli/7.17.6_@babel+core@7.17.8: @@ -2292,7 +2252,7 @@ packages: transitivePeerDependencies: - supports-color - /@babel/eslint-parser/7.17.0_@babel+core@7.12.9+eslint@8.12.0: + /@babel/eslint-parser/7.17.0_@babel+core@7.12.9: resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: @@ -2300,20 +2260,19 @@ packages: eslint: ^7.5.0 || ^8.0.0 dependencies: '@babel/core': 7.12.9 - eslint: 8.12.0 eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 semver: 6.3.0 dev: true - /@babel/eslint-parser/7.17.0_@babel+core@7.17.8+eslint@7.32.0: + /@babel/eslint-parser/7.17.0_@babel+core@7.12.9+eslint@7.32.0: resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.17.8 + '@babel/core': 7.12.9 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 @@ -3487,6 +3446,7 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.8 + dev: true /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.12.9: resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==} @@ -4189,7 +4149,6 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.16.0: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} @@ -4342,6 +4301,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 + dev: true /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.9: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} @@ -4396,6 +4356,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 + dev: true /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.9: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} @@ -4404,7 +4365,6 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.0: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} @@ -5419,6 +5379,7 @@ packages: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8 + dev: true /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.12.9: resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==} @@ -6198,6 +6159,7 @@ packages: dependencies: '@babel/core': 7.17.8 '@babel/helper-plugin-utils': 7.16.7 + dev: true /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.12.9: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} @@ -6219,24 +6181,6 @@ packages: '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 dev: true - /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.17.8: - resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.18.9 - - /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.17.8: - resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.17.8 - '@babel/helper-plugin-utils': 7.18.9 - /@babel/plugin-transform-react-jsx/7.16.0_@babel+core@7.12.9: resolution: {integrity: sha512-rqDgIbukZ44pqq7NIRPGPGNklshPkvlmvqjdx3OZcGPk4zGIenYkxDTvl3LsSL8gqcc3ZzGmXPE6hR/u/voNOw==} engines: {node: '>=6.9.0'} @@ -7318,6 +7262,7 @@ packages: '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8 + dev: true /@babel/preset-modules/0.1.5_@babel+core@7.12.9: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -7465,6 +7410,7 @@ packages: make-dir: 2.1.0 pirates: 4.0.5 source-map-support: 0.5.20 + dev: true /@babel/runtime-corejs3/7.16.3: resolution: {integrity: sha512-IAdDC7T0+wEB4y2gbIL0uOXEYpiZEeuFUTVbdGq+UwCcF35T/tS8KrmMomEwEc5wBbyfH3PJVpTSUqrhPDXFcQ==} @@ -7631,6 +7577,18 @@ packages: stylis: 4.0.13 dev: false + /@emotion/core/10.3.1: + resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} + peerDependencies: + react: '>=16.3.0' + dependencies: + '@babel/runtime': 7.17.7 + '@emotion/cache': 10.0.29 + '@emotion/css': 10.0.27 + '@emotion/serialize': 0.11.16 + '@emotion/sheet': 0.9.4 + '@emotion/utils': 0.11.3 + /@emotion/core/10.3.1_react@17.0.2: resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} peerDependencies: @@ -7643,6 +7601,7 @@ packages: '@emotion/sheet': 0.9.4 '@emotion/utils': 0.11.3 react: 17.0.2 + dev: true /@emotion/css/10.0.27: resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==} @@ -7688,27 +7647,25 @@ packages: resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==} dev: false - /@emotion/native/10.0.27_73b2b4ca125331e03647a4259a8169e9: + /@emotion/native/10.0.27_@emotion+core@10.3.1: resolution: {integrity: sha512-3qxR2XFizGfABKKbX9kAYc0PHhKuCEuyxshoq3TaMEbi9asWHdQVChg32ULpblm4XAf9oxaitAU7J9SfdwFxtw==} peerDependencies: react-native: '>=0.14.0 <1' dependencies: - '@emotion/primitives-core': 10.0.27_316248eb6686a2fd4fbadcfd00de37f3 - react-native: 0.69.4_24353ddb04343aa31089be039ffbe27f + '@emotion/primitives-core': 10.0.27_@emotion+core@10.3.1 transitivePeerDependencies: - '@emotion/core' - react dev: false - /@emotion/primitives-core/10.0.27_316248eb6686a2fd4fbadcfd00de37f3: + /@emotion/primitives-core/10.0.27_@emotion+core@10.3.1: resolution: {integrity: sha512-fRBEDNPSFFOrBJ0OcheuElayrNTNdLF9DzMxtL0sFgsCFvvadlzwJHhJMSwEJuxwARm9GhVLr1p8G8JGkK98lQ==} peerDependencies: '@emotion/core': ^10.0.27 react: '>=16.3.0' dependencies: - '@emotion/core': 10.3.1_react@17.0.2 + '@emotion/core': 10.3.1 css-to-react-native: 2.3.2 - react: 17.0.2 dev: false /@emotion/react/11.8.2_707fe24a3ddaa8115c00d0a9966a19ae: @@ -7735,7 +7692,7 @@ packages: react: 17.0.2 dev: false - /@emotion/react/11.8.2_@babel+core@7.17.8+react@17.0.2: + /@emotion/react/11.8.2_@babel+core@7.17.8: resolution: {integrity: sha512-+1bcHBaNJv5nkIIgnGKVsie3otS0wF9f1T1hteF3WeVvMNQEtfZ4YyFpnphGoot3ilU/wWMgP2SgIDuHLE/wAA==} peerDependencies: '@babel/core': ^7.0.0 @@ -7755,7 +7712,6 @@ packages: '@emotion/utils': 1.1.0 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 - react: 17.0.2 dev: false /@emotion/serialize/0.11.16: @@ -7796,6 +7752,19 @@ packages: '@emotion/serialize': 0.11.16 '@emotion/utils': 0.11.3 react: 17.0.2 + dev: true + + /@emotion/styled-base/10.3.0_@emotion+core@10.3.1: + resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==} + peerDependencies: + '@emotion/core': ^10.0.28 + react: '>=16.3.0' + dependencies: + '@babel/runtime': 7.17.7 + '@emotion/core': 10.3.1 + '@emotion/is-prop-valid': 0.8.8 + '@emotion/serialize': 0.11.16 + '@emotion/utils': 0.11.3 /@emotion/styled/10.3.0_316248eb6686a2fd4fbadcfd00de37f3: resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} @@ -7807,8 +7776,19 @@ packages: '@emotion/styled-base': 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 babel-plugin-emotion: 10.2.2 react: 17.0.2 + dev: true - /@emotion/styled/11.8.1_58c6d579b5d4620c3e3267b14eb7ebcf: + /@emotion/styled/10.3.0_@emotion+core@10.3.1: + resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} + peerDependencies: + '@emotion/core': ^10.0.27 + react: '>=16.3.0' + dependencies: + '@emotion/core': 10.3.1 + '@emotion/styled-base': 10.3.0_@emotion+core@10.3.1 + babel-plugin-emotion: 10.2.2 + + /@emotion/styled/11.8.1_14926ce31c24bafac75661d38a5c90f5: resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==} peerDependencies: '@babel/core': ^7.0.0 @@ -7825,10 +7805,9 @@ packages: '@babel/runtime': 7.17.7 '@emotion/babel-plugin': 11.7.2_@babel+core@7.17.8 '@emotion/is-prop-valid': 1.1.2 - '@emotion/react': 11.8.2_@babel+core@7.17.8+react@17.0.2 + '@emotion/react': 11.8.2_@babel+core@7.17.8 '@emotion/serialize': 1.0.2 '@emotion/utils': 1.1.0 - react: 17.0.2 dev: false /@emotion/styled/11.8.1_fd44c83c6284aa4d6bde750ada762da8: @@ -7958,6 +7937,7 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color + dev: true /@financial-times/origami-service-makefile/7.0.3: resolution: {integrity: sha512-aKe65sZ3XgZ/0Sm0MDLbGrcO3G4DRv/bVW4Gpmw68cRZV9IBE7h/pwfR3Rs7njNSZMFkjS4rPG/YySv9brQByA==} @@ -7973,7 +7953,7 @@ packages: '@floating-ui/core': 0.6.2 dev: false - /@floating-ui/react-dom/0.6.3_d9a3f2afc99990b2b757e465d25e781f: + /@floating-ui/react-dom/0.6.3_00d6772dea80510e818fd171caaa025a: resolution: {integrity: sha512-hC+pS5D6AgS2wWjbmSQ6UR6Kpy+drvWGJIri6e1EDGADTPsCaa4KzCgmCczHrQeInx9tqs81EyDmbKJYY2swKg==} peerDependencies: react: '>=16.8.0' @@ -7981,7 +7961,6 @@ packages: dependencies: '@floating-ui/dom': 0.4.5 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 use-isomorphic-layout-effect: 1.1.1_00d6772dea80510e818fd171caaa025a transitivePeerDependencies: - '@types/react' @@ -8005,6 +7984,7 @@ packages: /@hapi/hoek/9.3.0: resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + dev: true /@hapi/joi/15.1.1: resolution: {integrity: sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==} @@ -8025,6 +8005,7 @@ packages: resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} dependencies: '@hapi/hoek': 9.3.0 + dev: true /@humanwhocodes/config-array/0.5.0: resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} @@ -8057,9 +8038,11 @@ packages: minimatch: 3.1.2 transitivePeerDependencies: - supports-color + dev: true /@humanwhocodes/object-schema/1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true /@isaacs/string-locale-compare/1.1.0: resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} @@ -8170,9 +8153,7 @@ packages: slash: 2.0.0 strip-ansi: 5.2.0 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: false /@jest/core/25.5.4: @@ -8342,12 +8323,6 @@ packages: - ts-node - utf-8-validate - /@jest/create-cache-key-function/27.5.1: - resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@jest/types': 27.5.1 - /@jest/environment/24.9.0: resolution: {integrity: sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==} engines: {node: '>= 6'} @@ -8403,8 +8378,6 @@ packages: '@jest/types': 24.9.0 jest-message-util: 24.9.0 jest-mock: 24.9.0 - transitivePeerDependencies: - - supports-color dev: false /@jest/fake-timers/25.5.0: @@ -8510,9 +8483,7 @@ packages: source-map: 0.6.1 string-length: 2.0.0 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: false /@jest/reporters/25.5.1: @@ -8756,9 +8727,7 @@ packages: jest-runner: 24.9.0 jest-runtime: 24.9.0 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: false /@jest/test-sequencer/25.5.4: @@ -9002,6 +8971,17 @@ packages: /@kwsites/promise-deferred/1.1.1: resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==} + /@mdx-js/loader/1.6.22: + resolution: {integrity: sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==} + dependencies: + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22 + loader-utils: 2.0.0 + transitivePeerDependencies: + - react + - supports-color + dev: true + /@mdx-js/loader/1.6.22_react@17.0.2: resolution: {integrity: sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==} dependencies: @@ -9039,6 +9019,12 @@ packages: - supports-color dev: true + /@mdx-js/react/1.6.22: + resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} + peerDependencies: + react: ^16.13.1 || ^17.0.0 + dev: true + /@mdx-js/react/1.6.22_react@17.0.2: resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} peerDependencies: @@ -9074,8 +9060,6 @@ packages: path-is-absolute: 1.0.1 readdirp: 2.2.1 upath: 1.2.0 - transitivePeerDependencies: - - supports-color dev: true optional: true @@ -9145,7 +9129,6 @@ packages: treeverse: 1.0.4 walk-up-path: 1.0.0 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -9167,8 +9150,6 @@ packages: promise-retry: 2.0.1 semver: 7.3.5 which: 2.0.2 - transitivePeerDependencies: - - bluebird dev: true /@npmcli/installed-package-contents/1.0.7: @@ -9199,7 +9180,6 @@ packages: pacote: 12.0.3 semver: 7.3.5 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -9239,7 +9219,6 @@ packages: node-gyp: 8.4.1 read-package-json-fast: 2.0.3 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -9499,197 +9478,6 @@ packages: /@popperjs/core/2.11.4: resolution: {integrity: sha512-q/ytXxO5NKvyT37pmisQAItCFqA7FD/vNb8dgaJy3/630Fsc+Mz9/9f2SziBoIZ30TJooXyTwZmhi1zjXmObYg==} - /@react-native-community/cli-clean/8.0.4: - resolution: {integrity: sha512-IwS1M1NHg6+qL8PThZYMSIMYbZ6Zbx+lIck9PLBskbosFo24M3lCOflOl++Bggjakp6mR+sRXxLMexid/GeOsQ==} - dependencies: - '@react-native-community/cli-tools': 8.0.4 - chalk: 4.1.2 - execa: 1.0.0 - prompts: 2.4.2 - transitivePeerDependencies: - - encoding - - /@react-native-community/cli-config/8.0.6: - resolution: {integrity: sha512-mjVpVvdh8AviiO8xtqeX+BkjqE//NMDnISwsLWSJUfNCwTAPmdR8PGbhgP5O4hWHyJ3WkepTopl0ya7Tfi3ifw==} - dependencies: - '@react-native-community/cli-tools': 8.0.4 - cosmiconfig: 5.2.1 - deepmerge: 3.3.0 - glob: 7.2.0 - joi: 17.6.0 - transitivePeerDependencies: - - encoding - - /@react-native-community/cli-debugger-ui/8.0.0: - resolution: {integrity: sha512-u2jq06GZwZ9sRERzd9FIgpW6yv4YOW4zz7Ym/B8eSzviLmy3yI/8mxJtvlGW+J8lBsfMcQoqJpqI6Rl1nZy9yQ==} - dependencies: - serve-static: 1.14.1 - transitivePeerDependencies: - - supports-color - - /@react-native-community/cli-doctor/8.0.6: - resolution: {integrity: sha512-ZQqyT9mJMVeFEVIwj8rbDYGCA2xXjJfsQjWk2iTRZ1CFHfhPSUuUiG8r6mJmTinAP9t+wYcbbIYzNgdSUKnDMw==} - dependencies: - '@react-native-community/cli-config': 8.0.6 - '@react-native-community/cli-platform-ios': 8.0.6 - '@react-native-community/cli-tools': 8.0.4 - chalk: 4.1.2 - command-exists: 1.2.9 - envinfo: 7.8.1 - execa: 1.0.0 - hermes-profile-transformer: 0.0.6 - ip: 1.1.5 - node-stream-zip: 1.15.0 - ora: 5.4.1 - prompts: 2.4.2 - semver: 6.3.0 - strip-ansi: 5.2.0 - sudo-prompt: 9.2.1 - wcwidth: 1.0.1 - transitivePeerDependencies: - - encoding - - /@react-native-community/cli-hermes/8.0.5: - resolution: {integrity: sha512-Zm0wM6SfgYAEX1kfJ1QBvTayabvh79GzmjHyuSnEROVNPbl4PeCG4WFbwy489tGwOP9Qx9fMT5tRIFCD8bp6/g==} - dependencies: - '@react-native-community/cli-platform-android': 8.0.5 - '@react-native-community/cli-tools': 8.0.4 - chalk: 4.1.2 - hermes-profile-transformer: 0.0.6 - ip: 1.1.5 - transitivePeerDependencies: - - encoding - - /@react-native-community/cli-platform-android/8.0.5: - resolution: {integrity: sha512-z1YNE4T1lG5o9acoQR1GBvf7mq6Tzayqo/za5sHVSOJAC9SZOuVN/gg/nkBa9a8n5U7qOMFXfwhTMNqA474gXA==} - dependencies: - '@react-native-community/cli-tools': 8.0.4 - chalk: 4.1.2 - execa: 1.0.0 - fs-extra: 8.1.0 - glob: 7.2.0 - jetifier: 1.6.8 - lodash: 4.17.21 - logkitty: 0.7.1 - slash: 3.0.0 - transitivePeerDependencies: - - encoding - - /@react-native-community/cli-platform-ios/8.0.6: - resolution: {integrity: sha512-CMR6mu/LVx6JVfQRDL9uULsMirJT633bODn+IrYmrwSz250pnhON16We8eLPzxOZHyDjm7JPuSgHG3a/BPiRuQ==} - dependencies: - '@react-native-community/cli-tools': 8.0.4 - chalk: 4.1.2 - execa: 1.0.0 - glob: 7.2.0 - js-yaml: 3.14.1 - lodash: 4.17.21 - ora: 5.4.1 - plist: 3.0.6 - transitivePeerDependencies: - - encoding - - /@react-native-community/cli-plugin-metro/8.0.4: - resolution: {integrity: sha512-UWzY1eMcEr/6262R2+d0Is5M3L/7Y/xXSDIFMoc5Rv5Wucl3hJM/TxHXmByvHpuJf6fJAfqOskyt4bZCvbI+wQ==} - dependencies: - '@react-native-community/cli-server-api': 8.0.4 - '@react-native-community/cli-tools': 8.0.4 - chalk: 4.1.2 - metro: 0.70.3 - metro-config: 0.70.3 - metro-core: 0.70.3 - metro-react-native-babel-transformer: 0.70.3 - metro-resolver: 0.70.3 - metro-runtime: 0.70.3 - readline: 1.3.0 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - - /@react-native-community/cli-server-api/8.0.4: - resolution: {integrity: sha512-Orr14njx1E70CVrUA8bFdl+mrnbuXUjf1Rhhm0RxUadFpvkHuOi5dh8Bryj2MKtf8eZrpEwZ7tuQPhJEULW16A==} - dependencies: - '@react-native-community/cli-debugger-ui': 8.0.0 - '@react-native-community/cli-tools': 8.0.4 - compression: 1.7.4 - connect: 3.7.0 - errorhandler: 1.5.1 - nocache: 3.0.4 - pretty-format: 26.6.2 - serve-static: 1.14.1 - ws: 7.5.5 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - - /@react-native-community/cli-tools/8.0.4: - resolution: {integrity: sha512-ePN9lGxh6LRFiotyddEkSmuqpQhnq2iw9oiXYr4EFWpIEy0yCigTuSTiDF68+c8M9B+7bTwkRpz/rMPC4ViO5Q==} - dependencies: - appdirsjs: 1.2.7 - chalk: 4.1.2 - find-up: 5.0.0 - lodash: 4.17.21 - mime: 2.5.2 - node-fetch: 2.6.7 - open: 6.4.0 - ora: 5.4.1 - semver: 6.3.0 - shell-quote: 1.7.3 - transitivePeerDependencies: - - encoding - - /@react-native-community/cli-types/8.0.0: - resolution: {integrity: sha512-1lZS1PEvMlFaN3Se1ksyoFWzMjk+YfKi490GgsqKJln9gvFm8tqVPdnXttI5Uf2DQf3BMse8Bk8dNH4oV6Ewow==} - dependencies: - joi: 17.6.0 - - /@react-native-community/cli/8.0.6_react-native@0.69.4: - resolution: {integrity: sha512-E36hU/if3quQCfJHGWVkpsCnwtByRCwORuAX0r6yr1ebKktpKeEO49zY9PAu/Z1gfyxCtgluXY0HfRxjKRFXTg==} - engines: {node: '>=12'} - hasBin: true - peerDependencies: - react-native: '*' - dependencies: - '@react-native-community/cli-clean': 8.0.4 - '@react-native-community/cli-config': 8.0.6 - '@react-native-community/cli-debugger-ui': 8.0.0 - '@react-native-community/cli-doctor': 8.0.6 - '@react-native-community/cli-hermes': 8.0.5 - '@react-native-community/cli-plugin-metro': 8.0.4 - '@react-native-community/cli-server-api': 8.0.4 - '@react-native-community/cli-tools': 8.0.4 - '@react-native-community/cli-types': 8.0.0 - chalk: 4.1.2 - commander: 2.20.3 - execa: 1.0.0 - find-up: 4.1.0 - fs-extra: 8.1.0 - graceful-fs: 4.2.9 - leven: 3.1.0 - lodash: 4.17.21 - minimist: 1.2.5 - prompts: 2.4.2 - react-native: 0.69.4_24353ddb04343aa31089be039ffbe27f - semver: 6.3.0 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - - /@react-native/assets/1.0.0: - resolution: {integrity: sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==} - - /@react-native/normalize-color/2.0.0: - resolution: {integrity: sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==} - - /@react-native/polyfills/2.0.0: - resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==} - /@react-spring/animated/9.4.4_react@17.0.2: resolution: {integrity: sha512-e9xnuBaUTD+NolKikUmrGWjX8AVCPyj1GcEgjgq9E+0sXKv46UY7cm2EmB6mUDTxWIDVKebARY++xT4nGDraBQ==} peerDependencies: @@ -9754,12 +9542,15 @@ packages: resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==} dependencies: '@hapi/hoek': 9.3.0 + dev: true /@sideway/formula/3.0.0: resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==} + dev: true /@sideway/pinpoint/2.0.0: resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + dev: true /@sindresorhus/is/2.1.1: resolution: {integrity: sha512-/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg==} @@ -9847,7 +9638,7 @@ packages: - debug dev: false - /@storybook/addon-a11y/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/addon-a11y/6.4.19: resolution: {integrity: sha512-dG6easap6W4AqyggVZPq8lBrhza8StA8J4eYz/GVdoXINSGtq/casV0rkmY3+SUXhPYux5oGavHo86j5I4Q/0Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -9858,20 +9649,18 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/components': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/theming': 6.4.19 axe-core: 4.3.5 core-js: 3.21.1 global: 4.4.0 lodash: 4.17.21 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 react-sizeme: 3.0.2 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 @@ -9880,7 +9669,7 @@ packages: - '@types/react' dev: true - /@storybook/addon-actions/6.4.19_d9a3f2afc99990b2b757e465d25e781f: + /@storybook/addon-actions/6.4.19: resolution: {integrity: sha512-GpSvP8xV8GfNkmtGJjfCgaOx6mbjtyTK0aT9FqX9pU0s+KVMmoCTrBh43b7dWrwxxas01yleBK9VpYggzhi/Fw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -9891,21 +9680,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/components': 6.4.19_d9a3f2afc99990b2b757e465d25e781f + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 + '@storybook/components': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/theming': 6.4.19 core-js: 3.21.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 polished: 4.1.4 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-inspector: 5.1.1_react@17.0.2 + react-inspector: 5.1.1 regenerator-runtime: 0.13.9 telejson: 5.3.3 ts-dedent: 2.2.0 @@ -9915,7 +9702,7 @@ packages: - '@types/react' dev: true - /@storybook/addon-actions/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/addon-actions/6.4.19_00d6772dea80510e818fd171caaa025a: resolution: {integrity: sha512-GpSvP8xV8GfNkmtGJjfCgaOx6mbjtyTK0aT9FqX9pU0s+KVMmoCTrBh43b7dWrwxxas01yleBK9VpYggzhi/Fw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -9926,12 +9713,12 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/api': 6.4.19_react@17.0.2 + '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 core-js: 3.21.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -9939,7 +9726,6 @@ packages: polished: 4.1.4 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 react-inspector: 5.1.1_react@17.0.2 regenerator-runtime: 0.13.9 telejson: 5.3.3 @@ -9955,11 +9741,11 @@ packages: peerDependencies: '@storybook/addon-actions': '*' dependencies: - '@storybook/addon-actions': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addon-actions': 6.4.19 global: 4.4.0 dev: true - /@storybook/addon-controls/6.4.19_51b20fca480c999985ff71b851b3c282: + /@storybook/addon-controls/6.4.19_8469d84421212093500428258085ef2e: resolution: {integrity: sha512-JHi5z9i6NsgQLfG5WOeQE1AyOrM+QJLrjT+uOYx40bq+OC1yWHH7qHiphPP8kjJJhCZlaQk1qqXYkkQXgaeHSw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -9970,19 +9756,18 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/api': 6.4.19_react@17.0.2 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core-common': 6.4.19_51b20fca480c999985ff71b851b3c282 + '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 core-js: 3.21.1 lodash: 4.17.21 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -9994,7 +9779,7 @@ packages: - webpack-command dev: true - /@storybook/addon-controls/6.4.19_b0cda1f11447377860c5e079f8ead547: + /@storybook/addon-controls/6.4.19_typescript@4.2.4: resolution: {integrity: sha512-JHi5z9i6NsgQLfG5WOeQE1AyOrM+QJLrjT+uOYx40bq+OC1yWHH7qHiphPP8kjJJhCZlaQk1qqXYkkQXgaeHSw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10005,19 +9790,17 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_d9a3f2afc99990b2b757e465d25e781f - '@storybook/core-common': 6.4.19_33252a1a689dab027a042d04efb3e91c + '@storybook/components': 6.4.19 + '@storybook/core-common': 6.4.19_typescript@4.2.4 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/store': 6.4.19 + '@storybook/theming': 6.4.19 core-js: 3.21.1 lodash: 4.17.21 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -10029,7 +9812,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.4.19_04ae9179cdf4383e1efb600f1ff5fb00: + /@storybook/addon-docs/6.4.19_0e171cb44cbc3183f7a2f6791a9a5c37: resolution: {integrity: sha512-OEPyx/5ZXmZOPqIAWoPjlIP8Q/YfNjAmBosA8tmA8t5KCSiq/vpLcAvQhxqK6n0wk/B8Xp67Z8RpLfXjU8R3tw==} peerDependencies: '@storybook/angular': 6.4.19 @@ -10085,22 +9868,22 @@ packages: '@mdx-js/loader': 1.6.22_react@17.0.2 '@mdx-js/mdx': 1.6.22 '@mdx-js/react': 1.6.22_react@17.0.2 - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/builder-webpack4': 6.4.19_51b20fca480c999985ff71b851b3c282 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/api': 6.4.19_react@17.0.2 + '@storybook/builder-webpack4': 6.4.19_637ed751c9d518505c2a54210742b0dc '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core': 6.4.19_b56f7b70adce873acdcbbeb82c34779f + '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/core': 6.4.19_8524ae9d1d4e3afeee7c4e2470ee45fc '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 '@storybook/node-logger': 6.4.19 '@storybook/postinstall': 6.4.19 - '@storybook/preview-web': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/react': 6.4.19_e0aa14d07c25f72541ac45bc1b107967 - '@storybook/source-loader': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/preview-web': 6.4.19_react@17.0.2 + '@storybook/react': 6.4.19_ac71394bf7b79921297ea028da6e50ca + '@storybook/source-loader': 6.4.19_react@17.0.2 + '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 acorn: 7.4.1 acorn-jsx: 5.3.2_acorn@7.4.1 acorn-walk: 7.2.0 @@ -10118,121 +9901,7 @@ packages: prettier: 2.3.0 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-element-to-jsx-string: 14.3.4_react-dom@17.0.2+react@17.0.2 - regenerator-runtime: 0.13.9 - remark-external-links: 8.0.0 - remark-slug: 6.1.0 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - webpack: 5.70.0 - transitivePeerDependencies: - - '@storybook/builder-webpack5' - - '@storybook/manager-webpack5' - - '@types/react' - - bluebird - - bufferutil - - encoding - - eslint - - supports-color - - typescript - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/addon-docs/6.4.19_a5163d881eff5d56a3304b3af074f65b: - resolution: {integrity: sha512-OEPyx/5ZXmZOPqIAWoPjlIP8Q/YfNjAmBosA8tmA8t5KCSiq/vpLcAvQhxqK6n0wk/B8Xp67Z8RpLfXjU8R3tw==} - peerDependencies: - '@storybook/angular': 6.4.19 - '@storybook/html': 6.4.19 - '@storybook/react': 6.4.19 - '@storybook/vue': 6.4.19 - '@storybook/vue3': 6.4.19 - '@storybook/web-components': 6.4.19 - lit: ^2.0.0 - lit-html: ^1.4.1 || ^2.0.0 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - svelte: ^3.31.2 - sveltedoc-parser: ^4.1.0 - vue: ^2.6.10 || ^3.0.0 - webpack: '*' - peerDependenciesMeta: - '@storybook/angular': - optional: true - '@storybook/html': - optional: true - '@storybook/react': - optional: true - '@storybook/vue': - optional: true - '@storybook/vue3': - optional: true - '@storybook/web-components': - optional: true - lit: - optional: true - lit-html: - optional: true - react: - optional: true - react-dom: - optional: true - svelte: - optional: true - sveltedoc-parser: - optional: true - vue: - optional: true - webpack: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/generator': 7.17.7 - '@babel/parser': 7.17.8 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 - '@babel/preset-env': 7.16.11_@babel+core@7.17.8 - '@jest/transform': 26.6.2 - '@mdx-js/loader': 1.6.22_react@17.0.2 - '@mdx-js/mdx': 1.6.22 - '@mdx-js/react': 1.6.22_react@17.0.2 - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/builder-webpack4': 6.4.19_b0cda1f11447377860c5e079f8ead547 - '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_d9a3f2afc99990b2b757e465d25e781f - '@storybook/core': 6.4.19_5581e842796dfb6119ae231c9e969ad7 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/csf-tools': 6.4.19 - '@storybook/node-logger': 6.4.19 - '@storybook/postinstall': 6.4.19 - '@storybook/preview-web': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/react': 6.4.19_d2f048c98daab869c00fca4878e089e9 - '@storybook/source-loader': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 - acorn: 7.4.1 - acorn-jsx: 5.3.2_acorn@7.4.1 - acorn-walk: 7.2.0 - core-js: 3.21.1 - doctrine: 3.0.0 - escodegen: 2.0.0 - fast-deep-equal: 3.1.3 - global: 4.4.0 - html-tags: 3.1.0 - js-string-escape: 1.0.1 - loader-utils: 2.0.2 - lodash: 4.17.21 - nanoid: 3.1.30 - p-limit: 3.1.0 - prettier: 2.3.0 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-element-to-jsx-string: 14.3.4_react-dom@16.14.0+react@17.0.2 + react-element-to-jsx-string: 14.3.4_react@17.0.2 regenerator-runtime: 0.13.9 remark-external-links: 8.0.0 remark-slug: 6.1.0 @@ -10243,7 +9912,6 @@ packages: - '@storybook/builder-webpack5' - '@storybook/manager-webpack5' - '@types/react' - - bluebird - bufferutil - encoding - eslint @@ -10255,7 +9923,117 @@ packages: - webpack-command dev: true - /@storybook/addon-knobs/6.4.0_6d3fd42cc2dc28673127a5aba3ab9a43: + /@storybook/addon-docs/6.4.19_a84ef1f946d21a14f1015f55f0de5456: + resolution: {integrity: sha512-OEPyx/5ZXmZOPqIAWoPjlIP8Q/YfNjAmBosA8tmA8t5KCSiq/vpLcAvQhxqK6n0wk/B8Xp67Z8RpLfXjU8R3tw==} + peerDependencies: + '@storybook/angular': 6.4.19 + '@storybook/html': 6.4.19 + '@storybook/react': 6.4.19 + '@storybook/vue': 6.4.19 + '@storybook/vue3': 6.4.19 + '@storybook/web-components': 6.4.19 + lit: ^2.0.0 + lit-html: ^1.4.1 || ^2.0.0 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + svelte: ^3.31.2 + sveltedoc-parser: ^4.1.0 + vue: ^2.6.10 || ^3.0.0 + webpack: '*' + peerDependenciesMeta: + '@storybook/angular': + optional: true + '@storybook/html': + optional: true + '@storybook/react': + optional: true + '@storybook/vue': + optional: true + '@storybook/vue3': + optional: true + '@storybook/web-components': + optional: true + lit: + optional: true + lit-html: + optional: true + react: + optional: true + react-dom: + optional: true + svelte: + optional: true + sveltedoc-parser: + optional: true + vue: + optional: true + webpack: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/generator': 7.17.7 + '@babel/parser': 7.17.8 + '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 + '@babel/preset-env': 7.16.11_@babel+core@7.17.8 + '@jest/transform': 26.6.2 + '@mdx-js/loader': 1.6.22 + '@mdx-js/mdx': 1.6.22 + '@mdx-js/react': 1.6.22 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 + '@storybook/builder-webpack4': 6.4.19_acorn@7.4.1+typescript@4.2.4 + '@storybook/client-logger': 6.4.19 + '@storybook/components': 6.4.19 + '@storybook/core': 6.4.19_daa74e9ea57648d1383d4f5a915eef9c + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/csf-tools': 6.4.19 + '@storybook/node-logger': 6.4.19 + '@storybook/postinstall': 6.4.19 + '@storybook/preview-web': 6.4.19 + '@storybook/react': 6.4.19_1a3cbc393c8e54a301ca95e65ea44c36 + '@storybook/source-loader': 6.4.19 + '@storybook/store': 6.4.19 + '@storybook/theming': 6.4.19 + acorn: 7.4.1 + acorn-jsx: 5.3.2_acorn@7.4.1 + acorn-walk: 7.2.0 + core-js: 3.21.1 + doctrine: 3.0.0 + escodegen: 2.0.0 + fast-deep-equal: 3.1.3 + global: 4.4.0 + html-tags: 3.1.0 + js-string-escape: 1.0.1 + loader-utils: 2.0.2 + lodash: 4.17.21 + nanoid: 3.1.30 + p-limit: 3.1.0 + prettier: 2.3.0 + prop-types: 15.8.1 + react-element-to-jsx-string: 14.3.4 + regenerator-runtime: 0.13.9 + remark-external-links: 8.0.0 + remark-slug: 6.1.0 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + webpack: 5.70.0 + transitivePeerDependencies: + - '@storybook/builder-webpack5' + - '@storybook/manager-webpack5' + - '@types/react' + - bufferutil + - encoding + - eslint + - supports-color + - typescript + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/addon-knobs/6.4.0_80fa647588bad5a9aae035b5831b7e40: resolution: {integrity: sha512-DiH1/5e2AFHoHrncl1qLu18ZHPHzRMMPvOLFz8AWvvmc+VCqTdIaE+tdxKr3e8rYylKllibgvDOzrLjfTNjF+Q==} deprecated: deprecating @storybook/addon-knobs in favor of @storybook/addon-controls peerDependencies: @@ -10272,11 +10050,11 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/api': 6.4.19_react@17.0.2 + '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a '@storybook/core-events': 6.4.19 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 copy-to-clipboard: 3.3.1 core-js: 3.21.1 escape-html: 1.0.3 @@ -10286,13 +10064,12 @@ packages: prop-types: 15.8.1 qs: 6.10.3 react: 17.0.2 - react-colorful: 5.5.1_react-dom@17.0.2+react@17.0.2 - react-dom: 17.0.2_react@17.0.2 + react-colorful: 5.5.1_react@17.0.2 react-lifecycles-compat: 3.0.4 - react-select: 3.2.0_react-dom@17.0.2+react@17.0.2 + react-select: 3.2.0_react@17.0.2 dev: true - /@storybook/addon-knobs/6.4.0_6f7a3a19e380d59f672b35d4e61dd5e3: + /@storybook/addon-knobs/6.4.0_bdb88cf577f190583d60d23c102288af: resolution: {integrity: sha512-DiH1/5e2AFHoHrncl1qLu18ZHPHzRMMPvOLFz8AWvvmc+VCqTdIaE+tdxKr3e8rYylKllibgvDOzrLjfTNjF+Q==} deprecated: deprecating @storybook/addon-knobs in favor of @storybook/addon-controls peerDependencies: @@ -10309,11 +10086,11 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/components': 6.4.19_d9a3f2afc99990b2b757e465d25e781f + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 + '@storybook/components': 6.4.19 '@storybook/core-events': 6.4.19 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/theming': 6.4.19 copy-to-clipboard: 3.3.1 core-js: 3.21.1 escape-html: 1.0.3 @@ -10322,14 +10099,12 @@ packages: lodash: 4.17.21 prop-types: 15.8.1 qs: 6.10.3 - react: 17.0.2 - react-colorful: 5.5.1_react-dom@16.14.0+react@17.0.2 - react-dom: 16.14.0_react@17.0.2 + react-colorful: 5.5.1 react-lifecycles-compat: 3.0.4 - react-select: 3.2.0_react-dom@16.14.0+react@17.0.2 + react-select: 3.2.0 dev: true - /@storybook/addon-links/6.4.19_react-dom@16.14.0+react@17.0.2: + /@storybook/addon-links/6.4.19: resolution: {integrity: sha512-ebFHYlGDQkHSmI5QEJb1NxGNToVOLgjKkxXUe+JXX7AfHvrWiXVrN/57aOtBPZzj4h2jRPRTZgwR5glhPIlfEQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10340,23 +10115,21 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/addons': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/router': 6.4.19 '@types/qs': 6.9.7 core-js: 3.21.1 global: 4.4.0 prop-types: 15.8.1 qs: 6.10.3 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 dev: true - /@storybook/addon-links/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/addon-links/6.4.19_react@17.0.2: resolution: {integrity: sha512-ebFHYlGDQkHSmI5QEJb1NxGNToVOLgjKkxXUe+JXX7AfHvrWiXVrN/57aOtBPZzj4h2jRPRTZgwR5glhPIlfEQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10367,23 +10140,22 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/router': 6.4.19_react@17.0.2 '@types/qs': 6.9.7 core-js: 3.21.1 global: 4.4.0 prop-types: 15.8.1 qs: 6.10.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 dev: true - /@storybook/addon-storysource/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/addon-storysource/6.4.19: resolution: {integrity: sha512-WcjPgd0/m9rGMQbf6H2/wvXUhW5lSELWdXeCCK1taQHQUjhs8tq83fa7OkI9kE25drPiUJuPzObbCoYr94hftQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10394,27 +10166,25 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/router': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/source-loader': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/components': 6.4.19 + '@storybook/router': 6.4.19 + '@storybook/source-loader': 6.4.19 + '@storybook/theming': 6.4.19 core-js: 3.21.1 estraverse: 5.3.0 loader-utils: 2.0.2 prettier: 2.3.0 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-syntax-highlighter: 13.5.3_react@17.0.2 + react-syntax-highlighter: 13.5.3 regenerator-runtime: 0.13.9 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addon-viewport/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/addon-viewport/6.4.19: resolution: {integrity: sha512-T1hdImxbLj8suQSTbp6HSA1LLHOlqaNK5jjnqzEOoAxY0O8LNPXMJ2jKIeT2fPQ0v+tWGU3tbwf+3xFq0parVQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10425,66 +10195,61 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/components': 6.4.19 '@storybook/core-events': 6.4.19 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/theming': 6.4.19 core-js: 3.21.1 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 transitivePeerDependencies: - '@types/react' dev: true - /@storybook/addons/6.4.19_react-dom@16.14.0+react@17.0.2: + /@storybook/addons/6.4.19: resolution: {integrity: sha512-QNyRYhpqmHV8oJxxTBdkRlLSbDFhpBvfvMfIrIT1UXb/eemdBZTaCGVvXZ9UixoEEI7f8VwAQ44IvkU5B1509w==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/api': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/api': 6.4.19 '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/router': 6.4.19 + '@storybook/theming': 6.4.19 '@types/webpack-env': 1.16.3 core-js: 3.21.1 global: 4.4.0 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 regenerator-runtime: 0.13.9 dev: true - /@storybook/addons/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/addons/6.4.19_react@17.0.2: resolution: {integrity: sha512-QNyRYhpqmHV8oJxxTBdkRlLSbDFhpBvfvMfIrIT1UXb/eemdBZTaCGVvXZ9UixoEEI7f8VwAQ44IvkU5B1509w==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/api': 6.4.19_react@17.0.2 '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/router': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 '@types/webpack-env': 1.16.3 core-js: 3.21.1 global: 4.4.0 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 dev: true - /@storybook/api/6.4.19_react-dom@16.14.0+react@17.0.2: + /@storybook/api/6.4.19: resolution: {integrity: sha512-aDvea+NpQCBjpNp9YidO1Pr7fzzCp15FSdkG+2ihGQfv5raxrN+IIJnGUXecpe71nvlYiB+29UXBVK7AL0j51Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10494,16 +10259,14 @@ packages: '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/router': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/theming': 6.4.19 core-js: 3.21.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 regenerator-runtime: 0.13.9 store2: 2.13.2 telejson: 5.3.3 @@ -10511,7 +10274,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/api/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/api/6.4.19_react@17.0.2: resolution: {integrity: sha512-aDvea+NpQCBjpNp9YidO1Pr7fzzCp15FSdkG+2ihGQfv5raxrN+IIJnGUXecpe71nvlYiB+29UXBVK7AL0j51Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10521,16 +10284,15 @@ packages: '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/router': 6.4.19_react@17.0.2 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 core-js: 3.21.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 store2: 2.13.2 telejson: 5.3.3 @@ -10538,7 +10300,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.4.19_51b20fca480c999985ff71b851b3c282: + /@storybook/builder-webpack4/6.4.19_637ed751c9d518505c2a54210742b0dc: resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10569,22 +10331,22 @@ packages: '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/api': 6.4.19_react@17.0.2 '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/client-api': 6.4.19_react@17.0.2 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core-common': 6.4.19_51b20fca480c999985ff71b851b3c282 + '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/router': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/preview-web': 6.4.19_react@17.0.2 + '@storybook/router': 6.4.19_react@17.0.2 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a '@types/node': 14.14.33 '@types/webpack': 4.41.32 autoprefixer: 9.8.6 @@ -10596,7 +10358,369 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_91527b0320285d4f50438f5cbee746f7 + fork-ts-checker-webpack-plugin: 4.1.6 + glob: 7.2.0 + glob-promise: 3.4.0_glob@7.2.0 + global: 4.4.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + pnp-webpack-plugin: 1.6.4_typescript@4.6.2 + postcss: 7.0.39 + postcss-flexbugs-fixes: 4.2.1 + postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 + raw-loader: 4.0.2_webpack@4.46.0 + react: 17.0.2 + stable: 0.1.8 + style-loader: 1.3.0_webpack@4.46.0 + terser-webpack-plugin: 4.2.3_acorn@7.4.1+webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.6.2 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 + webpack-hot-middleware: 2.25.1 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/builder-webpack4/6.4.19_8469d84421212093500428258085ef2e: + resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-env': 7.16.11_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/api': 6.4.19_react@17.0.2 + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channels': 6.4.19 + '@storybook/client-api': 6.4.19_react@17.0.2 + '@storybook/client-logger': 6.4.19 + '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a + '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/core-events': 6.4.19 + '@storybook/node-logger': 6.4.19 + '@storybook/preview-web': 6.4.19_react@17.0.2 + '@storybook/router': 6.4.19_react@17.0.2 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + autoprefixer: 9.8.6 + babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-plugin-macros: 2.8.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + file-loader: 6.2.0_webpack@4.46.0 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 4.1.6 + glob: 7.2.0 + glob-promise: 3.4.0_glob@7.2.0 + global: 4.4.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + pnp-webpack-plugin: 1.6.4_typescript@4.6.2 + postcss: 7.0.39 + postcss-flexbugs-fixes: 4.2.1 + postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 + raw-loader: 4.0.2_webpack@4.46.0 + react: 17.0.2 + stable: 0.1.8 + style-loader: 1.3.0_webpack@4.46.0 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.6.2 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 + webpack-hot-middleware: 2.25.1 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/builder-webpack4/6.4.19_acorn@7.4.1+typescript@4.2.4: + resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-env': 7.16.11_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channels': 6.4.19 + '@storybook/client-api': 6.4.19 + '@storybook/client-logger': 6.4.19 + '@storybook/components': 6.4.19 + '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/core-events': 6.4.19 + '@storybook/node-logger': 6.4.19 + '@storybook/preview-web': 6.4.19 + '@storybook/router': 6.4.19 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19 + '@storybook/theming': 6.4.19 + '@storybook/ui': 6.4.19 + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + autoprefixer: 9.8.6 + babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-plugin-macros: 2.8.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + file-loader: 6.2.0_webpack@4.46.0 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 4.1.6 + glob: 7.2.0 + glob-promise: 3.4.0_glob@7.2.0 + global: 4.4.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + pnp-webpack-plugin: 1.6.4_typescript@4.2.4 + postcss: 7.0.39 + postcss-flexbugs-fixes: 4.2.1 + postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 + raw-loader: 4.0.2_webpack@4.46.0 + stable: 0.1.8 + style-loader: 1.3.0_webpack@4.46.0 + terser-webpack-plugin: 4.2.3_acorn@7.4.1+webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.2.4 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 + webpack-hot-middleware: 2.25.1 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/builder-webpack4/6.4.19_ad5fc232a476648e022b673b2e1293fc: + resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-env': 7.16.11_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channels': 6.4.19 + '@storybook/client-api': 6.4.19 + '@storybook/client-logger': 6.4.19 + '@storybook/components': 6.4.19 + '@storybook/core-common': 6.4.19_ad5fc232a476648e022b673b2e1293fc + '@storybook/core-events': 6.4.19 + '@storybook/node-logger': 6.4.19 + '@storybook/preview-web': 6.4.19 + '@storybook/router': 6.4.19 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19 + '@storybook/theming': 6.4.19 + '@storybook/ui': 6.4.19 + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + autoprefixer: 9.8.6 + babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-plugin-macros: 2.8.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + file-loader: 6.2.0_webpack@4.46.0 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 4.1.6 + glob: 7.2.0 + glob-promise: 3.4.0_glob@7.2.0 + global: 4.4.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + pnp-webpack-plugin: 1.6.4_typescript@4.6.2 + postcss: 7.0.39 + postcss-flexbugs-fixes: 4.2.1 + postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 + raw-loader: 4.0.2_webpack@4.46.0 + stable: 0.1.8 + style-loader: 1.3.0_webpack@4.46.0 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.6.2 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 + webpack-hot-middleware: 2.25.1 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/builder-webpack4/6.4.19_typescript@4.2.4: + resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-env': 7.16.11_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channels': 6.4.19 + '@storybook/client-api': 6.4.19 + '@storybook/client-logger': 6.4.19 + '@storybook/components': 6.4.19 + '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/core-events': 6.4.19 + '@storybook/node-logger': 6.4.19 + '@storybook/preview-web': 6.4.19 + '@storybook/router': 6.4.19 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19 + '@storybook/theming': 6.4.19 + '@storybook/ui': 6.4.19 + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + autoprefixer: 9.8.6 + babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-plugin-macros: 2.8.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + file-loader: 6.2.0_webpack@4.46.0 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 4.1.6 glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 @@ -10606,8 +10730,6 @@ packages: postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 raw-loader: 4.0.2_webpack@4.46.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 stable: 0.1.8 style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 @@ -10622,7 +10744,7 @@ packages: webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - '@types/react' - - bluebird + - acorn - eslint - supports-color - vue-template-compiler @@ -10630,191 +10752,7 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack4/6.4.19_a6ca0858167e3d3ddb88aa1df8bce35e: - resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 - '@babel/preset-env': 7.16.11_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core-common': 6.4.19_a6ca0858167e3d3ddb88aa1df8bce35e - '@storybook/core-events': 6.4.19 - '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/router': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@types/node': 14.14.33 - '@types/webpack': 4.41.32 - autoprefixer: 9.8.6 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 - case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.21.1 - css-loader: 3.6.0_webpack@4.46.0 - file-loader: 6.2.0_webpack@4.46.0 - find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_ec34b068c8cf37561abcf5fd5b20a134 - glob: 7.2.0 - glob-promise: 3.4.0_glob@7.2.0 - global: 4.4.0 - html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.6.2 - postcss: 7.0.39 - postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 - raw-loader: 4.0.2_webpack@4.46.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - stable: 0.1.8 - style-loader: 1.3.0_webpack@4.46.0 - terser-webpack-plugin: 4.2.3_webpack@4.46.0 - ts-dedent: 2.2.0 - typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - webpack-dev-middleware: 3.7.3_webpack@4.46.0 - webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 - webpack-hot-middleware: 2.25.1 - webpack-virtual-modules: 0.2.2 - transitivePeerDependencies: - - '@types/react' - - bluebird - - eslint - - supports-color - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/builder-webpack4/6.4.19_b0cda1f11447377860c5e079f8ead547: - resolution: {integrity: sha512-wxA6SMH11duc9D53aeVVBwrVRemFIoxHp/dOugkkg6ZZFAb4ZmWzf/ENc3vQIZdZpfNRi7IZIZEOfoHc994cmw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 - '@babel/preset-env': 7.16.11_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_d9a3f2afc99990b2b757e465d25e781f - '@storybook/core-common': 6.4.19_33252a1a689dab027a042d04efb3e91c - '@storybook/core-events': 6.4.19 - '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/router': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/ui': 6.4.19_d9a3f2afc99990b2b757e465d25e781f - '@types/node': 14.14.33 - '@types/webpack': 4.41.32 - autoprefixer: 9.8.6 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 - case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.21.1 - css-loader: 3.6.0_webpack@4.46.0 - file-loader: 6.2.0_webpack@4.46.0 - find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_ec34b068c8cf37561abcf5fd5b20a134 - glob: 7.2.0 - glob-promise: 3.4.0_glob@7.2.0 - global: 4.4.0 - html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.6.2 - postcss: 7.0.39 - postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.2.0_postcss@7.0.39+webpack@4.46.0 - raw-loader: 4.0.2_webpack@4.46.0 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - stable: 0.1.8 - style-loader: 1.3.0_webpack@4.46.0 - terser-webpack-plugin: 4.2.3_webpack@4.46.0 - ts-dedent: 2.2.0 - typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - webpack-dev-middleware: 3.7.3_webpack@4.46.0 - webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0 - webpack-hot-middleware: 2.25.1 - webpack-virtual-modules: 0.2.2 - transitivePeerDependencies: - - '@types/react' - - bluebird - - eslint - - supports-color - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/builder-webpack5/6.4.19_51b20fca480c999985ff71b851b3c282: + /@storybook/builder-webpack5/6.4.19_typescript@4.2.4: resolution: {integrity: sha512-AWM4YMN1gPaf7jfntqZTCGpIQ1tF6YRU1JtczPG4ox28rTaO6NMfOBi9aRhBre/59pPOh9bF6u2gu/MIHmRW+w==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -10844,21 +10782,21 @@ packages: '@babel/preset-env': 7.16.11_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/client-api': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core-common': 6.4.19_51b20fca480c999985ff71b851b3c282 + '@storybook/components': 6.4.19 + '@storybook/core-common': 6.4.19_typescript@4.2.4 '@storybook/core-events': 6.4.19 '@storybook/node-logger': 6.4.19 - '@storybook/preview-web': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/router': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/preview-web': 6.4.19 + '@storybook/router': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/store': 6.4.19 + '@storybook/theming': 6.4.19 '@types/node': 14.14.33 babel-loader: 8.2.3_fa907c5a4f16ccc493e21649ccc59574 babel-plugin-macros: 3.1.0 @@ -10866,14 +10804,12 @@ packages: case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.21.1 css-loader: 5.2.7_webpack@5.70.0 - fork-ts-checker-webpack-plugin: 6.5.0_d22c195d8cbe56a5b2cc7c98aa04b62c + fork-ts-checker-webpack-plugin: 6.5.0_typescript@4.2.4+webpack@5.70.0 glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 html-webpack-plugin: 5.5.0_webpack@5.70.0 path-browserify: 1.0.1 process: 0.11.10 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 stable: 0.1.8 style-loader: 2.0.0_webpack@5.70.0 terser-webpack-plugin: 5.2.5_webpack@5.70.0 @@ -10887,6 +10823,7 @@ packages: transitivePeerDependencies: - '@swc/core' - '@types/react' + - acorn - esbuild - eslint - supports-color @@ -10926,19 +10863,19 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.4.19_react-dom@16.14.0+react@17.0.2: + /@storybook/client-api/6.4.19: resolution: {integrity: sha512-OCrT5Um3FDvZnimQKwWtwsaI+5agPwq2i8YiqlofrI/NPMKp0I7DEkCGwE5IRD1Q8BIKqHcMo5tTmfYi0AxyOg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/addons': 6.4.19 '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/store': 6.4.19 '@types/qs': 6.9.7 '@types/webpack-env': 1.16.3 core-js: 3.21.1 @@ -10947,8 +10884,6 @@ packages: lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.10.3 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 regenerator-runtime: 0.13.9 store2: 2.13.2 synchronous-promise: 2.0.15 @@ -10956,19 +10891,19 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/client-api/6.4.19_react@17.0.2: resolution: {integrity: sha512-OCrT5Um3FDvZnimQKwWtwsaI+5agPwq2i8YiqlofrI/NPMKp0I7DEkCGwE5IRD1Q8BIKqHcMo5tTmfYi0AxyOg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 '@storybook/channel-postmessage': 6.4.19 '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/store': 6.4.19_react@17.0.2 '@types/qs': 6.9.7 '@types/webpack-env': 1.16.3 core-js: 3.21.1 @@ -10978,7 +10913,6 @@ packages: memoizerific: 1.11.3 qs: 6.10.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 store2: 2.13.2 synchronous-promise: 2.0.15 @@ -10993,7 +10927,7 @@ packages: global: 4.4.0 dev: true - /@storybook/components/6.4.19_d9a3f2afc99990b2b757e465d25e781f: + /@storybook/components/6.4.19: resolution: {integrity: sha512-q/0V37YAJA7CNc+wSiiefeM9+3XVk8ixBNylY36QCGJgIeGQ5/79vPyUe6K4lLmsQwpmZsIq1s1Ad5+VbboeOA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11002,7 +10936,41 @@ packages: '@popperjs/core': 2.11.4 '@storybook/client-logger': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/theming': 6.4.19 + '@types/color-convert': 2.0.0 + '@types/overlayscrollbars': 1.12.1 + '@types/react-syntax-highlighter': 11.0.5 + color-convert: 2.0.1 + core-js: 3.21.1 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + markdown-to-jsx: 7.1.7 + memoizerific: 1.11.3 + overlayscrollbars: 1.13.1 + polished: 4.1.4 + prop-types: 15.8.1 + react-colorful: 5.5.1 + react-popper-tooltip: 3.1.1 + react-syntax-highlighter: 13.5.3 + react-textarea-autosize: 8.3.3 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/components/6.4.19_00d6772dea80510e818fd171caaa025a: + resolution: {integrity: sha512-q/0V37YAJA7CNc+wSiiefeM9+3XVk8ixBNylY36QCGJgIeGQ5/79vPyUe6K4lLmsQwpmZsIq1s1Ad5+VbboeOA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@popperjs/core': 2.11.4 + '@storybook/client-logger': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/theming': 6.4.19_react@17.0.2 '@types/color-convert': 2.0.0 '@types/overlayscrollbars': 1.12.1 '@types/react-syntax-highlighter': 11.0.5 @@ -11017,9 +10985,8 @@ packages: polished: 4.1.4 prop-types: 15.8.1 react: 17.0.2 - react-colorful: 5.5.1_react-dom@16.14.0+react@17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-popper-tooltip: 3.1.1_react-dom@16.14.0+react@17.0.2 + react-colorful: 5.5.1_react@17.0.2 + react-popper-tooltip: 3.1.1_react@17.0.2 react-syntax-highlighter: 13.5.3_react@17.0.2 react-textarea-autosize: 8.3.3_00d6772dea80510e818fd171caaa025a regenerator-runtime: 0.13.9 @@ -11029,43 +10996,7 @@ packages: - '@types/react' dev: true - /@storybook/components/6.4.19_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-q/0V37YAJA7CNc+wSiiefeM9+3XVk8ixBNylY36QCGJgIeGQ5/79vPyUe6K4lLmsQwpmZsIq1s1Ad5+VbboeOA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@popperjs/core': 2.11.4 - '@storybook/client-logger': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@types/color-convert': 2.0.0 - '@types/overlayscrollbars': 1.12.1 - '@types/react-syntax-highlighter': 11.0.5 - color-convert: 2.0.1 - core-js: 3.21.1 - fast-deep-equal: 3.1.3 - global: 4.4.0 - lodash: 4.17.21 - markdown-to-jsx: 7.1.7_react@17.0.2 - memoizerific: 1.11.3 - overlayscrollbars: 1.13.1 - polished: 4.1.4 - prop-types: 15.8.1 - react: 17.0.2 - react-colorful: 5.5.1_react-dom@17.0.2+react@17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-popper-tooltip: 3.1.1_react-dom@17.0.2+react@17.0.2 - react-syntax-highlighter: 13.5.3_react@17.0.2 - react-textarea-autosize: 8.3.3_react@17.0.2 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/core-client/6.4.19_0f4f87aaef028dbd129dbd68b0fcd6d4: + /@storybook/core-client/6.4.19_98f22687148c9cf1bdeabebc76b1ed21: resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11076,16 +11007,16 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 '@storybook/channel-postmessage': 6.4.19 '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/client-api': 6.4.19_react@17.0.2 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/preview-web': 6.4.19_react@17.0.2 + '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.21.1 @@ -11093,163 +11024,6 @@ packages: lodash: 4.17.21 qs: 6.10.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.2.4 - unfetch: 4.2.0 - util-deprecate: 1.0.2 - webpack: 5.70.0 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/core-client/6.4.19_89d5fc67cc6e8d5f95b899f1abfc6753: - resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.19_react-dom@17.0.2+react@17.0.2 - airbnb-js-shims: 2.2.1 - ansi-to-html: 0.6.15 - core-js: 3.21.1 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.6.2 - unfetch: 4.2.0 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/core-client/6.4.19_d4663a927f0ee8a3cac73650b6082c92: - resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/ui': 6.4.19_d9a3f2afc99990b2b757e465d25e781f - airbnb-js-shims: 2.2.1 - ansi-to-html: 0.6.15 - core-js: 3.21.1 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.3 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.6.2 - unfetch: 4.2.0 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/core-client/6.4.19_e6cc00731818ec0729c9e13696f3c288: - resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.19_react-dom@17.0.2+react@17.0.2 - airbnb-js-shims: 2.2.1 - ansi-to-html: 0.6.15 - core-js: 3.21.1 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.2.4 - unfetch: 4.2.0 - util-deprecate: 1.0.2 - webpack: 4.46.0 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/core-client/6.4.19_fae246f25a372fe9acacd33df19cd045: - resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/channel-postmessage': 6.4.19 - '@storybook/channel-websocket': 6.4.19 - '@storybook/client-api': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/ui': 6.4.19_d9a3f2afc99990b2b757e465d25e781f - airbnb-js-shims: 2.2.1 - ansi-to-html: 0.6.15 - core-js: 3.21.1 - global: 4.4.0 - lodash: 4.17.21 - qs: 6.10.3 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 typescript: 4.6.2 @@ -11260,7 +11034,156 @@ packages: - '@types/react' dev: true - /@storybook/core-common/6.4.19_33252a1a689dab027a042d04efb3e91c: + /@storybook/core-client/6.4.19_d99be1b4f00e9434dc3d01c71c87961c: + resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channel-websocket': 6.4.19 + '@storybook/client-api': 6.4.19_react@17.0.2 + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.19_react@17.0.2 + '@storybook/store': 6.4.19_react@17.0.2 + '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.21.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + react: 17.0.2 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.6.2 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-client/6.4.19_typescript@4.2.4+webpack@4.46.0: + resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.19 + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channel-websocket': 6.4.19 + '@storybook/client-api': 6.4.19 + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.19 + '@storybook/store': 6.4.19 + '@storybook/ui': 6.4.19 + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.21.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.2.4 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 4.46.0 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-client/6.4.19_typescript@4.2.4+webpack@5.70.0: + resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.19 + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channel-websocket': 6.4.19 + '@storybook/client-api': 6.4.19 + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.19 + '@storybook/store': 6.4.19 + '@storybook/ui': 6.4.19 + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.21.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.2.4 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 5.70.0 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-client/6.4.19_typescript@4.6.2+webpack@4.46.0: + resolution: {integrity: sha512-rQHRZjhArPleE7/S8ZUolgzwY+hC0smSKX/3PQxO2GcebDjnJj6+iSV3h+aSMHMmTdoCQvjYw9aBpT8scuRe+A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@storybook/addons': 6.4.19 + '@storybook/channel-postmessage': 6.4.19 + '@storybook/channel-websocket': 6.4.19 + '@storybook/client-api': 6.4.19 + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/preview-web': 6.4.19 + '@storybook/store': 6.4.19 + '@storybook/ui': 6.4.19 + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.21.1 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.10.3 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.6.2 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - '@types/react' + dev: true + + /@storybook/core-common/6.4.19_a82b73e100b701d7a4b2b606aa98cbb5: resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11314,7 +11237,6 @@ packages: pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 resolve-from: 5.0.0 slash: 3.0.0 telejson: 5.3.3 @@ -11330,7 +11252,7 @@ packages: - webpack-command dev: true - /@storybook/core-common/6.4.19_51b20fca480c999985ff71b851b3c282: + /@storybook/core-common/6.4.19_ad5fc232a476648e022b673b2e1293fc: resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11373,7 +11295,75 @@ packages: express: 4.17.1 file-system-cache: 1.0.5 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_91527b0320285d4f50438f5cbee746f7 + fork-ts-checker-webpack-plugin: 6.5.0_ec34b068c8cf37561abcf5fd5b20a134 + fs-extra: 9.1.0 + glob: 7.2.0 + handlebars: 4.7.7 + interpret: 2.2.0 + json5: 2.2.0 + lazy-universal-dotenv: 3.0.1 + picomatch: 2.3.0 + pkg-dir: 5.0.0 + pretty-hrtime: 1.0.3 + resolve-from: 5.0.0 + slash: 3.0.0 + telejson: 5.3.3 + ts-dedent: 2.2.0 + typescript: 4.6.2 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core-common/6.4.19_typescript@4.2.4: + resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 + '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 + '@babel/preset-env': 7.16.11_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 + '@babel/register': 7.12.1_@babel+core@7.17.8 + '@storybook/node-logger': 6.4.19 + '@storybook/semver': 7.3.2 + '@types/node': 14.14.33 + '@types/pretty-hrtime': 1.0.1 + babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + babel-plugin-macros: 3.1.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 + chalk: 4.1.2 + core-js: 3.21.1 + express: 4.17.1 + file-system-cache: 1.0.5 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.0_typescript@4.2.4+webpack@4.46.0 fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 @@ -11383,8 +11373,6 @@ packages: picomatch: 2.3.0 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 resolve-from: 5.0.0 slash: 3.0.0 telejson: 5.3.3 @@ -11400,83 +11388,13 @@ packages: - webpack-command dev: true - /@storybook/core-common/6.4.19_a6ca0858167e3d3ddb88aa1df8bce35e: - resolution: {integrity: sha512-X1pJJkO48DFxl6iyEemIKqRkJ7j9/cBh3BRBUr+xZHXBvnD0GKDXIocwh0PjSxSC6XSu3UCQnqtKi3PbjRl8Dg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 - '@babel/preset-env': 7.16.11_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 - '@babel/register': 7.12.1_@babel+core@7.17.8 - '@storybook/node-logger': 6.4.19 - '@storybook/semver': 7.3.2 - '@types/node': 14.14.33 - '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8 - chalk: 4.1.2 - core-js: 3.21.1 - express: 4.17.1 - file-system-cache: 1.0.5 - find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.0_ec34b068c8cf37561abcf5fd5b20a134 - fs-extra: 9.1.0 - glob: 7.2.0 - handlebars: 4.7.7 - interpret: 2.2.0 - json5: 2.2.0 - lazy-universal-dotenv: 3.0.1 - picomatch: 2.3.0 - pkg-dir: 5.0.0 - pretty-hrtime: 1.0.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - resolve-from: 5.0.0 - slash: 3.0.0 - telejson: 5.3.3 - ts-dedent: 2.2.0 - typescript: 4.6.2 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - eslint - - supports-color - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - /@storybook/core-events/6.4.19: resolution: {integrity: sha512-KICzUw6XVQUJzFSCXfvhfHAuyhn4Q5J4IZEfuZkcGJS4ODkrO6tmpdYE5Cfr+so95Nfp0ErWiLUuodBsW9/rtA==} dependencies: core-js: 3.21.1 dev: true - /@storybook/core-server/6.4.19_109b7fc4aa03a9112c997d0fc60273b9: + /@storybook/core-server/6.4.19_32ff3fc743ba90b9723aa5427911cd5d: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11493,18 +11411,18 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_a6ca0858167e3d3ddb88aa1df8bce35e - '@storybook/builder-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/core-client': 6.4.19_89d5fc67cc6e8d5f95b899f1abfc6753 - '@storybook/core-common': 6.4.19_a6ca0858167e3d3ddb88aa1df8bce35e + '@storybook/builder-webpack4': 6.4.19_acorn@7.4.1+typescript@4.2.4 + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 + '@storybook/core-common': 6.4.19_typescript@4.2.4 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_a6ca0858167e3d3ddb88aa1df8bce35e - '@storybook/manager-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 + '@storybook/manager-webpack4': 6.4.19_acorn@7.4.1+typescript@4.2.4 + '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/store': 6.4.19 '@types/node': 14.14.33 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -11527,84 +11445,6 @@ packages: node-fetch: 2.6.7 pretty-hrtime: 1.0.3 prompts: 2.4.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - regenerator-runtime: 0.13.9 - serve-favicon: 2.5.0 - slash: 3.0.0 - telejson: 5.3.3 - ts-dedent: 2.2.0 - typescript: 4.6.2 - util-deprecate: 1.0.2 - watchpack: 2.2.0 - webpack: 4.46.0_webpack-cli@3.3.12 - ws: 8.5.0 - transitivePeerDependencies: - - '@types/react' - - bluebird - - bufferutil - - encoding - - eslint - - supports-color - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/core-server/6.4.19_54cca91dd624a994fe06f6e191210fe5: - resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} - peerDependencies: - '@storybook/builder-webpack5': 6.4.19 - '@storybook/manager-webpack5': 6.4.19 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - '@storybook/manager-webpack5': - optional: true - typescript: - optional: true - dependencies: - '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/builder-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/core-client': 6.4.19_e6cc00731818ec0729c9e13696f3c288 - '@storybook/core-common': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/manager-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/node-logger': 6.4.19 - '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@types/node': 14.14.33 - '@types/node-fetch': 2.6.1 - '@types/pretty-hrtime': 1.0.1 - '@types/webpack': 4.41.32 - better-opn: 2.1.1 - boxen: 5.1.2 - chalk: 4.1.2 - cli-table3: 0.6.1 - commander: 6.2.1 - compression: 1.7.4 - core-js: 3.21.1 - cpy: 8.1.2 - detect-port: 1.3.0 - express: 4.17.1 - file-system-cache: 1.0.5 - fs-extra: 9.1.0 - globby: 11.1.0 - ip: 1.1.5 - lodash: 4.17.21 - node-fetch: 2.6.7 - pretty-hrtime: 1.0.3 - prompts: 2.4.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 @@ -11617,7 +11457,7 @@ packages: ws: 8.5.0 transitivePeerDependencies: - '@types/react' - - bluebird + - acorn - bufferutil - encoding - eslint @@ -11628,7 +11468,7 @@ packages: - webpack-command dev: true - /@storybook/core-server/6.4.19_a2ec8a9034d53bc79611d7d280c86436: + /@storybook/core-server/6.4.19_560e6d9d0dc6ba0e4a0e3ac9dfb0acdc: resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11645,18 +11485,18 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.19_b0cda1f11447377860c5e079f8ead547 - '@storybook/builder-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/core-client': 6.4.19_d4663a927f0ee8a3cac73650b6082c92 - '@storybook/core-common': 6.4.19_33252a1a689dab027a042d04efb3e91c + '@storybook/builder-webpack4': 6.4.19_8469d84421212093500428258085ef2e + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c + '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/csf-tools': 6.4.19 - '@storybook/manager-webpack4': 6.4.19_b0cda1f11447377860c5e079f8ead547 - '@storybook/manager-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 + '@storybook/manager-webpack4': 6.4.19_8469d84421212093500428258085ef2e + '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 '@storybook/node-logger': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/store': 6.4.19_react@17.0.2 '@types/node': 14.14.33 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -11680,7 +11520,6 @@ packages: pretty-hrtime: 1.0.3 prompts: 2.4.2 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 @@ -11693,7 +11532,7 @@ packages: ws: 8.5.0 transitivePeerDependencies: - '@types/react' - - bluebird + - acorn - bufferutil - encoding - eslint @@ -11704,7 +11543,230 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_17c963f4a8d4a69f4c69af8e6e518605: + /@storybook/core-server/6.4.19_60ccbba86818d02b17e42a10157b06cd: + resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} + peerDependencies: + '@storybook/builder-webpack5': 6.4.19 + '@storybook/manager-webpack5': 6.4.19 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + '@storybook/builder-webpack4': 6.4.19_637ed751c9d518505c2a54210742b0dc + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c + '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/csf-tools': 6.4.19 + '@storybook/manager-webpack4': 6.4.19_637ed751c9d518505c2a54210742b0dc + '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/node-logger': 6.4.19 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19_react@17.0.2 + '@types/node': 14.14.33 + '@types/node-fetch': 2.6.1 + '@types/pretty-hrtime': 1.0.1 + '@types/webpack': 4.41.32 + better-opn: 2.1.1 + boxen: 5.1.2 + chalk: 4.1.2 + cli-table3: 0.6.1 + commander: 6.2.1 + compression: 1.7.4 + core-js: 3.21.1 + cpy: 8.1.2 + detect-port: 1.3.0 + express: 4.17.1 + file-system-cache: 1.0.5 + fs-extra: 9.1.0 + globby: 11.1.0 + ip: 1.1.5 + lodash: 4.17.21 + node-fetch: 2.6.7 + pretty-hrtime: 1.0.3 + prompts: 2.4.2 + react: 17.0.2 + regenerator-runtime: 0.13.9 + serve-favicon: 2.5.0 + slash: 3.0.0 + telejson: 5.3.3 + ts-dedent: 2.2.0 + typescript: 4.6.2 + util-deprecate: 1.0.2 + watchpack: 2.2.0 + webpack: 4.46.0_webpack-cli@3.3.12 + ws: 8.5.0 + transitivePeerDependencies: + - '@types/react' + - acorn + - bufferutil + - encoding + - eslint + - supports-color + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core-server/6.4.19_bd8532947d2e6ce2622b1981219456e8: + resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} + peerDependencies: + '@storybook/builder-webpack5': 6.4.19 + '@storybook/manager-webpack5': 6.4.19 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + '@storybook/builder-webpack4': 6.4.19_typescript@4.2.4 + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 + '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/csf-tools': 6.4.19 + '@storybook/manager-webpack4': 6.4.19_typescript@4.2.4 + '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/node-logger': 6.4.19 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19 + '@types/node': 14.14.33 + '@types/node-fetch': 2.6.1 + '@types/pretty-hrtime': 1.0.1 + '@types/webpack': 4.41.32 + better-opn: 2.1.1 + boxen: 5.1.2 + chalk: 4.1.2 + cli-table3: 0.6.1 + commander: 6.2.1 + compression: 1.7.4 + core-js: 3.21.1 + cpy: 8.1.2 + detect-port: 1.3.0 + express: 4.17.1 + file-system-cache: 1.0.5 + fs-extra: 9.1.0 + globby: 11.1.0 + ip: 1.1.5 + lodash: 4.17.21 + node-fetch: 2.6.7 + pretty-hrtime: 1.0.3 + prompts: 2.4.2 + regenerator-runtime: 0.13.9 + serve-favicon: 2.5.0 + slash: 3.0.0 + telejson: 5.3.3 + ts-dedent: 2.2.0 + typescript: 4.2.4 + util-deprecate: 1.0.2 + watchpack: 2.2.0 + webpack: 4.46.0 + ws: 8.5.0 + transitivePeerDependencies: + - '@types/react' + - acorn + - bufferutil + - encoding + - eslint + - supports-color + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core-server/6.4.19_de51fed6d5568596cbb9a47b25330f0e: + resolution: {integrity: sha512-bKsUB9f7hl5ya2JXxpIrErmbDQjoH39FVbzYZWjMo4t/b7+Xyi6vYadwyWcqlpUQmis09ZaSMv8L/Tw0TuwLAA==} + peerDependencies: + '@storybook/builder-webpack5': 6.4.19 + '@storybook/manager-webpack5': 6.4.19 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack5': + optional: true + typescript: + optional: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + '@storybook/builder-webpack4': 6.4.19_ad5fc232a476648e022b673b2e1293fc + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_typescript@4.6.2+webpack@4.46.0 + '@storybook/core-common': 6.4.19_ad5fc232a476648e022b673b2e1293fc + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/csf-tools': 6.4.19 + '@storybook/manager-webpack4': 6.4.19_ad5fc232a476648e022b673b2e1293fc + '@storybook/manager-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/node-logger': 6.4.19 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19 + '@types/node': 14.14.33 + '@types/node-fetch': 2.6.1 + '@types/pretty-hrtime': 1.0.1 + '@types/webpack': 4.41.32 + better-opn: 2.1.1 + boxen: 5.1.2 + chalk: 4.1.2 + cli-table3: 0.6.1 + commander: 6.2.1 + compression: 1.7.4 + core-js: 3.21.1 + cpy: 8.1.2 + detect-port: 1.3.0 + express: 4.17.1 + file-system-cache: 1.0.5 + fs-extra: 9.1.0 + globby: 11.1.0 + ip: 1.1.5 + lodash: 4.17.21 + node-fetch: 2.6.7 + pretty-hrtime: 1.0.3 + prompts: 2.4.2 + regenerator-runtime: 0.13.9 + serve-favicon: 2.5.0 + slash: 3.0.0 + telejson: 5.3.3 + ts-dedent: 2.2.0 + typescript: 4.6.2 + util-deprecate: 1.0.2 + watchpack: 2.2.0 + webpack: 4.46.0_webpack-cli@3.3.12 + ws: 8.5.0 + transitivePeerDependencies: + - '@types/react' + - acorn + - bufferutil + - encoding + - eslint + - supports-color + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core/6.4.19_56153e2fc75ffe3d23f60c0ecebf9977: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11718,17 +11780,15 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/core-client': 6.4.19_89d5fc67cc6e8d5f95b899f1abfc6753 - '@storybook/core-server': 6.4.19_109b7fc4aa03a9112c997d0fc60273b9 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_typescript@4.6.2+webpack@4.46.0 + '@storybook/core-server': 6.4.19_de51fed6d5568596cbb9a47b25330f0e typescript: 4.6.2 webpack: 4.46.0_webpack-cli@3.3.12 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - - bluebird + - acorn - bufferutil - encoding - eslint @@ -11739,7 +11799,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_551f0a5ed6ebe653292cd79d89633184: + /@storybook/core/6.4.19_8524ae9d1d4e3afeee7c4e2470ee45fc: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11753,52 +11813,16 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/core-client': 6.4.19_d4663a927f0ee8a3cac73650b6082c92 - '@storybook/core-server': 6.4.19_a2ec8a9034d53bc79611d7d280c86436 + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_98f22687148c9cf1bdeabebc76b1ed21 + '@storybook/core-server': 6.4.19_60ccbba86818d02b17e42a10157b06cd react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - typescript: 4.6.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - '@storybook/manager-webpack5' - - '@types/react' - - bluebird - - bufferutil - - encoding - - eslint - - supports-color - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/core/6.4.19_5581e842796dfb6119ae231c9e969ad7: - resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} - peerDependencies: - '@storybook/builder-webpack5': 6.4.19 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: '*' - peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - typescript: - optional: true - dependencies: - '@storybook/builder-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/core-client': 6.4.19_fae246f25a372fe9acacd33df19cd045 - '@storybook/core-server': 6.4.19_a2ec8a9034d53bc79611d7d280c86436 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 typescript: 4.6.2 webpack: 5.70.0_webpack-cli@3.3.12 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - - bluebird + - acorn - bufferutil - encoding - eslint @@ -11809,7 +11833,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_76495dde0697504ad233c9e55afe27aa: + /@storybook/core/6.4.19_93bef303caea8dc93db67fc70693bb95: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11823,17 +11847,49 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/core-client': 6.4.19_e6cc00731818ec0729c9e13696f3c288 - '@storybook/core-server': 6.4.19_54cca91dd624a994fe06f6e191210fe5 + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c + '@storybook/core-server': 6.4.19_560e6d9d0dc6ba0e4a0e3ac9dfb0acdc react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + typescript: 4.6.2 + webpack: 4.46.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - '@storybook/manager-webpack5' + - '@types/react' + - acorn + - bufferutil + - encoding + - eslint + - supports-color + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core/6.4.19_c15466773815ac7b8bfbbf8420ba0ee2: + resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} + peerDependencies: + '@storybook/builder-webpack5': 6.4.19 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + webpack: '*' + peerDependenciesMeta: + '@storybook/builder-webpack5': + optional: true + typescript: + optional: true + dependencies: + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 + '@storybook/core-server': 6.4.19_bd8532947d2e6ce2622b1981219456e8 typescript: 4.2.4 webpack: 4.46.0 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - - bluebird + - acorn - bufferutil - encoding - eslint @@ -11844,7 +11900,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.19_b56f7b70adce873acdcbbeb82c34779f: + /@storybook/core/6.4.19_daa74e9ea57648d1383d4f5a915eef9c: resolution: {integrity: sha512-55LOQ/h/kf1jMhjN85t/pIEdIwWEG9yV7bdwv3niVvmoypCxyyjn9/QNK0RKYAeDSUtdm6FVoJ6k5CpxWz2d8w==} peerDependencies: '@storybook/builder-webpack5': 6.4.19 @@ -11858,17 +11914,15 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.4.19_51b20fca480c999985ff71b851b3c282 - '@storybook/core-client': 6.4.19_0f4f87aaef028dbd129dbd68b0fcd6d4 - '@storybook/core-server': 6.4.19_54cca91dd624a994fe06f6e191210fe5 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@storybook/builder-webpack5': 6.4.19_typescript@4.2.4 + '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@5.70.0 + '@storybook/core-server': 6.4.19_32ff3fc743ba90b9723aa5427911cd5d typescript: 4.2.4 webpack: 5.70.0 transitivePeerDependencies: - '@storybook/manager-webpack5' - '@types/react' - - bluebird + - acorn - bufferutil - encoding - eslint @@ -11909,7 +11963,7 @@ packages: lodash: 4.17.21 dev: true - /@storybook/manager-webpack4/6.4.19_51b20fca480c999985ff71b851b3c282: + /@storybook/manager-webpack4/6.4.19_637ed751c9d518505c2a54210742b0dc: resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -11922,12 +11976,246 @@ packages: '@babel/core': 7.17.8 '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core-client': 6.4.19_e6cc00731818ec0729c9e13696f3c288 - '@storybook/core-common': 6.4.19_51b20fca480c999985ff71b851b3c282 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c + '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + express: 4.17.1 + file-loader: 6.2.0_webpack@4.46.0 + file-system-cache: 1.0.5 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + node-fetch: 2.6.7 + pnp-webpack-plugin: 1.6.4_typescript@4.6.2 + react: 17.0.2 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.9 + resolve-from: 5.0.0 + style-loader: 1.3.0_webpack@4.46.0 + telejson: 5.3.3 + terser-webpack-plugin: 4.2.3_acorn@7.4.1+webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.6.2 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - encoding + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/manager-webpack4/6.4.19_8469d84421212093500428258085ef2e: + resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/core-client': 6.4.19_d99be1b4f00e9434dc3d01c71c87961c + '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 + '@storybook/node-logger': 6.4.19 + '@storybook/theming': 6.4.19_react@17.0.2 + '@storybook/ui': 6.4.19_00d6772dea80510e818fd171caaa025a + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + express: 4.17.1 + file-loader: 6.2.0_webpack@4.46.0 + file-system-cache: 1.0.5 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + node-fetch: 2.6.7 + pnp-webpack-plugin: 1.6.4_typescript@4.6.2 + react: 17.0.2 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.9 + resolve-from: 5.0.0 + style-loader: 1.3.0_webpack@4.46.0 + telejson: 5.3.3 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.6.2 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - encoding + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/manager-webpack4/6.4.19_acorn@7.4.1+typescript@4.2.4: + resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19 + '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 + '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/node-logger': 6.4.19 + '@storybook/theming': 6.4.19 + '@storybook/ui': 6.4.19 + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + express: 4.17.1 + file-loader: 6.2.0_webpack@4.46.0 + file-system-cache: 1.0.5 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + node-fetch: 2.6.7 + pnp-webpack-plugin: 1.6.4_typescript@4.2.4 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.9 + resolve-from: 5.0.0 + style-loader: 1.3.0_webpack@4.46.0 + telejson: 5.3.3 + terser-webpack-plugin: 4.2.3_acorn@7.4.1+webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.2.4 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - encoding + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/manager-webpack4/6.4.19_ad5fc232a476648e022b673b2e1293fc: + resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19 + '@storybook/core-client': 6.4.19_typescript@4.6.2+webpack@4.46.0 + '@storybook/core-common': 6.4.19_ad5fc232a476648e022b673b2e1293fc + '@storybook/node-logger': 6.4.19 + '@storybook/theming': 6.4.19 + '@storybook/ui': 6.4.19 + '@types/node': 14.14.33 + '@types/webpack': 4.41.32 + babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.21.1 + css-loader: 3.6.0_webpack@4.46.0 + express: 4.17.1 + file-loader: 6.2.0_webpack@4.46.0 + file-system-cache: 1.0.5 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 4.5.2_webpack@4.46.0 + node-fetch: 2.6.7 + pnp-webpack-plugin: 1.6.4_typescript@4.6.2 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.9 + resolve-from: 5.0.0 + style-loader: 1.3.0_webpack@4.46.0 + telejson: 5.3.3 + terser-webpack-plugin: 4.2.3_webpack@4.46.0 + ts-dedent: 2.2.0 + typescript: 4.6.2 + url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + util-deprecate: 1.0.2 + webpack: 4.46.0_webpack-cli@3.3.12 + webpack-dev-middleware: 3.7.3_webpack@4.46.0 + webpack-virtual-modules: 0.2.2 + transitivePeerDependencies: + - '@types/react' + - acorn + - encoding + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/manager-webpack4/6.4.19_typescript@4.2.4: + resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@storybook/addons': 6.4.19 + '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@4.46.0 + '@storybook/core-common': 6.4.19_typescript@4.2.4 + '@storybook/node-logger': 6.4.19 + '@storybook/theming': 6.4.19 + '@storybook/ui': 6.4.19 '@types/node': 14.14.33 '@types/webpack': 4.41.32 babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe @@ -11943,8 +12231,6 @@ packages: html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 pnp-webpack-plugin: 1.6.4_typescript@4.2.4 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -11960,7 +12246,7 @@ packages: webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - '@types/react' - - bluebird + - acorn - encoding - eslint - supports-color @@ -11969,127 +12255,7 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack4/6.4.19_a6ca0858167e3d3ddb88aa1df8bce35e: - resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core-client': 6.4.19_89d5fc67cc6e8d5f95b899f1abfc6753 - '@storybook/core-common': 6.4.19_a6ca0858167e3d3ddb88aa1df8bce35e - '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@types/node': 14.14.33 - '@types/webpack': 4.41.32 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - case-sensitive-paths-webpack-plugin: 2.4.0 - chalk: 4.1.2 - core-js: 3.21.1 - css-loader: 3.6.0_webpack@4.46.0 - express: 4.17.1 - file-loader: 6.2.0_webpack@4.46.0 - file-system-cache: 1.0.5 - find-up: 5.0.0 - fs-extra: 9.1.0 - html-webpack-plugin: 4.5.2_webpack@4.46.0 - node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.6.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 - resolve-from: 5.0.0 - style-loader: 1.3.0_webpack@4.46.0 - telejson: 5.3.3 - terser-webpack-plugin: 4.2.3_webpack@4.46.0 - ts-dedent: 2.2.0 - typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - webpack-dev-middleware: 3.7.3_webpack@4.46.0 - webpack-virtual-modules: 0.2.2 - transitivePeerDependencies: - - '@types/react' - - bluebird - - encoding - - eslint - - supports-color - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/manager-webpack4/6.4.19_b0cda1f11447377860c5e079f8ead547: - resolution: {integrity: sha512-R8ugZjTYqXvlc6gDOcw909L65sIleOmIJLZR+N6/H85MivGXHu39jOwONqB7tVACufRty4FNecn8tEiQL2SAKA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/core-client': 6.4.19_d4663a927f0ee8a3cac73650b6082c92 - '@storybook/core-common': 6.4.19_33252a1a689dab027a042d04efb3e91c - '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/ui': 6.4.19_d9a3f2afc99990b2b757e465d25e781f - '@types/node': 14.14.33 - '@types/webpack': 4.41.32 - babel-loader: 8.2.3_b72fb7e629d39881e138edb6dcd0dfbe - case-sensitive-paths-webpack-plugin: 2.4.0 - chalk: 4.1.2 - core-js: 3.21.1 - css-loader: 3.6.0_webpack@4.46.0 - express: 4.17.1 - file-loader: 6.2.0_webpack@4.46.0 - file-system-cache: 1.0.5 - find-up: 5.0.0 - fs-extra: 9.1.0 - html-webpack-plugin: 4.5.2_webpack@4.46.0 - node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.6.2 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 - resolve-from: 5.0.0 - style-loader: 1.3.0_webpack@4.46.0 - telejson: 5.3.3 - terser-webpack-plugin: 4.2.3_webpack@4.46.0 - ts-dedent: 2.2.0 - typescript: 4.6.2 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 - util-deprecate: 1.0.2 - webpack: 4.46.0_webpack-cli@3.3.12 - webpack-dev-middleware: 3.7.3_webpack@4.46.0 - webpack-virtual-modules: 0.2.2 - transitivePeerDependencies: - - '@types/react' - - bluebird - - encoding - - eslint - - supports-color - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/manager-webpack5/6.4.19_51b20fca480c999985ff71b851b3c282: + /@storybook/manager-webpack5/6.4.19_typescript@4.2.4: resolution: {integrity: sha512-hVjWhWAOgWaymBy0HeRskN+MfKLpqLP4Txfw+3Xqg1qplgexV0w2O4BQrS/SNEH4V/1qF9h8XTsk3L3oQIj3Mg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12102,12 +12268,12 @@ packages: '@babel/core': 7.17.8 '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core-client': 6.4.19_0f4f87aaef028dbd129dbd68b0fcd6d4 - '@storybook/core-common': 6.4.19_51b20fca480c999985ff71b851b3c282 + '@storybook/addons': 6.4.19 + '@storybook/core-client': 6.4.19_typescript@4.2.4+webpack@5.70.0 + '@storybook/core-common': 6.4.19_typescript@4.2.4 '@storybook/node-logger': 6.4.19 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/theming': 6.4.19 + '@storybook/ui': 6.4.19 '@types/node': 14.14.33 babel-loader: 8.2.3_fa907c5a4f16ccc493e21649ccc59574 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -12121,8 +12287,6 @@ packages: html-webpack-plugin: 5.5.0_webpack@5.70.0 node-fetch: 2.6.7 process: 0.11.10 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -12138,6 +12302,7 @@ packages: transitivePeerDependencies: - '@swc/core' - '@types/react' + - acorn - encoding - esbuild - eslint @@ -12164,25 +12329,23 @@ packages: core-js: 3.21.1 dev: true - /@storybook/preview-web/6.4.19_react-dom@16.14.0+react@17.0.2: + /@storybook/preview-web/6.4.19: resolution: {integrity: sha512-jqltoBv5j7lvnxEfV9w8dLX9ASWGuvgz97yg8Yo5FqkftEwrHJenyvMGcTgDJKJPorF+wiz/9aIqnmd3LCAcZQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/addons': 6.4.19 '@storybook/channel-postmessage': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/store': 6.4.19 ansi-to-html: 0.6.15 core-js: 3.21.1 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 regenerator-runtime: 0.13.9 synchronous-promise: 2.0.15 ts-dedent: 2.2.0 @@ -12190,25 +12353,24 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/preview-web/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/preview-web/6.4.19_react@17.0.2: resolution: {integrity: sha512-jqltoBv5j7lvnxEfV9w8dLX9ASWGuvgz97yg8Yo5FqkftEwrHJenyvMGcTgDJKJPorF+wiz/9aIqnmd3LCAcZQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 '@storybook/channel-postmessage': 6.4.19 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/store': 6.4.19_react@17.0.2 ansi-to-html: 0.6.15 core-js: 3.21.1 global: 4.4.0 lodash: 4.17.21 qs: 6.10.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 regenerator-runtime: 0.13.9 synchronous-promise: 2.0.15 ts-dedent: 2.2.0 @@ -12254,71 +12416,7 @@ packages: - supports-color dev: true - /@storybook/react/6.4.19_d2f048c98daab869c00fca4878e089e9: - resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.11.5 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - peerDependenciesMeta: - '@babel/core': - optional: true - typescript: - optional: true - dependencies: - '@babel/core': 7.17.8 - '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 - '@babel/preset-react': 7.16.7_@babel+core@7.17.8 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_06cd85ae30adde416cafc06517ba554d - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/core': 6.4.19_551f0a5ed6ebe653292cd79d89633184 - '@storybook/core-common': 6.4.19_33252a1a689dab027a042d04efb3e91c - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/node-logger': 6.4.19 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_typescript@4.6.2+webpack@4.46.0 - '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@types/webpack-env': 1.16.3 - babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 - babel-plugin-react-docgen: 4.2.1 - core-js: 3.21.1 - global: 4.4.0 - lodash: 4.17.21 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-refresh: 0.11.0 - read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - typescript: 4.6.2 - webpack: 4.46.0_webpack-cli@3.3.12 - transitivePeerDependencies: - - '@storybook/builder-webpack5' - - '@storybook/manager-webpack5' - - '@types/react' - - '@types/webpack' - - bluebird - - bufferutil - - encoding - - eslint - - sockjs-client - - supports-color - - type-fest - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-command - - webpack-dev-server - - webpack-hot-middleware - - webpack-plugin-serve - dev: true - - /@storybook/react/6.4.19_e0aa14d07c25f72541ac45bc1b107967: + /@storybook/react/6.4.19_1a3cbc393c8e54a301ca95e65ea44c36: resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==} engines: {node: '>=10.13.0'} hasBin: true @@ -12337,14 +12435,14 @@ packages: '@babel/preset-flow': 7.16.7_@babel+core@7.12.9 '@babel/preset-react': 7.16.7_@babel+core@7.12.9 '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_06cd85ae30adde416cafc06517ba554d - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core': 6.4.19_76495dde0697504ad233c9e55afe27aa - '@storybook/core-common': 6.4.19_51b20fca480c999985ff71b851b3c282 + '@storybook/addons': 6.4.19 + '@storybook/core': 6.4.19_c15466773815ac7b8bfbbf8420ba0ee2 + '@storybook/core-common': 6.4.19_typescript@4.2.4 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_typescript@4.2.4+webpack@4.46.0 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/store': 6.4.19 '@types/webpack-env': 1.16.3 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-named-asset-import: 0.3.8_@babel+core@7.12.9 @@ -12353,8 +12451,6 @@ packages: global: 4.4.0 lodash: 4.17.21 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 @@ -12366,7 +12462,7 @@ packages: - '@storybook/manager-webpack5' - '@types/react' - '@types/webpack' - - bluebird + - acorn - bufferutil - encoding - eslint @@ -12382,7 +12478,7 @@ packages: - webpack-plugin-serve dev: true - /@storybook/react/6.4.19_ef4e6501236e44e8b996c5f4ad254cad: + /@storybook/react/6.4.19_ac71394bf7b79921297ea028da6e50ca: resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==} engines: {node: '>=10.13.0'} hasBin: true @@ -12401,14 +12497,14 @@ packages: '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 '@babel/preset-react': 7.16.7_@babel+core@7.17.8 '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_06cd85ae30adde416cafc06517ba554d - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/core': 6.4.19_17c963f4a8d4a69f4c69af8e6e518605 - '@storybook/core-common': 6.4.19_a6ca0858167e3d3ddb88aa1df8bce35e + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/core': 6.4.19_93bef303caea8dc93db67fc70693bb95 + '@storybook/core-common': 6.4.19_a82b73e100b701d7a4b2b606aa98cbb5 '@storybook/csf': 0.0.2--canary.87bc651.0 '@storybook/node-logger': 6.4.19 '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_typescript@4.6.2+webpack@4.46.0 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/store': 6.4.19_react@17.0.2 '@types/webpack-env': 1.16.3 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 @@ -12418,7 +12514,6 @@ packages: lodash: 4.17.21 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 @@ -12430,7 +12525,7 @@ packages: - '@storybook/manager-webpack5' - '@types/react' - '@types/webpack' - - bluebird + - acorn - bufferutil - encoding - eslint @@ -12446,7 +12541,69 @@ packages: - webpack-plugin-serve dev: true - /@storybook/router/6.4.19_react-dom@16.14.0+react@17.0.2: + /@storybook/react/6.4.19_ce33fa78e84ed7674385e603320a18f7: + resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@babel/core': ^7.11.5 + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + typescript: '*' + peerDependenciesMeta: + '@babel/core': + optional: true + typescript: + optional: true + dependencies: + '@babel/core': 7.17.8 + '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 + '@babel/preset-react': 7.16.7_@babel+core@7.17.8 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_06cd85ae30adde416cafc06517ba554d + '@storybook/addons': 6.4.19 + '@storybook/core': 6.4.19_56153e2fc75ffe3d23f60c0ecebf9977 + '@storybook/core-common': 6.4.19_ad5fc232a476648e022b673b2e1293fc + '@storybook/csf': 0.0.2--canary.87bc651.0 + '@storybook/node-logger': 6.4.19 + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_typescript@4.6.2+webpack@4.46.0 + '@storybook/semver': 7.3.2 + '@storybook/store': 6.4.19 + '@types/webpack-env': 1.16.3 + babel-plugin-add-react-displayname: 0.0.5 + babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8 + babel-plugin-react-docgen: 4.2.1 + core-js: 3.21.1 + global: 4.4.0 + lodash: 4.17.21 + prop-types: 15.8.1 + react-refresh: 0.11.0 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.9 + ts-dedent: 2.2.0 + typescript: 4.6.2 + webpack: 4.46.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - '@storybook/builder-webpack5' + - '@storybook/manager-webpack5' + - '@types/react' + - '@types/webpack' + - acorn + - bufferutil + - encoding + - eslint + - sockjs-client + - supports-color + - type-fest + - utf-8-validate + - vue-template-compiler + - webpack-cli + - webpack-command + - webpack-dev-server + - webpack-hot-middleware + - webpack-plugin-serve + dev: true + + /@storybook/router/6.4.19: resolution: {integrity: sha512-KWWwIzuyeEIWVezkCihwY2A76Il9tUNg0I410g9qT7NrEsKyqXGRYOijWub7c1GGyNjLqz0jtrrehtixMcJkuA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12460,14 +12617,12 @@ packages: lodash: 4.17.21 memoizerific: 1.11.3 qs: 6.10.3 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-router: 6.2.2_react@17.0.2 - react-router-dom: 6.2.2_react-dom@16.14.0+react@17.0.2 + react-router: 6.2.2 + react-router-dom: 6.2.2 ts-dedent: 2.2.0 dev: true - /@storybook/router/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/router/6.4.19_react@17.0.2: resolution: {integrity: sha512-KWWwIzuyeEIWVezkCihwY2A76Il9tUNg0I410g9qT7NrEsKyqXGRYOijWub7c1GGyNjLqz0jtrrehtixMcJkuA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12482,9 +12637,8 @@ packages: memoizerific: 1.11.3 qs: 6.10.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 react-router: 6.2.2_react@17.0.2 - react-router-dom: 6.2.2_react-dom@17.0.2+react@17.0.2 + react-router-dom: 6.2.2_react@17.0.2 ts-dedent: 2.2.0 dev: true @@ -12497,13 +12651,31 @@ packages: find-up: 4.1.0 dev: true - /@storybook/source-loader/6.4.19_react-dom@16.14.0+react@17.0.2: + /@storybook/source-loader/6.4.19: resolution: {integrity: sha512-XqTsqddRglvfW7mhyjwoqd/B8L6samcBehhO0OEbsFp6FPWa9eXuObCxtRYIcjcSIe+ksbW3D/54ppEs1L/g1Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/addons': 6.4.19 + '@storybook/client-logger': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + core-js: 3.21.1 + estraverse: 5.3.0 + global: 4.4.0 + loader-utils: 2.0.2 + lodash: 4.17.21 + prettier: 2.3.0 + regenerator-runtime: 0.13.9 + dev: true + + /@storybook/source-loader/6.4.19_react@17.0.2: + resolution: {integrity: sha512-XqTsqddRglvfW7mhyjwoqd/B8L6samcBehhO0OEbsFp6FPWa9eXuObCxtRYIcjcSIe+ksbW3D/54ppEs1L/g1Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/addons': 6.4.19_react@17.0.2 '@storybook/client-logger': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 core-js: 3.21.1 @@ -12513,37 +12685,39 @@ packages: lodash: 4.17.21 prettier: 2.3.0 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 regenerator-runtime: 0.13.9 dev: true - /@storybook/source-loader/6.4.19_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-XqTsqddRglvfW7mhyjwoqd/B8L6samcBehhO0OEbsFp6FPWa9eXuObCxtRYIcjcSIe+ksbW3D/54ppEs1L/g1Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 - core-js: 3.21.1 - estraverse: 5.3.0 - global: 4.4.0 - loader-utils: 2.0.2 - lodash: 4.17.21 - prettier: 2.3.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - regenerator-runtime: 0.13.9 - dev: true - - /@storybook/store/6.4.19_react-dom@16.14.0+react@17.0.2: + /@storybook/store/6.4.19: resolution: {integrity: sha512-N9/ZjemRHGfT3InPIbqQqc6snkcfnf3Qh9oOr0smbfaVGJol//KOX65kzzobtzFcid0WxtTDZ3HmgFVH+GvuhQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/addons': 6.4.19 + '@storybook/client-logger': 6.4.19 + '@storybook/core-events': 6.4.19 + '@storybook/csf': 0.0.2--canary.87bc651.0 + core-js: 3.21.1 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + regenerator-runtime: 0.13.9 + slash: 3.0.0 + stable: 0.1.8 + synchronous-promise: 2.0.15 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/store/6.4.19_react@17.0.2: + resolution: {integrity: sha512-N9/ZjemRHGfT3InPIbqQqc6snkcfnf3Qh9oOr0smbfaVGJol//KOX65kzzobtzFcid0WxtTDZ3HmgFVH+GvuhQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@storybook/addons': 6.4.19_react@17.0.2 '@storybook/client-logger': 6.4.19 '@storybook/core-events': 6.4.19 '@storybook/csf': 0.0.2--canary.87bc651.0 @@ -12553,7 +12727,6 @@ packages: lodash: 4.17.21 memoizerific: 1.11.3 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 regenerator-runtime: 0.13.9 slash: 3.0.0 stable: 0.1.8 @@ -12562,32 +12735,27 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/store/6.4.19_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-N9/ZjemRHGfT3InPIbqQqc6snkcfnf3Qh9oOr0smbfaVGJol//KOX65kzzobtzFcid0WxtTDZ3HmgFVH+GvuhQ==} + /@storybook/theming/6.4.19: + resolution: {integrity: sha512-V4pWmTvAxmbHR6B3jA4hPkaxZPyExHvCToy7b76DpUTpuHihijNDMAn85KhOQYIeL9q14zP/aiz899tOHsOidg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@emotion/core': 10.3.1 + '@emotion/is-prop-valid': 0.8.8 + '@emotion/styled': 10.3.0_@emotion+core@10.3.1 '@storybook/client-logger': 6.4.19 - '@storybook/core-events': 6.4.19 - '@storybook/csf': 0.0.2--canary.87bc651.0 core-js: 3.21.1 - fast-deep-equal: 3.1.3 + deep-object-diff: 1.1.7 + emotion-theming: 10.3.0_@emotion+core@10.3.1 global: 4.4.0 - lodash: 4.17.21 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - regenerator-runtime: 0.13.9 - slash: 3.0.0 - stable: 0.1.8 - synchronous-promise: 2.0.15 + polished: 4.1.4 + resolve-from: 5.0.0 ts-dedent: 2.2.0 - util-deprecate: 1.0.2 dev: true - /@storybook/theming/6.4.19_react-dom@16.14.0+react@17.0.2: + /@storybook/theming/6.4.19_react@17.0.2: resolution: {integrity: sha512-V4pWmTvAxmbHR6B3jA4hPkaxZPyExHvCToy7b76DpUTpuHihijNDMAn85KhOQYIeL9q14zP/aiz899tOHsOidg==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -12604,65 +12772,40 @@ packages: memoizerific: 1.11.3 polished: 4.1.4 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 resolve-from: 5.0.0 ts-dedent: 2.2.0 dev: true - /@storybook/theming/6.4.19_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-V4pWmTvAxmbHR6B3jA4hPkaxZPyExHvCToy7b76DpUTpuHihijNDMAn85KhOQYIeL9q14zP/aiz899tOHsOidg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - dependencies: - '@emotion/core': 10.3.1_react@17.0.2 - '@emotion/is-prop-valid': 0.8.8 - '@emotion/styled': 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 - '@storybook/client-logger': 6.4.19 - core-js: 3.21.1 - deep-object-diff: 1.1.7 - emotion-theming: 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 - global: 4.4.0 - memoizerific: 1.11.3 - polished: 4.1.4 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - resolve-from: 5.0.0 - ts-dedent: 2.2.0 - dev: true - - /@storybook/ui/6.4.19_d9a3f2afc99990b2b757e465d25e781f: + /@storybook/ui/6.4.19: resolution: {integrity: sha512-gFwdn5LA2U6oQ4bfUFLyHZnNasGQ01YVdwjbi+l6yjmnckBNtZfJoVTZ1rzGUbxSE9rK48InJRU+latTsr7xAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@emotion/core': 10.3.1_react@17.0.2 - '@storybook/addons': 6.4.19_react-dom@16.14.0+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@emotion/core': 10.3.1 + '@storybook/addons': 6.4.19 + '@storybook/api': 6.4.19 '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_d9a3f2afc99990b2b757e465d25e781f + '@storybook/components': 6.4.19 '@storybook/core-events': 6.4.19 - '@storybook/router': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/router': 6.4.19 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19_react-dom@16.14.0+react@17.0.2 + '@storybook/theming': 6.4.19 copy-to-clipboard: 3.3.1 core-js: 3.21.1 core-js-pure: 3.19.1 - downshift: 6.1.7_react@17.0.2 - emotion-theming: 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 + downshift: 6.1.7 + emotion-theming: 10.3.0_@emotion+core@10.3.1 fuse.js: 3.6.1 global: 4.4.0 lodash: 4.17.21 - markdown-to-jsx: 7.1.7_react@17.0.2 + markdown-to-jsx: 7.1.7 memoizerific: 1.11.3 polished: 4.1.4 qs: 6.10.3 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-draggable: 4.4.4_react-dom@16.14.0+react@17.0.2 - react-helmet-async: 1.2.3_react-dom@16.14.0+react@17.0.2 + react-draggable: 4.4.4 + react-helmet-async: 1.2.3 react-sizeme: 3.0.2 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -12671,22 +12814,22 @@ packages: - '@types/react' dev: true - /@storybook/ui/6.4.19_react-dom@17.0.2+react@17.0.2: + /@storybook/ui/6.4.19_00d6772dea80510e818fd171caaa025a: resolution: {integrity: sha512-gFwdn5LA2U6oQ4bfUFLyHZnNasGQ01YVdwjbi+l6yjmnckBNtZfJoVTZ1rzGUbxSE9rK48InJRU+latTsr7xAg==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: '@emotion/core': 10.3.1_react@17.0.2 - '@storybook/addons': 6.4.19_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.4.19_react@17.0.2 + '@storybook/api': 6.4.19_react@17.0.2 '@storybook/channels': 6.4.19 '@storybook/client-logger': 6.4.19 - '@storybook/components': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/components': 6.4.19_00d6772dea80510e818fd171caaa025a '@storybook/core-events': 6.4.19 - '@storybook/router': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/router': 6.4.19_react@17.0.2 '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.19_react-dom@17.0.2+react@17.0.2 + '@storybook/theming': 6.4.19_react@17.0.2 copy-to-clipboard: 3.3.1 core-js: 3.21.1 core-js-pure: 3.19.1 @@ -12700,9 +12843,8 @@ packages: polished: 4.1.4 qs: 6.10.3 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-draggable: 4.4.4_react-dom@17.0.2+react@17.0.2 - react-helmet-async: 1.2.3_react-dom@17.0.2+react@17.0.2 + react-draggable: 4.4.4_react@17.0.2 + react-helmet-async: 1.2.3_react@17.0.2 react-sizeme: 3.0.2 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 @@ -12719,7 +12861,7 @@ packages: dependencies: '@babel/core': 7.17.8 postcss: 7.0.39 - postcss-syntax: 0.36.2_5111c4e3f61982716b7e3f1c84e1f773 + postcss-syntax: 0.36.2_postcss@7.0.39 transitivePeerDependencies: - supports-color dev: true @@ -12732,7 +12874,7 @@ packages: postcss-syntax: '>=0.36.2' dependencies: postcss: 7.0.39 - postcss-syntax: 0.36.2_5111c4e3f61982716b7e3f1c84e1f773 + postcss-syntax: 0.36.2_postcss@7.0.39 remark: 13.0.0 unist-util-find-all-after: 3.0.2 transitivePeerDependencies: @@ -12901,6 +13043,26 @@ packages: lodash: 4.17.21 redent: 3.0.0 + /@testing-library/react-hooks/7.0.2: + resolution: {integrity: sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==} + engines: {node: '>=12'} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + react-test-renderer: '>=16.9.0' + peerDependenciesMeta: + react-dom: + optional: true + react-test-renderer: + optional: true + dependencies: + '@babel/runtime': 7.17.7 + '@types/react': 17.0.40 + '@types/react-dom': 17.0.13 + '@types/react-test-renderer': 17.0.1 + react-error-boundary: 3.1.4 + dev: true + /@testing-library/react-hooks/7.0.2_react-dom@17.0.2+react@17.0.2: resolution: {integrity: sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==} engines: {node: '>=12'} @@ -12923,7 +13085,7 @@ packages: react-error-boundary: 3.1.4_react@17.0.2 dev: true - /@testing-library/react/12.1.4_react-dom@16.14.0+react@17.0.2: + /@testing-library/react/12.1.4: resolution: {integrity: sha512-jiPKOm7vyUw311Hn/HlNQ9P8/lHNtArAx0PisXyFixDDvfl8DbD6EUdbshK5eqauvBSvzZd19itqQ9j3nferJA==} engines: {node: '>=12'} peerDependencies: @@ -12933,9 +13095,6 @@ packages: '@babel/runtime': 7.17.7 '@testing-library/dom': 8.11.3 '@types/react-dom': 17.0.13 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - dev: true /@testing-library/react/12.1.4_react-dom@17.0.2+react@17.0.2: resolution: {integrity: sha512-jiPKOm7vyUw311Hn/HlNQ9P8/lHNtArAx0PisXyFixDDvfl8DbD6EUdbshK5eqauvBSvzZd19itqQ9j3nferJA==} @@ -12949,6 +13108,20 @@ packages: '@types/react-dom': 17.0.13 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 + dev: true + + /@testing-library/react/12.1.4_react@17.0.2: + resolution: {integrity: sha512-jiPKOm7vyUw311Hn/HlNQ9P8/lHNtArAx0PisXyFixDDvfl8DbD6EUdbshK5eqauvBSvzZd19itqQ9j3nferJA==} + engines: {node: '>=12'} + peerDependencies: + react: '*' + react-dom: '*' + dependencies: + '@babel/runtime': 7.17.7 + '@testing-library/dom': 8.11.3 + '@types/react-dom': 17.0.13 + react: 17.0.2 + dev: true /@testing-library/user-event/13.5.0_@testing-library+dom@8.11.3: resolution: {integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==} @@ -13076,6 +13249,7 @@ packages: dependencies: '@types/eslint': 7.29.0 '@types/estree': 0.0.51 + dev: true /@types/eslint-visitor-keys/1.0.0: resolution: {integrity: sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==} @@ -13086,9 +13260,11 @@ packages: dependencies: '@types/estree': 0.0.51 '@types/json-schema': 7.0.9 + dev: true /@types/estree/0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + dev: true /@types/expect-puppeteer/4.4.7: resolution: {integrity: sha512-C5UHvCNTmjiGAVU5XyzR7xmZPRF/+YfpSd746Gd4ytcSpLT+/ke1EzrpDhO0OqqtpExQvr8M4qb0md9tybq7XA==} @@ -13441,33 +13617,33 @@ packages: source-map: 0.6.1 dev: true - /@types/wordpress__block-editor/7.0.0_react-dom@16.14.0+react@17.0.2: + /@types/wordpress__block-editor/7.0.0_react@17.0.2: resolution: {integrity: sha512-JERpxKAQ7J07C2wtKxr+5ZE9NETIcpu0EiXuXka6Qmrq74oOypdy9jYdhMIYBDMOx4ptR3ne7edaFb2+1SBcqA==} dependencies: '@types/react': 17.0.40 - '@types/wordpress__blocks': 11.0.6_react-dom@16.14.0+react@17.0.2 - '@types/wordpress__components': 19.10.1_react-dom@16.14.0+react@17.0.2 + '@types/wordpress__blocks': 11.0.6_react@17.0.2 + '@types/wordpress__components': 19.10.1_react@17.0.2 '@types/wordpress__data': 6.0.0 '@types/wordpress__keycodes': 2.3.1 '@wordpress/element': 4.8.0 - react-autosize-textarea: 7.1.0_react-dom@16.14.0+react@17.0.2 + react-autosize-textarea: 7.1.0_react@17.0.2 transitivePeerDependencies: - react - react-dom dev: true - /@types/wordpress__blocks/11.0.6_react-dom@16.14.0+react@17.0.2: + /@types/wordpress__blocks/11.0.6_react@17.0.2: resolution: {integrity: sha512-VMLFFMSExFqaWTQOX4Pj3I8TiMQD4fuNIpu0FJNJWqHztli6wNwP68oqWkz5O2N/e1YaxzgSFE9xl5j6IXriDw==} dependencies: '@types/react': 17.0.40 - '@types/wordpress__components': 19.10.1_react-dom@16.14.0+react@17.0.2 + '@types/wordpress__components': 19.10.1_react@17.0.2 '@wordpress/element': 4.8.0 transitivePeerDependencies: - react - react-dom dev: true - /@types/wordpress__components/19.10.1_react-dom@16.14.0+react@17.0.2: + /@types/wordpress__components/19.10.1: resolution: {integrity: sha512-zD+lrwMkh8ttnUQb6EUYZ55q6QGIwqqg0SfD8xX0kdinx/1KMKMUgInMkiVQ8ky56BIzADiYH3+A0Pdh76GAxw==} dependencies: '@types/react': 17.0.40 @@ -13475,8 +13651,8 @@ packages: '@types/wordpress__notices': 3.5.0 '@types/wordpress__rich-text': 3.4.6 '@wordpress/element': 4.8.0 - downshift: 6.1.9_react@17.0.2 - re-resizable: 6.9.5_react-dom@16.14.0+react@17.0.2 + downshift: 6.1.9 + re-resizable: 6.9.5 transitivePeerDependencies: - react - react-dom @@ -13497,6 +13673,21 @@ packages: - react-dom dev: true + /@types/wordpress__components/19.10.1_react@17.0.2: + resolution: {integrity: sha512-zD+lrwMkh8ttnUQb6EUYZ55q6QGIwqqg0SfD8xX0kdinx/1KMKMUgInMkiVQ8ky56BIzADiYH3+A0Pdh76GAxw==} + dependencies: + '@types/react': 17.0.40 + '@types/tinycolor2': 1.4.3 + '@types/wordpress__notices': 3.5.0 + '@types/wordpress__rich-text': 3.4.6 + '@wordpress/element': 4.8.0 + downshift: 6.1.9_react@17.0.2 + re-resizable: 6.9.5_react@17.0.2 + transitivePeerDependencies: + - react + - react-dom + dev: true + /@types/wordpress__compose/4.0.1: resolution: {integrity: sha512-2Czdu9Nyhxn0R7lSl+LwVyzHF+xgP6nuikRDt26VJPLAZhmgE9c/lmB8v8xiby8UGVWj6oKGQDmKda8kvoBWBQ==} dependencies: @@ -13527,10 +13718,10 @@ packages: resolution: {integrity: sha512-CUZv3WdPvWqnEwojbc4yEttwZlvsMGI8YurgB9CHVJXx6nQ4U2RU6PB0Mv7nxATufduFDMKq8TNpCHBenZqEjQ==} dev: true - /@types/wordpress__media-utils/3.0.0_react-dom@16.14.0+react@17.0.2: + /@types/wordpress__media-utils/3.0.0_react@17.0.2: resolution: {integrity: sha512-iNQoyc9BD8HevjABZPh4L2bKEy/UYMb8+iswjn8AgUYjBpu8Y1x+9f+Zc6JRu/HEsFyEprY5LjSOxRLjti1gRQ==} dependencies: - '@types/wordpress__block-editor': 7.0.0_react-dom@16.14.0+react@17.0.2 + '@types/wordpress__block-editor': 7.0.0_react@17.0.2 '@types/wordpress__core-data': 2.4.5 '@wordpress/element': 4.8.0 transitivePeerDependencies: @@ -13626,7 +13817,7 @@ packages: - supports-color dev: true - /@typescript-eslint/eslint-plugin/4.33.0_65e88d2733f36d3624b406e590cf0b3b: + /@typescript-eslint/eslint-plugin/4.33.0_d337b069968294b7daf1a5fc7d23d391: resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -13637,8 +13828,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.33.0_eslint@7.32.0+typescript@4.6.2 - '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.6.2 + '@typescript-eslint/experimental-utils': 4.33.0_eslint@7.32.0+typescript@4.2.4 + '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.2.4 '@typescript-eslint/scope-manager': 4.33.0 debug: 4.3.4 eslint: 7.32.0 @@ -13646,33 +13837,6 @@ packages: ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/eslint-plugin/5.15.0_04e3dcc98661c37bf3589c3e42f9613a: - resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/parser': 5.15.0_eslint@8.12.0+typescript@4.2.4 - '@typescript-eslint/scope-manager': 5.15.0 - '@typescript-eslint/type-utils': 5.15.0_eslint@8.12.0+typescript@4.2.4 - '@typescript-eslint/utils': 5.15.0_eslint@8.12.0+typescript@4.2.4 - debug: 4.3.3 - eslint: 8.12.0 - functional-red-black-tree: 1.0.1 - ignore: 5.2.0 - regexpp: 3.2.0 - semver: 7.3.5 tsutils: 3.21.0_typescript@4.2.4 typescript: 4.2.4 transitivePeerDependencies: @@ -13705,6 +13869,58 @@ packages: transitivePeerDependencies: - supports-color + /@typescript-eslint/eslint-plugin/5.15.0_db3cd493186c3234b80a3843c7aaf877: + resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/parser': 5.15.0_typescript@4.2.4 + '@typescript-eslint/scope-manager': 5.15.0 + '@typescript-eslint/type-utils': 5.15.0_typescript@4.2.4 + '@typescript-eslint/utils': 5.15.0_typescript@4.2.4 + debug: 4.3.3 + functional-red-black-tree: 1.0.1 + ignore: 5.2.0 + regexpp: 3.2.0 + semver: 7.3.5 + tsutils: 3.21.0_typescript@4.2.4 + typescript: 4.2.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/eslint-plugin/5.15.0_eslint@8.12.0+typescript@4.6.2: + resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.15.0 + '@typescript-eslint/type-utils': 5.15.0_eslint@8.12.0+typescript@4.6.2 + '@typescript-eslint/utils': 5.15.0_eslint@8.12.0+typescript@4.6.2 + debug: 4.3.3 + eslint: 8.12.0 + functional-red-black-tree: 1.0.1 + ignore: 5.2.0 + regexpp: 3.2.0 + semver: 7.3.5 + tsutils: 3.21.0_typescript@4.6.2 + typescript: 4.6.2 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/eslint-plugin/5.15.0_f2c49ce7d0e93ebcfdb4b7d25b131b28: resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -13732,7 +13948,7 @@ packages: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.3.0_b6a4ecba2c3480e044c0fe4aec7ba9a1: + /@typescript-eslint/eslint-plugin/5.3.0_ef742ec0d85d332d26b421951e243e75: resolution: {integrity: sha512-ARUEJHJrq85aaiCqez7SANeahDsJTD3AEua34EoQN9pHS6S5Bq9emcIaGGySt/4X2zSi+vF5hAH52sEen7IO7g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -13743,8 +13959,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 5.3.0_eslint@8.1.0+typescript@4.6.2 - '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.6.2 + '@typescript-eslint/experimental-utils': 5.3.0_eslint@8.1.0+typescript@4.2.4 + '@typescript-eslint/parser': 5.3.0_eslint@8.1.0+typescript@4.2.4 '@typescript-eslint/scope-manager': 5.3.0 debug: 4.3.2 eslint: 8.1.0 @@ -13752,8 +13968,8 @@ packages: ignore: 5.1.8 regexpp: 3.2.0 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + tsutils: 3.21.0_typescript@4.2.4 + typescript: 4.2.4 transitivePeerDependencies: - supports-color dev: true @@ -13833,7 +14049,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/4.33.0_eslint@7.32.0+typescript@4.6.2: + /@typescript-eslint/experimental-utils/4.33.0_eslint@7.32.0+typescript@4.2.4: resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -13842,7 +14058,7 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.6.2 + '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.2.4 eslint: 7.32.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@7.32.0 @@ -13851,7 +14067,7 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/5.3.0_eslint@8.1.0+typescript@4.6.2: + /@typescript-eslint/experimental-utils/5.3.0_eslint@8.1.0+typescript@4.2.4: resolution: {integrity: sha512-NFVxYTjKj69qB0FM+piah1x3G/63WB8vCBMnlnEHUsiLzXSTWb9FmFn36FD9Zb4APKBLY3xRArOGSMQkuzTF1w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -13860,7 +14076,7 @@ packages: '@types/json-schema': 7.0.9 '@typescript-eslint/scope-manager': 5.3.0 '@typescript-eslint/types': 5.3.0 - '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.6.2 + '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.2.4 eslint: 8.1.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.1.0 @@ -13869,24 +14085,6 @@ packages: - typescript dev: true - /@typescript-eslint/experimental-utils/5.4.0_eslint@8.12.0+typescript@4.2.4: - resolution: {integrity: sha512-Nz2JDIQUdmIGd6p33A+naQmwfkU5KVTLb/5lTk+tLVTDacZKoGQisj8UCxk7onJcrgjIvr8xWqkYI+DbI3TfXg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - dependencies: - '@types/json-schema': 7.0.9 - '@typescript-eslint/scope-manager': 5.4.0 - '@typescript-eslint/types': 5.4.0 - '@typescript-eslint/typescript-estree': 5.4.0_typescript@4.2.4 - eslint: 8.12.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.12.0 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - /@typescript-eslint/experimental-utils/5.4.0_eslint@8.12.0+typescript@4.6.2: resolution: {integrity: sha512-Nz2JDIQUdmIGd6p33A+naQmwfkU5KVTLb/5lTk+tLVTDacZKoGQisj8UCxk7onJcrgjIvr8xWqkYI+DbI3TfXg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -13922,6 +14120,23 @@ packages: - typescript dev: true + /@typescript-eslint/experimental-utils/5.4.0_typescript@4.2.4: + resolution: {integrity: sha512-Nz2JDIQUdmIGd6p33A+naQmwfkU5KVTLb/5lTk+tLVTDacZKoGQisj8UCxk7onJcrgjIvr8xWqkYI+DbI3TfXg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + dependencies: + '@types/json-schema': 7.0.9 + '@typescript-eslint/scope-manager': 5.4.0 + '@typescript-eslint/types': 5.4.0 + '@typescript-eslint/typescript-estree': 5.4.0_typescript@4.2.4 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + /@typescript-eslint/parser/3.10.1_eslint@6.8.0+typescript@3.9.7: resolution: {integrity: sha512-Ug1RcWcrJP02hmtaXVS3axPPTTPnZjupqhgj+NnZ6BCkwSImWk/283347+x9wN+lqOdK9Eo3vsyiyDHgsmiEJw==} engines: {node: ^10.12.0 || >=12.0.0} @@ -13943,7 +14158,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/4.33.0_eslint@7.32.0+typescript@4.6.2: + /@typescript-eslint/parser/4.33.0_eslint@7.32.0+typescript@4.2.4: resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -13955,10 +14170,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 - '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.6.2 + '@typescript-eslint/typescript-estree': 4.33.0_typescript@4.2.4 debug: 4.3.4 eslint: 7.32.0 - typescript: 4.6.2 + typescript: 4.2.4 transitivePeerDependencies: - supports-color dev: true @@ -13983,25 +14198,6 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.15.0_eslint@8.12.0+typescript@4.2.4: - resolution: {integrity: sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 5.15.0 - '@typescript-eslint/types': 5.15.0 - '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.2.4 - debug: 4.3.3 - eslint: 8.12.0 - typescript: 4.2.4 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/parser/5.15.0_eslint@8.12.0+typescript@4.6.2: resolution: {integrity: sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -14021,7 +14217,26 @@ packages: transitivePeerDependencies: - supports-color - /@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.6.2: + /@typescript-eslint/parser/5.15.0_typescript@4.2.4: + resolution: {integrity: sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.15.0 + '@typescript-eslint/types': 5.15.0 + '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.2.4 + debug: 4.3.3 + typescript: 4.2.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser/5.3.0_eslint@8.1.0+typescript@4.2.4: resolution: {integrity: sha512-rKu/yAReip7ovx8UwOAszJVO5MgBquo8WjIQcp1gx4pYQCwYzag+I5nVNHO4MqyMkAo0gWt2gWUi+36gWAVKcw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14033,10 +14248,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.3.0 '@typescript-eslint/types': 5.3.0 - '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.6.2 + '@typescript-eslint/typescript-estree': 5.3.0_typescript@4.2.4 debug: 4.3.2 eslint: 8.1.0 - typescript: 4.6.2 + typescript: 4.2.4 transitivePeerDependencies: - supports-color dev: true @@ -14110,25 +14325,6 @@ packages: - supports-color dev: true - /@typescript-eslint/type-utils/5.15.0_eslint@8.12.0+typescript@4.2.4: - resolution: {integrity: sha512-KGeDoEQ7gHieLydujGEFLyLofipe9PIzfvA/41urz4hv+xVxPEbmMQonKSynZ0Ks2xDhJQ4VYjB3DnRiywvKDA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/utils': 5.15.0_eslint@8.12.0+typescript@4.2.4 - debug: 4.3.3 - eslint: 8.12.0 - tsutils: 3.21.0_typescript@4.2.4 - typescript: 4.2.4 - transitivePeerDependencies: - - supports-color - dev: true - /@typescript-eslint/type-utils/5.15.0_eslint@8.12.0+typescript@4.6.2: resolution: {integrity: sha512-KGeDoEQ7gHieLydujGEFLyLofipe9PIzfvA/41urz4hv+xVxPEbmMQonKSynZ0Ks2xDhJQ4VYjB3DnRiywvKDA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -14147,6 +14343,24 @@ packages: transitivePeerDependencies: - supports-color + /@typescript-eslint/type-utils/5.15.0_typescript@4.2.4: + resolution: {integrity: sha512-KGeDoEQ7gHieLydujGEFLyLofipe9PIzfvA/41urz4hv+xVxPEbmMQonKSynZ0Ks2xDhJQ4VYjB3DnRiywvKDA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/utils': 5.15.0_typescript@4.2.4 + debug: 4.3.3 + tsutils: 3.21.0_typescript@4.2.4 + typescript: 4.2.4 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/types/3.10.1: resolution: {integrity: sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} @@ -14234,7 +14448,7 @@ packages: - supports-color dev: true - /@typescript-eslint/typescript-estree/4.33.0_typescript@4.6.2: + /@typescript-eslint/typescript-estree/4.33.0_typescript@4.2.4: resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -14249,8 +14463,8 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + tsutils: 3.21.0_typescript@4.2.4 + typescript: 4.2.4 transitivePeerDependencies: - supports-color dev: true @@ -14274,6 +14488,7 @@ packages: typescript: 4.2.4 transitivePeerDependencies: - supports-color + dev: true /@typescript-eslint/typescript-estree/5.15.0_typescript@4.6.2: resolution: {integrity: sha512-Hb0e3dGc35b75xLzixM3cSbG1sSbrTBQDfIScqdyvrfJZVEi4XWAT+UL/HMxEdrJNB8Yk28SKxPLtAhfCbBInA==} @@ -14295,7 +14510,7 @@ packages: transitivePeerDependencies: - supports-color - /@typescript-eslint/typescript-estree/5.3.0_typescript@4.6.2: + /@typescript-eslint/typescript-estree/5.3.0_typescript@4.2.4: resolution: {integrity: sha512-FJ0nqcaUOpn/6Z4Jwbtf+o0valjBLkqc3MWkMvrhA2TvzFXtcclIM8F4MBEmYa2kgcI8EZeSAzwoSrIC8JYkug==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -14310,8 +14525,8 @@ packages: globby: 11.0.4 is-glob: 4.0.3 semver: 7.3.5 - tsutils: 3.21.0_typescript@4.6.2 - typescript: 4.6.2 + tsutils: 3.21.0_typescript@4.2.4 + typescript: 4.2.4 transitivePeerDependencies: - supports-color dev: true @@ -14396,24 +14611,6 @@ packages: - typescript dev: true - /@typescript-eslint/utils/5.15.0_eslint@8.12.0+typescript@4.2.4: - resolution: {integrity: sha512-081rWu2IPKOgTOhHUk/QfxuFog8m4wxW43sXNOMSCdh578tGJ1PAaWPsj42LOa7pguh173tNlMigsbrHvh/mtA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - dependencies: - '@types/json-schema': 7.0.9 - '@typescript-eslint/scope-manager': 5.15.0 - '@typescript-eslint/types': 5.15.0 - '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.2.4 - eslint: 8.12.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.12.0 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - /@typescript-eslint/utils/5.15.0_eslint@8.12.0+typescript@4.6.2: resolution: {integrity: sha512-081rWu2IPKOgTOhHUk/QfxuFog8m4wxW43sXNOMSCdh578tGJ1PAaWPsj42LOa7pguh173tNlMigsbrHvh/mtA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -14431,6 +14628,23 @@ packages: - supports-color - typescript + /@typescript-eslint/utils/5.15.0_typescript@4.2.4: + resolution: {integrity: sha512-081rWu2IPKOgTOhHUk/QfxuFog8m4wxW43sXNOMSCdh578tGJ1PAaWPsj42LOa7pguh173tNlMigsbrHvh/mtA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.9 + '@typescript-eslint/scope-manager': 5.15.0 + '@typescript-eslint/types': 5.15.0 + '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.2.4 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + /@typescript-eslint/visitor-keys/3.10.1: resolution: {integrity: sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} @@ -14472,6 +14686,14 @@ packages: resolution: {integrity: sha512-7WFIDfeTB+7RBui8YOrB2xbgmvMsvaCDjyzrdvECKkgOpIynNSdhlLXjiFuqQMtnK71IL/9WNZNU0P8xuaLuUQ==} dev: false + /@use-gesture/react/10.2.10: + resolution: {integrity: sha512-znChnKVAMMGXD9J7fCKN686BJNBlUJaRtCu92IQXVWdcxg4MqS0SgsBslGnTWXTlsHVkg5zcGjKYf7qYkOf0Rg==} + peerDependencies: + react: '>= 16.8.0' + dependencies: + '@use-gesture/core': 10.2.10 + dev: false + /@use-gesture/react/10.2.10_react@17.0.2: resolution: {integrity: sha512-znChnKVAMMGXD9J7fCKN686BJNBlUJaRtCu92IQXVWdcxg4MqS0SgsBslGnTWXTlsHVkg5zcGjKYf7qYkOf0Rg==} peerDependencies: @@ -14486,6 +14708,7 @@ packages: dependencies: '@webassemblyjs/helper-numbers': 1.11.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + dev: true /@webassemblyjs/ast/1.9.0: resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==} @@ -14497,6 +14720,7 @@ packages: /@webassemblyjs/floating-point-hex-parser/1.11.1: resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} + dev: true /@webassemblyjs/floating-point-hex-parser/1.9.0: resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==} @@ -14504,6 +14728,7 @@ packages: /@webassemblyjs/helper-api-error/1.11.1: resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} + dev: true /@webassemblyjs/helper-api-error/1.9.0: resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==} @@ -14511,6 +14736,7 @@ packages: /@webassemblyjs/helper-buffer/1.11.1: resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} + dev: true /@webassemblyjs/helper-buffer/1.9.0: resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==} @@ -14538,9 +14764,11 @@ packages: '@webassemblyjs/floating-point-hex-parser': 1.11.1 '@webassemblyjs/helper-api-error': 1.11.1 '@xtuc/long': 4.2.2 + dev: true /@webassemblyjs/helper-wasm-bytecode/1.11.1: resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} + dev: true /@webassemblyjs/helper-wasm-bytecode/1.9.0: resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==} @@ -14553,6 +14781,7 @@ packages: '@webassemblyjs/helper-buffer': 1.11.1 '@webassemblyjs/helper-wasm-bytecode': 1.11.1 '@webassemblyjs/wasm-gen': 1.11.1 + dev: true /@webassemblyjs/helper-wasm-section/1.9.0: resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==} @@ -14567,6 +14796,7 @@ packages: resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} dependencies: '@xtuc/ieee754': 1.2.0 + dev: true /@webassemblyjs/ieee754/1.9.0: resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==} @@ -14578,6 +14808,7 @@ packages: resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} dependencies: '@xtuc/long': 4.2.2 + dev: true /@webassemblyjs/leb128/1.9.0: resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==} @@ -14587,6 +14818,7 @@ packages: /@webassemblyjs/utf8/1.11.1: resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} + dev: true /@webassemblyjs/utf8/1.9.0: resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==} @@ -14603,6 +14835,7 @@ packages: '@webassemblyjs/wasm-opt': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 '@webassemblyjs/wast-printer': 1.11.1 + dev: true /@webassemblyjs/wasm-edit/1.9.0: resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==} @@ -14625,6 +14858,7 @@ packages: '@webassemblyjs/ieee754': 1.11.1 '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 + dev: true /@webassemblyjs/wasm-gen/1.9.0: resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==} @@ -14643,6 +14877,7 @@ packages: '@webassemblyjs/helper-buffer': 1.11.1 '@webassemblyjs/wasm-gen': 1.11.1 '@webassemblyjs/wasm-parser': 1.11.1 + dev: true /@webassemblyjs/wasm-opt/1.9.0: resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==} @@ -14662,6 +14897,7 @@ packages: '@webassemblyjs/ieee754': 1.11.1 '@webassemblyjs/leb128': 1.11.1 '@webassemblyjs/utf8': 1.11.1 + dev: true /@webassemblyjs/wasm-parser/1.9.0: resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==} @@ -14690,6 +14926,7 @@ packages: dependencies: '@webassemblyjs/ast': 1.11.1 '@xtuc/long': 4.2.2 + dev: true /@webassemblyjs/wast-printer/1.9.0: resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==} @@ -14730,23 +14967,20 @@ packages: webpack-cli: 4.9.2_b04de8011015a40c567469bf79798750 dev: true - /@wojtekmaj/enzyme-adapter-react-17/0.6.6_6e4937d009f46c27e18fd81ba2de902e: + /@wojtekmaj/enzyme-adapter-react-17/0.6.6_enzyme@3.11.0: resolution: {integrity: sha512-gSfhg8CiL0Vwc2UgUblGVZIy7M0KyXaZsd8+QwzV8TSVRLkGyzdLtYEcs9wRWyQTsdmOd+oRGqbVgUX7AVJxug==} peerDependencies: enzyme: ^3.0.0 react: ^17.0.0-0 react-dom: ^17.0.0-0 dependencies: - '@wojtekmaj/enzyme-adapter-utils': 0.1.2_react@17.0.2 + '@wojtekmaj/enzyme-adapter-utils': 0.1.2 enzyme: 3.11.0 enzyme-shallow-equal: 1.0.4 has: 1.0.3 prop-types: 15.7.2 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 react-is: 17.0.2 - react-test-renderer: 17.0.2_react@17.0.2 - dev: true + react-test-renderer: 17.0.2 /@wojtekmaj/enzyme-adapter-react-17/0.6.6_fae758709a8810ba97b4c03852dde4d0: resolution: {integrity: sha512-gSfhg8CiL0Vwc2UgUblGVZIy7M0KyXaZsd8+QwzV8TSVRLkGyzdLtYEcs9wRWyQTsdmOd+oRGqbVgUX7AVJxug==} @@ -14764,6 +14998,17 @@ packages: react-dom: 17.0.2_react@17.0.2 react-is: 17.0.2 react-test-renderer: 17.0.2_react@17.0.2 + dev: true + + /@wojtekmaj/enzyme-adapter-utils/0.1.2: + resolution: {integrity: sha512-MM/DqDqvxNVlWLqSVQiUbRN9MuDLJfefmPbJ8ZKdmdf5ID8G+i42XhFpoQh5bAZUCdwzRae3+WSZl2lXcFOrhw==} + peerDependencies: + react: ^17.0.0-0 + dependencies: + function.prototype.name: 1.1.5 + has: 1.0.3 + object.fromentries: 2.0.5 + prop-types: 15.7.2 /@wojtekmaj/enzyme-adapter-utils/0.1.2_react@17.0.2: resolution: {integrity: sha512-MM/DqDqvxNVlWLqSVQiUbRN9MuDLJfefmPbJ8ZKdmdf5ID8G+i42XhFpoQh5bAZUCdwzRae3+WSZl2lXcFOrhw==} @@ -14775,6 +15020,7 @@ packages: object.fromentries: 2.0.5 prop-types: 15.7.2 react: 17.0.2 + dev: true /@woocommerce/woocommerce-rest-api/1.0.1: resolution: {integrity: sha512-YBk3EEYE0zax/egx6Rhpbu6hcCFyZpYQrjH9JO4NUGU3n3T0W9Edn7oAUbjL/c7Oezcg+UaQluCaKjY/B3zwxg==} @@ -14784,8 +15030,6 @@ packages: create-hmac: 1.1.7 oauth-1.0a: 2.2.6 url-parse: 1.5.10 - transitivePeerDependencies: - - supports-color dev: true /@wordpress/a11y/2.15.3: @@ -14831,16 +15075,6 @@ packages: '@wordpress/url': 2.22.2 transitivePeerDependencies: - react-native - dev: true - - /@wordpress/api-fetch/3.23.1_react-native@0.69.4: - resolution: {integrity: sha512-dmeigLuvqYAzpQ2hWUQT1P5VQAjkj9hS1z7PgNi1CcULFPbY8BWW+KiBETUu6Wm+rlSbUL2dC8qrA4JDv9ja5A==} - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/i18n': 3.20.0 - '@wordpress/url': 2.22.2_react-native@0.69.4 - transitivePeerDependencies: - - react-native /@wordpress/api-fetch/4.0.0: resolution: {integrity: sha512-4nWH/gEpG7/VnEJbjbOWS0AWBnX5snPc3ZaKcXNZsLQlv9YgsS8idL/BNkUl9/ylZeez/UX4lJLVkOR5clvg8A==} @@ -14850,16 +15084,6 @@ packages: '@wordpress/url': 2.22.2 transitivePeerDependencies: - react-native - dev: true - - /@wordpress/api-fetch/4.0.0_react-native@0.69.4: - resolution: {integrity: sha512-4nWH/gEpG7/VnEJbjbOWS0AWBnX5snPc3ZaKcXNZsLQlv9YgsS8idL/BNkUl9/ylZeez/UX4lJLVkOR5clvg8A==} - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/i18n': 3.20.0 - '@wordpress/url': 2.22.2_react-native@0.69.4 - transitivePeerDependencies: - - react-native /@wordpress/api-fetch/5.2.6: resolution: {integrity: sha512-AG8KdCHwtYJWR38AAU7nEI+UbumUSqSBthQj3rShLUVyFbYGkQdpwXJJG6vFj7FjIp41zljiyj3K1Fh3cqdaAw==} @@ -15044,6 +15268,35 @@ packages: '@babel/runtime': 7.17.7 dev: false + /@wordpress/blocks/11.3.1: + resolution: {integrity: sha512-0T/qD1/hxJpNrUrJ2suZY0MP6Gw83mXfkaOupZ7rwjcWEi8c6AmzXaU/amAMNobM6oiNr4Sa6FctnnTGCEC1mQ==} + engines: {node: '>=12'} + peerDependencies: + react: ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/autop': 3.4.1 + '@wordpress/blob': 3.4.1 + '@wordpress/block-serialization-default-parser': 4.4.1 + '@wordpress/compose': 5.2.1 + '@wordpress/data': 6.4.1 + '@wordpress/deprecated': 3.4.1 + '@wordpress/dom': 3.4.1 + '@wordpress/element': 4.8.0 + '@wordpress/hooks': 3.5.0 + '@wordpress/html-entities': 3.4.1 + '@wordpress/i18n': 4.4.1 + '@wordpress/is-shallow-equal': 4.4.1 + '@wordpress/shortcode': 3.4.1 + colord: 2.9.2 + hpq: 1.3.0 + lodash: 4.17.21 + rememo: 3.0.0 + showdown: 1.9.1 + simple-html-tokenizer: 0.5.11 + uuid: 8.3.2 + dev: false + /@wordpress/blocks/11.3.1_react@17.0.2: resolution: {integrity: sha512-0T/qD1/hxJpNrUrJ2suZY0MP6Gw83mXfkaOupZ7rwjcWEi8c6AmzXaU/amAMNobM6oiNr4Sa6FctnnTGCEC1mQ==} engines: {node: '>=12'} @@ -15087,16 +15340,16 @@ packages: resolution: {integrity: sha512-UH0Ifmm4tEjVPOtiqH6yxDvk2EKtqSAhnyhyfSIb0wUnEoGsWTjREZjzuhgjt/I2nTqfg+0gUSzL5D0yQH6wDQ==} engines: {node: '>=12'} - /@wordpress/components/12.0.9_9bf202fc0c1ad26f1b75f6cec4791c09: + /@wordpress/components/12.0.9_@wordpress+data@4.27.3: resolution: {integrity: sha512-J6uM20Jpchr/NywQmAeVqx/LohwKizi2F8HylqN1Xt2mYzuOrDirlEhQT1wmfqiEqEt0l+mefZEBlxeknMfBag==} dependencies: '@babel/runtime': 7.17.7 - '@emotion/core': 10.3.1_react@17.0.2 + '@emotion/core': 10.3.1 '@emotion/css': 10.0.27 - '@emotion/native': 10.0.27_73b2b4ca125331e03647a4259a8169e9 - '@emotion/styled': 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 + '@emotion/native': 10.0.27_@emotion+core@10.3.1 + '@emotion/styled': 10.3.0_@emotion+core@10.3.1 '@wordpress/a11y': 2.15.3 - '@wordpress/compose': 3.25.3_react@17.0.2 + '@wordpress/compose': 3.25.3 '@wordpress/date': 3.15.1 '@wordpress/deprecated': 2.12.3 '@wordpress/dom': 2.18.0 @@ -15107,27 +15360,27 @@ packages: '@wordpress/is-shallow-equal': 3.1.3 '@wordpress/keycodes': 2.19.3 '@wordpress/primitives': 1.12.3 - '@wordpress/rich-text': 3.25.3_react@17.0.2 + '@wordpress/rich-text': 3.25.3 '@wordpress/warning': 1.4.2 - '@wp-g2/components': 0.0.140_d01d4077d4bfa845377c80810a915fa9 - '@wp-g2/context': 0.0.140_dc8a8caa16a74d4d87e7d3e8d3a536e5 - '@wp-g2/styles': 0.0.140_dc8a8caa16a74d4d87e7d3e8d3a536e5 - '@wp-g2/utils': 0.0.140_react-dom@16.14.0+react@17.0.2 + '@wp-g2/components': 0.0.140_5bd65f250b6b6f498b93c4f7fa8a50e6 + '@wp-g2/context': 0.0.140_781a76f2df0044de58919a3ef767af9f + '@wp-g2/styles': 0.0.140_781a76f2df0044de58919a3ef767af9f + '@wp-g2/utils': 0.0.140 classnames: 2.3.1 dom-scroll-into-view: 1.2.1 - downshift: 6.1.7_react@17.0.2 + downshift: 6.1.7 gradient-parser: 0.1.5 highlight-words-core: 1.2.2 lodash: 4.17.21 memize: 1.1.0 moment: 2.29.1 - re-resizable: 6.9.5_react-dom@16.14.0+react@17.0.2 - react-dates: 17.2.0_1c0434f8966d236e87c049995b041cae + re-resizable: 6.9.5 + react-dates: 17.2.0_moment@2.29.1 react-merge-refs: 1.1.0 - react-resize-aware: 3.1.1_react@17.0.2 - react-spring: 8.0.27_react-dom@16.14.0+react@17.0.2 - react-use-gesture: 9.1.3_react@17.0.2 - reakit: 1.3.11_react-dom@16.14.0+react@17.0.2 + react-resize-aware: 3.1.1 + react-spring: 8.0.27 + react-use-gesture: 9.1.3 + reakit: 1.3.11 rememo: 3.0.0 tinycolor2: 1.4.2 uuid: 8.3.2 @@ -15139,7 +15392,7 @@ packages: - react-native dev: false - /@wordpress/components/19.12.0_686eff9ab75237351863ab9743333cca: + /@wordpress/components/19.12.0_707fe24a3ddaa8115c00d0a9966a19ae: resolution: {integrity: sha512-Ac1+aIMM7NDgN3G7i5kcaETSvZfeqB4U6PubApPmM6FdBF5VfkYUZeqNcC7cuJdveyokRrqHg11/l+DcJGA7/g==} engines: {node: '>=12'} peerDependencies: @@ -15153,7 +15406,7 @@ packages: '@emotion/serialize': 1.0.2 '@emotion/styled': 11.8.1_fd44c83c6284aa4d6bde750ada762da8 '@emotion/utils': 1.0.0 - '@floating-ui/react-dom': 0.6.3_d9a3f2afc99990b2b757e465d25e781f + '@floating-ui/react-dom': 0.6.3_00d6772dea80510e818fd171caaa025a '@use-gesture/react': 10.2.10_react@17.0.2 '@wordpress/a11y': 3.10.0 '@wordpress/compose': 5.8.0_react@17.0.2 @@ -15174,25 +15427,24 @@ packages: colord: 2.9.2 dom-scroll-into-view: 1.2.1 downshift: 6.1.9_react@17.0.2 - framer-motion: 6.2.8_react-dom@16.14.0+react@17.0.2 + framer-motion: 6.2.8_react@17.0.2 gradient-parser: 0.1.5 highlight-words-core: 1.2.2 lodash: 4.17.21 memize: 1.1.0 moment: 2.29.1 - re-resizable: 6.9.5_react-dom@16.14.0+react@17.0.2 + re-resizable: 6.9.5_react@17.0.2 react: 17.0.2 - react-colorful: 5.5.1_react-dom@16.14.0+react@17.0.2 - react-dates: 21.8.0_895effa80be9def90ecbc38e5a9fcfe5 - react-dom: 16.14.0_react@17.0.2 - reakit: 1.3.11_react-dom@16.14.0+react@17.0.2 + react-colorful: 5.5.1_react@17.0.2 + react-dates: 21.8.0_33310dc40fed09c713f34ce185e0313d + reakit: 1.3.11_react@17.0.2 uuid: 8.3.2 transitivePeerDependencies: - '@babel/core' - '@types/react' dev: false - /@wordpress/components/19.6.1_686eff9ab75237351863ab9743333cca: + /@wordpress/components/19.6.1_707fe24a3ddaa8115c00d0a9966a19ae: resolution: {integrity: sha512-O6hnJm9tfxkPnKknnJInpMy6qUS29CfRYtX5p5HdQMR2QFaOYvmwy7of3s5zBh7mubx3NeSzMy+ytZEWJ9ETJw==} engines: {node: '>=12'} peerDependencies: @@ -15226,26 +15478,25 @@ packages: colord: 2.9.2 dom-scroll-into-view: 1.2.1 downshift: 6.1.7_react@17.0.2 - framer-motion: 6.2.8_react-dom@16.14.0+react@17.0.2 + framer-motion: 6.2.8_react@17.0.2 gradient-parser: 0.1.5 highlight-words-core: 1.2.2 lodash: 4.17.21 memize: 1.1.0 moment: 2.29.1 - re-resizable: 6.9.5_react-dom@16.14.0+react@17.0.2 + re-resizable: 6.9.5_react@17.0.2 react: 17.0.2 - react-colorful: 5.5.1_react-dom@16.14.0+react@17.0.2 - react-dates: 17.2.0_1c0434f8966d236e87c049995b041cae - react-dom: 16.14.0_react@17.0.2 + react-colorful: 5.5.1_react@17.0.2 + react-dates: 17.2.0_moment@2.29.1+react@17.0.2 react-resize-aware: 3.1.1_react@17.0.2 - reakit: 1.3.11_react-dom@16.14.0+react@17.0.2 + reakit: 1.3.11_react@17.0.2 uuid: 8.3.2 transitivePeerDependencies: - '@babel/core' - '@types/react' dev: false - /@wordpress/components/19.6.1_978f344c876a57c1143ffe356b90df31: + /@wordpress/components/19.6.1_@babel+core@7.17.8: resolution: {integrity: sha512-O6hnJm9tfxkPnKknnJInpMy6qUS29CfRYtX5p5HdQMR2QFaOYvmwy7of3s5zBh7mubx3NeSzMy+ytZEWJ9ETJw==} engines: {node: '>=12'} peerDependencies: @@ -15255,13 +15506,13 @@ packages: '@babel/runtime': 7.17.7 '@emotion/cache': 11.7.1 '@emotion/css': 11.7.1_@babel+core@7.17.8 - '@emotion/react': 11.8.2_@babel+core@7.17.8+react@17.0.2 + '@emotion/react': 11.8.2_@babel+core@7.17.8 '@emotion/serialize': 1.0.2 - '@emotion/styled': 11.8.1_58c6d579b5d4620c3e3267b14eb7ebcf + '@emotion/styled': 11.8.1_14926ce31c24bafac75661d38a5c90f5 '@emotion/utils': 1.0.0 - '@use-gesture/react': 10.2.10_react@17.0.2 + '@use-gesture/react': 10.2.10 '@wordpress/a11y': 3.4.1 - '@wordpress/compose': 5.2.1_react@17.0.2 + '@wordpress/compose': 5.2.1 '@wordpress/date': 4.4.1 '@wordpress/deprecated': 3.4.1 '@wordpress/dom': 3.4.1 @@ -15273,25 +15524,23 @@ packages: '@wordpress/is-shallow-equal': 4.4.1 '@wordpress/keycodes': 3.4.1 '@wordpress/primitives': 3.2.1 - '@wordpress/rich-text': 5.2.1_react@17.0.2 + '@wordpress/rich-text': 5.2.1 '@wordpress/warning': 2.4.1 classnames: 2.3.1 colord: 2.9.2 dom-scroll-into-view: 1.2.1 - downshift: 6.1.7_react@17.0.2 - framer-motion: 6.2.8_react-dom@17.0.2+react@17.0.2 + downshift: 6.1.7 + framer-motion: 6.2.8 gradient-parser: 0.1.5 highlight-words-core: 1.2.2 lodash: 4.17.21 memize: 1.1.0 moment: 2.29.1 - re-resizable: 6.9.5_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 - react-colorful: 5.5.1_react-dom@17.0.2+react@17.0.2 - react-dates: 17.2.0_d0804d3726ad84366bcc42e494508e1e - react-dom: 17.0.2_react@17.0.2 - react-resize-aware: 3.1.1_react@17.0.2 - reakit: 1.3.11_react-dom@17.0.2+react@17.0.2 + re-resizable: 6.9.5 + react-colorful: 5.5.1 + react-dates: 17.2.0_moment@2.29.1 + react-resize-aware: 3.1.1 + reakit: 1.3.11 uuid: 8.3.2 transitivePeerDependencies: - '@babel/core' @@ -15351,6 +15600,25 @@ packages: - '@types/react' dev: false + /@wordpress/compose/3.25.3: + resolution: {integrity: sha512-tCO2EnJCkCH548OqA0uU8V1k/1skz2QwBlHs8ZQSpimqUS4OWWsAlndCEFe4U4vDTqFt2ow7tzAir+05Cw8MAg==} + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/deprecated': 2.12.3 + '@wordpress/dom': 2.18.0 + '@wordpress/element': 4.8.0 + '@wordpress/is-shallow-equal': 3.1.3 + '@wordpress/keycodes': 2.19.3 + '@wordpress/priority-queue': 1.11.2 + clipboard: 2.0.10 + lodash: 4.17.21 + memize: 1.1.0 + mousetrap: 1.6.5 + react-resize-aware: 3.1.1 + use-memo-one: 1.1.2 + transitivePeerDependencies: + - react + /@wordpress/compose/3.25.3_react@16.14.0: resolution: {integrity: sha512-tCO2EnJCkCH548OqA0uU8V1k/1skz2QwBlHs8ZQSpimqUS4OWWsAlndCEFe4U4vDTqFt2ow7tzAir+05Cw8MAg==} dependencies: @@ -15389,26 +15657,28 @@ packages: use-memo-one: 1.1.2_react@17.0.2 transitivePeerDependencies: - react + dev: false - /@wordpress/compose/3.25.3_react@18.0.0: - resolution: {integrity: sha512-tCO2EnJCkCH548OqA0uU8V1k/1skz2QwBlHs8ZQSpimqUS4OWWsAlndCEFe4U4vDTqFt2ow7tzAir+05Cw8MAg==} + /@wordpress/compose/5.2.1: + resolution: {integrity: sha512-0l5UOiq5tDFeuIsdSVsWzNETHZagTnSBSTdGsxDmKIi5NC7vf1pXs4rlrEA45vUdFm/SbpIA9gp+NFzfpVKIXw==} + engines: {node: '>=12'} + peerDependencies: + react: ^17.0.0 dependencies: '@babel/runtime': 7.17.7 - '@wordpress/deprecated': 2.12.3 - '@wordpress/dom': 2.18.0 + '@types/lodash': 4.14.180 + '@types/mousetrap': 1.6.9 + '@wordpress/deprecated': 3.4.1 + '@wordpress/dom': 3.4.1 '@wordpress/element': 4.8.0 - '@wordpress/is-shallow-equal': 3.1.3 - '@wordpress/keycodes': 2.19.3 - '@wordpress/priority-queue': 1.11.2 + '@wordpress/is-shallow-equal': 4.4.1 + '@wordpress/keycodes': 3.4.1 + '@wordpress/priority-queue': 2.4.1 clipboard: 2.0.10 lodash: 4.17.21 - memize: 1.1.0 mousetrap: 1.6.5 - react-resize-aware: 3.1.1_react@18.0.0 - use-memo-one: 1.1.2_react@18.0.0 - transitivePeerDependencies: - - react - dev: true + react-resize-aware: 3.1.1 + use-memo-one: 1.1.2 /@wordpress/compose/5.2.1_react@17.0.2: resolution: {integrity: sha512-0l5UOiq5tDFeuIsdSVsWzNETHZagTnSBSTdGsxDmKIi5NC7vf1pXs4rlrEA45vUdFm/SbpIA9gp+NFzfpVKIXw==} @@ -15431,28 +15701,7 @@ packages: react: 17.0.2 react-resize-aware: 3.1.1_react@17.0.2 use-memo-one: 1.1.2_react@17.0.2 - - /@wordpress/compose/5.2.1_react@18.0.0: - resolution: {integrity: sha512-0l5UOiq5tDFeuIsdSVsWzNETHZagTnSBSTdGsxDmKIi5NC7vf1pXs4rlrEA45vUdFm/SbpIA9gp+NFzfpVKIXw==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@types/lodash': 4.14.180 - '@types/mousetrap': 1.6.9 - '@wordpress/deprecated': 3.4.1 - '@wordpress/dom': 3.4.1 - '@wordpress/element': 4.8.0 - '@wordpress/is-shallow-equal': 4.4.1 - '@wordpress/keycodes': 3.4.1 - '@wordpress/priority-queue': 2.4.1 - clipboard: 2.0.10 - lodash: 4.17.21 - mousetrap: 1.6.5 - react: 18.0.0 - react-resize-aware: 3.1.1_react@18.0.0 - use-memo-one: 1.1.2_react@18.0.0 + dev: false /@wordpress/compose/5.8.0_react@17.0.2: resolution: {integrity: sha512-GeXtrLvLhPfQEprcsKeDCtzj2Ew8TTtoAZ7NDAJrNZRqElBs7MAeZkXQ+64u42J8K0dhDQ6v4lCR/Z0f5cMfng==} @@ -15476,6 +15725,29 @@ packages: use-memo-one: 1.1.2_react@17.0.2 dev: false + /@wordpress/core-data/4.2.1: + resolution: {integrity: sha512-L0Gia4qbzwU7mXTUPep94MRgvt8a0iR18bfPTOz2ptYW6ciAftearEEBBIEoAExnZhW+8ihHNCH/Jm2NOqGaKg==} + engines: {node: '>=12'} + peerDependencies: + react: ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/api-fetch': 6.1.1 + '@wordpress/blocks': 11.3.1 + '@wordpress/data': 6.4.1 + '@wordpress/deprecated': 3.4.1 + '@wordpress/element': 4.8.0 + '@wordpress/html-entities': 3.4.1 + '@wordpress/i18n': 4.4.1 + '@wordpress/is-shallow-equal': 4.4.1 + '@wordpress/url': 3.5.1 + equivalent-key-map: 0.2.2 + lodash: 4.17.21 + memize: 1.1.0 + rememo: 3.0.0 + uuid: 8.3.2 + dev: false + /@wordpress/core-data/4.2.1_react@17.0.2: resolution: {integrity: sha512-L0Gia4qbzwU7mXTUPep94MRgvt8a0iR18bfPTOz2ptYW6ciAftearEEBBIEoAExnZhW+8ihHNCH/Jm2NOqGaKg==} engines: {node: '>=12'} @@ -15510,41 +15782,16 @@ packages: webpack: 5.70.0_webpack-cli@4.9.2 dev: true - /@wordpress/data-controls/1.21.3_react-native@0.69.4+react@17.0.2: - resolution: {integrity: sha512-aLpx/HvKaxCQfWSLGIz699SB9Guyq8Yoq5XLlH8eNWnf/8HkQg8hQ6yagDY8BinV/t8HScc5A7a6n6pvZNGtjg==} - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/api-fetch': 4.0.0_react-native@0.69.4 - '@wordpress/data': 4.27.3_react@17.0.2 - '@wordpress/deprecated': 2.12.3 - transitivePeerDependencies: - - react - - react-native - dev: false - - /@wordpress/data-controls/1.21.3_react-native@0.69.4+react@18.0.0: - resolution: {integrity: sha512-aLpx/HvKaxCQfWSLGIz699SB9Guyq8Yoq5XLlH8eNWnf/8HkQg8hQ6yagDY8BinV/t8HScc5A7a6n6pvZNGtjg==} - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/api-fetch': 4.0.0_react-native@0.69.4 - '@wordpress/data': 4.27.3_react@18.0.0 - '@wordpress/deprecated': 2.12.3 - transitivePeerDependencies: - - react - - react-native - dev: true - - /@wordpress/data-controls/1.21.3_react@17.0.2: + /@wordpress/data-controls/1.21.3: resolution: {integrity: sha512-aLpx/HvKaxCQfWSLGIz699SB9Guyq8Yoq5XLlH8eNWnf/8HkQg8hQ6yagDY8BinV/t8HScc5A7a6n6pvZNGtjg==} dependencies: '@babel/runtime': 7.17.7 '@wordpress/api-fetch': 4.0.0 - '@wordpress/data': 4.27.3_react@17.0.2 + '@wordpress/data': 4.27.3 '@wordpress/deprecated': 2.12.3 transitivePeerDependencies: - react - react-native - dev: true /@wordpress/data-controls/2.10.0_react@17.0.2: resolution: {integrity: sha512-QbRLuEfwLyy/GVDHl7mzf/W6/hKMzCruggeR197JDOP7U3+HZXnbaZo7wb9YcdLKIyRNNwi4aNrFrgBgJAB72g==} @@ -15559,6 +15806,18 @@ packages: react: 17.0.2 dev: false + /@wordpress/data-controls/2.4.1: + resolution: {integrity: sha512-Jy1twLWn4edvb4A9qz7wajE775i79cheCR7SggMbtZ+Pbmza+F2V+nqtx727YKat2M7P08XoTCq0dW9awCAetQ==} + engines: {node: '>=12'} + peerDependencies: + react: ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/api-fetch': 6.1.1 + '@wordpress/data': 6.4.1 + '@wordpress/deprecated': 3.4.1 + dev: false + /@wordpress/data-controls/2.4.1_react@17.0.2: resolution: {integrity: sha512-Jy1twLWn4edvb4A9qz7wajE775i79cheCR7SggMbtZ+Pbmza+F2V+nqtx727YKat2M7P08XoTCq0dW9awCAetQ==} engines: {node: '>=12'} @@ -15572,11 +15831,11 @@ packages: react: 17.0.2 dev: false - /@wordpress/data/4.27.3_react@17.0.2: + /@wordpress/data/4.27.3: resolution: {integrity: sha512-5763NgNV9IIa1CC3Q80dAvrH6108tJtj3IrHfUCZmUk1atSNsOMBCkLdQ7tGTTi2JFejeGEMg1LJI22JD5zM6Q==} dependencies: '@babel/runtime': 7.17.7 - '@wordpress/compose': 3.25.3_react@17.0.2 + '@wordpress/compose': 3.25.3 '@wordpress/deprecated': 2.12.3 '@wordpress/element': 4.8.0 '@wordpress/is-shallow-equal': 3.1.3 @@ -15588,31 +15847,10 @@ packages: memize: 1.1.0 redux: 4.2.0 turbo-combine-reducers: 1.0.2 - use-memo-one: 1.1.2_react@17.0.2 + use-memo-one: 1.1.2 transitivePeerDependencies: - react - /@wordpress/data/4.27.3_react@18.0.0: - resolution: {integrity: sha512-5763NgNV9IIa1CC3Q80dAvrH6108tJtj3IrHfUCZmUk1atSNsOMBCkLdQ7tGTTi2JFejeGEMg1LJI22JD5zM6Q==} - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/compose': 3.25.3_react@18.0.0 - '@wordpress/deprecated': 2.12.3 - '@wordpress/element': 4.8.0 - '@wordpress/is-shallow-equal': 3.1.3 - '@wordpress/priority-queue': 1.11.2 - '@wordpress/redux-routine': 3.14.2 - equivalent-key-map: 0.2.2 - is-promise: 4.0.0 - lodash: 4.17.21 - memize: 1.1.0 - redux: 4.2.0 - turbo-combine-reducers: 1.0.2 - use-memo-one: 1.1.2_react@18.0.0 - transitivePeerDependencies: - - react - dev: true - /@wordpress/data/6.10.0_react@17.0.2: resolution: {integrity: sha512-kLylD1AI+RqigRhqJ0aWBUUhro348w7y7UQj/8PBRFKkyywG44856JpOJYQgSU/tY+yOCgG9w3sDWmgzcOihLA==} engines: {node: '>=12'} @@ -15635,6 +15873,26 @@ packages: use-memo-one: 1.1.2_react@17.0.2 dev: false + /@wordpress/data/6.4.1: + resolution: {integrity: sha512-pDTQl+cmVvwyGuGo6DtWkSGtIz6FTJw87XxtRkOeuQlEqsfHoyXSA4da7cBY5o22Ss5P5408hXjR0SAIqEBhmg==} + engines: {node: '>=12'} + peerDependencies: + react: ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/compose': 5.2.1 + '@wordpress/deprecated': 3.4.1 + '@wordpress/element': 4.8.0 + '@wordpress/is-shallow-equal': 4.4.1 + '@wordpress/priority-queue': 2.4.1 + '@wordpress/redux-routine': 4.4.1_redux@4.2.0 + equivalent-key-map: 0.2.2 + is-promise: 4.0.0 + lodash: 4.17.21 + redux: 4.2.0 + turbo-combine-reducers: 1.0.2 + use-memo-one: 1.1.2 + /@wordpress/data/6.4.1_react@17.0.2: resolution: {integrity: sha512-pDTQl+cmVvwyGuGo6DtWkSGtIz6FTJw87XxtRkOeuQlEqsfHoyXSA4da7cBY5o22Ss5P5408hXjR0SAIqEBhmg==} engines: {node: '>=12'} @@ -15655,27 +15913,7 @@ packages: redux: 4.2.0 turbo-combine-reducers: 1.0.2 use-memo-one: 1.1.2_react@17.0.2 - - /@wordpress/data/6.4.1_react@18.0.0: - resolution: {integrity: sha512-pDTQl+cmVvwyGuGo6DtWkSGtIz6FTJw87XxtRkOeuQlEqsfHoyXSA4da7cBY5o22Ss5P5408hXjR0SAIqEBhmg==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/compose': 5.2.1_react@18.0.0 - '@wordpress/deprecated': 3.4.1 - '@wordpress/element': 4.8.0 - '@wordpress/is-shallow-equal': 4.4.1 - '@wordpress/priority-queue': 2.4.1 - '@wordpress/redux-routine': 4.4.1_redux@4.2.0 - equivalent-key-map: 0.2.2 - is-promise: 4.0.0 - lodash: 4.17.21 - react: 18.0.0 - redux: 4.2.0 - turbo-combine-reducers: 1.0.2 - use-memo-one: 1.1.2_react@18.0.0 + dev: false /@wordpress/date/3.15.1: resolution: {integrity: sha512-SuHiObvjbegL8RpaSQ6JqFnG+QyGP+oUhx1FZDMdt1nOQA9HE7D5ssVlZFlMEAdo6iS8xMuW+4SgJN3Eo1fb4w==} @@ -15837,7 +16075,7 @@ packages: - react-native dev: false - /@wordpress/e2e-test-utils/5.3.2_jest@27.5.1+puppeteer@2.1.1: + /@wordpress/e2e-test-utils/5.3.2_jest@27.3.1: resolution: {integrity: sha512-K44fl1Fgh2kk2RV14BDFSr2QVa5F2aeZ3IOyvLYo1OqaTD2pxXbdQDL1U4wvbkXxAoub4fsF0ugAYYyvxyLIvw==} engines: {node: '>=12'} peerDependencies: @@ -15847,10 +16085,9 @@ packages: '@babel/runtime': 7.17.7 '@wordpress/keycodes': 3.10.0 '@wordpress/url': 3.16.0 - jest: 27.5.1 + jest: 27.3.1 lodash: 4.17.21 node-fetch: 2.6.7 - puppeteer: 2.1.1 transitivePeerDependencies: - encoding dev: false @@ -15906,7 +16143,7 @@ packages: '@babel/runtime': 7.17.7 dev: false - /@wordpress/eslint-plugin/11.0.1_1f52f45e7bfacc80707c778589e25ef6: + /@wordpress/eslint-plugin/11.0.1_45b6e6918fb11850d1105a4fd2c5fed3: resolution: {integrity: sha512-HDKwKjOmCaWdyJEtWKRAd0xK/NAXL/ykUP/I8l+zCvzvCXbS1UuixWN09RRzl09tv17JUtPiEqehDilkWRCBZg==} engines: {node: '>=12', npm: '>=6.9'} peerDependencies: @@ -15921,28 +16158,25 @@ packages: optional: true dependencies: '@babel/core': 7.12.9 - '@babel/eslint-parser': 7.17.0_@babel+core@7.12.9+eslint@8.12.0 - '@typescript-eslint/eslint-plugin': 5.15.0_04e3dcc98661c37bf3589c3e42f9613a - '@typescript-eslint/parser': 5.15.0_eslint@8.12.0+typescript@4.2.4 + '@babel/eslint-parser': 7.17.0_@babel+core@7.12.9 + '@typescript-eslint/eslint-plugin': 5.15.0_db3cd493186c3234b80a3843c7aaf877 + '@typescript-eslint/parser': 5.15.0_typescript@4.2.4 '@wordpress/babel-preset-default': 6.6.1 '@wordpress/prettier-config': 1.1.3 cosmiconfig: 7.0.1 - eslint: 8.12.0 - eslint-config-prettier: 8.5.0_eslint@8.12.0 - eslint-plugin-import: 2.25.4_cc71e8efbf6abc1a029e1884c9c4d82b - eslint-plugin-jest: 25.7.0_45d0a88bcbe2081155ef722344d019d7 - eslint-plugin-jsdoc: 37.9.7_eslint@8.12.0 - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.12.0 - eslint-plugin-prettier: 3.4.1_c77c9f23c77476333e84a9970f607e06 - eslint-plugin-react: 7.29.4_eslint@8.12.0 - eslint-plugin-react-hooks: 4.3.0_eslint@8.12.0 + eslint-config-prettier: 8.5.0 + eslint-plugin-import: 2.25.4 + eslint-plugin-jest: 25.7.0_a17cfd3e96203023414471d4aee9df06 + eslint-plugin-jsdoc: 37.9.7 + eslint-plugin-jsx-a11y: 6.5.1 + eslint-plugin-prettier: 3.4.1_93aed9f9c1dbf782336866b35bfb42b9 + eslint-plugin-react: 7.29.4 + eslint-plugin-react-hooks: 4.3.0 globals: 13.12.0 prettier: /wp-prettier/2.6.2 requireindex: 1.2.0 typescript: 4.2.4 transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - jest - supports-color dev: true @@ -15970,7 +16204,7 @@ packages: cosmiconfig: 7.0.1 eslint: 8.12.0 eslint-config-prettier: 8.5.0_eslint@8.12.0 - eslint-plugin-import: 2.25.4_cc71e8efbf6abc1a029e1884c9c4d82b + eslint-plugin-import: 2.25.4_eslint@8.12.0 eslint-plugin-jest: 25.7.0_6bef967891becc1ab6057e2949a5834f eslint-plugin-jsdoc: 37.9.7_eslint@8.12.0 eslint-plugin-jsx-a11y: 6.5.1_eslint@8.12.0 @@ -15982,8 +16216,6 @@ packages: requireindex: 1.2.0 typescript: 4.6.2 transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - jest - supports-color @@ -16012,7 +16244,7 @@ packages: - typescript dev: true - /@wordpress/eslint-plugin/9.3.0_3140803eb3996a53e546c031c075f86f: + /@wordpress/eslint-plugin/9.3.0_6151749b1cff915528d72fb0304a7f13: resolution: {integrity: sha512-9F7B60gHAjiTIi9vBw5ZoH0MZW3UnmbuKols4kWpJVdgsvG4X1Wj6XXTLmQKrzh/Em7mD1CCIbCSyWknEzIOLw==} engines: {node: '>=12', npm: '>=6.9'} peerDependencies: @@ -16022,15 +16254,15 @@ packages: typescript: optional: true dependencies: - '@babel/eslint-parser': 7.17.0_@babel+core@7.17.8+eslint@7.32.0 - '@typescript-eslint/eslint-plugin': 4.33.0_65e88d2733f36d3624b406e590cf0b3b - '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.6.2 + '@babel/eslint-parser': 7.17.0_@babel+core@7.12.9+eslint@7.32.0 + '@typescript-eslint/eslint-plugin': 4.33.0_d337b069968294b7daf1a5fc7d23d391 + '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.2.4 '@wordpress/prettier-config': 1.1.3 cosmiconfig: 7.0.1 eslint: 7.32.0 eslint-config-prettier: 7.2.0_eslint@7.32.0 - eslint-plugin-import: 2.25.4_2951ba233cd46bb4e0f2f0a3f7fe108e - eslint-plugin-jest: 24.7.0_2224278c77ff331cce15d84ca34e26e7 + eslint-plugin-import: 2.25.4_eslint@7.32.0 + eslint-plugin-jest: 24.7.0_a0850db06e663c2717df708ee59002bd eslint-plugin-jsdoc: 36.1.1_eslint@7.32.0 eslint-plugin-jsx-a11y: 6.5.1_eslint@7.32.0 eslint-plugin-prettier: 3.4.1_34b707f3a53b0942f3919c1ff656ce36 @@ -16039,11 +16271,9 @@ packages: globals: 12.4.0 prettier: /wp-prettier/2.2.1-beta-1 requireindex: 1.2.0 - typescript: 4.6.2 + typescript: 4.2.4 transitivePeerDependencies: - '@babel/core' - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - supports-color dev: true @@ -16252,7 +16482,7 @@ packages: jest-matcher-utils: 27.5.1 lodash: 4.17.21 - /@wordpress/jest-preset-default/6.6.0_03b720756e1f04a06fa47d68f94b78ca: + /@wordpress/jest-preset-default/6.6.0_70cfaaf06058dc9452c00bf5e5a9c8f2: resolution: {integrity: sha512-9HbKUNRMUCooXAKt+6jj5SZjDMtWoR9yMb9bJ5eCd9wUfrfQ/x2nUJK/RXiv1aI85HHmzl5KfQquZF76lYEkcw==} engines: {node: '>=10'} peerDependencies: @@ -16262,7 +16492,7 @@ packages: '@wordpress/jest-console': 3.10.0_jest@25.5.4 babel-jest: 25.5.1_@babel+core@7.17.8 enzyme: 3.11.0 - enzyme-adapter-react-16: 1.15.6_6e4937d009f46c27e18fd81ba2de902e + enzyme-adapter-react-16: 1.15.6_enzyme@3.11.0+react@17.0.2 enzyme-to-json: 3.6.2_enzyme@3.11.0 jest: 25.5.4 transitivePeerDependencies: @@ -16292,32 +16522,13 @@ packages: - supports-color dev: true - /@wordpress/jest-preset-default/7.1.3_898e3b6b6d1a69aa8d665358ff583042: + /@wordpress/jest-preset-default/7.1.3_@babel+core@7.12.9+jest@25.5.4: resolution: {integrity: sha512-rz9V/YRr3TjLdZJQu7DAZHo848PpZ4N5ThtP4Lujy1O/UtcvtKF0r34SZTNDlFQO/G1USZQX/WL6HRhgl57iHA==} engines: {node: '>=12'} peerDependencies: jest: '>=26' dependencies: - '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_6e4937d009f46c27e18fd81ba2de902e - '@wordpress/jest-console': 4.1.1_jest@26.6.3 - babel-jest: 26.6.3_@babel+core@7.17.8 - enzyme: 3.11.0 - enzyme-to-json: 3.6.2_enzyme@3.11.0 - jest: 26.6.3 - transitivePeerDependencies: - - '@babel/core' - - react - - react-dom - - supports-color - dev: true - - /@wordpress/jest-preset-default/7.1.3_c91ac9362e654c80949b9406f2b40113: - resolution: {integrity: sha512-rz9V/YRr3TjLdZJQu7DAZHo848PpZ4N5ThtP4Lujy1O/UtcvtKF0r34SZTNDlFQO/G1USZQX/WL6HRhgl57iHA==} - engines: {node: '>=12'} - peerDependencies: - jest: '>=26' - dependencies: - '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_fae758709a8810ba97b4c03852dde4d0 + '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_enzyme@3.11.0 '@wordpress/jest-console': 4.1.1_jest@25.5.4 babel-jest: 26.6.3_@babel+core@7.12.9 enzyme: 3.11.0 @@ -16330,6 +16541,25 @@ packages: - supports-color dev: false + /@wordpress/jest-preset-default/7.1.3_@babel+core@7.12.9+jest@26.6.3: + resolution: {integrity: sha512-rz9V/YRr3TjLdZJQu7DAZHo848PpZ4N5ThtP4Lujy1O/UtcvtKF0r34SZTNDlFQO/G1USZQX/WL6HRhgl57iHA==} + engines: {node: '>=12'} + peerDependencies: + jest: '>=26' + dependencies: + '@wojtekmaj/enzyme-adapter-react-17': 0.6.6_enzyme@3.11.0 + '@wordpress/jest-console': 4.1.1_jest@26.6.3 + babel-jest: 26.6.3_@babel+core@7.12.9 + enzyme: 3.11.0 + enzyme-to-json: 3.6.2_enzyme@3.11.0 + jest: 26.6.3 + transitivePeerDependencies: + - '@babel/core' + - react + - react-dom + - supports-color + dev: true + /@wordpress/jest-preset-default/8.1.1_591b21f22e79f442e7df48b63364953c: resolution: {integrity: sha512-rcTZjDY482rUEz2pGLzc3FyQg4+2jFdduaO8kQGS/mC80HJ00X5m35NlkORbKitwLxDA0stFHA2334Rs2r6mDg==} engines: {node: '>=12'} @@ -16387,6 +16617,18 @@ packages: '@wordpress/i18n': 4.15.0 dev: false + /@wordpress/notices/3.4.1: + resolution: {integrity: sha512-Y7e2GLlB5wjLOtxsXzJd3jg/p6LV2GeeUnk+reURqUbb/4rlVlXQuMPOboTxLRB/0eTMNwWFI/MIr+NKbuY7MQ==} + engines: {node: '>=12'} + peerDependencies: + react: ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/a11y': 3.5.0 + '@wordpress/data': 6.4.1 + lodash: 4.17.21 + dev: false + /@wordpress/notices/3.4.1_react@17.0.2: resolution: {integrity: sha512-Y7e2GLlB5wjLOtxsXzJd3jg/p6LV2GeeUnk+reURqUbb/4rlVlXQuMPOboTxLRB/0eTMNwWFI/MIr+NKbuY7MQ==} engines: {node: '>=12'} @@ -16400,19 +16642,6 @@ packages: react: 17.0.2 dev: false - /@wordpress/notices/3.4.1_react@18.0.0: - resolution: {integrity: sha512-Y7e2GLlB5wjLOtxsXzJd3jg/p6LV2GeeUnk+reURqUbb/4rlVlXQuMPOboTxLRB/0eTMNwWFI/MIr+NKbuY7MQ==} - engines: {node: '>=12'} - peerDependencies: - react: ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - '@wordpress/a11y': 3.5.0 - '@wordpress/data': 6.4.1_react@18.0.0 - lodash: 4.17.21 - react: 18.0.0 - dev: false - /@wordpress/npm-package-json-lint-config/3.1.0_npm-package-json-lint@5.4.2: resolution: {integrity: sha512-SYRWpzpQaSsBUiRO+ssqg6AHjgCF4j2npstGTGaKdVs/B720fLFzeyONuMmo1ZtMb9v6MyEWxVz5ON6dDgmVYg==} engines: {node: '>=8'} @@ -16474,8 +16703,6 @@ packages: autoprefixer: 8.6.5 postcss: 6.0.23 postcss-color-function: 4.1.0 - transitivePeerDependencies: - - supports-color dev: true /@wordpress/postcss-themes/2.6.0: @@ -16594,12 +16821,12 @@ packages: redux: 4.2.0 rungen: 0.3.2 - /@wordpress/rich-text/3.25.3_react@17.0.2: + /@wordpress/rich-text/3.25.3: resolution: {integrity: sha512-FdqL1/rHTsRxZ1gW1UEWuy0URmUEqMzj5hcAbOhHFPO5m0ENrkzC9bBa195KqZBSNSmBmXnDZdHu4UJUolzcZg==} dependencies: '@babel/runtime': 7.17.7 - '@wordpress/compose': 3.25.3_react@17.0.2 - '@wordpress/data': 4.27.3_react@17.0.2 + '@wordpress/compose': 3.25.3 + '@wordpress/data': 4.27.3 '@wordpress/dom': 2.18.0 '@wordpress/element': 4.8.0 '@wordpress/escape-html': 1.12.2 @@ -16613,6 +16840,25 @@ packages: - react dev: false + /@wordpress/rich-text/5.2.1: + resolution: {integrity: sha512-PBoDPQjihEOteHlDvVRtAjmDTx3T3NRr/GAX8MKVajECWFhiS6tKY2R/llg7fnJAinCIhEAfpNwQDpx2UCp3bA==} + engines: {node: '>=12'} + peerDependencies: + react: ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + '@wordpress/a11y': 3.4.1 + '@wordpress/compose': 5.2.1 + '@wordpress/data': 6.4.1 + '@wordpress/element': 4.8.0 + '@wordpress/escape-html': 2.4.1 + '@wordpress/i18n': 4.4.1 + '@wordpress/keycodes': 3.4.1 + lodash: 4.17.21 + memize: 1.1.0 + rememo: 3.0.0 + dev: false + /@wordpress/rich-text/5.2.1_react@17.0.2: resolution: {integrity: sha512-PBoDPQjihEOteHlDvVRtAjmDTx3T3NRr/GAX8MKVajECWFhiS6tKY2R/llg7fnJAinCIhEAfpNwQDpx2UCp3bA==} engines: {node: '>=12'} @@ -16653,7 +16899,7 @@ packages: rememo: 4.0.0 dev: false - /@wordpress/scripts/12.6.1_28f977f421d1ee87451ad1193e6643e0: + /@wordpress/scripts/12.6.1_3f1b4fa1d29169e6bd7bf0dc7584ef3d: resolution: {integrity: sha512-pDLtACFrP5gUA414qrE49dUrR7yMy40+//1e/5Nx821lnmDb7GAGWGo1gX4lJ2gbfSjePwmRoZe6Mph87vSnLQ==} engines: {node: '>=10', npm: '>=6.9'} hasBin: true @@ -16662,7 +16908,7 @@ packages: '@wordpress/babel-preset-default': 4.20.0 '@wordpress/dependency-extraction-webpack-plugin': 2.9.0_webpack@4.46.0 '@wordpress/eslint-plugin': 7.4.0_eslint@7.32.0+typescript@4.6.2 - '@wordpress/jest-preset-default': 6.6.0_03b720756e1f04a06fa47d68f94b78ca + '@wordpress/jest-preset-default': 6.6.0_70cfaaf06058dc9452c00bf5e5a9c8f2 '@wordpress/npm-package-json-lint-config': 3.1.0_npm-package-json-lint@5.4.2 '@wordpress/postcss-plugins-preset': 1.6.0 '@wordpress/prettier-config': 0.4.0 @@ -16703,14 +16949,11 @@ packages: webpack-livereload-plugin: 2.3.0 transitivePeerDependencies: - '@babel/core' - - bluebird - bufferutil - canvas - fibers - file-loader - node-sass - - postcss-jsx - - postcss-markdown - react - react-dom - supports-color @@ -16769,14 +17012,11 @@ packages: webpack-livereload-plugin: 2.3.0 transitivePeerDependencies: - '@babel/core' - - bluebird - bufferutil - canvas - fibers - file-loader - node-sass - - postcss-jsx - - postcss-markdown - react - react-dom - supports-color @@ -16785,7 +17025,7 @@ packages: - webpack-command dev: true - /@wordpress/scripts/19.2.4_084ed6dbcaa022b4f555317046ea6e16: + /@wordpress/scripts/19.2.4_ee910045e4cc2812de8b965e303c7169: resolution: {integrity: sha512-klkfjBOPfr/RT/3Tvmx+gLbZ+dxq5L0dJQHCHxEURMRW/A8SfJJPtmC29L9sE1KhO3zUMWxrkn2L6HhSzbvQbA==} engines: {node: '>=12.13', npm: '>=6.9'} hasBin: true @@ -16794,14 +17034,14 @@ packages: '@wordpress/babel-preset-default': 6.6.1 '@wordpress/browserslist-config': 4.1.2 '@wordpress/dependency-extraction-webpack-plugin': 3.4.1_webpack@5.70.0 - '@wordpress/eslint-plugin': 9.3.0_3140803eb3996a53e546c031c075f86f - '@wordpress/jest-preset-default': 7.1.3_898e3b6b6d1a69aa8d665358ff583042 + '@wordpress/eslint-plugin': 9.3.0_6151749b1cff915528d72fb0304a7f13 + '@wordpress/jest-preset-default': 7.1.3_@babel+core@7.12.9+jest@26.6.3 '@wordpress/npm-package-json-lint-config': 4.1.2_npm-package-json-lint@5.4.2 '@wordpress/postcss-plugins-preset': 3.8.0_postcss@8.4.12 '@wordpress/prettier-config': 1.1.3 '@wordpress/stylelint-config': 19.1.0_stylelint@13.13.1 - babel-jest: 26.6.3_@babel+core@7.17.8 - babel-loader: 8.2.3_fa907c5a4f16ccc493e21649ccc59574 + babel-jest: 26.6.3_@babel+core@7.12.9 + babel-loader: 8.2.3_d3f6fe5812216e437b67a6bf164a056c browserslist: 4.20.2 chalk: 4.1.2 check-node-version: 4.2.1 @@ -16846,17 +17086,14 @@ packages: - '@swc/core' - '@webpack-cli/generators' - '@webpack-cli/migrate' + - acorn - bufferutil - canvas - debug - esbuild - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - fibers - file-loader - node-sass - - postcss-jsx - - postcss-markdown - react - react-dom - sass-embedded @@ -16923,15 +17160,6 @@ packages: transitivePeerDependencies: - react-native - /@wordpress/url/2.22.2_react-native@0.69.4: - resolution: {integrity: sha512-aqpYKQXzyzkCOm+GzZRYlLb+wh58g0cwR1PaKAl0UXaBS4mdS+X6biMriylb4P8CVC/RR7CSw5XI20JC24KDwQ==} - dependencies: - '@babel/runtime': 7.17.7 - lodash: 4.17.21 - react-native-url-polyfill: 1.3.0_react-native@0.69.4 - transitivePeerDependencies: - - react-native - /@wordpress/url/3.16.0: resolution: {integrity: sha512-5hlT8KfioKrmfqQAHihj2pWqc8oMUFNae3n5/Wlu8H60Btf5h+cBfxr6eiOXPEVX9Ko9NskLjmAqCxxoiNviqg==} engines: {node: '>=12'} @@ -16977,7 +17205,7 @@ packages: resolution: {integrity: sha512-RE4iOGxYuWB0OnUEdp5qRDY1gteaBcIv3ihAYMM2e7EVqmE0rSHANjsYQQEk/3XfpnvaVTz+YGifMnaVF2z7Mg==} engines: {node: '>=12'} - /@wp-g2/components/0.0.140_d01d4077d4bfa845377c80810a915fa9: + /@wp-g2/components/0.0.140_5bd65f250b6b6f498b93c4f7fa8a50e6: resolution: {integrity: sha512-bychuhZ3wPSB457CHYcogoPQPlP/eUA9GoTo0Fv0rj7f44Gr9XlPoqVT+GQa3CmPnvSCAl1sjoe75Vkaoo/O1w==} peerDependencies: '@wordpress/i18n': '>=3.17.0' @@ -16988,46 +17216,42 @@ packages: '@popperjs/core': 2.11.4 '@wordpress/i18n': 3.20.0 '@wordpress/icons': 2.10.3 - '@wp-g2/context': 0.0.140_dc8a8caa16a74d4d87e7d3e8d3a536e5 - '@wp-g2/styles': 0.0.140_dc8a8caa16a74d4d87e7d3e8d3a536e5 - '@wp-g2/utils': 0.0.140_react-dom@16.14.0+react@17.0.2 + '@wp-g2/context': 0.0.140_781a76f2df0044de58919a3ef767af9f + '@wp-g2/styles': 0.0.140_781a76f2df0044de58919a3ef767af9f + '@wp-g2/utils': 0.0.140 csstype: 3.0.10 - downshift: 6.1.7_react@17.0.2 - framer-motion: 2.9.5_react-dom@16.14.0+react@17.0.2 + downshift: 6.1.7 + framer-motion: 2.9.5 highlight-words-core: 1.2.2 history: 4.10.1 lodash: 4.17.21 path-to-regexp: 1.8.0 - react: 17.0.2 - react-colorful: 4.4.4_react-dom@16.14.0+react@17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-textarea-autosize: 8.3.3_react@17.0.2 - react-use-gesture: 9.1.3_react@17.0.2 - reakit: 1.1.0_react-dom@16.14.0+react@17.0.2 + react-colorful: 4.4.4 + react-textarea-autosize: 8.3.3 + react-use-gesture: 9.1.3 + reakit: 1.1.0 transitivePeerDependencies: - '@types/react' - '@wordpress/data' - '@wordpress/is-shallow-equal' dev: false - /@wp-g2/context/0.0.140_dc8a8caa16a74d4d87e7d3e8d3a536e5: + /@wp-g2/context/0.0.140_781a76f2df0044de58919a3ef767af9f: resolution: {integrity: sha512-z32fxZ2tCVmYQC+wyyziyrhEvWBPFBQfUhUHF85JmTUPzQQeEPiLC3rgDAT0fUTFlJHinPJQq6871RDqFSwCUA==} peerDependencies: react: ^16.13.1 react-dom: ^16.13.1 dependencies: - '@wp-g2/styles': 0.0.140_dc8a8caa16a74d4d87e7d3e8d3a536e5 - '@wp-g2/utils': 0.0.140_react-dom@16.14.0+react@17.0.2 + '@wp-g2/styles': 0.0.140_781a76f2df0044de58919a3ef767af9f + '@wp-g2/utils': 0.0.140 lodash: 4.17.21 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 transitivePeerDependencies: - '@types/react' - '@wordpress/data' - '@wordpress/is-shallow-equal' dev: false - /@wp-g2/create-styles/0.0.140_dc8a8caa16a74d4d87e7d3e8d3a536e5: + /@wp-g2/create-styles/0.0.140_781a76f2df0044de58919a3ef767af9f: resolution: {integrity: sha512-/60DxWjCAhsoYOqY7aiHVbkTAF+L6qZIyHyH50oNs9FTVkcRLHQFSC0kHgAam+Z9K3eImQ7hM52wfBDqae0q2Q==} peerDependencies: '@wordpress/data': '>=4.26' @@ -17035,41 +17259,37 @@ packages: react: ^16.13.1 react-dom: ^16.13.1 dependencies: - '@emotion/core': 10.3.1_react@17.0.2 + '@emotion/core': 10.3.1 '@emotion/is-prop-valid': 0.8.8 - '@wordpress/data': 4.27.3_react@17.0.2 + '@wordpress/data': 4.27.3 '@wordpress/is-shallow-equal': 3.1.3 - '@wp-g2/utils': 0.0.140_react-dom@16.14.0+react@17.0.2 + '@wp-g2/utils': 0.0.140 create-emotion: 10.0.27 emotion: 10.0.27 - emotion-theming: 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 + emotion-theming: 10.3.0_@emotion+core@10.3.1 lodash: 4.17.21 mitt: 2.1.0 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 rtlcss: 2.6.2 styled-griddie: 0.1.3 transitivePeerDependencies: - '@types/react' dev: false - /@wp-g2/styles/0.0.140_dc8a8caa16a74d4d87e7d3e8d3a536e5: + /@wp-g2/styles/0.0.140_781a76f2df0044de58919a3ef767af9f: resolution: {integrity: sha512-wAvtqQOqX2zYpfEdVK4l4abH/hUUgw/+8+E5PvPgrsvqFg8IehNSksnjNF5/IloLRGAH70d8ytjMuMnUK8PVYA==} peerDependencies: react: ^16.13.1 react-dom: ^16.13.1 dependencies: - '@wp-g2/create-styles': 0.0.140_dc8a8caa16a74d4d87e7d3e8d3a536e5 - '@wp-g2/utils': 0.0.140_react-dom@16.14.0+react@17.0.2 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 + '@wp-g2/create-styles': 0.0.140_781a76f2df0044de58919a3ef767af9f + '@wp-g2/utils': 0.0.140 transitivePeerDependencies: - '@types/react' - '@wordpress/data' - '@wordpress/is-shallow-equal' dev: false - /@wp-g2/utils/0.0.140_react-dom@16.14.0+react@17.0.2: + /@wp-g2/utils/0.0.140: resolution: {integrity: sha512-a4uYi/XQEDrOAIO3JUQ+L/oeSkgp+08pSy41xxQ1nIRHs7X+Du84X2EFQrvZfGBRuXuVlVuUIlN2e0IE8yUZKw==} peerDependencies: react: ^16.13.1 @@ -17083,23 +17303,23 @@ packages: json2mq: 0.2.0 lodash: 4.17.21 memize: 1.1.0 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 react-merge-refs: 1.1.0 - react-resize-aware: 3.1.1_react@17.0.2 - reakit-warning: 0.5.5_react-dom@16.14.0+react@17.0.2 + react-resize-aware: 3.1.1 + reakit-warning: 0.5.5 tinycolor2: 1.4.2 - use-enhanced-state: 0.0.13_react@17.0.2 - use-isomorphic-layout-effect: 1.1.1_react@17.0.2 + use-enhanced-state: 0.0.13 + use-isomorphic-layout-effect: 1.1.1 transitivePeerDependencies: - '@types/react' dev: false /@xtuc/ieee754/1.2.0: resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + dev: true /@xtuc/long/4.2.2: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + dev: true /abab/2.0.5: resolution: {integrity: sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==} @@ -17112,21 +17332,13 @@ packages: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} dev: true - /abort-controller/3.0.0: - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} - engines: {node: '>=6.5'} - dependencies: - event-target-shim: 5.0.1 - - /absolute-path/0.0.0: - resolution: {integrity: sha512-HQiug4c+/s3WOvEnDRxXVmNtSG5s2gJM9r19BTcqjp7BWcE48PB+Y2G6jE65kqI0LpsQeMZygt/b60Gi4KxGyA==} - /accepts/1.3.7: resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==} engines: {node: '>= 0.6'} dependencies: mime-types: 2.1.34 negotiator: 0.6.2 + dev: true /acorn-globals/4.3.4: resolution: {integrity: sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==} @@ -17146,6 +17358,7 @@ packages: acorn: ^8 dependencies: acorn: 8.7.0 + dev: true /acorn-jsx/5.3.2_acorn@6.4.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -17176,6 +17389,7 @@ packages: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.7.0 + dev: true /acorn-walk/6.2.0: resolution: {integrity: sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==} @@ -17286,6 +17500,22 @@ packages: symbol.prototype.description: 1.0.5 dev: true + /airbnb-prop-types/2.16.0: + resolution: {integrity: sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==} + peerDependencies: + react: ^0.14 || ^15.0.0 || ^16.0.0-alpha + dependencies: + array.prototype.find: 2.1.2 + function.prototype.name: 1.1.5 + is-regex: 1.1.4 + object-is: 1.1.5 + object.assign: 4.1.2 + object.entries: 1.1.5 + prop-types: 15.8.1 + prop-types-exact: 1.2.0 + react-is: 16.13.1 + dev: false + /airbnb-prop-types/2.16.0_react@17.0.2: resolution: {integrity: sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==} peerDependencies: @@ -17380,9 +17610,6 @@ packages: /alphanum-sort/1.0.2: resolution: {integrity: sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==} - /anser/1.4.10: - resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} - /ansi-align/2.0.0: resolution: {integrity: sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=} dependencies: @@ -17415,13 +17642,6 @@ packages: dependencies: type-fest: 0.21.3 - /ansi-fragments/0.2.1: - resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} - dependencies: - colorette: 1.4.0 - slice-ansi: 2.1.0 - strip-ansi: 5.2.0 - /ansi-html-community/0.0.8: resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} engines: {'0': node >= 0.8.0} @@ -17499,8 +17719,6 @@ packages: dependencies: micromatch: 3.1.10 normalize-path: 2.1.1 - transitivePeerDependencies: - - supports-color /anymatch/3.1.2: resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} @@ -17518,9 +17736,6 @@ packages: engines: {node: '>= 6.0.0'} dev: false - /appdirsjs/1.2.7: - resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} - /append-transform/0.4.0: resolution: {integrity: sha1-126/jKlNJ24keja61EpLdKthGZE=} engines: {node: '>=0.10.0'} @@ -17559,6 +17774,7 @@ packages: /argparse/2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true /aria-query/4.2.2: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} @@ -17709,6 +17925,7 @@ packages: /asap/2.0.6: resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + dev: true /asn1.js/5.4.1: resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==} @@ -17751,6 +17968,7 @@ packages: engines: {node: '>=4'} dependencies: tslib: 2.3.1 + dev: true /astral-regex/1.0.0: resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} @@ -17787,6 +18005,7 @@ packages: /async/3.2.4: resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} + dev: true /asynckit/0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -17889,8 +18108,6 @@ packages: deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410 dependencies: follow-redirects: 1.5.10 - transitivePeerDependencies: - - supports-color dev: true /axios/0.21.4: @@ -17906,6 +18123,7 @@ packages: follow-redirects: 1.14.5 transitivePeerDependencies: - debug + dev: false /axobject-query/2.2.0: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} @@ -17932,6 +18150,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.17.8 + dev: true /babel-eslint/10.1.0_eslint@6.8.0: resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==} @@ -17990,8 +18209,6 @@ packages: babel-template: 6.26.0 babel-traverse: 6.26.0 babel-types: 6.26.0 - transitivePeerDependencies: - - supports-color dev: true /babel-helper-get-function-arity/6.24.1: @@ -18054,7 +18271,6 @@ packages: slash: 3.0.0 transitivePeerDependencies: - supports-color - dev: false /babel-jest/26.6.3_@babel+core@7.17.8: resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} @@ -18506,9 +18722,6 @@ packages: /babel-plugin-syntax-jsx/6.18.0: resolution: {integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=} - /babel-plugin-syntax-trailing-function-commas/7.0.0-beta.0: - resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} - /babel-plugin-transform-class-properties/6.24.1: resolution: {integrity: sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=} dependencies: @@ -18516,8 +18729,6 @@ packages: babel-plugin-syntax-class-properties: 6.13.0 babel-runtime: 6.26.0 babel-template: 6.26.0 - transitivePeerDependencies: - - supports-color dev: true /babel-plugin-transform-es2015-template-literals/6.22.0: @@ -18562,7 +18773,6 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.9 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9 '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.12.9 - dev: false /babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.0: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} @@ -18623,42 +18833,6 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8 '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.8 - /babel-preset-fbjs/3.4.0_@babel+core@7.17.8: - resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.8 - '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 - babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 - transitivePeerDependencies: - - supports-color - /babel-preset-jest/24.9.0_@babel+core@7.17.8: resolution: {integrity: sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==} engines: {node: '>= 6'} @@ -18689,7 +18863,6 @@ packages: '@babel/core': 7.12.9 babel-plugin-jest-hoist: 26.6.2 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.12.9 - dev: false /babel-preset-jest/26.6.2_@babel+core@7.17.8: resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} @@ -18738,8 +18911,6 @@ packages: babel-types: 6.26.0 babylon: 6.18.0 lodash: 4.17.21 - transitivePeerDependencies: - - supports-color dev: true /babel-traverse/6.26.0: @@ -18754,8 +18925,6 @@ packages: globals: 9.18.0 invariant: 2.2.4 lodash: 4.17.21 - transitivePeerDependencies: - - supports-color dev: true /babel-types/6.26.0: @@ -18898,6 +19067,7 @@ packages: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.0 + dev: true /bl/5.0.0: resolution: {integrity: sha512-8vxFNZ0pflFfi0WXA3WQXlj6CaMEwsmh63I1CNp0q+wWv8sD0ARx1KovSQd0l2GkwrMIOyedq0EF1FxI+RCZLQ==} @@ -18936,8 +19106,6 @@ packages: qs: 6.7.0 raw-body: 2.4.0 type-is: 1.6.18 - transitivePeerDependencies: - - supports-color dev: true /body-scroll-lock/3.1.5: @@ -19009,25 +19177,6 @@ packages: snapdragon-node: 2.1.1 split-string: 3.1.0 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - - /braces/2.3.2_supports-color@6.1.0: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} - 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.4 - snapdragon: 0.8.2_supports-color@6.1.0 - snapdragon-node: 2.1.1 - split-string: 3.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /braces/3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} @@ -19256,6 +19405,7 @@ packages: /bytes/3.0.0: resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=} engines: {node: '>= 0.8'} + dev: true /bytes/3.1.0: resolution: {integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==} @@ -19294,7 +19444,7 @@ packages: mississippi: 3.0.0 mkdirp: 0.5.5 move-concurrently: 1.0.1 - promise-inflight: 1.0.1_bluebird@3.7.2 + promise-inflight: 1.0.1 rimraf: 2.7.1 ssri: 6.0.2 unique-filename: 1.1.1 @@ -19323,8 +19473,6 @@ packages: ssri: 8.0.1 tar: 6.1.11 unique-filename: 1.1.1 - transitivePeerDependencies: - - bluebird dev: true /cache-base/1.0.1: @@ -19501,9 +19649,7 @@ packages: debug: 4.3.4 puppeteer-core: 1.12.2 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: true /case-sensitive-paths-webpack-plugin/2.4.0: @@ -19696,8 +19842,6 @@ packages: upath: 1.2.0 optionalDependencies: fsevents: 1.2.13 - transitivePeerDependencies: - - supports-color dev: true optional: true @@ -19758,6 +19902,7 @@ packages: /chrome-trace-event/1.0.3: resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} engines: {node: '>=6.0'} + dev: true /ci-info/1.6.0: resolution: {integrity: sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==} @@ -19980,6 +20125,7 @@ packages: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 + dev: true /clone-regexp/2.2.0: resolution: {integrity: sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==} @@ -20153,16 +20299,10 @@ packages: resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} dev: true - /command-exists/1.2.9: - resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} - /commander/2.1.0: resolution: {integrity: sha512-J2wnb6TKniXNOtoHS8TSrG9IOQluPrsmyAJ8oCUJOBmv+uLBCyPYAZkD2jFvw2DCzIXNnISIM01NIvr35TkBMQ==} engines: {node: '>= 0.6.x'} - /commander/2.13.0: - resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==} - /commander/2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} @@ -20203,6 +20343,11 @@ packages: engines: {node: '>= 12'} dev: true + /commander/9.3.0: + resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==} + engines: {node: ^12.20.0 || >=14} + dev: true + /comment-parser/0.7.6: resolution: {integrity: sha512-GKNxVA7/iuTnAqGADlTWX4tkhzxZKXp5fLJqKTlQLHkE65XDUKutZ3BHaJC5IGcper2tT3QRD1xr4o3jNpgXXg==} engines: {node: '>= 6.0.0'} @@ -20227,6 +20372,7 @@ packages: /commondir/1.0.1: resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=} + dev: true /component-bind/1.0.0: resolution: {integrity: sha512-WZveuKPeKAG9qY+FkYDeADzdHyTYdIboXS59ixDeRJL5ZhxpqUnxSOwop4FQjMsiYm3/Or8cegVbpAHNA7pHxw==} @@ -20248,6 +20394,7 @@ packages: engines: {node: '>= 0.6'} dependencies: mime-db: 1.51.0 + dev: true /compression/1.7.4: resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} @@ -20260,8 +20407,7 @@ packages: on-headers: 1.0.2 safe-buffer: 5.1.2 vary: 1.1.2 - transitivePeerDependencies: - - supports-color + dev: true /compute-scroll-into-view/1.0.17: resolution: {integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==} @@ -20320,17 +20466,6 @@ packages: xdg-basedir: 3.0.0 dev: true - /connect/3.7.0: - resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} - engines: {node: '>= 0.10.0'} - dependencies: - debug: 2.6.9 - finalhandler: 1.1.2 - parseurl: 1.3.3 - utils-merge: 1.0.1 - transitivePeerDependencies: - - supports-color - /console-browserify/1.2.0: resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} dev: true @@ -20519,8 +20654,6 @@ packages: p-all: 2.1.0 p-filter: 2.1.0 p-map: 3.0.0 - transitivePeerDependencies: - - supports-color dev: true /crc32/0.2.2: @@ -20648,8 +20781,6 @@ packages: color: 0.11.4 debug: 3.2.7 rgb: 0.1.0 - transitivePeerDependencies: - - supports-color dev: true /css-color-keywords/1.0.0: @@ -20739,7 +20870,7 @@ packages: postcss-modules-values: 4.0.0_postcss@8.4.12 postcss-value-parser: 4.2.0 schema-utils: 3.1.1 - semver: 7.3.5 + semver: 7.3.7 webpack: 5.70.0 dev: true @@ -21099,9 +21230,6 @@ packages: resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} dev: true - /dayjs/1.11.5: - resolution: {integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==} - /deasync/0.1.26: resolution: {integrity: sha512-YKw0BmJSWxkjtQsbgn6Q9CHSWB7DKMen8vKrgyC006zy0UZ6nWyGidB0IzZgqkVRkOglAeUaFtiRTeLyel72bg==} engines: {node: '>=0.11.0'} @@ -21113,66 +21241,29 @@ packages: /debug/2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.0.0 - /debug/2.6.9_supports-color@6.1.0: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true - dependencies: - ms: 2.0.0 - supports-color: 6.1.0 - /debug/3.1.0: resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.0.0 - /debug/3.2.6_supports-color@6.0.0: + /debug/3.2.6: resolution: {integrity: sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==} deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.1.3 - supports-color: 6.0.0 dev: true /debug/3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.1.3 /debug/4.1.1: resolution: {integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==} deprecated: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797) - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.1.3 dev: false @@ -21315,10 +21406,6 @@ packages: engines: {node: '>=0.10.0'} dev: false - /deepmerge/3.3.0: - resolution: {integrity: sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==} - engines: {node: '>=0.10.0'} - /deepmerge/4.2.2: resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} engines: {node: '>=0.10.0'} @@ -21388,12 +21475,10 @@ packages: resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} dev: true - /denodeify/1.2.1: - resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} - /depd/1.1.2: resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} engines: {node: '>= 0.6'} + dev: true /deprecation/2.3.1: resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} @@ -21407,6 +21492,7 @@ packages: /destroy/1.0.4: resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=} + dev: true /detab/2.0.4: resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==} @@ -21417,6 +21503,7 @@ packages: /detect-file/1.0.0: resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} engines: {node: '>=0.10.0'} + dev: true /detect-indent/4.0.0: resolution: {integrity: sha1-920GQ1LN9Docts5hnE7jqUdd4gg=} @@ -21450,8 +21537,6 @@ packages: dependencies: address: 1.1.2 debug: 2.6.9 - transitivePeerDependencies: - - supports-color dev: true /devtools-protocol/0.0.901419: @@ -21681,6 +21766,17 @@ packages: engines: {node: '>=10'} dev: true + /downshift/6.1.7: + resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==} + peerDependencies: + react: '>=16.12.0' + dependencies: + '@babel/runtime': 7.17.7 + compute-scroll-into-view: 1.0.17 + prop-types: 15.8.1 + react-is: 17.0.2 + tslib: 2.3.1 + /downshift/6.1.7_react@17.0.2: resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==} peerDependencies: @@ -21693,6 +21789,18 @@ packages: react-is: 17.0.2 tslib: 2.3.1 + /downshift/6.1.9: + resolution: {integrity: sha512-mzvk61WOX4MEsYHMKCXEVwuz/zM84x/WrCbaCQw71hyNN0fmWXvV673uOQy2idgIA+yqDsjtkV5KPfAFWuQylg==} + peerDependencies: + react: '>=16.12.0' + dependencies: + '@babel/runtime': 7.17.7 + compute-scroll-into-view: 1.0.17 + prop-types: 15.8.1 + react-is: 17.0.2 + tslib: 2.3.1 + dev: true + /downshift/6.1.9_react@17.0.2: resolution: {integrity: sha512-mzvk61WOX4MEsYHMKCXEVwuz/zM84x/WrCbaCQw71hyNN0fmWXvV673uOQy2idgIA+yqDsjtkV5KPfAFWuQylg==} peerDependencies: @@ -21734,6 +21842,7 @@ packages: /ee-first/1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} + dev: true /ejs/2.7.4: resolution: {integrity: sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==} @@ -21817,6 +21926,18 @@ packages: '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 react: 17.0.2 + dev: true + + /emotion-theming/10.3.0_@emotion+core@10.3.1: + resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==} + peerDependencies: + '@emotion/core': ^10.0.27 + react: '>=16.3.0' + dependencies: + '@babel/runtime': 7.17.7 + '@emotion/core': 10.3.1 + '@emotion/weak-memoize': 0.2.5 + hoist-non-react-statics: 3.3.2 /emotion/10.0.27: resolution: {integrity: sha512-2xdDzdWWzue8R8lu4G76uWX5WhyQuzATon9LmNeCy/2BHVC6dsEpfhN1a0qhELgtDVdjyEA6J8Y/VlI5ZnaH0g==} @@ -21828,6 +21949,7 @@ packages: /encodeurl/1.0.2: resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=} engines: {node: '>= 0.8'} + dev: true /encoding/0.1.13: resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} @@ -21862,10 +21984,6 @@ packages: ws: 6.1.4 xmlhttprequest-ssl: 1.5.5 yeast: 0.1.2 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate dev: false /engine.io-parser/2.2.1: @@ -21894,6 +22012,7 @@ packages: graceful-fs: 4.2.9 memory-fs: 0.5.0 tapable: 1.1.3 + dev: true /enhanced-resolve/5.9.2: resolution: {integrity: sha512-GIm3fQfwLJ8YZx2smuHpBKkXC1yOk+OBEmKckVyL0i/ea8mqDEykK3ld5dgH1QYPNyT/lIllxV2LULnxCHaHkA==} @@ -21901,6 +22020,7 @@ packages: dependencies: graceful-fs: 4.2.9 tapable: 2.2.1 + dev: true /enquirer/2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} @@ -21933,8 +22053,9 @@ packages: resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==} engines: {node: '>=4'} hasBin: true + dev: true - /enzyme-adapter-react-16/1.15.6_6e4937d009f46c27e18fd81ba2de902e: + /enzyme-adapter-react-16/1.15.6_enzyme@3.11.0+react@17.0.2: resolution: {integrity: sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==} peerDependencies: enzyme: ^3.0.0 @@ -21949,7 +22070,6 @@ packages: object.values: 1.1.5 prop-types: 15.8.1 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 react-is: 16.13.1 react-test-renderer: 16.14.0_react@17.0.2 semver: 5.7.1 @@ -22047,6 +22167,7 @@ packages: requiresBuild: true dependencies: prr: 1.0.1 + dev: true /error-ex/1.3.2: resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} @@ -22057,6 +22178,7 @@ packages: resolution: {integrity: sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==} dependencies: stackframe: 1.2.0 + dev: true /error/10.4.0: resolution: {integrity: sha512-YxIFEJuhgcICugOUvRx5th0UM+ActZ9sjY0QJmeVwsQdvosZ7kYzc9QqS0Da3R5iUmgU5meGIxh0xBeZpMVeLw==} @@ -22068,13 +22190,6 @@ packages: string-template: 0.2.1 dev: true - /errorhandler/1.5.1: - resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} - engines: {node: '>= 0.8'} - dependencies: - accepts: 1.3.7 - escape-html: 1.0.3 - /es-abstract/1.19.1: resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==} engines: {node: '>= 0.4'} @@ -22118,6 +22233,7 @@ packages: /es-module-lexer/0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} + dev: true /es-to-primitive/1.2.1: resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} @@ -22152,6 +22268,7 @@ packages: /escape-html/1.0.3: resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} + dev: true /escape-string-regexp/1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} @@ -22208,6 +22325,13 @@ packages: eslint: 7.32.0 dev: true + /eslint-config-prettier/8.5.0: + resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dev: true + /eslint-config-prettier/8.5.0_eslint@8.12.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true @@ -22216,7 +22340,7 @@ packages: dependencies: eslint: 8.12.0 - /eslint-config-wpcalypso/5.0.0_de3521d9475c33bb94206c11fe8f2bfe: + /eslint-config-wpcalypso/5.0.0_eslint@6.8.0: resolution: {integrity: sha512-bENkOkC7Hk2LREkj9aVqv5ELqYaUZqN2IBtmCdsQXrkJBsW8FV9mOzcBHnLm3Cvw4YYfq0rZzIFuCs3pkPbe1Q==} peerDependencies: eslint: ^6.0.0 @@ -22224,9 +22348,7 @@ packages: eslint-plugin-wpcalypso: ^3.4.1 || ^4.0.0 dependencies: eslint: 6.8.0 - eslint-plugin-jsdoc: 18.11.0_eslint@6.8.0 eslint-plugin-react-hooks: 2.5.1_eslint@6.8.0 - eslint-plugin-wpcalypso: 4.1.0_eslint@6.8.0 dev: true /eslint-import-resolver-node/0.3.6: @@ -22234,8 +22356,6 @@ packages: dependencies: debug: 3.2.7 resolve: 1.20.0 - transitivePeerDependencies: - - supports-color /eslint-import-resolver-typescript/2.5.0_fe22d862ffeecaee86c93a006d59e41e: resolution: {integrity: sha512-qZ6e5CFr+I7K4VVhQu3M/9xGv9/YmwsEXrsm3nimw8vWaVHRDrQRp26BgCypTxBp3vUp4o5aVEJRiy0F2DFddQ==} @@ -22246,7 +22366,7 @@ packages: dependencies: debug: 4.3.3 eslint: 8.11.0 - eslint-plugin-import: 2.25.4_77772d9183dc10a22461806e31fab843 + eslint-plugin-import: 2.25.4_eslint@8.11.0 glob: 7.2.0 is-glob: 4.0.3 resolve: 1.20.0 @@ -22265,7 +22385,7 @@ packages: array-find: 1.0.0 debug: 3.2.7 enhanced-resolve: 0.9.1 - eslint-plugin-import: 2.25.4_77772d9183dc10a22461806e31fab843 + eslint-plugin-import: 2.25.4_eslint@8.11.0 find-root: 1.1.0 has: 1.0.3 interpret: 1.4.0 @@ -22275,107 +22395,49 @@ packages: resolve: 1.20.0 semver: 5.7.1 webpack: 5.70.0_webpack-cli@4.9.2 - transitivePeerDependencies: - - supports-color dev: true - /eslint-module-utils/2.7.3_3235438f99d989adc867d9bc1cfd12d4: + /eslint-module-utils/2.7.3: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true dependencies: - '@typescript-eslint/parser': 5.15.0_eslint@8.11.0+typescript@4.6.2 debug: 3.2.7 - eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.5.0_fe22d862ffeecaee86c93a006d59e41e - eslint-import-resolver-webpack: 0.13.2_bac363bc2c2f46a65300020741b6cf5e find-up: 2.1.0 - transitivePeerDependencies: - - supports-color - dev: true - /eslint-module-utils/2.7.3_5ab2041b50461fe22d1994ca13572741: - resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true - dependencies: - '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.6.2 - debug: 3.2.7 - eslint-import-resolver-node: 0.3.6 - find-up: 2.1.0 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-module-utils/2.7.3_ef07d826cd641afefb7c0416495c1331: - resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true - dependencies: - '@typescript-eslint/parser': 5.15.0_eslint@8.12.0+typescript@4.2.4 - debug: 3.2.7 - eslint-import-resolver-node: 0.3.6 - find-up: 2.1.0 - transitivePeerDependencies: - - supports-color - - /eslint-plugin-import/2.25.4_2951ba233cd46bb4e0f2f0a3f7fe108e: + /eslint-plugin-import/2.25.4: + resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + 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.0 + is-glob: 4.0.3 + minimatch: 3.0.4 + object.values: 1.1.5 + resolve: 1.20.0 + tsconfig-paths: 3.14.0 + dev: true + + /eslint-plugin-import/2.25.4_eslint@7.32.0: resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} engines: {node: '>=4'} peerDependencies: - '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true dependencies: - '@typescript-eslint/parser': 4.33.0_eslint@7.32.0+typescript@4.6.2 array-includes: 3.1.4 array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 eslint: 7.32.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_5ab2041b50461fe22d1994ca13572741 + eslint-module-utils: 2.7.3 has: 1.0.3 is-core-module: 2.8.0 is-glob: 4.0.3 @@ -22383,30 +22445,21 @@ packages: object.values: 1.1.5 resolve: 1.20.0 tsconfig-paths: 3.14.0 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color dev: true - /eslint-plugin-import/2.25.4_77772d9183dc10a22461806e31fab843: + /eslint-plugin-import/2.25.4_eslint@8.11.0: resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} engines: {node: '>=4'} peerDependencies: - '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true dependencies: - '@typescript-eslint/parser': 5.15.0_eslint@8.11.0+typescript@4.6.2 array-includes: 3.1.4 array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.11.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_3235438f99d989adc867d9bc1cfd12d4 + eslint-module-utils: 2.7.3 has: 1.0.3 is-core-module: 2.8.0 is-glob: 4.0.3 @@ -22414,30 +22467,21 @@ packages: object.values: 1.1.5 resolve: 1.20.0 tsconfig-paths: 3.14.0 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color dev: true - /eslint-plugin-import/2.25.4_cc71e8efbf6abc1a029e1884c9c4d82b: + /eslint-plugin-import/2.25.4_eslint@8.12.0: resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} engines: {node: '>=4'} peerDependencies: - '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - '@typescript-eslint/parser': - optional: true dependencies: - '@typescript-eslint/parser': 5.15.0_eslint@8.12.0+typescript@4.2.4 array-includes: 3.1.4 array.prototype.flat: 1.2.5 debug: 2.6.9 doctrine: 2.1.0 eslint: 8.12.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_ef07d826cd641afefb7c0416495c1331 + eslint-module-utils: 2.7.3 has: 1.0.3 is-core-module: 2.8.0 is-glob: 4.0.3 @@ -22445,10 +22489,6 @@ packages: object.values: 1.1.5 resolve: 1.20.0 tsconfig-paths: 3.14.0 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color /eslint-plugin-jest/23.20.0_eslint@6.8.0+typescript@3.9.7: resolution: {integrity: sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==} @@ -22476,7 +22516,7 @@ packages: - typescript dev: true - /eslint-plugin-jest/24.7.0_2224278c77ff331cce15d84ca34e26e7: + /eslint-plugin-jest/24.7.0_a0850db06e663c2717df708ee59002bd: resolution: {integrity: sha512-wUxdF2bAZiYSKBclsUMrYHH6WxiBreNjyDxbRv345TIvPeoCEgPNEn3Sa+ZrSqsf1Dl9SqqSREXMHExlMMu1DA==} engines: {node: '>=10'} peerDependencies: @@ -22486,36 +22526,14 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 4.33.0_65e88d2733f36d3624b406e590cf0b3b - '@typescript-eslint/experimental-utils': 4.33.0_eslint@7.32.0+typescript@4.6.2 + '@typescript-eslint/eslint-plugin': 4.33.0_d337b069968294b7daf1a5fc7d23d391 + '@typescript-eslint/experimental-utils': 4.33.0_eslint@7.32.0+typescript@4.2.4 eslint: 7.32.0 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jest/25.7.0_45d0a88bcbe2081155ef722344d019d7: - resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - jest: '*' - peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': - optional: true - jest: - optional: true - dependencies: - '@typescript-eslint/eslint-plugin': 5.15.0_04e3dcc98661c37bf3589c3e42f9613a - '@typescript-eslint/experimental-utils': 5.4.0_eslint@8.12.0+typescript@4.2.4 - eslint: 8.12.0 - jest: 27.3.1 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - /eslint-plugin-jest/25.7.0_6bef967891becc1ab6057e2949a5834f: resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -22537,23 +22555,25 @@ packages: - supports-color - typescript - /eslint-plugin-jsdoc/18.11.0_eslint@6.8.0: - resolution: {integrity: sha512-24J2+eK2ZHZ1KvpKcoOEir2k4xJKfPzZ1JC9PToi8y8Tn59T8TVVSNRTTRzsDdiaQeIbehApB3KxqIfJG8o7hg==} - engines: {node: '>=6'} + /eslint-plugin-jest/25.7.0_a17cfd3e96203023414471d4aee9df06: + resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: - eslint: ^5.0.0 || ^6.0.0 + '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + jest: '*' + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + jest: + optional: true dependencies: - comment-parser: 0.7.6 - debug: 4.3.4 - eslint: 6.8.0 - jsdoctypeparser: 6.1.0 - lodash: 4.17.21 - object.entries-ponyfill: 1.0.1 - regextras: 0.7.1 - semver: 6.3.0 - spdx-expression-parse: 3.0.1 + '@typescript-eslint/eslint-plugin': 5.15.0_db3cd493186c3234b80a3843c7aaf877 + '@typescript-eslint/experimental-utils': 5.4.0_typescript@4.2.4 + jest: 27.3.1 transitivePeerDependencies: - supports-color + - typescript dev: true /eslint-plugin-jsdoc/30.7.13_eslint@7.32.0: @@ -22594,6 +22614,24 @@ packages: - supports-color dev: true + /eslint-plugin-jsdoc/37.9.7: + resolution: {integrity: sha512-8alON8yYcStY94o0HycU2zkLKQdcS+qhhOUNQpfONHHwvI99afbmfpYuPqf6PbLz5pLZldG3Te5I0RbAiTN42g==} + engines: {node: ^12 || ^14 || ^16 || ^17} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@es-joy/jsdoccomment': 0.20.1 + comment-parser: 1.3.0 + debug: 4.3.3 + escape-string-regexp: 4.0.0 + esquery: 1.4.0 + regextras: 0.8.0 + semver: 7.3.5 + spdx-expression-parse: 3.0.1 + transitivePeerDependencies: + - supports-color + dev: true + /eslint-plugin-jsdoc/37.9.7_eslint@8.12.0: resolution: {integrity: sha512-8alON8yYcStY94o0HycU2zkLKQdcS+qhhOUNQpfONHHwvI99afbmfpYuPqf6PbLz5pLZldG3Te5I0RbAiTN42g==} engines: {node: ^12 || ^14 || ^16 || ^17} @@ -22612,6 +22650,26 @@ packages: transitivePeerDependencies: - supports-color + /eslint-plugin-jsx-a11y/6.5.1: + resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + '@babel/runtime': 7.17.7 + aria-query: 4.2.2 + array-includes: 3.1.4 + ast-types-flow: 0.0.7 + axe-core: 4.3.5 + axobject-query: 2.2.0 + damerau-levenshtein: 1.0.7 + emoji-regex: 9.2.2 + has: 1.0.3 + jsx-ast-utils: 3.2.1 + language-tags: 1.0.5 + minimatch: 3.1.2 + dev: true + /eslint-plugin-jsx-a11y/6.5.1_eslint@7.32.0: resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} engines: {node: '>=4.0'} @@ -22691,6 +22749,22 @@ packages: prettier-linter-helpers: 1.0.0 dev: true + /eslint-plugin-prettier/3.4.1_93aed9f9c1dbf782336866b35bfb42b9: + resolution: {integrity: sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==} + engines: {node: '>=6.0.0'} + peerDependencies: + eslint: '>=5.0.0' + eslint-config-prettier: '*' + prettier: '>=1.13.0' + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint-config-prettier: 8.5.0 + prettier: /wp-prettier/2.6.2 + prettier-linter-helpers: 1.0.0 + dev: true + /eslint-plugin-prettier/3.4.1_c77c9f23c77476333e84a9970f607e06: resolution: {integrity: sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==} engines: {node: '>=6.0.0'} @@ -22733,6 +22807,13 @@ packages: eslint: 6.8.0 dev: true + /eslint-plugin-react-hooks/4.3.0: + resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dev: true + /eslint-plugin-react-hooks/4.3.0_eslint@7.32.0: resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==} engines: {node: '>=10'} @@ -22750,6 +22831,28 @@ packages: dependencies: eslint: 8.12.0 + /eslint-plugin-react/7.29.4: + resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.4 + array.prototype.flatmap: 1.2.5 + doctrine: 2.1.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.2.1 + minimatch: 3.1.2 + object.entries: 1.1.5 + object.fromentries: 2.0.5 + object.hasown: 1.1.0 + 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.6 + dev: true + /eslint-plugin-react/7.29.4_eslint@7.32.0: resolution: {integrity: sha512-CVCXajliVh509PcZYRFyu/BoUEz452+jtQJq2b3Bae4v3xBUWPLCmtmBM+ZinG4MzwmxJgJ2M5rMqhqLVn7MtQ==} engines: {node: '>=4'} @@ -22831,15 +22934,6 @@ packages: - typescript dev: false - /eslint-plugin-wpcalypso/4.1.0_eslint@6.8.0: - resolution: {integrity: sha512-2gZdaaX5rS7vve5FfIBTANPFXfQstxMppUFR8KzrY5cJPt7hIhpg9lOb4y0hVYNdJkhZxkvEWw8yoJhaUc1OYQ==} - engines: {node: '>=10'} - peerDependencies: - eslint: '>=5' - dependencies: - eslint: 6.8.0 - dev: true - /eslint-scope/4.0.3: resolution: {integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==} engines: {node: '>=4.0.0'} @@ -22869,6 +22963,7 @@ packages: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 + dev: true /eslint-utils/1.4.3: resolution: {integrity: sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==} @@ -22883,6 +22978,15 @@ packages: eslint-visitor-keys: 1.3.0 dev: true + /eslint-utils/3.0.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint-visitor-keys: 2.1.0 + dev: true + /eslint-utils/3.0.0_eslint@7.32.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} @@ -23268,6 +23372,7 @@ packages: v8-compile-cache: 2.3.0 transitivePeerDependencies: - supports-color + dev: true /eslint/8.2.0: resolution: {integrity: sha512-erw7XmM+CLxTOickrimJ1SiF55jiNlVSp2qqm0NuBWPtHYQCegD5ZMaW0c3i5ytPqL+SSLaCxdvQXFPLJn+ABw==} @@ -23358,6 +23463,7 @@ packages: acorn: 8.7.0 acorn-jsx: 5.3.2_acorn@8.7.0 eslint-visitor-keys: 3.3.0 + dev: true /esprima/2.7.3: resolution: {integrity: sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=} @@ -23408,10 +23514,7 @@ packages: /etag/1.8.1: resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=} engines: {node: '>= 0.6'} - - /event-target-shim/5.0.1: - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} - engines: {node: '>=6'} + dev: true /eventemitter2/0.4.14: resolution: {integrity: sha512-K7J4xq5xAD5jHsGM5ReWXRTFa3JRGofHiMcVgQ8PRwgWxzjHpMWCIzsmyf60+mh8KLsqYPcjUMa0AC4hd6lPyQ==} @@ -23551,22 +23654,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - - /expand-brackets/2.1.4_supports-color@6.1.0: - resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=} - engines: {node: '>=0.10.0'} - dependencies: - debug: 2.6.9_supports-color@6.1.0 - define-property: 0.2.5 - extend-shallow: 2.0.1 - posix-character-classes: 0.1.1 - regex-not: 1.0.2 - snapdragon: 0.8.2_supports-color@6.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /expand-tilde/1.2.2: resolution: {integrity: sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q==} @@ -23579,6 +23666,11 @@ packages: engines: {node: '>=0.10.0'} dependencies: homedir-polyfill: 1.0.3 + dev: true + + /expect-more/1.2.0: + resolution: {integrity: sha512-AVnjc5oh2jgiJjOrjbiKxbwLlNA/zsl2044Nbd09H4+2KwThtSLYKhdOusLYOrcToFAa2uBOWR1ExCN4kOWgbQ==} + dev: true /expect-puppeteer/4.4.0: resolution: {integrity: sha512-6Ey4Xy2xvmuQu7z7YQtMsaMV0EHJRpVxIDOd5GRrm04/I3nkTKIutELfECsLp6le+b3SSa3cXhPiw6PgqzxYWA==} @@ -23593,8 +23685,6 @@ packages: jest-matcher-utils: 24.9.0 jest-message-util: 24.9.0 jest-regex-util: 24.9.0 - transitivePeerDependencies: - - supports-color dev: false /expect/25.5.0: @@ -23683,8 +23773,6 @@ packages: type-is: 1.6.18 utils-merge: 1.0.1 vary: 1.1.2 - transitivePeerDependencies: - - supports-color dev: true /extend-shallow/2.0.1: @@ -23723,23 +23811,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - - /extglob/2.0.4_supports-color@6.1.0: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} - dependencies: - array-unique: 0.3.2 - define-property: 1.0.0 - expand-brackets: 2.1.4_supports-color@6.1.0 - extend-shallow: 2.0.1 - fragment-cache: 0.2.1 - regex-not: 1.0.2 - snapdragon: 0.8.2_supports-color@6.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /extract-zip/1.7.0: resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} @@ -23749,8 +23820,6 @@ packages: debug: 2.6.9 mkdirp: 0.5.5 yauzl: 2.10.0 - transitivePeerDependencies: - - supports-color /extract-zip/2.0.1: resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} @@ -23790,8 +23859,6 @@ packages: is-glob: 4.0.3 merge2: 1.4.1 micromatch: 3.1.10 - transitivePeerDependencies: - - supports-color dev: true /fast-glob/3.2.11: @@ -23925,6 +23992,7 @@ packages: engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.0.4 + dev: true /file-loader/6.2.0_webpack@4.46.0: resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} @@ -24019,8 +24087,7 @@ packages: parseurl: 1.3.3 statuses: 1.5.0 unpipe: 1.0.0 - transitivePeerDependencies: - - supports-color + dev: true /find-cache-dir/2.1.0: resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} @@ -24029,6 +24096,7 @@ packages: commondir: 1.0.1 make-dir: 2.1.0 pkg-dir: 3.0.0 + dev: true /find-cache-dir/3.3.2: resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} @@ -24102,6 +24170,7 @@ packages: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 + dev: true /find-yarn-workspace-root/2.0.0: resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==} @@ -24131,20 +24200,17 @@ packages: is-glob: 3.1.0 micromatch: 3.1.10 resolve-dir: 1.0.1 - transitivePeerDependencies: - - supports-color dev: true - /findup-sync/3.0.0_supports-color@6.1.0: + /findup-sync/3.0.0: resolution: {integrity: sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==} engines: {node: '>= 0.10'} dependencies: detect-file: 1.0.0 is-glob: 4.0.3 - micromatch: 3.1.10_supports-color@6.1.0 + micromatch: 3.1.10 resolve-dir: 1.0.1 - transitivePeerDependencies: - - supports-color + dev: true /findup/0.1.5: resolution: {integrity: sha1-itkpozk7rGJ5V6fl3kYjsGsOLOs=} @@ -24197,6 +24263,7 @@ packages: dependencies: flatted: 3.2.4 rimraf: 3.0.2 + dev: true /flat/4.1.1: resolution: {integrity: sha512-FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==} @@ -24210,14 +24277,12 @@ packages: /flatted/3.2.4: resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==} - - /flow-parser/0.121.0: - resolution: {integrity: sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==} - engines: {node: '>=0.4.0'} + dev: true /flow-parser/0.174.1: resolution: {integrity: sha512-nDMOvlFR+4doLpB3OJpseHZ7uEr3ENptlF6qMas/kzQmNcLzMwfQeFX0gGJ/+em7UdldB/nGsk55tDTOvjbCuw==} engines: {node: '>=0.4.0'} + dev: true /flush-write-stream/1.1.1: resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} @@ -24234,6 +24299,7 @@ packages: peerDependenciesMeta: debug: optional: true + dev: false /follow-redirects/1.14.7: resolution: {integrity: sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==} @@ -24249,8 +24315,6 @@ packages: engines: {node: '>=4.0'} dependencies: debug: 3.1.0 - transitivePeerDependencies: - - supports-color dev: true /for-each/0.3.3: @@ -24291,60 +24355,17 @@ packages: /forever-agent/0.6.1: resolution: {integrity: sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=} - /fork-ts-checker-webpack-plugin/4.1.6_91527b0320285d4f50438f5cbee746f7: + /fork-ts-checker-webpack-plugin/4.1.6: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: '>= 4' - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true dependencies: '@babel/code-frame': 7.16.7 chalk: 2.4.2 - eslint: 8.12.0 micromatch: 3.1.10 minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.2.4 - webpack: 4.46.0 worker-rpc: 0.1.1 - transitivePeerDependencies: - - supports-color - dev: true - - /fork-ts-checker-webpack-plugin/4.1.6_ec34b068c8cf37561abcf5fd5b20a134: - resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} - engines: {node: '>=6.11.5', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: '>= 4' - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true - dependencies: - '@babel/code-frame': 7.16.7 - chalk: 2.4.2 - eslint: 8.12.0 - micromatch: 3.1.10 - minimatch: 3.1.2 - semver: 5.7.1 - tapable: 1.1.3 - typescript: 4.6.2 - webpack: 4.46.0_webpack-cli@3.3.12 - worker-rpc: 0.1.1 - transitivePeerDependencies: - - supports-color dev: true /fork-ts-checker-webpack-plugin/6.5.0_10568ae13669cc833891d65cd6879aa0: @@ -24379,70 +24400,6 @@ packages: webpack: 5.70.0_webpack-cli@4.9.2 dev: true - /fork-ts-checker-webpack-plugin/6.5.0_91527b0320285d4f50438f5cbee746f7: - resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: '>= 4' - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true - dependencies: - '@babel/code-frame': 7.16.7 - '@types/json-schema': 7.0.9 - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 6.0.0 - deepmerge: 4.2.2 - eslint: 8.12.0 - fs-extra: 9.1.0 - glob: 7.2.0 - memfs: 3.3.0 - minimatch: 3.1.2 - schema-utils: 2.7.0 - semver: 7.3.5 - tapable: 1.1.3 - typescript: 4.2.4 - webpack: 4.46.0 - dev: true - - /fork-ts-checker-webpack-plugin/6.5.0_d22c195d8cbe56a5b2cc7c98aa04b62c: - resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: '>= 4' - peerDependenciesMeta: - eslint: - optional: true - vue-template-compiler: - optional: true - dependencies: - '@babel/code-frame': 7.16.7 - '@types/json-schema': 7.0.9 - chalk: 4.1.2 - chokidar: 3.5.3 - cosmiconfig: 6.0.0 - deepmerge: 4.2.2 - eslint: 8.12.0 - fs-extra: 9.1.0 - glob: 7.2.0 - memfs: 3.3.0 - minimatch: 3.1.2 - schema-utils: 2.7.0 - semver: 7.3.5 - tapable: 1.1.3 - typescript: 4.2.4 - webpack: 5.70.0 - dev: true - /fork-ts-checker-webpack-plugin/6.5.0_ec34b068c8cf37561abcf5fd5b20a134: resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} engines: {node: '>=10', yarn: '>=1.0.0'} @@ -24475,6 +24432,68 @@ packages: webpack: 4.46.0_webpack-cli@3.3.12 dev: true + /fork-ts-checker-webpack-plugin/6.5.0_typescript@4.2.4+webpack@4.46.0: + resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/code-frame': 7.16.7 + '@types/json-schema': 7.0.9 + chalk: 4.1.2 + chokidar: 3.5.3 + cosmiconfig: 6.0.0 + deepmerge: 4.2.2 + fs-extra: 9.1.0 + glob: 7.2.0 + memfs: 3.3.0 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.3.5 + tapable: 1.1.3 + typescript: 4.2.4 + webpack: 4.46.0 + dev: true + + /fork-ts-checker-webpack-plugin/6.5.0_typescript@4.2.4+webpack@5.70.0: + resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/code-frame': 7.16.7 + '@types/json-schema': 7.0.9 + chalk: 4.1.2 + chokidar: 3.5.3 + cosmiconfig: 6.0.0 + deepmerge: 4.2.2 + fs-extra: 9.1.0 + glob: 7.2.0 + memfs: 3.3.0 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.3.5 + tapable: 1.1.3 + typescript: 4.2.4 + webpack: 5.70.0 + dev: true + /form-data/2.3.3: resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} engines: {node: '>= 0.12'} @@ -24521,6 +24540,10 @@ packages: engines: {node: '>= 0.6'} dev: true + /fp-ts/2.12.1: + resolution: {integrity: sha512-oxvgqUYR6O9VkKXrxkJ0NOyU0FrE705MeqgBUMEPWyTu6Pwn768cJbHChw2XOBlgFLKfIHxjr2OOBFpv2mUGZw==} + dev: true + /fraction.js/4.2.0: resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} dev: true @@ -24531,7 +24554,7 @@ packages: dependencies: map-cache: 0.2.2 - /framer-motion/2.9.5_react-dom@16.14.0+react@17.0.2: + /framer-motion/2.9.5: resolution: {integrity: sha512-epSX4Co1YbDv0mjfHouuY0q361TpHE7WQzCp/xMTilxy4kXd+Z23uJzPVorfzbm1a/9q1Yu8T5bndaw65NI4Tg==} peerDependencies: react: '>=16.8' @@ -24540,15 +24563,13 @@ packages: framesync: 4.1.0 hey-listen: 1.0.8 popmotion: 9.0.0-rc.20 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 style-value-types: 3.2.0 tslib: 1.14.1 optionalDependencies: '@emotion/is-prop-valid': 0.8.8 dev: false - /framer-motion/6.2.8_react-dom@16.14.0+react@17.0.2: + /framer-motion/6.2.8: resolution: {integrity: sha512-4PtBWFJ6NqR350zYVt9AsFDtISTqsdqna79FvSYPfYDXuuqFmiKtZdkTnYPslnsOMedTW0pEvaQ7eqjD+sA+HA==} peerDependencies: react: '>=16.8 || ^17.0.0 || ^18.0.0' @@ -24557,8 +24578,6 @@ packages: framesync: 6.0.1 hey-listen: 1.0.8 popmotion: 11.0.3 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 style-value-types: 5.0.0 tslib: 2.3.1 optionalDependencies: @@ -24582,6 +24601,22 @@ packages: '@emotion/is-prop-valid': 0.8.8 dev: false + /framer-motion/6.2.8_react@17.0.2: + resolution: {integrity: sha512-4PtBWFJ6NqR350zYVt9AsFDtISTqsdqna79FvSYPfYDXuuqFmiKtZdkTnYPslnsOMedTW0pEvaQ7eqjD+sA+HA==} + peerDependencies: + react: '>=16.8 || ^17.0.0 || ^18.0.0' + react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' + dependencies: + framesync: 6.0.1 + hey-listen: 1.0.8 + popmotion: 11.0.3 + react: 17.0.2 + style-value-types: 5.0.0 + tslib: 2.3.1 + optionalDependencies: + '@emotion/is-prop-valid': 0.8.8 + dev: false + /framesync/4.1.0: resolution: {integrity: sha512-MmgZ4wCoeVxNbx2xp5hN/zPDCbLSKiDt4BbbslK7j/pM2lg5S0vhTNv1v8BCVb99JPIo6hXBFdwzU7Q4qcAaoQ==} dependencies: @@ -24597,6 +24632,7 @@ packages: /fresh/0.5.2: resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} engines: {node: '>= 0.6'} + dev: true /from2/2.3.0: resolution: {integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=} @@ -24614,7 +24650,7 @@ packages: engines: {node: '>=0.10.0'} /fs-extra/0.30.0: - resolution: {integrity: sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=} + resolution: {integrity: sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==} dependencies: graceful-fs: 4.2.9 jsonfile: 2.4.0 @@ -24623,13 +24659,6 @@ packages: rimraf: 2.7.1 dev: true - /fs-extra/1.0.0: - resolution: {integrity: sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==} - dependencies: - graceful-fs: 4.2.9 - jsonfile: 2.4.0 - klaw: 1.3.1 - /fs-extra/10.1.0: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} @@ -24637,7 +24666,6 @@ packages: graceful-fs: 4.2.9 jsonfile: 6.1.0 universalify: 2.0.0 - dev: false /fs-extra/6.0.1: resolution: {integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==} @@ -24653,6 +24681,7 @@ packages: graceful-fs: 4.2.9 jsonfile: 4.0.0 universalify: 0.1.2 + dev: true /fs-extra/9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} @@ -24916,6 +24945,7 @@ packages: engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 + dev: true /glob-promise/3.4.0_glob@7.2.0: resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} @@ -24933,6 +24963,7 @@ packages: /glob-to-regexp/0.4.1: resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + dev: true /glob/5.0.15: resolution: {integrity: sha512-c9IPMazfRITpmAAKi22dK1VKxGDX9ehhqfABDriL/lzO92xcUKEJPQHrVA/2YHSNFB4iFlykVmWvwo48nr3OxA==} @@ -24976,6 +25007,17 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 + /glob/8.0.3: + resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==} + engines: {node: '>=12'} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 5.1.0 + once: 1.4.0 + dev: true + /global-cache/1.2.1: resolution: {integrity: sha512-EOeUaup5DgWKlCMhA9YFqNRIlZwoxt731jCh47WBV9fQqHgXhr3Fa55hfgIUqilIcPsfdNKN7LHjrNY+Km40KA==} engines: {node: '>= 0.4'} @@ -25005,12 +25047,14 @@ packages: global-prefix: 1.0.2 is-windows: 1.0.2 resolve-dir: 1.0.1 + dev: true /global-modules/2.0.0: resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} engines: {node: '>=6'} dependencies: global-prefix: 3.0.0 + dev: true /global-prefix/0.1.5: resolution: {integrity: sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==} @@ -25030,6 +25074,7 @@ packages: ini: 1.3.8 is-windows: 1.0.2 which: 1.3.1 + dev: true /global-prefix/3.0.0: resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} @@ -25038,6 +25083,7 @@ packages: ini: 1.3.8 kind-of: 6.0.3 which: 1.3.1 + dev: true /global/4.4.0: resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} @@ -25152,8 +25198,6 @@ packages: ignore: 4.0.6 pify: 4.0.1 slash: 2.0.0 - transitivePeerDependencies: - - supports-color dev: true /globjoin/0.1.4: @@ -25260,6 +25304,14 @@ packages: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: false + /gridicons/3.4.0: + resolution: {integrity: sha512-GikyCOcfhwHSN8tfsZvcWwWSaRLebVZCvDzfFg0X50E+dIAnG2phfFUTNa06dXA09kqRYCdnu8sPO8pSYO3UVA==} + peerDependencies: + react: 15 - 17 + dependencies: + prop-types: 15.8.1 + dev: false + /gridicons/3.4.0_react@17.0.2: resolution: {integrity: sha512-GikyCOcfhwHSN8tfsZvcWwWSaRLebVZCvDzfFg0X50E+dIAnG2phfFUTNa06dXA09kqRYCdnu8sPO8pSYO3UVA==} peerDependencies: @@ -25292,8 +25344,6 @@ packages: liftoff: 2.5.0 nopt: 4.0.3 v8flags: 3.1.3 - transitivePeerDependencies: - - supports-color dev: true /grunt-contrib-clean/2.0.0_grunt@1.3.0: @@ -25353,8 +25403,6 @@ packages: gaze: 1.1.3 lodash: 4.17.21 tiny-lr: 1.1.1 - transitivePeerDependencies: - - supports-color dev: true /grunt-known-options/1.1.1: @@ -25476,8 +25524,6 @@ packages: mkdirp: 1.0.4 nopt: 3.0.6 rimraf: 3.0.2 - transitivePeerDependencies: - - supports-color dev: true /gruntify-eslint/5.0.0_grunt@1.3.0: @@ -25710,23 +25756,6 @@ packages: hasBin: true dev: true - /hermes-engine/0.11.0: - resolution: {integrity: sha512-7aMUlZja2IyLYAcZ69NBnwJAR5ZOYlSllj0oMpx08a8HzxHOys0eKCzfphrf6D0vX1JGO1QQvVsQKe6TkYherw==} - - /hermes-estree/0.6.0: - resolution: {integrity: sha512-2YTGzJCkhdmT6VuNprWjXnvTvw/3iPNw804oc7yknvQpNKo+vJGZmtvLLCghOZf0OwzKaNAzeIMp71zQbNl09w==} - - /hermes-parser/0.6.0: - resolution: {integrity: sha512-Vf58jBZca2+QBLR9h7B7mdg8oFz2g5ILz1iVouZ5DOrOrAfBmPfJjdjDT8jrO0f+iJ4/hSRrQHqHIjSnTaLUDQ==} - dependencies: - hermes-estree: 0.6.0 - - /hermes-profile-transformer/0.0.6: - resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} - engines: {node: '>=8'} - dependencies: - source-map: 0.7.3 - /hex-color-regex/1.1.0: resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==} @@ -25867,6 +25896,8 @@ packages: param-case: 3.0.4 relateurl: 0.2.7 terser: 5.10.0 + transitivePeerDependencies: + - acorn dev: true /html-tags/3.1.0: @@ -25908,6 +25939,8 @@ packages: pretty-error: 4.0.0 tapable: 2.2.1 webpack: 5.70.0 + transitivePeerDependencies: + - acorn dev: true /htmlparser2/3.10.1: @@ -25965,6 +25998,7 @@ packages: setprototypeof: 1.1.1 statuses: 1.5.0 toidentifier: 1.0.0 + dev: true /http-parser-js/0.5.3: resolution: {integrity: sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==} @@ -26021,8 +26055,6 @@ packages: dependencies: agent-base: 4.3.0 debug: 3.2.7 - transitivePeerDependencies: - - supports-color dev: true /https-proxy-agent/4.0.0: @@ -26085,44 +26117,22 @@ packages: - supports-color dev: true - /i18n-calypso/5.0.0_react@17.0.2: + /i18n-calypso/5.0.0: resolution: {integrity: sha512-YgqLgshNiBOiifWxr4s33ODWQ4JIaHoBPWtgFyqcRy0+WGMX2CmTDbXaeZHkHxuIjzsGP+YrVTPNp7lfbiot4g==} peerDependencies: react: ^16.8 dependencies: '@babel/runtime': 7.17.7 '@tannin/sprintf': 1.2.0 - '@wordpress/compose': 3.25.3_react@17.0.2 + '@wordpress/compose': 3.25.3 debug: 4.3.4 events: 3.3.0 hash.js: 1.1.7 interpolate-components: 1.1.1 lodash: 4.17.21 lru: 3.1.0 - react: 17.0.2 tannin: 1.2.0 - use-subscription: 1.6.0_react@17.0.2 - transitivePeerDependencies: - - supports-color - dev: true - - /i18n-calypso/5.0.0_react@18.0.0: - resolution: {integrity: sha512-YgqLgshNiBOiifWxr4s33ODWQ4JIaHoBPWtgFyqcRy0+WGMX2CmTDbXaeZHkHxuIjzsGP+YrVTPNp7lfbiot4g==} - peerDependencies: - react: ^16.8 - dependencies: - '@babel/runtime': 7.17.7 - '@tannin/sprintf': 1.2.0 - '@wordpress/compose': 3.25.3_react@18.0.0 - debug: 4.3.4 - events: 3.3.0 - hash.js: 1.1.7 - interpolate-components: 1.1.1 - lodash: 4.17.21 - lru: 3.1.0 - react: 18.0.0 - tannin: 1.2.0 - use-subscription: 1.6.0_react@18.0.0 + use-subscription: 1.6.0 transitivePeerDependencies: - supports-color dev: true @@ -26215,13 +26225,9 @@ packages: resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} engines: {node: '>= 4'} - /image-size/0.6.3: - resolution: {integrity: sha512-47xSUiQioGaB96nqtp5/q55m0aBQSQdyIloMOc/x+QVTDZLNmXE892IIDrJ0hM1A5vcNUDD5tDffkSP5lCaIIA==} - engines: {node: '>=4.0'} - hasBin: true - /immutable/4.0.0: resolution: {integrity: sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==} + dev: true /import-cwd/2.1.0: resolution: {integrity: sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=} @@ -26230,7 +26236,7 @@ packages: import-from: 2.1.0 /import-fresh/2.0.0: - resolution: {integrity: sha1-2BNVwVYS04bGH53dOSLUMEgipUY=} + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} engines: {node: '>=4'} dependencies: caller-path: 2.0.0 @@ -26399,6 +26405,7 @@ packages: /interpret/1.4.0: resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} engines: {node: '>= 0.10'} + dev: true /interpret/2.2.0: resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} @@ -26421,6 +26428,7 @@ packages: /ip/1.1.5: resolution: {integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=} + dev: true /ipaddr.js/1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} @@ -26690,6 +26698,7 @@ packages: /is-interactive/1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} + dev: true /is-interactive/2.0.0: resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} @@ -26890,6 +26899,7 @@ packages: /is-unicode-supported/0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} + dev: true /is-unicode-supported/1.2.0: resolution: {integrity: sha512-wH+U77omcRzevfIG8dDhTS0V9zZyweakfD01FULl97+0EHiJTTZtJqxPSkIIo/SDPv/i07k/C9jAPY+jwLLeUQ==} @@ -27018,8 +27028,6 @@ packages: js-yaml: 3.14.1 mkdirp: 0.5.5 once: 1.4.0 - transitivePeerDependencies: - - supports-color dev: true /istanbul-lib-coverage/1.2.1: @@ -27051,8 +27059,6 @@ packages: babylon: 6.18.0 istanbul-lib-coverage: 1.2.1 semver: 5.7.1 - transitivePeerDependencies: - - supports-color dev: true /istanbul-lib-instrument/3.3.0: @@ -27127,8 +27133,6 @@ packages: mkdirp: 0.5.5 rimraf: 2.7.1 source-map: 0.5.7 - transitivePeerDependencies: - - supports-color dev: true /istanbul-lib-source-maps/3.0.6: @@ -27193,8 +27197,6 @@ packages: nopt: 3.0.6 which: 1.3.1 wordwrap: 1.0.0 - transitivePeerDependencies: - - supports-color dev: true /iterate-iterator/1.0.2: @@ -27400,9 +27402,7 @@ packages: realpath-native: 1.1.0 yargs: 13.3.2 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: false /jest-cli/25.5.4: @@ -27537,9 +27537,7 @@ packages: pretty-format: 24.9.0 realpath-native: 1.1.0 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: false /jest-config/25.5.4: @@ -27798,8 +27796,6 @@ packages: jest-get-type: 24.9.0 jest-util: 24.9.0 pretty-format: 24.9.0 - transitivePeerDependencies: - - supports-color dev: false /jest-each/25.5.0: @@ -27855,9 +27851,7 @@ packages: jest-util: 24.9.0 jsdom: 11.12.0 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: false /jest-environment-jsdom/25.5.0: @@ -28036,8 +28030,6 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 1.2.13 - transitivePeerDependencies: - - supports-color dev: false /jest-haste-map/25.5.1: @@ -28058,8 +28050,6 @@ packages: which: 2.0.2 optionalDependencies: fsevents: 2.3.2 - transitivePeerDependencies: - - supports-color /jest-haste-map/26.6.2: resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} @@ -28080,8 +28070,6 @@ packages: walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 - transitivePeerDependencies: - - supports-color /jest-haste-map/27.3.1: resolution: {integrity: sha512-lYfNZIzwPccDJZIyk9Iz5iQMM/MH56NIIcGj7AFU1YyA4ewWFBl8z+YPJuSCRML/ee2cCt2y3W4K3VXPT6Nhzg==} @@ -28350,8 +28338,6 @@ packages: micromatch: 3.1.10 slash: 2.0.0 stack-utils: 1.0.5 - transitivePeerDependencies: - - supports-color dev: false /jest-message-util/25.5.0: @@ -28567,8 +28553,6 @@ packages: '@jest/types': 24.9.0 jest-regex-util: 24.9.0 jest-snapshot: 24.9.0 - transitivePeerDependencies: - - supports-color dev: false /jest-resolve-dependencies/25.5.4: @@ -28586,8 +28570,6 @@ packages: '@jest/types': 26.6.2 jest-regex-util: 26.0.0 jest-snapshot: 26.6.2 - transitivePeerDependencies: - - supports-color dev: true /jest-resolve-dependencies/27.3.1: @@ -28681,15 +28663,12 @@ packages: resolve.exports: 1.1.0 slash: 3.0.0 - /jest-runner-groups/2.1.0_4647a0878e72be9de5cbb567f767cb2f: + /jest-runner-groups/2.1.0: resolution: {integrity: sha512-iHBIJ38yEW7qkPTW3tSulq/5kjgIiVtZjuYimBT1PltBYwsb1B1gPWGFMDdEfy9O3+6cyfe5MmVgMHafi69MUw==} engines: {node: '>= 10.14.2'} peerDependencies: jest-docblock: '>= 24' jest-runner: '>= 24' - dependencies: - jest-docblock: 27.5.1 - jest-runner: 27.5.1 dev: false /jest-runner/24.9.0: @@ -28716,9 +28695,7 @@ packages: source-map-support: 0.5.20 throat: 4.1.0 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: false /jest-runner/25.5.4: @@ -28875,9 +28852,7 @@ packages: strip-bom: 3.0.0 yargs: 13.3.2 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: false /jest-runtime/25.5.4: @@ -29070,8 +29045,6 @@ packages: natural-compare: 1.4.0 pretty-format: 24.9.0 semver: 6.3.0 - transitivePeerDependencies: - - supports-color dev: false /jest-snapshot/25.5.1: @@ -29114,8 +29087,6 @@ packages: natural-compare: 1.4.0 pretty-format: 26.6.2 semver: 7.3.5 - transitivePeerDependencies: - - supports-color dev: true /jest-snapshot/27.3.1: @@ -29145,7 +29116,7 @@ packages: jest-util: 27.5.1 natural-compare: 1.4.0 pretty-format: 27.3.1 - semver: 7.3.5 + semver: 7.3.7 transitivePeerDependencies: - supports-color dev: true @@ -29195,8 +29166,6 @@ packages: mkdirp: 0.5.5 slash: 2.0.0 source-map: 0.6.1 - transitivePeerDependencies: - - supports-color dev: false /jest-util/25.5.0: @@ -29276,6 +29245,7 @@ packages: jest-get-type: 26.3.0 leven: 3.1.0 pretty-format: 26.6.2 + dev: true /jest-validate/27.3.1: resolution: {integrity: sha512-3H0XCHDFLA9uDII67Bwi1Vy7AqwA5HqEEjyy934lgVhtJ3eisw6ShOF1MDmRPspyikef5MyExvIm0/TuLzZ86Q==} @@ -29311,8 +29281,6 @@ packages: chalk: 2.4.2 jest-util: 24.9.0 string-length: 2.0.0 - transitivePeerDependencies: - - supports-color dev: false /jest-watcher/25.5.0: @@ -29412,9 +29380,7 @@ packages: import-local: 2.0.0 jest-cli: 24.9.0 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: false /jest/25.5.4: @@ -29488,10 +29454,6 @@ packages: - ts-node - utf-8-validate - /jetifier/1.6.8: - resolution: {integrity: sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==} - hasBin: true - /jmespath/0.16.0: resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==} engines: {node: '>= 0.6.0'} @@ -29505,6 +29467,7 @@ packages: '@sideway/address': 4.1.4 '@sideway/formula': 3.0.0 '@sideway/pinpoint': 2.0.0 + dev: true /js-base64/2.6.4: resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==} @@ -29553,6 +29516,7 @@ packages: hasBin: true dependencies: argparse: 2.0.1 + dev: true /js2xmlparser/3.0.0: resolution: {integrity: sha1-P7YOqgicVED5MZ9RdgzNB+JJlzM=} @@ -29563,9 +29527,6 @@ packages: /jsbn/0.1.1: resolution: {integrity: sha1-peZUwuWi3rXyAdls77yoDA7y9RM=} - /jsc-android/250230.2.1: - resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==} - /jscodeshift/0.13.1_@babel+preset-env@7.16.11: resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} hasBin: true @@ -29578,7 +29539,7 @@ packages: '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8 - '@babel/preset-env': 7.16.11_@babel+core@7.17.8 + '@babel/preset-env': 7.16.11_@babel+core@7.12.9 '@babel/preset-flow': 7.16.7_@babel+core@7.17.8 '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8 '@babel/register': 7.17.7_@babel+core@7.17.8 @@ -29594,6 +29555,7 @@ packages: write-file-atomic: 2.4.1 transitivePeerDependencies: - supports-color + dev: true /jsdoc-type-pratt-parser/1.1.1: resolution: {integrity: sha512-uelRmpghNwPBuZScwgBG/OzodaFk5RbO5xaivBdsAY70icWfShwZ7PCMO0x1zSkOa8T1FzHThmrdoyg/0AwV5g==} @@ -29609,12 +29571,6 @@ packages: resolution: {integrity: sha512-2a6eRxSxp1BW040hFvaJxhsCMI9lT8QB8t14t+NY5tC5rckIR0U9cr2tjOeaFirmEOy6MHvmJnY7zTBHq431Lw==} engines: {node: '>=12.0.0'} - /jsdoctypeparser/6.1.0: - resolution: {integrity: sha512-UCQBZ3xCUBv/PLfwKAJhp6jmGOSLFNKzrotXGNgbKhWvz27wPsCsVeP7gIcHPElQw2agBmynAitXqhxR58XAmA==} - engines: {node: '>=6'} - hasBin: true - dev: true - /jsdoctypeparser/9.0.0: resolution: {integrity: sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw==} engines: {node: '>=10'} @@ -29650,9 +29606,6 @@ packages: whatwg-url: 6.5.0 ws: 5.2.3 xml-name-validator: 3.0.0 - transitivePeerDependencies: - - bufferutil - - utf-8-validate dev: false /jsdom/15.2.1: @@ -29811,6 +29764,7 @@ packages: resolution: {integrity: sha1-NzaitCi4e72gzIO1P6PWM6NcKug=} optionalDependencies: graceful-fs: 4.2.9 + dev: true /jsonfile/4.0.0: resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} @@ -29893,6 +29847,7 @@ packages: resolution: {integrity: sha1-QIhDO0azsbolnXh4XY6W9zugJDk=} optionalDependencies: graceful-fs: 4.2.9 + dev: true /kleur/3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} @@ -29977,6 +29932,7 @@ packages: dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 + dev: true /liftoff/2.5.0: resolution: {integrity: sha512-01zfGFqfORP1CGmZZP2Zn51zsqz4RltDi0RDOhbGoLYdUT5Lw+I2gX6QdwXhPITF6hPOHEOp+At6/L24hIg9WQ==} @@ -29990,8 +29946,6 @@ packages: object.map: 1.0.1 rechoir: 0.6.2 resolve: 1.20.0 - transitivePeerDependencies: - - supports-color dev: true /lilconfig/2.0.4: @@ -30132,6 +30086,7 @@ packages: /loader-runner/4.2.0: resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==} engines: {node: '>=6.11.5'} + dev: true /loader-utils/1.4.0: resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==} @@ -30183,6 +30138,7 @@ packages: engines: {node: '>=10'} dependencies: p-locate: 5.0.0 + dev: true /locutus/2.0.16: resolution: {integrity: sha512-pGfl6Hb/1mXLzrX5kl5lH7gz25ey0vwQssZp8Qo2CEF59di6KrAgdFm+0pW8ghLnvNzzJGj5tlWhhv2QbK3jeQ==} @@ -30302,9 +30258,6 @@ packages: /lodash.sortby/4.7.0: resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} - /lodash.throttle/4.1.1: - resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} - /lodash.truncate/4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} dev: true @@ -30328,6 +30281,7 @@ packages: dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 + dev: true /log-symbols/5.1.0: resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} @@ -30347,14 +30301,6 @@ packages: wrap-ansi: 6.2.0 dev: true - /logkitty/0.7.1: - resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} - hasBin: true - dependencies: - ansi-fragments: 0.2.1 - dayjs: 1.11.5 - yargs: 15.4.1 - /lolex/5.1.2: resolution: {integrity: sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==} dependencies: @@ -30483,7 +30429,6 @@ packages: socks-proxy-agent: 6.1.1 ssri: 8.0.1 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -30508,7 +30453,6 @@ packages: socks-proxy-agent: 6.1.1 ssri: 8.0.1 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -30585,6 +30529,13 @@ packages: uc.micro: 1.0.6 dev: true + /markdown-to-jsx/7.1.7: + resolution: {integrity: sha512-VI3TyyHlGkO8uFle0IOibzpO1c1iJDcXcS/zBrQrXQQvJ2tpdwVzVZ7XdKsyRz1NdRmre4dqQkMZzUHaKIG/1w==} + engines: {node: '>= 10'} + peerDependencies: + react: '>= 0.14.0' + dev: true + /markdown-to-jsx/7.1.7_react@17.0.2: resolution: {integrity: sha512-VI3TyyHlGkO8uFle0IOibzpO1c1iJDcXcS/zBrQrXQQvJ2tpdwVzVZ7XdKsyRz1NdRmre4dqQkMZzUHaKIG/1w==} engines: {node: '>= 10'} @@ -30815,6 +30766,7 @@ packages: /memoize-one/5.2.1: resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + dev: true /memoize-one/6.0.0: resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} @@ -30843,6 +30795,7 @@ packages: dependencies: errno: 0.1.8 readable-stream: 2.3.7 + dev: true /meow/6.1.1: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} @@ -30931,257 +30884,6 @@ packages: resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=} engines: {node: '>= 0.6'} - /metro-babel-transformer/0.70.3: - resolution: {integrity: sha512-bWhZRMn+mIOR/s3BDpFevWScz9sV8FGktVfMlF1eJBLoX24itHDbXvTktKBYi38PWIKcHedh6THSFpJogfuwNA==} - dependencies: - '@babel/core': 7.17.8 - hermes-parser: 0.6.0 - metro-source-map: 0.70.3 - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - - /metro-cache-key/0.70.3: - resolution: {integrity: sha512-0zpw+IcpM3hmGd5sKMdxNv3sbOIUYnMUvx1/yaM6vNRReSPmOLX0bP8fYf3CGgk8NEreZ1OHbVsuw7bdKt40Mw==} - - /metro-cache/0.70.3: - resolution: {integrity: sha512-iCix/+z812fUqa6KlOxaTkY6LQQDoXIe/VljXkGIvpygSCmYyhjQpfQVZEVVPezFmUBYXNdabdQ6cYx6JX3yMg==} - dependencies: - metro-core: 0.70.3 - rimraf: 2.7.1 - - /metro-config/0.70.3: - resolution: {integrity: sha512-SSCDjSTygoCgzoj61DdrBeJzZDRwQxUEfcgc6t6coxWSExXNR4mOngz0q4SAam49Bmjq9J2Jft6qUKnUTPrRgA==} - dependencies: - cosmiconfig: 5.2.1 - jest-validate: 26.6.2 - metro: 0.70.3 - metro-cache: 0.70.3 - metro-core: 0.70.3 - metro-runtime: 0.70.3 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - - /metro-core/0.70.3: - resolution: {integrity: sha512-NzfHB/w5R7yLaOeU1tzPTbBzCRsYSvpKJkLMP0yudszKZzIAZqNdjoEJ9GZ688Wi0ynZxcU0BxukXh4my80ZBw==} - dependencies: - jest-haste-map: 27.5.1 - lodash.throttle: 4.1.1 - metro-resolver: 0.70.3 - - /metro-hermes-compiler/0.70.3: - resolution: {integrity: sha512-W6WttLi4E72JL/NyteQ84uxYOFMibe0PUr9aBKuJxxfCq6QRnJKOVcNY0NLW0He2tneXGk+8ZsNz8c0flEvYqg==} - - /metro-inspector-proxy/0.70.3: - resolution: {integrity: sha512-qQoNdPGrmyoJSWYkxSDpTaAI8xyqVdNDVVj9KRm1PG8niSuYmrCCFGLLFsMvkVYwsCWUGHoGBx0UoAzVp14ejw==} - hasBin: true - dependencies: - connect: 3.7.0 - debug: 2.6.9 - ws: 7.5.5 - yargs: 15.4.1 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate - - /metro-minify-uglify/0.70.3: - resolution: {integrity: sha512-oHyjV9WDqOlDE1FPtvs6tIjjeY/oP1PNUPYL1wqyYtqvjN+zzAOrcbsAAL1sv+WARaeiMsWkF2bwtNo+Hghoog==} - dependencies: - uglify-es: 3.3.9 - - /metro-react-native-babel-preset/0.70.3: - resolution: {integrity: sha512-4Nxc1zEiHEu+GTdEMEsHnRgfaBkg8f/Td3+FcQ8NTSvs+xL3LBrQy6N07idWSQZHIdGFf+tTHvRfSIWLD8u8Tg==} - dependencies: - '@babel/core': 7.17.8 - '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.8 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.8 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8 - '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.8 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.17.8 - '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.17.8 - '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.17.8 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8 - '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.8 - '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.8 - '@babel/template': 7.16.7 - react-refresh: 0.4.3 - transitivePeerDependencies: - - supports-color - - /metro-react-native-babel-transformer/0.70.3: - resolution: {integrity: sha512-WKBU6S/G50j9cfmFM4k4oRYprd8u3qjleD4so1E2zbTNILg+gYla7ZFGCAvi2G0ZcqS2XuGCR375c2hF6VVvwg==} - dependencies: - '@babel/core': 7.17.8 - babel-preset-fbjs: 3.4.0_@babel+core@7.17.8 - hermes-parser: 0.6.0 - metro-babel-transformer: 0.70.3 - metro-react-native-babel-preset: 0.70.3 - metro-source-map: 0.70.3 - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - - /metro-resolver/0.70.3: - resolution: {integrity: sha512-5Pc5S/Gs4RlLbziuIWtvtFd9GRoILlaRC8RZDVq5JZWcWHywKy/PjNmOBNhpyvtRlzpJfy/ssIfLhu8zINt1Mw==} - dependencies: - absolute-path: 0.0.0 - - /metro-runtime/0.70.3: - resolution: {integrity: sha512-22xU7UdXZacniTIDZgN2EYtmfau2pPyh97Dcs+cWrLcJYgfMKjWBtesnDcUAQy3PHekDYvBdJZkoQUeskYTM+w==} - dependencies: - '@babel/runtime': 7.17.7 - - /metro-source-map/0.70.3: - resolution: {integrity: sha512-zsYtZGrwRbbGEFHtmMqqeCH9K9aTGNVPsurMOWCUeQA3VGyVGXPGtLMC+CdAM9jLpUyg6jw2xh0esxi+tYH7Uw==} - dependencies: - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 - invariant: 2.2.4 - metro-symbolicate: 0.70.3 - nullthrows: 1.1.1 - ob1: 0.70.3 - source-map: 0.5.7 - vlq: 1.0.1 - transitivePeerDependencies: - - supports-color - - /metro-symbolicate/0.70.3: - resolution: {integrity: sha512-JTYkF1dpeDUssQ84juE1ycnhHki2ylJBBdJE1JHtfu5oC+z1ElDbBdPHq90Uvt8HbRov/ZAnxvv7Zy6asS+WCA==} - engines: {node: '>=8.3'} - hasBin: true - dependencies: - invariant: 2.2.4 - metro-source-map: 0.70.3 - nullthrows: 1.1.1 - source-map: 0.5.7 - through2: 2.0.5 - vlq: 1.0.1 - transitivePeerDependencies: - - supports-color - - /metro-transform-plugins/0.70.3: - resolution: {integrity: sha512-dQRIJoTkWZN2IVS2KzgS1hs7ZdHDX3fS3esfifPkqFAEwHiLctCf0EsPgIknp0AjMLvmGWfSLJigdRB/dc0ASw==} - dependencies: - '@babel/core': 7.17.8 - '@babel/generator': 7.17.7 - '@babel/template': 7.16.7 - '@babel/traverse': 7.17.3 - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - - /metro-transform-worker/0.70.3: - resolution: {integrity: sha512-MtVVsnHhhBOp9GRLCdAb2mD1dTCsIzT4+m34KMRdBDCEbDIb90YafT5prpU8qbj5uKd0o2FOQdrJ5iy5zQilHw==} - dependencies: - '@babel/core': 7.17.8 - '@babel/generator': 7.17.7 - '@babel/parser': 7.17.8 - '@babel/types': 7.17.0 - babel-preset-fbjs: 3.4.0_@babel+core@7.17.8 - metro: 0.70.3 - metro-babel-transformer: 0.70.3 - metro-cache: 0.70.3 - metro-cache-key: 0.70.3 - metro-hermes-compiler: 0.70.3 - metro-source-map: 0.70.3 - metro-transform-plugins: 0.70.3 - nullthrows: 1.1.1 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - - /metro/0.70.3: - resolution: {integrity: sha512-uEWS7xg8oTetQDABYNtsyeUjdLhH3KAvLFpaFFoJqUpOk2A3iygszdqmjobFl6W4zrvKDJS+XxdMR1roYvUhTw==} - hasBin: true - dependencies: - '@babel/code-frame': 7.16.7 - '@babel/core': 7.17.8 - '@babel/generator': 7.17.7 - '@babel/parser': 7.17.8 - '@babel/template': 7.16.7 - '@babel/traverse': 7.17.3 - '@babel/types': 7.17.0 - absolute-path: 0.0.0 - accepts: 1.3.7 - async: 3.2.4 - chalk: 4.1.2 - ci-info: 2.0.0 - connect: 3.7.0 - debug: 2.6.9 - denodeify: 1.2.1 - error-stack-parser: 2.0.6 - fs-extra: 1.0.0 - graceful-fs: 4.2.9 - hermes-parser: 0.6.0 - image-size: 0.6.3 - invariant: 2.2.4 - jest-haste-map: 27.5.1 - jest-worker: 27.5.1 - lodash.throttle: 4.1.1 - metro-babel-transformer: 0.70.3 - metro-cache: 0.70.3 - metro-cache-key: 0.70.3 - metro-config: 0.70.3 - metro-core: 0.70.3 - metro-hermes-compiler: 0.70.3 - metro-inspector-proxy: 0.70.3 - metro-minify-uglify: 0.70.3 - metro-react-native-babel-preset: 0.70.3 - metro-resolver: 0.70.3 - metro-runtime: 0.70.3 - metro-source-map: 0.70.3 - metro-symbolicate: 0.70.3 - metro-transform-plugins: 0.70.3 - metro-transform-worker: 0.70.3 - mime-types: 2.1.34 - node-fetch: 2.6.7 - nullthrows: 1.1.1 - rimraf: 2.7.1 - serialize-error: 2.1.0 - source-map: 0.5.7 - strip-ansi: 6.0.1 - temp: 0.8.3 - throat: 5.0.0 - ws: 7.5.5 - yargs: 15.4.1 - transitivePeerDependencies: - - bufferutil - - encoding - - supports-color - - utf-8-validate - /microevent.ts/0.1.1: resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==} dev: true @@ -31212,28 +30914,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - - /micromatch/3.1.10_supports-color@6.1.0: - resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} - engines: {node: '>=0.10.0'} - dependencies: - arr-diff: 4.0.0 - array-unique: 0.3.2 - braces: 2.3.2_supports-color@6.1.0 - define-property: 2.0.2 - extend-shallow: 3.0.2 - extglob: 2.0.4_supports-color@6.1.0 - fragment-cache: 0.2.1 - kind-of: 6.0.3 - nanomatch: 1.2.13_supports-color@6.1.0 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2_supports-color@6.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /micromatch/4.0.4: resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==} @@ -31286,6 +30966,7 @@ packages: resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} engines: {node: '>=4'} hasBin: true + dev: true /mime/2.5.2: resolution: {integrity: sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==} @@ -31376,6 +31057,13 @@ packages: brace-expansion: 2.0.1 dev: true + /minimatch/5.1.0: + resolution: {integrity: sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==} + engines: {node: '>=10'} + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimist-options/4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} @@ -31516,7 +31204,7 @@ packages: ansi-colors: 3.2.3 browser-stdout: 1.3.1 chokidar: 3.3.0 - debug: 3.2.6_supports-color@6.0.0 + debug: 3.2.6 diff: 3.5.0 escape-string-regexp: 1.0.5 find-up: 3.0.0 @@ -31586,6 +31274,7 @@ packages: /ms/2.1.1: resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} + dev: true /ms/2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} @@ -31649,26 +31338,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color - - /nanomatch/1.2.13_supports-color@6.1.0: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} - 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.3 - object.pick: 1.3.0 - regex-not: 1.0.2 - snapdragon: 0.8.2_supports-color@6.1.0 - to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color /natural-compare/1.4.0: resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} @@ -31694,9 +31363,7 @@ packages: optionalDependencies: node-pty: 0.9.0 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: true /nearley/2.20.1: @@ -31711,6 +31378,7 @@ packages: /negotiator/0.6.2: resolution: {integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==} engines: {node: '>= 0.6'} + dev: true /negotiator/0.6.3: resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} @@ -31734,10 +31402,6 @@ packages: tslib: 2.3.1 dev: true - /nocache/3.0.4: - resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} - engines: {node: '>=12.0.0'} - /node-addon-api/1.7.2: resolution: {integrity: sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==} dev: true @@ -31747,6 +31411,7 @@ packages: engines: {node: '>= 0.10.5'} dependencies: minimatch: 3.1.2 + dev: true /node-domexception/1.0.0: resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} @@ -31814,7 +31479,6 @@ packages: tar: 6.1.11 which: 2.0.2 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -32079,7 +31743,6 @@ packages: minizlib: 2.1.2 npm-package-arg: 8.1.5 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -32124,9 +31787,6 @@ packages: dependencies: boolbase: 1.0.0 - /nullthrows/1.1.1: - resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==} - /num2fraction/1.2.2: resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} @@ -32144,9 +31804,6 @@ packages: /oauth-sign/0.9.0: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} - /ob1/0.70.3: - resolution: {integrity: sha512-Vy9GGhuXgDRY01QA6kdhToPd8AkLdLpX9GjH5kpqluVqTu70mgOm7tpGoJDZGaNbr9nJlJgnipqHJQRPORixIQ==} - /object-assign/4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -32223,10 +31880,6 @@ packages: isobject: 3.0.1 dev: true - /object.entries-ponyfill/1.0.1: - resolution: {integrity: sha512-j0ixssXc5GirDWhB2cLVPsOs9jx61G/iRndyMdToTsjMYY8BQmG1Ke6mwqXmpDiP8icye1YCR94NswNaa/yyzA==} - dev: true - /object.entries/1.1.5: resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} engines: {node: '>= 0.4'} @@ -32311,7 +31964,6 @@ packages: yeoman-generator: 5.6.1_yeoman-environment@3.9.1 yosay: 2.0.2 transitivePeerDependencies: - - bluebird - encoding - supports-color dev: true @@ -32331,10 +31983,12 @@ packages: engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 + dev: true /on-headers/1.0.2: resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} engines: {node: '>= 0.8'} + dev: true /once/1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} @@ -32354,12 +32008,6 @@ packages: dependencies: mimic-fn: 2.1.0 - /open/6.4.0: - resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} - engines: {node: '>=8'} - dependencies: - is-wsl: 1.1.0 - /open/7.4.2: resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} engines: {node: '>=8'} @@ -32401,6 +32049,7 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 word-wrap: 1.2.3 + dev: true /ora/4.1.1: resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==} @@ -32429,6 +32078,7 @@ packages: log-symbols: 4.1.0 strip-ansi: 6.0.1 wcwidth: 1.0.1 + dev: true /ora/6.1.2: resolution: {integrity: sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==} @@ -32541,6 +32191,7 @@ packages: engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 + dev: true /p-locate/2.0.0: resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} @@ -32565,6 +32216,7 @@ packages: engines: {node: '>=10'} dependencies: p-limit: 3.1.0 + dev: true /p-map/2.1.0: resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} @@ -32664,7 +32316,6 @@ packages: ssri: 8.0.1 tar: 6.1.11 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -32818,6 +32469,7 @@ packages: /parseurl/1.3.3: resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} engines: {node: '>= 0.8'} + dev: true /pascal-case/1.1.2: resolution: {integrity: sha1-Pl1kogBDgwp8STRMLXS0G+DJyZs=} @@ -33047,13 +32699,6 @@ packages: hasBin: true dev: true - /plist/3.0.6: - resolution: {integrity: sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==} - engines: {node: '>=6'} - dependencies: - base64-js: 1.5.1 - xmlbuilder: 15.1.1 - /plur/4.0.0: resolution: {integrity: sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==} engines: {node: '>=10'} @@ -33114,8 +32759,6 @@ packages: async: 2.6.3 debug: 3.2.7 mkdirp: 0.5.5 - transitivePeerDependencies: - - supports-color dev: true /posix-character-classes/0.1.1: @@ -33146,8 +32789,6 @@ packages: postcss: 6.0.23 postcss-message-helpers: 2.0.0 postcss-value-parser: 3.3.1 - transitivePeerDependencies: - - supports-color dev: true /postcss-colormin/4.0.3: @@ -33272,7 +32913,7 @@ packages: dependencies: htmlparser2: 3.10.1 postcss: 7.0.39 - postcss-syntax: 0.36.2_5111c4e3f61982716b7e3f1c84e1f773 + postcss-syntax: 0.36.2_postcss@7.0.39 dev: true /postcss-less/3.1.4: @@ -33310,7 +32951,7 @@ packages: loader-utils: 2.0.2 postcss: 7.0.39 schema-utils: 3.1.1 - semver: 7.3.5 + semver: 7.3.7 webpack: 4.46.0 dev: true @@ -33835,31 +33476,12 @@ packages: svgo: 2.8.0 dev: true - /postcss-syntax/0.36.2_5111c4e3f61982716b7e3f1c84e1f773: + /postcss-syntax/0.36.2_postcss@7.0.39: resolution: {integrity: sha512-nBRg/i7E3SOHWxF3PpF5WnJM/jQ1YpY9000OaVXlAQj6Zp/kIqJxEDWIZ67tAd7NLuk7zqN4yqe9nc0oNAOs1w==} peerDependencies: postcss: '>=5.0.0' - postcss-html: '*' - postcss-jsx: '*' - postcss-less: '*' - postcss-markdown: '*' - postcss-scss: '*' - peerDependenciesMeta: - postcss-html: - optional: true - postcss-jsx: - optional: true - postcss-less: - optional: true - postcss-markdown: - optional: true - postcss-scss: - optional: true dependencies: postcss: 7.0.39 - postcss-html: 0.36.0_4f7b71a942b8b7a555b8adf78f88122b - postcss-less: 3.1.4 - postcss-scss: 2.1.1 dev: true /postcss-unique-selectors/4.0.1: @@ -33972,6 +33594,7 @@ packages: /prelude-ls/1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} + dev: true /prepend-http/1.0.4: resolution: {integrity: sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=} @@ -34107,22 +33730,6 @@ packages: /promise-inflight/1.0.1: resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - dev: true - - /promise-inflight/1.0.1_bluebird@3.7.2: - resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=} - peerDependencies: - bluebird: '*' - peerDependenciesMeta: - bluebird: - optional: true - dependencies: - bluebird: 3.7.2 dev: true /promise-retry/2.0.1: @@ -34160,11 +33767,6 @@ packages: asap: 2.0.6 dev: true - /promise/8.1.0: - resolution: {integrity: sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==} - dependencies: - asap: 2.0.6 - /promptly/3.2.0: resolution: {integrity: sha512-WnR9obtgW+rG4oUV3hSnNGl1pHm3V1H/qD9iJBumGSmVsSC5HpZOLuu8qdMb6yCItGfT7dcRszejr/5P3i9Pug==} dependencies: @@ -34222,6 +33824,7 @@ packages: /prr/1.0.1: resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=} + dev: true /pseudomap/1.0.2: resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=} @@ -34284,9 +33887,7 @@ packages: rimraf: 2.7.1 ws: 6.2.2 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate dev: true /puppeteer-core/10.4.0: @@ -34350,9 +33951,7 @@ packages: rimraf: 2.7.1 ws: 6.2.2 transitivePeerDependencies: - - bufferutil - supports-color - - utf-8-validate /q/1.5.1: resolution: {integrity: sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=} @@ -34464,6 +34063,7 @@ packages: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} dependencies: safe-buffer: 5.2.1 + dev: true /randomfill/1.0.4: resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} @@ -34483,6 +34083,7 @@ packages: /range-parser/1.2.1: resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} engines: {node: '>= 0.6'} + dev: true /raw-body/1.1.7: resolution: {integrity: sha512-WmJJU2e9Y6M5UzTOkHaM7xJGAPQD8PNzx3bAd2+uhZAim6wDk6dAZxPVYLF67XhbR4hmKGh33Lpmh4XWrCH5Mg==} @@ -34534,15 +34135,13 @@ packages: strip-json-comments: 2.0.1 dev: true - /re-resizable/6.9.5_react-dom@16.14.0+react@17.0.2: + /re-resizable/6.9.5: resolution: {integrity: sha512-Q4+K8gOPbUBmbJCa0qfoVXBGnCwkAJrZ9KUca4GDn5FmxyV2HtLrBz7u43uUOb0y7xKbwcfuftweiOCIDEiCQA==} peerDependencies: react: ^16.13.1 || ^17.0.0 react-dom: ^16.13.1 || ^17.0.0 dependencies: fast-memoize: 2.5.2 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 /re-resizable/6.9.5_react-dom@17.0.2+react@17.0.2: resolution: {integrity: sha512-Q4+K8gOPbUBmbJCa0qfoVXBGnCwkAJrZ9KUca4GDn5FmxyV2HtLrBz7u43uUOb0y7xKbwcfuftweiOCIDEiCQA==} @@ -34554,6 +34153,15 @@ packages: react: 17.0.2 react-dom: 17.0.2_react@17.0.2 + /re-resizable/6.9.5_react@17.0.2: + resolution: {integrity: sha512-Q4+K8gOPbUBmbJCa0qfoVXBGnCwkAJrZ9KUca4GDn5FmxyV2HtLrBz7u43uUOb0y7xKbwcfuftweiOCIDEiCQA==} + peerDependencies: + react: ^16.13.1 || ^17.0.0 + react-dom: ^16.13.1 || ^17.0.0 + dependencies: + fast-memoize: 2.5.2 + react: 17.0.2 + /react-addons-create-fragment/15.6.2: resolution: {integrity: sha1-o5TefCx77Na1R1uhuXrEcs58dPg=} dependencies: @@ -34568,7 +34176,7 @@ packages: object-assign: 4.1.1 dev: false - /react-autosize-textarea/7.1.0_react-dom@16.14.0+react@17.0.2: + /react-autosize-textarea/7.1.0_react@17.0.2: resolution: {integrity: sha512-BHpjCDkuOlllZn3nLazY2F8oYO1tS2jHnWhcjTWQdcKiiMU6gHLNt/fzmqMSyerR0eTdKtfSIqtSeTtghNwS+g==} peerDependencies: react: ^0.14.0 || ^15.0.0 || ^16.0.0 @@ -34578,27 +34186,20 @@ packages: line-height: 0.3.1 prop-types: 15.8.1 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 dev: true - /react-colorful/4.4.4_react-dom@16.14.0+react@17.0.2: + /react-colorful/4.4.4: resolution: {integrity: sha512-01V2/6rr6sa1vaZntWZJXZxnU7ew02NG2rqq0eoVp4d3gFU5Ug9lDzNMbr+8ns0byXsJbBR8LbwQTlAjz6x7Kg==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' - dependencies: - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 dev: false - /react-colorful/5.5.1_react-dom@16.14.0+react@17.0.2: + /react-colorful/5.5.1: resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' - dependencies: - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 /react-colorful/5.5.1_react-dom@17.0.2+react@17.0.2: resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==} @@ -34608,32 +34209,16 @@ packages: dependencies: react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - - /react-dates/17.2.0_1c0434f8966d236e87c049995b041cae: - resolution: {integrity: sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==} - peerDependencies: - moment: ^2.18.1 - react: ^0.14 || ^15.5.4 || ^16.1.1 - react-dom: ^0.14 || ^15.5.4 || ^16.1.1 - dependencies: - airbnb-prop-types: 2.16.0_react@17.0.2 - consolidated-events: 2.0.2 - is-touch-device: 1.0.1 - lodash: 4.17.21 - moment: 2.29.1 - object.assign: 4.1.2 - object.values: 1.1.5 - prop-types: 15.8.1 - react: 17.0.2 - react-addons-shallow-compare: 15.6.3 - react-dom: 16.14.0_react@17.0.2 - react-moment-proptypes: 1.8.1 - react-outside-click-handler: 1.3.0_react-dom@16.14.0+react@17.0.2 - react-portal: 4.2.1_react-dom@16.14.0+react@17.0.2 - react-with-styles: 3.2.3_react-dom@16.14.0+react@17.0.2 - react-with-styles-interface-css: 4.0.3_react-with-styles@3.2.3 dev: false + /react-colorful/5.5.1_react@17.0.2: + resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + react: 17.0.2 + /react-dates/17.2.0_d0804d3726ad84366bcc42e494508e1e: resolution: {integrity: sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==} peerDependencies: @@ -34654,12 +34239,59 @@ packages: react-dom: 17.0.2_react@17.0.2 react-moment-proptypes: 1.8.1 react-outside-click-handler: 1.3.0_react-dom@17.0.2+react@17.0.2 - react-portal: 4.2.1_react-dom@17.0.2+react@17.0.2 + react-portal: 4.2.1_react@17.0.2 react-with-styles: 3.2.3_react-dom@17.0.2+react@17.0.2 react-with-styles-interface-css: 4.0.3_react-with-styles@3.2.3 dev: false - /react-dates/21.8.0_895effa80be9def90ecbc38e5a9fcfe5: + /react-dates/17.2.0_moment@2.29.1: + resolution: {integrity: sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==} + peerDependencies: + moment: ^2.18.1 + react: ^0.14 || ^15.5.4 || ^16.1.1 + react-dom: ^0.14 || ^15.5.4 || ^16.1.1 + dependencies: + airbnb-prop-types: 2.16.0 + consolidated-events: 2.0.2 + is-touch-device: 1.0.1 + lodash: 4.17.21 + moment: 2.29.1 + object.assign: 4.1.2 + object.values: 1.1.5 + prop-types: 15.8.1 + react-addons-shallow-compare: 15.6.3 + react-moment-proptypes: 1.8.1 + react-outside-click-handler: 1.3.0 + react-portal: 4.2.1 + react-with-styles: 3.2.3 + react-with-styles-interface-css: 4.0.3_react-with-styles@3.2.3 + dev: false + + /react-dates/17.2.0_moment@2.29.1+react@17.0.2: + resolution: {integrity: sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==} + peerDependencies: + moment: ^2.18.1 + react: ^0.14 || ^15.5.4 || ^16.1.1 + react-dom: ^0.14 || ^15.5.4 || ^16.1.1 + dependencies: + airbnb-prop-types: 2.16.0_react@17.0.2 + consolidated-events: 2.0.2 + is-touch-device: 1.0.1 + lodash: 4.17.21 + moment: 2.29.1 + object.assign: 4.1.2 + object.values: 1.1.5 + prop-types: 15.8.1 + react: 17.0.2 + react-addons-shallow-compare: 15.6.3 + react-moment-proptypes: 1.8.1 + react-outside-click-handler: 1.3.0_react@17.0.2 + react-portal: 4.2.1_react@17.0.2 + react-with-styles: 3.2.3_react@17.0.2 + react-with-styles-interface-css: 4.0.3_react-with-styles@3.2.3 + dev: false + + /react-dates/21.8.0_33310dc40fed09c713f34ce185e0313d: resolution: {integrity: sha512-PPriGqi30CtzZmoHiGdhlA++YPYPYGCZrhydYmXXQ6RAvAsaONcPtYgXRTLozIOrsQ5mSo40+DiA5eOFHnZ6xw==} peerDependencies: '@babel/runtime': ^7.0.0 @@ -34679,24 +34311,14 @@ packages: prop-types: 15.8.1 raf: 3.4.1 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 react-moment-proptypes: 1.8.1 - react-outside-click-handler: 1.3.0_react-dom@16.14.0+react@17.0.2 - react-portal: 4.2.1_react-dom@16.14.0+react@17.0.2 - react-with-direction: 1.4.0_react-dom@16.14.0+react@17.0.2 - react-with-styles: 4.2.0_fc12a0973704c75bd6b22fba3192b866 + react-outside-click-handler: 1.3.0_react@17.0.2 + react-portal: 4.2.1_react@17.0.2 + react-with-direction: 1.4.0_react@17.0.2 + react-with-styles: 4.2.0_03b7398ce1646b55869f4c6ae93c0ed1 react-with-styles-interface-css: 6.0.0_a74d5b4915426b01704b6ebc781be834 dev: false - /react-devtools-core/4.24.0: - resolution: {integrity: sha512-Rw7FzYOOzcfyUPaAm9P3g0tFdGqGq2LLiAI+wjYcp6CsF3DeeMrRS3HZAho4s273C29G/DJhx0e8BpRE/QZNGg==} - dependencies: - shell-quote: 1.7.3 - ws: 7.5.5 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - /react-docgen-typescript/2.2.2_typescript@4.2.4: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: @@ -34744,17 +34366,6 @@ packages: scheduler: 0.19.1 dev: true - /react-dom/16.14.0_react@17.0.2: - resolution: {integrity: sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==} - peerDependencies: - react: ^16.14.0 - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - prop-types: 15.8.1 - react: 17.0.2 - scheduler: 0.19.1 - /react-dom/17.0.2_react@17.0.2: resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} peerDependencies: @@ -34765,7 +34376,17 @@ packages: react: 17.0.2 scheduler: 0.20.2 - /react-draggable/4.4.4_react-dom@16.14.0+react@17.0.2: + /react-draggable/4.4.4: + resolution: {integrity: sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==} + peerDependencies: + react: '>= 16.3.0' + react-dom: '>= 16.3.0' + dependencies: + clsx: 1.1.1 + prop-types: 15.8.1 + dev: true + + /react-draggable/4.4.4_react@17.0.2: resolution: {integrity: sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==} peerDependencies: react: '>= 16.3.0' @@ -34774,22 +34395,20 @@ packages: clsx: 1.1.1 prop-types: 15.8.1 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 dev: true - /react-draggable/4.4.4_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-6e0WdcNLwpBx/YIDpoyd2Xb04PB0elrDrulKUgdrIlwuYvxh5Ok9M+F8cljm8kPXXs43PmMzek9RrB1b7mLMqA==} + /react-element-to-jsx-string/14.3.4: + resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 dependencies: - clsx: 1.1.1 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@base2/pretty-print-object': 1.0.1 + is-plain-object: 5.0.0 + react-is: 17.0.2 dev: true - /react-element-to-jsx-string/14.3.4_react-dom@16.14.0+react@17.0.2: + /react-element-to-jsx-string/14.3.4_react@17.0.2: resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} peerDependencies: react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 @@ -34798,21 +34417,16 @@ packages: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 react-is: 17.0.2 dev: true - /react-element-to-jsx-string/14.3.4_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} + /react-error-boundary/3.1.4: + resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==} + engines: {node: '>=10', npm: '>=6'} peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react: '>=16.13.1' dependencies: - '@base2/pretty-print-object': 1.0.1 - is-plain-object: 5.0.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 + '@babel/runtime': 7.17.7 dev: true /react-error-boundary/3.1.4_react@17.0.2: @@ -34828,7 +34442,7 @@ packages: /react-fast-compare/3.2.0: resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==} - /react-helmet-async/1.2.3_react-dom@16.14.0+react@17.0.2: + /react-helmet-async/1.2.3: resolution: {integrity: sha512-mCk2silF53Tq/YaYdkl2sB+/tDoPnaxN7dFS/6ZLJb/rhUY2EWGI5Xj2b4jHppScMqY45MbgPSwTxDchKpZ5Kw==} peerDependencies: react: ^16.6.0 || ^17.0.0 @@ -34837,13 +34451,11 @@ packages: '@babel/runtime': 7.17.7 invariant: 2.2.4 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 react-fast-compare: 3.2.0 shallowequal: 1.1.0 dev: true - /react-helmet-async/1.2.3_react-dom@17.0.2+react@17.0.2: + /react-helmet-async/1.2.3_react@17.0.2: resolution: {integrity: sha512-mCk2silF53Tq/YaYdkl2sB+/tDoPnaxN7dFS/6ZLJb/rhUY2EWGI5Xj2b4jHppScMqY45MbgPSwTxDchKpZ5Kw==} peerDependencies: react: ^16.6.0 || ^17.0.0 @@ -34853,11 +34465,18 @@ packages: invariant: 2.2.4 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 react-fast-compare: 3.2.0 shallowequal: 1.1.0 dev: true + /react-input-autosize/3.0.0: + resolution: {integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==} + peerDependencies: + react: ^16.3.0 || ^17.0.0 + dependencies: + prop-types: 15.8.1 + dev: true + /react-input-autosize/3.0.0_react@17.0.2: resolution: {integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==} peerDependencies: @@ -34867,6 +34486,16 @@ packages: react: 17.0.2 dev: true + /react-inspector/5.1.1: + resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} + peerDependencies: + react: ^16.8.4 || ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + is-dom: 1.1.0 + prop-types: 15.8.1 + dev: true + /react-inspector/5.1.1_react@17.0.2: resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} peerDependencies: @@ -34891,7 +34520,7 @@ packages: resolution: {integrity: sha512-alTKsjEL0dKH/ru1Iyn7vliS2QRcBp9zZPGoWxUOvRGWPUYgjo+V01is7p04It6KhgrzhJGnIj9GgX8W4bZoCQ==} dev: false - /react-modal/3.15.1_react-dom@16.14.0+react@17.0.2: + /react-modal/3.15.1_react@17.0.2: resolution: {integrity: sha512-duB9bxOaYg7Zt6TMFldIFxQRtSP+Dg3F1ZX3FXxSUn+3tZZ/9JCgeAQKDg7rhZSAqopq8TFRw3yIbnx77gyFTw==} engines: {node: '>=8'} peerDependencies: @@ -34901,7 +34530,6 @@ packages: exenv: 1.2.2 prop-types: 15.8.1 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 react-lifecycles-compat: 3.0.4 warning: 4.0.3 dev: false @@ -34912,20 +34540,6 @@ packages: moment: 2.29.1 dev: false - /react-native-codegen/0.69.1_@babel+preset-env@7.16.11: - resolution: {integrity: sha512-TOZEqBarczcyYN3iZE3VpKkooOevaAzBq9n7lU0h9mQUvtRhLVyolc+a5K6cWI0e4v4K69I0MqzjPcPeFKo32Q==} - dependencies: - '@babel/parser': 7.17.8 - flow-parser: 0.121.0 - jscodeshift: 0.13.1_@babel+preset-env@7.16.11 - nullthrows: 1.1.1 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - - /react-native-gradle-plugin/0.0.7: - resolution: {integrity: sha512-+4JpbIx42zGTONhBTIXSyfyHICHC29VTvhkkoUOJAh/XHPEixpuBduYgf6Y4y9wsN1ARlQhBBoptTvXvAFQf5g==} - /react-native-url-polyfill/1.3.0: resolution: {integrity: sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==} peerDependencies: @@ -34933,75 +34547,17 @@ packages: dependencies: whatwg-url-without-unicode: 8.0.0-3 - /react-native-url-polyfill/1.3.0_react-native@0.69.4: - resolution: {integrity: sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==} - peerDependencies: - react-native: '*' - dependencies: - react-native: 0.69.4_24353ddb04343aa31089be039ffbe27f - whatwg-url-without-unicode: 8.0.0-3 - - /react-native/0.69.4_24353ddb04343aa31089be039ffbe27f: - resolution: {integrity: sha512-rqNMialM/T4pHRKWqTIpOxA65B/9kUjtnepxwJqvsdCeMP9Q2YdSx4VASFR9RoEFYcPRU41yGf6EKrChNfns3g==} - engines: {node: '>=14'} - hasBin: true - peerDependencies: - react: 18.0.0 - dependencies: - '@jest/create-cache-key-function': 27.5.1 - '@react-native-community/cli': 8.0.6_react-native@0.69.4 - '@react-native-community/cli-platform-android': 8.0.5 - '@react-native-community/cli-platform-ios': 8.0.6 - '@react-native/assets': 1.0.0 - '@react-native/normalize-color': 2.0.0 - '@react-native/polyfills': 2.0.0 - abort-controller: 3.0.0 - anser: 1.4.10 - base64-js: 1.5.1 - event-target-shim: 5.0.1 - hermes-engine: 0.11.0 - invariant: 2.2.4 - jsc-android: 250230.2.1 - memoize-one: 5.2.1 - metro-react-native-babel-transformer: 0.70.3 - metro-runtime: 0.70.3 - metro-source-map: 0.70.3 - mkdirp: 0.5.5 - nullthrows: 1.1.1 - pretty-format: 26.6.2 - promise: 8.1.0 - react: 17.0.2 - react-devtools-core: 4.24.0 - react-native-codegen: 0.69.1_@babel+preset-env@7.16.11 - react-native-gradle-plugin: 0.0.7 - react-refresh: 0.4.3 - react-shallow-renderer: 16.15.0_react@17.0.2 - regenerator-runtime: 0.13.9 - scheduler: 0.21.0 - stacktrace-parser: 0.1.10 - use-sync-external-store: 1.2.0_react@17.0.2 - whatwg-fetch: 3.6.2 - ws: 6.2.2 - transitivePeerDependencies: - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - utf-8-validate - - /react-outside-click-handler/1.3.0_react-dom@16.14.0+react@17.0.2: + /react-outside-click-handler/1.3.0: resolution: {integrity: sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==} peerDependencies: react: ^0.14 || >=15 react-dom: ^0.14 || >=15 dependencies: - airbnb-prop-types: 2.16.0_react@17.0.2 + airbnb-prop-types: 2.16.0 consolidated-events: 2.0.2 document.contains: 1.0.2 object.values: 1.1.5 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 dev: false /react-outside-click-handler/1.3.0_react-dom@17.0.2+react@17.0.2: @@ -35019,7 +34575,21 @@ packages: react-dom: 17.0.2_react@17.0.2 dev: false - /react-popper-tooltip/3.1.1_react-dom@16.14.0+react@17.0.2: + /react-outside-click-handler/1.3.0_react@17.0.2: + resolution: {integrity: sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==} + peerDependencies: + react: ^0.14 || >=15 + react-dom: ^0.14 || >=15 + dependencies: + airbnb-prop-types: 2.16.0_react@17.0.2 + consolidated-events: 2.0.2 + document.contains: 1.0.2 + object.values: 1.1.5 + prop-types: 15.8.1 + react: 17.0.2 + dev: false + + /react-popper-tooltip/3.1.1: resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} peerDependencies: react: ^16.6.0 || ^17.0.0 @@ -35027,12 +34597,10 @@ packages: dependencies: '@babel/runtime': 7.17.7 '@popperjs/core': 2.11.4 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-popper: 2.2.5_2e9dd80dbd4df675244d857293d4c5b0 + react-popper: 2.2.5_@popperjs+core@2.11.4 dev: true - /react-popper-tooltip/3.1.1_react-dom@17.0.2+react@17.0.2: + /react-popper-tooltip/3.1.1_react@17.0.2: resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} peerDependencies: react: ^16.6.0 || ^17.0.0 @@ -35041,7 +34609,6 @@ packages: '@babel/runtime': 7.17.7 '@popperjs/core': 2.11.4 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 react-popper: 2.2.5_2e9dd80dbd4df675244d857293d4c5b0 dev: true @@ -35056,29 +34623,35 @@ packages: react-fast-compare: 3.2.0 warning: 4.0.3 - /react-portal/4.2.1_react-dom@16.14.0+react@17.0.2: + /react-popper/2.2.5_@popperjs+core@2.11.4: + resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==} + peerDependencies: + '@popperjs/core': ^2.0.0 + react: ^16.8.0 || ^17 + dependencies: + '@popperjs/core': 2.11.4 + react-fast-compare: 3.2.0 + warning: 4.0.3 + dev: true + + /react-portal/4.2.1: resolution: {integrity: sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==} peerDependencies: react: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 - react-dom: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 dependencies: prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 dev: false - /react-portal/4.2.1_react-dom@17.0.2+react@17.0.2: + /react-portal/4.2.1_react@17.0.2: resolution: {integrity: sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==} peerDependencies: react: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 - react-dom: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0 dependencies: prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 dev: false - /react-query/3.39.1_react-dom@16.14.0+react@17.0.2: + /react-query/3.39.1_react@17.0.2: resolution: {integrity: sha512-qYKT1bavdDiQZbngWZyPotlBVzcBjDYEJg5RQLBa++5Ix5jjfbEYJmHSZRZD+USVHUSvl/ey9Hu+QfF1QAK80A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -35094,7 +34667,6 @@ packages: broadcast-channel: 3.7.0 match-sorter: 6.3.1 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 dev: false /react-refresh/0.11.0: @@ -35102,9 +34674,10 @@ packages: engines: {node: '>=0.10.0'} dev: true - /react-refresh/0.4.3: - resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==} - engines: {node: '>=0.10.0'} + /react-resize-aware/3.1.1: + resolution: {integrity: sha512-M8IyVLBN8D6tEUss+bxQlWte3ZYtNEGhg7rBxtCVG8yEBjUlZwUo5EFLq6tnvTZXcgAbCLjsQn+NCoTJKumRYg==} + peerDependencies: + react: ^16.8.0 || 17.x /react-resize-aware/3.1.1_react@16.14.0: resolution: {integrity: sha512-M8IyVLBN8D6tEUss+bxQlWte3ZYtNEGhg7rBxtCVG8yEBjUlZwUo5EFLq6tnvTZXcgAbCLjsQn+NCoTJKumRYg==} @@ -35120,15 +34693,19 @@ packages: react: ^16.8.0 || 17.x dependencies: react: 17.0.2 + dev: false - /react-resize-aware/3.1.1_react@18.0.0: - resolution: {integrity: sha512-M8IyVLBN8D6tEUss+bxQlWte3ZYtNEGhg7rBxtCVG8yEBjUlZwUo5EFLq6tnvTZXcgAbCLjsQn+NCoTJKumRYg==} + /react-router-dom/6.2.2: + resolution: {integrity: sha512-AtYEsAST7bDD4dLSQHDnk/qxWLJdad5t1HFa1qJyUrCeGgEuCSw0VB/27ARbF9Fi/W5598ujvJOm3ujUCVzuYQ==} peerDependencies: - react: ^16.8.0 || 17.x + react: '>=16.8' + react-dom: '>=16.8' dependencies: - react: 18.0.0 + history: 5.3.0 + react-router: 6.2.2 + dev: true - /react-router-dom/6.2.2_react-dom@16.14.0+react@17.0.2: + /react-router-dom/6.2.2_react@17.0.2: resolution: {integrity: sha512-AtYEsAST7bDD4dLSQHDnk/qxWLJdad5t1HFa1qJyUrCeGgEuCSw0VB/27ARbF9Fi/W5598ujvJOm3ujUCVzuYQ==} peerDependencies: react: '>=16.8' @@ -35136,21 +34713,18 @@ packages: dependencies: history: 5.3.0 react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 react-router: 6.2.2_react@17.0.2 dev: true - /react-router-dom/6.2.2_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-AtYEsAST7bDD4dLSQHDnk/qxWLJdad5t1HFa1qJyUrCeGgEuCSw0VB/27ARbF9Fi/W5598ujvJOm3ujUCVzuYQ==} + /react-router-dom/6.3.0: + resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} peerDependencies: react: '>=16.8' react-dom: '>=16.8' dependencies: history: 5.3.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-router: 6.2.2_react@17.0.2 - dev: true + react-router: 6.3.0 + dev: false /react-router-dom/6.3.0_react-dom@17.0.2+react@17.0.2: resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} @@ -35164,6 +34738,14 @@ packages: react-router: 6.3.0_react@17.0.2 dev: false + /react-router/6.2.2: + resolution: {integrity: sha512-/MbxyLzd7Q7amp4gDOGaYvXwhEojkJD5BtExkuKmj39VEE0m3l/zipf6h2WIB2jyAO0lI6NGETh4RDcktRm4AQ==} + peerDependencies: + react: '>=16.8' + dependencies: + history: 5.3.0 + dev: true + /react-router/6.2.2_react@17.0.2: resolution: {integrity: sha512-/MbxyLzd7Q7amp4gDOGaYvXwhEojkJD5BtExkuKmj39VEE0m3l/zipf6h2WIB2jyAO0lI6NGETh4RDcktRm4AQ==} peerDependencies: @@ -35173,6 +34755,14 @@ packages: react: 17.0.2 dev: true + /react-router/6.3.0: + resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} + peerDependencies: + react: '>=16.8' + dependencies: + history: 5.3.0 + dev: false + /react-router/6.3.0_react@17.0.2: resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} peerDependencies: @@ -35182,7 +34772,7 @@ packages: react: 17.0.2 dev: false - /react-select/3.2.0_react-dom@16.14.0+react@17.0.2: + /react-select/3.2.0: resolution: {integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -35190,17 +34780,15 @@ packages: dependencies: '@babel/runtime': 7.17.7 '@emotion/cache': 10.0.29 - '@emotion/core': 10.3.1_react@17.0.2 + '@emotion/core': 10.3.1 '@emotion/css': 10.0.27 memoize-one: 5.2.1 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - react-input-autosize: 3.0.0_react@17.0.2 - react-transition-group: 4.4.2_react-dom@16.14.0+react@17.0.2 + react-input-autosize: 3.0.0 + react-transition-group: 4.4.2 dev: true - /react-select/3.2.0_react-dom@17.0.2+react@17.0.2: + /react-select/3.2.0_react@17.0.2: resolution: {integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -35213,11 +34801,18 @@ packages: memoize-one: 5.2.1 prop-types: 15.8.1 react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 react-input-autosize: 3.0.0_react@17.0.2 - react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2 + react-transition-group: 4.4.2_react@17.0.2 dev: true + /react-shallow-renderer/16.14.1: + resolution: {integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==} + peerDependencies: + react: ^16.0.0 || ^17.0.0 + dependencies: + object-assign: 4.1.1 + react-is: 17.0.2 + /react-shallow-renderer/16.14.1_react@17.0.2: resolution: {integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==} peerDependencies: @@ -35226,15 +34821,7 @@ packages: object-assign: 4.1.1 react: 17.0.2 react-is: 17.0.2 - - /react-shallow-renderer/16.15.0_react@17.0.2: - resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} - peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 - dependencies: - object-assign: 4.1.1 - react: 17.0.2 - react-is: 17.0.2 + dev: true /react-sizeme/3.0.2: resolution: {integrity: sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==} @@ -35245,7 +34832,7 @@ packages: throttle-debounce: 3.0.1 dev: true - /react-spring/8.0.27_react-dom@16.14.0+react@17.0.2: + /react-spring/8.0.27: resolution: {integrity: sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==} peerDependencies: react: '>= 16.8.0' @@ -35253,10 +34840,20 @@ packages: dependencies: '@babel/runtime': 7.17.7 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 dev: false + /react-syntax-highlighter/13.5.3: + resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} + peerDependencies: + react: '>= 0.14.0' + dependencies: + '@babel/runtime': 7.17.7 + highlight.js: 10.7.3 + lowlight: 1.20.0 + prismjs: 1.27.0 + refractor: 3.6.0 + dev: true + /react-syntax-highlighter/13.5.3_react@17.0.2: resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} peerDependencies: @@ -35282,6 +34879,16 @@ packages: scheduler: 0.19.1 dev: true + /react-test-renderer/17.0.2: + resolution: {integrity: sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==} + peerDependencies: + react: 17.0.2 + dependencies: + object-assign: 4.1.1 + react-is: 17.0.2 + react-shallow-renderer: 16.14.1 + scheduler: 0.20.2 + /react-test-renderer/17.0.2_react@17.0.2: resolution: {integrity: sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==} peerDependencies: @@ -35292,6 +34899,19 @@ packages: react-is: 17.0.2 react-shallow-renderer: 16.14.1_react@17.0.2 scheduler: 0.20.2 + dev: true + + /react-textarea-autosize/8.3.3: + resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} + engines: {node: '>=10'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + dependencies: + '@babel/runtime': 7.17.7 + use-composed-ref: 1.2.1 + use-latest: 1.2.0 + transitivePeerDependencies: + - '@types/react' /react-textarea-autosize/8.3.3_00d6772dea80510e818fd171caaa025a: resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} @@ -35307,20 +34927,7 @@ packages: - '@types/react' dev: true - /react-textarea-autosize/8.3.3_react@17.0.2: - resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} - engines: {node: '>=10'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.7 - react: 17.0.2 - use-composed-ref: 1.2.1_react@17.0.2 - use-latest: 1.2.0_react@17.0.2 - transitivePeerDependencies: - - '@types/react' - - /react-transition-group/4.4.2_react-dom@16.14.0+react@17.0.2: + /react-transition-group/4.4.2: resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} peerDependencies: react: '>=16.6.0' @@ -35330,8 +34937,6 @@ packages: dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 /react-transition-group/4.4.2_react-dom@17.0.2+react@17.0.2: resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} @@ -35345,14 +34950,34 @@ packages: prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 + dev: false - /react-use-gesture/9.1.3_react@17.0.2: + /react-transition-group/4.4.2_react@17.0.2: + resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} + peerDependencies: + react: '>=16.6.0' + react-dom: '>=16.6.0' + dependencies: + '@babel/runtime': 7.17.7 + dom-helpers: 5.2.1 + loose-envify: 1.4.0 + prop-types: 15.8.1 + react: 17.0.2 + + /react-use-gesture/9.1.3: resolution: {integrity: sha512-CdqA2SmS/fj3kkS2W8ZU8wjTbVBAIwDWaRprX7OKaj7HlGwBasGEFggmk5qNklknqk9zK/h8D355bEJFTpqEMg==} deprecated: This package is no longer maintained. Please use @use-gesture/react instead peerDependencies: react: '>= 16.8.0' + dev: false + + /react-visibility-sensor/5.1.1: + resolution: {integrity: sha512-cTUHqIK+zDYpeK19rzW6zF9YfT4486TIgizZW53wEZ+/GPBbK7cNS0EHyJVyHYacwFEvvHLEKfgJndbemWhB/w==} + peerDependencies: + react: '>=16.0.0' + react-dom: '>=16.0.0' dependencies: - react: 17.0.2 + prop-types: 15.8.1 dev: false /react-visibility-sensor/5.1.1_react-dom@17.0.2+react@17.0.2: @@ -35366,13 +34991,13 @@ packages: react-dom: 17.0.2_react@17.0.2 dev: false - /react-with-direction/1.4.0_react-dom@16.14.0+react@17.0.2: + /react-with-direction/1.4.0: resolution: {integrity: sha512-ybHNPiAmaJpoWwugwqry9Hd1Irl2hnNXlo/2SXQBwbLn/jGMauMS2y9jw+ydyX5V9ICryCqObNSthNt5R94xpg==} peerDependencies: react: ^0.14 || ^15 || ^16 react-dom: ^0.14 || ^15 || ^16 dependencies: - airbnb-prop-types: 2.16.0_react@17.0.2 + airbnb-prop-types: 2.16.0 brcast: 2.0.2 deepmerge: 1.5.2 direction: 1.0.4 @@ -35380,8 +35005,6 @@ packages: object.assign: 4.1.2 object.values: 1.1.5 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 dev: false /react-with-direction/1.4.0_react-dom@17.0.2+react@17.0.2: @@ -35402,6 +35025,23 @@ packages: react-dom: 17.0.2_react@17.0.2 dev: false + /react-with-direction/1.4.0_react@17.0.2: + resolution: {integrity: sha512-ybHNPiAmaJpoWwugwqry9Hd1Irl2hnNXlo/2SXQBwbLn/jGMauMS2y9jw+ydyX5V9ICryCqObNSthNt5R94xpg==} + peerDependencies: + react: ^0.14 || ^15 || ^16 + react-dom: ^0.14 || ^15 || ^16 + dependencies: + airbnb-prop-types: 2.16.0_react@17.0.2 + brcast: 2.0.2 + deepmerge: 1.5.2 + direction: 1.0.4 + hoist-non-react-statics: 3.3.2 + object.assign: 4.1.2 + object.values: 1.1.5 + prop-types: 15.8.1 + react: 17.0.2 + dev: false + /react-with-styles-interface-css/4.0.3_react-with-styles@3.2.3: resolution: {integrity: sha512-wE43PIyjal2dexxyyx4Lhbcb+E42amoYPnkunRZkb9WTA+Z+9LagbyxwsI352NqMdFmghR0opg29dzDO4/YXbw==} peerDependencies: @@ -35409,7 +35049,7 @@ packages: dependencies: array.prototype.flat: 1.2.5 global-cache: 1.2.1 - react-with-styles: 3.2.3_react-dom@16.14.0+react@17.0.2 + react-with-styles: 3.2.3 dev: false /react-with-styles-interface-css/6.0.0_a74d5b4915426b01704b6ebc781be834: @@ -35421,10 +35061,10 @@ packages: '@babel/runtime': 7.17.7 array.prototype.flat: 1.2.5 global-cache: 1.2.1 - react-with-styles: 4.2.0_fc12a0973704c75bd6b22fba3192b866 + react-with-styles: 4.2.0_03b7398ce1646b55869f4c6ae93c0ed1 dev: false - /react-with-styles/3.2.3_react-dom@16.14.0+react@17.0.2: + /react-with-styles/3.2.3: resolution: {integrity: sha512-MTI1UOvMHABRLj5M4WpODfwnveHaip6X7QUMI2x6zovinJiBXxzhA9AJP7MZNaKqg1JRFtHPXZdroUC8KcXwlQ==} peerDependencies: react: '>=0.14' @@ -35432,8 +35072,7 @@ packages: hoist-non-react-statics: 3.3.2 object.assign: 4.1.2 prop-types: 15.8.1 - react: 17.0.2 - react-with-direction: 1.4.0_react-dom@16.14.0+react@17.0.2 + react-with-direction: 1.4.0 transitivePeerDependencies: - react-dom dev: false @@ -35452,7 +35091,21 @@ packages: - react-dom dev: false - /react-with-styles/4.2.0_fc12a0973704c75bd6b22fba3192b866: + /react-with-styles/3.2.3_react@17.0.2: + resolution: {integrity: sha512-MTI1UOvMHABRLj5M4WpODfwnveHaip6X7QUMI2x6zovinJiBXxzhA9AJP7MZNaKqg1JRFtHPXZdroUC8KcXwlQ==} + peerDependencies: + react: '>=0.14' + dependencies: + hoist-non-react-statics: 3.3.2 + object.assign: 4.1.2 + prop-types: 15.8.1 + react: 17.0.2 + react-with-direction: 1.4.0_react@17.0.2 + transitivePeerDependencies: + - react-dom + dev: false + + /react-with-styles/4.2.0_03b7398ce1646b55869f4c6ae93c0ed1: resolution: {integrity: sha512-tZCTY27KriRNhwHIbg1NkSdTTOSfXDg6Z7s+Q37mtz0Ym7Sc7IOr3PzVt4qJhJMW6Nkvfi3g34FuhtiGAJCBQA==} peerDependencies: '@babel/runtime': ^7.0.0 @@ -35464,7 +35117,7 @@ packages: object.assign: 4.1.2 prop-types: 15.8.1 react: 17.0.2 - react-with-direction: 1.4.0_react-dom@16.14.0+react@17.0.2 + react-with-direction: 1.4.0_react@17.0.2 transitivePeerDependencies: - react-dom dev: false @@ -35485,12 +35138,6 @@ packages: loose-envify: 1.4.0 object-assign: 4.1.1 - /react/18.0.0: - resolution: {integrity: sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A==} - engines: {node: '>=0.10.0'} - dependencies: - loose-envify: 1.4.0 - /read-cmd-shim/2.0.0: resolution: {integrity: sha512-HJpV9bQpkl6KwjxlJcBoqu9Ba0PQg8TqSNIOrulGt54a0uup0HtevreFHzYzkm0lpnleRdNBzXznKrgxglEHQw==} dev: true @@ -35554,6 +35201,14 @@ packages: parse-json: 5.2.0 type-fest: 0.6.0 + /read-yaml-file/2.1.0: + resolution: {integrity: sha512-UkRNRIwnhG+y7hpqnycCL/xbTk7+ia9VuVTC0S+zVbwd65DI9eUpRMfsWIGrCWxTU/mi+JW8cHQCrv+zfCbEPQ==} + engines: {node: '>=10.13'} + dependencies: + js-yaml: 4.1.0 + strip-bom: 4.0.0 + dev: true + /read/1.0.7: resolution: {integrity: sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=} engines: {node: '>=0.8'} @@ -35595,8 +35250,6 @@ packages: graceful-fs: 4.2.9 micromatch: 3.1.10 readable-stream: 2.3.7 - transitivePeerDependencies: - - supports-color dev: true optional: true @@ -35617,29 +35270,22 @@ packages: resolution: {integrity: sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==} engines: {node: '>= 0.8.0'} - /readline/1.3.0: - resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} - - /reakit-system/0.13.1_react-dom@16.14.0+react@17.0.2: + /reakit-system/0.13.1: resolution: {integrity: sha512-qglfQ53FsJh5+VSkjMtBg7eZiowj9zXOyfJJxfaXh/XYTVe/5ibzWg6rvGHyvSm6C3D7Q2sg/NPCLmCtYGGvQA==} peerDependencies: react: ^16.8.0 react-dom: ^16.8.0 dependencies: - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - reakit-utils: 0.13.1_react-dom@16.14.0+react@17.0.2 + reakit-utils: 0.13.1 dev: false - /reakit-system/0.15.2_react-dom@16.14.0+react@17.0.2: + /reakit-system/0.15.2: resolution: {integrity: sha512-TvRthEz0DmD0rcJkGamMYx+bATwnGNWJpe/lc8UV2Js8nnPvkaxrHk5fX9cVASFrWbaIyegZHCWUBfxr30bmmA==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - reakit-utils: 0.15.2_react-dom@16.14.0+react@17.0.2 + reakit-utils: 0.15.2 dev: false /reakit-system/0.15.2_react-dom@17.0.2+react@17.0.2: @@ -35653,34 +35299,35 @@ packages: reakit-utils: 0.15.2_react-dom@17.0.2+react@17.0.2 dev: false - /reakit-utils/0.13.1_react-dom@16.14.0+react@17.0.2: - resolution: {integrity: sha512-NBKgsot3tU91gZgK5MTInI/PR0T3kIsTmbU5MbGggSOcwU2dG/kbE8IrM2lC6ayCSL2W2QWkijT6kewdrIX7Gw==} - peerDependencies: - react: ^16.8.0 - react-dom: ^16.8.0 - dependencies: - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - dev: false - - /reakit-utils/0.14.4_react-dom@16.14.0+react@17.0.2: - resolution: {integrity: sha512-jDEf/NmZVJ6fs10G16ifD+RFhQikSLN7VfjRHu0CPoUj4g6lFXd5PPcRXCY81qiqc9FVHjr2d2fmsw1hs6xUxA==} - peerDependencies: - react: ^16.8.0 - react-dom: ^16.8.0 - dependencies: - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - dev: false - - /reakit-utils/0.15.2_react-dom@16.14.0+react@17.0.2: - resolution: {integrity: sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ==} + /reakit-system/0.15.2_react@17.0.2: + resolution: {integrity: sha512-TvRthEz0DmD0rcJkGamMYx+bATwnGNWJpe/lc8UV2Js8nnPvkaxrHk5fX9cVASFrWbaIyegZHCWUBfxr30bmmA==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 dependencies: react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 + reakit-utils: 0.15.2_react@17.0.2 + dev: false + + /reakit-utils/0.13.1: + resolution: {integrity: sha512-NBKgsot3tU91gZgK5MTInI/PR0T3kIsTmbU5MbGggSOcwU2dG/kbE8IrM2lC6ayCSL2W2QWkijT6kewdrIX7Gw==} + peerDependencies: + react: ^16.8.0 + react-dom: ^16.8.0 + dev: false + + /reakit-utils/0.14.4: + resolution: {integrity: sha512-jDEf/NmZVJ6fs10G16ifD+RFhQikSLN7VfjRHu0CPoUj4g6lFXd5PPcRXCY81qiqc9FVHjr2d2fmsw1hs6xUxA==} + peerDependencies: + react: ^16.8.0 + react-dom: ^16.8.0 + dev: false + + /reakit-utils/0.15.2: + resolution: {integrity: sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 dev: false /reakit-utils/0.15.2_react-dom@17.0.2+react@17.0.2: @@ -35693,35 +35340,41 @@ packages: react-dom: 17.0.2_react@17.0.2 dev: false - /reakit-warning/0.4.1_react-dom@16.14.0+react@17.0.2: + /reakit-utils/0.15.2_react@17.0.2: + resolution: {integrity: sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + react: 17.0.2 + dev: false + + /reakit-warning/0.4.1: resolution: {integrity: sha512-AgnRN6cf8DYBF/mK2JEMFVL67Sbon8fDbFy1kfm0EDibtGsMOQtsFYfozZL7TwmJ4yg68VMhg8tmPHchVQRrlg==} peerDependencies: react: ^16.8.0 dependencies: - react: 17.0.2 - reakit-utils: 0.13.1_react-dom@16.14.0+react@17.0.2 + reakit-utils: 0.13.1 transitivePeerDependencies: - react-dom dev: false - /reakit-warning/0.5.5_react-dom@16.14.0+react@17.0.2: + /reakit-warning/0.5.5: resolution: {integrity: sha512-OuP1r7rlSSJZsoLuc0CPA2ACPKnWO8HDbFktiiidbT67UjuX6udYV1AUsIgMJ8ado9K5gZGjPj7IB/GDYo9Yjg==} peerDependencies: react: ^16.8.0 dependencies: - react: 17.0.2 - reakit-utils: 0.14.4_react-dom@16.14.0+react@17.0.2 + reakit-utils: 0.14.4 transitivePeerDependencies: - react-dom dev: false - /reakit-warning/0.6.2_react-dom@16.14.0+react@17.0.2: + /reakit-warning/0.6.2: resolution: {integrity: sha512-z/3fvuc46DJyD3nJAUOto6inz2EbSQTjvI/KBQDqxwB0y02HDyeP8IWOJxvkuAUGkWpeSx+H3QWQFSNiPcHtmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 dependencies: - react: 17.0.2 - reakit-utils: 0.15.2_react-dom@16.14.0+react@17.0.2 + reakit-utils: 0.15.2 transitivePeerDependencies: - react-dom dev: false @@ -35737,7 +35390,18 @@ packages: - react-dom dev: false - /reakit/1.1.0_react-dom@16.14.0+react@17.0.2: + /reakit-warning/0.6.2_react@17.0.2: + resolution: {integrity: sha512-z/3fvuc46DJyD3nJAUOto6inz2EbSQTjvI/KBQDqxwB0y02HDyeP8IWOJxvkuAUGkWpeSx+H3QWQFSNiPcHtmw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + dependencies: + react: 17.0.2 + reakit-utils: 0.15.2_react@17.0.2 + transitivePeerDependencies: + - react-dom + dev: false + + /reakit/1.1.0: resolution: {integrity: sha512-d/ERtwgBndBPsyPBPUl5jueyfFgsglIfQCnLMKuxM0PaWiIZ6Ys3XsYaNy/AaG8k46Ee5cQPMdRrR30nVcSToQ==} peerDependencies: react: ^16.8.0 @@ -35745,14 +35409,12 @@ packages: dependencies: '@popperjs/core': 2.11.4 body-scroll-lock: 3.1.5 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - reakit-system: 0.13.1_react-dom@16.14.0+react@17.0.2 - reakit-utils: 0.13.1_react-dom@16.14.0+react@17.0.2 - reakit-warning: 0.4.1_react-dom@16.14.0+react@17.0.2 + reakit-system: 0.13.1 + reakit-utils: 0.13.1 + reakit-warning: 0.4.1 dev: false - /reakit/1.3.11_react-dom@16.14.0+react@17.0.2: + /reakit/1.3.11: resolution: {integrity: sha512-mYxw2z0fsJNOQKAEn5FJCPTU3rcrY33YZ/HzoWqZX0G7FwySp1wkCYW79WhuYMNIUFQ8s3Baob1RtsEywmZSig==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -35760,11 +35422,9 @@ packages: dependencies: '@popperjs/core': 2.11.4 body-scroll-lock: 3.1.5 - react: 17.0.2 - react-dom: 16.14.0_react@17.0.2 - reakit-system: 0.15.2_react-dom@16.14.0+react@17.0.2 - reakit-utils: 0.15.2_react-dom@16.14.0+react@17.0.2 - reakit-warning: 0.6.2_react-dom@16.14.0+react@17.0.2 + reakit-system: 0.15.2 + reakit-utils: 0.15.2 + reakit-warning: 0.6.2 dev: false /reakit/1.3.11_react-dom@17.0.2+react@17.0.2: @@ -35782,6 +35442,20 @@ packages: reakit-warning: 0.6.2_react-dom@17.0.2+react@17.0.2 dev: false + /reakit/1.3.11_react@17.0.2: + resolution: {integrity: sha512-mYxw2z0fsJNOQKAEn5FJCPTU3rcrY33YZ/HzoWqZX0G7FwySp1wkCYW79WhuYMNIUFQ8s3Baob1RtsEywmZSig==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + react-dom: ^16.8.0 || ^17.0.0 + dependencies: + '@popperjs/core': 2.11.4 + body-scroll-lock: 3.1.5 + react: 17.0.2 + reakit-system: 0.15.2_react@17.0.2 + reakit-utils: 0.15.2_react@17.0.2 + reakit-warning: 0.6.2_react@17.0.2 + dev: false + /realpath-native/1.1.0: resolution: {integrity: sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==} engines: {node: '>=4'} @@ -35801,6 +35475,7 @@ packages: esprima: 4.0.1 source-map: 0.6.1 tslib: 2.3.1 + dev: true /rechoir/0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} @@ -36249,6 +35924,7 @@ packages: dependencies: expand-tilde: 2.0.2 global-modules: 1.0.0 + dev: true /resolve-from/3.0.0: resolution: {integrity: sha1-six699nWiBvItuZTM17rywoYh0g=} @@ -36350,10 +36026,6 @@ packages: /rgba-regex/1.0.0: resolution: {integrity: sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=} - /rimraf/2.2.8: - resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==} - hasBin: true - /rimraf/2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} hasBin: true @@ -36478,8 +36150,6 @@ packages: micromatch: 3.1.10 minimist: 1.2.5 walker: 1.0.8 - transitivePeerDependencies: - - supports-color /sass-loader/10.2.1_sass@1.49.9+webpack@5.70.0: resolution: {integrity: sha512-RRvWl+3K2LSMezIsd008ErK4rk6CulIMSwrcc2aZvjymUgKo/vjXGp1rSWmfTUX7bblEOz8tst4wBwWtCGBqKA==} @@ -36563,6 +36233,7 @@ packages: chokidar: 3.5.3 immutable: 4.0.0 source-map-js: 1.0.2 + dev: true /sax/1.2.1: resolution: {integrity: sha1-e45lYZCyKOgaZq6nSEgNgozS03o=} @@ -36588,6 +36259,7 @@ packages: dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 + dev: true /scheduler/0.20.2: resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} @@ -36595,11 +36267,6 @@ packages: loose-envify: 1.4.0 object-assign: 4.1.1 - /scheduler/0.21.0: - resolution: {integrity: sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ==} - dependencies: - loose-envify: 1.4.0 - /schema-utils/1.0.0: resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} engines: {node: '>= 4'} @@ -36680,6 +36347,14 @@ packages: dependencies: lru-cache: 6.0.0 + /semver/7.3.7: + resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + /send/0.17.1: resolution: {integrity: sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==} engines: {node: '>= 0.8.0'} @@ -36697,8 +36372,7 @@ packages: on-finished: 2.3.0 range-parser: 1.2.1 statuses: 1.5.0 - transitivePeerDependencies: - - supports-color + dev: true /sentence-case/1.1.3: resolution: {integrity: sha1-gDSq/CFFdy06vhUJqkLJ4QQtwTk=} @@ -36706,10 +36380,6 @@ packages: lower-case: 1.1.4 dev: true - /serialize-error/2.1.0: - resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} - engines: {node: '>=0.10.0'} - /serialize-javascript/3.1.0: resolution: {integrity: sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg==} dependencies: @@ -36732,6 +36402,7 @@ packages: resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} dependencies: randombytes: 2.1.0 + dev: true /serve-favicon/2.5.0: resolution: {integrity: sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=} @@ -36752,8 +36423,7 @@ packages: escape-html: 1.0.3 parseurl: 1.3.3 send: 0.17.1 - transitivePeerDependencies: - - supports-color + dev: true /set-blocking/2.0.0: resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=} @@ -36773,6 +36443,7 @@ packages: /setprototypeof/1.1.1: resolution: {integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==} + dev: true /sha.js/2.4.11: resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} @@ -36795,6 +36466,7 @@ packages: engines: {node: '>=8'} dependencies: kind-of: 6.0.3 + dev: true /shallowequal/1.1.0: resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} @@ -36820,9 +36492,6 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - /shell-quote/1.7.3: - resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==} - /shelljs/0.8.5: resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} engines: {node: '>=4'} @@ -36987,23 +36656,6 @@ packages: source-map: 0.5.7 source-map-resolve: 0.5.3 use: 3.1.1 - transitivePeerDependencies: - - supports-color - - /snapdragon/0.8.2_supports-color@6.1.0: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} - dependencies: - base: 0.11.2 - debug: 2.6.9_supports-color@6.1.0 - define-property: 0.2.5 - extend-shallow: 2.0.1 - map-cache: 0.2.2 - source-map: 0.5.7 - source-map-resolve: 0.5.3 - use: 3.1.1 - transitivePeerDependencies: - - supports-color /socket.io-client/2.3.0: resolution: {integrity: sha512-cEQQf24gET3rfhxZ2jJ5xzAOo/xhZwK+mOqtGRg5IowZsMgwvHwnf/mCRapAAkadhM26y+iydgwsXGObBB5ZdA==} @@ -37022,10 +36674,6 @@ packages: parseuri: 0.0.5 socket.io-parser: 3.3.2 to-array: 0.1.4 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate dev: false /socket.io-parser/3.3.2: @@ -37034,8 +36682,6 @@ packages: component-emitter: 1.3.0 debug: 3.1.0 isarray: 2.0.1 - transitivePeerDependencies: - - supports-color dev: false /socks-proxy-agent/6.1.1: @@ -37077,6 +36723,7 @@ packages: /source-map-js/1.0.2: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} + dev: true /source-map-loader/0.2.4: resolution: {integrity: sha512-OU6UJUty+i2JDpTItnizPrlpOIBLmQbWMuBg9q5bVtnHACqw1tn9nNwqJLbv0/00JjnJb/Ee5g5WS5vrRv7zIQ==} @@ -37245,12 +36892,7 @@ packages: /stackframe/1.2.0: resolution: {integrity: sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==} - - /stacktrace-parser/0.1.10: - resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} - engines: {node: '>=6'} - dependencies: - type-fest: 0.7.1 + dev: true /state-toggle/1.0.3: resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} @@ -37266,6 +36908,7 @@ packages: /statuses/1.5.0: resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} engines: {node: '>= 0.6'} + dev: true /stealthy-require/1.1.1: resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==} @@ -37793,7 +37436,7 @@ packages: postcss-sass: 0.4.4 postcss-scss: 2.1.1 postcss-selector-parser: 6.0.6 - postcss-syntax: 0.36.2_5111c4e3f61982716b7e3f1c84e1f773 + postcss-syntax: 0.36.2_postcss@7.0.39 postcss-value-parser: 4.1.0 resolve-from: 5.0.0 slash: 3.0.0 @@ -37807,8 +37450,6 @@ packages: v8-compile-cache: 2.3.0 write-file-atomic: 3.0.3 transitivePeerDependencies: - - postcss-jsx - - postcss-markdown - supports-color dev: true @@ -37852,7 +37493,7 @@ packages: postcss-sass: 0.4.4 postcss-scss: 2.1.1 postcss-selector-parser: 6.0.9 - postcss-syntax: 0.36.2_5111c4e3f61982716b7e3f1c84e1f773 + postcss-syntax: 0.36.2_postcss@7.0.39 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 slash: 3.0.0 @@ -37866,8 +37507,6 @@ packages: v8-compile-cache: 2.3.0 write-file-atomic: 3.0.3 transitivePeerDependencies: - - postcss-jsx - - postcss-markdown - supports-color dev: true @@ -37925,9 +37564,6 @@ packages: resolution: {integrity: sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==} dev: false - /sudo-prompt/9.2.1: - resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} - /sugarss/2.0.0: resolution: {integrity: sha512-WfxjozUk0UVA4jm+U1d736AUpzSrNsQcIbyOkoE364GrtWmIrFdk5lksEupgWMD4VaT/0kVx1dobpiDumSgmJQ==} dependencies: @@ -38082,6 +37718,23 @@ packages: resolution: {integrity: sha512-k8uzYIkIVwmT+TcglpdN50pS2y1BDcUnBPK9iJeGu0Pl1lOI8pD6wtzgw91Pjpe+RxtTncw32tLxs/R0yNL2Mg==} dev: true + /syncpack/8.2.4: + resolution: {integrity: sha512-Tq1RzTqQwGCe8htWqJPHcA55LqGLO4wG1F2DCGMFflfX3ujbRoiXq2MYd7XFvm3mzxv1BPVQQp8DU2ZkY14e2A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + chalk: 4.1.2 + commander: 9.3.0 + cosmiconfig: 7.0.1 + expect-more: 1.2.0 + fp-ts: 2.12.1 + fs-extra: 10.1.0 + glob: 8.0.3 + minimatch: 5.1.0 + read-yaml-file: 2.1.0 + semver: 7.3.7 + dev: true + /table/5.4.6: resolution: {integrity: sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==} engines: {node: '>=6.0.0'} @@ -38133,10 +37786,12 @@ packages: /tapable/1.1.3: resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} engines: {node: '>=6'} + dev: true /tapable/2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} + dev: true /tar-fs/2.0.0: resolution: {integrity: sha512-vaY0obB6Om/fso8a8vakQBzwholQ7v5+uy+tF3Ozvxv1KNezmVQAiWtcNmMHFSFPqL3dJA8ha6gdtFbfX9mcxA==} @@ -38192,18 +37847,12 @@ packages: memoizerific: 1.11.3 dev: true - /temp/0.8.3: - resolution: {integrity: sha512-jtnWJs6B1cZlHs9wPG7BrowKxZw/rf6+UpGAkr8AaYmiTyTO7zQlLoST8zx/8TcUPnZmeBoB+H8ARuHZaSijVw==} - engines: {'0': node >=0.8.0} - dependencies: - os-tmpdir: 1.0.2 - rimraf: 2.2.8 - /temp/0.8.4: resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} engines: {node: '>=6.0.0'} dependencies: rimraf: 2.6.3 + dev: true /term-size/1.2.0: resolution: {integrity: sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=} @@ -38253,8 +37902,26 @@ packages: terser: 4.8.0 webpack: 4.46.0_webpack-cli@3.3.12 webpack-sources: 1.4.3 + dev: true + + /terser-webpack-plugin/4.2.3_acorn@7.4.1+webpack@4.46.0: + resolution: {integrity: sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + cacache: 15.3.0 + find-cache-dir: 3.3.2 + jest-worker: 26.6.2 + p-limit: 3.1.0 + schema-utils: 3.1.1 + serialize-javascript: 5.0.1 + source-map: 0.6.1 + terser: 5.10.0_acorn@7.4.1 + webpack: 4.46.0 + webpack-sources: 1.4.3 transitivePeerDependencies: - - bluebird + - acorn dev: true /terser-webpack-plugin/4.2.3_webpack@4.46.0: @@ -38274,7 +37941,60 @@ packages: webpack: 4.46.0 webpack-sources: 1.4.3 transitivePeerDependencies: - - bluebird + - acorn + dev: true + + /terser-webpack-plugin/5.2.5_68452f6bf2e2b0e9a0f38b0711e456e0: + resolution: {integrity: sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + jest-worker: 27.5.1 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + source-map: 0.6.1 + terser: 5.10.0_acorn@8.7.0 + uglify-js: 3.14.5 + webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 + transitivePeerDependencies: + - acorn + dev: true + + /terser-webpack-plugin/5.2.5_acorn@8.7.0+webpack@5.70.0: + resolution: {integrity: sha512-3luOVHku5l0QBeYS8r4CdHYWEGMmIj3H1U64jgkdZzECcSOJAyJ9TjuqcQZvw1Y+4AOBN9SeYJPJmFn2cM4/2g==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + jest-worker: 27.5.1 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + source-map: 0.6.1 + terser: 5.10.0_acorn@8.7.0 + webpack: 5.70.0_webpack-cli@3.3.12 + transitivePeerDependencies: + - acorn dev: true /terser-webpack-plugin/5.2.5_uglify-js@3.14.5+webpack@5.70.0: @@ -38300,6 +38020,8 @@ packages: terser: 5.10.0 uglify-js: 3.14.5 webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 + transitivePeerDependencies: + - acorn dev: true /terser-webpack-plugin/5.2.5_webpack@5.70.0: @@ -38323,7 +38045,10 @@ packages: serialize-javascript: 6.0.0 source-map: 0.6.1 terser: 5.10.0 - webpack: 5.70.0_webpack-cli@3.3.12 + webpack: 5.70.0 + transitivePeerDependencies: + - acorn + dev: true /terser/4.8.0: resolution: {integrity: sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==} @@ -38340,6 +38065,8 @@ packages: resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==} engines: {node: '>=10'} hasBin: true + peerDependencies: + acorn: ^8.5.0 peerDependenciesMeta: acorn: optional: true @@ -38348,6 +38075,39 @@ packages: commander: 2.20.3 source-map: 0.7.3 source-map-support: 0.5.20 + dev: true + + /terser/5.10.0_acorn@7.4.1: + resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==} + engines: {node: '>=10'} + hasBin: true + peerDependencies: + acorn: ^8.5.0 + peerDependenciesMeta: + acorn: + optional: true + dependencies: + acorn: 7.4.1 + commander: 2.20.3 + source-map: 0.7.3 + source-map-support: 0.5.20 + dev: true + + /terser/5.10.0_acorn@8.7.0: + resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==} + engines: {node: '>=10'} + hasBin: true + peerDependencies: + acorn: ^8.5.0 + peerDependenciesMeta: + acorn: + optional: true + dependencies: + acorn: 8.7.0 + commander: 2.20.3 + source-map: 0.7.3 + source-map-support: 0.5.20 + dev: true /test-exclude/5.2.3: resolution: {integrity: sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==} @@ -38415,6 +38175,7 @@ packages: dependencies: readable-stream: 2.3.7 xtend: 4.0.2 + dev: true /timed-out/4.0.1: resolution: {integrity: sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=} @@ -38447,8 +38208,6 @@ packages: livereload-js: 2.4.0 object-assign: 4.1.1 qs: 6.10.3 - transitivePeerDependencies: - - supports-color dev: true /tiny-warning/1.0.3: @@ -38538,6 +38297,7 @@ packages: /toidentifier/1.0.0: resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==} engines: {node: '>=0.6'} + dev: true /totalist/1.1.0: resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==} @@ -38880,6 +38640,7 @@ packages: dependencies: tslib: 1.14.1 typescript: 4.2.4 + dev: true /tsutils/3.21.0_typescript@4.4.4: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} @@ -39050,6 +38811,7 @@ packages: engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 + dev: true /type-detect/4.0.8: resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} @@ -39087,10 +38849,6 @@ packages: resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} engines: {node: '>=8'} - /type-fest/0.7.1: - resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} - engines: {node: '>=8'} - /type-fest/0.8.1: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} @@ -39121,6 +38879,7 @@ packages: resolution: {integrity: sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==} engines: {node: '>=4.2.0'} hasBin: true + dev: true /typescript/4.4.4: resolution: {integrity: sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==} @@ -39132,6 +38891,7 @@ packages: resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==} engines: {node: '>=4.2.0'} hasBin: true + dev: true /ua-parser-js/0.7.31: resolution: {integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==} @@ -39141,15 +38901,6 @@ packages: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} dev: true - /uglify-es/3.3.9: - resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==} - engines: {node: '>=0.8.0'} - deprecated: support for ECMAScript is superseded by `uglify-js` as of v3.13.0 - hasBin: true - dependencies: - commander: 2.13.0 - source-map: 0.6.1 - /uglify-js/3.14.5: resolution: {integrity: sha512-qZukoSxOG0urUTvjc2ERMTcAy+BiFh3weWAkeurLwjrCba73poHmG3E36XEjd/JGukMzwTL7uCxZiAexj8ppvQ==} engines: {node: '>=0.8.0'} @@ -39397,6 +39148,7 @@ packages: /unpipe/1.0.0: resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} engines: {node: '>= 0.8'} + dev: true /unquote/1.1.1: resolution: {integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=} @@ -39559,12 +39311,18 @@ packages: querystring: 0.2.0 dev: true + /use-composed-ref/1.2.1: + resolution: {integrity: sha512-6+X1FLlIcjvFMAeAD/hcxDT8tmyrWnbSPMU0EnxQuDLIxokuFzWliXBiYZuGIx+mrAMLBw0WFfCkaPw8ebzAhw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 + /use-composed-ref/1.2.1_react@17.0.2: resolution: {integrity: sha512-6+X1FLlIcjvFMAeAD/hcxDT8tmyrWnbSPMU0EnxQuDLIxokuFzWliXBiYZuGIx+mrAMLBw0WFfCkaPw8ebzAhw==} peerDependencies: react: ^16.8.0 || ^17.0.0 dependencies: react: 17.0.2 + dev: true /use-debounce/3.4.3_react@17.0.2: resolution: {integrity: sha512-nxy+opOxDccWfhMl36J5BSCTpvcj89iaQk2OZWLAtBJQj7ISCtx1gh+rFbdjGfMl6vtCZf6gke/kYvrkVfHMoA==} @@ -39574,16 +39332,24 @@ packages: react: 17.0.2 dev: false - /use-enhanced-state/0.0.13_react@17.0.2: + /use-enhanced-state/0.0.13: resolution: {integrity: sha512-RCtUQdhfUXu/0GAQqLnKPetUt3BheYFpOTogppHe9x1XGwluiu6DQLKVNnc3yMfj0HM3IOVBgw5nVJJuZS5TWQ==} peerDependencies: react: ^16.8.0 dependencies: '@itsjonq/is': 0.0.2 - react: 17.0.2 tiny-warning: 1.0.3 dev: false + /use-isomorphic-layout-effect/1.1.1: + resolution: {integrity: sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + /use-isomorphic-layout-effect/1.1.1_00d6772dea80510e818fd171caaa025a: resolution: {integrity: sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==} peerDependencies: @@ -39596,8 +39362,8 @@ packages: '@types/react': 17.0.40 react: 17.0.2 - /use-isomorphic-layout-effect/1.1.1_react@17.0.2: - resolution: {integrity: sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==} + /use-latest/1.2.0: + resolution: {integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==} peerDependencies: '@types/react': '*' react: ^16.8.0 || ^17.0.0 @@ -39605,7 +39371,7 @@ packages: '@types/react': optional: true dependencies: - react: 17.0.2 + use-isomorphic-layout-effect: 1.1.1 /use-latest/1.2.0_00d6772dea80510e818fd171caaa025a: resolution: {integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==} @@ -39621,17 +39387,10 @@ packages: use-isomorphic-layout-effect: 1.1.1_00d6772dea80510e818fd171caaa025a dev: true - /use-latest/1.2.0_react@17.0.2: - resolution: {integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==} + /use-memo-one/1.1.2: + resolution: {integrity: sha512-u2qFKtxLsia/r8qG0ZKkbytbztzRb317XCkT7yP8wxL0tZ/CzK2G+WWie5vWvpyeP7+YoPIwbJoIHJ4Ba4k0oQ==} peerDependencies: - '@types/react': '*' react: ^16.8.0 || ^17.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - react: 17.0.2 - use-isomorphic-layout-effect: 1.1.1_react@17.0.2 /use-memo-one/1.1.2_react@16.14.0: resolution: {integrity: sha512-u2qFKtxLsia/r8qG0ZKkbytbztzRb317XCkT7yP8wxL0tZ/CzK2G+WWie5vWvpyeP7+YoPIwbJoIHJ4Ba4k0oQ==} @@ -39647,13 +39406,13 @@ packages: react: ^16.8.0 || ^17.0.0 dependencies: react: 17.0.2 + dev: false - /use-memo-one/1.1.2_react@18.0.0: - resolution: {integrity: sha512-u2qFKtxLsia/r8qG0ZKkbytbztzRb317XCkT7yP8wxL0tZ/CzK2G+WWie5vWvpyeP7+YoPIwbJoIHJ4Ba4k0oQ==} + /use-subscription/1.6.0: + resolution: {integrity: sha512-0Y/cTLlZfw547tJhJMoRA16OUbVqRm6DmvGpiGbmLST6BIA5KU5cKlvlz8DVMrACnWpyEjCkgmhLatthP4jUbA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - dependencies: - react: 18.0.0 + react: ^18.0.0 + dev: true /use-subscription/1.6.0_react@16.14.0: resolution: {integrity: sha512-0Y/cTLlZfw547tJhJMoRA16OUbVqRm6DmvGpiGbmLST6BIA5KU5cKlvlz8DVMrACnWpyEjCkgmhLatthP4jUbA==} @@ -39669,21 +39428,7 @@ packages: react: ^18.0.0 dependencies: react: 17.0.2 - - /use-subscription/1.6.0_react@18.0.0: - resolution: {integrity: sha512-0Y/cTLlZfw547tJhJMoRA16OUbVqRm6DmvGpiGbmLST6BIA5KU5cKlvlz8DVMrACnWpyEjCkgmhLatthP4jUbA==} - peerDependencies: - react: ^18.0.0 - dependencies: - react: 18.0.0 - dev: true - - /use-sync-external-store/1.2.0_react@17.0.2: - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - react: 17.0.2 + dev: false /use/3.1.1: resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} @@ -39731,6 +39476,7 @@ packages: /utils-merge/1.0.1: resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} engines: {node: '>= 0.4.0'} + dev: true /uuid-browser/3.1.0: resolution: {integrity: sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=} @@ -39818,6 +39564,7 @@ packages: /vary/1.1.2: resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=} engines: {node: '>= 0.8'} + dev: true /vendors/1.0.4: resolution: {integrity: sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==} @@ -39892,9 +39639,6 @@ packages: replace-ext: 1.0.1 dev: true - /vlq/1.0.1: - resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} - /vm-browserify/1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} dev: true @@ -39972,8 +39716,6 @@ packages: requiresBuild: true dependencies: chokidar: 2.1.8 - transitivePeerDependencies: - - supports-color dev: true optional: true @@ -39985,8 +39727,6 @@ packages: optionalDependencies: chokidar: 3.5.3 watchpack-chokidar2: 2.0.1 - transitivePeerDependencies: - - supports-color dev: true /watchpack/2.2.0: @@ -40003,6 +39743,7 @@ packages: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.9 + dev: true /wcwidth/1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} @@ -40050,10 +39791,6 @@ packages: mkdirp: 0.5.5 opener: 1.5.2 ws: 6.2.2 - transitivePeerDependencies: - - bufferutil - - supports-color - - utf-8-validate dev: true /webpack-bundle-analyzer/4.5.0: @@ -40085,7 +39822,7 @@ packages: chalk: 2.4.2 cross-spawn: 6.0.5 enhanced-resolve: 4.5.0 - findup-sync: 3.0.0_supports-color@6.1.0 + findup-sync: 3.0.0 global-modules: 2.0.0 import-local: 2.0.0 interpret: 1.4.0 @@ -40106,7 +39843,7 @@ packages: chalk: 2.4.2 cross-spawn: 6.0.5 enhanced-resolve: 4.5.0 - findup-sync: 3.0.0_supports-color@6.1.0 + findup-sync: 3.0.0 global-modules: 2.0.0 import-local: 2.0.0 interpret: 1.4.0 @@ -40115,6 +39852,7 @@ packages: v8-compile-cache: 2.3.0 webpack: 5.70.0_webpack-cli@3.3.12 yargs: 13.3.2 + dev: true /webpack-cli/4.9.2_b04de8011015a40c567469bf79798750: resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} @@ -40245,8 +39983,6 @@ packages: anymatch: 3.1.2 portfinder: 1.0.28 tiny-lr: 1.1.1 - transitivePeerDependencies: - - supports-color dev: true /webpack-livereload-plugin/3.0.2_webpack@5.70.0: @@ -40260,8 +39996,6 @@ packages: schema-utils: 4.0.0 tiny-lr: 1.1.1 webpack: 5.70.0_09a0288cc3aa3015774a489e904fdd90 - transitivePeerDependencies: - - supports-color dev: true /webpack-log/2.0.0: @@ -40320,8 +40054,6 @@ packages: resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==} dependencies: debug: 3.2.7 - transitivePeerDependencies: - - supports-color dev: true /webpack-virtual-modules/0.4.3: @@ -40364,8 +40096,6 @@ packages: terser-webpack-plugin: 1.4.5_webpack@4.46.0 watchpack: 1.7.5 webpack-sources: 1.4.3 - transitivePeerDependencies: - - supports-color dev: true /webpack/4.46.0_webpack-cli@3.3.12: @@ -40405,8 +40135,6 @@ packages: watchpack: 1.7.5 webpack-cli: 3.3.12_webpack@5.70.0 webpack-sources: 1.4.3 - transitivePeerDependencies: - - supports-color dev: true /webpack/5.70.0: @@ -40440,13 +40168,14 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.2.5_webpack@5.70.0 + terser-webpack-plugin: 5.2.5_acorn@8.7.0+webpack@5.70.0 watchpack: 2.3.1 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' - esbuild - uglify-js + dev: true /webpack/5.70.0_09a0288cc3aa3015774a489e904fdd90: resolution: {integrity: sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==} @@ -40479,7 +40208,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.2.5_uglify-js@3.14.5+webpack@5.70.0 + terser-webpack-plugin: 5.2.5_68452f6bf2e2b0e9a0f38b0711e456e0 watchpack: 2.3.1 webpack-cli: 4.9.2_ef5a9a6d45a146bbab2769a98537c0d5 webpack-sources: 3.2.3 @@ -40520,7 +40249,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.2.5_webpack@5.70.0 + terser-webpack-plugin: 5.2.5_acorn@8.7.0+webpack@5.70.0 watchpack: 2.3.1 webpack-cli: 3.3.12_webpack@5.70.0 webpack-sources: 3.2.3 @@ -40528,6 +40257,7 @@ packages: - '@swc/core' - esbuild - uglify-js + dev: true /webpack/5.70.0_webpack-cli@4.9.2: resolution: {integrity: sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw==} @@ -40560,7 +40290,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.2.5_webpack@5.70.0 + terser-webpack-plugin: 5.2.5_acorn@8.7.0+webpack@5.70.0 watchpack: 2.3.1 webpack-cli: 4.9.2_b04de8011015a40c567469bf79798750 webpack-sources: 3.2.3 @@ -40591,6 +40321,7 @@ packages: /whatwg-fetch/3.6.2: resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==} + dev: true /whatwg-mimetype/2.3.0: resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} @@ -40747,6 +40478,7 @@ packages: resolution: {integrity: sha512-AV33EzqiFJ3fj+mPlKABN59YFPReLkDxQnj067Z3uEOeRQf3g05WprL0RDuqM7UBhSRo9W1rMSC2KvZmjE5UOA==} engines: {node: '>=10.13.0'} hasBin: true + dev: true /wp-textdomain/1.0.1: resolution: {integrity: sha512-6Guapw25yCmnQHyz62TEi1OvRnIzGfyj0sVaPBhwx19QoxeD6HI2zZHWeBIUXSauJK3BIyxWPYnxlwmnqHUskg==} @@ -40847,42 +40579,18 @@ packages: /ws/5.2.3: resolution: {integrity: sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true dependencies: async-limiter: 1.0.1 dev: false /ws/6.1.4: resolution: {integrity: sha512-eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true dependencies: async-limiter: 1.0.1 dev: false /ws/6.2.2: resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} - peerDependencies: - bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 - peerDependenciesMeta: - bufferutil: - optional: true - utf-8-validate: - optional: true dependencies: async-limiter: 1.0.1 @@ -40943,10 +40651,6 @@ packages: xmlbuilder: 9.0.7 dev: true - /xmlbuilder/15.1.1: - resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==} - engines: {node: '>=8.0'} - /xmlbuilder/9.0.7: resolution: {integrity: sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=} engines: {node: '>=4.0'} @@ -40967,6 +40671,7 @@ packages: /xtend/4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} + dev: true /xterm/3.14.5: resolution: {integrity: sha512-DVmQ8jlEtL+WbBKUZuMxHMBgK/yeIZwkXB81bH+MGaKKnJGYwA+770hzhXPfwEIokK9On9YIFPRleVp/5G7z9g==} @@ -41191,7 +40896,6 @@ packages: textextensions: 5.14.0 untildify: 4.0.0 transitivePeerDependencies: - - bluebird - supports-color dev: true @@ -41231,6 +40935,7 @@ packages: /yocto-queue/0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} + dev: true /yosay/2.0.2: resolution: {integrity: sha512-avX6nz2esp7IMXGag4gu6OyQBsMh/SEn+ZybGu3yKPlOTE6z9qJrzG/0X5vCq/e0rPFy0CUYCze0G5hL310ibA==} @@ -41269,9 +40974,7 @@ packages: prettier: /wp-prettier/1.19.1 puppeteer: 2.1.1 transitivePeerDependencies: - - bufferutil - debug - react-native - supports-color - - utf-8-validate dev: false