From 5049ce9c79ffdd5afdb87ff953c0aa9b9d834a16 Mon Sep 17 00:00:00 2001 From: Vojtech Miksu Date: Thu, 23 Jun 2022 11:43:59 -0700 Subject: [PATCH] Fix Chrome re-opening for pnp (#172) * Fix Chrome re-opening for pnp * Fix tsc * Add hiring link --- .changeset/tame-singers-visit.md | 5 + packages/ladle/build-cjs.sh | 1 + packages/ladle/lib/cli/open-browser.js | 13 +- packages/website/package.json | 3 +- packages/website/src/theme/Footer/index.js | 48 + pnpm-lock.yaml | 3805 ++++++++++++++++++-- 6 files changed, 3577 insertions(+), 298 deletions(-) create mode 100644 .changeset/tame-singers-visit.md create mode 100644 packages/website/src/theme/Footer/index.js diff --git a/.changeset/tame-singers-visit.md b/.changeset/tame-singers-visit.md new file mode 100644 index 00000000..002acd4e --- /dev/null +++ b/.changeset/tame-singers-visit.md @@ -0,0 +1,5 @@ +--- +"@ladle/react": patch +--- + +Fix Chrome (tab) re-opening for pnp environments.. diff --git a/packages/ladle/build-cjs.sh b/packages/ladle/build-cjs.sh index 5f334e86..2df51c6c 100755 --- a/packages/ladle/build-cjs.sh +++ b/packages/ladle/build-cjs.sh @@ -6,5 +6,6 @@ pnpm babel lib/cli --out-dir cjs/lib/cli --plugins=@babel/plugin-transform-modul pnpm babel lib/shared --out-dir cjs/lib/shared --plugins=@babel/plugin-transform-modules-commonjs pnpm babel api --out-dir cjs/api --plugins=@babel/plugin-transform-modules-commonjs cp lib/shared/types.ts cjs/lib/shared/types.ts +cp lib/cli/openChrome.applescript cjs/lib/cli/openChrome.applescript cp lib/shared/default-config.js cjs/lib/app/src/def-config.ts ./build-cjs.js diff --git a/packages/ladle/lib/cli/open-browser.js b/packages/ladle/lib/cli/open-browser.js index aa5b6e7c..4810add4 100644 --- a/packages/ladle/lib/cli/open-browser.js +++ b/packages/ladle/lib/cli/open-browser.js @@ -1,3 +1,4 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ // adapted from https://github.com/facebook/create-react-app/blob/main/packages/react-dev-utils/openBrowser.js import { dirname } from "path"; @@ -106,6 +107,16 @@ function startBrowserProcess(browser, url, args) { // Try our best to reuse existing tab // on OSX Chromium-based browser with AppleScript execSync('ps cax | grep "' + chromiumBrowser + '"'); + let cwd = __dirname; + + // in pnp we need to get cwd differently + if (process.versions.pnp) { + // @ts-ignore + const pnpApi = require("pnpapi"); + if (typeof pnpApi.resolveVirtual === "function") { + cwd = pnpApi.resolveVirtual(cwd) || cwd; + } + } execSync( 'osascript openChrome.applescript "' + encodeURI(url) + @@ -113,7 +124,7 @@ function startBrowserProcess(browser, url, args) { chromiumBrowser + '"', { - cwd: __dirname, + cwd, stdio: "ignore", }, ); diff --git a/packages/website/package.json b/packages/website/package.json index 75a886f0..85604348 100644 --- a/packages/website/package.json +++ b/packages/website/package.json @@ -15,10 +15,11 @@ }, "dependencies": { "@algolia/client-search": "4.9.1", - "@types/react": "^17.0.0", "@docusaurus/core": "2.0.0-beta.18", "@docusaurus/preset-classic": "2.0.0-beta.18", + "@docusaurus/theme-common": "2.0.0-beta.21", "@mdx-js/react": "^1.6.22", + "@types/react": "^17.0.0", "clsx": "^1.1.1", "react": "^17.0.2", "react-dom": "^17.0.2", diff --git a/packages/website/src/theme/Footer/index.js b/packages/website/src/theme/Footer/index.js new file mode 100644 index 00000000..9f43459d --- /dev/null +++ b/packages/website/src/theme/Footer/index.js @@ -0,0 +1,48 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ +import React from "react"; +import { useThemeConfig } from "@docusaurus/theme-common"; +import FooterLinks from "@theme/Footer/Links"; +import FooterLogo from "@theme/Footer/Logo"; +import FooterCopyright from "@theme/Footer/Copyright"; +import FooterLayout from "@theme/Footer/Layout"; + +function Footer() { + const { footer } = useThemeConfig(); + + if (!footer) { + return null; + } + + const { copyright, links, logo, style } = footer; + return ( + <> +

+ Do you want to work on Ladle and other web tooling? Our team at Uber is{" "} + hiring + ! +

+ 0 && } + logo={logo && } + copyright={copyright && } + /> + + ); +} + +export default React.memo(Footer); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 82e7e5a9..19c5dc47 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -324,6 +324,7 @@ importers: "@algolia/client-search": 4.9.1 "@docusaurus/core": 2.0.0-beta.18 "@docusaurus/preset-classic": 2.0.0-beta.18 + "@docusaurus/theme-common": 2.0.0-beta.21 "@mdx-js/react": ^1.6.22 "@types/react": ^17.0.0 clsx: ^1.1.1 @@ -334,6 +335,7 @@ importers: "@algolia/client-search": 4.9.1 "@docusaurus/core": 2.0.0-beta.18_oagctitnqx3g7idiuq5vrj5arm "@docusaurus/preset-classic": 2.0.0-beta.18_a6usgodzb6nk7mujm6ygnxw5ta + "@docusaurus/theme-common": 2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm "@mdx-js/react": 1.6.22_react@17.0.2 "@types/react": 17.0.44 clsx: 1.1.1 @@ -621,13 +623,13 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/code-frame": 7.16.7 - "@babel/generator": 7.17.10 - "@babel/helper-module-transforms": 7.17.7 - "@babel/helpers": 7.17.9 - "@babel/parser": 7.17.10 + "@babel/generator": 7.18.2 + "@babel/helper-module-transforms": 7.18.0 + "@babel/helpers": 7.18.2 + "@babel/parser": 7.18.5 "@babel/template": 7.16.7 - "@babel/traverse": 7.17.10 - "@babel/types": 7.17.10 + "@babel/traverse": 7.18.5 + "@babel/types": 7.18.4 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -678,9 +680,9 @@ packages: "@babel/helper-compilation-targets": 7.17.10_@babel+core@7.17.10 "@babel/helper-module-transforms": 7.17.7 "@babel/helpers": 7.17.9 - "@babel/parser": 7.17.10 + "@babel/parser": 7.18.5 "@babel/template": 7.16.7 - "@babel/traverse": 7.17.10 + "@babel/traverse": 7.18.5 "@babel/types": 7.17.10 convert-source-map: 1.8.0 debug: 4.3.4 @@ -690,6 +692,32 @@ packages: transitivePeerDependencies: - supports-color + /@babel/core/7.18.5: + resolution: + { + integrity: sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@ampproject/remapping": 2.2.0 + "@babel/code-frame": 7.16.7 + "@babel/generator": 7.18.2 + "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.18.5 + "@babel/helper-module-transforms": 7.18.0 + "@babel/helpers": 7.18.2 + "@babel/parser": 7.18.5 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.5 + "@babel/types": 7.18.4 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/generator/7.17.10: resolution: { @@ -701,6 +729,17 @@ packages: "@jridgewell/gen-mapping": 0.1.1 jsesc: 2.5.2 + /@babel/generator/7.18.2: + resolution: + { + integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.4 + "@jridgewell/gen-mapping": 0.3.1 + jsesc: 2.5.2 + /@babel/helper-annotate-as-pure/7.16.7: resolution: { @@ -708,7 +747,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: resolution: @@ -718,7 +757,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/helper-explode-assignable-expression": 7.16.7 - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 dev: false /@babel/helper-compilation-targets/7.17.10_@babel+core@7.16.12: @@ -751,6 +790,54 @@ packages: browserslist: 4.20.3 semver: 6.3.0 + /@babel/helper-compilation-targets/7.17.10_@babel+core@7.18.5: + resolution: + { + integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.18.5 + "@babel/helper-validator-option": 7.16.7 + browserslist: 4.20.3 + semver: 6.3.0 + dev: false + + /@babel/helper-compilation-targets/7.18.2_@babel+core@7.17.10: + resolution: + { + integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.17.10 + "@babel/helper-validator-option": 7.16.7 + browserslist: 4.20.3 + semver: 6.3.0 + dev: false + + /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.5: + resolution: + { + integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.18.5 + "@babel/helper-validator-option": 7.16.7 + browserslist: 4.20.3 + semver: 6.3.0 + dev: false + /@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.16.12: resolution: { @@ -782,7 +869,7 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 "@babel/helper-function-name": 7.17.9 "@babel/helper-member-expression-to-functions": 7.17.7 "@babel/helper-optimise-call-expression": 7.16.7 @@ -792,6 +879,27 @@ packages: - supports-color dev: false + /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.5: + resolution: + { + integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-replace-supers": 7.18.2 + "@babel/helper-split-export-declaration": 7.16.7 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.10: resolution: { @@ -806,6 +914,34 @@ packages: regexpu-core: 5.0.1 dev: false + /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.18.5: + resolution: + { + integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-annotate-as-pure": 7.16.7 + regexpu-core: 5.0.1 + dev: false + + /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-annotate-as-pure": 7.16.7 + regexpu-core: 5.0.1 + dev: false + /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.10: resolution: { @@ -815,10 +951,31 @@ packages: "@babel/core": ^7.4.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-compilation-targets": 7.17.10_@babel+core@7.17.10 + "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.17.10 "@babel/helper-module-imports": 7.16.7 - "@babel/helper-plugin-utils": 7.16.7 - "@babel/traverse": 7.17.10 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/traverse": 7.18.5 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.0 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.5: + resolution: + { + integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==, + } + peerDependencies: + "@babel/core": ^7.4.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.18.5 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/traverse": 7.18.5 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.0 @@ -834,7 +991,14 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 + + /@babel/helper-environment-visitor/7.18.2: + resolution: + { + integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==, + } + engines: { node: ">=6.9.0" } /@babel/helper-explode-assignable-expression/7.16.7: resolution: @@ -843,7 +1007,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 dev: false /@babel/helper-function-name/7.17.9: @@ -854,7 +1018,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/template": 7.16.7 - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 /@babel/helper-hoist-variables/7.16.7: resolution: @@ -863,7 +1027,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 /@babel/helper-member-expression-to-functions/7.17.7: resolution: @@ -872,7 +1036,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 /@babel/helper-module-imports/7.16.7: resolution: @@ -881,7 +1045,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 /@babel/helper-module-transforms/7.17.7: resolution: @@ -890,16 +1054,35 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-environment-visitor": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 "@babel/helper-module-imports": 7.16.7 "@babel/helper-simple-access": 7.17.7 "@babel/helper-split-export-declaration": 7.16.7 "@babel/helper-validator-identifier": 7.16.7 "@babel/template": 7.16.7 - "@babel/traverse": 7.17.10 - "@babel/types": 7.17.10 + "@babel/traverse": 7.18.5 + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color + + /@babel/helper-module-transforms/7.18.0: + resolution: + { + integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-simple-access": 7.17.7 + "@babel/helper-split-export-declaration": 7.16.7 + "@babel/helper-validator-identifier": 7.16.7 + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.5 + "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color + dev: false /@babel/helper-optimise-call-expression/7.16.7: resolution: @@ -908,7 +1091,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 /@babel/helper-plugin-utils/7.10.4: resolution: @@ -924,6 +1107,13 @@ packages: } engines: { node: ">=6.9.0" } + /@babel/helper-plugin-utils/7.17.12: + resolution: + { + integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==, + } + engines: { node: ">=6.9.0" } + /@babel/helper-remap-async-to-generator/7.16.8: resolution: { @@ -933,7 +1123,7 @@ packages: dependencies: "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-wrap-function": 7.16.8 - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color dev: false @@ -945,13 +1135,29 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-environment-visitor": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 "@babel/helper-member-expression-to-functions": 7.17.7 "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/traverse": 7.17.10 - "@babel/types": 7.17.10 + "@babel/traverse": 7.18.5 + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color + + /@babel/helper-replace-supers/7.18.2: + resolution: + { + integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-member-expression-to-functions": 7.17.7 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/traverse": 7.18.5 + "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color + dev: false /@babel/helper-simple-access/7.17.7: resolution: @@ -960,7 +1166,17 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 + + /@babel/helper-simple-access/7.18.2: + resolution: + { + integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/types": 7.18.4 + dev: false /@babel/helper-skip-transparent-expression-wrappers/7.16.0: resolution: @@ -969,7 +1185,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 /@babel/helper-split-export-declaration/7.16.7: resolution: @@ -978,7 +1194,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 /@babel/helper-validator-identifier/7.16.7: resolution: @@ -1003,8 +1219,8 @@ packages: dependencies: "@babel/helper-function-name": 7.17.9 "@babel/template": 7.16.7 - "@babel/traverse": 7.17.10 - "@babel/types": 7.17.10 + "@babel/traverse": 7.18.5 + "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color dev: false @@ -1017,10 +1233,24 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/template": 7.16.7 - "@babel/traverse": 7.17.10 - "@babel/types": 7.17.10 + "@babel/traverse": 7.18.5 + "@babel/types": 7.18.4 + transitivePeerDependencies: + - supports-color + + /@babel/helpers/7.18.2: + resolution: + { + integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/template": 7.16.7 + "@babel/traverse": 7.18.5 + "@babel/types": 7.18.4 transitivePeerDependencies: - supports-color + dev: false /@babel/highlight/7.17.9: resolution: @@ -1043,6 +1273,16 @@ packages: dependencies: "@babel/types": 7.17.10 + /@babel/parser/7.18.5: + resolution: + { + integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==, + } + engines: { node: ">=6.0.0" } + hasBin: true + dependencies: + "@babel/types": 7.17.10 + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.10: resolution: { @@ -1053,7 +1293,20 @@ packages: "@babel/core": ^7.0.0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.10: @@ -1066,11 +1319,26 @@ packages: "@babel/core": ^7.13.0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 "@babel/plugin-proposal-optional-chaining": 7.16.7_@babel+core@7.17.10 dev: false + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.13.0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + "@babel/plugin-proposal-optional-chaining": 7.17.12_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.10: resolution: { @@ -1081,13 +1349,30 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-remap-async-to-generator": 7.16.8 "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.17.10 transitivePeerDependencies: - supports-color dev: false + /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-remap-async-to-generator": 7.16.8 + "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.18.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.16.12: resolution: { @@ -1114,28 +1399,61 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-create-class-features-plugin": 7.17.9_@babel+core@7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.10: + /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.5: resolution: { - integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==, + integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==, } engines: { node: ">=6.9.0" } peerDependencies: - "@babel/core": ^7.12.0 + "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 - "@babel/helper-create-class-features-plugin": 7.17.9_@babel+core@7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/core": 7.18.5 + "@babel/helper-create-class-features-plugin": 7.18.0_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.10: + resolution: + { + integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.12.0 + dependencies: + "@babel/core": 7.17.10 + "@babel/helper-create-class-features-plugin": 7.17.9_@babel+core@7.17.10 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-class-static-block": 7.14.5_@babel+core@7.17.10 transitivePeerDependencies: - supports-color dev: false + /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.18.5: + resolution: + { + integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.12.0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-create-class-features-plugin": 7.18.0_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-class-static-block": 7.14.5_@babel+core@7.18.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.16.12: resolution: { @@ -1159,10 +1477,24 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.17.10 dev: false + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.16.12: resolution: { @@ -1186,10 +1518,24 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.17.10 dev: false + /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.10: resolution: { @@ -1200,10 +1546,24 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.17.10 dev: false + /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.16.12: resolution: { @@ -1227,10 +1587,24 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.17.10 dev: false + /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.16.12: resolution: { @@ -1254,10 +1628,24 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.17.10 dev: false + /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.16.12: resolution: { @@ -1281,10 +1669,24 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.17.10 dev: false + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: resolution: { @@ -1294,9 +1696,9 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.12.9 - "@babel/helper-plugin-utils": 7.10.4 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.12.9 - "@babel/plugin-transform-parameters": 7.16.7_@babel+core@7.12.9 + "@babel/plugin-transform-parameters": 7.17.12_@babel+core@7.12.9 dev: false /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.10: @@ -1311,11 +1713,28 @@ packages: "@babel/compat-data": 7.17.10 "@babel/core": 7.17.10 "@babel/helper-compilation-targets": 7.17.10_@babel+core@7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.17.10 "@babel/plugin-transform-parameters": 7.16.7_@babel+core@7.17.10 dev: false + /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.5: + resolution: + { + integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.18.5 + "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.18.5 + "@babel/plugin-transform-parameters": 7.17.12_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.10: resolution: { @@ -1326,10 +1745,24 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.17.10 dev: false + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.16.12: resolution: { @@ -1354,11 +1787,26 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.17.10 dev: false + /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.18.5 + dev: false + /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.16.12: resolution: { @@ -1385,7 +1833,23 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-create-class-features-plugin": 7.17.9_@babel+core@7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-create-class-features-plugin": 7.18.0_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 transitivePeerDependencies: - supports-color dev: false @@ -1419,12 +1883,30 @@ packages: "@babel/core": 7.17.10 "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-create-class-features-plugin": 7.17.9_@babel+core@7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-private-property-in-object": 7.14.5_@babel+core@7.17.10 transitivePeerDependencies: - supports-color dev: false + /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-create-class-features-plugin": 7.18.0_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-private-property-in-object": 7.14.5_@babel+core@7.18.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.10: resolution: { @@ -1436,7 +1918,35 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-create-regexp-features-plugin": 7.17.0_@babel+core@7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==, + } + engines: { node: ">=4" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-create-regexp-features-plugin": 7.17.0_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==, + } + engines: { node: ">=4" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-create-regexp-features-plugin": 7.17.12_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.12: @@ -1459,7 +1969,19 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.5: + resolution: + { + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.17.10: resolution: @@ -1482,7 +2004,19 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.5: + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.10: resolution: @@ -1494,7 +2028,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.5: + resolution: + { + integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.12: @@ -1520,6 +2067,18 @@ packages: "@babel/helper-plugin-utils": 7.16.7 dev: false + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.5: + resolution: + { + integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.16.7 + dev: false + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.12: resolution: { @@ -1540,7 +2099,32 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.5: + resolution: + { + integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-syntax-import-assertions/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.10: @@ -1575,7 +2159,19 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.5: + resolution: + { + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: resolution: @@ -1586,7 +2182,7 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.12.9 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.16.12: @@ -1611,35 +2207,73 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.12: + /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.18.5: resolution: { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==, } + engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.16.12 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.10: + /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.5: resolution: { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==, } + engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.12: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.12: resolution: { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.16.12 + "@babel/helper-plugin-utils": 7.16.7 + + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.10: + resolution: + { + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.17.10 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.5: + resolution: + { + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.12: + resolution: + { + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, } peerDependencies: "@babel/core": ^7.0.0-0 @@ -1656,7 +2290,19 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.5: + resolution: + { + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.12: resolution: @@ -1678,7 +2324,19 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.5: + resolution: + { + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: resolution: @@ -1689,7 +2347,7 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.12.9 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.12: @@ -1712,7 +2370,19 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.5: + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.12: resolution: @@ -1734,7 +2404,19 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.5: + resolution: + { + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.12: resolution: @@ -1756,7 +2438,19 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.5: + resolution: + { + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.12: resolution: @@ -1780,7 +2474,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.5: + resolution: + { + integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.10: @@ -1793,7 +2500,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.5: + resolution: + { + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-syntax-typescript/7.17.10_@babel+core@7.16.12: resolution: @@ -1817,7 +2537,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + + /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.10: resolution: @@ -1829,7 +2562,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.10: @@ -1843,7 +2589,24 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-module-imports": 7.16.7 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-remap-async-to-generator": 7.16.8 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-remap-async-to-generator": 7.16.8 transitivePeerDependencies: - supports-color @@ -1859,7 +2622,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.10: @@ -1872,7 +2648,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.18.5: + resolution: + { + integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.10: @@ -1886,10 +2675,10 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-environment-visitor": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 "@babel/helper-function-name": 7.17.9 "@babel/helper-optimise-call-expression": 7.16.7 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-replace-supers": 7.16.7 "@babel/helper-split-export-declaration": 7.16.7 globals: 11.12.0 @@ -1897,6 +2686,28 @@ packages: - supports-color dev: false + /@babel/plugin-transform-classes/7.18.4_@babel+core@7.18.5: + resolution: + { + integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-optimise-call-expression": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.18.2 + "@babel/helper-split-export-declaration": 7.16.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.10: resolution: { @@ -1907,7 +2718,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.17.10: @@ -1920,7 +2744,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.5: + resolution: + { + integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.10: @@ -1934,7 +2771,21 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-create-regexp-features-plugin": 7.17.0_@babel+core@7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-create-regexp-features-plugin": 7.17.0_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.10: @@ -1947,7 +2798,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.10: @@ -1961,7 +2825,21 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-builder-binary-assignment-operator-visitor": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.10: @@ -1974,7 +2852,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.5: + resolution: + { + integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.10: @@ -1989,7 +2880,22 @@ packages: "@babel/core": 7.17.10 "@babel/helper-compilation-targets": 7.17.10_@babel+core@7.17.10 "@babel/helper-function-name": 7.17.9 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-compilation-targets": 7.17.10_@babel+core@7.18.5 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.10: @@ -2002,7 +2908,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.10: @@ -2015,7 +2934,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.10: @@ -2029,7 +2961,24 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-module-transforms": 7.17.7 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.18.5: + resolution: + { + integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-module-transforms": 7.18.0 + "@babel/helper-plugin-utils": 7.17.12 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color @@ -2055,163 +3004,311 @@ packages: /@babel/plugin-transform-modules-commonjs/7.17.9_@babel+core@7.17.10: resolution: { - integrity: sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==, + integrity: sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.17.10 + "@babel/helper-module-transforms": 7.17.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-simple-access": 7.17.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + + /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.5: + resolution: + { + integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-module-transforms": 7.18.0 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-simple-access": 7.18.2 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.17.10: + resolution: + { + integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.17.10 + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-module-transforms": 7.17.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-identifier": 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-modules-systemjs/7.18.5_@babel+core@7.18.5: + resolution: + { + integrity: sha512-SEewrhPpcqMF1V7DhnEbhVJLrC+nnYfe1E0piZMZXBpxi9WvZqWGwpsk7JYP7wPWeqaBh4gyKlBhHJu3uz5g4Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-module-transforms": 7.18.0 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-identifier": 7.16.7 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.10: + resolution: + { + integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.17.10 + "@babel/helper-module-transforms": 7.17.7 + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.18.5: + resolution: + { + integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-module-transforms": 7.18.0 + "@babel/helper-plugin-utils": 7.17.12 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-transform-named-capturing-groups-regex/7.17.10_@babel+core@7.17.10: + resolution: + { + integrity: sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.17.10 + "@babel/helper-create-regexp-features-plugin": 7.17.0_@babel+core@7.17.10 + dev: false + + /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-create-regexp-features-plugin": 7.17.12_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.10: + resolution: + { + integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.17.10 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-new-target/7.18.5_@babel+core@7.18.5: + resolution: + { + integrity: sha512-TuRL5uGW4KXU6OsRj+mLp9BM7pO8e7SGNTEokQRRxHFkXYMFiy2jlKSZPFtI/mKORDzciH+hneskcSOp0gU8hg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.10: + resolution: + { + integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-module-transforms": 7.17.7 - "@babel/helper-plugin-utils": 7.16.7 - "@babel/helper-simple-access": 7.17.7 - babel-plugin-dynamic-import-node: 2.3.3 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.16.7 transitivePeerDependencies: - supports-color + dev: false - /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.17.10: + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.5: resolution: { - integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==, + integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 - "@babel/helper-hoist-variables": 7.16.7 - "@babel/helper-module-transforms": 7.17.7 - "@babel/helper-plugin-utils": 7.16.7 - "@babel/helper-validator-identifier": 7.16.7 - babel-plugin-dynamic-import-node: 2.3.3 + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-replace-supers": 7.16.7 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.10: resolution: { - integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==, + integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-module-transforms": 7.17.7 - "@babel/helper-plugin-utils": 7.16.7 - transitivePeerDependencies: - - supports-color + "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-transform-named-capturing-groups-regex/7.17.10_@babel+core@7.17.10: + /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.12.9: resolution: { - integrity: sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==, + integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==, } engines: { node: ">=6.9.0" } peerDependencies: - "@babel/core": ^7.0.0 + "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 - "@babel/helper-create-regexp-features-plugin": 7.17.0_@babel+core@7.17.10 + "@babel/core": 7.12.9 + "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.5: resolution: { - integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==, + integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.10: resolution: { - integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==, + integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 - "@babel/helper-replace-supers": 7.16.7 - transitivePeerDependencies: - - supports-color + "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.12.9: + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.5: resolution: { - integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==, + integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.12.9 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-react-constant-elements/7.17.6_@babel+core@7.17.10: resolution: { - integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==, + integrity: sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.17.10: resolution: { - integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==, + integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-transform-react-constant-elements/7.17.6_@babel+core@7.17.10: + /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.5: resolution: { - integrity: sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==, + integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false - /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.10: resolution: { - integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==, + integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/plugin-transform-react-jsx": 7.17.3_@babel+core@7.17.10 dev: false - /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.5: resolution: { integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==, @@ -2220,8 +3317,8 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 - "@babel/plugin-transform-react-jsx": 7.17.3_@babel+core@7.17.10 + "@babel/core": 7.18.5 + "@babel/plugin-transform-react-jsx": 7.17.3_@babel+core@7.18.5 dev: false /@babel/plugin-transform-react-jsx-self/7.16.7_@babel+core@7.17.10: @@ -2266,6 +3363,23 @@ packages: "@babel/plugin-syntax-jsx": 7.16.7_@babel+core@7.16.12 "@babel/types": 7.17.10 + /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-jsx": 7.17.12_@babel+core@7.18.5 + "@babel/types": 7.18.4 + dev: false + /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.17.10: resolution: { @@ -2278,9 +3392,26 @@ packages: "@babel/core": 7.17.10 "@babel/helper-annotate-as-pure": 7.16.7 "@babel/helper-module-imports": 7.16.7 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-jsx": 7.16.7_@babel+core@7.17.10 - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 + dev: false + + /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.18.5: + resolution: + { + integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-jsx": 7.16.7_@babel+core@7.18.5 + "@babel/types": 7.18.4 dev: false /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.10: @@ -2294,7 +3425,21 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-annotate-as-pure": 7.16.7 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-annotate-as-pure": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-regenerator/7.17.9_@babel+core@7.17.10: @@ -2310,6 +3455,20 @@ packages: regenerator-transform: 0.15.0 dev: false + /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.18.5: + resolution: + { + integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + regenerator-transform: 0.15.0 + dev: false + /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.10: resolution: { @@ -2320,7 +3479,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-runtime/7.17.10_@babel+core@7.17.10: @@ -2343,6 +3515,26 @@ packages: - supports-color dev: false + /@babel/plugin-transform-runtime/7.18.5_@babel+core@7.18.5: + resolution: + { + integrity: sha512-Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-module-imports": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.5 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.5 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.5 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.10: resolution: { @@ -2353,7 +3545,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.10: @@ -2366,7 +3571,21 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 + dev: false + + /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 "@babel/helper-skip-transparent-expression-wrappers": 7.16.0 dev: false @@ -2380,7 +3599,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.10: @@ -2393,7 +3625,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.5: + resolution: + { + integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.10: @@ -2406,7 +3651,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.16.12: @@ -2436,12 +3694,29 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-create-class-features-plugin": 7.17.9_@babel+core@7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-syntax-typescript": 7.17.10_@babel+core@7.17.10 transitivePeerDependencies: - supports-color dev: false + /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.5: + resolution: + { + integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-create-class-features-plugin": 7.18.0_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-syntax-typescript": 7.17.12_@babel+core@7.18.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.10: resolution: { @@ -2452,7 +3727,20 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.10: @@ -2466,7 +3754,21 @@ packages: dependencies: "@babel/core": 7.17.10 "@babel/helper-create-regexp-features-plugin": 7.17.0_@babel+core@7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 + dev: false + + /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.5: + resolution: + { + integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-create-regexp-features-plugin": 7.17.0_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 dev: false /@babel/preset-env/7.17.10_@babel+core@7.17.10: @@ -2557,6 +3859,95 @@ packages: - supports-color dev: false + /@babel/preset-env/7.18.2_@babel+core@7.18.5: + resolution: + { + integrity: sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.18.5 + "@babel/helper-compilation-targets": 7.18.2_@babel+core@7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-async-generator-functions": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-class-properties": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-class-static-block": 7.18.0_@babel+core@7.18.5 + "@babel/plugin-proposal-dynamic-import": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-proposal-export-namespace-from": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-json-strings": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-logical-assignment-operators": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-nullish-coalescing-operator": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-numeric-separator": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-proposal-object-rest-spread": 7.18.0_@babel+core@7.18.5 + "@babel/plugin-proposal-optional-catch-binding": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-proposal-optional-chaining": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-private-methods": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-private-property-in-object": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-proposal-unicode-property-regex": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-syntax-async-generators": 7.8.4_@babel+core@7.18.5 + "@babel/plugin-syntax-class-properties": 7.12.13_@babel+core@7.18.5 + "@babel/plugin-syntax-class-static-block": 7.14.5_@babel+core@7.18.5 + "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.18.5 + "@babel/plugin-syntax-export-namespace-from": 7.8.3_@babel+core@7.18.5 + "@babel/plugin-syntax-import-assertions": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-syntax-json-strings": 7.8.3_@babel+core@7.18.5 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4_@babel+core@7.18.5 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3_@babel+core@7.18.5 + "@babel/plugin-syntax-numeric-separator": 7.10.4_@babel+core@7.18.5 + "@babel/plugin-syntax-object-rest-spread": 7.8.3_@babel+core@7.18.5 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3_@babel+core@7.18.5 + "@babel/plugin-syntax-optional-chaining": 7.8.3_@babel+core@7.18.5 + "@babel/plugin-syntax-private-property-in-object": 7.14.5_@babel+core@7.18.5 + "@babel/plugin-syntax-top-level-await": 7.14.5_@babel+core@7.18.5 + "@babel/plugin-transform-arrow-functions": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-async-to-generator": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-block-scoped-functions": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-block-scoping": 7.18.4_@babel+core@7.18.5 + "@babel/plugin-transform-classes": 7.18.4_@babel+core@7.18.5 + "@babel/plugin-transform-computed-properties": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-destructuring": 7.18.0_@babel+core@7.18.5 + "@babel/plugin-transform-dotall-regex": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-duplicate-keys": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-exponentiation-operator": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-for-of": 7.18.1_@babel+core@7.18.5 + "@babel/plugin-transform-function-name": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-literals": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-member-expression-literals": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-modules-amd": 7.18.0_@babel+core@7.18.5 + "@babel/plugin-transform-modules-commonjs": 7.18.2_@babel+core@7.18.5 + "@babel/plugin-transform-modules-systemjs": 7.18.5_@babel+core@7.18.5 + "@babel/plugin-transform-modules-umd": 7.18.0_@babel+core@7.18.5 + "@babel/plugin-transform-named-capturing-groups-regex": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-new-target": 7.18.5_@babel+core@7.18.5 + "@babel/plugin-transform-object-super": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-parameters": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-property-literals": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-regenerator": 7.18.0_@babel+core@7.18.5 + "@babel/plugin-transform-reserved-words": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-shorthand-properties": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-spread": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-sticky-regex": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-template-literals": 7.18.2_@babel+core@7.18.5 + "@babel/plugin-transform-typeof-symbol": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-unicode-escapes": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-unicode-regex": 7.16.7_@babel+core@7.18.5 + "@babel/preset-modules": 0.1.5_@babel+core@7.18.5 + "@babel/types": 7.18.4 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.5 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.5 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.5 + core-js-compat: 3.22.4 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/preset-modules/0.1.5_@babel+core@7.17.10: resolution: { @@ -2566,10 +3957,26 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.17.10 - "@babel/helper-plugin-utils": 7.16.7 + "@babel/helper-plugin-utils": 7.17.12 "@babel/plugin-proposal-unicode-property-regex": 7.16.7_@babel+core@7.17.10 "@babel/plugin-transform-dotall-regex": 7.16.7_@babel+core@7.17.10 - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 + esutils: 2.0.3 + dev: false + + /@babel/preset-modules/0.1.5_@babel+core@7.18.5: + resolution: + { + integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/plugin-proposal-unicode-property-regex": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-dotall-regex": 7.16.7_@babel+core@7.18.5 + "@babel/types": 7.18.4 esutils: 2.0.3 dev: false @@ -2591,6 +3998,24 @@ packages: "@babel/plugin-transform-react-pure-annotations": 7.16.7_@babel+core@7.17.10 dev: false + /@babel/preset-react/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-h5U+rwreXtZaRBEQhW1hOJLMq8XNJBQ/9oymXiCXTuT/0uOwpbT0gUt+sXeOqoXBgNuUKI7TaObVwoEyWkpFgA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-transform-react-display-name": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-react-jsx": 7.17.12_@babel+core@7.18.5 + "@babel/plugin-transform-react-jsx-development": 7.16.7_@babel+core@7.18.5 + "@babel/plugin-transform-react-pure-annotations": 7.16.7_@babel+core@7.18.5 + dev: false + /@babel/preset-typescript/7.16.7_@babel+core@7.16.12: resolution: { @@ -2624,6 +4049,23 @@ packages: - supports-color dev: false + /@babel/preset-typescript/7.17.12_@babel+core@7.18.5: + resolution: + { + integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-plugin-utils": 7.17.12 + "@babel/helper-validator-option": 7.16.7 + "@babel/plugin-transform-typescript": 7.18.4_@babel+core@7.18.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/runtime-corejs3/7.17.9: resolution: { @@ -2635,6 +4077,17 @@ packages: regenerator-runtime: 0.13.9 dev: false + /@babel/runtime-corejs3/7.18.3: + resolution: + { + integrity: sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==, + } + engines: { node: ">=6.9.0" } + dependencies: + core-js-pure: 3.22.4 + regenerator-runtime: 0.13.9 + dev: false + /@babel/runtime/7.17.9: resolution: { @@ -2644,6 +4097,16 @@ packages: dependencies: regenerator-runtime: 0.13.9 + /@babel/runtime/7.18.3: + resolution: + { + integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==, + } + engines: { node: ">=6.9.0" } + dependencies: + regenerator-runtime: 0.13.9 + dev: false + /@babel/template/7.16.7: resolution: { @@ -2652,8 +4115,8 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/code-frame": 7.16.7 - "@babel/parser": 7.17.10 - "@babel/types": 7.17.10 + "@babel/parser": 7.18.5 + "@babel/types": 7.18.4 /@babel/traverse/7.17.10: resolution: @@ -2668,13 +4131,33 @@ packages: "@babel/helper-function-name": 7.17.9 "@babel/helper-hoist-variables": 7.16.7 "@babel/helper-split-export-declaration": 7.16.7 - "@babel/parser": 7.17.10 + "@babel/parser": 7.18.5 "@babel/types": 7.17.10 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color + /@babel/traverse/7.18.5: + resolution: + { + integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/code-frame": 7.16.7 + "@babel/generator": 7.18.2 + "@babel/helper-environment-visitor": 7.18.2 + "@babel/helper-function-name": 7.17.9 + "@babel/helper-hoist-variables": 7.16.7 + "@babel/helper-split-export-declaration": 7.16.7 + "@babel/parser": 7.18.5 + "@babel/types": 7.18.4 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/types/7.17.10: resolution: { @@ -2685,6 +4168,16 @@ packages: "@babel/helper-validator-identifier": 7.16.7 to-fast-properties: 2.0.0 + /@babel/types/7.18.4: + resolution: + { + integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-validator-identifier": 7.16.7 + to-fast-properties: 2.0.0 + /@bcoe/v8-coverage/0.2.3: resolution: { @@ -3325,6 +4818,107 @@ packages: - webpack-cli dev: false + /@docusaurus/core/2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm: + resolution: + { + integrity: sha512-qysDMVp1M5UozK3u/qOxsEZsHF7jeBvJDS+5ItMPYmNKvMbNKeYZGA0g6S7F9hRDwjIlEbvo7BaX0UMDcmTAWA==, + } + engines: { node: ">=16.14" } + hasBin: true + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + dependencies: + "@babel/core": 7.18.5 + "@babel/generator": 7.18.2 + "@babel/plugin-syntax-dynamic-import": 7.8.3_@babel+core@7.18.5 + "@babel/plugin-transform-runtime": 7.18.5_@babel+core@7.18.5 + "@babel/preset-env": 7.18.2_@babel+core@7.18.5 + "@babel/preset-react": 7.17.12_@babel+core@7.18.5 + "@babel/preset-typescript": 7.17.12_@babel+core@7.18.5 + "@babel/runtime": 7.18.3 + "@babel/runtime-corejs3": 7.18.3 + "@babel/traverse": 7.18.5 + "@docusaurus/cssnano-preset": 2.0.0-beta.21 + "@docusaurus/logger": 2.0.0-beta.21 + "@docusaurus/mdx-loader": 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m + "@docusaurus/react-loadable": 5.5.2_react@17.0.2 + "@docusaurus/utils": 2.0.0-beta.21 + "@docusaurus/utils-common": 2.0.0-beta.21 + "@docusaurus/utils-validation": 2.0.0-beta.21 + "@slorber/static-site-generator-webpack-plugin": 4.0.4 + "@svgr/webpack": 6.2.1 + autoprefixer: 10.4.7_postcss@8.4.14 + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke + babel-plugin-dynamic-import-node: 2.3.3 + boxen: 6.2.1 + chalk: 4.1.2 + chokidar: 3.5.3 + clean-css: 5.3.0 + cli-table3: 0.6.2 + combine-promises: 1.1.0 + commander: 5.1.0 + copy-webpack-plugin: 11.0.0_webpack@5.73.0 + core-js: 3.23.2 + css-loader: 6.7.1_webpack@5.73.0 + css-minimizer-webpack-plugin: 4.0.0_ym7haxui4mhsv4z74sxfalk3f4 + cssnano: 5.1.12_postcss@8.4.14 + del: 6.1.1 + detect-port: 1.3.0 + escape-html: 1.0.3 + eta: 1.12.3 + file-loader: 6.2.0_webpack@5.73.0 + fs-extra: 10.1.0 + html-minifier-terser: 6.1.0 + html-tags: 3.2.0 + html-webpack-plugin: 5.5.0_webpack@5.73.0 + import-fresh: 3.3.0 + leven: 3.1.0 + lodash: 4.17.21 + mini-css-extract-plugin: 2.6.0_webpack@5.73.0 + postcss: 8.4.14 + postcss-loader: 7.0.0_mepnsno3xmng6eyses4tepu7bu + prompts: 2.4.2 + react: 17.0.2 + react-dev-utils: 12.0.1_dydffymiyrgjbmyedhp7lreziy + react-dom: 17.0.2_react@17.0.2 + react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m + react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2 + react-loadable-ssr-addon-v5-slorber: 1.0.1_pobh4rnr4unizsdzh3gmmsgqtu + react-router: 5.3.3_react@17.0.2 + react-router-config: 5.1.1_oyuskl3t7voyrff2xstzuy4hqu + react-router-dom: 5.3.3_react@17.0.2 + remark-admonitions: 1.2.1 + rtl-detect: 1.0.4 + semver: 7.3.7 + serve-handler: 6.1.3 + shelljs: 0.8.5 + terser-webpack-plugin: 5.3.1_webpack@5.73.0 + tslib: 2.4.0 + update-notifier: 5.1.0 + url-loader: 4.1.1_ljnyroaqobwke7fusd7ro2cgzm + wait-on: 6.0.1 + webpack: 5.73.0 + webpack-bundle-analyzer: 4.5.0 + webpack-dev-server: 4.9.2_webpack@5.73.0 + webpack-merge: 5.8.0 + webpackbar: 5.0.2_webpack@5.73.0 + transitivePeerDependencies: + - "@parcel/css" + - "@swc/core" + - bufferutil + - csso + - debug + - esbuild + - eslint + - supports-color + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + dev: false + /@docusaurus/cssnano-preset/2.0.0-beta.18: resolution: { @@ -3336,6 +4930,19 @@ packages: postcss-sort-media-queries: 4.2.1_postcss@8.4.13 dev: false + /@docusaurus/cssnano-preset/2.0.0-beta.21: + resolution: + { + integrity: sha512-fhTZrg1vc6zYYZIIMXpe1TnEVGEjqscBo0s1uomSwKjjtMgu7wkzc1KKJYY7BndsSA+fVVkZ+OmL/kAsmK7xxw==, + } + engines: { node: ">=16.14" } + dependencies: + cssnano-preset-advanced: 5.3.8_postcss@8.4.14 + postcss: 8.4.14 + postcss-sort-media-queries: 4.2.1_postcss@8.4.14 + tslib: 2.4.0 + dev: false + /@docusaurus/logger/2.0.0-beta.18: resolution: { @@ -3347,6 +4954,17 @@ packages: tslib: 2.4.0 dev: false + /@docusaurus/logger/2.0.0-beta.21: + resolution: + { + integrity: sha512-HTFp8FsSMrAj7Uxl5p72U+P7rjYU/LRRBazEoJbs9RaqoKEdtZuhv8MYPOCh46K9TekaoquRYqag2o23Qt4ggA==, + } + engines: { node: ">=16.14" } + dependencies: + chalk: 4.1.2 + tslib: 2.4.0 + dev: false + /@docusaurus/mdx-loader/2.0.0-beta.18_sfoxds7t5ydpegc3knd667wn6m: resolution: { @@ -3357,13 +4975,13 @@ packages: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - "@babel/parser": 7.17.10 - "@babel/traverse": 7.17.10 + "@babel/parser": 7.18.5 + "@babel/traverse": 7.18.5 "@docusaurus/logger": 2.0.0-beta.18 "@docusaurus/utils": 2.0.0-beta.18 "@mdx-js/mdx": 1.6.22 escape-html: 1.0.3 - file-loader: 6.2.0_webpack@5.72.0 + file-loader: 6.2.0_webpack@5.73.0 fs-extra: 10.1.0 image-size: 1.0.1 mdast-util-to-string: 2.0.0 @@ -3373,8 +4991,44 @@ packages: stringify-object: 3.3.0 tslib: 2.4.0 unist-util-visit: 2.0.3 - url-loader: 4.1.1_csgzzuwaerdr4d7s3u52mzcn7m - webpack: 5.72.0 + url-loader: 4.1.1_ljnyroaqobwke7fusd7ro2cgzm + webpack: 5.73.0 + transitivePeerDependencies: + - "@swc/core" + - esbuild + - supports-color + - uglify-js + - webpack-cli + dev: false + + /@docusaurus/mdx-loader/2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m: + resolution: + { + integrity: sha512-AI+4obJnpOaBOAYV6df2ux5Y1YJCBS+MhXFf0yhED12sVLJi2vffZgdamYd/d/FwvWDw6QLs/VD2jebd7P50yQ==, + } + engines: { node: ">=16.14" } + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + dependencies: + "@babel/parser": 7.18.5 + "@babel/traverse": 7.18.5 + "@docusaurus/logger": 2.0.0-beta.21 + "@docusaurus/utils": 2.0.0-beta.21 + "@mdx-js/mdx": 1.6.22 + escape-html: 1.0.3 + file-loader: 6.2.0_webpack@5.73.0 + fs-extra: 10.1.0 + image-size: 1.0.1 + mdast-util-to-string: 2.0.0 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + remark-emoji: 2.2.0 + stringify-object: 3.3.0 + tslib: 2.4.0 + unist-util-visit: 2.0.3 + url-loader: 4.1.1_ljnyroaqobwke7fusd7ro2cgzm + webpack: 5.73.0 transitivePeerDependencies: - "@swc/core" - esbuild @@ -3406,10 +5060,120 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-blog/2.0.0-beta.18_oagctitnqx3g7idiuq5vrj5arm: + /@docusaurus/module-type-aliases/2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m: + resolution: + { + integrity: sha512-gRkWICgQZiqSJgrwRKWjXm5gAB+9IcfYdUbCG0PRPP/G8sNs9zBIOY4uT4Z5ox2CWFEm44U3RTTxj7BiLVMBXw==, + } + peerDependencies: + react: "*" + react-dom: "*" + dependencies: + "@docusaurus/types": 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m + "@types/react": 18.0.8 + "@types/react-router-config": 5.0.6 + "@types/react-router-dom": 5.3.3 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m + transitivePeerDependencies: + - "@swc/core" + - esbuild + - uglify-js + - webpack-cli + dev: false + + /@docusaurus/plugin-content-blog/2.0.0-beta.18_oagctitnqx3g7idiuq5vrj5arm: + resolution: + { + integrity: sha512-qzK83DgB+mxklk3PQC2nuTGPQD/8ogw1nXSmaQpyXAyhzcz4CXAZ9Swl/Ee9A/bvPwQGnSHSP3xqIYl8OkFtfw==, + } + engines: { node: ">=14" } + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + dependencies: + "@docusaurus/core": 2.0.0-beta.18_oagctitnqx3g7idiuq5vrj5arm + "@docusaurus/logger": 2.0.0-beta.18 + "@docusaurus/mdx-loader": 2.0.0-beta.18_sfoxds7t5ydpegc3knd667wn6m + "@docusaurus/utils": 2.0.0-beta.18 + "@docusaurus/utils-common": 2.0.0-beta.18 + "@docusaurus/utils-validation": 2.0.0-beta.18 + cheerio: 1.0.0-rc.11 + feed: 4.2.2 + fs-extra: 10.1.0 + lodash: 4.17.21 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + reading-time: 1.5.0 + remark-admonitions: 1.2.1 + tslib: 2.4.0 + utility-types: 3.10.0 + webpack: 5.73.0 + transitivePeerDependencies: + - "@parcel/css" + - "@swc/core" + - bufferutil + - csso + - debug + - esbuild + - eslint + - supports-color + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + dev: false + + /@docusaurus/plugin-content-blog/2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm: + resolution: + { + integrity: sha512-IP21yJViP3oBmgsWBU5LhrG1MZXV4mYCQSoCAboimESmy1Z11RCNP2tXaqizE3iTmXOwZZL+SNBk06ajKCEzWg==, + } + engines: { node: ">=16.14" } + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + dependencies: + "@docusaurus/core": 2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm + "@docusaurus/logger": 2.0.0-beta.21 + "@docusaurus/mdx-loader": 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m + "@docusaurus/utils": 2.0.0-beta.21 + "@docusaurus/utils-common": 2.0.0-beta.21 + "@docusaurus/utils-validation": 2.0.0-beta.21 + cheerio: 1.0.0-rc.11 + feed: 4.2.2 + fs-extra: 10.1.0 + lodash: 4.17.21 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + reading-time: 1.5.0 + remark-admonitions: 1.2.1 + tslib: 2.4.0 + unist-util-visit: 2.0.3 + utility-types: 3.10.0 + webpack: 5.73.0 + transitivePeerDependencies: + - "@parcel/css" + - "@swc/core" + - bufferutil + - csso + - debug + - esbuild + - eslint + - supports-color + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + dev: false + + /@docusaurus/plugin-content-docs/2.0.0-beta.18_oagctitnqx3g7idiuq5vrj5arm: resolution: { - integrity: sha512-qzK83DgB+mxklk3PQC2nuTGPQD/8ogw1nXSmaQpyXAyhzcz4CXAZ9Swl/Ee9A/bvPwQGnSHSP3xqIYl8OkFtfw==, + integrity: sha512-z4LFGBJuzn4XQiUA7OEA2SZTqlp+IYVjd3NrCk/ZUfNi1tsTJS36ATkk9Y6d0Nsp7K2kRXqaXPsz4adDgeIU+Q==, } engines: { node: ">=14" } peerDependencies: @@ -3420,19 +5184,18 @@ packages: "@docusaurus/logger": 2.0.0-beta.18 "@docusaurus/mdx-loader": 2.0.0-beta.18_sfoxds7t5ydpegc3knd667wn6m "@docusaurus/utils": 2.0.0-beta.18 - "@docusaurus/utils-common": 2.0.0-beta.18 "@docusaurus/utils-validation": 2.0.0-beta.18 - cheerio: 1.0.0-rc.10 - feed: 4.2.2 + combine-promises: 1.1.0 fs-extra: 10.1.0 + import-fresh: 3.3.0 + js-yaml: 4.1.0 lodash: 4.17.21 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 - reading-time: 1.5.0 remark-admonitions: 1.2.1 tslib: 2.4.0 utility-types: 3.10.0 - webpack: 5.72.0 + webpack: 5.73.0 transitivePeerDependencies: - "@parcel/css" - "@swc/core" @@ -3449,21 +5212,21 @@ packages: - webpack-cli dev: false - /@docusaurus/plugin-content-docs/2.0.0-beta.18_oagctitnqx3g7idiuq5vrj5arm: + /@docusaurus/plugin-content-docs/2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm: resolution: { - integrity: sha512-z4LFGBJuzn4XQiUA7OEA2SZTqlp+IYVjd3NrCk/ZUfNi1tsTJS36ATkk9Y6d0Nsp7K2kRXqaXPsz4adDgeIU+Q==, + integrity: sha512-aa4vrzJy4xRy81wNskyhE3wzRf3AgcESZ1nfKh8xgHUkT7fDTZ1UWlg50Jb3LBCQFFyQG2XQB9N6llskI/KUnw==, } - engines: { node: ">=14" } + engines: { node: ">=16.14" } peerDependencies: react: ^16.8.4 || ^17.0.0 react-dom: ^16.8.4 || ^17.0.0 dependencies: - "@docusaurus/core": 2.0.0-beta.18_oagctitnqx3g7idiuq5vrj5arm - "@docusaurus/logger": 2.0.0-beta.18 - "@docusaurus/mdx-loader": 2.0.0-beta.18_sfoxds7t5ydpegc3knd667wn6m - "@docusaurus/utils": 2.0.0-beta.18 - "@docusaurus/utils-validation": 2.0.0-beta.18 + "@docusaurus/core": 2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm + "@docusaurus/logger": 2.0.0-beta.21 + "@docusaurus/mdx-loader": 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m + "@docusaurus/utils": 2.0.0-beta.21 + "@docusaurus/utils-validation": 2.0.0-beta.21 combine-promises: 1.1.0 fs-extra: 10.1.0 import-fresh: 3.3.0 @@ -3474,7 +5237,7 @@ packages: remark-admonitions: 1.2.1 tslib: 2.4.0 utility-types: 3.10.0 - webpack: 5.72.0 + webpack: 5.73.0 transitivePeerDependencies: - "@parcel/css" - "@swc/core" @@ -3510,7 +5273,43 @@ packages: react-dom: 17.0.2_react@17.0.2 remark-admonitions: 1.2.1 tslib: 2.4.0 - webpack: 5.72.0 + webpack: 5.73.0 + transitivePeerDependencies: + - "@parcel/css" + - "@swc/core" + - bufferutil + - csso + - debug + - esbuild + - eslint + - supports-color + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + dev: false + + /@docusaurus/plugin-content-pages/2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm: + resolution: + { + integrity: sha512-DmXOXjqNI+7X5hISzCvt54QIK6XBugu2MOxjxzuqI7q92Lk/EVdraEj5mthlH8IaEH/VlpWYJ1O9TzLqX5vH2g==, + } + engines: { node: ">=16.14" } + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + dependencies: + "@docusaurus/core": 2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm + "@docusaurus/mdx-loader": 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m + "@docusaurus/utils": 2.0.0-beta.21 + "@docusaurus/utils-validation": 2.0.0-beta.21 + fs-extra: 10.1.0 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + remark-admonitions: 1.2.1 + tslib: 2.4.0 + webpack: 5.73.0 transitivePeerDependencies: - "@parcel/css" - "@swc/core" @@ -3739,7 +5538,7 @@ packages: infima: 0.2.0-alpha.38 lodash: 4.17.21 postcss: 8.4.13 - prism-react-renderer: 1.3.1_react@17.0.2 + prism-react-renderer: 1.3.3_react@17.0.2 prismjs: 1.28.0 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 @@ -3777,7 +5576,44 @@ packages: "@docusaurus/plugin-content-pages": 2.0.0-beta.18_oagctitnqx3g7idiuq5vrj5arm clsx: 1.1.1 parse-numeric-range: 1.3.0 - prism-react-renderer: 1.3.1_react@17.0.2 + prism-react-renderer: 1.3.3_react@17.0.2 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + tslib: 2.4.0 + utility-types: 3.10.0 + transitivePeerDependencies: + - "@parcel/css" + - "@swc/core" + - bufferutil + - csso + - debug + - esbuild + - eslint + - supports-color + - typescript + - uglify-js + - utf-8-validate + - vue-template-compiler + - webpack-cli + dev: false + + /@docusaurus/theme-common/2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm: + resolution: + { + integrity: sha512-fTKoTLRfjuFG6c3iwnVjIIOensxWMgdBKLfyE5iih3Lq7tQgkE7NyTGG9BKLrnTJ7cAD2UXdXM9xbB7tBf1qzg==, + } + engines: { node: ">=16.14" } + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + dependencies: + "@docusaurus/module-type-aliases": 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m + "@docusaurus/plugin-content-blog": 2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm + "@docusaurus/plugin-content-docs": 2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm + "@docusaurus/plugin-content-pages": 2.0.0-beta.21_oagctitnqx3g7idiuq5vrj5arm + clsx: 1.1.1 + parse-numeric-range: 1.3.0 + prism-react-renderer: 1.3.3_react@17.0.2 react: 17.0.2 react-dom: 17.0.2_react@17.0.2 tslib: 2.4.0 @@ -3864,7 +5700,32 @@ packages: commander: 5.1.0 joi: 17.6.0 utility-types: 3.10.0 - webpack: 5.72.0 + webpack: 5.73.0 + webpack-merge: 5.8.0 + transitivePeerDependencies: + - "@swc/core" + - esbuild + - uglify-js + - webpack-cli + dev: false + + /@docusaurus/types/2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m: + resolution: + { + integrity: sha512-/GH6Npmq81eQfMC/ikS00QSv9jNyO1RXEpNSx5GLA3sFX8Iib26g2YI2zqNplM8nyxzZ2jVBuvUoeODTIbTchQ==, + } + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + dependencies: + commander: 5.1.0 + history: 4.10.1 + joi: 17.6.0 + react: 17.0.2 + react-dom: 17.0.2_react@17.0.2 + react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m + utility-types: 3.10.0 + webpack: 5.73.0 webpack-merge: 5.8.0 transitivePeerDependencies: - "@swc/core" @@ -3883,6 +5744,16 @@ packages: tslib: 2.4.0 dev: false + /@docusaurus/utils-common/2.0.0-beta.21: + resolution: + { + integrity: sha512-5w+6KQuJb6pUR2M8xyVuTMvO5NFQm/p8TOTDFTx60wt3p0P1rRX00v6FYsD4PK6pgmuoKjt2+Ls8dtSXc4qFpQ==, + } + engines: { node: ">=16.14" } + dependencies: + tslib: 2.4.0 + dev: false + /@docusaurus/utils-validation/2.0.0-beta.18: resolution: { @@ -3903,6 +5774,26 @@ packages: - webpack-cli dev: false + /@docusaurus/utils-validation/2.0.0-beta.21: + resolution: + { + integrity: sha512-6NG1FHTRjv1MFzqW//292z7uCs77vntpWEbZBHk3n67aB1HoMn5SOwjLPtRDjbCgn6HCHFmdiJr6euCbjhYolg==, + } + engines: { node: ">=16.14" } + dependencies: + "@docusaurus/logger": 2.0.0-beta.21 + "@docusaurus/utils": 2.0.0-beta.21 + joi: 17.6.0 + js-yaml: 4.1.0 + tslib: 2.4.0 + transitivePeerDependencies: + - "@swc/core" + - esbuild + - supports-color + - uglify-js + - webpack-cli + dev: false + /@docusaurus/utils/2.0.0-beta.18: resolution: { @@ -3912,7 +5803,7 @@ packages: dependencies: "@docusaurus/logger": 2.0.0-beta.18 "@svgr/webpack": 6.2.1 - file-loader: 6.2.0_webpack@5.72.0 + file-loader: 6.2.0_webpack@5.73.0 fs-extra: 10.1.0 github-slugger: 1.4.0 globby: 11.1.0 @@ -3923,8 +5814,38 @@ packages: resolve-pathname: 3.0.0 shelljs: 0.8.5 tslib: 2.4.0 - url-loader: 4.1.1_csgzzuwaerdr4d7s3u52mzcn7m - webpack: 5.72.0 + url-loader: 4.1.1_ljnyroaqobwke7fusd7ro2cgzm + webpack: 5.73.0 + transitivePeerDependencies: + - "@swc/core" + - esbuild + - supports-color + - uglify-js + - webpack-cli + dev: false + + /@docusaurus/utils/2.0.0-beta.21: + resolution: + { + integrity: sha512-M/BrVCDmmUPZLxtiStBgzpQ4I5hqkggcpnQmEN+LbvbohjbtVnnnZQ0vptIziv1w8jry/woY+ePsyOO7O/yeLQ==, + } + engines: { node: ">=16.14" } + dependencies: + "@docusaurus/logger": 2.0.0-beta.21 + "@svgr/webpack": 6.2.1 + file-loader: 6.2.0_webpack@5.73.0 + fs-extra: 10.1.0 + github-slugger: 1.4.0 + globby: 11.1.0 + gray-matter: 4.0.3 + js-yaml: 4.1.0 + lodash: 4.17.21 + micromatch: 4.0.5 + resolve-pathname: 3.0.0 + shelljs: 0.8.5 + tslib: 2.4.0 + url-loader: 4.1.1_ljnyroaqobwke7fusd7ro2cgzm + webpack: 5.73.0 transitivePeerDependencies: - "@swc/core" - esbuild @@ -4289,6 +6210,17 @@ packages: "@jridgewell/set-array": 1.1.0 "@jridgewell/sourcemap-codec": 1.4.12 + /@jridgewell/gen-mapping/0.3.1: + resolution: + { + integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==, + } + engines: { node: ">=6.0.0" } + dependencies: + "@jridgewell/set-array": 1.1.0 + "@jridgewell/sourcemap-codec": 1.4.12 + "@jridgewell/trace-mapping": 0.3.9 + /@jridgewell/resolve-uri/3.0.6: resolution: { @@ -4571,7 +6503,7 @@ packages: webpack-sources: 1.4.3 dev: false - /@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.17.10: + /@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.18.5: resolution: { integrity: sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==, @@ -4580,10 +6512,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 + "@babel/core": 7.18.5 dev: false - /@svgr/babel-plugin-remove-jsx-attribute/6.0.0_@babel+core@7.17.10: + /@svgr/babel-plugin-remove-jsx-attribute/6.0.0_@babel+core@7.18.5: resolution: { integrity: sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==, @@ -4592,10 +6524,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 + "@babel/core": 7.18.5 dev: false - /@svgr/babel-plugin-remove-jsx-empty-expression/6.0.0_@babel+core@7.17.10: + /@svgr/babel-plugin-remove-jsx-empty-expression/6.0.0_@babel+core@7.18.5: resolution: { integrity: sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==, @@ -4604,10 +6536,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 + "@babel/core": 7.18.5 dev: false - /@svgr/babel-plugin-replace-jsx-attribute-value/6.0.0_@babel+core@7.17.10: + /@svgr/babel-plugin-replace-jsx-attribute-value/6.0.0_@babel+core@7.18.5: resolution: { integrity: sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==, @@ -4616,10 +6548,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 + "@babel/core": 7.18.5 dev: false - /@svgr/babel-plugin-svg-dynamic-title/6.0.0_@babel+core@7.17.10: + /@svgr/babel-plugin-svg-dynamic-title/6.0.0_@babel+core@7.18.5: resolution: { integrity: sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==, @@ -4628,10 +6560,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 + "@babel/core": 7.18.5 dev: false - /@svgr/babel-plugin-svg-em-dimensions/6.0.0_@babel+core@7.17.10: + /@svgr/babel-plugin-svg-em-dimensions/6.0.0_@babel+core@7.18.5: resolution: { integrity: sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==, @@ -4640,10 +6572,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 + "@babel/core": 7.18.5 dev: false - /@svgr/babel-plugin-transform-react-native-svg/6.0.0_@babel+core@7.17.10: + /@svgr/babel-plugin-transform-react-native-svg/6.0.0_@babel+core@7.18.5: resolution: { integrity: sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==, @@ -4652,10 +6584,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 + "@babel/core": 7.18.5 dev: false - /@svgr/babel-plugin-transform-svg-component/6.2.0_@babel+core@7.17.10: + /@svgr/babel-plugin-transform-svg-component/6.2.0_@babel+core@7.18.5: resolution: { integrity: sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==, @@ -4664,10 +6596,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 + "@babel/core": 7.18.5 dev: false - /@svgr/babel-preset/6.2.0_@babel+core@7.17.10: + /@svgr/babel-preset/6.2.0_@babel+core@7.18.5: resolution: { integrity: sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==, @@ -4676,15 +6608,15 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.17.10 - "@svgr/babel-plugin-add-jsx-attribute": 6.0.0_@babel+core@7.17.10 - "@svgr/babel-plugin-remove-jsx-attribute": 6.0.0_@babel+core@7.17.10 - "@svgr/babel-plugin-remove-jsx-empty-expression": 6.0.0_@babel+core@7.17.10 - "@svgr/babel-plugin-replace-jsx-attribute-value": 6.0.0_@babel+core@7.17.10 - "@svgr/babel-plugin-svg-dynamic-title": 6.0.0_@babel+core@7.17.10 - "@svgr/babel-plugin-svg-em-dimensions": 6.0.0_@babel+core@7.17.10 - "@svgr/babel-plugin-transform-react-native-svg": 6.0.0_@babel+core@7.17.10 - "@svgr/babel-plugin-transform-svg-component": 6.2.0_@babel+core@7.17.10 + "@babel/core": 7.18.5 + "@svgr/babel-plugin-add-jsx-attribute": 6.0.0_@babel+core@7.18.5 + "@svgr/babel-plugin-remove-jsx-attribute": 6.0.0_@babel+core@7.18.5 + "@svgr/babel-plugin-remove-jsx-empty-expression": 6.0.0_@babel+core@7.18.5 + "@svgr/babel-plugin-replace-jsx-attribute-value": 6.0.0_@babel+core@7.18.5 + "@svgr/babel-plugin-svg-dynamic-title": 6.0.0_@babel+core@7.18.5 + "@svgr/babel-plugin-svg-em-dimensions": 6.0.0_@babel+core@7.18.5 + "@svgr/babel-plugin-transform-react-native-svg": 6.0.0_@babel+core@7.18.5 + "@svgr/babel-plugin-transform-svg-component": 6.2.0_@babel+core@7.18.5 dev: false /@svgr/core/6.2.1: @@ -4708,7 +6640,7 @@ packages: } engines: { node: ">=10" } dependencies: - "@babel/types": 7.17.10 + "@babel/types": 7.18.4 entities: 3.0.1 dev: false @@ -4721,8 +6653,8 @@ packages: peerDependencies: "@svgr/core": ^6.0.0 dependencies: - "@babel/core": 7.17.10 - "@svgr/babel-preset": 6.2.0_@babel+core@7.17.10 + "@babel/core": 7.18.5 + "@svgr/babel-preset": 6.2.0_@babel+core@7.18.5 "@svgr/core": 6.2.1 "@svgr/hast-util-to-babel-ast": 6.2.1 svg-parser: 2.0.4 @@ -5065,7 +6997,7 @@ packages: integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, } dependencies: - "@types/node": 17.0.31 + "@types/node": 17.0.41 dev: false /@types/lodash.merge/4.6.7: @@ -5261,7 +7193,7 @@ packages: integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==, } dependencies: - "@types/node": 17.0.31 + "@types/node": 17.0.41 dev: false /@types/retry/0.12.0: @@ -6157,6 +8089,25 @@ packages: postcss-value-parser: 4.2.0 dev: false + /autoprefixer/10.4.7_postcss@8.4.14: + resolution: + { + integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==, + } + engines: { node: ^10 || ^12 || >=14 } + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.20.3 + caniuse-lite: 1.0.30001335 + fraction.js: 4.2.0 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /axe-core/4.4.1: resolution: { @@ -6194,7 +8145,7 @@ packages: integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==, } dependencies: - follow-redirects: 1.14.9_debug@4.3.2 + follow-redirects: 1.14.9 transitivePeerDependencies: - debug dev: false @@ -6238,6 +8189,24 @@ packages: webpack: 5.72.0 dev: false + /babel-loader/8.2.5_te6ollfzjcco6mbxjl755ucqke: + resolution: + { + integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==, + } + engines: { node: ">= 8.9" } + peerDependencies: + "@babel/core": ^7.0.0 + webpack: ">=2" + dependencies: + "@babel/core": 7.18.5 + find-cache-dir: 3.3.2 + loader-utils: 2.0.2 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 5.73.0 + dev: false + /babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9: resolution: { @@ -6335,6 +8304,22 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.5: + resolution: + { + integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/compat-data": 7.17.10 + "@babel/core": 7.18.5 + "@babel/helper-define-polyfill-provider": 0.3.1_@babel+core@7.18.5 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.10: resolution: { @@ -6350,6 +8335,21 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.5: + resolution: + { + integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-define-polyfill-provider": 0.3.1_@babel+core@7.18.5 + core-js-compat: 3.22.4 + transitivePeerDependencies: + - supports-color + dev: false + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.10: resolution: { @@ -6364,6 +8364,20 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.5: + resolution: + { + integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.18.5 + "@babel/helper-define-polyfill-provider": 0.3.1_@babel+core@7.18.5 + transitivePeerDependencies: + - supports-color + dev: false + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.17.10: resolution: { @@ -6499,7 +8513,10 @@ packages: dev: false /boolbase/1.0.0: - resolution: { integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24= } + resolution: + { + integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, + } dev: false /boxen/5.1.2: @@ -6786,21 +8803,25 @@ packages: engines: { node: ">= 0.8.0" } dev: false - /cheerio-select/1.6.0: + /cheerio-select/2.1.0: resolution: { - integrity: sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==, + integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==, } dependencies: - css-select: 4.3.0 + boolbase: 1.0.0 + css-select: 5.1.0 css-what: 6.1.0 domelementtype: 2.3.0 - domhandler: 4.3.1 - domutils: 2.8.0 + domhandler: 5.0.3 + domutils: 3.0.1 dev: false /cheerio/0.22.0: - resolution: { integrity: sha1-qbqoYKP5tZWmuBsahocxIe06Jp4= } + resolution: + { + integrity: sha512-8/MzidM6G/TgRelkzDG13y3Y9LxBjCb+8yOEZ9+wwq5gVF2w2pV0wmHvjfT0RvuxGyR7UEuK36r+yYMbT4uKgA==, + } engines: { node: ">= 0.6" } dependencies: css-select: 1.2.0 @@ -6821,19 +8842,20 @@ packages: lodash.some: 4.6.0 dev: false - /cheerio/1.0.0-rc.10: + /cheerio/1.0.0-rc.11: resolution: { - integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==, + integrity: sha512-bQwNaDIBKID5ts/DsdhxrjqFXYfLw4ste+wMKqWA8DyKcS4qwsPP4Bk8ZNaTJjvpiX/qW3BT4sU7d6Bh5i+dag==, } engines: { node: ">= 6" } dependencies: - cheerio-select: 1.6.0 - dom-serializer: 1.4.1 - domhandler: 4.3.1 - htmlparser2: 6.1.0 - parse5: 6.0.1 - parse5-htmlparser2-tree-adapter: 6.0.1 + cheerio-select: 2.1.0 + dom-serializer: 2.0.0 + domhandler: 5.0.3 + domutils: 3.0.1 + htmlparser2: 8.0.1 + parse5: 7.0.0 + parse5-htmlparser2-tree-adapter: 7.0.0 tslib: 2.4.0 dev: false @@ -7026,7 +9048,10 @@ packages: color-name: 1.1.4 /color-name/1.1.3: - resolution: { integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= } + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } /color-name/1.1.4: resolution: @@ -7294,6 +9319,24 @@ packages: webpack: 5.72.0 dev: false + /copy-webpack-plugin/11.0.0_webpack@5.73.0: + resolution: + { + integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==, + } + engines: { node: ">= 14.15.0" } + peerDependencies: + webpack: ^5.1.0 + dependencies: + fast-glob: 3.2.11 + glob-parent: 6.0.2 + globby: 13.1.2 + normalize-path: 3.0.0 + schema-utils: 4.0.0 + serialize-javascript: 6.0.0 + webpack: 5.73.0 + dev: false + /core-js-compat/3.22.4: resolution: { @@ -7320,6 +9363,14 @@ packages: requiresBuild: true dev: false + /core-js/3.23.2: + resolution: + { + integrity: sha512-ELJOWxNrJfOH/WK4VJ3Qd+fOqZuOuDNDJz0xG6Bt4mGg2eO/UT9CljCrbqDGovjLKUrGajEEBcoTOc0w+yBYeQ==, + } + requiresBuild: true + dev: false + /core-util-is/1.0.3: resolution: { @@ -7435,6 +9486,18 @@ packages: postcss: 8.4.13 dev: false + /css-declaration-sorter/6.3.0_postcss@8.4.14: + resolution: + { + integrity: sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==, + } + engines: { node: ^10 || ^12 || >=14 } + peerDependencies: + postcss: ^8.0.9 + dependencies: + postcss: 8.4.14 + dev: false + /css-loader/6.7.1_webpack@5.72.0: resolution: { @@ -7455,6 +9518,26 @@ packages: webpack: 5.72.0 dev: false + /css-loader/6.7.1_webpack@5.73.0: + resolution: + { + integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==, + } + engines: { node: ">= 12.13.0" } + peerDependencies: + webpack: ^5.0.0 + dependencies: + icss-utils: 5.1.0_postcss@8.4.13 + postcss: 8.4.13 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.13 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.13 + postcss-modules-scope: 3.0.0_postcss@8.4.13 + postcss-modules-values: 4.0.0_postcss@8.4.13 + postcss-value-parser: 4.2.0 + semver: 7.3.7 + webpack: 5.73.0 + dev: false + /css-minimizer-webpack-plugin/3.4.1_tejugib4y3rw5hvgnfmxavjvsu: resolution: { @@ -7487,8 +9570,43 @@ packages: webpack: 5.72.0 dev: false + /css-minimizer-webpack-plugin/4.0.0_ym7haxui4mhsv4z74sxfalk3f4: + resolution: + { + integrity: sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA==, + } + engines: { node: ">= 14.15.0" } + peerDependencies: + "@parcel/css": "*" + clean-css: "*" + csso: "*" + esbuild: "*" + webpack: ^5.0.0 + peerDependenciesMeta: + "@parcel/css": + optional: true + clean-css: + optional: true + csso: + optional: true + esbuild: + optional: true + dependencies: + clean-css: 5.3.0 + cssnano: 5.1.12_postcss@8.4.14 + jest-worker: 27.5.1 + postcss: 8.4.14 + schema-utils: 4.0.0 + serialize-javascript: 6.0.0 + source-map: 0.6.1 + webpack: 5.73.0 + dev: false + /css-select/1.2.0: - resolution: { integrity: sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= } + resolution: + { + integrity: sha512-dUQOBoqdR7QwV90WysXPLXG5LO7nhYBgiWVfxF80DKPF8zx1t/pUd2FYy73emg3zrjtM6dzmYgbHKfV2rxiHQA==, + } dependencies: boolbase: 1.0.0 css-what: 2.1.3 @@ -7509,6 +9627,19 @@ packages: nth-check: 2.0.1 dev: false + /css-select/5.1.0: + resolution: + { + integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==, + } + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 5.0.3 + domutils: 3.0.1 + nth-check: 2.0.1 + dev: false + /css-tree/1.1.3: resolution: { @@ -7562,6 +9693,65 @@ packages: postcss-zindex: 5.1.0_postcss@8.4.13 dev: false + /cssnano-preset-advanced/5.3.8_postcss@8.4.14: + resolution: + { + integrity: sha512-xUlLLnEB1LjpEik+zgRNlk8Y/koBPPtONZjp7JKbXigeAmCrFvq9H0pXW5jJV45bQWAlmJ0sKy+IMr0XxLYQZg==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + autoprefixer: 10.4.7_postcss@8.4.14 + cssnano-preset-default: 5.2.12_postcss@8.4.14 + postcss: 8.4.14 + postcss-discard-unused: 5.1.0_postcss@8.4.14 + postcss-merge-idents: 5.1.1_postcss@8.4.14 + postcss-reduce-idents: 5.2.0_postcss@8.4.14 + postcss-zindex: 5.1.0_postcss@8.4.14 + dev: false + + /cssnano-preset-default/5.2.12_postcss@8.4.14: + resolution: + { + integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + css-declaration-sorter: 6.3.0_postcss@8.4.14 + cssnano-utils: 3.1.0_postcss@8.4.14 + postcss: 8.4.14 + postcss-calc: 8.2.4_postcss@8.4.14 + postcss-colormin: 5.3.0_postcss@8.4.14 + postcss-convert-values: 5.1.2_postcss@8.4.14 + postcss-discard-comments: 5.1.2_postcss@8.4.14 + postcss-discard-duplicates: 5.1.0_postcss@8.4.14 + postcss-discard-empty: 5.1.1_postcss@8.4.14 + postcss-discard-overridden: 5.1.0_postcss@8.4.14 + postcss-merge-longhand: 5.1.6_postcss@8.4.14 + postcss-merge-rules: 5.1.2_postcss@8.4.14 + postcss-minify-font-values: 5.1.0_postcss@8.4.14 + postcss-minify-gradients: 5.1.1_postcss@8.4.14 + postcss-minify-params: 5.1.3_postcss@8.4.14 + postcss-minify-selectors: 5.2.1_postcss@8.4.14 + postcss-normalize-charset: 5.1.0_postcss@8.4.14 + postcss-normalize-display-values: 5.1.0_postcss@8.4.14 + postcss-normalize-positions: 5.1.1_postcss@8.4.14 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.14 + postcss-normalize-string: 5.1.0_postcss@8.4.14 + postcss-normalize-timing-functions: 5.1.0_postcss@8.4.14 + postcss-normalize-unicode: 5.1.0_postcss@8.4.14 + postcss-normalize-url: 5.1.0_postcss@8.4.14 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.14 + postcss-ordered-values: 5.1.3_postcss@8.4.14 + postcss-reduce-initial: 5.1.0_postcss@8.4.14 + postcss-reduce-transforms: 5.1.0_postcss@8.4.14 + postcss-svgo: 5.1.0_postcss@8.4.14 + postcss-unique-selectors: 5.1.1_postcss@8.4.14 + dev: false + /cssnano-preset-default/5.2.7_postcss@8.4.13: resolution: { @@ -7615,6 +9805,33 @@ packages: postcss: 8.4.13 dev: false + /cssnano-utils/3.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + dev: false + + /cssnano/5.1.12_postcss@8.4.14: + resolution: + { + integrity: sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-preset-default: 5.2.12_postcss@8.4.14 + lilconfig: 2.0.5 + postcss: 8.4.14 + yaml: 1.10.2 + dev: false + /cssnano/5.1.7_postcss@8.4.13: resolution: { @@ -7878,6 +10095,23 @@ packages: slash: 3.0.0 dev: false + /del/6.1.1: + resolution: + { + integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==, + } + engines: { node: ">=10" } + dependencies: + globby: 11.1.0 + graceful-fs: 4.2.10 + is-glob: 4.0.3 + is-path-cwd: 2.2.0 + is-path-inside: 3.0.3 + p-map: 4.0.0 + rimraf: 3.0.2 + slash: 3.0.0 + dev: false + /depd/1.1.2: resolution: { integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= } engines: { node: ">= 0.6" } @@ -8082,6 +10316,17 @@ packages: entities: 2.2.0 dev: false + /dom-serializer/2.0.0: + resolution: + { + integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, + } + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.3.0 + dev: false + /domelementtype/1.3.1: resolution: { @@ -8115,8 +10360,21 @@ packages: domelementtype: 2.3.0 dev: false + /domhandler/5.0.3: + resolution: + { + integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, + } + engines: { node: ">= 4" } + dependencies: + domelementtype: 2.3.0 + dev: false + /domutils/1.5.1: - resolution: { integrity: sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= } + resolution: + { + integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==, + } dependencies: dom-serializer: 0.1.1 domelementtype: 1.3.1 @@ -8143,6 +10401,17 @@ packages: domhandler: 4.3.1 dev: false + /domutils/3.0.1: + resolution: + { + integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==, + } + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + dev: false + /dot-case/3.0.4: resolution: { @@ -8290,6 +10559,14 @@ packages: engines: { node: ">=0.12" } dev: false + /entities/4.3.0: + resolution: + { + integrity: sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==, + } + engines: { node: ">=0.12" } + dev: false + /error-ex/1.3.2: resolution: { @@ -8646,7 +10923,10 @@ packages: dev: false /escape-string-regexp/1.0.5: - resolution: { integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= } + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } engines: { node: ">=0.8.0" } /escape-string-regexp/2.0.0: @@ -9054,7 +11334,10 @@ packages: dev: false /extend-shallow/2.0.1: - resolution: { integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= } + resolution: + { + integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, + } engines: { node: ">=0.10.0" } dependencies: is-extendable: 0.1.1 @@ -9248,6 +11531,20 @@ packages: webpack: 5.72.0 dev: false + /file-loader/6.2.0_webpack@5.73.0: + resolution: + { + integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==, + } + engines: { node: ">= 10.13.0" } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + loader-utils: 2.0.2 + schema-utils: 3.1.1 + webpack: 5.73.0 + dev: false + /filesize/8.0.7: resolution: { @@ -9403,6 +11700,19 @@ packages: - encoding dev: false + /follow-redirects/1.14.9: + resolution: + { + integrity: sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==, + } + engines: { node: ">=4.0" } + peerDependencies: + debug: "*" + peerDependenciesMeta: + debug: + optional: true + dev: false + /follow-redirects/1.14.9_debug@4.3.2: resolution: { @@ -9452,6 +11762,40 @@ packages: webpack: 5.72.0 dev: false + /fork-ts-checker-webpack-plugin/6.5.2_dydffymiyrgjbmyedhp7lreziy: + resolution: + { + integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==, + } + 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.11 + 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.4.1 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.3.7 + tapable: 1.1.3 + typescript: 4.6.4 + webpack: 5.73.0 + dev: false + /forwarded/0.2.0: resolution: { @@ -9781,23 +12125,37 @@ packages: { integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, } - engines: { node: ">=10" } + engines: { node: ">=10" } + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.11 + ignore: 5.2.0 + merge2: 1.4.1 + slash: 3.0.0 + + /globby/12.2.0: + resolution: + { + integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: - array-union: 2.1.0 + array-union: 3.0.1 dir-glob: 3.0.1 fast-glob: 3.2.11 ignore: 5.2.0 merge2: 1.4.1 - slash: 3.0.0 + slash: 4.0.0 + dev: false - /globby/12.2.0: + /globby/13.1.2: resolution: { - integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==, + integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==, } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: - array-union: 3.0.1 dir-glob: 3.0.1 fast-glob: 3.2.11 ignore: 5.2.0 @@ -9893,7 +12251,10 @@ packages: dev: true /has-flag/3.0.0: - resolution: { integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0= } + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } engines: { node: ">=4" } /has-flag/4.0.0: @@ -10189,6 +12550,23 @@ packages: webpack: 5.72.0 dev: false + /html-webpack-plugin/5.5.0_webpack@5.73.0: + resolution: + { + integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==, + } + engines: { node: ">=10.13.0" } + peerDependencies: + webpack: ^5.20.0 + dependencies: + "@types/html-minifier-terser": 6.1.0 + html-minifier-terser: 6.1.0 + lodash: 4.17.21 + pretty-error: 4.0.0 + tapable: 2.2.1 + webpack: 5.73.0 + dev: false + /htmlparser2/3.10.1: resolution: { @@ -10215,6 +12593,18 @@ packages: entities: 2.2.0 dev: false + /htmlparser2/8.0.1: + resolution: + { + integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==, + } + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.0.1 + entities: 4.3.0 + dev: false + /http-cache-semantics/4.1.0: resolution: { @@ -10287,7 +12677,7 @@ packages: engines: { node: ">=8.0.0" } dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.14.9_debug@4.3.2 + follow-redirects: 1.14.9 requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -10471,7 +12861,10 @@ packages: wrappy: 1.0.2 /inherits/2.0.3: - resolution: { integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= } + resolution: + { + integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==, + } dev: false /inherits/2.0.4: @@ -10671,7 +13064,10 @@ packages: hasBin: true /is-extendable/0.1.1: - resolution: { integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= } + resolution: + { + integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, + } engines: { node: ">=0.10.0" } dev: false @@ -10755,7 +13151,10 @@ packages: engines: { node: ">=0.12.0" } /is-obj/1.0.1: - resolution: { integrity: sha1-PkcprB9f3gJc19g6iW2rn09n2w8= } + resolution: + { + integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==, + } engines: { node: ">=0.10.0" } dev: false @@ -10825,7 +13224,10 @@ packages: dev: true /is-regexp/1.0.0: - resolution: { integrity: sha1-/S2INUXEa6xaYz57mgnof6LLUGk= } + resolution: + { + integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==, + } engines: { node: ">=0.10.0" } dev: false @@ -11672,7 +14074,10 @@ packages: argparse: 2.0.1 /jsesc/0.5.0: - resolution: { integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= } + resolution: + { + integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, + } hasBin: true dev: false @@ -11973,7 +14378,10 @@ packages: dev: false /lodash.memoize/4.1.2: - resolution: { integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= } + resolution: + { + integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, + } dev: false /lodash.merge/4.6.2: @@ -12007,7 +14415,10 @@ packages: dev: true /lodash.uniq/4.5.0: - resolution: { integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= } + resolution: + { + integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, + } dev: false /lodash/4.17.21: @@ -12178,7 +14589,10 @@ packages: dev: false /mdurl/1.0.1: - resolution: { integrity: sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= } + resolution: + { + integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==, + } dev: false /media-typer/0.3.0: @@ -12353,7 +14767,7 @@ packages: prop-types: ^15.0.0 react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - "@babel/runtime": 7.17.9 + "@babel/runtime": 7.18.3 prop-types: 15.8.1 react: 17.0.2 tiny-warning: 1.0.3 @@ -12372,6 +14786,19 @@ packages: webpack: 5.72.0 dev: false + /mini-css-extract-plugin/2.6.0_webpack@5.73.0: + resolution: + { + integrity: sha512-ndG8nxCEnAemsg4FSgS+yNyHKgkTB4nPKqCOgh65j3/30qqC5RaSQQXMm++Y6sb6E1zRSxPkztj9fqxhS1Eo6w==, + } + engines: { node: ">= 12.13.0" } + peerDependencies: + webpack: ^5.0.0 + dependencies: + schema-utils: 4.0.0 + webpack: 5.73.0 + dev: false + /minimalistic-assert/1.0.1: resolution: { @@ -12497,6 +14924,15 @@ packages: hasBin: true dev: false + /nanoid/3.3.4: + resolution: + { + integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + hasBin: true + dev: false + /natural-compare/1.4.0: resolution: { integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= } dev: true @@ -12991,13 +15427,14 @@ packages: } dev: false - /parse5-htmlparser2-tree-adapter/6.0.1: + /parse5-htmlparser2-tree-adapter/7.0.0: resolution: { - integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==, + integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==, } dependencies: - parse5: 6.0.1 + domhandler: 5.0.3 + parse5: 7.0.0 dev: false /parse5/5.1.1: @@ -13014,6 +15451,15 @@ packages: } dev: false + /parse5/7.0.0: + resolution: + { + integrity: sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==, + } + dependencies: + entities: 4.3.0 + dev: false + /parseurl/1.3.3: resolution: { @@ -13258,6 +15704,19 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-calc/8.2.4_postcss@8.4.14: + resolution: + { + integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==, + } + peerDependencies: + postcss: ^8.2.2 + dependencies: + postcss: 8.4.14 + postcss-selector-parser: 6.0.10 + postcss-value-parser: 4.2.0 + dev: false + /postcss-colormin/5.3.0_postcss@8.4.13: resolution: { @@ -13274,6 +15733,22 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-colormin/5.3.0_postcss@8.4.14: + resolution: + { + integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.20.3 + caniuse-api: 3.0.0 + colord: 2.9.2 + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-convert-values/5.1.0_postcss@8.4.13: resolution: { @@ -13287,6 +15762,20 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-convert-values/5.1.2_postcss@8.4.14: + resolution: + { + integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.20.3 + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-discard-comments/5.1.1_postcss@8.4.13: resolution: { @@ -13299,6 +15788,18 @@ packages: postcss: 8.4.13 dev: false + /postcss-discard-comments/5.1.2_postcss@8.4.14: + resolution: + { + integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + dev: false + /postcss-discard-duplicates/5.1.0_postcss@8.4.13: resolution: { @@ -13311,6 +15812,18 @@ packages: postcss: 8.4.13 dev: false + /postcss-discard-duplicates/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + dev: false + /postcss-discard-empty/5.1.1_postcss@8.4.13: resolution: { @@ -13323,6 +15836,18 @@ packages: postcss: 8.4.13 dev: false + /postcss-discard-empty/5.1.1_postcss@8.4.14: + resolution: + { + integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + dev: false + /postcss-discard-overridden/5.1.0_postcss@8.4.13: resolution: { @@ -13335,6 +15860,18 @@ packages: postcss: 8.4.13 dev: false + /postcss-discard-overridden/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + dev: false + /postcss-discard-unused/5.1.0_postcss@8.4.13: resolution: { @@ -13348,6 +15885,19 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /postcss-discard-unused/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-selector-parser: 6.0.10 + dev: false + /postcss-js/4.0.0_postcss@8.4.13: resolution: { @@ -13398,6 +15948,23 @@ packages: webpack: 5.72.0 dev: false + /postcss-loader/7.0.0_mepnsno3xmng6eyses4tepu7bu: + resolution: + { + integrity: sha512-IDyttebFzTSY6DI24KuHUcBjbAev1i+RyICoPEWcAstZsj03r533uMXtDn506l6/wlsRYiS5XBdx7TpccCsyUg==, + } + engines: { node: ">= 14.15.0" } + peerDependencies: + postcss: ^7.0.0 || ^8.0.1 + webpack: ^5.0.0 + dependencies: + cosmiconfig: 7.0.1 + klona: 2.0.5 + postcss: 8.4.14 + semver: 7.3.7 + webpack: 5.73.0 + dev: false + /postcss-merge-idents/5.1.1_postcss@8.4.13: resolution: { @@ -13412,6 +15979,20 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-merge-idents/5.1.1_postcss@8.4.14: + resolution: + { + integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 3.1.0_postcss@8.4.14 + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-merge-longhand/5.1.4_postcss@8.4.13: resolution: { @@ -13426,6 +16007,20 @@ packages: stylehacks: 5.1.0_postcss@8.4.13 dev: false + /postcss-merge-longhand/5.1.6_postcss@8.4.14: + resolution: + { + integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + stylehacks: 5.1.0_postcss@8.4.14 + dev: false + /postcss-merge-rules/5.1.1_postcss@8.4.13: resolution: { @@ -13442,46 +16037,105 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /postcss-merge-rules/5.1.2_postcss@8.4.14: + resolution: + { + integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.20.3 + caniuse-api: 3.0.0 + cssnano-utils: 3.1.0_postcss@8.4.14 + postcss: 8.4.14 + postcss-selector-parser: 6.0.10 + dev: false + /postcss-minify-font-values/5.1.0_postcss@8.4.13: resolution: { - integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==, + integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.13 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-minify-font-values/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-minify-gradients/5.1.1_postcss@8.4.13: + resolution: + { + integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + colord: 2.9.2 + cssnano-utils: 3.1.0_postcss@8.4.13 + postcss: 8.4.13 + postcss-value-parser: 4.2.0 + dev: false + + /postcss-minify-gradients/5.1.1_postcss@8.4.14: + resolution: + { + integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==, } engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.13 + colord: 2.9.2 + cssnano-utils: 3.1.0_postcss@8.4.14 + postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-gradients/5.1.1_postcss@8.4.13: + /postcss-minify-params/5.1.2_postcss@8.4.13: resolution: { - integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==, + integrity: sha512-aEP+p71S/urY48HWaRHasyx4WHQJyOYaKpQ6eXl8k0kxg66Wt/30VR6/woh8THgcpRbonJD5IeD+CzNhPi1L8g==, } engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 dependencies: - colord: 2.9.2 + browserslist: 4.20.3 cssnano-utils: 3.1.0_postcss@8.4.13 postcss: 8.4.13 postcss-value-parser: 4.2.0 dev: false - /postcss-minify-params/5.1.2_postcss@8.4.13: + /postcss-minify-params/5.1.3_postcss@8.4.14: resolution: { - integrity: sha512-aEP+p71S/urY48HWaRHasyx4WHQJyOYaKpQ6eXl8k0kxg66Wt/30VR6/woh8THgcpRbonJD5IeD+CzNhPi1L8g==, + integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==, } engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 dependencies: browserslist: 4.20.3 - cssnano-utils: 3.1.0_postcss@8.4.13 - postcss: 8.4.13 + cssnano-utils: 3.1.0_postcss@8.4.14 + postcss: 8.4.14 postcss-value-parser: 4.2.0 dev: false @@ -13498,6 +16152,19 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /postcss-minify-selectors/5.2.1_postcss@8.4.14: + resolution: + { + integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-selector-parser: 6.0.10 + dev: false + /postcss-modules-extract-imports/3.0.0_postcss@8.4.13: resolution: { @@ -13576,6 +16243,18 @@ packages: postcss: 8.4.13 dev: false + /postcss-normalize-charset/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + dev: false + /postcss-normalize-display-values/5.1.0_postcss@8.4.13: resolution: { @@ -13589,6 +16268,19 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-normalize-display-values/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-normalize-positions/5.1.0_postcss@8.4.13: resolution: { @@ -13602,6 +16294,19 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-normalize-positions/5.1.1_postcss@8.4.14: + resolution: + { + integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-normalize-repeat-style/5.1.0_postcss@8.4.13: resolution: { @@ -13615,6 +16320,19 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-normalize-repeat-style/5.1.1_postcss@8.4.14: + resolution: + { + integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-normalize-string/5.1.0_postcss@8.4.13: resolution: { @@ -13628,6 +16346,19 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-normalize-string/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-normalize-timing-functions/5.1.0_postcss@8.4.13: resolution: { @@ -13641,6 +16372,19 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-normalize-timing-functions/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-normalize-unicode/5.1.0_postcss@8.4.13: resolution: { @@ -13655,6 +16399,20 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-normalize-unicode/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.20.3 + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-normalize-url/5.1.0_postcss@8.4.13: resolution: { @@ -13669,6 +16427,20 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-normalize-url/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + normalize-url: 6.1.0 + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-normalize-whitespace/5.1.1_postcss@8.4.13: resolution: { @@ -13682,6 +16454,19 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-normalize-whitespace/5.1.1_postcss@8.4.14: + resolution: + { + integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-ordered-values/5.1.1_postcss@8.4.13: resolution: { @@ -13696,6 +16481,20 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-ordered-values/5.1.3_postcss@8.4.14: + resolution: + { + integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 3.1.0_postcss@8.4.14 + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-reduce-idents/5.2.0_postcss@8.4.13: resolution: { @@ -13709,6 +16508,19 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-reduce-idents/5.2.0_postcss@8.4.14: + resolution: + { + integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-reduce-initial/5.1.0_postcss@8.4.13: resolution: { @@ -13723,6 +16535,20 @@ packages: postcss: 8.4.13 dev: false + /postcss-reduce-initial/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.20.3 + caniuse-api: 3.0.0 + postcss: 8.4.14 + dev: false + /postcss-reduce-transforms/5.1.0_postcss@8.4.13: resolution: { @@ -13736,6 +16562,19 @@ packages: postcss-value-parser: 4.2.0 dev: false + /postcss-reduce-transforms/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + dev: false + /postcss-selector-parser/6.0.10: resolution: { @@ -13760,6 +16599,19 @@ packages: sort-css-media-queries: 2.0.4 dev: false + /postcss-sort-media-queries/4.2.1_postcss@8.4.14: + resolution: + { + integrity: sha512-9VYekQalFZ3sdgcTjXMa0dDjsfBVHXlraYJEMiOJ/2iMmI2JGCMavP16z3kWOaRu8NSaJCTgVpB/IVpH5yT9YQ==, + } + engines: { node: ">=10.0.0" } + peerDependencies: + postcss: ^8.4.4 + dependencies: + postcss: 8.4.14 + sort-css-media-queries: 2.0.4 + dev: false + /postcss-svgo/5.1.0_postcss@8.4.13: resolution: { @@ -13774,6 +16626,20 @@ packages: svgo: 2.8.0 dev: false + /postcss-svgo/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-value-parser: 4.2.0 + svgo: 2.8.0 + dev: false + /postcss-unique-selectors/5.1.1_postcss@8.4.13: resolution: { @@ -13787,6 +16653,19 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /postcss-unique-selectors/5.1.1_postcss@8.4.14: + resolution: + { + integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + postcss-selector-parser: 6.0.10 + dev: false + /postcss-value-parser/4.2.0: resolution: { @@ -13806,6 +16685,18 @@ packages: postcss: 8.4.13 dev: false + /postcss-zindex/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.14 + dev: false + /postcss/8.4.13: resolution: { @@ -13818,6 +16709,18 @@ packages: source-map-js: 1.0.2 dev: false + /postcss/8.4.14: + resolution: + { + integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, + } + engines: { node: ^10 || ^12 || >=14 } + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: false + /preferred-pm/3.0.3: resolution: { @@ -13933,7 +16836,7 @@ packages: engines: { node: ">=4" } dev: false - /prism-react-renderer/1.3.1_react@17.0.2: + /prism-react-renderer/1.3.1_react@18.2.0: resolution: { integrity: sha512-xUeDMEz074d0zc5y6rxiMp/dlC7C+5IDDlaEUlcBOFE2wddz7hz5PNupb087mPwTt7T9BrFmewObfCBuf/LKwQ==, @@ -13941,18 +16844,18 @@ packages: peerDependencies: react: ">=0.14.9" dependencies: - react: 17.0.2 + react: 18.2.0 dev: false - /prism-react-renderer/1.3.1_react@18.2.0: + /prism-react-renderer/1.3.3_react@17.0.2: resolution: { - integrity: sha512-xUeDMEz074d0zc5y6rxiMp/dlC7C+5IDDlaEUlcBOFE2wddz7hz5PNupb087mPwTt7T9BrFmewObfCBuf/LKwQ==, + integrity: sha512-Viur/7tBTCH2HmYzwCHmt2rEFn+rdIWNIINXyg0StiISbDiIhHKhrFuEK8eMkKgvsIYSjgGqy/hNyucHp6FpoQ==, } peerDependencies: react: ">=0.14.9" dependencies: - react: 18.2.0 + react: 17.0.2 dev: false /prismjs/1.28.0: @@ -14207,7 +17110,46 @@ packages: pure-color: 1.3.0 dev: false - /react-dev-utils/12.0.1_dgip6vjrhmffcc4ihrseicj6om: + /react-dev-utils/12.0.1_dgip6vjrhmffcc4ihrseicj6om: + resolution: + { + integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==, + } + engines: { node: ">=14" } + dependencies: + "@babel/code-frame": 7.16.7 + address: 1.2.0 + browserslist: 4.20.3 + chalk: 4.1.2 + cross-spawn: 7.0.3 + detect-port-alt: 1.1.6 + escape-string-regexp: 4.0.0 + filesize: 8.0.7 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.2_dgip6vjrhmffcc4ihrseicj6om + global-modules: 2.0.0 + globby: 11.1.0 + gzip-size: 6.0.0 + immer: 9.0.12 + is-root: 2.1.0 + loader-utils: 3.2.0 + open: 8.4.0 + pkg-up: 3.1.0 + prompts: 2.4.2 + react-error-overlay: 6.0.11 + recursive-readdir: 2.2.2 + shell-quote: 1.7.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - eslint + - supports-color + - typescript + - vue-template-compiler + - webpack + dev: false + + /react-dev-utils/12.0.1_dydffymiyrgjbmyedhp7lreziy: resolution: { integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==, @@ -14223,7 +17165,7 @@ packages: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_dgip6vjrhmffcc4ihrseicj6om + fork-ts-checker-webpack-plugin: 6.5.2_dydffymiyrgjbmyedhp7lreziy global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -14365,6 +17307,21 @@ packages: webpack: 5.72.0 dev: false + /react-loadable-ssr-addon-v5-slorber/1.0.1_pobh4rnr4unizsdzh3gmmsgqtu: + resolution: + { + integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==, + } + engines: { node: ">=10.13.0" } + peerDependencies: + react-loadable: "*" + webpack: ">=4.41.1 || 5.x" + dependencies: + "@babel/runtime": 7.17.9 + react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2 + webpack: 5.73.0 + dev: false + /react-refresh/0.13.0: resolution: { @@ -14387,6 +17344,20 @@ packages: react-router: 5.3.1_react@17.0.2 dev: false + /react-router-config/5.1.1_oyuskl3t7voyrff2xstzuy4hqu: + resolution: + { + integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==, + } + peerDependencies: + react: ">=15" + react-router: ">=5" + dependencies: + "@babel/runtime": 7.17.9 + react: 17.0.2 + react-router: 5.3.3_react@17.0.2 + dev: false + /react-router-dom/5.3.1_react@17.0.2: resolution: { @@ -14405,6 +17376,24 @@ packages: tiny-warning: 1.0.3 dev: false + /react-router-dom/5.3.3_react@17.0.2: + resolution: + { + integrity: sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng==, + } + peerDependencies: + react: ">=15" + dependencies: + "@babel/runtime": 7.18.3 + history: 4.10.1 + loose-envify: 1.4.0 + prop-types: 15.8.1 + react: 17.0.2 + react-router: 5.3.3_react@17.0.2 + tiny-invariant: 1.2.0 + tiny-warning: 1.0.3 + dev: false + /react-router/5.3.1_react@17.0.2: resolution: { @@ -14426,6 +17415,27 @@ packages: tiny-warning: 1.0.3 dev: false + /react-router/5.3.3_react@17.0.2: + resolution: + { + integrity: sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w==, + } + peerDependencies: + react: ">=15" + dependencies: + "@babel/runtime": 7.18.3 + history: 4.10.1 + hoist-non-react-statics: 3.3.2 + loose-envify: 1.4.0 + mini-create-react-context: 0.4.1_at7mkepldmzoo6silmqc5bca74 + path-to-regexp: 1.8.0 + prop-types: 15.8.1 + react: 17.0.2 + react-is: 16.13.1 + tiny-invariant: 1.2.0 + tiny-warning: 1.0.3 + dev: false + /react-textarea-autosize/8.3.3_zdsfwtvwq54q3oqxwtq4jnbhh4: resolution: { @@ -14435,7 +17445,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 dependencies: - "@babel/runtime": 7.17.9 + "@babel/runtime": 7.18.3 react: 17.0.2 use-composed-ref: 1.3.0_react@17.0.2 use-latest: 1.2.1_zdsfwtvwq54q3oqxwtq4jnbhh4 @@ -14612,7 +17622,7 @@ packages: integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==, } dependencies: - "@babel/runtime": 7.17.9 + "@babel/runtime": 7.18.3 dev: false /regexp.prototype.flags/1.4.3: @@ -14797,7 +17807,10 @@ packages: dev: false /repeat-string/1.6.1: - resolution: { integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc= } + resolution: + { + integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, + } engines: { node: ">=0.10" } dev: false @@ -14978,7 +17991,7 @@ packages: dependencies: find-up: 5.0.0 picocolors: 1.0.0 - postcss: 8.4.13 + postcss: 8.4.14 strip-json-comments: 3.1.1 dev: false @@ -15637,7 +18650,10 @@ packages: dev: true /sprintf-js/1.0.3: - resolution: { integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= } + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, + } /stable/0.1.8: resolution: @@ -15840,7 +18856,10 @@ packages: dev: false /strip-bom-string/1.0.0: - resolution: { integrity: sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI= } + resolution: + { + integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==, + } engines: { node: ">=0.10.0" } dev: false @@ -15908,6 +18927,20 @@ packages: postcss-selector-parser: 6.0.10 dev: false + /stylehacks/5.1.0_postcss@8.4.14: + resolution: + { + integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==, + } + engines: { node: ^10 || ^12 || >=14.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.20.3 + postcss: 8.4.14 + postcss-selector-parser: 6.0.10 + dev: false + /supports-color/5.5.0: resolution: { @@ -16072,6 +19105,33 @@ packages: webpack: 5.72.0 dev: false + /terser-webpack-plugin/5.3.1_webpack@5.73.0: + resolution: + { + integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==, + } + 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.13.1 + webpack: 5.73.0 + dev: false + /terser/5.13.1: resolution: { @@ -16167,7 +19227,10 @@ packages: dev: true /to-fast-properties/2.0.0: - resolution: { integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= } + resolution: + { + integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, + } engines: { node: ">=4" } /to-readable-stream/1.0.0: @@ -16228,7 +19291,10 @@ packages: dev: false /trim/0.0.1: - resolution: { integrity: sha1-WFhUf2spB1fulczMZm+1AITEYN0= } + resolution: + { + integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==, + } dev: false /trough/1.0.5: @@ -16858,6 +19924,26 @@ packages: webpack: 5.72.0 dev: false + /url-loader/4.1.1_ljnyroaqobwke7fusd7ro2cgzm: + resolution: + { + integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==, + } + engines: { node: ">= 10.13.0" } + peerDependencies: + file-loader: "*" + webpack: ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + file-loader: + optional: true + dependencies: + file-loader: 6.2.0_webpack@5.73.0 + loader-utils: 2.0.2 + mime-types: 2.1.35 + schema-utils: 3.1.1 + webpack: 5.73.0 + dev: false + /url-parse-lax/3.0.0: resolution: { integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww= } engines: { node: ">=4" } @@ -17190,6 +20276,23 @@ packages: webpack: 5.72.0 dev: false + /webpack-dev-middleware/5.3.1_webpack@5.73.0: + resolution: + { + integrity: sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==, + } + engines: { node: ">= 12.13.0" } + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + colorette: 2.0.16 + memfs: 3.4.1 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 4.0.0 + webpack: 5.73.0 + dev: false + /webpack-dev-server/4.8.1_webpack@5.72.0: resolution: { @@ -17241,6 +20344,57 @@ packages: - utf-8-validate dev: false + /webpack-dev-server/4.9.2_webpack@5.73.0: + resolution: + { + integrity: sha512-H95Ns95dP24ZsEzO6G9iT+PNw4Q7ltll1GfJHV4fKphuHWgKFzGHWi4alTlTnpk1SPPk41X+l2RB7rLfIhnB9Q==, + } + engines: { node: ">= 12.13.0" } + hasBin: true + peerDependencies: + webpack: ^4.37.0 || ^5.0.0 + webpack-cli: "*" + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + "@types/bonjour": 3.5.10 + "@types/connect-history-api-fallback": 1.3.5 + "@types/express": 4.17.13 + "@types/serve-index": 1.9.1 + "@types/serve-static": 1.13.10 + "@types/sockjs": 0.3.33 + "@types/ws": 8.5.3 + ansi-html-community: 0.0.8 + bonjour-service: 1.0.12 + chokidar: 3.5.3 + colorette: 2.0.16 + compression: 1.7.4 + connect-history-api-fallback: 1.6.0 + default-gateway: 6.0.3 + express: 4.18.1 + graceful-fs: 4.2.10 + html-entities: 2.3.3 + http-proxy-middleware: 2.0.6_@types+express@4.17.13 + ipaddr.js: 2.0.1 + open: 8.4.0 + p-retry: 4.6.2 + rimraf: 3.0.2 + schema-utils: 4.0.0 + selfsigned: 2.0.1 + serve-index: 1.9.1 + sockjs: 0.3.24 + spdy: 4.0.2 + webpack: 5.73.0 + webpack-dev-middleware: 5.3.1_webpack@5.73.0 + ws: 8.6.0 + transitivePeerDependencies: + - bufferutil + - debug + - supports-color + - utf-8-validate + dev: false + /webpack-merge/5.8.0: resolution: { @@ -17313,6 +20467,49 @@ packages: - uglify-js dev: false + /webpack/5.73.0: + resolution: + { + integrity: sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==, + } + engines: { node: ">=10.13.0" } + hasBin: true + peerDependencies: + webpack-cli: "*" + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + "@types/eslint-scope": 3.7.3 + "@types/estree": 0.0.51 + "@webassemblyjs/ast": 1.11.1 + "@webassemblyjs/wasm-edit": 1.11.1 + "@webassemblyjs/wasm-parser": 1.11.1 + acorn: 8.7.1 + acorn-import-assertions: 1.8.0_acorn@8.7.1 + browserslist: 4.20.3 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.9.3 + es-module-lexer: 0.9.3 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.10 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.1.1 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.1_webpack@5.73.0 + watchpack: 2.3.1 + webpack-sources: 3.2.3 + transitivePeerDependencies: + - "@swc/core" + - esbuild + - uglify-js + dev: false + /webpackbar/5.0.2_webpack@5.72.0: resolution: { @@ -17329,6 +20526,22 @@ packages: webpack: 5.72.0 dev: false + /webpackbar/5.0.2_webpack@5.73.0: + resolution: + { + integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==, + } + engines: { node: ">=12" } + peerDependencies: + webpack: 3 || 4 || 5 + dependencies: + chalk: 4.1.2 + consola: 2.15.3 + pretty-time: 1.1.0 + std-env: 3.1.1 + webpack: 5.73.0 + dev: false + /websocket-driver/0.7.4: resolution: {