diff --git a/.changeset/silver-dolphins-remember.md b/.changeset/silver-dolphins-remember.md
new file mode 100644
index 000000000..9b255a4ea
--- /dev/null
+++ b/.changeset/silver-dolphins-remember.md
@@ -0,0 +1,5 @@
+---
+"modular-scripts": major
+---
+
+Upgrade webpack implementation to use webpack 5 + associated loader / plugin dependencies.
diff --git a/package.json b/package.json
index 241e7d397..332e06d4a 100644
--- a/package.json
+++ b/package.json
@@ -99,6 +99,7 @@
},
"jest": {
"coveragePathIgnorePatterns": [
+ "/__fixtures__/",
"/node_modules/",
"/modular-site/",
"/modular-views.macro/"
diff --git a/packages/modular-scripts/package.json b/packages/modular-scripts/package.json
index ac2b35864..9c41ca4d2 100644
--- a/packages/modular-scripts/package.json
+++ b/packages/modular-scripts/package.json
@@ -41,7 +41,8 @@
"change-case": "4.1.2",
"commander": "9.2.0",
"cross-spawn": "7.0.3",
- "css-loader": "4.3.0",
+ "css-loader": "6.6.0",
+ "css-minimizer-webpack-plugin": "3.4.1",
"dedent": "0.7.0",
"detect-port-alt": "1.1.6",
"dotenv": "16.0.0",
@@ -56,12 +57,12 @@
"file-loader": "6.2.0",
"filesize": "8.0.3",
"find-up": "5.0.0",
- "fork-ts-checker-webpack-plugin": "4.1.6",
+ "fork-ts-checker-webpack-plugin": "6.5.0",
"fs-extra": "10.1.0",
"global-modules": "2.0.0",
"globby": "11.0.4",
"gzip-size": "6.0.0",
- "html-webpack-plugin": "4.5.2",
+ "html-webpack-plugin": "5.5.0",
"html-minifier-terser": "6.1.0",
"is-ci": "2.0.0",
"is-root": "2.1.0",
@@ -73,19 +74,18 @@
"jest-transform-stub": "2.0.0",
"jest-watch-typeahead": "0.6.5",
"js-yaml": "^4.1.0",
- "loader-utils": "2.0.0",
+ "loader-utils": "3.2.0",
"micromatch": "4.0.5",
"mime": "^3.0.0",
- "mini-css-extract-plugin": "0.11.3",
+ "mini-css-extract-plugin": "2.5.3",
"npm-packlist": "5.0.0",
"open": "8.3.0",
- "optimize-css-assets-webpack-plugin": "6.0.1",
"parse5": "6.0.1",
"pkg-up": "3.1.0",
- "pnp-webpack-plugin": "1.6.4",
+ "pnp-webpack-plugin": "1.7.0",
"postcss": "8.4.12",
"postcss-flexbugs-fixes": "4.2.1",
- "postcss-loader": "4.2.0",
+ "postcss-loader": "6.2.1",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "7.4.3",
"postcss-safe-parser": "5.0.2",
@@ -95,27 +95,27 @@
"react-refresh": "0.8.3",
"recursive-readdir": "2.2.2",
"resolve": "1.21.0",
- "resolve-url-loader": "5.0.0-beta.1",
+ "resolve-url-loader": "5.0.0",
"rimraf": "3.0.2",
"rollup": "2.70.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-postcss": "4.0.2",
- "sass-loader": "10.0.5",
+ "sass-loader": "12.6.0",
"semver": "7.3.7",
"semver-regex": "3.1.3",
"shell-quote": "1.7.3",
"source-map-support": "0.5.21",
"strip-ansi": "6.0.0",
- "style-loader": "1.3.0",
- "terser-webpack-plugin": "4.2.3",
+ "style-loader": "3.3.1",
+ "terser-webpack-plugin": "5.3.1",
"tmp": "^0.2.1",
"ts-jest": "26.5.6",
"ts-morph": "^14.0.0",
"update-notifier": "5.1.0",
"url-loader": "4.1.1",
- "webpack": "4.46.0",
+ "webpack": "5.69.1",
"webpack-dev-server": "4.8.1",
- "webpack-manifest-plugin": "2.2.0",
+ "webpack-manifest-plugin": "4.1.1",
"ws": "8.5.0"
},
"peerDependencies": {
diff --git a/packages/modular-scripts/react-dev-utils/WebpackDevServerUtils.js b/packages/modular-scripts/react-dev-utils/WebpackDevServerUtils.js
index db9e745ee..bb7e0cca7 100644
--- a/packages/modular-scripts/react-dev-utils/WebpackDevServerUtils.js
+++ b/packages/modular-scripts/react-dev-utils/WebpackDevServerUtils.js
@@ -13,7 +13,6 @@ const forkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const { clearConsole } = require('./logger');
const formatWebpackMessages = require('./formatWebpackMessages');
const getProcessForPort = require('./getProcessForPort');
-const typescriptFormatter = require('./typescriptFormatter');
const console = require('./logger');
const isInteractive = process.stdout.isTTY;
@@ -94,15 +93,7 @@ function printInstructions(appName, urls) {
console.log();
}
-function createCompiler({
- appName,
- config,
- devSocket,
- urls,
- useTypeScript,
- tscCompileOnError,
- webpack,
-}) {
+function createCompiler({ appName, config, urls, useTypeScript, webpack }) {
// "Compiler" is a low-level interface to webpack.
// It lets us listen to some events and provide our own custom messages.
let compiler;
@@ -129,28 +120,16 @@ function createCompiler({
let isFirstCompile = true;
let tsMessagesPromise;
- let tsMessagesResolver;
if (useTypeScript) {
- compiler.hooks.beforeCompile.tap('beforeCompile', () => {
- tsMessagesPromise = new Promise((resolve) => {
- tsMessagesResolver = (msgs) => resolve(msgs);
- });
- });
-
forkTsCheckerWebpackPlugin
.getCompilerHooks(compiler)
- .receive.tap('afterTypeScriptCheck', (diagnostics, lints) => {
- const allMsgs = [...diagnostics, ...lints];
- const format = (message) =>
- `${message.file}\n${typescriptFormatter(message, true)}`;
-
- tsMessagesResolver({
- errors: allMsgs.filter((msg) => msg.severity === 'error').map(format),
- warnings: allMsgs
- .filter((msg) => msg.severity === 'warning')
- .map(format),
- });
+ .waiting.tap('awaitingTypeScriptCheck', () => {
+ console.log(
+ chalk.yellow(
+ 'Files successfully emitted, waiting for typecheck results...',
+ ),
+ );
});
}
@@ -172,48 +151,6 @@ function createCompiler({
errors: true,
});
- if (useTypeScript && statsData.errors.length === 0) {
- const delayedMsg = setTimeout(() => {
- console.log(
- chalk.yellow(
- 'Files successfully emitted, waiting for typecheck results...',
- ),
- );
- }, 100);
-
- const messages = await tsMessagesPromise;
- clearTimeout(delayedMsg);
- if (tscCompileOnError) {
- statsData.warnings.push(...messages.errors);
- } else {
- statsData.errors.push(...messages.errors);
- }
- statsData.warnings.push(...messages.warnings);
-
- // Push errors and warnings into compilation result
- // to show them after page refresh triggered by user.
- if (tscCompileOnError) {
- stats.compilation.warnings.push(...messages.errors);
- } else {
- stats.compilation.errors.push(...messages.errors);
- }
- stats.compilation.warnings.push(...messages.warnings);
-
- if (messages.errors.length > 0) {
- if (tscCompileOnError) {
- devSocket.warnings(messages.errors);
- } else {
- devSocket.errors(messages.errors);
- }
- } else if (messages.warnings.length > 0) {
- devSocket.warnings(messages.warnings);
- }
-
- if (isInteractive) {
- clearConsole();
- }
- }
-
const messages = formatWebpackMessages(statsData);
const isSuccessful = !messages.errors.length && !messages.warnings.length;
if (isSuccessful) {
@@ -371,7 +308,7 @@ function prepareProxy(proxy, appPublicFolder, servedPathname) {
// If proxy is specified, let it handle any request except for
// files in the public folder and requests to the WebpackDevServer socket endpoint.
// https://github.com/facebook/create-react-app/issues/6720
- const sockPath = process.env.WDS_SOCKET_PATH || '/sockjs-node';
+ const sockPath = process.env.WDS_SOCKET_PATH || '/ws';
const isDefaultSockHost = !process.env.WDS_SOCKET_HOST;
function mayProxy(pathname) {
const maybePublicPath = path.resolve(
diff --git a/packages/modular-scripts/react-dev-utils/evalSourceMapMiddleware.js b/packages/modular-scripts/react-dev-utils/evalSourceMapMiddleware.js
index dbb0e67f7..a7244dd87 100644
--- a/packages/modular-scripts/react-dev-utils/evalSourceMapMiddleware.js
+++ b/packages/modular-scripts/react-dev-utils/evalSourceMapMiddleware.js
@@ -8,7 +8,9 @@ function base64SourceMap(source) {
}
function getSourceById(server, id) {
- const module = server._stats.compilation.modules.find((m) => m.id === id);
+ const module = Array.from(server._stats.compilation.modules).find(
+ (m) => server._stats.compilation.chunkGraph.getModuleId(m) === id,
+ );
return module.originalSource();
}
diff --git a/packages/modular-scripts/react-dev-utils/formatWebpackMessages.js b/packages/modular-scripts/react-dev-utils/formatWebpackMessages.js
index 04ce7a84a..6600a4c8e 100644
--- a/packages/modular-scripts/react-dev-utils/formatWebpackMessages.js
+++ b/packages/modular-scripts/react-dev-utils/formatWebpackMessages.js
@@ -8,7 +8,13 @@ function isLikelyASyntaxError(message) {
// Cleans up webpack error messages.
function formatMessage(message) {
- let lines = message.split('\n');
+ let lines = [];
+
+ if (typeof message === 'string' || message instanceof String) {
+ lines = message.split('\n');
+ } else if ('message' in message) {
+ lines = message['message'].split('\n');
+ }
// Strip webpack-added headers off errors/warnings
// https://github.com/webpack/webpack/blob/master/lib/ModuleError.js
diff --git a/packages/modular-scripts/react-dev-utils/webpackHotDevClient.js b/packages/modular-scripts/react-dev-utils/webpackHotDevClient.js
index bf435fb94..f85179e64 100644
--- a/packages/modular-scripts/react-dev-utils/webpackHotDevClient.js
+++ b/packages/modular-scripts/react-dev-utils/webpackHotDevClient.js
@@ -56,7 +56,7 @@ var connection = new WebSocket(
hostname: process.env.WDS_SOCKET_HOST || window.location.hostname,
port: process.env.WDS_SOCKET_PORT || window.location.port,
// Hardcoded in WebpackDevServer
- pathname: process.env.WDS_SOCKET_PATH || '/sockjs-node',
+ pathname: process.env.WDS_SOCKET_PATH || '/ws',
slashes: true,
}),
);
diff --git a/packages/modular-scripts/react-scripts/config/webpack.config.js b/packages/modular-scripts/react-scripts/config/webpack.config.js
index 41da0a3b0..234c35217 100644
--- a/packages/modular-scripts/react-scripts/config/webpack.config.js
+++ b/packages/modular-scripts/react-scripts/config/webpack.config.js
@@ -12,9 +12,8 @@ const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin');
const InlineChunkHtmlPlugin = require('../../react-dev-utils/InlineChunkHtmlPlugin');
const TerserPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
-const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
-const safePostCssParser = require('postcss-safe-parser');
-const ManifestPlugin = require('webpack-manifest-plugin');
+const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
+const { WebpackManifestPlugin } = require('webpack-manifest-plugin');
const { info } = require('../../react-dev-utils/logger');
const InterpolateHtmlPlugin = require('../../react-dev-utils/InterpolateHtmlPlugin');
const WatchMissingNodeModulesPlugin = require('../../react-dev-utils/WatchMissingNodeModulesPlugin');
@@ -25,7 +24,6 @@ const modules = require('./modules');
const getClientEnvironment = require('./env');
const ModuleNotFoundPlugin = require('../../react-dev-utils/ModuleNotFoundPlugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
-const typescriptFormatter = require('../../react-dev-utils/typescriptFormatter');
const postcssNormalize = require('postcss-normalize');
const isCI = require('is-ci');
@@ -33,14 +31,9 @@ const esbuildTargetFactory = process.env.ESBUILD_TARGET_FACTORY
? JSON.parse(process.env.ESBUILD_TARGET_FACTORY)
: 'es2015';
-const appPackageJson = require(paths.appPackageJson);
-
// Source maps are resource heavy and can cause out of memory issue for large source files.
const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== 'false';
-const webpackDevClientEntry = require.resolve(
- '../../react-dev-utils/webpackHotDevClient',
-);
const reactRefreshOverlayEntry = require.resolve(
'../../react-dev-utils/refreshOverlayInterop',
);
@@ -152,30 +145,7 @@ module.exports = function (webpackEnv) {
: isEnvDevelopment && 'cheap-module-source-map',
// These are the "entry points" to our application.
// This means they will be the "root" imports that are included in JS bundle.
- entry: isEnvDevelopment
- ? [
- // Include an alternative client for WebpackDevServer. A client's job is to
- // connect to WebpackDevServer by a socket and get notified about changes.
- // When you save a file, the client will either apply hot updates (in case
- // of CSS changes), or refresh the page (in case of JS changes). When you
- // make a syntax error, this client will display a syntax error overlay.
- // Note: instead of the default WebpackDevServer client, we use a custom one
- // to bring better experience for Create React App users. You can replace
- // the line below with these two lines if you prefer the stock client:
- //
- // require.resolve('webpack-dev-server/client') + '?/',
- // require.resolve('webpack/hot/dev-server'),
- //
- // When using the experimental react-refresh integration,
- // the webpack plugin takes care of injecting the dev client for us.
- webpackDevClientEntry,
- // Finally, this is your app's code:
- paths.appIndexJs,
- // We include the app code last so that if there is a runtime error during
- // initialization, it doesn't blow up the WebpackDevServer client, and
- // changing JS code would still trigger a refresh.
- ]
- : paths.appIndexJs,
+ entry: paths.appIndexJs,
output: {
// The build folder.
path: isEnvProduction ? paths.appBuild : undefined,
@@ -185,10 +155,9 @@ module.exports = function (webpackEnv) {
// In development, it does not produce real files.
filename: isEnvProduction
? 'static/js/[name].[contenthash:8].js'
- : isEnvDevelopment && 'static/js/bundle.js',
- // TODO: remove this when upgrading to webpack 5
- futureEmitAssets: true,
+ : isEnvDevelopment && 'static/js/[name].js',
// There are also additional JS chunk files if you use code splitting.
+ // Please remember that Webpack 5, unlike Webpack 4, controls "splitChunks" via fileName, not chunkFilename - https://stackoverflow.com/questions/66077740/webpack-5-output-chunkfilename-not-working
chunkFilename: isEnvProduction
? 'static/js/[name].[contenthash:8].chunk.js'
: isEnvDevelopment && 'static/js/[name].chunk.js',
@@ -205,12 +174,6 @@ module.exports = function (webpackEnv) {
: isEnvDevelopment &&
((info) =>
path.resolve(info.absoluteResourcePath).replace(/\\/g, '/')),
- // Prevents conflicts when multiple webpack runtimes (from different apps)
- // are used on the same page.
- jsonpFunction: `webpackJsonp${appPackageJson.name}`,
- // this defaults to 'window', but by setting it to 'this' then
- // module chunks which are built will work in web workers as well.
- globalObject: 'this',
},
optimization: {
minimize: isEnvProduction,
@@ -254,34 +217,14 @@ module.exports = function (webpackEnv) {
ascii_only: true,
},
},
- sourceMap: shouldUseSourceMap,
- }),
- // This is only used in production mode
- new OptimizeCSSAssetsPlugin({
- cssProcessorOptions: {
- parser: safePostCssParser,
- map: shouldUseSourceMap
- ? {
- // `inline: false` forces the sourcemap to be output into a
- // separate file
- inline: false,
- // `annotation: true` appends the sourceMappingURL to the end of
- // the css file, helping the browser find the sourcemap
- annotation: true,
- }
- : false,
- },
- cssProcessorPluginOptions: {
- preset: ['default', { minifyFontValues: { removeQuotes: false } }],
- },
}),
+ new CssMinimizerPlugin(),
],
// Automatically split vendor and commons
// https://twitter.com/wSokra/status/969633336732905474
// https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366
splitChunks: {
chunks: 'all',
- name: isEnvDevelopment,
},
// Keep the runtime chunk separated to enable long term caching
// https://twitter.com/wSokra/status/969679223278505985
@@ -318,6 +261,13 @@ module.exports = function (webpackEnv) {
}),
...(modules.webpackAliases || {}),
},
+ // Some libraries import Node modules but don't use them in the browser.
+ // Tell webpack to provide empty mocks for them so importing them works.
+ // See https://github.com/webpack/webpack/issues/11649
+ fallback: builtinModules.reduce((acc, next) => {
+ acc[next] = false;
+ return acc;
+ }, {}),
plugins: [
// Adds support for installing with Plug'n'Play, leading to faster installs and adding
// guards against forgotten dependencies and such.
@@ -343,8 +293,6 @@ module.exports = function (webpackEnv) {
module: {
strictExportPresence: true,
rules: [
- // Disable require.ensure as it's not a standard language feature.
- { parser: { requireEnsure: false } },
{
// "oneOf" will traverse all following loaders until one will
// match the requirements. When no loader matches it will fall
@@ -497,7 +445,7 @@ module.exports = function (webpackEnv) {
// its runtime that would otherwise be processed through "file" loader.
// Also exclude `html` and `json` extensions so they get processed
// by webpacks internal loaders.
- exclude: [/\.(js|mjs|jsx|ts|tsx)$/, /\.html$/, /\.json$/],
+ exclude: [/(^|\.(js|mjs|jsx|ts|tsx|html|json))$/],
options: {
name: 'static/media/[name].[hash:8].[ext]',
},
@@ -579,7 +527,7 @@ module.exports = function (webpackEnv) {
// `index.html`
// - "entrypoints" key: Array of files which are included in `index.html`,
// can be used to reconstruct the HTML if necessary
- new ManifestPlugin({
+ new WebpackManifestPlugin({
fileName: 'asset-manifest.json',
publicPath: paths.publicUrlOrPath,
generate: (seed, files, entrypoints) => {
@@ -602,41 +550,60 @@ module.exports = function (webpackEnv) {
// solution that requires the user to opt into importing specific locales.
// https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
// You can remove this if you don't use Moment.js:
- new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
+ new webpack.IgnorePlugin({
+ resourceRegExp: /^\.\/locale$/,
+ contextRegExp: /moment$/,
+ }),
// TypeScript type checking turned off for CI envs
// https://github.com/jpmorganchase/modular/issues/605
useTypeScript &&
!isCI &&
new ForkTsCheckerWebpackPlugin({
- typescript: resolve.sync('typescript', {
- basedir: paths.appNodeModules,
- }),
async: isEnvDevelopment,
- checkSyntacticErrors: true,
- tsconfig: paths.appTsConfig,
- reportFiles: [
+ typescript: {
+ async: isEnvDevelopment,
+ typescriptPath: resolve.sync('typescript', {
+ basedir: paths.appNodeModules,
+ }),
+ configOverwrite: {
+ compilerOptions: {
+ sourceMap: isEnvProduction
+ ? shouldUseSourceMap
+ : isEnvDevelopment,
+ skipLibCheck: true,
+ inlineSourceMap: false,
+ declarationMap: false,
+ noEmit: true,
+ },
+ },
+ context: paths.appPath,
+ diagnosticOptions: {
+ syntactic: true,
+ semantic: true,
+ },
+ mode: 'write-references',
+ },
+ issue: {
// This one is specifically to match during CI tests,
// as micromatch doesn't match
// '../cra-template-typescript/template/src/App.tsx'
// otherwise.
- '../**/src/**/*.{ts,tsx}',
- '**/src/**/*.{ts,tsx}',
- '!**/src/**/__tests__/**',
- '!**/src/**/?(*.)(spec|test).*',
- '!**/src/setupProxy.*',
- '!**/src/setupTests.*',
- ],
- silent: true,
- // The formatter is invoked directly in WebpackDevServerUtils during development
- formatter: isEnvProduction ? typescriptFormatter : undefined,
+ include: [
+ { file: '../**/src/**/*.{ts,tsx}' },
+ { file: '**/src/**/*.{ts,tsx}' },
+ ],
+ exclude: [
+ { file: '**/src/**/__tests__/**' },
+ { file: '**/src/**/?(*.){spec|test}.*' },
+ { file: '**/src/setupProxy.*' },
+ { file: '**/src/setupTests.*' },
+ ],
+ },
+ logger: {
+ infrastructure: 'silent',
+ },
}),
].filter(Boolean),
- // Some libraries import Node modules but don't use them in the browser.
- // Tell webpack to provide empty mocks for them so importing them works.
- node: builtinModules.reduce((acc, next) => {
- acc[next] = false;
- return acc;
- }, {}),
// Turn off performance processing because we utilize
// our own hints via the FileSizeReporter
performance: false,
diff --git a/packages/modular-scripts/react-scripts/config/webpackDevServer.config.js b/packages/modular-scripts/react-scripts/config/webpackDevServer.config.js
index ec8b5f99c..a1cc6541b 100644
--- a/packages/modular-scripts/react-scripts/config/webpackDevServer.config.js
+++ b/packages/modular-scripts/react-scripts/config/webpackDevServer.config.js
@@ -38,6 +38,11 @@ module.exports = function (port, proxy, allowedHost) {
// Note: ["localhost", ".localhost"] will support subdomains - but we might
// want to allow setting the allowedHosts manually for more complex setups
allowedHosts: disableFirewall ? 'all' : [allowedHost],
+ headers: {
+ 'Access-Control-Allow-Origin': '*',
+ 'Access-Control-Allow-Methods': '*',
+ 'Access-Control-Allow-Headers': '*',
+ },
// Enable gzip compression of generated files.
compress: true,
static: {
diff --git a/packages/modular-scripts/react-scripts/scripts/start.js b/packages/modular-scripts/react-scripts/scripts/start.js
index e8c78fa7a..db5f399ba 100644
--- a/packages/modular-scripts/react-scripts/scripts/start.js
+++ b/packages/modular-scripts/react-scripts/scripts/start.js
@@ -64,30 +64,19 @@ choosePort(HOST, DEFAULT_PORT)
const appName = require(paths.appPackageJson).name;
const useTypeScript = !isCI && fs.existsSync(paths.appTsConfig);
- const tscCompileOnError = process.env.TSC_COMPILE_ON_ERROR === 'true';
const urls = prepareUrls(
protocol,
HOST,
port,
paths.publicUrlOrPath.slice(0, -1),
);
- const devSocket = {
- warnings: (warnings) => {
- devServer.sendMessage(devServer.sockets, 'warnings', warnings);
- },
- errors: (errors) => {
- devServer.sendMessage(devServer.sockets, 'errors', errors);
- },
- };
// Create a webpack compiler that is configured with custom messages.
// Only run typecheck if not in CI env
const compiler = createCompiler({
appName,
config,
- devSocket,
urls,
useTypeScript,
- tscCompileOnError,
webpack,
});
diff --git a/packages/modular-scripts/src/__tests__/__snapshots__/app.node-env.test.ts.snap b/packages/modular-scripts/src/__tests__/__snapshots__/app.node-env.test.ts.snap
index 7c974d36b..ff09bc1a7 100644
--- a/packages/modular-scripts/src/__tests__/__snapshots__/app.node-env.test.ts.snap
+++ b/packages/modular-scripts/src/__tests__/__snapshots__/app.node-env.test.ts.snap
@@ -6,18 +6,21 @@ exports[`when working with a NODE_ENV app WHEN building with esbuild can generat
"
`;
-exports[`when working with a NODE_ENV app WHEN building with webpack can generate a js/main.3db228f9.chunk.js 1`] = `
-"(this[\\"webpackJsonpnode-env-app\\"] =
- this[\\"webpackJsonpnode-env-app\\"] || []).push([
- [0],
- [
- function (n, o, p) {
- \\"use strict\\";
- p.r(o), console.log(\\"production\\");
+exports[`when working with a NODE_ENV app WHEN building with webpack can generate a js/main.1c6de6d0.js 1`] = `
+"\\"use strict\\";
+(globalThis.webpackChunknode_env_app =
+ globalThis.webpackChunknode_env_app || []).push([
+ [179],
+ {
+ 908: () => {
+ console.log(\\"production\\");
},
- ],
- [[0, 1]],
+ },
+ (o) => {
+ var e;
+ (e = 908), o((o.s = e));
+ },
]);
-//# sourceMappingURL=main.3db228f9.chunk.js.map
+//# sourceMappingURL=main.1c6de6d0.js.map
"
`;
diff --git a/packages/modular-scripts/src/__tests__/__snapshots__/app.test.ts.snap b/packages/modular-scripts/src/__tests__/__snapshots__/app.test.ts.snap
index 72ea7fff4..460df5996 100644
--- a/packages/modular-scripts/src/__tests__/__snapshots__/app.test.ts.snap
+++ b/packages/modular-scripts/src/__tests__/__snapshots__/app.test.ts.snap
@@ -3,82 +3,34 @@
exports[`When working with a nested app can generate a asset-manifest 1`] = `
"{
\\"files\\": {
- \\"main.css\\": \\"/static/css/main.a0f92c83.chunk.css\\",
- \\"main.js\\": \\"/static/js/main.8b9be32b.chunk.js\\",
- \\"main.js.map\\": \\"/static/js/main.8b9be32b.chunk.js.map\\",
- \\"runtime-main.js\\": \\"/static/js/runtime-main.c80b6939.js\\",
- \\"runtime-main.js.map\\": \\"/static/js/runtime-main.c80b6939.js.map\\",
- \\"static/js/2.dd7fe2ee.chunk.js\\": \\"/static/js/2.dd7fe2ee.chunk.js\\",
- \\"static/js/2.dd7fe2ee.chunk.js.map\\": \\"/static/js/2.dd7fe2ee.chunk.js.map\\",
+ \\"main.css\\": \\"/static/css/main.1a7488ce.css\\",
+ \\"main.js\\": \\"/static/js/main.3563e93f.js\\",
+ \\"runtime-main.js\\": \\"/static/js/runtime-main.83e93d07.js\\",
+ \\"static/js/788.78cfb599.js\\": \\"/static/js/788.78cfb599.js\\",
\\"index.html\\": \\"/index.html\\",
- \\"static/css/main.a0f92c83.chunk.css.map\\": \\"/static/css/main.a0f92c83.chunk.css.map\\",
- \\"static/js/2.dd7fe2ee.chunk.js.LICENSE.txt\\": \\"/static/js/2.dd7fe2ee.chunk.js.LICENSE.txt\\"
+ \\"main.1a7488ce.css.map\\": \\"/static/css/main.1a7488ce.css.map\\",
+ \\"main.3563e93f.js.map\\": \\"/static/js/main.3563e93f.js.map\\",
+ \\"runtime-main.83e93d07.js.map\\": \\"/static/js/runtime-main.83e93d07.js.map\\",
+ \\"788.78cfb599.js.map\\": \\"/static/js/788.78cfb599.js.map\\"
},
\\"entrypoints\\": [
- \\"static/js/runtime-main.c80b6939.js\\",
- \\"static/js/2.dd7fe2ee.chunk.js\\",
- \\"static/css/main.a0f92c83.chunk.css\\",
- \\"static/js/main.8b9be32b.chunk.js\\"
+ \\"static/js/runtime-main.83e93d07.js\\",
+ \\"static/js/788.78cfb599.js\\",
+ \\"static/css/main.1a7488ce.css\\",
+ \\"static/js/main.3563e93f.js\\"
]
}"
`;
-exports[`When working with a nested app can generate a css/main.a0f92c83.chunk.css 1`] = `
-".App {
- text-align: center;
-}
-.App-logo {
- height: 40vmin;
- pointer-events: none;
-}
-@media (prefers-reduced-motion: no-preference) {
- .App-logo {
- animation: App-logo-spin 20s linear infinite;
- }
-}
-.App-header {
- align-items: center;
- background-color: #282c34;
- color: #fff;
- display: flex;
- flex-direction: column;
- font-size: calc(10px + 2vmin);
- justify-content: center;
- min-height: 100vh;
-}
-.App-link {
- color: #61dafb;
-}
-@keyframes App-logo-spin {
- 0% {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(1turn);
- }
-}
-body {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
- Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
- margin: 0;
-}
-code {
- font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;
-}
-/*# sourceMappingURL=main.a0f92c83.chunk.css.map */
-"
-`;
-
-exports[`When working with a nested app can generate a css/main.a0f92c83.chunk.css.map 1`] = `
+exports[`When working with a nested app can generate a hashed css map in the css directory 1`] = `
Object {
- "file": "main.a0f92c83.chunk.css",
+ "file": "static/css/main.1a7488ce.css",
"mappings": "AAAA,KACE,iBACF,CAEA,UACE,aAAc,CACd,mBACF,CAEA,8CACE,UACE,2CACF,CACF,CAEA,YAKE,kBAAmB,CAJnB,wBAAyB,CAOzB,UAAY,CALZ,YAAa,CACb,qBAAsB,CAGtB,4BAA6B,CAD7B,sBAAuB,CAJvB,gBAOF,CAEA,UACE,aACF,CAEA,yBACE,GACE,sBACF,CACA,GACE,uBACF,CACF,CCrCA,KAKE,kCAAmC,CACnC,iCAAkC,CAJlC,mIAEY,CAHZ,QAMF,CAEA,KACE,uEAEF",
"names": Array [],
+ "sourceRoot": "",
"sources": Array [
- "webpack://src/App.css",
- "webpack://src/index.css",
+ "App.css",
+ "index.css",
],
"sourcesContent": Array [
".App {
@@ -139,140 +91,18 @@ code {
}
`;
-exports[`When working with a nested app can generate a index.html 1`] = `
-"
-
-
-
-
-
-
-
-
-
- React App
-
-
-
-
-
-
-
-
-
-
-"
-`;
-
-exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`] = `
-"/*! For license information please see 2.dd7fe2ee.chunk.js.LICENSE.txt */
-(this[\\"webpackJsonp@scoped/sample-app\\"] =
- this[\\"webpackJsonp@scoped/sample-app\\"] || []).push([
- [2],
- [
- function (e, t, n) {
- \\"use strict\\";
- e.exports = n(3);
- },
- function (e, t, n) {
- \\"use strict\\";
- var r = Object.getOwnPropertySymbols,
- l = Object.prototype.hasOwnProperty,
- a = Object.prototype.propertyIsEnumerable;
- function o(e) {
+exports[`When working with a nested app can generate a hashed js chunk in the js directory 1`] = `
+"/*! For license information please see 788.78cfb599.js.LICENSE.txt */
+\\"use strict\\";
+(globalThis.webpackChunk_scoped_sample_app =
+ globalThis.webpackChunk_scoped_sample_app || []).push([
+ [788],
+ {
+ 516: (e) => {
+ var t = Object.getOwnPropertySymbols,
+ n = Object.prototype.hasOwnProperty,
+ r = Object.prototype.propertyIsEnumerable;
+ function l(e) {
if (null === e || void 0 === e)
throw new TypeError(
\\"Object.assign cannot be called with null or undefined\\"
@@ -309,62 +139,24 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
})()
? Object.assign
- : function (e, t) {
- for (var n, u, i = o(e), s = 1; s < arguments.length; s++) {
- for (var c in (n = Object(arguments[s])))
- l.call(n, c) && (i[c] = n[c]);
- if (r) {
- u = r(n);
+ : function (e, a) {
+ for (var o, u, i = l(e), s = 1; s < arguments.length; s++) {
+ for (var c in (o = Object(arguments[s])))
+ n.call(o, c) && (i[c] = o[c]);
+ if (t) {
+ u = t(o);
for (var f = 0; f < u.length; f++)
- a.call(n, u[f]) && (i[u[f]] = n[u[f]]);
+ r.call(o, u[f]) && (i[u[f]] = o[u[f]]);
}
}
return i;
};
},
- function (e, t, n) {
- \\"use strict\\";
- !(function e() {
- if (
- \\"undefined\\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
- \\"function\\" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE
- )
- try {
- __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e);
- } catch (t) {
- console.error(t);
- }
- })(),
- (e.exports = n(4));
- },
- function (e, t, n) {
- \\"use strict\\";
- var r = n(1),
- l = 60103,
- a = 60106;
- (t.Fragment = 60107), (t.StrictMode = 60108), (t.Profiler = 60114);
- var o = 60109,
- u = 60110,
- i = 60112;
- t.Suspense = 60113;
- var s = 60115,
- c = 60116;
- if (\\"function\\" === typeof Symbol && Symbol.for) {
- var f = Symbol.for;
- (l = f(\\"react.element\\")),
- (a = f(\\"react.portal\\")),
- (t.Fragment = f(\\"react.fragment\\")),
- (t.StrictMode = f(\\"react.strict_mode\\")),
- (t.Profiler = f(\\"react.profiler\\")),
- (o = f(\\"react.provider\\")),
- (u = f(\\"react.context\\")),
- (i = f(\\"react.forward_ref\\")),
- (t.Suspense = f(\\"react.suspense\\")),
- (s = f(\\"react.memo\\")),
- (c = f(\\"react.lazy\\"));
- }
- var d = \\"function\\" === typeof Symbol && Symbol.iterator;
- function p(e) {
+ 975: (e, t, n) => {
+ var r = n(735),
+ l = n(516),
+ a = n(146);
+ function o(e) {
for (
var t = \\"https://reactjs.org/docs/error-decoder.html?invariant=\\" + e,
n = 1;
@@ -380,616 +172,254 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
\\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\\"
);
}
- var h = {
- isMounted: function () {
- return !1;
- },
- enqueueForceUpdate: function () {},
- enqueueReplaceState: function () {},
- enqueueSetState: function () {},
- },
- m = {};
- function v(e, t, n) {
- (this.props = e),
- (this.context = t),
- (this.refs = m),
- (this.updater = n || h);
+ if (!r) throw Error(o(227));
+ var u = new Set(),
+ i = {};
+ function s(e, t) {
+ c(e, t), c(e + \\"Capture\\", t);
}
- function g() {}
- function y(e, t, n) {
- (this.props = e),
- (this.context = t),
- (this.refs = m),
- (this.updater = n || h);
+ function c(e, t) {
+ for (i[e] = t, e = 0; e < t.length; e++) u.add(t[e]);
}
- (v.prototype.isReactComponent = {}),
- (v.prototype.setState = function (e, t) {
- if (\\"object\\" !== typeof e && \\"function\\" !== typeof e && null != e)
- throw Error(p(85));
- this.updater.enqueueSetState(this, e, t, \\"setState\\");
+ var f = !(
+ \\"undefined\\" === typeof window ||
+ \\"undefined\\" === typeof window.document ||
+ \\"undefined\\" === typeof window.document.createElement
+ ),
+ d =
+ /^[:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD][:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]*$/,
+ p = Object.prototype.hasOwnProperty,
+ h = {},
+ m = {};
+ function v(e, t, n, r, l, a, o) {
+ (this.acceptsBooleans = 2 === t || 3 === t || 4 === t),
+ (this.attributeName = r),
+ (this.attributeNamespace = l),
+ (this.mustUseProperty = n),
+ (this.propertyName = e),
+ (this.type = t),
+ (this.sanitizeURL = a),
+ (this.removeEmptyString = o);
+ }
+ var g = {};
+ \\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\\"
+ .split(\\" \\")
+ .forEach(function (e) {
+ g[e] = new v(e, 0, !1, e, null, !1, !1);
}),
- (v.prototype.forceUpdate = function (e) {
- this.updater.enqueueForceUpdate(this, e, \\"forceUpdate\\");
+ [
+ [\\"acceptCharset\\", \\"accept-charset\\"],
+ [\\"className\\", \\"class\\"],
+ [\\"htmlFor\\", \\"for\\"],
+ [\\"httpEquiv\\", \\"http-equiv\\"],
+ ].forEach(function (e) {
+ var t = e[0];
+ g[t] = new v(t, 1, !1, e[1], null, !1, !1);
}),
- (g.prototype = v.prototype);
- var b = (y.prototype = new g());
- (b.constructor = y), r(b, v.prototype), (b.isPureReactComponent = !0);
- var w = { current: null },
- k = Object.prototype.hasOwnProperty,
- S = { key: !0, ref: !0, __self: !0, __source: !0 };
- function E(e, t, n) {
- var r,
- a = {},
- o = null,
- u = null;
- if (null != t)
- for (r in (void 0 !== t.ref && (u = t.ref),
- void 0 !== t.key && (o = \\"\\" + t.key),
- t))
- k.call(t, r) && !S.hasOwnProperty(r) && (a[r] = t[r]);
- var i = arguments.length - 2;
- if (1 === i) a.children = n;
- else if (1 < i) {
- for (var s = Array(i), c = 0; c < i; c++) s[c] = arguments[c + 2];
- a.children = s;
- }
- if (e && e.defaultProps)
- for (r in (i = e.defaultProps)) void 0 === a[r] && (a[r] = i[r]);
- return {
- $$typeof: l,
- type: e,
- key: o,
- ref: u,
- props: a,
- _owner: w.current,
- };
- }
- function x(e) {
- return \\"object\\" === typeof e && null !== e && e.$$typeof === l;
- }
- var _ = /\\\\/+/g;
- function C(e, t) {
- return \\"object\\" === typeof e && null !== e && null != e.key
- ? (function (e) {
- var t = { \\"=\\": \\"=0\\", \\":\\": \\"=2\\" };
- return (
- \\"$\\" +
- e.replace(/[=:]/g, function (e) {
- return t[e];
- })
- );
- })(\\"\\" + e.key)
- : t.toString(36);
- }
- function P(e, t, n, r, o) {
- var u = typeof e;
- (\\"undefined\\" !== u && \\"boolean\\" !== u) || (e = null);
- var i = !1;
- if (null === e) i = !0;
- else
- switch (u) {
- case \\"string\\":
- case \\"number\\":
- i = !0;
- break;
- case \\"object\\":
- switch (e.$$typeof) {
- case l:
- case a:
- i = !0;
- }
- }
- if (i)
- return (
- (o = o((i = e))),
- (e = \\"\\" === r ? \\".\\" + C(i, 0) : r),
- Array.isArray(o)
- ? ((n = \\"\\"),
- null != e && (n = e.replace(_, \\"$&/\\") + \\"/\\"),
- P(o, t, n, \\"\\", function (e) {
- return e;
- }))
- : null != o &&
- (x(o) &&
- (o = (function (e, t) {
- return {
- $$typeof: l,
- type: e.type,
- key: t,
- ref: e.ref,
- props: e.props,
- _owner: e._owner,
- };
- })(
- o,
- n +
- (!o.key || (i && i.key === o.key)
- ? \\"\\"
- : (\\"\\" + o.key).replace(_, \\"$&/\\") + \\"/\\") +
- e
- )),
- t.push(o)),
- 1
- );
- if (((i = 0), (r = \\"\\" === r ? \\".\\" : r + \\":\\"), Array.isArray(e)))
- for (var s = 0; s < e.length; s++) {
- var c = r + C((u = e[s]), s);
- i += P(u, t, n, c, o);
+ [\\"contentEditable\\", \\"draggable\\", \\"spellCheck\\", \\"value\\"].forEach(
+ function (e) {
+ g[e] = new v(e, 2, !1, e.toLowerCase(), null, !1, !1);
}
- else if (
- ((c = (function (e) {
- return null === e || \\"object\\" !== typeof e
- ? null
- : \\"function\\" === typeof (e = (d && e[d]) || e[\\"@@iterator\\"])
- ? e
- : null;
- })(e)),
- \\"function\\" === typeof c)
- )
- for (e = c.call(e), s = 0; !(u = e.next()).done; )
- i += P((u = u.value), t, n, (c = r + C(u, s++)), o);
- else if (\\"object\\" === u)
- throw (
- ((t = \\"\\" + e),
- Error(
- p(
- 31,
- \\"[object Object]\\" === t
- ? \\"object with keys {\\" + Object.keys(e).join(\\", \\") + \\"}\\"
- : t
- )
- ))
- );
- return i;
- }
- function N(e, t, n) {
- if (null == e) return e;
- var r = [],
- l = 0;
- return (
- P(e, r, \\"\\", \\"\\", function (e) {
- return t.call(n, e, l++);
+ ),
+ [
+ \\"autoReverse\\",
+ \\"externalResourcesRequired\\",
+ \\"focusable\\",
+ \\"preserveAlpha\\",
+ ].forEach(function (e) {
+ g[e] = new v(e, 2, !1, e, null, !1, !1);
+ }),
+ \\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\\"
+ .split(\\" \\")
+ .forEach(function (e) {
+ g[e] = new v(e, 3, !1, e.toLowerCase(), null, !1, !1);
}),
- r
- );
+ [\\"checked\\", \\"multiple\\", \\"muted\\", \\"selected\\"].forEach(function (e) {
+ g[e] = new v(e, 3, !0, e, null, !1, !1);
+ }),
+ [\\"capture\\", \\"download\\"].forEach(function (e) {
+ g[e] = new v(e, 4, !1, e, null, !1, !1);
+ }),
+ [\\"cols\\", \\"rows\\", \\"size\\", \\"span\\"].forEach(function (e) {
+ g[e] = new v(e, 6, !1, e, null, !1, !1);
+ }),
+ [\\"rowSpan\\", \\"start\\"].forEach(function (e) {
+ g[e] = new v(e, 5, !1, e.toLowerCase(), null, !1, !1);
+ });
+ var y = /[\\\\-:]([a-z])/g;
+ function b(e) {
+ return e[1].toUpperCase();
}
- function T(e) {
- if (-1 === e._status) {
- var t = e._result;
- (t = t()),
- (e._status = 0),
- (e._result = t),
- t.then(
- function (t) {
- 0 === e._status &&
- ((t = t.default), (e._status = 1), (e._result = t));
- },
- function (t) {
- 0 === e._status && ((e._status = 2), (e._result = t));
+ function w(e, t, n, r) {
+ var l = g.hasOwnProperty(t) ? g[t] : null;
+ (null !== l
+ ? 0 === l.type
+ : !r &&
+ 2 < t.length &&
+ (\\"o\\" === t[0] || \\"O\\" === t[0]) &&
+ (\\"n\\" === t[1] || \\"N\\" === t[1])) ||
+ ((function (e, t, n, r) {
+ if (
+ null === t ||
+ \\"undefined\\" === typeof t ||
+ (function (e, t, n, r) {
+ if (null !== n && 0 === n.type) return !1;
+ switch (typeof t) {
+ case \\"function\\":
+ case \\"symbol\\":
+ return !0;
+ case \\"boolean\\":
+ return (
+ !r &&
+ (null !== n
+ ? !n.acceptsBooleans
+ : \\"data-\\" !== (e = e.toLowerCase().slice(0, 5)) &&
+ \\"aria-\\" !== e)
+ );
+ default:
+ return !1;
+ }
+ })(e, t, n, r)
+ )
+ return !0;
+ if (r) return !1;
+ if (null !== n)
+ switch (n.type) {
+ case 3:
+ return !t;
+ case 4:
+ return !1 === t;
+ case 5:
+ return isNaN(t);
+ case 6:
+ return isNaN(t) || 1 > t;
}
- );
- }
- if (1 === e._status) return e._result;
- throw e._result;
- }
- var z = { current: null };
- function L() {
- var e = z.current;
- if (null === e) throw Error(p(321));
- return e;
+ return !1;
+ })(t, n, l, r) && (n = null),
+ r || null === l
+ ? (function (e) {
+ return (
+ !!p.call(m, e) ||
+ (!p.call(h, e) &&
+ (d.test(e) ? (m[e] = !0) : ((h[e] = !0), !1)))
+ );
+ })(t) &&
+ (null === n ? e.removeAttribute(t) : e.setAttribute(t, \\"\\" + n))
+ : l.mustUseProperty
+ ? (e[l.propertyName] = null === n ? 3 !== l.type && \\"\\" : n)
+ : ((t = l.attributeName),
+ (r = l.attributeNamespace),
+ null === n
+ ? e.removeAttribute(t)
+ : ((n =
+ 3 === (l = l.type) || (4 === l && !0 === n) ? \\"\\" : \\"\\" + n),
+ r ? e.setAttributeNS(r, t, n) : e.setAttribute(t, n))));
}
- var O = {
- ReactCurrentDispatcher: z,
- ReactCurrentBatchConfig: { transition: 0 },
- ReactCurrentOwner: w,
- IsSomeRendererActing: { current: !1 },
- assign: r,
- };
- (t.Children = {
- map: N,
- forEach: function (e, t, n) {
- N(
+ \\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\\"
+ .split(\\" \\")
+ .forEach(function (e) {
+ var t = e.replace(y, b);
+ g[t] = new v(t, 1, !1, e, null, !1, !1);
+ }),
+ \\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\\"
+ .split(\\" \\")
+ .forEach(function (e) {
+ var t = e.replace(y, b);
+ g[t] = new v(t, 1, !1, e, \\"http://www.w3.org/1999/xlink\\", !1, !1);
+ }),
+ [\\"xml:base\\", \\"xml:lang\\", \\"xml:space\\"].forEach(function (e) {
+ var t = e.replace(y, b);
+ g[t] = new v(
+ t,
+ 1,
+ !1,
e,
- function () {
- t.apply(this, arguments);
- },
- n
- );
- },
- count: function (e) {
- var t = 0;
- return (
- N(e, function () {
- t++;
- }),
- t
- );
- },
- toArray: function (e) {
- return (
- N(e, function (e) {
- return e;
- }) || []
+ \\"http://www.w3.org/XML/1998/namespace\\",
+ !1,
+ !1
);
- },
- only: function (e) {
- if (!x(e)) throw Error(p(143));
- return e;
- },
- }),
- (t.Component = v),
- (t.PureComponent = y),
- (t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = O),
- (t.cloneElement = function (e, t, n) {
- if (null === e || void 0 === e) throw Error(p(267, e));
- var a = r({}, e.props),
- o = e.key,
- u = e.ref,
- i = e._owner;
- if (null != t) {
- if (
- (void 0 !== t.ref && ((u = t.ref), (i = w.current)),
- void 0 !== t.key && (o = \\"\\" + t.key),
- e.type && e.type.defaultProps)
- )
- var s = e.type.defaultProps;
- for (c in t)
- k.call(t, c) &&
- !S.hasOwnProperty(c) &&
- (a[c] = void 0 === t[c] && void 0 !== s ? s[c] : t[c]);
- }
- var c = arguments.length - 2;
- if (1 === c) a.children = n;
- else if (1 < c) {
- s = Array(c);
- for (var f = 0; f < c; f++) s[f] = arguments[f + 2];
- a.children = s;
- }
- return {
- $$typeof: l,
- type: e.type,
- key: o,
- ref: u,
- props: a,
- _owner: i,
- };
- }),
- (t.createContext = function (e, t) {
- return (
- void 0 === t && (t = null),
- ((e = {
- $$typeof: u,
- _calculateChangedBits: t,
- _currentValue: e,
- _currentValue2: e,
- _threadCount: 0,
- Provider: null,
- Consumer: null,
- }).Provider = { $$typeof: o, _context: e }),
- (e.Consumer = e)
- );
- }),
- (t.createElement = E),
- (t.createFactory = function (e) {
- var t = E.bind(null, e);
- return (t.type = e), t;
- }),
- (t.createRef = function () {
- return { current: null };
- }),
- (t.forwardRef = function (e) {
- return { $$typeof: i, render: e };
- }),
- (t.isValidElement = x),
- (t.lazy = function (e) {
- return {
- $$typeof: c,
- _payload: { _status: -1, _result: e },
- _init: T,
- };
}),
- (t.memo = function (e, t) {
- return { $$typeof: s, type: e, compare: void 0 === t ? null : t };
- }),
- (t.useCallback = function (e, t) {
- return L().useCallback(e, t);
- }),
- (t.useContext = function (e, t) {
- return L().useContext(e, t);
- }),
- (t.useDebugValue = function () {}),
- (t.useEffect = function (e, t) {
- return L().useEffect(e, t);
- }),
- (t.useImperativeHandle = function (e, t, n) {
- return L().useImperativeHandle(e, t, n);
- }),
- (t.useLayoutEffect = function (e, t) {
- return L().useLayoutEffect(e, t);
- }),
- (t.useMemo = function (e, t) {
- return L().useMemo(e, t);
- }),
- (t.useReducer = function (e, t, n) {
- return L().useReducer(e, t, n);
- }),
- (t.useRef = function (e) {
- return L().useRef(e);
- }),
- (t.useState = function (e) {
- return L().useState(e);
+ [\\"tabIndex\\", \\"crossOrigin\\"].forEach(function (e) {
+ g[e] = new v(e, 1, !1, e.toLowerCase(), null, !1, !1);
}),
- (t.version = \\"17.0.2\\");
- },
- function (e, t, n) {
- \\"use strict\\";
- var r = n(0),
- l = n(1),
- a = n(5);
- function o(e) {
- for (
- var t = \\"https://reactjs.org/docs/error-decoder.html?invariant=\\" + e,
- n = 1;
- n < arguments.length;
- n++
- )
- t += \\"&args[]=\\" + encodeURIComponent(arguments[n]);
- return (
- \\"Minified React error #\\" +
- e +
- \\"; visit \\" +
- t +
- \\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\\"
- );
- }
- if (!r) throw Error(o(227));
- var u = new Set(),
- i = {};
- function s(e, t) {
- c(e, t), c(e + \\"Capture\\", t);
- }
- function c(e, t) {
- for (i[e] = t, e = 0; e < t.length; e++) u.add(t[e]);
- }
- var f = !(
- \\"undefined\\" === typeof window ||
- \\"undefined\\" === typeof window.document ||
- \\"undefined\\" === typeof window.document.createElement
- ),
- d =
- /^[:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD][:A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040]*$/,
- p = Object.prototype.hasOwnProperty,
- h = {},
- m = {};
- function v(e, t, n, r, l, a, o) {
- (this.acceptsBooleans = 2 === t || 3 === t || 4 === t),
- (this.attributeName = r),
- (this.attributeNamespace = l),
- (this.mustUseProperty = n),
- (this.propertyName = e),
- (this.type = t),
- (this.sanitizeURL = a),
- (this.removeEmptyString = o);
+ (g.xlinkHref = new v(
+ \\"xlinkHref\\",
+ 1,
+ !1,
+ \\"xlink:href\\",
+ \\"http://www.w3.org/1999/xlink\\",
+ !0,
+ !1
+ )),
+ [\\"src\\", \\"href\\", \\"action\\", \\"formAction\\"].forEach(function (e) {
+ g[e] = new v(e, 1, !1, e.toLowerCase(), null, !0, !0);
+ });
+ var k = r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
+ S = 60103,
+ E = 60106,
+ x = 60107,
+ C = 60108,
+ _ = 60114,
+ P = 60109,
+ N = 60110,
+ T = 60112,
+ z = 60113,
+ L = 60120,
+ O = 60115,
+ M = 60116,
+ R = 60121,
+ F = 60128,
+ D = 60129,
+ I = 60130,
+ U = 60131;
+ if (\\"function\\" === typeof Symbol && Symbol.for) {
+ var j = Symbol.for;
+ (S = j(\\"react.element\\")),
+ (E = j(\\"react.portal\\")),
+ (x = j(\\"react.fragment\\")),
+ (C = j(\\"react.strict_mode\\")),
+ (_ = j(\\"react.profiler\\")),
+ (P = j(\\"react.provider\\")),
+ (N = j(\\"react.context\\")),
+ (T = j(\\"react.forward_ref\\")),
+ (z = j(\\"react.suspense\\")),
+ (L = j(\\"react.suspense_list\\")),
+ (O = j(\\"react.memo\\")),
+ (M = j(\\"react.lazy\\")),
+ (R = j(\\"react.block\\")),
+ j(\\"react.scope\\"),
+ (F = j(\\"react.opaque.id\\")),
+ (D = j(\\"react.debug_trace_mode\\")),
+ (I = j(\\"react.offscreen\\")),
+ (U = j(\\"react.legacy_hidden\\"));
+ }
+ var A,
+ V = \\"function\\" === typeof Symbol && Symbol.iterator;
+ function B(e) {
+ return null === e || \\"object\\" !== typeof e
+ ? null
+ : \\"function\\" === typeof (e = (V && e[V]) || e[\\"@@iterator\\"])
+ ? e
+ : null;
}
- var g = {};
- \\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\\"
- .split(\\" \\")
- .forEach(function (e) {
- g[e] = new v(e, 0, !1, e, null, !1, !1);
- }),
- [
- [\\"acceptCharset\\", \\"accept-charset\\"],
- [\\"className\\", \\"class\\"],
- [\\"htmlFor\\", \\"for\\"],
- [\\"httpEquiv\\", \\"http-equiv\\"],
- ].forEach(function (e) {
- var t = e[0];
- g[t] = new v(t, 1, !1, e[1], null, !1, !1);
- }),
- [\\"contentEditable\\", \\"draggable\\", \\"spellCheck\\", \\"value\\"].forEach(
- function (e) {
- g[e] = new v(e, 2, !1, e.toLowerCase(), null, !1, !1);
+ function $(e) {
+ if (void 0 === A)
+ try {
+ throw Error();
+ } catch (n) {
+ var t = n.stack.trim().match(/\\\\n( *(at )?)/);
+ A = (t && t[1]) || \\"\\";
}
- ),
- [
- \\"autoReverse\\",
- \\"externalResourcesRequired\\",
- \\"focusable\\",
- \\"preserveAlpha\\",
- ].forEach(function (e) {
- g[e] = new v(e, 2, !1, e, null, !1, !1);
- }),
- \\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\\"
- .split(\\" \\")
- .forEach(function (e) {
- g[e] = new v(e, 3, !1, e.toLowerCase(), null, !1, !1);
- }),
- [\\"checked\\", \\"multiple\\", \\"muted\\", \\"selected\\"].forEach(function (e) {
- g[e] = new v(e, 3, !0, e, null, !1, !1);
- }),
- [\\"capture\\", \\"download\\"].forEach(function (e) {
- g[e] = new v(e, 4, !1, e, null, !1, !1);
- }),
- [\\"cols\\", \\"rows\\", \\"size\\", \\"span\\"].forEach(function (e) {
- g[e] = new v(e, 6, !1, e, null, !1, !1);
- }),
- [\\"rowSpan\\", \\"start\\"].forEach(function (e) {
- g[e] = new v(e, 5, !1, e.toLowerCase(), null, !1, !1);
- });
- var y = /[\\\\-:]([a-z])/g;
- function b(e) {
- return e[1].toUpperCase();
+ return \\"\\\\n\\" + A + e;
}
- function w(e, t, n, r) {
- var l = g.hasOwnProperty(t) ? g[t] : null;
- (null !== l
- ? 0 === l.type
- : !r &&
- 2 < t.length &&
- (\\"o\\" === t[0] || \\"O\\" === t[0]) &&
- (\\"n\\" === t[1] || \\"N\\" === t[1])) ||
- ((function (e, t, n, r) {
- if (
- null === t ||
- \\"undefined\\" === typeof t ||
- (function (e, t, n, r) {
- if (null !== n && 0 === n.type) return !1;
- switch (typeof t) {
- case \\"function\\":
- case \\"symbol\\":
- return !0;
- case \\"boolean\\":
- return (
- !r &&
- (null !== n
- ? !n.acceptsBooleans
- : \\"data-\\" !== (e = e.toLowerCase().slice(0, 5)) &&
- \\"aria-\\" !== e)
- );
- default:
- return !1;
- }
- })(e, t, n, r)
- )
- return !0;
- if (r) return !1;
- if (null !== n)
- switch (n.type) {
- case 3:
- return !t;
- case 4:
- return !1 === t;
- case 5:
- return isNaN(t);
- case 6:
- return isNaN(t) || 1 > t;
- }
- return !1;
- })(t, n, l, r) && (n = null),
- r || null === l
- ? (function (e) {
- return (
- !!p.call(m, e) ||
- (!p.call(h, e) &&
- (d.test(e) ? (m[e] = !0) : ((h[e] = !0), !1)))
- );
- })(t) &&
- (null === n ? e.removeAttribute(t) : e.setAttribute(t, \\"\\" + n))
- : l.mustUseProperty
- ? (e[l.propertyName] = null === n ? 3 !== l.type && \\"\\" : n)
- : ((t = l.attributeName),
- (r = l.attributeNamespace),
- null === n
- ? e.removeAttribute(t)
- : ((n =
- 3 === (l = l.type) || (4 === l && !0 === n) ? \\"\\" : \\"\\" + n),
- r ? e.setAttributeNS(r, t, n) : e.setAttribute(t, n))));
- }
- \\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\\"
- .split(\\" \\")
- .forEach(function (e) {
- var t = e.replace(y, b);
- g[t] = new v(t, 1, !1, e, null, !1, !1);
- }),
- \\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\\"
- .split(\\" \\")
- .forEach(function (e) {
- var t = e.replace(y, b);
- g[t] = new v(t, 1, !1, e, \\"http://www.w3.org/1999/xlink\\", !1, !1);
- }),
- [\\"xml:base\\", \\"xml:lang\\", \\"xml:space\\"].forEach(function (e) {
- var t = e.replace(y, b);
- g[t] = new v(
- t,
- 1,
- !1,
- e,
- \\"http://www.w3.org/XML/1998/namespace\\",
- !1,
- !1
- );
- }),
- [\\"tabIndex\\", \\"crossOrigin\\"].forEach(function (e) {
- g[e] = new v(e, 1, !1, e.toLowerCase(), null, !1, !1);
- }),
- (g.xlinkHref = new v(
- \\"xlinkHref\\",
- 1,
- !1,
- \\"xlink:href\\",
- \\"http://www.w3.org/1999/xlink\\",
- !0,
- !1
- )),
- [\\"src\\", \\"href\\", \\"action\\", \\"formAction\\"].forEach(function (e) {
- g[e] = new v(e, 1, !1, e.toLowerCase(), null, !0, !0);
- });
- var k = r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,
- S = 60103,
- E = 60106,
- x = 60107,
- _ = 60108,
- C = 60114,
- P = 60109,
- N = 60110,
- T = 60112,
- z = 60113,
- L = 60120,
- O = 60115,
- M = 60116,
- R = 60121,
- I = 60128,
- D = 60129,
- F = 60130,
- U = 60131;
- if (\\"function\\" === typeof Symbol && Symbol.for) {
- var A = Symbol.for;
- (S = A(\\"react.element\\")),
- (E = A(\\"react.portal\\")),
- (x = A(\\"react.fragment\\")),
- (_ = A(\\"react.strict_mode\\")),
- (C = A(\\"react.profiler\\")),
- (P = A(\\"react.provider\\")),
- (N = A(\\"react.context\\")),
- (T = A(\\"react.forward_ref\\")),
- (z = A(\\"react.suspense\\")),
- (L = A(\\"react.suspense_list\\")),
- (O = A(\\"react.memo\\")),
- (M = A(\\"react.lazy\\")),
- (R = A(\\"react.block\\")),
- A(\\"react.scope\\"),
- (I = A(\\"react.opaque.id\\")),
- (D = A(\\"react.debug_trace_mode\\")),
- (F = A(\\"react.offscreen\\")),
- (U = A(\\"react.legacy_hidden\\"));
- }
- var j,
- V = \\"function\\" === typeof Symbol && Symbol.iterator;
- function B(e) {
- return null === e || \\"object\\" !== typeof e
- ? null
- : \\"function\\" === typeof (e = (V && e[V]) || e[\\"@@iterator\\"])
- ? e
- : null;
- }
- function W(e) {
- if (void 0 === j)
- try {
- throw Error();
- } catch (n) {
- var t = n.stack.trim().match(/\\\\n( *(at )?)/);
- j = (t && t[1]) || \\"\\";
- }
- return \\"\\\\n\\" + j + e;
- }
- var $ = !1;
- function H(e, t) {
- if (!e || $) return \\"\\";
- $ = !0;
- var n = Error.prepareStackTrace;
- Error.prepareStackTrace = void 0;
- try {
- if (t)
+ var W = !1;
+ function H(e, t) {
+ if (!e || W) return \\"\\";
+ W = !0;
+ var n = Error.prepareStackTrace;
+ Error.prepareStackTrace = void 0;
+ try {
+ if (t)
if (
((t = function () {
throw Error();
@@ -1045,20 +475,20 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
}
} finally {
- ($ = !1), (Error.prepareStackTrace = n);
+ (W = !1), (Error.prepareStackTrace = n);
}
- return (e = e ? e.displayName || e.name : \\"\\") ? W(e) : \\"\\";
+ return (e = e ? e.displayName || e.name : \\"\\") ? $(e) : \\"\\";
}
function Q(e) {
switch (e.tag) {
case 5:
- return W(e.type);
+ return $(e.type);
case 16:
- return W(\\"Lazy\\");
+ return $(\\"Lazy\\");
case 13:
- return W(\\"Suspense\\");
+ return $(\\"Suspense\\");
case 19:
- return W(\\"SuspenseList\\");
+ return $(\\"SuspenseList\\");
case 0:
case 2:
case 15:
@@ -1082,9 +512,9 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return \\"Fragment\\";
case E:
return \\"Portal\\";
- case C:
- return \\"Profiler\\";
case _:
+ return \\"Profiler\\";
+ case C:
return \\"StrictMode\\";
case z:
return \\"Suspense\\";
@@ -1187,7 +617,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(e = r) !== n && (t.setValue(e), !0)
);
}
- function J(e) {
+ function Z(e) {
if (
\\"undefined\\" ===
typeof (e =
@@ -1200,7 +630,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return e.body;
}
}
- function Z(e, t) {
+ function J(e, t) {
var n = t.checked;
return l({}, t, {
defaultChecked: void 0,
@@ -1263,7 +693,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
\\"\\" !== n && (e.name = n);
}
function le(e, t, n) {
- (\\"number\\" === t && J(e.ownerDocument) === e) ||
+ (\\"number\\" === t && Z(e.ownerDocument) === e) ||
(null == n
? (e.defaultValue = \\"\\" + e._wrapperState.initialValue)
: e.defaultValue !== \\"\\" + n && (e.defaultValue = \\"\\" + n));
@@ -1501,7 +931,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
throw Error(o(62));
}
}
- function _e(e, t) {
+ function Ce(e, t) {
if (-1 === e.indexOf(\\"-\\")) return \\"string\\" === typeof t.is;
switch (e) {
case \\"annotation-xml\\":
@@ -1517,7 +947,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return !0;
}
}
- function Ce(e) {
+ function _e(e) {
return (
(e = e.target || e.srcElement || window).correspondingUseElement &&
(e = e.correspondingUseElement),
@@ -1551,14 +981,14 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
function Re(e, t, n, r, l) {
return e(t, n, r, l);
}
- function Ie() {}
+ function Fe() {}
var De = Me,
- Fe = !1,
+ Ie = !1,
Ue = !1;
- function Ae() {
- (null === Ne && null === Te) || (Ie(), Oe());
+ function je() {
+ (null === Ne && null === Te) || (Fe(), Oe());
}
- function je(e, t) {
+ function Ae(e, t) {
var n = e.stateNode;
if (null === n) return null;
var r = al(n);
@@ -1606,7 +1036,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
} catch (ve) {
Ve = !1;
}
- function We(e, t, n, r, l, a, o, u, i) {
+ function $e(e, t, n, r, l, a, o, u, i) {
var s = Array.prototype.slice.call(arguments, 3);
try {
t.apply(n, s);
@@ -1614,17 +1044,17 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
this.onError(c);
}
}
- var $e = !1,
+ var We = !1,
He = null,
Qe = !1,
qe = null,
Ke = {
onError: function (e) {
- ($e = !0), (He = e);
+ (We = !0), (He = e);
},
};
function Ye(e, t, n, r, l, a, o, u, i) {
- ($e = !1), (He = null), We.apply(Ke, arguments);
+ (We = !1), (He = null), $e.apply(Ke, arguments);
}
function Xe(e) {
var t = e,
@@ -1649,10 +1079,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
return null;
}
- function Je(e) {
+ function Ze(e) {
if (Xe(e) !== e) throw Error(o(188));
}
- function Ze(e) {
+ function Je(e) {
if (
((e = (function (e) {
var t = e.alternate;
@@ -1673,8 +1103,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
if (l.child === a.child) {
for (a = l.child; a; ) {
- if (a === n) return Je(l), e;
- if (a === r) return Je(l), t;
+ if (a === n) return Ze(l), e;
+ if (a === r) return Ze(l), t;
a = a.sibling;
}
throw Error(o(188));
@@ -1818,7 +1248,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
function yt(e) {
if (null !== e.blockedOn) return !1;
for (var t = e.targetContainers; 0 < t.length; ) {
- var n = Zt(e.domEventName, e.eventSystemFlags, t[0], e.nativeEvent);
+ var n = Jt(e.domEventName, e.eventSystemFlags, t[0], e.nativeEvent);
if (null !== n)
return null !== (t = rl(n)) && nt(t), (e.blockedOn = n), !1;
t.shift();
@@ -1836,7 +1266,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
break;
}
for (var t = e.targetContainers; 0 < t.length; ) {
- var n = Zt(e.domEventName, e.eventSystemFlags, t[0], e.nativeEvent);
+ var n = Jt(e.domEventName, e.eventSystemFlags, t[0], e.nativeEvent);
if (null !== n) {
e.blockedOn = n;
break;
@@ -1898,18 +1328,18 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
animationstart: Et(\\"Animation\\", \\"AnimationStart\\"),
transitionend: Et(\\"Transition\\", \\"TransitionEnd\\"),
},
- _t = {},
- Ct = {};
+ Ct = {},
+ _t = {};
function Pt(e) {
- if (_t[e]) return _t[e];
+ if (Ct[e]) return Ct[e];
if (!xt[e]) return e;
var t,
n = xt[e];
- for (t in n) if (n.hasOwnProperty(t) && t in Ct) return (_t[e] = n[t]);
+ for (t in n) if (n.hasOwnProperty(t) && t in _t) return (Ct[e] = n[t]);
return e;
}
f &&
- ((Ct = document.createElement(\\"div\\").style),
+ ((_t = document.createElement(\\"div\\").style),
\\"AnimationEvent\\" in window ||
(delete xt.animationend.animation,
delete xt.animationiteration.animation,
@@ -1973,7 +1403,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
\\"waiting\\",
\\"waiting\\",
];
- function It(e, t) {
+ function Ft(e, t) {
for (var n = 0; n < e.length; n += 2) {
var r = e[n],
l = e[n + 1];
@@ -1985,7 +1415,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
(0, a.unstable_now)();
var Dt = 8;
- function Ft(e) {
+ function It(e) {
if (0 !== (1 & e)) return (Dt = 15), 1;
if (0 !== (2 & e)) return (Dt = 14), 2;
if (0 !== (4 & e)) return (Dt = 13), 4;
@@ -2028,42 +1458,42 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
else if (0 !== (a = 134217727 & n)) {
var i = a & ~o;
0 !== i
- ? ((r = Ft(i)), (l = Dt))
- : 0 !== (u &= a) && ((r = Ft(u)), (l = Dt));
+ ? ((r = It(i)), (l = Dt))
+ : 0 !== (u &= a) && ((r = It(u)), (l = Dt));
} else
0 !== (a = n & ~o)
- ? ((r = Ft(a)), (l = Dt))
- : 0 !== u && ((r = Ft(u)), (l = Dt));
+ ? ((r = It(a)), (l = Dt))
+ : 0 !== u && ((r = It(u)), (l = Dt));
if (0 === r) return 0;
if (
- ((r = n & (((0 > (r = 31 - $t(r)) ? 0 : 1 << r) << 1) - 1)),
+ ((r = n & (((0 > (r = 31 - Wt(r)) ? 0 : 1 << r) << 1) - 1)),
0 !== t && t !== r && 0 === (t & o))
) {
- if ((Ft(t), l <= Dt)) return t;
+ if ((It(t), l <= Dt)) return t;
Dt = l;
}
if (0 !== (t = e.entangledLanes))
for (e = e.entanglements, t &= r; 0 < t; )
- (l = 1 << (n = 31 - $t(t))), (r |= e[n]), (t &= ~l);
+ (l = 1 << (n = 31 - Wt(t))), (r |= e[n]), (t &= ~l);
return r;
}
- function At(e) {
+ function jt(e) {
return 0 !== (e = -1073741825 & e.pendingLanes)
? e
: 1073741824 & e
? 1073741824
: 0;
}
- function jt(e, t) {
+ function At(e, t) {
switch (e) {
case 15:
return 1;
case 14:
return 2;
case 12:
- return 0 === (e = Vt(24 & ~t)) ? jt(10, t) : e;
+ return 0 === (e = Vt(24 & ~t)) ? At(10, t) : e;
case 10:
- return 0 === (e = Vt(192 & ~t)) ? jt(8, t) : e;
+ return 0 === (e = Vt(192 & ~t)) ? At(8, t) : e;
case 8:
return (
0 === (e = Vt(3584 & ~t)) &&
@@ -2083,14 +1513,14 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
for (var t = [], n = 0; 31 > n; n++) t.push(e);
return t;
}
- function Wt(e, t, n) {
+ function $t(e, t, n) {
e.pendingLanes |= t;
var r = t - 1;
(e.suspendedLanes &= r),
(e.pingedLanes &= r),
- ((e = e.eventTimes)[(t = 31 - $t(t))] = n);
+ ((e = e.eventTimes)[(t = 31 - Wt(t))] = n);
}
- var $t = Math.clz32
+ var Wt = Math.clz32
? Math.clz32
: function (e) {
return 0 === e ? 32 : (31 - ((Ht(e) / Qt) | 0)) | 0;
@@ -2101,26 +1531,26 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Kt = a.unstable_runWithPriority,
Yt = !0;
function Xt(e, t, n, r) {
- Fe || Ie();
- var l = Jt,
- a = Fe;
- Fe = !0;
+ Ie || Fe();
+ var l = Zt,
+ a = Ie;
+ Ie = !0;
try {
Re(l, e, t, n, r);
} finally {
- (Fe = a) || Ae();
+ (Ie = a) || je();
}
}
function Gt(e, t, n, r) {
- Kt(qt, Jt.bind(null, e, t, n, r));
+ Kt(qt, Zt.bind(null, e, t, n, r));
}
- function Jt(e, t, n, r) {
+ function Zt(e, t, n, r) {
var l;
if (Yt)
if ((l = 0 === (4 & t)) && 0 < ot.length && -1 < pt.indexOf(e))
(e = ht(null, e, t, n, r)), ot.push(e);
else {
- var a = Zt(e, t, n, r);
+ var a = Jt(e, t, n, r);
if (null === a) l && mt(e, r);
else {
if (l) {
@@ -2153,12 +1583,12 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return;
mt(e, r);
}
- Ir(e, t, r, null, n);
+ Fr(e, t, r, null, n);
}
}
}
- function Zt(e, t, n, r) {
- var l = Ce(r);
+ function Jt(e, t, n, r) {
+ var l = _e(r);
if (null !== (l = nl(l))) {
var a = Xe(l);
if (null === a) l = null;
@@ -2174,7 +1604,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
} else a !== l && (l = null);
}
}
- return Ir(e, t, r, l, n), null;
+ return Fr(e, t, r, l, n), null;
}
var en = null,
tn = null,
@@ -2337,7 +1767,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Scroll: \\"ScrollLock\\",
MozPrintableKey: \\"Unidentified\\",
},
- _n = {
+ Cn = {
8: \\"Backspace\\",
9: \\"Tab\\",
12: \\"Clear\\",
@@ -2375,7 +1805,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
145: \\"ScrollLock\\",
224: \\"Meta\\",
},
- Cn = {
+ _n = {
Alt: \\"altKey\\",
Control: \\"ctrlKey\\",
Meta: \\"metaKey\\",
@@ -2385,7 +1815,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
var t = this.nativeEvent;
return t.getModifierState
? t.getModifierState(e)
- : !!(e = Cn[e]) && !!t[e];
+ : !!(e = _n[e]) && !!t[e];
}
function Nn() {
return Pn;
@@ -2401,7 +1831,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
? \\"Enter\\"
: String.fromCharCode(e)
: \\"keydown\\" === e.type || \\"keyup\\" === e.type
- ? _n[e.keyCode] || \\"Unidentified\\"
+ ? Cn[e.keyCode] || \\"Unidentified\\"
: \\"\\";
},
code: 0,
@@ -2477,16 +1907,16 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
deltaZ: 0,
deltaMode: 0,
}),
- In = un(Rn),
+ Fn = un(Rn),
Dn = [9, 13, 27, 32],
- Fn = f && \\"CompositionEvent\\" in window,
+ In = f && \\"CompositionEvent\\" in window,
Un = null;
f && \\"documentMode\\" in document && (Un = document.documentMode);
- var An = f && \\"TextEvent\\" in window && !Un,
- jn = f && (!Fn || (Un && 8 < Un && 11 >= Un)),
+ var jn = f && \\"TextEvent\\" in window && !Un,
+ An = f && (!In || (Un && 8 < Un && 11 >= Un)),
Vn = String.fromCharCode(32),
Bn = !1;
- function Wn(e, t) {
+ function $n(e, t) {
switch (e) {
case \\"keyup\\":
return -1 !== Dn.indexOf(t.keyCode);
@@ -2500,7 +1930,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return !1;
}
}
- function $n(e) {
+ function Wn(e) {
return \\"object\\" === typeof (e = e.detail) && \\"data\\" in e
? e.data
: null;
@@ -2529,7 +1959,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
function Kn(e, t, n, r) {
Le(r),
- 0 < (t = Fr(t, \\"onChange\\")).length &&
+ 0 < (t = Ir(t, \\"onChange\\")).length &&
((n = new pn(\\"onChange\\", \\"change\\", null, n, r)),
e.push({ event: n, listeners: t }));
}
@@ -2538,10 +1968,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
function Gn(e) {
Tr(e, 0);
}
- function Jn(e) {
+ function Zn(e) {
if (G(ll(e))) return e;
}
- function Zn(e, t) {
+ function Jn(e, t) {
if (\\"change\\" === e) return t;
}
var er = !1;
@@ -2562,15 +1992,15 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Yn && (Yn.detachEvent(\\"onpropertychange\\", ar), (Xn = Yn = null));
}
function ar(e) {
- if (\\"value\\" === e.propertyName && Jn(Xn)) {
+ if (\\"value\\" === e.propertyName && Zn(Xn)) {
var t = [];
- if ((Kn(t, Xn, e, Ce(e)), (e = Gn), Fe)) e(t);
+ if ((Kn(t, Xn, e, _e(e)), (e = Gn), Ie)) e(t);
else {
- Fe = !0;
+ Ie = !0;
try {
Me(e, t);
} finally {
- (Fe = !1), Ae();
+ (Ie = !1), je();
}
}
}
@@ -2582,13 +2012,13 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
function ur(e) {
if (\\"selectionchange\\" === e || \\"keyup\\" === e || \\"keydown\\" === e)
- return Jn(Xn);
+ return Zn(Xn);
}
function ir(e, t) {
- if (\\"click\\" === e) return Jn(t);
+ if (\\"click\\" === e) return Zn(t);
}
function sr(e, t) {
- if (\\"input\\" === e || \\"change\\" === e) return Jn(t);
+ if (\\"input\\" === e || \\"change\\" === e) return Zn(t);
}
var cr =
\\"function\\" === typeof Object.is
@@ -2656,14 +2086,14 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
);
}
function vr() {
- for (var e = window, t = J(); t instanceof e.HTMLIFrameElement; ) {
+ for (var e = window, t = Z(); t instanceof e.HTMLIFrameElement; ) {
try {
var n = \\"string\\" === typeof t.contentWindow.location.href;
} catch (r) {
n = !1;
}
if (!n) break;
- t = J((e = t.contentWindow).document);
+ t = Z((e = t.contentWindow).document);
}
return t;
}
@@ -2691,7 +2121,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
n.window === n ? n.document : 9 === n.nodeType ? n : n.ownerDocument;
Sr ||
null == br ||
- br !== J(r) ||
+ br !== Z(r) ||
(\\"selectionStart\\" in (r = br) && gr(r)
? (r = { start: r.selectionStart, end: r.selectionEnd })
: (r = {
@@ -2705,34 +2135,34 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}),
(kr && dr(kr, r)) ||
((kr = r),
- 0 < (r = Fr(wr, \\"onSelect\\")).length &&
+ 0 < (r = Ir(wr, \\"onSelect\\")).length &&
((t = new pn(\\"onSelect\\", \\"select\\", null, t, n)),
e.push({ event: t, listeners: r }),
(t.target = br))));
}
- It(
+ Ft(
\\"cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange\\".split(
\\" \\"
),
0
),
- It(
+ Ft(
\\"drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel\\".split(
\\" \\"
),
1
),
- It(Rt, 2);
+ Ft(Rt, 2);
for (
var xr =
\\"change selectionchange textInput compositionstart compositionend compositionupdate\\".split(
\\" \\"
),
- _r = 0;
- _r < xr.length;
- _r++
+ Cr = 0;
+ Cr < xr.length;
+ Cr++
)
- Mt.set(xr[_r], 0);
+ Mt.set(xr[Cr], 0);
c(\\"onMouseEnter\\", [\\"mouseout\\", \\"mouseover\\"]),
c(\\"onMouseLeave\\", [\\"mouseout\\", \\"mouseover\\"]),
c(\\"onPointerEnter\\", [\\"pointerout\\", \\"pointerover\\"]),
@@ -2771,21 +2201,21 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
\\" \\"
)
);
- var Cr =
+ var _r =
\\"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting\\".split(
\\" \\"
),
Pr = new Set(
- \\"cancel close invalid load scroll toggle\\".split(\\" \\").concat(Cr)
+ \\"cancel close invalid load scroll toggle\\".split(\\" \\").concat(_r)
);
function Nr(e, t, n) {
var r = e.type || \\"unknown-event\\";
(e.currentTarget = n),
(function (e, t, n, r, l, a, u, i, s) {
- if ((Ye.apply(this, arguments), $e)) {
- if (!$e) throw Error(o(198));
+ if ((Ye.apply(this, arguments), We)) {
+ if (!We) throw Error(o(198));
var c = He;
- ($e = !1), (He = null), Qe || ((Qe = !0), (qe = c));
+ (We = !1), (He = null), Qe || ((Qe = !0), (qe = c));
}
})(r, t, void 0, e),
(e.currentTarget = null);
@@ -2860,7 +2290,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
l = Gt;
break;
default:
- l = Jt;
+ l = Zt;
}
(n = l.bind(null, t, n, e)),
(l = void 0),
@@ -2875,7 +2305,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
? e.addEventListener(t, n, { passive: l })
: e.addEventListener(t, n, !1);
}
- function Ir(e, t, n, r, l) {
+ function Fr(e, t, n, r, l) {
var a = r;
if (0 === (1 & t) && 0 === (2 & t) && null !== r)
e: for (;;) {
@@ -2912,11 +2342,11 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
try {
De(e, t, n);
} finally {
- (Ue = !1), Ae();
+ (Ue = !1), je();
}
})(function () {
var r = a,
- l = Ce(n),
+ l = _e(n),
o = [];
e: {
var u = Ot.get(e);
@@ -2980,7 +2410,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
i = mn;
break;
case \\"wheel\\":
- i = In;
+ i = Fn;
break;
case \\"copy\\":
case \\"cut\\":
@@ -3008,7 +2438,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
null !== m &&
((p = m),
null !== d &&
- null != (m = je(h, d)) &&
+ null != (m = Ae(h, d)) &&
c.push(Dr(h, m, p))),
f)
)
@@ -3079,8 +2509,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
c = null;
}
else c = null;
- null !== i && Ar(o, u, i, c, !1),
- null !== s && null !== f && Ar(o, f, s, c, !0);
+ null !== i && jr(o, u, i, c, !1),
+ null !== s && null !== f && jr(o, f, s, c, !0);
}
if (
\\"select\\" ===
@@ -3089,7 +2519,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
u.nodeName.toLowerCase()) ||
(\\"input\\" === i && \\"file\\" === u.type)
)
- var v = Zn;
+ var v = Jn;
else if (qn(u))
if (er) v = sr;
else {
@@ -3135,7 +2565,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Er(o, n, l);
}
var y;
- if (Fn)
+ if (In)
e: {
switch (e) {
case \\"compositionstart\\":
@@ -3152,26 +2582,26 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
else
Hn
- ? Wn(e, n) && (b = \\"onCompositionEnd\\")
+ ? $n(e, n) && (b = \\"onCompositionEnd\\")
: \\"keydown\\" === e &&
229 === n.keyCode &&
(b = \\"onCompositionStart\\");
b &&
- (jn &&
+ (An &&
\\"ko\\" !== n.locale &&
(Hn || \\"onCompositionStart\\" !== b
? \\"onCompositionEnd\\" === b && Hn && (y = rn())
: ((tn = \\"value\\" in (en = l) ? en.value : en.textContent),
(Hn = !0))),
- 0 < (g = Fr(r, b)).length &&
+ 0 < (g = Ir(r, b)).length &&
((b = new En(b, e, null, n, l)),
o.push({ event: b, listeners: g }),
- y ? (b.data = y) : null !== (y = $n(n)) && (b.data = y))),
- (y = An
+ y ? (b.data = y) : null !== (y = Wn(n)) && (b.data = y))),
+ (y = jn
? (function (e, t) {
switch (e) {
case \\"compositionend\\":
- return $n(t);
+ return Wn(t);
case \\"keypress\\":
return 32 !== t.which ? null : ((Bn = !0), Vn);
case \\"textInput\\":
@@ -3182,7 +2612,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
})(e, n)
: (function (e, t) {
if (Hn)
- return \\"compositionend\\" === e || (!Fn && Wn(e, t))
+ return \\"compositionend\\" === e || (!In && $n(e, t))
? ((e = rn()), (nn = tn = en = null), (Hn = !1), e)
: null;
switch (e) {
@@ -3199,10 +2629,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
return null;
case \\"compositionend\\":
- return jn && \\"ko\\" !== t.locale ? null : t.data;
+ return An && \\"ko\\" !== t.locale ? null : t.data;
}
})(e, n)) &&
- 0 < (r = Fr(r, \\"onBeforeInput\\")).length &&
+ 0 < (r = Ir(r, \\"onBeforeInput\\")).length &&
((l = new En(\\"onBeforeInput\\", \\"beforeinput\\", null, n, l)),
o.push({ event: l, listeners: r }),
(l.data = y));
@@ -3213,15 +2643,15 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
function Dr(e, t, n) {
return { instance: e, listener: t, currentTarget: n };
}
- function Fr(e, t) {
+ function Ir(e, t) {
for (var n = t + \\"Capture\\", r = []; null !== e; ) {
var l = e,
a = l.stateNode;
5 === l.tag &&
null !== a &&
((l = a),
- null != (a = je(e, n)) && r.unshift(Dr(e, a, l)),
- null != (a = je(e, t)) && r.push(Dr(e, a, l))),
+ null != (a = Ae(e, n)) && r.unshift(Dr(e, a, l)),
+ null != (a = Ae(e, t)) && r.push(Dr(e, a, l))),
(e = e.return);
}
return r;
@@ -3233,7 +2663,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
} while (e && 5 !== e.tag);
return e || null;
}
- function Ar(e, t, n, r, l) {
+ function jr(e, t, n, r, l) {
for (var a = t._reactName, o = []; null !== n && n !== r; ) {
var u = n,
i = u.alternate,
@@ -3243,16 +2673,16 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
null !== s &&
((u = s),
l
- ? null != (i = je(n, a)) && o.unshift(Dr(n, i, u))
- : l || (null != (i = je(n, a)) && o.push(Dr(n, i, u)))),
+ ? null != (i = Ae(n, a)) && o.unshift(Dr(n, i, u))
+ : l || (null != (i = Ae(n, a)) && o.push(Dr(n, i, u)))),
(n = n.return);
}
0 !== o.length && e.push({ event: t, listeners: o });
}
- function jr() {}
+ function Ar() {}
var Vr = null,
Br = null;
- function Wr(e, t) {
+ function $r(e, t) {
switch (e) {
case \\"button\\":
case \\"input\\":
@@ -3262,7 +2692,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
return !1;
}
- function $r(e, t) {
+ function Wr(e, t) {
return (
\\"textarea\\" === e ||
\\"option\\" === e ||
@@ -3304,21 +2734,21 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
var Xr = 0;
var Gr = Math.random().toString(36).slice(2),
- Jr = \\"__reactFiber$\\" + Gr,
- Zr = \\"__reactProps$\\" + Gr,
+ Zr = \\"__reactFiber$\\" + Gr,
+ Jr = \\"__reactProps$\\" + Gr,
el = \\"__reactContainer$\\" + Gr,
tl = \\"__reactEvents$\\" + Gr;
function nl(e) {
- var t = e[Jr];
+ var t = e[Zr];
if (t) return t;
for (var n = e.parentNode; n; ) {
- if ((t = n[el] || n[Jr])) {
+ if ((t = n[el] || n[Zr])) {
if (
((n = t.alternate),
null !== t.child || (null !== n && null !== n.child))
)
for (e = Yr(e); null !== e; ) {
- if ((n = e[Jr])) return n;
+ if ((n = e[Zr])) return n;
e = Yr(e);
}
return t;
@@ -3328,7 +2758,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return null;
}
function rl(e) {
- return !(e = e[Jr] || e[el]) ||
+ return !(e = e[Zr] || e[el]) ||
(5 !== e.tag && 6 !== e.tag && 13 !== e.tag && 3 !== e.tag)
? null
: e;
@@ -3338,7 +2768,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
throw Error(o(33));
}
function al(e) {
- return e[Zr] || null;
+ return e[Jr] || null;
}
function ol(e) {
var t = e[tl];
@@ -3422,8 +2852,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
var El = null,
xl = null,
- _l = a.unstable_runWithPriority,
- Cl = a.unstable_scheduleCallback,
+ Cl = a.unstable_runWithPriority,
+ _l = a.unstable_scheduleCallback,
Pl = a.unstable_cancelCallback,
Nl = a.unstable_shouldYield,
Tl = a.unstable_requestPaint,
@@ -3432,21 +2862,21 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Ol = a.unstable_ImmediatePriority,
Ml = a.unstable_UserBlockingPriority,
Rl = a.unstable_NormalPriority,
- Il = a.unstable_LowPriority,
+ Fl = a.unstable_LowPriority,
Dl = a.unstable_IdlePriority,
- Fl = {},
+ Il = {},
Ul = void 0 !== Tl ? Tl : function () {},
- Al = null,
jl = null,
+ Al = null,
Vl = !1,
Bl = zl(),
- Wl =
+ $l =
1e4 > Bl
? zl
: function () {
return zl() - Bl;
};
- function $l() {
+ function Wl() {
switch (Ll()) {
case Ol:
return 99;
@@ -3454,7 +2884,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return 98;
case Rl:
return 97;
- case Il:
+ case Fl:
return 96;
case Dl:
return 95;
@@ -3471,7 +2901,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
case 97:
return Rl;
case 96:
- return Il;
+ return Fl;
case 95:
return Dl;
default:
@@ -3479,24 +2909,24 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
}
function Ql(e, t) {
- return (e = Hl(e)), _l(e, t);
+ return (e = Hl(e)), Cl(e, t);
}
function ql(e, t, n) {
- return (e = Hl(e)), Cl(e, t, n);
+ return (e = Hl(e)), _l(e, t, n);
}
function Kl() {
- if (null !== jl) {
- var e = jl;
- (jl = null), Pl(e);
+ if (null !== Al) {
+ var e = Al;
+ (Al = null), Pl(e);
}
Yl();
}
function Yl() {
- if (!Vl && null !== Al) {
+ if (!Vl && null !== jl) {
Vl = !0;
var e = 0;
try {
- var t = Al;
+ var t = jl;
Ql(99, function () {
for (; e < t.length; e++) {
var n = t[e];
@@ -3505,9 +2935,9 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
} while (null !== n);
}
}),
- (Al = null);
+ (jl = null);
} catch (n) {
- throw (null !== Al && (Al = Al.slice(e + 1)), Cl(Ol, Kl), n);
+ throw (null !== jl && (jl = jl.slice(e + 1)), _l(Ol, Kl), n);
} finally {
Vl = !1;
}
@@ -3522,16 +2952,16 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
return t;
}
- var Jl = sl(null),
- Zl = null,
+ var Zl = sl(null),
+ Jl = null,
ea = null,
ta = null;
function na() {
- ta = ea = Zl = null;
+ ta = ea = Jl = null;
}
function ra(e) {
- var t = Jl.current;
- cl(Jl), (e.type._context._currentValue = t);
+ var t = Zl.current;
+ cl(Zl), (e.type._context._currentValue = t);
}
function la(e, t) {
for (; null !== e; ) {
@@ -3544,11 +2974,11 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
}
function aa(e, t) {
- (Zl = e),
+ (Jl = e),
(ta = ea = null),
null !== (e = e.dependencies) &&
null !== e.firstContext &&
- (0 !== (e.lanes & t) && (Fo = !0), (e.firstContext = null));
+ (0 !== (e.lanes & t) && (Io = !0), (e.firstContext = null));
}
function oa(e, t) {
if (ta !== e && !1 !== t && 0 !== t)
@@ -3558,9 +2988,9 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(t = { context: e, observedBits: t, next: null }),
null === ea)
) {
- if (null === Zl) throw Error(o(308));
+ if (null === Jl) throw Error(o(308));
(ea = t),
- (Zl.dependencies = {
+ (Jl.dependencies = {
lanes: 0,
firstContext: t,
responders: null,
@@ -3901,7 +3331,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
)
);
}
- function _a(e) {
+ function Ca(e) {
function t(t, n) {
if (e) {
var r = t.lastEffect;
@@ -4216,8 +3646,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return n(e, r);
};
}
- var Ca = _a(!0),
- Pa = _a(!1),
+ var _a = Ca(!0),
+ Pa = Ca(!1),
Na = {},
Ta = sl(Na),
za = sl(Na),
@@ -4243,7 +3673,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
function Ra() {
cl(Ta), cl(za), cl(La);
}
- function Ia(e) {
+ function Fa(e) {
Oa(La.current);
var t = Oa(Ta.current),
n = he(t, e.type);
@@ -4252,7 +3682,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
function Da(e) {
za.current === e && (cl(Ta), cl(za));
}
- var Fa = sl(0);
+ var Ia = sl(0);
function Ua(e) {
for (var t = e; null !== t; ) {
if (13 === t.tag) {
@@ -4279,11 +3709,11 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
return null;
}
- var Aa = null,
- ja = null,
+ var ja = null,
+ Aa = null,
Va = !1;
function Ba(e, t) {
- var n = $i(5, null, null, 0);
+ var n = Wi(5, null, null, 0);
(n.elementType = \\"DELETED\\"),
(n.type = \\"DELETED\\"),
(n.stateNode = t),
@@ -4293,7 +3723,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
? ((e.lastEffect.nextEffect = n), (e.lastEffect = n))
: (e.firstEffect = e.lastEffect = n);
}
- function Wa(e, t) {
+ function $a(e, t) {
switch (e.tag) {
case 5:
var n = e.type;
@@ -4315,20 +3745,20 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return !1;
}
}
- function $a(e) {
+ function Wa(e) {
if (Va) {
- var t = ja;
+ var t = Aa;
if (t) {
var n = t;
- if (!Wa(e, t)) {
- if (!(t = Kr(n.nextSibling)) || !Wa(e, t))
+ if (!$a(e, t)) {
+ if (!(t = Kr(n.nextSibling)) || !$a(e, t))
return (
- (e.flags = (-1025 & e.flags) | 2), (Va = !1), void (Aa = e)
+ (e.flags = (-1025 & e.flags) | 2), (Va = !1), void (ja = e)
);
- Ba(Aa, n);
+ Ba(ja, n);
}
- (Aa = e), (ja = Kr(t.firstChild));
- } else (e.flags = (-1025 & e.flags) | 2), (Va = !1), (Aa = e);
+ (ja = e), (Aa = Kr(t.firstChild));
+ } else (e.flags = (-1025 & e.flags) | 2), (Va = !1), (ja = e);
}
}
function Ha(e) {
@@ -4338,17 +3768,17 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
)
e = e.return;
- Aa = e;
+ ja = e;
}
function Qa(e) {
- if (e !== Aa) return !1;
+ if (e !== ja) return !1;
if (!Va) return Ha(e), (Va = !0), !1;
var t = e.type;
if (
5 !== e.tag ||
- (\\"head\\" !== t && \\"body\\" !== t && !$r(t, e.memoizedProps))
+ (\\"head\\" !== t && \\"body\\" !== t && !Wr(t, e.memoizedProps))
)
- for (t = ja; t; ) Ba(e, t), (t = Kr(t.nextSibling));
+ for (t = Aa; t; ) Ba(e, t), (t = Kr(t.nextSibling));
if ((Ha(e), 13 === e.tag)) {
if (!(e = null !== (e = e.memoizedState) ? e.dehydrated : null))
throw Error(o(317));
@@ -4358,7 +3788,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
var n = e.data;
if (\\"/$\\" === n) {
if (0 === t) {
- ja = Kr(e.nextSibling);
+ Aa = Kr(e.nextSibling);
break e;
}
t--;
@@ -4366,13 +3796,13 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
e = e.nextSibling;
}
- ja = null;
+ Aa = null;
}
- } else ja = Aa ? Kr(e.stateNode.nextSibling) : null;
+ } else Aa = ja ? Kr(e.stateNode.nextSibling) : null;
return !0;
}
function qa() {
- (ja = Aa = null), (Va = !1);
+ (Aa = ja = null), (Va = !1);
}
var Ka = [];
function Ya() {
@@ -4382,8 +3812,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
var Xa = k.ReactCurrentDispatcher,
Ga = k.ReactCurrentBatchConfig,
- Ja = 0,
- Za = null,
+ Za = 0,
+ Ja = null,
eo = null,
to = null,
no = !1,
@@ -4399,8 +3829,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
function oo(e, t, n, r, l, a) {
if (
- ((Ja = a),
- (Za = t),
+ ((Za = a),
+ (Ja = t),
(t.memoizedState = null),
(t.updateQueue = null),
(t.lanes = 0),
@@ -4414,15 +3844,15 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(a += 1),
(to = eo = null),
(t.updateQueue = null),
- (Xa.current = Io),
+ (Xa.current = Fo),
(e = n(r, l));
} while (ro);
}
if (
((Xa.current = Oo),
(t = null !== eo && null !== eo.next),
- (Ja = 0),
- (to = eo = Za = null),
+ (Za = 0),
+ (to = eo = Ja = null),
(no = !1),
t)
)
@@ -4438,15 +3868,15 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
next: null,
};
return (
- null === to ? (Za.memoizedState = to = e) : (to = to.next = e), to
+ null === to ? (Ja.memoizedState = to = e) : (to = to.next = e), to
);
}
function io() {
if (null === eo) {
- var e = Za.alternate;
+ var e = Ja.alternate;
e = null !== e ? e.memoizedState : null;
} else e = eo.next;
- var t = null === to ? Za.memoizedState : to.next;
+ var t = null === to ? Ja.memoizedState : to.next;
if (null !== t) (to = t), (eo = e);
else {
if (null === e) throw Error(o(310));
@@ -4457,7 +3887,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
queue: eo.queue,
next: null,
}),
- null === to ? (Za.memoizedState = to = e) : (to = to.next = e);
+ null === to ? (Ja.memoizedState = to = e) : (to = to.next = e);
}
return to;
}
@@ -4485,7 +3915,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
s = l;
do {
var c = s.lane;
- if ((Ja & c) === c)
+ if ((Za & c) === c)
null !== i &&
(i = i.next =
{
@@ -4505,13 +3935,13 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
next: null,
};
null === i ? ((u = i = f), (a = r)) : (i = i.next = f),
- (Za.lanes |= c),
+ (Ja.lanes |= c),
(Vu |= c);
}
s = s.next;
} while (null !== s && s !== l);
null === i ? (a = r) : (i.next = u),
- cr(r, t.memoizedState) || (Fo = !0),
+ cr(r, t.memoizedState) || (Io = !0),
(t.memoizedState = r),
(t.baseState = a),
(t.baseQueue = i),
@@ -4533,7 +3963,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
do {
(a = e(a, u.action)), (u = u.next);
} while (u !== l);
- cr(a, t.memoizedState) || (Fo = !0),
+ cr(a, t.memoizedState) || (Io = !0),
(t.memoizedState = a),
null === t.baseQueue && (t.baseState = a),
(n.lastRenderedState = a);
@@ -4548,7 +3978,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(null !== l
? (e = l === r)
: ((e = e.mutableReadLanes),
- (e = (Ja & e) === e) &&
+ (e = (Za & e) === e) &&
((t._workInProgressVersionPrimary = r), Ka.push(t))),
e)
)
@@ -4572,7 +4002,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
h = p.getSnapshot,
m = d.source;
d = d.subscribe;
- var v = Za;
+ var v = Ja;
return (
(e.memoizedState = { refs: p, source: t, subscribe: r }),
i.useEffect(
@@ -4588,7 +4018,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(e = l.mutableReadLanes),
(l.entangledLanes |= e);
for (var r = l.entanglements, o = e; 0 < o; ) {
- var i = 31 - $t(o),
+ var i = 31 - Wt(o),
s = 1 << i;
(r[i] |= e), (o &= ~s);
}
@@ -4621,7 +4051,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
lastRenderedReducer: so,
lastRenderedState: f,
}).dispatch = c =
- Lo.bind(null, Za, e)),
+ Lo.bind(null, Ja, e)),
(s.queue = e),
(s.baseQueue = null),
(f = po(l, t, n)),
@@ -4644,16 +4074,16 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
lastRenderedReducer: so,
lastRenderedState: e,
}).dispatch =
- Lo.bind(null, Za, e)),
+ Lo.bind(null, Ja, e)),
[t.memoizedState, e]
);
}
function go(e, t, n, r) {
return (
(e = { tag: e, create: t, destroy: n, deps: r, next: null }),
- null === (t = Za.updateQueue)
+ null === (t = Ja.updateQueue)
? ((t = { lastEffect: null }),
- (Za.updateQueue = t),
+ (Ja.updateQueue = t),
(t.lastEffect = e.next = e))
: null === (n = t.lastEffect)
? (t.lastEffect = e.next = e)
@@ -4669,7 +4099,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
function wo(e, t, n, r) {
var l = uo();
- (Za.flags |= e),
+ (Ja.flags |= e),
(l.memoizedState = go(1 | t, n, void 0, void 0 === r ? null : r));
}
function ko(e, t, n, r) {
@@ -4681,7 +4111,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
if (((a = o.destroy), null !== r && ao(r, o.deps)))
return void go(t, n, a, r);
}
- (Za.flags |= e), (l.memoizedState = go(1 | t, n, a, r));
+ (Ja.flags |= e), (l.memoizedState = go(1 | t, n, a, r));
}
function So(e, t) {
return wo(516, 4, e, t);
@@ -4692,7 +4122,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
function xo(e, t) {
return ko(4, 2, e, t);
}
- function _o(e, t) {
+ function Co(e, t) {
return \\"function\\" === typeof t
? ((e = e()),
t(e),
@@ -4707,10 +4137,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
})
: void 0;
}
- function Co(e, t, n) {
+ function _o(e, t, n) {
return (
(n = null !== n && void 0 !== n ? n.concat([e]) : null),
- ko(4, 2, _o.bind(null, t, e), n)
+ ko(4, 2, Co.bind(null, t, e), n)
);
}
function Po() {}
@@ -4731,7 +4161,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
: ((e = e()), (n.memoizedState = [e, t]), e);
}
function zo(e, t) {
- var n = $l();
+ var n = Wl();
Ql(98 > n ? 98 : n, function () {
e(!0);
}),
@@ -4760,7 +4190,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(null === o ? (a.next = a) : ((a.next = o.next), (o.next = a)),
(t.pending = a),
(o = e.alternate),
- e === Za || (null !== o && o === Za))
+ e === Ja || (null !== o && o === Ja))
)
ro = no = !0;
else {
@@ -4805,7 +4235,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
useImperativeHandle: function (e, t, n) {
return (
(n = null !== n && void 0 !== n ? n.concat([e]) : null),
- wo(4, 2, _o.bind(null, t, e), n)
+ wo(4, 2, Co.bind(null, t, e), n)
);
},
useLayoutEffect: function (e, t) {
@@ -4832,7 +4262,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
lastRenderedReducer: e,
lastRenderedState: t,
}).dispatch =
- Lo.bind(null, Za, e)),
+ Lo.bind(null, Ja, e)),
[r.memoizedState, e]
);
},
@@ -4879,7 +4309,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
if (Va) {
var e = !1,
t = (function (e) {
- return { $$typeof: I, toString: e, valueOf: e };
+ return { $$typeof: F, toString: e, valueOf: e };
})(function () {
throw (
(e || ((e = !0), n(\\"r:\\" + (Xr++).toString(36))),
@@ -4888,8 +4318,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}),
n = vo(t)[1];
return (
- 0 === (2 & Za.mode) &&
- ((Za.flags |= 516),
+ 0 === (2 & Ja.mode) &&
+ ((Ja.flags |= 516),
go(
5,
function () {
@@ -4910,7 +4340,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
useCallback: No,
useContext: oa,
useEffect: Eo,
- useImperativeHandle: Co,
+ useImperativeHandle: _o,
useLayoutEffect: xo,
useMemo: To,
useReducer: co,
@@ -4949,12 +4379,12 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
},
unstable_isNewReconciler: !1,
},
- Io = {
+ Fo = {
readContext: oa,
useCallback: No,
useContext: oa,
useEffect: Eo,
- useImperativeHandle: Co,
+ useImperativeHandle: _o,
useLayoutEffect: xo,
useMemo: To,
useReducer: fo,
@@ -4994,17 +4424,17 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
unstable_isNewReconciler: !1,
},
Do = k.ReactCurrentOwner,
- Fo = !1;
+ Io = !1;
function Uo(e, t, n, r) {
- t.child = null === e ? Pa(t, null, n, r) : Ca(t, e.child, n, r);
+ t.child = null === e ? Pa(t, null, n, r) : _a(t, e.child, n, r);
}
- function Ao(e, t, n, r, l) {
+ function jo(e, t, n, r, l) {
n = n.render;
var a = t.ref;
return (
aa(t, l),
(r = oo(e, t, n, r, a, l)),
- null === e || Fo
+ null === e || Io
? ((t.flags |= 1), Uo(e, t, r, l), t.child)
: ((t.updateQueue = e.updateQueue),
(t.flags &= -517),
@@ -5012,7 +4442,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
au(e, t, l))
);
}
- function jo(e, t, n, r, l, a) {
+ function Ao(e, t, n, r, l, a) {
if (null === e) {
var o = n.type;
return \\"function\\" !== typeof o ||
@@ -5039,11 +4469,11 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
function Vo(e, t, n, r, l, a) {
if (null !== e && dr(e.memoizedProps, r) && e.ref === t.ref) {
- if (((Fo = !1), 0 === (a & l)))
+ if (((Io = !1), 0 === (a & l)))
return (t.lanes = e.lanes), au(e, t, a);
- 0 !== (16384 & e.flags) && (Fo = !0);
+ 0 !== (16384 & e.flags) && (Io = !0);
}
- return $o(e, t, n, r, a);
+ return Wo(e, t, n, r, a);
}
function Bo(e, t, n) {
var r = t.pendingProps,
@@ -5071,18 +4501,18 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Si(t, r);
return Uo(e, t, l, n), t.child;
}
- function Wo(e, t) {
+ function $o(e, t) {
var n = t.ref;
((null === e && null !== n) || (null !== e && e.ref !== n)) &&
(t.flags |= 128);
}
- function $o(e, t, n, r, l) {
+ function Wo(e, t, n, r, l) {
var a = gl(n) ? ml : pl.current;
return (
(a = vl(t, a)),
aa(t, l),
(n = oo(e, t, n, r, a, l)),
- null === e || Fo
+ null === e || Io
? ((t.flags |= 1), Uo(e, t, n, l), t.child)
: ((t.updateQueue = e.updateQueue),
(t.flags &= -517),
@@ -5205,7 +4635,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return Qo(e, t, n, r, a, l);
}
function Qo(e, t, n, r, l, a) {
- Wo(e, t);
+ $o(e, t);
var o = 0 !== (64 & t.flags);
if (!r && !o) return l && Sl(t, n, !1), au(e, t, a);
(r = t.stateNode), (Do.current = t);
@@ -5216,8 +4646,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return (
(t.flags |= 1),
null !== e && o
- ? ((t.child = Ca(t, e.child, null, a)),
- (t.child = Ca(t, null, u, a)))
+ ? ((t.child = _a(t, e.child, null, a)),
+ (t.child = _a(t, null, u, a)))
: Uo(e, t, u, a),
(t.memoizedState = r.state),
l && Sl(t, n, !0),
@@ -5235,10 +4665,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Yo,
Xo,
Go = { dehydrated: null, retryLane: 0 };
- function Jo(e, t, n) {
+ function Zo(e, t, n) {
var r,
l = t.pendingProps,
- a = Fa.current,
+ a = Ia.current,
o = !1;
return (
(r = 0 !== (64 & t.flags)) ||
@@ -5249,18 +4679,18 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
void 0 === l.fallback ||
!0 === l.unstable_avoidThisFallback ||
(a |= 1),
- fl(Fa, 1 & a),
+ fl(Ia, 1 & a),
null === e
- ? (void 0 !== l.fallback && $a(t),
+ ? (void 0 !== l.fallback && Wa(t),
(e = l.children),
(a = l.fallback),
o
- ? ((e = Zo(t, e, a, n)),
+ ? ((e = Jo(t, e, a, n)),
(t.child.memoizedState = { baseLanes: n }),
(t.memoizedState = Go),
e)
: \\"number\\" === typeof l.unstable_expectedLoadTime
- ? ((e = Zo(t, e, a, n)),
+ ? ((e = Jo(t, e, a, n)),
(t.child.memoizedState = { baseLanes: n }),
(t.memoizedState = Go),
(t.lanes = 33554432),
@@ -5287,7 +4717,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
: ((n = eu(e, t, l.children, n)), (t.memoizedState = null), n))
);
}
- function Zo(e, t, n, r) {
+ function Jo(e, t, n, r) {
var l = e.mode,
a = e.child;
return (
@@ -5370,7 +4800,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
var r = t.pendingProps,
l = r.revealOrder,
a = r.tail;
- if ((Uo(e, t, r.children, n), 0 !== (2 & (r = Fa.current))))
+ if ((Uo(e, t, r.children, n), 0 !== (2 & (r = Ia.current))))
(r = (1 & r) | 2), (t.flags |= 64);
else {
if (null !== e && 0 !== (64 & e.flags))
@@ -5390,7 +4820,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
r &= 1;
}
- if ((fl(Fa, r), 0 === (2 & t.mode))) t.memoizedState = null;
+ if ((fl(Ia, r), 0 === (2 & t.mode))) t.memoizedState = null;
else
switch (l) {
case \\"forwards\\":
@@ -5503,7 +4933,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
if (((e = Oa(Ta.current)), Qa(t))) {
(r = t.stateNode), (n = t.type);
var u = t.memoizedProps;
- switch (((r[Jr] = t), (r[Zr] = u), n)) {
+ switch (((r[Zr] = t), (r[Jr] = u), n)) {
case \\"dialog\\":
zr(\\"cancel\\", r), zr(\\"close\\", r);
break;
@@ -5514,7 +4944,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
break;
case \\"video\\":
case \\"audio\\":
- for (e = 0; e < Cr.length; e++) zr(Cr[e], r);
+ for (e = 0; e < _r.length; e++) zr(_r[e], r);
break;
case \\"source\\":
zr(\\"error\\", r);
@@ -5561,7 +4991,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
case \\"option\\":
break;
default:
- \\"function\\" === typeof u.onClick && (r.onclick = jr);
+ \\"function\\" === typeof u.onClick && (r.onclick = Ar);
}
(r = e), (t.updateQueue = r), null !== r && (t.flags |= 4);
} else {
@@ -5582,11 +5012,11 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
? (s.multiple = !0)
: r.size && (s.size = r.size)))
: (e = s.createElementNS(e, n)),
- (e[Jr] = t),
- (e[Zr] = r),
+ (e[Zr] = t),
+ (e[Jr] = r),
Ko(e, t),
(t.stateNode = e),
- (s = _e(n, r)),
+ (s = Ce(n, r)),
n)
) {
case \\"dialog\\":
@@ -5599,7 +5029,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
break;
case \\"video\\":
case \\"audio\\":
- for (a = 0; a < Cr.length; a++) zr(Cr[a], e);
+ for (a = 0; a < _r.length; a++) zr(_r[a], e);
a = r;
break;
case \\"source\\":
@@ -5614,7 +5044,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
zr(\\"toggle\\", e), (a = r);
break;
case \\"input\\":
- ee(e, r), (a = Z(e, r)), zr(\\"invalid\\", e);
+ ee(e, r), (a = J(e, r)), zr(\\"invalid\\", e);
break;
case \\"option\\":
a = ae(e, r);
@@ -5668,9 +5098,9 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
oe(e, !!r.multiple, r.defaultValue, !0);
break;
default:
- \\"function\\" === typeof a.onClick && (e.onclick = jr);
+ \\"function\\" === typeof a.onClick && (e.onclick = Ar);
}
- Wr(n, r) && (t.flags |= 4);
+ $r(n, r) && (t.flags |= 4);
}
null !== t.ref && (t.flags |= 128);
}
@@ -5685,17 +5115,17 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Qa(t)
? ((r = t.stateNode),
(n = t.memoizedProps),
- (r[Jr] = t),
+ (r[Zr] = t),
r.nodeValue !== n && (t.flags |= 4))
: (((r = (
9 === n.nodeType ? n : n.ownerDocument
- ).createTextNode(r))[Jr] = t),
+ ).createTextNode(r))[Zr] = t),
(t.stateNode = r));
}
return null;
case 13:
return (
- cl(Fa),
+ cl(Ia),
(r = t.memoizedState),
0 !== (64 & t.flags)
? ((t.lanes = n), t)
@@ -5709,12 +5139,12 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
0 !== (2 & t.mode) &&
((null === e &&
!0 !== t.memoizedProps.unstable_avoidThisFallback) ||
- 0 !== (1 & Fa.current)
+ 0 !== (1 & Ia.current)
? 0 === Uu && (Uu = 3)
: ((0 !== Uu && 3 !== Uu) || (Uu = 4),
null === Mu ||
(0 === (134217727 & Vu) && 0 === (134217727 & Bu)) ||
- yi(Mu, Iu))),
+ yi(Mu, Fu))),
(r || n) && (t.flags |= 4),
null)
);
@@ -5723,7 +5153,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
case 10:
return ra(t), null;
case 19:
- if ((cl(Fa), null === (r = t.memoizedState))) return null;
+ if ((cl(Ia), null === (r = t.memoizedState))) return null;
if (((u = 0 !== (64 & t.flags)), null === (s = r.rendering)))
if (u) ou(r, !1);
else {
@@ -5772,12 +5202,12 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
firstContext: e.firstContext,
})),
(n = n.sibling);
- return fl(Fa, (1 & Fa.current) | 2), t.child;
+ return fl(Ia, (1 & Ia.current) | 2), t.child;
}
e = e.sibling;
}
null !== r.tail &&
- Wl() > Qu &&
+ $l() > Qu &&
((t.flags |= 64), (u = !0), ou(r, !1), (t.lanes = 33554432));
}
else {
@@ -5800,7 +5230,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
null
);
} else
- 2 * Wl() - r.renderingStartTime > Qu &&
+ 2 * $l() - r.renderingStartTime > Qu &&
1073741824 !== n &&
((t.flags |= 64),
(u = !0),
@@ -5816,10 +5246,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(r.rendering = n),
(r.tail = n.sibling),
(r.lastEffect = t.lastEffect),
- (r.renderingStartTime = Wl()),
+ (r.renderingStartTime = $l()),
(n.sibling = null),
- (t = Fa.current),
- fl(Fa, u ? (1 & t) | 2 : 1 & t),
+ (t = Ia.current),
+ fl(Ia, u ? (1 & t) | 2 : 1 & t),
n)
: null;
case 23:
@@ -5849,11 +5279,11 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return Da(e), null;
case 13:
return (
- cl(Fa),
+ cl(Ia),
4096 & (t = e.flags) ? ((e.flags = (-4097 & t) | 64), e) : null
);
case 19:
- return cl(Fa), null;
+ return cl(Ia), null;
case 4:
return Ra(), null;
case 10:
@@ -5910,7 +5340,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
u = null;
switch (n) {
case \\"input\\":
- (a = Z(e, a)), (r = Z(e, r)), (u = []);
+ (a = J(e, a)), (r = J(e, r)), (u = []);
break;
case \\"option\\":
(a = ae(e, a)), (r = ae(e, r)), (u = []);
@@ -5926,7 +5356,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
default:
\\"function\\" !== typeof a.onClick &&
\\"function\\" === typeof r.onClick &&
- (e.onclick = jr);
+ (e.onclick = Ar);
}
for (f in (xe(n, r), (n = null), a))
if (!r.hasOwnProperty(f) && a.hasOwnProperty(f) && null != a[f])
@@ -5975,7 +5405,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
u || s === c || (u = []))
: \\"object\\" === typeof c &&
null !== c &&
- c.$$typeof === I
+ c.$$typeof === F
? c.toString()
: (u = u || []).push(f, c));
}
@@ -6013,7 +5443,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
\\"function\\" === typeof a.componentDidCatch &&
(n.callback = function () {
\\"function\\" !== typeof r &&
- (null === Ju ? (Ju = new Set([this])) : Ju.add(this), cu(0, t));
+ (null === Zu ? (Zu = new Set([this])) : Zu.add(this), cu(0, t));
var e = t.stack;
this.componentDidCatch(t.value, {
componentStack: null !== e ? e : \\"\\",
@@ -6030,7 +5460,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
try {
t(null);
} catch (n) {
- ji(e, n);
+ Ai(e, n);
}
else t.current = null;
}
@@ -6088,7 +5518,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(r = l.next),
0 !== (4 & (l = l.tag)) &&
0 !== (1 & l) &&
- (Fi(n, e), Di(n, e)),
+ (Ii(n, e), Di(n, e)),
(e = r);
} while (e !== t);
}
@@ -6127,7 +5557,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
void (
null === t &&
4 & n.flags &&
- Wr(n.type, n.memoizedProps) &&
+ $r(n.type, n.memoizedProps) &&
e.focus()
)
);
@@ -6205,13 +5635,13 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
var r = n,
l = r.destroy;
if (((r = r.tag), void 0 !== l))
- if (0 !== (4 & r)) Fi(t, n);
+ if (0 !== (4 & r)) Ii(t, n);
else {
r = t;
try {
l();
} catch (a) {
- ji(r, a);
+ Ai(r, a);
}
}
n = n.next;
@@ -6228,14 +5658,14 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(e.state = t.memoizedState),
e.componentWillUnmount();
} catch (a) {
- ji(t, a);
+ Ai(t, a);
}
break;
case 5:
mu(t);
break;
case 4:
- _u(e, t);
+ Cu(e, t);
}
}
function wu(e) {
@@ -6312,7 +5742,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
: (t = n).appendChild(e),
(null !== (n = n._reactRootContainer) && void 0 !== n) ||
null !== t.onclick ||
- (t.onclick = jr));
+ (t.onclick = Ar));
else if (4 !== r && null !== (e = e.child))
for (Eu(e, t, n), e = e.sibling; null !== e; )
Eu(e, t, n), (e = e.sibling);
@@ -6327,7 +5757,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
for (xu(e, t, n), e = e.sibling; null !== e; )
xu(e, t, n), (e = e.sibling);
}
- function _u(e, t) {
+ function Cu(e, t) {
for (var n, r, l = t, a = !1; ; ) {
if (!a) {
a = l.return;
@@ -6385,7 +5815,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(l.sibling.return = l.return), (l = l.sibling);
}
}
- function Cu(e, t) {
+ function _u(e, t) {
switch (t.tag) {
case 0:
case 11:
@@ -6414,13 +5844,13 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
var a = t.updateQueue;
if (((t.updateQueue = null), null !== a)) {
for (
- n[Zr] = r,
+ n[Jr] = r,
\\"input\\" === e &&
\\"radio\\" === r.type &&
null != r.name &&
te(n, r),
- _e(e, l),
- t = _e(e, r),
+ Ce(e, l),
+ t = Ce(e, r),
l = 0;
l < a.length;
l += 2
@@ -6465,7 +5895,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
);
case 13:
return (
- null !== t.memoizedState && ((Hu = Wl()), yu(t.child, !0)),
+ null !== t.memoizedState && ((Hu = $l()), yu(t.child, !0)),
void Pu(t)
);
case 19:
@@ -6502,27 +5932,27 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Ou = 0,
Mu = null,
Ru = null,
- Iu = 0,
+ Fu = 0,
Du = 0,
- Fu = sl(0),
+ Iu = sl(0),
Uu = 0,
- Au = null,
- ju = 0,
+ ju = null,
+ Au = 0,
Vu = 0,
Bu = 0,
- Wu = 0,
- $u = null,
+ $u = 0,
+ Wu = null,
Hu = 0,
Qu = 1 / 0;
function qu() {
- Qu = Wl() + 500;
+ Qu = $l() + 500;
}
var Ku,
Yu = null,
Xu = !1,
Gu = null,
- Ju = null,
- Zu = !1,
+ Zu = null,
+ Ju = !1,
ei = null,
ti = 90,
ni = [],
@@ -6536,13 +5966,13 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
ci = null,
fi = !1;
function di() {
- return 0 !== (48 & Ou) ? Wl() : -1 !== ui ? ui : (ui = Wl());
+ return 0 !== (48 & Ou) ? $l() : -1 !== ui ? ui : (ui = $l());
}
function pi(e) {
if (0 === (2 & (e = e.mode))) return 1;
- if (0 === (4 & e)) return 99 === $l() ? 1 : 2;
- if ((0 === ii && (ii = ju), 0 !== Xl.transition)) {
- 0 !== si && (si = null !== $u ? $u.pendingLanes : 0), (e = ii);
+ if (0 === (4 & e)) return 99 === Wl() ? 1 : 2;
+ if ((0 === ii && (ii = Au), 0 !== Xl.transition)) {
+ 0 !== si && (si = null !== Wu ? Wu.pendingLanes : 0), (e = ii);
var t = 4186112 & ~si;
return (
0 === (t &= -t) &&
@@ -6552,10 +5982,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
);
}
return (
- (e = $l()),
+ (e = Wl()),
0 !== (4 & Ou) && 98 === e
- ? (e = jt(12, ii))
- : (e = jt(
+ ? (e = At(12, ii))
+ : (e = At(
(e = (function (e) {
switch (e) {
case 99:
@@ -6579,8 +6009,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
function hi(e, t, n) {
if (50 < ai) throw ((ai = 0), (oi = null), Error(o(185)));
if (null === (e = mi(e, t))) return null;
- Wt(e, t, n), e === Mu && ((Bu |= t), 4 === Uu && yi(e, Iu));
- var r = $l();
+ $t(e, t, n), e === Mu && ((Bu |= t), 4 === Uu && yi(e, Fu));
+ var r = Wl();
1 === t
? 0 !== (8 & Ou) && 0 === (48 & Ou)
? bi(e)
@@ -6589,7 +6019,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(98 !== r && 99 !== r) ||
(null === li ? (li = new Set([e])) : li.add(e)),
vi(e, n)),
- ($u = e);
+ (Wu = e);
}
function mi(e, t) {
e.lanes |= t;
@@ -6611,32 +6041,32 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
0 < u;
) {
- var i = 31 - $t(u),
+ var i = 31 - Wt(u),
s = 1 << i,
c = a[i];
if (-1 === c) {
if (0 === (s & r) || 0 !== (s & l)) {
- (c = t), Ft(s);
+ (c = t), It(s);
var f = Dt;
a[i] = 10 <= f ? c + 250 : 6 <= f ? c + 5e3 : -1;
}
} else c <= t && (e.expiredLanes |= s);
u &= ~s;
}
- if (((r = Ut(e, e === Mu ? Iu : 0)), (t = Dt), 0 === r))
+ if (((r = Ut(e, e === Mu ? Fu : 0)), (t = Dt), 0 === r))
null !== n &&
- (n !== Fl && Pl(n),
+ (n !== Il && Pl(n),
(e.callbackNode = null),
(e.callbackPriority = 0));
else {
if (null !== n) {
if (e.callbackPriority === t) return;
- n !== Fl && Pl(n);
+ n !== Il && Pl(n);
}
15 === t
? ((n = bi.bind(null, e)),
- null === Al ? ((Al = [n]), (jl = Cl(Ol, Yl))) : Al.push(n),
- (n = Fl))
+ null === jl ? ((jl = [n]), (Al = _l(Ol, Yl))) : jl.push(n),
+ (n = Il))
: 14 === t
? (n = ql(99, bi.bind(null, e)))
: ((n = (function (e) {
@@ -6674,26 +6104,26 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
function gi(e) {
if (((ui = -1), (si = ii = 0), 0 !== (48 & Ou))) throw Error(o(327));
var t = e.callbackNode;
- if (Ii() && e.callbackNode !== t) return null;
- var n = Ut(e, e === Mu ? Iu : 0);
+ if (Fi() && e.callbackNode !== t) return null;
+ var n = Ut(e, e === Mu ? Fu : 0);
if (0 === n) return null;
var r = n,
l = Ou;
Ou |= 16;
- var a = Ci();
- for ((Mu === e && Iu === r) || (qu(), xi(e, r)); ; )
+ var a = _i();
+ for ((Mu === e && Fu === r) || (qu(), xi(e, r)); ; )
try {
Ti();
break;
} catch (i) {
- _i(e, i);
+ Ci(e, i);
}
if (
(na(),
(zu.current = a),
(Ou = l),
- null !== Ru ? (r = 0) : ((Mu = null), (Iu = 0), (r = Uu)),
- 0 !== (ju & Bu))
+ null !== Ru ? (r = 0) : ((Mu = null), (Fu = 0), (r = Uu)),
+ 0 !== (Au & Bu))
)
xi(e, 0);
else if (0 !== r) {
@@ -6701,10 +6131,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(2 === r &&
((Ou |= 64),
e.hydrate && ((e.hydrate = !1), qr(e.containerInfo)),
- 0 !== (n = At(e)) && (r = Pi(e, n))),
+ 0 !== (n = jt(e)) && (r = Pi(e, n))),
1 === r)
)
- throw ((t = Au), xi(e, 0), yi(e, n), vi(e, Wl()), t);
+ throw ((t = ju), xi(e, 0), yi(e, n), vi(e, $l()), t);
switch (
((e.finishedWork = e.current.alternate), (e.finishedLanes = n), r)
) {
@@ -6717,7 +6147,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
break;
case 3:
if (
- (yi(e, n), (62914560 & n) === n && 10 < (r = Hu + 500 - Wl()))
+ (yi(e, n), (62914560 & n) === n && 10 < (r = Hu + 500 - $l()))
) {
if (0 !== Ut(e, 0)) break;
if (((l = e.suspendedLanes) & n) !== n) {
@@ -6732,14 +6162,14 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
case 4:
if ((yi(e, n), (4186112 & n) === n)) break;
for (r = e.eventTimes, l = -1; 0 < n; ) {
- var u = 31 - $t(n);
+ var u = 31 - Wt(n);
(a = 1 << u), (u = r[u]) > l && (l = u), (n &= ~a);
}
if (
((n = l),
10 <
(n =
- (120 > (n = Wl() - n)
+ (120 > (n = $l() - n)
? 120
: 480 > n
? 480
@@ -6762,11 +6192,11 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
throw Error(o(329));
}
}
- return vi(e, Wl()), e.callbackNode === t ? gi.bind(null, e) : null;
+ return vi(e, $l()), e.callbackNode === t ? gi.bind(null, e) : null;
}
function yi(e, t) {
for (
- t &= ~Wu,
+ t &= ~$u,
t &= ~Bu,
e.suspendedLanes |= t,
e.pingedLanes &= ~t,
@@ -6774,32 +6204,32 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
0 < t;
) {
- var n = 31 - $t(t),
+ var n = 31 - Wt(t),
r = 1 << n;
(e[n] = -1), (t &= ~r);
}
}
function bi(e) {
if (0 !== (48 & Ou)) throw Error(o(327));
- if ((Ii(), e === Mu && 0 !== (e.expiredLanes & Iu))) {
- var t = Iu,
+ if ((Fi(), e === Mu && 0 !== (e.expiredLanes & Fu))) {
+ var t = Fu,
n = Pi(e, t);
- 0 !== (ju & Bu) && (n = Pi(e, (t = Ut(e, t))));
+ 0 !== (Au & Bu) && (n = Pi(e, (t = Ut(e, t))));
} else n = Pi(e, (t = Ut(e, 0)));
if (
(0 !== e.tag &&
2 === n &&
((Ou |= 64),
e.hydrate && ((e.hydrate = !1), qr(e.containerInfo)),
- 0 !== (t = At(e)) && (n = Pi(e, t))),
+ 0 !== (t = jt(e)) && (n = Pi(e, t))),
1 === n)
)
- throw ((n = Au), xi(e, 0), yi(e, t), vi(e, Wl()), n);
+ throw ((n = ju), xi(e, 0), yi(e, t), vi(e, $l()), n);
return (
(e.finishedWork = e.current.alternate),
(e.finishedLanes = t),
Oi(e),
- vi(e, Wl()),
+ vi(e, $l()),
null
);
}
@@ -6822,10 +6252,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
}
function Si(e, t) {
- fl(Fu, Du), (Du |= t), (ju |= t);
+ fl(Iu, Du), (Du |= t), (Au |= t);
}
function Ei() {
- (Du = Fu.current), cl(Fu);
+ (Du = Iu.current), cl(Iu);
}
function xi(e, t) {
(e.finishedWork = null), (e.finishedLanes = 0);
@@ -6848,7 +6278,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
break;
case 13:
case 19:
- cl(Fa);
+ cl(Ia);
break;
case 10:
ra(r);
@@ -6861,30 +6291,30 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
(Mu = e),
(Ru = Qi(e.current, null)),
- (Iu = Du = ju = t),
+ (Fu = Du = Au = t),
(Uu = 0),
- (Au = null),
- (Wu = Bu = Vu = 0);
+ (ju = null),
+ ($u = Bu = Vu = 0);
}
- function _i(e, t) {
+ function Ci(e, t) {
for (;;) {
var n = Ru;
try {
if ((na(), (Xa.current = Oo), no)) {
- for (var r = Za.memoizedState; null !== r; ) {
+ for (var r = Ja.memoizedState; null !== r; ) {
var l = r.queue;
null !== l && (l.pending = null), (r = r.next);
}
no = !1;
}
if (
- ((Ja = 0),
- (to = eo = Za = null),
+ ((Za = 0),
+ (to = eo = Ja = null),
(ro = !1),
(Lu.current = null),
null === n || null === n.return)
) {
- (Uu = 1), (Au = t), (Ru = null);
+ (Uu = 1), (ju = t), (Ru = null);
break;
}
e: {
@@ -6893,7 +6323,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
u = n,
i = t;
if (
- ((t = Iu),
+ ((t = Fu),
(u.flags |= 2048),
(u.firstEffect = u.lastEffect = null),
null !== i &&
@@ -6909,7 +6339,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(u.lanes = c.lanes))
: ((u.updateQueue = null), (u.memoizedState = null));
}
- var f = 0 !== (1 & Fa.current),
+ var f = 0 !== (1 & Ia.current),
d = o;
do {
var p;
@@ -6988,7 +6418,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(\\"function\\" === typeof k.getDerivedStateFromError ||
(null !== S &&
\\"function\\" === typeof S.componentDidCatch &&
- (null === Ju || !Ju.has(S))))
+ (null === Zu || !Zu.has(S))))
) {
(d.flags |= 4096),
(t &= -t),
@@ -7008,24 +6438,24 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
break;
}
}
- function Ci() {
+ function _i() {
var e = zu.current;
return (zu.current = Oo), null === e ? Oo : e;
}
function Pi(e, t) {
var n = Ou;
Ou |= 16;
- var r = Ci();
- for ((Mu === e && Iu === t) || xi(e, t); ; )
+ var r = _i();
+ for ((Mu === e && Fu === t) || xi(e, t); ; )
try {
Ni();
break;
} catch (l) {
- _i(e, l);
+ Ci(e, l);
}
if ((na(), (Ou = n), (zu.current = r), null !== Ru))
throw Error(o(261));
- return (Mu = null), (Iu = 0), Uu;
+ return (Mu = null), (Fu = 0), Uu;
}
function Ni() {
for (; null !== Ru; ) zi(Ru);
@@ -7078,12 +6508,12 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
0 === Uu && (Uu = 5);
}
function Oi(e) {
- var t = $l();
+ var t = Wl();
return Ql(99, Mi.bind(null, e, t)), null;
}
function Mi(e, t) {
do {
- Ii();
+ Fi();
} while (null !== ei);
if (0 !== (48 & Ou)) throw Error(o(327));
var n = e.finishedWork;
@@ -7102,13 +6532,13 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(e.entangledLanes &= l),
(l = e.entanglements);
for (var u = e.eventTimes, i = e.expirationTimes; 0 < a; ) {
- var s = 31 - $t(a),
+ var s = 31 - Wt(a),
c = 1 << s;
(l[s] = 0), (u[s] = -1), (i[s] = -1), (a &= ~c);
}
if (
(null !== li && 0 === (24 & r) && li.has(e) && li.delete(e),
- e === Mu && ((Ru = Mu = null), (Iu = 0)),
+ e === Mu && ((Ru = Mu = null), (Fu = 0)),
1 < n.flags
? null !== n.lastEffect
? ((n.lastEffect.nextEffect = n), (r = n.firstEffect))
@@ -7136,7 +6566,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(c = c.focusOffset);
try {
i.nodeType, s.nodeType;
- } catch (C) {
+ } catch (_) {
i = null;
break e;
}
@@ -7181,9 +6611,9 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
do {
try {
Ri();
- } catch (C) {
+ } catch (_) {
if (null === Yu) throw Error(o(330));
- ji(Yu, C), (Yu = Yu.nextEffect);
+ Ai(Yu, _), (Yu = Yu.nextEffect);
}
} while (null !== Yu);
(ci = null), (Yu = r);
@@ -7204,27 +6634,27 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
Su(Yu), (Yu.flags &= -3);
break;
case 6:
- Su(Yu), (Yu.flags &= -3), Cu(Yu.alternate, Yu);
+ Su(Yu), (Yu.flags &= -3), _u(Yu.alternate, Yu);
break;
case 1024:
Yu.flags &= -1025;
break;
case 1028:
- (Yu.flags &= -1025), Cu(Yu.alternate, Yu);
+ (Yu.flags &= -1025), _u(Yu.alternate, Yu);
break;
case 4:
- Cu(Yu.alternate, Yu);
+ _u(Yu.alternate, Yu);
break;
case 8:
- _u(u, (i = Yu));
+ Cu(u, (i = Yu));
var S = i.alternate;
wu(i), null !== S && wu(S);
}
Yu = Yu.nextEffect;
}
- } catch (C) {
+ } catch (_) {
if (null === Yu) throw Error(o(330));
- ji(Yu, C), (Yu = Yu.nextEffect);
+ Ai(Yu, _), (Yu = Yu.nextEffect);
}
} while (null !== Yu);
if (
@@ -7287,22 +6717,22 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
w = void 0;
var x = Yu.ref;
if (null !== x) {
- var _ = Yu.stateNode;
+ var C = Yu.stateNode;
Yu.tag,
- (w = _),
+ (w = C),
\\"function\\" === typeof x ? x(w) : (x.current = w);
}
}
Yu = Yu.nextEffect;
}
- } catch (C) {
+ } catch (_) {
if (null === Yu) throw Error(o(330));
- ji(Yu, C), (Yu = Yu.nextEffect);
+ Ai(Yu, _), (Yu = Yu.nextEffect);
}
} while (null !== Yu);
(Yu = null), Ul(), (Ou = l);
} else e.current = n;
- if (Zu) (Zu = !1), (ei = e), (ti = t);
+ if (Ju) (Ju = !1), (ei = e), (ti = t);
else
for (Yu = r; null !== Yu; )
(t = Yu.nextEffect),
@@ -7310,15 +6740,15 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
8 & Yu.flags && (((E = Yu).sibling = null), (E.stateNode = null)),
(Yu = t);
if (
- (0 === (r = e.pendingLanes) && (Ju = null),
+ (0 === (r = e.pendingLanes) && (Zu = null),
1 === r ? (e === oi ? ai++ : ((ai = 0), (oi = e))) : (ai = 0),
(n = n.stateNode),
xl && \\"function\\" === typeof xl.onCommitFiberRoot)
)
try {
xl.onCommitFiberRoot(El, n, void 0, 64 === (64 & n.current.flags));
- } catch (C) {}
- if ((vi(e, Wl()), Xu)) throw ((Xu = !1), (e = Gu), (Gu = null), e);
+ } catch (_) {}
+ if ((vi(e, $l()), Xu)) throw ((Xu = !1), (e = Gu), (Gu = null), e);
return 0 !== (8 & Ou) || Kl(), null;
}
function Ri() {
@@ -7332,15 +6762,15 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
var t = Yu.flags;
0 !== (256 & t) && vu(e, Yu),
0 === (512 & t) ||
- Zu ||
- ((Zu = !0),
+ Ju ||
+ ((Ju = !0),
ql(97, function () {
- return Ii(), null;
+ return Fi(), null;
})),
(Yu = Yu.nextEffect);
}
}
- function Ii() {
+ function Fi() {
if (90 !== ti) {
var e = 97 < ti ? 97 : ti;
return (ti = 90), Ql(e, Ui);
@@ -7349,18 +6779,18 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
function Di(e, t) {
ni.push(t, e),
- Zu ||
- ((Zu = !0),
+ Ju ||
+ ((Ju = !0),
ql(97, function () {
- return Ii(), null;
+ return Fi(), null;
}));
}
- function Fi(e, t) {
+ function Ii(e, t) {
ri.push(t, e),
- Zu ||
- ((Zu = !0),
+ Ju ||
+ ((Ju = !0),
ql(97, function () {
- return Ii(), null;
+ return Fi(), null;
}));
}
function Ui() {
@@ -7380,7 +6810,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
u();
} catch (s) {
if (null === a) throw Error(o(330));
- ji(a, s);
+ Ai(a, s);
}
}
for (n = ni, ni = [], r = 0; r < n.length; r += 2) {
@@ -7390,7 +6820,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
l.destroy = i();
} catch (s) {
if (null === a) throw Error(o(330));
- ji(a, s);
+ Ai(a, s);
}
}
for (i = e.current.firstEffect; null !== i; )
@@ -7400,17 +6830,17 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(i = e);
return (Ou = t), Kl(), !0;
}
- function Ai(e, t, n) {
+ function ji(e, t, n) {
fa(e, (t = du(0, (t = su(n, t)), 1))),
(t = di()),
- null !== (e = mi(e, 1)) && (Wt(e, 1, t), vi(e, t));
+ null !== (e = mi(e, 1)) && ($t(e, 1, t), vi(e, t));
}
- function ji(e, t) {
- if (3 === e.tag) Ai(e, e, t);
+ function Ai(e, t) {
+ if (3 === e.tag) ji(e, e, t);
else
for (var n = e.return; null !== n; ) {
if (3 === n.tag) {
- Ai(n, e, t);
+ ji(n, e, t);
break;
}
if (1 === n.tag) {
@@ -7418,14 +6848,14 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
if (
\\"function\\" === typeof n.type.getDerivedStateFromError ||
(\\"function\\" === typeof r.componentDidCatch &&
- (null === Ju || !Ju.has(r)))
+ (null === Zu || !Zu.has(r)))
) {
var l = pu(n, (e = su(t, e)), 1);
if ((fa(n, l), (l = di()), null !== (n = mi(n, 1))))
- Wt(n, 1, l), vi(n, l);
+ $t(n, 1, l), vi(n, l);
else if (
\\"function\\" === typeof r.componentDidCatch &&
- (null === Ju || !Ju.has(r))
+ (null === Zu || !Zu.has(r))
)
try {
r.componentDidCatch(t, e);
@@ -7442,10 +6872,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(t = di()),
(e.pingedLanes |= e.suspendedLanes & n),
Mu === e &&
- (Iu & n) === n &&
- (4 === Uu || (3 === Uu && (62914560 & Iu) === Iu && 500 > Wl() - Hu)
+ (Fu & n) === n &&
+ (4 === Uu || (3 === Uu && (62914560 & Fu) === Fu && 500 > $l() - Hu)
? xi(e, 0)
- : (Wu |= n)),
+ : ($u |= n)),
vi(e, t);
}
function Bi(e, t) {
@@ -7455,13 +6885,13 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(0 === (2 & (t = e.mode))
? (t = 1)
: 0 === (4 & t)
- ? (t = 99 === $l() ? 1 : 2)
- : (0 === ii && (ii = ju),
+ ? (t = 99 === Wl() ? 1 : 2)
+ : (0 === ii && (ii = Au),
0 === (t = Vt(62914560 & ~ii)) && (t = 4194304))),
(n = di()),
- null !== (e = mi(e, t)) && (Wt(e, t, n), vi(e, n));
+ null !== (e = mi(e, t)) && ($t(e, t, n), vi(e, n));
}
- function Wi(e, t, n, r) {
+ function $i(e, t, n, r) {
(this.tag = e),
(this.key = n),
(this.sibling =
@@ -7485,8 +6915,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(this.childLanes = this.lanes = 0),
(this.alternate = null);
}
- function $i(e, t, n, r) {
- return new Wi(e, t, n, r);
+ function Wi(e, t, n, r) {
+ return new $i(e, t, n, r);
}
function Hi(e) {
return !(!(e = e.prototype) || !e.isReactComponent);
@@ -7495,7 +6925,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
var n = e.alternate;
return (
null === n
- ? (((n = $i(e.tag, t, e.key, e.mode)).elementType = e.elementType),
+ ? (((n = Wi(e.tag, t, e.key, e.mode)).elementType = e.elementType),
(n.type = e.type),
(n.stateNode = e.stateNode),
(n.alternate = e),
@@ -7534,29 +6964,29 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
case D:
(u = 8), (l |= 16);
break;
- case _:
+ case C:
(u = 8), (l |= 1);
break;
- case C:
+ case _:
return (
- ((e = $i(12, n, t, 8 | l)).elementType = C),
- (e.type = C),
+ ((e = Wi(12, n, t, 8 | l)).elementType = _),
+ (e.type = _),
(e.lanes = a),
e
);
case z:
return (
- ((e = $i(13, n, t, l)).type = z),
+ ((e = Wi(13, n, t, l)).type = z),
(e.elementType = z),
(e.lanes = a),
e
);
case L:
- return ((e = $i(19, n, t, l)).elementType = L), (e.lanes = a), e;
- case F:
+ return ((e = Wi(19, n, t, l)).elementType = L), (e.lanes = a), e;
+ case I:
return Yi(n, l, a, t);
case U:
- return ((e = $i(24, n, t, l)).elementType = U), (e.lanes = a), e;
+ return ((e = Wi(24, n, t, l)).elementType = U), (e.lanes = a), e;
default:
if (\\"object\\" === typeof e && null !== e)
switch (e.$$typeof) {
@@ -7582,21 +7012,21 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
throw Error(o(130, null == e ? e : typeof e, \\"\\"));
}
return (
- ((t = $i(u, n, t, l)).elementType = e), (t.type = r), (t.lanes = a), t
+ ((t = Wi(u, n, t, l)).elementType = e), (t.type = r), (t.lanes = a), t
);
}
function Ki(e, t, n, r) {
- return ((e = $i(7, e, r, t)).lanes = n), e;
+ return ((e = Wi(7, e, r, t)).lanes = n), e;
}
function Yi(e, t, n, r) {
- return ((e = $i(23, e, r, t)).elementType = F), (e.lanes = n), e;
+ return ((e = Wi(23, e, r, t)).elementType = I), (e.lanes = n), e;
}
function Xi(e, t, n) {
- return ((e = $i(6, e, null, t)).lanes = n), e;
+ return ((e = Wi(6, e, null, t)).lanes = n), e;
}
function Gi(e, t, n) {
return (
- ((t = $i(4, null !== e.children ? e.children : [], e.key, t)).lanes =
+ ((t = Wi(4, null !== e.children ? e.children : [], e.key, t)).lanes =
n),
(t.stateNode = {
containerInfo: e.containerInfo,
@@ -7606,7 +7036,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
t
);
}
- function Ji(e, t, n) {
+ function Zi(e, t, n) {
(this.tag = t),
(this.containerInfo = e),
(this.finishedWork =
@@ -7632,7 +7062,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(this.entanglements = Bt(0)),
(this.mutableSourceEagerHydrationData = null);
}
- function Zi(e, t, n) {
+ function Ji(e, t, n) {
var r =
3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
return {
@@ -7704,8 +7134,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
n.hydrationOptions.mutableSources) ||
null;
if (
- ((n = new Ji(e, t, null != n && !0 === n.hydrate)),
- (t = $i(3, null, null, 2 === t ? 7 : 1 === t ? 3 : 0)),
+ ((n = new Zi(e, t, null != n && !0 === n.hydrate)),
+ (t = Wi(3, null, null, 2 === t ? 7 : 1 === t ? 3 : 0)),
(n.current = t),
(t.stateNode = n),
ia(t),
@@ -7783,20 +7213,20 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
var n =
2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
if (!as(t)) throw Error(o(200));
- return Zi(e, t, null, n);
+ return Ji(e, t, null, n);
}
(Ku = function (e, t, n) {
var r = t.lanes;
if (null !== e)
- if (e.memoizedProps !== t.pendingProps || hl.current) Fo = !0;
+ if (e.memoizedProps !== t.pendingProps || hl.current) Io = !0;
else {
if (0 === (n & r)) {
- switch (((Fo = !1), t.tag)) {
+ switch (((Io = !1), t.tag)) {
case 3:
qo(t), qa();
break;
case 5:
- Ia(t);
+ Fa(t);
break;
case 1:
gl(t.type) && kl(t);
@@ -7807,15 +7237,15 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
case 10:
r = t.memoizedProps.value;
var l = t.type._context;
- fl(Jl, l._currentValue), (l._currentValue = r);
+ fl(Zl, l._currentValue), (l._currentValue = r);
break;
case 13:
if (null !== t.memoizedState)
return 0 !== (n & t.child.childLanes)
- ? Jo(e, t, n)
- : (fl(Fa, 1 & Fa.current),
+ ? Zo(e, t, n)
+ : (fl(Ia, 1 & Ia.current),
null !== (t = au(e, t, n)) ? t.sibling : null);
- fl(Fa, 1 & Fa.current);
+ fl(Ia, 1 & Ia.current);
break;
case 19:
if (((r = 0 !== (n & t.childLanes)), 0 !== (64 & e.flags))) {
@@ -7827,7 +7257,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
((l.rendering = null),
(l.tail = null),
(l.lastEffect = null)),
- fl(Fa, Fa.current),
+ fl(Ia, Ia.current),
r)
)
break;
@@ -7838,9 +7268,9 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
}
return au(e, t, n);
}
- Fo = 0 !== (16384 & e.flags);
+ Io = 0 !== (16384 & e.flags);
}
- else Fo = !1;
+ else Io = !1;
switch (((t.lanes = 0), t.tag)) {
case 2:
if (
@@ -7900,16 +7330,16 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
a)
) {
case 0:
- t = $o(null, t, l, e, n);
+ t = Wo(null, t, l, e, n);
break e;
case 1:
t = Ho(null, t, l, e, n);
break e;
case 11:
- t = Ao(null, t, l, e, n);
+ t = jo(null, t, l, e, n);
break e;
case 14:
- t = jo(null, t, l, Gl(l.type, e), r, n);
+ t = Ao(null, t, l, Gl(l.type, e), r, n);
break e;
}
throw Error(o(306, l, \\"\\"));
@@ -7919,7 +7349,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return (
(r = t.type),
(l = t.pendingProps),
- $o(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
+ Wo(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
);
case 1:
return (
@@ -7941,8 +7371,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
else {
if (
((a = (l = t.stateNode).hydrate) &&
- ((ja = Kr(t.stateNode.containerInfo.firstChild)),
- (Aa = t),
+ ((Aa = Kr(t.stateNode.containerInfo.firstChild)),
+ (ja = t),
(a = Va = !0)),
a)
) {
@@ -7958,33 +7388,33 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
return t;
case 5:
return (
- Ia(t),
- null === e && $a(t),
+ Fa(t),
+ null === e && Wa(t),
(r = t.type),
(l = t.pendingProps),
(a = null !== e ? e.memoizedProps : null),
(u = l.children),
- $r(r, l) ? (u = null) : null !== a && $r(r, a) && (t.flags |= 16),
- Wo(e, t),
+ Wr(r, l) ? (u = null) : null !== a && Wr(r, a) && (t.flags |= 16),
+ $o(e, t),
Uo(e, t, u, n),
t.child
);
case 6:
- return null === e && $a(t), null;
+ return null === e && Wa(t), null;
case 13:
- return Jo(e, t, n);
+ return Zo(e, t, n);
case 4:
return (
Ma(t, t.stateNode.containerInfo),
(r = t.pendingProps),
- null === e ? (t.child = Ca(t, null, r, n)) : Uo(e, t, r, n),
+ null === e ? (t.child = _a(t, null, r, n)) : Uo(e, t, r, n),
t.child
);
case 11:
return (
(r = t.type),
(l = t.pendingProps),
- Ao(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
+ jo(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
);
case 7:
return Uo(e, t, t.pendingProps, n), t.child;
@@ -7998,7 +7428,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(u = t.memoizedProps),
(a = l.value);
var i = t.type._context;
- if ((fl(Jl, i._currentValue), (i._currentValue = a), null !== u))
+ if ((fl(Zl, i._currentValue), (i._currentValue = a), null !== u))
if (
((i = u.value),
0 ===
@@ -8063,7 +7493,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
case 14:
return (
(a = Gl((l = t.type), t.pendingProps)),
- jo(e, t, l, (a = Gl(l.type, a)), r, n)
+ Ao(e, t, l, (a = Gl(l.type, a)), r, n)
);
case 15:
return Vo(e, t, t.type, t.pendingProps, r, n);
@@ -8154,19 +7584,19 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
0 === (Ou = a) && (qu(), Kl());
}
}),
- (Ie = function () {
+ (Fe = function () {
0 === (49 & Ou) &&
((function () {
if (null !== li) {
var e = li;
(li = null),
e.forEach(function (e) {
- (e.expiredLanes |= 24 & e.pendingLanes), vi(e, Wl());
+ (e.expiredLanes |= 24 & e.pendingLanes), vi(e, $l());
});
}
Kl();
})(),
- Ii());
+ Fi());
}),
(De = function (e, t) {
var n = Ou;
@@ -8177,7 +7607,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
0 === (Ou = n) && (qu(), Kl());
}
});
- var is = { Events: [rl, ll, al, Le, Oe, Ii, { current: !1 }] },
+ var is = { Events: [rl, ll, al, Le, Oe, Fi, { current: !1 }] },
ss = {
findFiberByHostInstance: nl,
bundleType: 0,
@@ -8199,7 +7629,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
scheduleUpdate: null,
currentDispatcherRef: k.ReactCurrentDispatcher,
findHostInstanceByFiber: function (e) {
- return null === (e = Ze(e)) ? null : e.stateNode;
+ return null === (e = Je(e)) ? null : e.stateNode;
},
findFiberByHostInstance:
ss.findFiberByHostInstance ||
@@ -8219,1173 +7649,1227 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1`
(El = fs.inject(cs)), (xl = fs);
} catch (ve) {}
}
- (t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = is),
- (t.createPortal = us),
- (t.findDOMNode = function (e) {
- if (null == e) return null;
- if (1 === e.nodeType) return e;
- var t = e._reactInternals;
- if (void 0 === t) {
- if (\\"function\\" === typeof e.render) throw Error(o(188));
- throw Error(o(268, Object.keys(e)));
- }
- return (e = null === (e = Ze(t)) ? null : e.stateNode);
- }),
- (t.flushSync = function (e, t) {
- var n = Ou;
- if (0 !== (48 & n)) return e(t);
- Ou |= 1;
+ t.render = function (e, t, n) {
+ if (!as(t)) throw Error(o(200));
+ return os(null, e, t, !1, n);
+ };
+ },
+ 788: (e, t, n) => {
+ !(function e() {
+ if (
+ \\"undefined\\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
+ \\"function\\" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE
+ )
try {
- if (e) return Ql(99, e.bind(null, t));
- } finally {
- (Ou = n), Kl();
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e);
+ } catch (t) {
+ console.error(t);
}
- }),
- (t.hydrate = function (e, t, n) {
- if (!as(t)) throw Error(o(200));
- return os(null, e, t, !0, n);
- }),
- (t.render = function (e, t, n) {
- if (!as(t)) throw Error(o(200));
- return os(null, e, t, !1, n);
- }),
- (t.unmountComponentAtNode = function (e) {
- if (!as(e)) throw Error(o(40));
- return (
- !!e._reactRootContainer &&
- (ki(function () {
- os(null, null, e, !1, function () {
- (e._reactRootContainer = null), (e[el] = null);
- });
- }),
- !0)
- );
- }),
- (t.unstable_batchedUpdates = wi),
- (t.unstable_createPortal = function (e, t) {
- return us(
- e,
- t,
- 2 < arguments.length && void 0 !== arguments[2]
- ? arguments[2]
- : null
- );
- }),
- (t.unstable_renderSubtreeIntoContainer = function (e, t, n, r) {
- if (!as(n)) throw Error(o(200));
- if (null == e || void 0 === e._reactInternals) throw Error(o(38));
- return os(e, t, n, !1, r);
- }),
- (t.version = \\"17.0.2\\");
- },
- function (e, t, n) {
- \\"use strict\\";
- e.exports = n(6);
+ })(),
+ (e.exports = n(975));
},
- function (e, t, n) {
- \\"use strict\\";
- var r, l, a, o;
- if (
- \\"object\\" === typeof performance &&
- \\"function\\" === typeof performance.now
- ) {
- var u = performance;
- t.unstable_now = function () {
- return u.now();
- };
- } else {
- var i = Date,
- s = i.now();
- t.unstable_now = function () {
- return i.now() - s;
- };
+ 447: (e, t, n) => {
+ var r = n(516),
+ l = 60103,
+ a = 60106;
+ (t.Fragment = 60107), (t.StrictMode = 60108), (t.Profiler = 60114);
+ var o = 60109,
+ u = 60110,
+ i = 60112;
+ t.Suspense = 60113;
+ var s = 60115,
+ c = 60116;
+ if (\\"function\\" === typeof Symbol && Symbol.for) {
+ var f = Symbol.for;
+ (l = f(\\"react.element\\")),
+ (a = f(\\"react.portal\\")),
+ (t.Fragment = f(\\"react.fragment\\")),
+ (t.StrictMode = f(\\"react.strict_mode\\")),
+ (t.Profiler = f(\\"react.profiler\\")),
+ (o = f(\\"react.provider\\")),
+ (u = f(\\"react.context\\")),
+ (i = f(\\"react.forward_ref\\")),
+ (t.Suspense = f(\\"react.suspense\\")),
+ (s = f(\\"react.memo\\")),
+ (c = f(\\"react.lazy\\"));
}
- if (
- \\"undefined\\" === typeof window ||
- \\"function\\" !== typeof MessageChannel
- ) {
- var c = null,
- f = null,
- d = function () {
- if (null !== c)
- try {
- var e = t.unstable_now();
- c(!0, e), (c = null);
- } catch (n) {
- throw (setTimeout(d, 0), n);
- }
- };
- (r = function (e) {
- null !== c ? setTimeout(r, 0, e) : ((c = e), setTimeout(d, 0));
- }),
- (l = function (e, t) {
- f = setTimeout(e, t);
- }),
- (a = function () {
- clearTimeout(f);
- }),
- (t.unstable_shouldYield = function () {
+ var d = \\"function\\" === typeof Symbol && Symbol.iterator;
+ function p(e) {
+ for (
+ var t = \\"https://reactjs.org/docs/error-decoder.html?invariant=\\" + e,
+ n = 1;
+ n < arguments.length;
+ n++
+ )
+ t += \\"&args[]=\\" + encodeURIComponent(arguments[n]);
+ return (
+ \\"Minified React error #\\" +
+ e +
+ \\"; visit \\" +
+ t +
+ \\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\\"
+ );
+ }
+ var h = {
+ isMounted: function () {
return !1;
- }),
- (o = t.unstable_forceFrameRate = function () {});
- } else {
- var p = window.setTimeout,
- h = window.clearTimeout;
- if (\\"undefined\\" !== typeof console) {
- var m = window.cancelAnimationFrame;
- \\"function\\" !== typeof window.requestAnimationFrame &&
- console.error(
- \\"This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\\"
- ),
- \\"function\\" !== typeof m &&
- console.error(
- \\"This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\\"
- );
- }
- var v = !1,
- g = null,
- y = -1,
- b = 5,
- w = 0;
- (t.unstable_shouldYield = function () {
- return t.unstable_now() >= w;
+ },
+ enqueueForceUpdate: function () {},
+ enqueueReplaceState: function () {},
+ enqueueSetState: function () {},
+ },
+ m = {};
+ function v(e, t, n) {
+ (this.props = e),
+ (this.context = t),
+ (this.refs = m),
+ (this.updater = n || h);
+ }
+ function g() {}
+ function y(e, t, n) {
+ (this.props = e),
+ (this.context = t),
+ (this.refs = m),
+ (this.updater = n || h);
+ }
+ (v.prototype.isReactComponent = {}),
+ (v.prototype.setState = function (e, t) {
+ if (\\"object\\" !== typeof e && \\"function\\" !== typeof e && null != e)
+ throw Error(p(85));
+ this.updater.enqueueSetState(this, e, t, \\"setState\\");
}),
- (o = function () {}),
- (t.unstable_forceFrameRate = function (e) {
- 0 > e || 125 < e
- ? console.error(
- \\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\\"
- )
- : (b = 0 < e ? Math.floor(1e3 / e) : 5);
- });
- var k = new MessageChannel(),
- S = k.port2;
- (k.port1.onmessage = function () {
- if (null !== g) {
- var e = t.unstable_now();
- w = e + b;
- try {
- g(!0, e) ? S.postMessage(null) : ((v = !1), (g = null));
- } catch (n) {
- throw (S.postMessage(null), n);
- }
- } else v = !1;
+ (v.prototype.forceUpdate = function (e) {
+ this.updater.enqueueForceUpdate(this, e, \\"forceUpdate\\");
}),
- (r = function (e) {
- (g = e), v || ((v = !0), S.postMessage(null));
- }),
- (l = function (e, n) {
- y = p(function () {
- e(t.unstable_now());
- }, n);
- }),
- (a = function () {
- h(y), (y = -1);
- });
- }
- function E(e, t) {
- var n = e.length;
- e.push(t);
- e: for (;;) {
- var r = (n - 1) >>> 1,
- l = e[r];
- if (!(void 0 !== l && 0 < C(l, t))) break e;
- (e[r] = t), (e[n] = l), (n = r);
+ (g.prototype = v.prototype);
+ var b = (y.prototype = new g());
+ (b.constructor = y), r(b, v.prototype), (b.isPureReactComponent = !0);
+ var w = { current: null },
+ k = Object.prototype.hasOwnProperty,
+ S = { key: !0, ref: !0, __self: !0, __source: !0 };
+ function E(e, t, n) {
+ var r,
+ a = {},
+ o = null,
+ u = null;
+ if (null != t)
+ for (r in (void 0 !== t.ref && (u = t.ref),
+ void 0 !== t.key && (o = \\"\\" + t.key),
+ t))
+ k.call(t, r) && !S.hasOwnProperty(r) && (a[r] = t[r]);
+ var i = arguments.length - 2;
+ if (1 === i) a.children = n;
+ else if (1 < i) {
+ for (var s = Array(i), c = 0; c < i; c++) s[c] = arguments[c + 2];
+ a.children = s;
}
+ if (e && e.defaultProps)
+ for (r in (i = e.defaultProps)) void 0 === a[r] && (a[r] = i[r]);
+ return {
+ $$typeof: l,
+ type: e,
+ key: o,
+ ref: u,
+ props: a,
+ _owner: w.current,
+ };
}
function x(e) {
- return void 0 === (e = e[0]) ? null : e;
+ return \\"object\\" === typeof e && null !== e && e.$$typeof === l;
}
- function _(e) {
- var t = e[0];
- if (void 0 !== t) {
- var n = e.pop();
- if (n !== t) {
- e[0] = n;
- e: for (var r = 0, l = e.length; r < l; ) {
- var a = 2 * (r + 1) - 1,
- o = e[a],
- u = a + 1,
- i = e[u];
- if (void 0 !== o && 0 > C(o, n))
- void 0 !== i && 0 > C(i, o)
- ? ((e[r] = i), (e[u] = n), (r = u))
- : ((e[r] = o), (e[a] = n), (r = a));
- else {
- if (!(void 0 !== i && 0 > C(i, n))) break e;
- (e[r] = i), (e[u] = n), (r = u);
+ var C = /\\\\/+/g;
+ function _(e, t) {
+ return \\"object\\" === typeof e && null !== e && null != e.key
+ ? (function (e) {
+ var t = { \\"=\\": \\"=0\\", \\":\\": \\"=2\\" };
+ return (
+ \\"$\\" +
+ e.replace(/[=:]/g, function (e) {
+ return t[e];
+ })
+ );
+ })(\\"\\" + e.key)
+ : t.toString(36);
+ }
+ function P(e, t, n, r, o) {
+ var u = typeof e;
+ (\\"undefined\\" !== u && \\"boolean\\" !== u) || (e = null);
+ var i = !1;
+ if (null === e) i = !0;
+ else
+ switch (u) {
+ case \\"string\\":
+ case \\"number\\":
+ i = !0;
+ break;
+ case \\"object\\":
+ switch (e.$$typeof) {
+ case l:
+ case a:
+ i = !0;
}
- }
}
- return t;
- }
- return null;
- }
- function C(e, t) {
- var n = e.sortIndex - t.sortIndex;
- return 0 !== n ? n : e.id - t.id;
- }
- var P = [],
- N = [],
- T = 1,
- z = null,
- L = 3,
- O = !1,
- M = !1,
- R = !1;
- function I(e) {
- for (var t = x(N); null !== t; ) {
- if (null === t.callback) _(N);
- else {
- if (!(t.startTime <= e)) break;
- _(N), (t.sortIndex = t.expirationTime), E(P, t);
+ if (i)
+ return (
+ (o = o((i = e))),
+ (e = \\"\\" === r ? \\".\\" + _(i, 0) : r),
+ Array.isArray(o)
+ ? ((n = \\"\\"),
+ null != e && (n = e.replace(C, \\"$&/\\") + \\"/\\"),
+ P(o, t, n, \\"\\", function (e) {
+ return e;
+ }))
+ : null != o &&
+ (x(o) &&
+ (o = (function (e, t) {
+ return {
+ $$typeof: l,
+ type: e.type,
+ key: t,
+ ref: e.ref,
+ props: e.props,
+ _owner: e._owner,
+ };
+ })(
+ o,
+ n +
+ (!o.key || (i && i.key === o.key)
+ ? \\"\\"
+ : (\\"\\" + o.key).replace(C, \\"$&/\\") + \\"/\\") +
+ e
+ )),
+ t.push(o)),
+ 1
+ );
+ if (((i = 0), (r = \\"\\" === r ? \\".\\" : r + \\":\\"), Array.isArray(e)))
+ for (var s = 0; s < e.length; s++) {
+ var c = r + _((u = e[s]), s);
+ i += P(u, t, n, c, o);
}
- t = x(N);
- }
+ else if (
+ ((c = (function (e) {
+ return null === e || \\"object\\" !== typeof e
+ ? null
+ : \\"function\\" === typeof (e = (d && e[d]) || e[\\"@@iterator\\"])
+ ? e
+ : null;
+ })(e)),
+ \\"function\\" === typeof c)
+ )
+ for (e = c.call(e), s = 0; !(u = e.next()).done; )
+ i += P((u = u.value), t, n, (c = r + _(u, s++)), o);
+ else if (\\"object\\" === u)
+ throw (
+ ((t = \\"\\" + e),
+ Error(
+ p(
+ 31,
+ \\"[object Object]\\" === t
+ ? \\"object with keys {\\" + Object.keys(e).join(\\", \\") + \\"}\\"
+ : t
+ )
+ ))
+ );
+ return i;
}
- function D(e) {
- if (((R = !1), I(e), !M))
- if (null !== x(P)) (M = !0), r(F);
- else {
- var t = x(N);
- null !== t && l(D, t.startTime - e);
- }
+ function N(e, t, n) {
+ if (null == e) return e;
+ var r = [],
+ l = 0;
+ return (
+ P(e, r, \\"\\", \\"\\", function (e) {
+ return t.call(n, e, l++);
+ }),
+ r
+ );
}
- function F(e, n) {
- (M = !1), R && ((R = !1), a()), (O = !0);
- var r = L;
- try {
- for (
- I(n), z = x(P);
- null !== z &&
- (!(z.expirationTime > n) || (e && !t.unstable_shouldYield()));
-
- ) {
- var o = z.callback;
- if (\\"function\\" === typeof o) {
- (z.callback = null), (L = z.priorityLevel);
- var u = o(z.expirationTime <= n);
- (n = t.unstable_now()),
- \\"function\\" === typeof u ? (z.callback = u) : z === x(P) && _(P),
- I(n);
- } else _(P);
- z = x(P);
- }
- if (null !== z) var i = !0;
- else {
- var s = x(N);
- null !== s && l(D, s.startTime - n), (i = !1);
- }
- return i;
- } finally {
- (z = null), (L = r), (O = !1);
+ function T(e) {
+ if (-1 === e._status) {
+ var t = e._result;
+ (t = t()),
+ (e._status = 0),
+ (e._result = t),
+ t.then(
+ function (t) {
+ 0 === e._status &&
+ ((t = t.default), (e._status = 1), (e._result = t));
+ },
+ function (t) {
+ 0 === e._status && ((e._status = 2), (e._result = t));
+ }
+ );
}
+ if (1 === e._status) return e._result;
+ throw e._result;
}
- var U = o;
- (t.unstable_IdlePriority = 5),
- (t.unstable_ImmediatePriority = 1),
- (t.unstable_LowPriority = 4),
- (t.unstable_NormalPriority = 3),
- (t.unstable_Profiling = null),
- (t.unstable_UserBlockingPriority = 2),
- (t.unstable_cancelCallback = function (e) {
- e.callback = null;
- }),
- (t.unstable_continueExecution = function () {
- M || O || ((M = !0), r(F));
- }),
- (t.unstable_getCurrentPriorityLevel = function () {
- return L;
- }),
- (t.unstable_getFirstCallbackNode = function () {
- return x(P);
- }),
- (t.unstable_next = function (e) {
- switch (L) {
- case 1:
- case 2:
- case 3:
- var t = 3;
- break;
- default:
- t = L;
- }
- var n = L;
- L = t;
- try {
- return e();
- } finally {
- L = n;
- }
- }),
- (t.unstable_pauseExecution = function () {}),
- (t.unstable_requestPaint = U),
- (t.unstable_runWithPriority = function (e, t) {
- switch (e) {
- case 1:
- case 2:
- case 3:
- case 4:
- case 5:
- break;
- default:
- e = 3;
+ var z = { current: null };
+ function L() {
+ var e = z.current;
+ if (null === e) throw Error(p(321));
+ return e;
+ }
+ var O = {
+ ReactCurrentDispatcher: z,
+ ReactCurrentBatchConfig: { transition: 0 },
+ ReactCurrentOwner: w,
+ IsSomeRendererActing: { current: !1 },
+ assign: r,
+ };
+ (t.Children = {
+ map: N,
+ forEach: function (e, t, n) {
+ N(
+ e,
+ function () {
+ t.apply(this, arguments);
+ },
+ n
+ );
+ },
+ count: function (e) {
+ var t = 0;
+ return (
+ N(e, function () {
+ t++;
+ }),
+ t
+ );
+ },
+ toArray: function (e) {
+ return (
+ N(e, function (e) {
+ return e;
+ }) || []
+ );
+ },
+ only: function (e) {
+ if (!x(e)) throw Error(p(143));
+ return e;
+ },
+ }),
+ (t.Component = v),
+ (t.PureComponent = y),
+ (t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = O),
+ (t.cloneElement = function (e, t, n) {
+ if (null === e || void 0 === e) throw Error(p(267, e));
+ var a = r({}, e.props),
+ o = e.key,
+ u = e.ref,
+ i = e._owner;
+ if (null != t) {
+ if (
+ (void 0 !== t.ref && ((u = t.ref), (i = w.current)),
+ void 0 !== t.key && (o = \\"\\" + t.key),
+ e.type && e.type.defaultProps)
+ )
+ var s = e.type.defaultProps;
+ for (c in t)
+ k.call(t, c) &&
+ !S.hasOwnProperty(c) &&
+ (a[c] = void 0 === t[c] && void 0 !== s ? s[c] : t[c]);
}
- var n = L;
- L = e;
- try {
- return t();
- } finally {
- L = n;
+ var c = arguments.length - 2;
+ if (1 === c) a.children = n;
+ else if (1 < c) {
+ s = Array(c);
+ for (var f = 0; f < c; f++) s[f] = arguments[f + 2];
+ a.children = s;
}
+ return {
+ $$typeof: l,
+ type: e.type,
+ key: o,
+ ref: u,
+ props: a,
+ _owner: i,
+ };
}),
- (t.unstable_scheduleCallback = function (e, n, o) {
- var u = t.unstable_now();
- switch (
- (\\"object\\" === typeof o && null !== o
- ? (o = \\"number\\" === typeof (o = o.delay) && 0 < o ? u + o : u)
- : (o = u),
- e)
- ) {
- case 1:
- var i = -1;
- break;
- case 2:
- i = 250;
- break;
- case 5:
- i = 1073741823;
- break;
- case 4:
- i = 1e4;
- break;
- default:
- i = 5e3;
- }
+ (t.createContext = function (e, t) {
return (
- (e = {
- id: T++,
- callback: n,
- priorityLevel: e,
- startTime: o,
- expirationTime: (i = o + i),
- sortIndex: -1,
- }),
- o > u
- ? ((e.sortIndex = o),
- E(N, e),
- null === x(P) &&
- e === x(N) &&
- (R ? a() : (R = !0), l(D, o - u)))
- : ((e.sortIndex = i), E(P, e), M || O || ((M = !0), r(F))),
- e
+ void 0 === t && (t = null),
+ ((e = {
+ $$typeof: u,
+ _calculateChangedBits: t,
+ _currentValue: e,
+ _currentValue2: e,
+ _threadCount: 0,
+ Provider: null,
+ Consumer: null,
+ }).Provider = { $$typeof: o, _context: e }),
+ (e.Consumer = e)
);
}),
- (t.unstable_wrapCallback = function (e) {
- var t = L;
- return function () {
- var n = L;
- L = t;
- try {
- return e.apply(this, arguments);
- } finally {
- L = n;
- }
+ (t.createElement = E),
+ (t.createFactory = function (e) {
+ var t = E.bind(null, e);
+ return (t.type = e), t;
+ }),
+ (t.createRef = function () {
+ return { current: null };
+ }),
+ (t.forwardRef = function (e) {
+ return { $$typeof: i, render: e };
+ }),
+ (t.isValidElement = x),
+ (t.lazy = function (e) {
+ return {
+ $$typeof: c,
+ _payload: { _status: -1, _result: e },
+ _init: T,
};
- });
+ }),
+ (t.memo = function (e, t) {
+ return { $$typeof: s, type: e, compare: void 0 === t ? null : t };
+ }),
+ (t.useCallback = function (e, t) {
+ return L().useCallback(e, t);
+ }),
+ (t.useContext = function (e, t) {
+ return L().useContext(e, t);
+ }),
+ (t.useDebugValue = function () {}),
+ (t.useEffect = function (e, t) {
+ return L().useEffect(e, t);
+ }),
+ (t.useImperativeHandle = function (e, t, n) {
+ return L().useImperativeHandle(e, t, n);
+ }),
+ (t.useLayoutEffect = function (e, t) {
+ return L().useLayoutEffect(e, t);
+ }),
+ (t.useMemo = function (e, t) {
+ return L().useMemo(e, t);
+ }),
+ (t.useReducer = function (e, t, n) {
+ return L().useReducer(e, t, n);
+ }),
+ (t.useRef = function (e) {
+ return L().useRef(e);
+ }),
+ (t.useState = function (e) {
+ return L().useState(e);
+ }),
+ (t.version = \\"17.0.2\\");
},
- ],
-]);
-//# sourceMappingURL=2.dd7fe2ee.chunk.js.map
-"
-`;
-
-exports[`When working with a nested app can generate a js/main.8b9be32b.chunk.js 1`] = `
-"(this[\\"webpackJsonp@scoped/sample-app\\"] =
- this[\\"webpackJsonp@scoped/sample-app\\"] || []).push([
- [0],
- {
- 7: function (M, L, j) {},
- 8: function (M, L, j) {},
- 9: function (M, L, j) {
- \\"use strict\\";
- j.r(L);
- var N = j(0),
- I = j(2);
- j(7);
- var u = function () {
- return N.createElement(
- \\"div\\",
- { className: \\"App\\" },
- N.createElement(
- \\"header\\",
- { className: \\"App-header\\" },
- N.createElement(\\"img\\", {
- src: \\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4NDEuOSA1OTUuMyI+CiAgICA8ZyBmaWxsPSIjNjFEQUZCIj4KICAgICAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgICAgIDxjaXJjbGUgY3g9IjQyMC45IiBjeT0iMjk2LjUiIHI9IjQ1LjciLz4KICAgICAgICA8cGF0aCBkPSJNNTIwLjUgNzguMXoiLz4KICAgIDwvZz4KPC9zdmc+Cg==\\",
- className: \\"App-logo\\",
- alt: \\"logo\\",
- }),
- N.createElement(
- \\"p\\",
- null,
- \\"Edit \\",
- N.createElement(\\"code\\", null, \\"src/App.tsx\\"),
- \\" and save to reload.\\"
- ),
- N.createElement(
- \\"a\\",
- {
- className: \\"App-link\\",
- href: \\"https://reactjs.org\\",
- target: \\"_blank\\",
- rel: \\"noopener noreferrer\\",
- },
- \\"Learn React\\"
- )
- )
- );
- };
- j(8);
- I.render(
- N.createElement(N.StrictMode, null, N.createElement(u, null)),
- document.getElementById(\\"root\\")
- );
+ 735: (e, t, n) => {
+ e.exports = n(447);
},
- },
- [[9, 1, 2]],
-]);
-//# sourceMappingURL=main.8b9be32b.chunk.js.map
-"
-`;
-
-exports[`When working with a nested app can generate a js/runtime-main.c80b6939.js 1`] = `
-"!(function (e) {
- function r(r) {
- for (
- var n, p, l = r[0], a = r[1], f = r[2], c = 0, s = [];
- c < l.length;
- c++
- )
- (p = l[c]),
- Object.prototype.hasOwnProperty.call(o, p) && o[p] && s.push(o[p][0]),
- (o[p] = 0);
- for (n in a) Object.prototype.hasOwnProperty.call(a, n) && (e[n] = a[n]);
- for (i && i(r); s.length; ) s.shift()();
- return u.push.apply(u, f || []), t();
- }
- function t() {
- for (var e, r = 0; r < u.length; r++) {
- for (var t = u[r], n = !0, l = 1; l < t.length; l++) {
- var a = t[l];
- 0 !== o[a] && (n = !1);
- }
- n && (u.splice(r--, 1), (e = p((p.s = t[0]))));
- }
- return e;
- }
- var n = {},
- o = { 1: 0 },
- u = [];
- function p(r) {
- if (n[r]) return n[r].exports;
- var t = (n[r] = { i: r, l: !1, exports: {} });
- return e[r].call(t.exports, t, t.exports, p), (t.l = !0), t.exports;
- }
- (p.m = e),
- (p.c = n),
- (p.d = function (e, r, t) {
- p.o(e, r) || Object.defineProperty(e, r, { enumerable: !0, get: t });
- }),
- (p.r = function (e) {
- \\"undefined\\" !== typeof Symbol &&
- Symbol.toStringTag &&
- Object.defineProperty(e, Symbol.toStringTag, { value: \\"Module\\" }),
- Object.defineProperty(e, \\"__esModule\\", { value: !0 });
- }),
- (p.t = function (e, r) {
- if ((1 & r && (e = p(e)), 8 & r)) return e;
- if (4 & r && \\"object\\" === typeof e && e && e.__esModule) return e;
- var t = Object.create(null);
+ 666: (e, t) => {
+ var n, r, l, a;
if (
- (p.r(t),
- Object.defineProperty(t, \\"default\\", { enumerable: !0, value: e }),
- 2 & r && \\"string\\" != typeof e)
- )
- for (var n in e)
- p.d(
- t,
- n,
- function (r) {
- return e[r];
- }.bind(null, n)
- );
- return t;
- }),
- (p.n = function (e) {
- var r =
- e && e.__esModule
- ? function () {
- return e.default;
- }
- : function () {
- return e;
- };
- return p.d(r, \\"a\\", r), r;
- }),
- (p.o = function (e, r) {
- return Object.prototype.hasOwnProperty.call(e, r);
- }),
- (p.p = \\"/\\");
- var l = (this[\\"webpackJsonp@scoped/sample-app\\"] =
- this[\\"webpackJsonp@scoped/sample-app\\"] || []),
- a = l.push.bind(l);
- (l.push = r), (l = l.slice());
- for (var f = 0; f < l.length; f++) r(l[f]);
- var i = a;
- t();
-})([]);
-//# sourceMappingURL=runtime-main.c80b6939.js.map
-"
-`;
-
-exports[`When working with a nested app can generate a manifest 1`] = `
-"{
- \\"short_name\\": \\"React App\\",
- \\"name\\": \\"Create React App Sample\\",
- \\"icons\\": [
- {
- \\"src\\": \\"favicon.ico\\",
- \\"sizes\\": \\"64x64 32x32 24x24 16x16\\",
- \\"type\\": \\"image/x-icon\\"
- },
- {
- \\"src\\": \\"logo192.png\\",
- \\"type\\": \\"image/png\\",
- \\"sizes\\": \\"192x192\\"
- },
- {
- \\"src\\": \\"logo512.png\\",
- \\"type\\": \\"image/png\\",
- \\"sizes\\": \\"512x512\\"
- }
- ],
- \\"start_url\\": \\".\\",
- \\"display\\": \\"standalone\\",
- \\"theme_color\\": \\"#000000\\",
- \\"background_color\\": \\"#ffffff\\"
-}
-"
-`;
-
-exports[`when working with an app can generate a asset-manifest 1`] = `
-"{
- \\"files\\": {
- \\"main.css\\": \\"/static/css/main.a0f92c83.chunk.css\\",
- \\"main.js\\": \\"/static/js/main.8247c019.chunk.js\\",
- \\"main.js.map\\": \\"/static/js/main.8247c019.chunk.js.map\\",
- \\"runtime-main.js\\": \\"/static/js/runtime-main.dc96e42d.js\\",
- \\"runtime-main.js.map\\": \\"/static/js/runtime-main.dc96e42d.js.map\\",
- \\"static/js/2.42603bbe.chunk.js\\": \\"/static/js/2.42603bbe.chunk.js\\",
- \\"static/js/2.42603bbe.chunk.js.map\\": \\"/static/js/2.42603bbe.chunk.js.map\\",
- \\"index.html\\": \\"/index.html\\",
- \\"static/css/main.a0f92c83.chunk.css.map\\": \\"/static/css/main.a0f92c83.chunk.css.map\\",
- \\"static/js/2.42603bbe.chunk.js.LICENSE.txt\\": \\"/static/js/2.42603bbe.chunk.js.LICENSE.txt\\"
- },
- \\"entrypoints\\": [
- \\"static/js/runtime-main.dc96e42d.js\\",
- \\"static/js/2.42603bbe.chunk.js\\",
- \\"static/css/main.a0f92c83.chunk.css\\",
- \\"static/js/main.8247c019.chunk.js\\"
- ]
-}"
-`;
-
-exports[`when working with an app can generate a index.html 1`] = `
-"
-
-
-
-
-
-
-
-
-
- React App
-
-
-
-
-
-
-
-
-
-
-"
-`;
-
-exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
-"/*! For license information please see 2.42603bbe.chunk.js.LICENSE.txt */
-(this[\\"webpackJsonpsample-app\\"] = this[\\"webpackJsonpsample-app\\"] || []).push([
- [2],
- [
- function (e, t, n) {
- \\"use strict\\";
- e.exports = n(3);
- },
- function (e, t, n) {
- \\"use strict\\";
- var r = Object.getOwnPropertySymbols,
- l = Object.prototype.hasOwnProperty,
- a = Object.prototype.propertyIsEnumerable;
- function o(e) {
- if (null === e || void 0 === e)
- throw new TypeError(
- \\"Object.assign cannot be called with null or undefined\\"
- );
- return Object(e);
+ (l = function () {
+ p(g), (g = -1);
+ });
}
- e.exports = (function () {
- try {
- if (!Object.assign) return !1;
- var e = new String(\\"abc\\");
- if (((e[5] = \\"de\\"), \\"5\\" === Object.getOwnPropertyNames(e)[0]))
- return !1;
- for (var t = {}, n = 0; n < 10; n++)
- t[\\"_\\" + String.fromCharCode(n)] = n;
- if (
- \\"0123456789\\" !==
- Object.getOwnPropertyNames(t)
- .map(function (e) {
- return t[e];
- })
- .join(\\"\\")
- )
- return !1;
- var r = {};
- return (
- \\"abcdefghijklmnopqrst\\".split(\\"\\").forEach(function (e) {
- r[e] = e;
- }),
- \\"abcdefghijklmnopqrst\\" ===
- Object.keys(Object.assign({}, r)).join(\\"\\")
- );
- } catch (l) {
- return !1;
+ function S(e, t) {
+ var n = e.length;
+ e.push(t);
+ e: for (;;) {
+ var r = (n - 1) >>> 1,
+ l = e[r];
+ if (!(void 0 !== l && 0 < C(l, t))) break e;
+ (e[r] = t), (e[n] = l), (n = r);
}
- })()
- ? Object.assign
- : function (e, t) {
- for (var n, u, i = o(e), s = 1; s < arguments.length; s++) {
- for (var c in (n = Object(arguments[s])))
- l.call(n, c) && (i[c] = n[c]);
- if (r) {
- u = r(n);
- for (var f = 0; f < u.length; f++)
- a.call(n, u[f]) && (i[u[f]] = n[u[f]]);
+ }
+ function E(e) {
+ return void 0 === (e = e[0]) ? null : e;
+ }
+ function x(e) {
+ var t = e[0];
+ if (void 0 !== t) {
+ var n = e.pop();
+ if (n !== t) {
+ e[0] = n;
+ e: for (var r = 0, l = e.length; r < l; ) {
+ var a = 2 * (r + 1) - 1,
+ o = e[a],
+ u = a + 1,
+ i = e[u];
+ if (void 0 !== o && 0 > C(o, n))
+ void 0 !== i && 0 > C(i, o)
+ ? ((e[r] = i), (e[u] = n), (r = u))
+ : ((e[r] = o), (e[a] = n), (r = a));
+ else {
+ if (!(void 0 !== i && 0 > C(i, n))) break e;
+ (e[r] = i), (e[u] = n), (r = u);
}
}
- return i;
- };
- },
- function (e, t, n) {
- \\"use strict\\";
- !(function e() {
- if (
- \\"undefined\\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
- \\"function\\" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE
- )
- try {
- __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e);
- } catch (t) {
- console.error(t);
}
- })(),
- (e.exports = n(4));
- },
- function (e, t, n) {
- \\"use strict\\";
- var r = n(1),
- l = 60103,
- a = 60106;
- (t.Fragment = 60107), (t.StrictMode = 60108), (t.Profiler = 60114);
- var o = 60109,
- u = 60110,
- i = 60112;
- t.Suspense = 60113;
- var s = 60115,
- c = 60116;
- if (\\"function\\" === typeof Symbol && Symbol.for) {
- var f = Symbol.for;
- (l = f(\\"react.element\\")),
- (a = f(\\"react.portal\\")),
- (t.Fragment = f(\\"react.fragment\\")),
- (t.StrictMode = f(\\"react.strict_mode\\")),
- (t.Profiler = f(\\"react.profiler\\")),
- (o = f(\\"react.provider\\")),
- (u = f(\\"react.context\\")),
- (i = f(\\"react.forward_ref\\")),
- (t.Suspense = f(\\"react.suspense\\")),
- (s = f(\\"react.memo\\")),
- (c = f(\\"react.lazy\\"));
+ return t;
+ }
+ return null;
}
- var d = \\"function\\" === typeof Symbol && Symbol.iterator;
- function p(e) {
- for (
- var t = \\"https://reactjs.org/docs/error-decoder.html?invariant=\\" + e,
- n = 1;
- n < arguments.length;
- n++
- )
- t += \\"&args[]=\\" + encodeURIComponent(arguments[n]);
- return (
- \\"Minified React error #\\" +
- e +
- \\"; visit \\" +
- t +
- \\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\\"
- );
+ function C(e, t) {
+ var n = e.sortIndex - t.sortIndex;
+ return 0 !== n ? n : e.id - t.id;
}
- var h = {
- isMounted: function () {
- return !1;
- },
- enqueueForceUpdate: function () {},
- enqueueReplaceState: function () {},
- enqueueSetState: function () {},
- },
- m = {};
- function v(e, t, n) {
- (this.props = e),
- (this.context = t),
- (this.refs = m),
- (this.updater = n || h);
- }
- function g() {}
- function y(e, t, n) {
- (this.props = e),
- (this.context = t),
- (this.refs = m),
- (this.updater = n || h);
- }
- (v.prototype.isReactComponent = {}),
- (v.prototype.setState = function (e, t) {
- if (\\"object\\" !== typeof e && \\"function\\" !== typeof e && null != e)
- throw Error(p(85));
- this.updater.enqueueSetState(this, e, t, \\"setState\\");
- }),
- (v.prototype.forceUpdate = function (e) {
- this.updater.enqueueForceUpdate(this, e, \\"forceUpdate\\");
- }),
- (g.prototype = v.prototype);
- var b = (y.prototype = new g());
- (b.constructor = y), r(b, v.prototype), (b.isPureReactComponent = !0);
- var w = { current: null },
- k = Object.prototype.hasOwnProperty,
- S = { key: !0, ref: !0, __self: !0, __source: !0 };
- function E(e, t, n) {
- var r,
- a = {},
- o = null,
- u = null;
- if (null != t)
- for (r in (void 0 !== t.ref && (u = t.ref),
- void 0 !== t.key && (o = \\"\\" + t.key),
- t))
- k.call(t, r) && !S.hasOwnProperty(r) && (a[r] = t[r]);
- var i = arguments.length - 2;
- if (1 === i) a.children = n;
- else if (1 < i) {
- for (var s = Array(i), c = 0; c < i; c++) s[c] = arguments[c + 2];
- a.children = s;
+ var _ = [],
+ P = [],
+ N = 1,
+ T = null,
+ z = 3,
+ L = !1,
+ O = !1,
+ M = !1;
+ function R(e) {
+ for (var t = E(P); null !== t; ) {
+ if (null === t.callback) x(P);
+ else {
+ if (!(t.startTime <= e)) break;
+ x(P), (t.sortIndex = t.expirationTime), S(_, t);
+ }
+ t = E(P);
}
- if (e && e.defaultProps)
- for (r in (i = e.defaultProps)) void 0 === a[r] && (a[r] = i[r]);
- return {
- $$typeof: l,
- type: e,
- key: o,
- ref: u,
- props: a,
- _owner: w.current,
- };
}
- function x(e) {
- return \\"object\\" === typeof e && null !== e && e.$$typeof === l;
+ function F(e) {
+ if (((M = !1), R(e), !O))
+ if (null !== E(_)) (O = !0), n(D);
+ else {
+ var t = E(P);
+ null !== t && r(F, t.startTime - e);
+ }
}
- var _ = /\\\\/+/g;
- function C(e, t) {
- return \\"object\\" === typeof e && null !== e && null != e.key
- ? (function (e) {
- var t = { \\"=\\": \\"=0\\", \\":\\": \\"=2\\" };
- return (
- \\"$\\" +
- e.replace(/[=:]/g, function (e) {
- return t[e];
- })
- );
- })(\\"\\" + e.key)
- : t.toString(36);
+ function D(e, n) {
+ (O = !1), M && ((M = !1), l()), (L = !0);
+ var a = z;
+ try {
+ for (
+ R(n), T = E(_);
+ null !== T &&
+ (!(T.expirationTime > n) || (e && !t.unstable_shouldYield()));
+
+ ) {
+ var o = T.callback;
+ if (\\"function\\" === typeof o) {
+ (T.callback = null), (z = T.priorityLevel);
+ var u = o(T.expirationTime <= n);
+ (n = t.unstable_now()),
+ \\"function\\" === typeof u ? (T.callback = u) : T === E(_) && x(_),
+ R(n);
+ } else x(_);
+ T = E(_);
+ }
+ if (null !== T) var i = !0;
+ else {
+ var s = E(P);
+ null !== s && r(F, s.startTime - n), (i = !1);
+ }
+ return i;
+ } finally {
+ (T = null), (z = a), (L = !1);
+ }
}
- function P(e, t, n, r, o) {
- var u = typeof e;
- (\\"undefined\\" !== u && \\"boolean\\" !== u) || (e = null);
- var i = !1;
- if (null === e) i = !0;
- else
- switch (u) {
- case \\"string\\":
- case \\"number\\":
- i = !0;
+ var I = a;
+ (t.unstable_IdlePriority = 5),
+ (t.unstable_ImmediatePriority = 1),
+ (t.unstable_LowPriority = 4),
+ (t.unstable_NormalPriority = 3),
+ (t.unstable_Profiling = null),
+ (t.unstable_UserBlockingPriority = 2),
+ (t.unstable_cancelCallback = function (e) {
+ e.callback = null;
+ }),
+ (t.unstable_continueExecution = function () {
+ O || L || ((O = !0), n(D));
+ }),
+ (t.unstable_getCurrentPriorityLevel = function () {
+ return z;
+ }),
+ (t.unstable_getFirstCallbackNode = function () {
+ return E(_);
+ }),
+ (t.unstable_next = function (e) {
+ switch (z) {
+ case 1:
+ case 2:
+ case 3:
+ var t = 3;
break;
- case \\"object\\":
- switch (e.$$typeof) {
- case l:
- case a:
- i = !0;
- }
+ default:
+ t = z;
}
- if (i)
- return (
- (o = o((i = e))),
- (e = \\"\\" === r ? \\".\\" + C(i, 0) : r),
- Array.isArray(o)
- ? ((n = \\"\\"),
- null != e && (n = e.replace(_, \\"$&/\\") + \\"/\\"),
- P(o, t, n, \\"\\", function (e) {
- return e;
- }))
- : null != o &&
- (x(o) &&
- (o = (function (e, t) {
- return {
- $$typeof: l,
- type: e.type,
- key: t,
- ref: e.ref,
- props: e.props,
- _owner: e._owner,
- };
- })(
- o,
- n +
- (!o.key || (i && i.key === o.key)
- ? \\"\\"
- : (\\"\\" + o.key).replace(_, \\"$&/\\") + \\"/\\") +
- e
- )),
- t.push(o)),
- 1
- );
- if (((i = 0), (r = \\"\\" === r ? \\".\\" : r + \\":\\"), Array.isArray(e)))
- for (var s = 0; s < e.length; s++) {
- var c = r + C((u = e[s]), s);
- i += P(u, t, n, c, o);
+ var n = z;
+ z = t;
+ try {
+ return e();
+ } finally {
+ z = n;
}
- else if (
- ((c = (function (e) {
- return null === e || \\"object\\" !== typeof e
- ? null
- : \\"function\\" === typeof (e = (d && e[d]) || e[\\"@@iterator\\"])
- ? e
- : null;
- })(e)),
- \\"function\\" === typeof c)
- )
- for (e = c.call(e), s = 0; !(u = e.next()).done; )
- i += P((u = u.value), t, n, (c = r + C(u, s++)), o);
- else if (\\"object\\" === u)
- throw (
- ((t = \\"\\" + e),
- Error(
- p(
- 31,
- \\"[object Object]\\" === t
- ? \\"object with keys {\\" + Object.keys(e).join(\\", \\") + \\"}\\"
- : t
- )
- ))
+ }),
+ (t.unstable_pauseExecution = function () {}),
+ (t.unstable_requestPaint = I),
+ (t.unstable_runWithPriority = function (e, t) {
+ switch (e) {
+ case 1:
+ case 2:
+ case 3:
+ case 4:
+ case 5:
+ break;
+ default:
+ e = 3;
+ }
+ var n = z;
+ z = e;
+ try {
+ return t();
+ } finally {
+ z = n;
+ }
+ }),
+ (t.unstable_scheduleCallback = function (e, a, o) {
+ var u = t.unstable_now();
+ switch (
+ (\\"object\\" === typeof o && null !== o
+ ? (o = \\"number\\" === typeof (o = o.delay) && 0 < o ? u + o : u)
+ : (o = u),
+ e)
+ ) {
+ case 1:
+ var i = -1;
+ break;
+ case 2:
+ i = 250;
+ break;
+ case 5:
+ i = 1073741823;
+ break;
+ case 4:
+ i = 1e4;
+ break;
+ default:
+ i = 5e3;
+ }
+ return (
+ (e = {
+ id: N++,
+ callback: a,
+ priorityLevel: e,
+ startTime: o,
+ expirationTime: (i = o + i),
+ sortIndex: -1,
+ }),
+ o > u
+ ? ((e.sortIndex = o),
+ S(P, e),
+ null === E(_) &&
+ e === E(P) &&
+ (M ? l() : (M = !0), r(F, o - u)))
+ : ((e.sortIndex = i), S(_, e), O || L || ((O = !0), n(D))),
+ e
);
- return i;
- }
- function N(e, t, n) {
- if (null == e) return e;
- var r = [],
- l = 0;
- return (
- P(e, r, \\"\\", \\"\\", function (e) {
- return t.call(n, e, l++);
- }),
- r
- );
- }
- function T(e) {
- if (-1 === e._status) {
- var t = e._result;
- (t = t()),
- (e._status = 0),
- (e._result = t),
- t.then(
- function (t) {
- 0 === e._status &&
- ((t = t.default), (e._status = 1), (e._result = t));
+ }),
+ (t.unstable_wrapCallback = function (e) {
+ var t = z;
+ return function () {
+ var n = z;
+ z = t;
+ try {
+ return e.apply(this, arguments);
+ } finally {
+ z = n;
+ }
+ };
+ });
+ },
+ 146: (e, t, n) => {
+ e.exports = n(666);
+ },
+ },
+]);
+//# sourceMappingURL=788.78cfb599.js.map
+"
+`;
+
+exports[`When working with a nested app can generate a hashed main css chunk in the css directory 1`] = `
+".App {
+ text-align: center;
+}
+.App-logo {
+ height: 40vmin;
+ pointer-events: none;
+}
+@media (prefers-reduced-motion: no-preference) {
+ .App-logo {
+ animation: App-logo-spin 20s linear infinite;
+ }
+}
+.App-header {
+ align-items: center;
+ background-color: #282c34;
+ color: #fff;
+ display: flex;
+ flex-direction: column;
+ font-size: calc(10px + 2vmin);
+ justify-content: center;
+ min-height: 100vh;
+}
+.App-link {
+ color: #61dafb;
+}
+@keyframes App-logo-spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(1turn);
+ }
+}
+body {
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
+ Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
+ margin: 0;
+}
+code {
+ font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;
+}
+/*# sourceMappingURL=main.1a7488ce.css.map*/
+"
+`;
+
+exports[`When working with a nested app can generate a hashed main js chunk in the js directory 1`] = `
+"\\"use strict\\";
+(globalThis.webpackChunk_scoped_sample_app =
+ globalThis.webpackChunk_scoped_sample_app || []).push([
+ [179],
+ {
+ 591: (M, L, j) => {
+ var N = j(735),
+ I = j(788);
+ const u = function () {
+ return N.createElement(
+ \\"div\\",
+ { className: \\"App\\" },
+ N.createElement(
+ \\"header\\",
+ { className: \\"App-header\\" },
+ N.createElement(\\"img\\", {
+ src: \\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4NDEuOSA1OTUuMyI+CiAgICA8ZyBmaWxsPSIjNjFEQUZCIj4KICAgICAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgICAgIDxjaXJjbGUgY3g9IjQyMC45IiBjeT0iMjk2LjUiIHI9IjQ1LjciLz4KICAgICAgICA8cGF0aCBkPSJNNTIwLjUgNzguMXoiLz4KICAgIDwvZz4KPC9zdmc+Cg==\\",
+ className: \\"App-logo\\",
+ alt: \\"logo\\",
+ }),
+ N.createElement(
+ \\"p\\",
+ null,
+ \\"Edit \\",
+ N.createElement(\\"code\\", null, \\"src/App.tsx\\"),
+ \\" and save to reload.\\"
+ ),
+ N.createElement(
+ \\"a\\",
+ {
+ className: \\"App-link\\",
+ href: \\"https://reactjs.org\\",
+ target: \\"_blank\\",
+ rel: \\"noopener noreferrer\\",
},
- function (t) {
- 0 === e._status && ((e._status = 2), (e._result = t));
- }
- );
+ \\"Learn React\\"
+ )
+ )
+ );
+ };
+ I.render(
+ N.createElement(N.StrictMode, null, N.createElement(u, null)),
+ document.getElementById(\\"root\\")
+ );
+ },
+ },
+ (M) => {
+ M.O(0, [788], () => {
+ return (L = 591), M((M.s = L));
+ var L;
+ });
+ M.O();
+ },
+]);
+//# sourceMappingURL=main.3563e93f.js.map
+"
+`;
+
+exports[`When working with a nested app can generate a hashed runtime chunk in the js directory 1`] = `
+"(() => {
+ \\"use strict\\";
+ var r = {},
+ e = {};
+ function o(a) {
+ var p = e[a];
+ if (void 0 !== p) return p.exports;
+ var t = (e[a] = { exports: {} });
+ return r[a](t, t.exports, o), t.exports;
+ }
+ (o.m = r),
+ (() => {
+ var r = [];
+ o.O = (e, a, p, t) => {
+ if (!a) {
+ var n = 1 / 0;
+ for (v = 0; v < r.length; v++) {
+ for (var [a, p, t] = r[v], s = !0, l = 0; l < a.length; l++)
+ (!1 & t || n >= t) && Object.keys(o.O).every((r) => o.O[r](a[l]))
+ ? a.splice(l--, 1)
+ : ((s = !1), t < n && (n = t));
+ if (s) {
+ r.splice(v--, 1);
+ var i = p();
+ void 0 !== i && (e = i);
+ }
+ }
+ return e;
}
- if (1 === e._status) return e._result;
- throw e._result;
- }
- var z = { current: null };
- function L() {
- var e = z.current;
- if (null === e) throw Error(p(321));
- return e;
- }
- var O = {
- ReactCurrentDispatcher: z,
- ReactCurrentBatchConfig: { transition: 0 },
- ReactCurrentOwner: w,
- IsSomeRendererActing: { current: !1 },
- assign: r,
+ t = t || 0;
+ for (var v = r.length; v > 0 && r[v - 1][2] > t; v--) r[v] = r[v - 1];
+ r[v] = [a, p, t];
};
- (t.Children = {
- map: N,
- forEach: function (e, t, n) {
- N(
- e,
- function () {
- t.apply(this, arguments);
- },
- n
- );
+ })(),
+ (o.o = (r, e) => Object.prototype.hasOwnProperty.call(r, e)),
+ (() => {
+ var r = { 252: 0 };
+ o.O.j = (e) => 0 === r[e];
+ var e = (e, a) => {
+ var p,
+ t,
+ [n, s, l] = a,
+ i = 0;
+ if (n.some((e) => 0 !== r[e])) {
+ for (p in s) o.o(s, p) && (o.m[p] = s[p]);
+ if (l) var v = l(o);
+ }
+ for (e && e(a); i < n.length; i++)
+ (t = n[i]), o.o(r, t) && r[t] && r[t][0](), (r[t] = 0);
+ return o.O(v);
},
- count: function (e) {
- var t = 0;
- return (
- N(e, function () {
- t++;
+ a = (globalThis.webpackChunk_scoped_sample_app =
+ globalThis.webpackChunk_scoped_sample_app || []);
+ a.forEach(e.bind(null, 0)), (a.push = e.bind(null, a.push.bind(a)));
+ })();
+})();
+//# sourceMappingURL=runtime-main.83e93d07.js.map
+"
+`;
+
+exports[`When working with a nested app can generate a index.html 1`] = `
+"
+
+
+
+
+
+
+
+
+
+ React App
+
+
+
+
+
+
+
+
+
+
+"
+`;
+
+exports[`When working with a nested app can generate a manifest 1`] = `
+"{
+ \\"short_name\\": \\"React App\\",
+ \\"name\\": \\"Create React App Sample\\",
+ \\"icons\\": [
+ {
+ \\"src\\": \\"favicon.ico\\",
+ \\"sizes\\": \\"64x64 32x32 24x24 16x16\\",
+ \\"type\\": \\"image/x-icon\\"
+ },
+ {
+ \\"src\\": \\"logo192.png\\",
+ \\"type\\": \\"image/png\\",
+ \\"sizes\\": \\"192x192\\"
+ },
+ {
+ \\"src\\": \\"logo512.png\\",
+ \\"type\\": \\"image/png\\",
+ \\"sizes\\": \\"512x512\\"
+ }
+ ],
+ \\"start_url\\": \\".\\",
+ \\"display\\": \\"standalone\\",
+ \\"theme_color\\": \\"#000000\\",
+ \\"background_color\\": \\"#ffffff\\"
+}
+"
+`;
+
+exports[`when working with an app can generate a asset-manifest 1`] = `
+"{
+ \\"files\\": {
+ \\"main.css\\": \\"/static/css/main.1a7488ce.css\\",
+ \\"main.js\\": \\"/static/js/main.97cda94b.js\\",
+ \\"runtime-main.js\\": \\"/static/js/runtime-main.de9fd74d.js\\",
+ \\"static/js/316.7a4d5eb7.js\\": \\"/static/js/316.7a4d5eb7.js\\",
+ \\"index.html\\": \\"/index.html\\",
+ \\"main.1a7488ce.css.map\\": \\"/static/css/main.1a7488ce.css.map\\",
+ \\"main.97cda94b.js.map\\": \\"/static/js/main.97cda94b.js.map\\",
+ \\"runtime-main.de9fd74d.js.map\\": \\"/static/js/runtime-main.de9fd74d.js.map\\",
+ \\"316.7a4d5eb7.js.map\\": \\"/static/js/316.7a4d5eb7.js.map\\"
+ },
+ \\"entrypoints\\": [
+ \\"static/js/runtime-main.de9fd74d.js\\",
+ \\"static/js/316.7a4d5eb7.js\\",
+ \\"static/css/main.1a7488ce.css\\",
+ \\"static/js/main.97cda94b.js\\"
+ ]
+}"
+`;
+
+exports[`when working with an app can generate a hashed main js chunk in the js directory 1`] = `
+"\\"use strict\\";
+(globalThis.webpackChunksample_app =
+ globalThis.webpackChunksample_app || []).push([
+ [179],
+ {
+ 540: (M, L, j) => {
+ var N = j(784),
+ u = j(316);
+ const I = function () {
+ return N.createElement(
+ \\"div\\",
+ { className: \\"App\\" },
+ N.createElement(
+ \\"header\\",
+ { className: \\"App-header\\" },
+ N.createElement(\\"img\\", {
+ src: \\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4NDEuOSA1OTUuMyI+CiAgICA8ZyBmaWxsPSIjNjFEQUZCIj4KICAgICAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgICAgIDxjaXJjbGUgY3g9IjQyMC45IiBjeT0iMjk2LjUiIHI9IjQ1LjciLz4KICAgICAgICA8cGF0aCBkPSJNNTIwLjUgNzguMXoiLz4KICAgIDwvZz4KPC9zdmc+Cg==\\",
+ className: \\"App-logo\\",
+ alt: \\"logo\\",
}),
- t
- );
- },
- toArray: function (e) {
- return (
- N(e, function (e) {
- return e;
- }) || []
- );
- },
- only: function (e) {
- if (!x(e)) throw Error(p(143));
- return e;
- },
- }),
- (t.Component = v),
- (t.PureComponent = y),
- (t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = O),
- (t.cloneElement = function (e, t, n) {
- if (null === e || void 0 === e) throw Error(p(267, e));
- var a = r({}, e.props),
- o = e.key,
- u = e.ref,
- i = e._owner;
- if (null != t) {
- if (
- (void 0 !== t.ref && ((u = t.ref), (i = w.current)),
- void 0 !== t.key && (o = \\"\\" + t.key),
- e.type && e.type.defaultProps)
+ N.createElement(
+ \\"p\\",
+ null,
+ \\"Edit \\",
+ N.createElement(\\"code\\", null, \\"src/App.tsx\\"),
+ \\" and save to reload.\\"
+ ),
+ N.createElement(
+ \\"a\\",
+ {
+ className: \\"App-link\\",
+ href: \\"https://reactjs.org\\",
+ target: \\"_blank\\",
+ rel: \\"noopener noreferrer\\",
+ },
+ \\"Learn React\\"
)
- var s = e.type.defaultProps;
- for (c in t)
- k.call(t, c) &&
- !S.hasOwnProperty(c) &&
- (a[c] = void 0 === t[c] && void 0 !== s ? s[c] : t[c]);
+ ),
+ N.createElement(
+ \\"div\\",
+ { \\"data-testid\\": \\"test-this\\" },
+ \\"this is a modular app\\"
+ )
+ );
+ };
+ u.render(
+ N.createElement(N.StrictMode, null, N.createElement(I, null)),
+ document.getElementById(\\"root\\")
+ );
+ },
+ },
+ (M) => {
+ M.O(0, [316], () => {
+ return (L = 540), M((M.s = L));
+ var L;
+ });
+ M.O();
+ },
+]);
+//# sourceMappingURL=main.97cda94b.js.map
+"
+`;
+
+exports[`when working with an app can generate a hashed runtime chunk in the js directory 1`] = `
+"(() => {
+ \\"use strict\\";
+ var r = {},
+ e = {};
+ function a(o) {
+ var t = e[o];
+ if (void 0 !== t) return t.exports;
+ var n = (e[o] = { exports: {} });
+ return r[o](n, n.exports, a), n.exports;
+ }
+ (a.m = r),
+ (() => {
+ var r = [];
+ a.O = (e, o, t, n) => {
+ if (!o) {
+ var p = 1 / 0;
+ for (v = 0; v < r.length; v++) {
+ for (var [o, t, n] = r[v], l = !0, i = 0; i < o.length; i++)
+ (!1 & n || p >= n) && Object.keys(a.O).every((r) => a.O[r](o[i]))
+ ? o.splice(i--, 1)
+ : ((l = !1), n < p && (p = n));
+ if (l) {
+ r.splice(v--, 1);
+ var s = t();
+ void 0 !== s && (e = s);
+ }
}
- var c = arguments.length - 2;
- if (1 === c) a.children = n;
- else if (1 < c) {
- s = Array(c);
- for (var f = 0; f < c; f++) s[f] = arguments[f + 2];
- a.children = s;
+ return e;
+ }
+ n = n || 0;
+ for (var v = r.length; v > 0 && r[v - 1][2] > n; v--) r[v] = r[v - 1];
+ r[v] = [o, t, n];
+ };
+ })(),
+ (a.o = (r, e) => Object.prototype.hasOwnProperty.call(r, e)),
+ (() => {
+ var r = { 252: 0 };
+ a.O.j = (e) => 0 === r[e];
+ var e = (e, o) => {
+ var t,
+ n,
+ [p, l, i] = o,
+ s = 0;
+ if (p.some((e) => 0 !== r[e])) {
+ for (t in l) a.o(l, t) && (a.m[t] = l[t]);
+ if (i) var v = i(a);
}
- return {
- $$typeof: l,
- type: e.type,
- key: o,
- ref: u,
- props: a,
- _owner: i,
- };
- }),
- (t.createContext = function (e, t) {
+ for (e && e(o); s < p.length; s++)
+ (n = p[s]), a.o(r, n) && r[n] && r[n][0](), (r[n] = 0);
+ return a.O(v);
+ },
+ o = (globalThis.webpackChunksample_app =
+ globalThis.webpackChunksample_app || []);
+ o.forEach(e.bind(null, 0)), (o.push = e.bind(null, o.push.bind(o)));
+ })();
+})();
+//# sourceMappingURL=runtime-main.de9fd74d.js.map
+"
+`;
+
+exports[`when working with an app can generate a hashed vendor chunk in the js directory 1`] = `
+"/*! For license information please see 316.7a4d5eb7.js.LICENSE.txt */
+\\"use strict\\";
+(globalThis.webpackChunksample_app =
+ globalThis.webpackChunksample_app || []).push([
+ [316],
+ {
+ 320: (e) => {
+ var t = Object.getOwnPropertySymbols,
+ n = Object.prototype.hasOwnProperty,
+ r = Object.prototype.propertyIsEnumerable;
+ function l(e) {
+ if (null === e || void 0 === e)
+ throw new TypeError(
+ \\"Object.assign cannot be called with null or undefined\\"
+ );
+ return Object(e);
+ }
+ e.exports = (function () {
+ try {
+ if (!Object.assign) return !1;
+ var e = new String(\\"abc\\");
+ if (((e[5] = \\"de\\"), \\"5\\" === Object.getOwnPropertyNames(e)[0]))
+ return !1;
+ for (var t = {}, n = 0; n < 10; n++)
+ t[\\"_\\" + String.fromCharCode(n)] = n;
+ if (
+ \\"0123456789\\" !==
+ Object.getOwnPropertyNames(t)
+ .map(function (e) {
+ return t[e];
+ })
+ .join(\\"\\")
+ )
+ return !1;
+ var r = {};
return (
- void 0 === t && (t = null),
- ((e = {
- $$typeof: u,
- _calculateChangedBits: t,
- _currentValue: e,
- _currentValue2: e,
- _threadCount: 0,
- Provider: null,
- Consumer: null,
- }).Provider = { $$typeof: o, _context: e }),
- (e.Consumer = e)
+ \\"abcdefghijklmnopqrst\\".split(\\"\\").forEach(function (e) {
+ r[e] = e;
+ }),
+ \\"abcdefghijklmnopqrst\\" ===
+ Object.keys(Object.assign({}, r)).join(\\"\\")
);
- }),
- (t.createElement = E),
- (t.createFactory = function (e) {
- var t = E.bind(null, e);
- return (t.type = e), t;
- }),
- (t.createRef = function () {
- return { current: null };
- }),
- (t.forwardRef = function (e) {
- return { $$typeof: i, render: e };
- }),
- (t.isValidElement = x),
- (t.lazy = function (e) {
- return {
- $$typeof: c,
- _payload: { _status: -1, _result: e },
- _init: T,
+ } catch (l) {
+ return !1;
+ }
+ })()
+ ? Object.assign
+ : function (e, a) {
+ for (var o, u, i = l(e), s = 1; s < arguments.length; s++) {
+ for (var c in (o = Object(arguments[s])))
+ n.call(o, c) && (i[c] = o[c]);
+ if (t) {
+ u = t(o);
+ for (var f = 0; f < u.length; f++)
+ r.call(o, u[f]) && (i[u[f]] = o[u[f]]);
+ }
+ }
+ return i;
};
- }),
- (t.memo = function (e, t) {
- return { $$typeof: s, type: e, compare: void 0 === t ? null : t };
- }),
- (t.useCallback = function (e, t) {
- return L().useCallback(e, t);
- }),
- (t.useContext = function (e, t) {
- return L().useContext(e, t);
- }),
- (t.useDebugValue = function () {}),
- (t.useEffect = function (e, t) {
- return L().useEffect(e, t);
- }),
- (t.useImperativeHandle = function (e, t, n) {
- return L().useImperativeHandle(e, t, n);
- }),
- (t.useLayoutEffect = function (e, t) {
- return L().useLayoutEffect(e, t);
- }),
- (t.useMemo = function (e, t) {
- return L().useMemo(e, t);
- }),
- (t.useReducer = function (e, t, n) {
- return L().useReducer(e, t, n);
- }),
- (t.useRef = function (e) {
- return L().useRef(e);
- }),
- (t.useState = function (e) {
- return L().useState(e);
- }),
- (t.version = \\"17.0.2\\");
},
- function (e, t, n) {
- \\"use strict\\";
- var r = n(0),
- l = n(1),
- a = n(5);
+ 967: (e, t, n) => {
+ var r = n(784),
+ l = n(320),
+ a = n(616);
function o(e) {
for (
var t = \\"https://reactjs.org/docs/error-decoder.html?invariant=\\" + e,
@@ -9588,8 +9072,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
S = 60103,
E = 60106,
x = 60107,
- _ = 60108,
- C = 60114,
+ C = 60108,
+ _ = 60114,
P = 60109,
N = 60110,
T = 60112,
@@ -9598,32 +9082,32 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
O = 60115,
M = 60116,
R = 60121,
- I = 60128,
+ F = 60128,
D = 60129,
- F = 60130,
+ I = 60130,
U = 60131;
if (\\"function\\" === typeof Symbol && Symbol.for) {
- var A = Symbol.for;
- (S = A(\\"react.element\\")),
- (E = A(\\"react.portal\\")),
- (x = A(\\"react.fragment\\")),
- (_ = A(\\"react.strict_mode\\")),
- (C = A(\\"react.profiler\\")),
- (P = A(\\"react.provider\\")),
- (N = A(\\"react.context\\")),
- (T = A(\\"react.forward_ref\\")),
- (z = A(\\"react.suspense\\")),
- (L = A(\\"react.suspense_list\\")),
- (O = A(\\"react.memo\\")),
- (M = A(\\"react.lazy\\")),
- (R = A(\\"react.block\\")),
- A(\\"react.scope\\"),
- (I = A(\\"react.opaque.id\\")),
- (D = A(\\"react.debug_trace_mode\\")),
- (F = A(\\"react.offscreen\\")),
- (U = A(\\"react.legacy_hidden\\"));
- }
- var j,
+ var j = Symbol.for;
+ (S = j(\\"react.element\\")),
+ (E = j(\\"react.portal\\")),
+ (x = j(\\"react.fragment\\")),
+ (C = j(\\"react.strict_mode\\")),
+ (_ = j(\\"react.profiler\\")),
+ (P = j(\\"react.provider\\")),
+ (N = j(\\"react.context\\")),
+ (T = j(\\"react.forward_ref\\")),
+ (z = j(\\"react.suspense\\")),
+ (L = j(\\"react.suspense_list\\")),
+ (O = j(\\"react.memo\\")),
+ (M = j(\\"react.lazy\\")),
+ (R = j(\\"react.block\\")),
+ j(\\"react.scope\\"),
+ (F = j(\\"react.opaque.id\\")),
+ (D = j(\\"react.debug_trace_mode\\")),
+ (I = j(\\"react.offscreen\\")),
+ (U = j(\\"react.legacy_hidden\\"));
+ }
+ var A,
V = \\"function\\" === typeof Symbol && Symbol.iterator;
function B(e) {
return null === e || \\"object\\" !== typeof e
@@ -9632,20 +9116,20 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
? e
: null;
}
- function W(e) {
- if (void 0 === j)
+ function $(e) {
+ if (void 0 === A)
try {
throw Error();
} catch (n) {
var t = n.stack.trim().match(/\\\\n( *(at )?)/);
- j = (t && t[1]) || \\"\\";
+ A = (t && t[1]) || \\"\\";
}
- return \\"\\\\n\\" + j + e;
+ return \\"\\\\n\\" + A + e;
}
- var $ = !1;
+ var W = !1;
function H(e, t) {
- if (!e || $) return \\"\\";
- $ = !0;
+ if (!e || W) return \\"\\";
+ W = !0;
var n = Error.prepareStackTrace;
Error.prepareStackTrace = void 0;
try {
@@ -9705,20 +9189,20 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
}
} finally {
- ($ = !1), (Error.prepareStackTrace = n);
+ (W = !1), (Error.prepareStackTrace = n);
}
- return (e = e ? e.displayName || e.name : \\"\\") ? W(e) : \\"\\";
+ return (e = e ? e.displayName || e.name : \\"\\") ? $(e) : \\"\\";
}
function Q(e) {
switch (e.tag) {
case 5:
- return W(e.type);
+ return $(e.type);
case 16:
- return W(\\"Lazy\\");
+ return $(\\"Lazy\\");
case 13:
- return W(\\"Suspense\\");
+ return $(\\"Suspense\\");
case 19:
- return W(\\"SuspenseList\\");
+ return $(\\"SuspenseList\\");
case 0:
case 2:
case 15:
@@ -9742,9 +9226,9 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return \\"Fragment\\";
case E:
return \\"Portal\\";
- case C:
- return \\"Profiler\\";
case _:
+ return \\"Profiler\\";
+ case C:
return \\"StrictMode\\";
case z:
return \\"Suspense\\";
@@ -9847,7 +9331,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(e = r) !== n && (t.setValue(e), !0)
);
}
- function J(e) {
+ function Z(e) {
if (
\\"undefined\\" ===
typeof (e =
@@ -9860,7 +9344,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return e.body;
}
}
- function Z(e, t) {
+ function J(e, t) {
var n = t.checked;
return l({}, t, {
defaultChecked: void 0,
@@ -9923,7 +9407,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
\\"\\" !== n && (e.name = n);
}
function le(e, t, n) {
- (\\"number\\" === t && J(e.ownerDocument) === e) ||
+ (\\"number\\" === t && Z(e.ownerDocument) === e) ||
(null == n
? (e.defaultValue = \\"\\" + e._wrapperState.initialValue)
: e.defaultValue !== \\"\\" + n && (e.defaultValue = \\"\\" + n));
@@ -10161,7 +9645,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
throw Error(o(62));
}
}
- function _e(e, t) {
+ function Ce(e, t) {
if (-1 === e.indexOf(\\"-\\")) return \\"string\\" === typeof t.is;
switch (e) {
case \\"annotation-xml\\":
@@ -10177,7 +9661,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return !0;
}
}
- function Ce(e) {
+ function _e(e) {
return (
(e = e.target || e.srcElement || window).correspondingUseElement &&
(e = e.correspondingUseElement),
@@ -10211,14 +9695,14 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
function Re(e, t, n, r, l) {
return e(t, n, r, l);
}
- function Ie() {}
+ function Fe() {}
var De = Me,
- Fe = !1,
+ Ie = !1,
Ue = !1;
- function Ae() {
- (null === Ne && null === Te) || (Ie(), Oe());
+ function je() {
+ (null === Ne && null === Te) || (Fe(), Oe());
}
- function je(e, t) {
+ function Ae(e, t) {
var n = e.stateNode;
if (null === n) return null;
var r = al(n);
@@ -10266,7 +9750,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
} catch (ve) {
Ve = !1;
}
- function We(e, t, n, r, l, a, o, u, i) {
+ function $e(e, t, n, r, l, a, o, u, i) {
var s = Array.prototype.slice.call(arguments, 3);
try {
t.apply(n, s);
@@ -10274,17 +9758,17 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
this.onError(c);
}
}
- var $e = !1,
+ var We = !1,
He = null,
Qe = !1,
qe = null,
Ke = {
onError: function (e) {
- ($e = !0), (He = e);
+ (We = !0), (He = e);
},
};
function Ye(e, t, n, r, l, a, o, u, i) {
- ($e = !1), (He = null), We.apply(Ke, arguments);
+ (We = !1), (He = null), $e.apply(Ke, arguments);
}
function Xe(e) {
var t = e,
@@ -10309,10 +9793,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
return null;
}
- function Je(e) {
+ function Ze(e) {
if (Xe(e) !== e) throw Error(o(188));
}
- function Ze(e) {
+ function Je(e) {
if (
((e = (function (e) {
var t = e.alternate;
@@ -10333,8 +9817,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
if (l.child === a.child) {
for (a = l.child; a; ) {
- if (a === n) return Je(l), e;
- if (a === r) return Je(l), t;
+ if (a === n) return Ze(l), e;
+ if (a === r) return Ze(l), t;
a = a.sibling;
}
throw Error(o(188));
@@ -10478,7 +9962,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
function yt(e) {
if (null !== e.blockedOn) return !1;
for (var t = e.targetContainers; 0 < t.length; ) {
- var n = Zt(e.domEventName, e.eventSystemFlags, t[0], e.nativeEvent);
+ var n = Jt(e.domEventName, e.eventSystemFlags, t[0], e.nativeEvent);
if (null !== n)
return null !== (t = rl(n)) && nt(t), (e.blockedOn = n), !1;
t.shift();
@@ -10496,7 +9980,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
break;
}
for (var t = e.targetContainers; 0 < t.length; ) {
- var n = Zt(e.domEventName, e.eventSystemFlags, t[0], e.nativeEvent);
+ var n = Jt(e.domEventName, e.eventSystemFlags, t[0], e.nativeEvent);
if (null !== n) {
e.blockedOn = n;
break;
@@ -10558,18 +10042,18 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
animationstart: Et(\\"Animation\\", \\"AnimationStart\\"),
transitionend: Et(\\"Transition\\", \\"TransitionEnd\\"),
},
- _t = {},
- Ct = {};
+ Ct = {},
+ _t = {};
function Pt(e) {
- if (_t[e]) return _t[e];
+ if (Ct[e]) return Ct[e];
if (!xt[e]) return e;
var t,
n = xt[e];
- for (t in n) if (n.hasOwnProperty(t) && t in Ct) return (_t[e] = n[t]);
+ for (t in n) if (n.hasOwnProperty(t) && t in _t) return (Ct[e] = n[t]);
return e;
}
f &&
- ((Ct = document.createElement(\\"div\\").style),
+ ((_t = document.createElement(\\"div\\").style),
\\"AnimationEvent\\" in window ||
(delete xt.animationend.animation,
delete xt.animationiteration.animation,
@@ -10633,7 +10117,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
\\"waiting\\",
\\"waiting\\",
];
- function It(e, t) {
+ function Ft(e, t) {
for (var n = 0; n < e.length; n += 2) {
var r = e[n],
l = e[n + 1];
@@ -10645,7 +10129,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
(0, a.unstable_now)();
var Dt = 8;
- function Ft(e) {
+ function It(e) {
if (0 !== (1 & e)) return (Dt = 15), 1;
if (0 !== (2 & e)) return (Dt = 14), 2;
if (0 !== (4 & e)) return (Dt = 13), 4;
@@ -10688,42 +10172,42 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
else if (0 !== (a = 134217727 & n)) {
var i = a & ~o;
0 !== i
- ? ((r = Ft(i)), (l = Dt))
- : 0 !== (u &= a) && ((r = Ft(u)), (l = Dt));
+ ? ((r = It(i)), (l = Dt))
+ : 0 !== (u &= a) && ((r = It(u)), (l = Dt));
} else
0 !== (a = n & ~o)
- ? ((r = Ft(a)), (l = Dt))
- : 0 !== u && ((r = Ft(u)), (l = Dt));
+ ? ((r = It(a)), (l = Dt))
+ : 0 !== u && ((r = It(u)), (l = Dt));
if (0 === r) return 0;
if (
- ((r = n & (((0 > (r = 31 - $t(r)) ? 0 : 1 << r) << 1) - 1)),
+ ((r = n & (((0 > (r = 31 - Wt(r)) ? 0 : 1 << r) << 1) - 1)),
0 !== t && t !== r && 0 === (t & o))
) {
- if ((Ft(t), l <= Dt)) return t;
+ if ((It(t), l <= Dt)) return t;
Dt = l;
}
if (0 !== (t = e.entangledLanes))
for (e = e.entanglements, t &= r; 0 < t; )
- (l = 1 << (n = 31 - $t(t))), (r |= e[n]), (t &= ~l);
+ (l = 1 << (n = 31 - Wt(t))), (r |= e[n]), (t &= ~l);
return r;
}
- function At(e) {
+ function jt(e) {
return 0 !== (e = -1073741825 & e.pendingLanes)
? e
: 1073741824 & e
? 1073741824
: 0;
}
- function jt(e, t) {
+ function At(e, t) {
switch (e) {
case 15:
return 1;
case 14:
return 2;
case 12:
- return 0 === (e = Vt(24 & ~t)) ? jt(10, t) : e;
+ return 0 === (e = Vt(24 & ~t)) ? At(10, t) : e;
case 10:
- return 0 === (e = Vt(192 & ~t)) ? jt(8, t) : e;
+ return 0 === (e = Vt(192 & ~t)) ? At(8, t) : e;
case 8:
return (
0 === (e = Vt(3584 & ~t)) &&
@@ -10743,14 +10227,14 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
for (var t = [], n = 0; 31 > n; n++) t.push(e);
return t;
}
- function Wt(e, t, n) {
+ function $t(e, t, n) {
e.pendingLanes |= t;
var r = t - 1;
(e.suspendedLanes &= r),
(e.pingedLanes &= r),
- ((e = e.eventTimes)[(t = 31 - $t(t))] = n);
+ ((e = e.eventTimes)[(t = 31 - Wt(t))] = n);
}
- var $t = Math.clz32
+ var Wt = Math.clz32
? Math.clz32
: function (e) {
return 0 === e ? 32 : (31 - ((Ht(e) / Qt) | 0)) | 0;
@@ -10761,26 +10245,26 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Kt = a.unstable_runWithPriority,
Yt = !0;
function Xt(e, t, n, r) {
- Fe || Ie();
- var l = Jt,
- a = Fe;
- Fe = !0;
+ Ie || Fe();
+ var l = Zt,
+ a = Ie;
+ Ie = !0;
try {
Re(l, e, t, n, r);
} finally {
- (Fe = a) || Ae();
+ (Ie = a) || je();
}
}
function Gt(e, t, n, r) {
- Kt(qt, Jt.bind(null, e, t, n, r));
+ Kt(qt, Zt.bind(null, e, t, n, r));
}
- function Jt(e, t, n, r) {
+ function Zt(e, t, n, r) {
var l;
if (Yt)
if ((l = 0 === (4 & t)) && 0 < ot.length && -1 < pt.indexOf(e))
(e = ht(null, e, t, n, r)), ot.push(e);
else {
- var a = Zt(e, t, n, r);
+ var a = Jt(e, t, n, r);
if (null === a) l && mt(e, r);
else {
if (l) {
@@ -10813,12 +10297,12 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return;
mt(e, r);
}
- Ir(e, t, r, null, n);
+ Fr(e, t, r, null, n);
}
}
}
- function Zt(e, t, n, r) {
- var l = Ce(r);
+ function Jt(e, t, n, r) {
+ var l = _e(r);
if (null !== (l = nl(l))) {
var a = Xe(l);
if (null === a) l = null;
@@ -10834,7 +10318,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
} else a !== l && (l = null);
}
}
- return Ir(e, t, r, l, n), null;
+ return Fr(e, t, r, l, n), null;
}
var en = null,
tn = null,
@@ -10997,7 +10481,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Scroll: \\"ScrollLock\\",
MozPrintableKey: \\"Unidentified\\",
},
- _n = {
+ Cn = {
8: \\"Backspace\\",
9: \\"Tab\\",
12: \\"Clear\\",
@@ -11035,7 +10519,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
145: \\"ScrollLock\\",
224: \\"Meta\\",
},
- Cn = {
+ _n = {
Alt: \\"altKey\\",
Control: \\"ctrlKey\\",
Meta: \\"metaKey\\",
@@ -11045,7 +10529,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
var t = this.nativeEvent;
return t.getModifierState
? t.getModifierState(e)
- : !!(e = Cn[e]) && !!t[e];
+ : !!(e = _n[e]) && !!t[e];
}
function Nn() {
return Pn;
@@ -11061,7 +10545,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
? \\"Enter\\"
: String.fromCharCode(e)
: \\"keydown\\" === e.type || \\"keyup\\" === e.type
- ? _n[e.keyCode] || \\"Unidentified\\"
+ ? Cn[e.keyCode] || \\"Unidentified\\"
: \\"\\";
},
code: 0,
@@ -11137,16 +10621,16 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
deltaZ: 0,
deltaMode: 0,
}),
- In = un(Rn),
+ Fn = un(Rn),
Dn = [9, 13, 27, 32],
- Fn = f && \\"CompositionEvent\\" in window,
+ In = f && \\"CompositionEvent\\" in window,
Un = null;
f && \\"documentMode\\" in document && (Un = document.documentMode);
- var An = f && \\"TextEvent\\" in window && !Un,
- jn = f && (!Fn || (Un && 8 < Un && 11 >= Un)),
+ var jn = f && \\"TextEvent\\" in window && !Un,
+ An = f && (!In || (Un && 8 < Un && 11 >= Un)),
Vn = String.fromCharCode(32),
Bn = !1;
- function Wn(e, t) {
+ function $n(e, t) {
switch (e) {
case \\"keyup\\":
return -1 !== Dn.indexOf(t.keyCode);
@@ -11160,7 +10644,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return !1;
}
}
- function $n(e) {
+ function Wn(e) {
return \\"object\\" === typeof (e = e.detail) && \\"data\\" in e
? e.data
: null;
@@ -11189,7 +10673,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
function Kn(e, t, n, r) {
Le(r),
- 0 < (t = Fr(t, \\"onChange\\")).length &&
+ 0 < (t = Ir(t, \\"onChange\\")).length &&
((n = new pn(\\"onChange\\", \\"change\\", null, n, r)),
e.push({ event: n, listeners: t }));
}
@@ -11198,10 +10682,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
function Gn(e) {
Tr(e, 0);
}
- function Jn(e) {
+ function Zn(e) {
if (G(ll(e))) return e;
}
- function Zn(e, t) {
+ function Jn(e, t) {
if (\\"change\\" === e) return t;
}
var er = !1;
@@ -11222,15 +10706,15 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Yn && (Yn.detachEvent(\\"onpropertychange\\", ar), (Xn = Yn = null));
}
function ar(e) {
- if (\\"value\\" === e.propertyName && Jn(Xn)) {
+ if (\\"value\\" === e.propertyName && Zn(Xn)) {
var t = [];
- if ((Kn(t, Xn, e, Ce(e)), (e = Gn), Fe)) e(t);
+ if ((Kn(t, Xn, e, _e(e)), (e = Gn), Ie)) e(t);
else {
- Fe = !0;
+ Ie = !0;
try {
Me(e, t);
} finally {
- (Fe = !1), Ae();
+ (Ie = !1), je();
}
}
}
@@ -11242,13 +10726,13 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
function ur(e) {
if (\\"selectionchange\\" === e || \\"keyup\\" === e || \\"keydown\\" === e)
- return Jn(Xn);
+ return Zn(Xn);
}
function ir(e, t) {
- if (\\"click\\" === e) return Jn(t);
+ if (\\"click\\" === e) return Zn(t);
}
function sr(e, t) {
- if (\\"input\\" === e || \\"change\\" === e) return Jn(t);
+ if (\\"input\\" === e || \\"change\\" === e) return Zn(t);
}
var cr =
\\"function\\" === typeof Object.is
@@ -11316,14 +10800,14 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
);
}
function vr() {
- for (var e = window, t = J(); t instanceof e.HTMLIFrameElement; ) {
+ for (var e = window, t = Z(); t instanceof e.HTMLIFrameElement; ) {
try {
var n = \\"string\\" === typeof t.contentWindow.location.href;
} catch (r) {
n = !1;
}
if (!n) break;
- t = J((e = t.contentWindow).document);
+ t = Z((e = t.contentWindow).document);
}
return t;
}
@@ -11351,7 +10835,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
n.window === n ? n.document : 9 === n.nodeType ? n : n.ownerDocument;
Sr ||
null == br ||
- br !== J(r) ||
+ br !== Z(r) ||
(\\"selectionStart\\" in (r = br) && gr(r)
? (r = { start: r.selectionStart, end: r.selectionEnd })
: (r = {
@@ -11365,34 +10849,34 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}),
(kr && dr(kr, r)) ||
((kr = r),
- 0 < (r = Fr(wr, \\"onSelect\\")).length &&
+ 0 < (r = Ir(wr, \\"onSelect\\")).length &&
((t = new pn(\\"onSelect\\", \\"select\\", null, t, n)),
e.push({ event: t, listeners: r }),
(t.target = br))));
}
- It(
+ Ft(
\\"cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange\\".split(
\\" \\"
),
0
),
- It(
+ Ft(
\\"drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel\\".split(
\\" \\"
),
1
),
- It(Rt, 2);
+ Ft(Rt, 2);
for (
var xr =
\\"change selectionchange textInput compositionstart compositionend compositionupdate\\".split(
\\" \\"
),
- _r = 0;
- _r < xr.length;
- _r++
+ Cr = 0;
+ Cr < xr.length;
+ Cr++
)
- Mt.set(xr[_r], 0);
+ Mt.set(xr[Cr], 0);
c(\\"onMouseEnter\\", [\\"mouseout\\", \\"mouseover\\"]),
c(\\"onMouseLeave\\", [\\"mouseout\\", \\"mouseover\\"]),
c(\\"onPointerEnter\\", [\\"pointerout\\", \\"pointerover\\"]),
@@ -11431,21 +10915,21 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
\\" \\"
)
);
- var Cr =
+ var _r =
\\"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting\\".split(
\\" \\"
),
Pr = new Set(
- \\"cancel close invalid load scroll toggle\\".split(\\" \\").concat(Cr)
+ \\"cancel close invalid load scroll toggle\\".split(\\" \\").concat(_r)
);
function Nr(e, t, n) {
var r = e.type || \\"unknown-event\\";
(e.currentTarget = n),
(function (e, t, n, r, l, a, u, i, s) {
- if ((Ye.apply(this, arguments), $e)) {
- if (!$e) throw Error(o(198));
+ if ((Ye.apply(this, arguments), We)) {
+ if (!We) throw Error(o(198));
var c = He;
- ($e = !1), (He = null), Qe || ((Qe = !0), (qe = c));
+ (We = !1), (He = null), Qe || ((Qe = !0), (qe = c));
}
})(r, t, void 0, e),
(e.currentTarget = null);
@@ -11520,7 +11004,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
l = Gt;
break;
default:
- l = Jt;
+ l = Zt;
}
(n = l.bind(null, t, n, e)),
(l = void 0),
@@ -11535,7 +11019,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
? e.addEventListener(t, n, { passive: l })
: e.addEventListener(t, n, !1);
}
- function Ir(e, t, n, r, l) {
+ function Fr(e, t, n, r, l) {
var a = r;
if (0 === (1 & t) && 0 === (2 & t) && null !== r)
e: for (;;) {
@@ -11572,11 +11056,11 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
try {
De(e, t, n);
} finally {
- (Ue = !1), Ae();
+ (Ue = !1), je();
}
})(function () {
var r = a,
- l = Ce(n),
+ l = _e(n),
o = [];
e: {
var u = Ot.get(e);
@@ -11640,7 +11124,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
i = mn;
break;
case \\"wheel\\":
- i = In;
+ i = Fn;
break;
case \\"copy\\":
case \\"cut\\":
@@ -11668,7 +11152,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
null !== m &&
((p = m),
null !== d &&
- null != (m = je(h, d)) &&
+ null != (m = Ae(h, d)) &&
c.push(Dr(h, m, p))),
f)
)
@@ -11739,8 +11223,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
c = null;
}
else c = null;
- null !== i && Ar(o, u, i, c, !1),
- null !== s && null !== f && Ar(o, f, s, c, !0);
+ null !== i && jr(o, u, i, c, !1),
+ null !== s && null !== f && jr(o, f, s, c, !0);
}
if (
\\"select\\" ===
@@ -11749,7 +11233,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
u.nodeName.toLowerCase()) ||
(\\"input\\" === i && \\"file\\" === u.type)
)
- var v = Zn;
+ var v = Jn;
else if (qn(u))
if (er) v = sr;
else {
@@ -11795,7 +11279,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Er(o, n, l);
}
var y;
- if (Fn)
+ if (In)
e: {
switch (e) {
case \\"compositionstart\\":
@@ -11812,26 +11296,26 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
else
Hn
- ? Wn(e, n) && (b = \\"onCompositionEnd\\")
+ ? $n(e, n) && (b = \\"onCompositionEnd\\")
: \\"keydown\\" === e &&
229 === n.keyCode &&
(b = \\"onCompositionStart\\");
b &&
- (jn &&
+ (An &&
\\"ko\\" !== n.locale &&
(Hn || \\"onCompositionStart\\" !== b
? \\"onCompositionEnd\\" === b && Hn && (y = rn())
: ((tn = \\"value\\" in (en = l) ? en.value : en.textContent),
(Hn = !0))),
- 0 < (g = Fr(r, b)).length &&
+ 0 < (g = Ir(r, b)).length &&
((b = new En(b, e, null, n, l)),
o.push({ event: b, listeners: g }),
- y ? (b.data = y) : null !== (y = $n(n)) && (b.data = y))),
- (y = An
+ y ? (b.data = y) : null !== (y = Wn(n)) && (b.data = y))),
+ (y = jn
? (function (e, t) {
switch (e) {
case \\"compositionend\\":
- return $n(t);
+ return Wn(t);
case \\"keypress\\":
return 32 !== t.which ? null : ((Bn = !0), Vn);
case \\"textInput\\":
@@ -11842,7 +11326,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
})(e, n)
: (function (e, t) {
if (Hn)
- return \\"compositionend\\" === e || (!Fn && Wn(e, t))
+ return \\"compositionend\\" === e || (!In && $n(e, t))
? ((e = rn()), (nn = tn = en = null), (Hn = !1), e)
: null;
switch (e) {
@@ -11859,10 +11343,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
return null;
case \\"compositionend\\":
- return jn && \\"ko\\" !== t.locale ? null : t.data;
+ return An && \\"ko\\" !== t.locale ? null : t.data;
}
})(e, n)) &&
- 0 < (r = Fr(r, \\"onBeforeInput\\")).length &&
+ 0 < (r = Ir(r, \\"onBeforeInput\\")).length &&
((l = new En(\\"onBeforeInput\\", \\"beforeinput\\", null, n, l)),
o.push({ event: l, listeners: r }),
(l.data = y));
@@ -11873,15 +11357,15 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
function Dr(e, t, n) {
return { instance: e, listener: t, currentTarget: n };
}
- function Fr(e, t) {
+ function Ir(e, t) {
for (var n = t + \\"Capture\\", r = []; null !== e; ) {
var l = e,
a = l.stateNode;
5 === l.tag &&
null !== a &&
((l = a),
- null != (a = je(e, n)) && r.unshift(Dr(e, a, l)),
- null != (a = je(e, t)) && r.push(Dr(e, a, l))),
+ null != (a = Ae(e, n)) && r.unshift(Dr(e, a, l)),
+ null != (a = Ae(e, t)) && r.push(Dr(e, a, l))),
(e = e.return);
}
return r;
@@ -11893,7 +11377,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
} while (e && 5 !== e.tag);
return e || null;
}
- function Ar(e, t, n, r, l) {
+ function jr(e, t, n, r, l) {
for (var a = t._reactName, o = []; null !== n && n !== r; ) {
var u = n,
i = u.alternate,
@@ -11903,16 +11387,16 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
null !== s &&
((u = s),
l
- ? null != (i = je(n, a)) && o.unshift(Dr(n, i, u))
- : l || (null != (i = je(n, a)) && o.push(Dr(n, i, u)))),
+ ? null != (i = Ae(n, a)) && o.unshift(Dr(n, i, u))
+ : l || (null != (i = Ae(n, a)) && o.push(Dr(n, i, u)))),
(n = n.return);
}
0 !== o.length && e.push({ event: t, listeners: o });
}
- function jr() {}
+ function Ar() {}
var Vr = null,
Br = null;
- function Wr(e, t) {
+ function $r(e, t) {
switch (e) {
case \\"button\\":
case \\"input\\":
@@ -11922,7 +11406,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
return !1;
}
- function $r(e, t) {
+ function Wr(e, t) {
return (
\\"textarea\\" === e ||
\\"option\\" === e ||
@@ -11964,21 +11448,21 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
var Xr = 0;
var Gr = Math.random().toString(36).slice(2),
- Jr = \\"__reactFiber$\\" + Gr,
- Zr = \\"__reactProps$\\" + Gr,
+ Zr = \\"__reactFiber$\\" + Gr,
+ Jr = \\"__reactProps$\\" + Gr,
el = \\"__reactContainer$\\" + Gr,
tl = \\"__reactEvents$\\" + Gr;
function nl(e) {
- var t = e[Jr];
+ var t = e[Zr];
if (t) return t;
for (var n = e.parentNode; n; ) {
- if ((t = n[el] || n[Jr])) {
+ if ((t = n[el] || n[Zr])) {
if (
((n = t.alternate),
null !== t.child || (null !== n && null !== n.child))
)
for (e = Yr(e); null !== e; ) {
- if ((n = e[Jr])) return n;
+ if ((n = e[Zr])) return n;
e = Yr(e);
}
return t;
@@ -11988,7 +11472,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return null;
}
function rl(e) {
- return !(e = e[Jr] || e[el]) ||
+ return !(e = e[Zr] || e[el]) ||
(5 !== e.tag && 6 !== e.tag && 13 !== e.tag && 3 !== e.tag)
? null
: e;
@@ -11998,7 +11482,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
throw Error(o(33));
}
function al(e) {
- return e[Zr] || null;
+ return e[Jr] || null;
}
function ol(e) {
var t = e[tl];
@@ -12082,8 +11566,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
var El = null,
xl = null,
- _l = a.unstable_runWithPriority,
- Cl = a.unstable_scheduleCallback,
+ Cl = a.unstable_runWithPriority,
+ _l = a.unstable_scheduleCallback,
Pl = a.unstable_cancelCallback,
Nl = a.unstable_shouldYield,
Tl = a.unstable_requestPaint,
@@ -12092,21 +11576,21 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Ol = a.unstable_ImmediatePriority,
Ml = a.unstable_UserBlockingPriority,
Rl = a.unstable_NormalPriority,
- Il = a.unstable_LowPriority,
+ Fl = a.unstable_LowPriority,
Dl = a.unstable_IdlePriority,
- Fl = {},
+ Il = {},
Ul = void 0 !== Tl ? Tl : function () {},
- Al = null,
jl = null,
+ Al = null,
Vl = !1,
Bl = zl(),
- Wl =
+ $l =
1e4 > Bl
? zl
: function () {
return zl() - Bl;
};
- function $l() {
+ function Wl() {
switch (Ll()) {
case Ol:
return 99;
@@ -12114,7 +11598,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return 98;
case Rl:
return 97;
- case Il:
+ case Fl:
return 96;
case Dl:
return 95;
@@ -12131,7 +11615,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
case 97:
return Rl;
case 96:
- return Il;
+ return Fl;
case 95:
return Dl;
default:
@@ -12139,24 +11623,24 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
}
function Ql(e, t) {
- return (e = Hl(e)), _l(e, t);
+ return (e = Hl(e)), Cl(e, t);
}
function ql(e, t, n) {
- return (e = Hl(e)), Cl(e, t, n);
+ return (e = Hl(e)), _l(e, t, n);
}
function Kl() {
- if (null !== jl) {
- var e = jl;
- (jl = null), Pl(e);
+ if (null !== Al) {
+ var e = Al;
+ (Al = null), Pl(e);
}
Yl();
}
function Yl() {
- if (!Vl && null !== Al) {
+ if (!Vl && null !== jl) {
Vl = !0;
var e = 0;
try {
- var t = Al;
+ var t = jl;
Ql(99, function () {
for (; e < t.length; e++) {
var n = t[e];
@@ -12165,9 +11649,9 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
} while (null !== n);
}
}),
- (Al = null);
+ (jl = null);
} catch (n) {
- throw (null !== Al && (Al = Al.slice(e + 1)), Cl(Ol, Kl), n);
+ throw (null !== jl && (jl = jl.slice(e + 1)), _l(Ol, Kl), n);
} finally {
Vl = !1;
}
@@ -12182,16 +11666,16 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
return t;
}
- var Jl = sl(null),
- Zl = null,
+ var Zl = sl(null),
+ Jl = null,
ea = null,
ta = null;
function na() {
- ta = ea = Zl = null;
+ ta = ea = Jl = null;
}
function ra(e) {
- var t = Jl.current;
- cl(Jl), (e.type._context._currentValue = t);
+ var t = Zl.current;
+ cl(Zl), (e.type._context._currentValue = t);
}
function la(e, t) {
for (; null !== e; ) {
@@ -12204,11 +11688,11 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
}
function aa(e, t) {
- (Zl = e),
+ (Jl = e),
(ta = ea = null),
null !== (e = e.dependencies) &&
null !== e.firstContext &&
- (0 !== (e.lanes & t) && (Fo = !0), (e.firstContext = null));
+ (0 !== (e.lanes & t) && (Io = !0), (e.firstContext = null));
}
function oa(e, t) {
if (ta !== e && !1 !== t && 0 !== t)
@@ -12218,9 +11702,9 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(t = { context: e, observedBits: t, next: null }),
null === ea)
) {
- if (null === Zl) throw Error(o(308));
+ if (null === Jl) throw Error(o(308));
(ea = t),
- (Zl.dependencies = {
+ (Jl.dependencies = {
lanes: 0,
firstContext: t,
responders: null,
@@ -12561,7 +12045,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
)
);
}
- function _a(e) {
+ function Ca(e) {
function t(t, n) {
if (e) {
var r = t.lastEffect;
@@ -12876,8 +12360,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return n(e, r);
};
}
- var Ca = _a(!0),
- Pa = _a(!1),
+ var _a = Ca(!0),
+ Pa = Ca(!1),
Na = {},
Ta = sl(Na),
za = sl(Na),
@@ -12903,7 +12387,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
function Ra() {
cl(Ta), cl(za), cl(La);
}
- function Ia(e) {
+ function Fa(e) {
Oa(La.current);
var t = Oa(Ta.current),
n = he(t, e.type);
@@ -12912,7 +12396,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
function Da(e) {
za.current === e && (cl(Ta), cl(za));
}
- var Fa = sl(0);
+ var Ia = sl(0);
function Ua(e) {
for (var t = e; null !== t; ) {
if (13 === t.tag) {
@@ -12939,11 +12423,11 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
return null;
}
- var Aa = null,
- ja = null,
+ var ja = null,
+ Aa = null,
Va = !1;
function Ba(e, t) {
- var n = $i(5, null, null, 0);
+ var n = Wi(5, null, null, 0);
(n.elementType = \\"DELETED\\"),
(n.type = \\"DELETED\\"),
(n.stateNode = t),
@@ -12953,7 +12437,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
? ((e.lastEffect.nextEffect = n), (e.lastEffect = n))
: (e.firstEffect = e.lastEffect = n);
}
- function Wa(e, t) {
+ function $a(e, t) {
switch (e.tag) {
case 5:
var n = e.type;
@@ -12975,20 +12459,20 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return !1;
}
}
- function $a(e) {
+ function Wa(e) {
if (Va) {
- var t = ja;
+ var t = Aa;
if (t) {
var n = t;
- if (!Wa(e, t)) {
- if (!(t = Kr(n.nextSibling)) || !Wa(e, t))
+ if (!$a(e, t)) {
+ if (!(t = Kr(n.nextSibling)) || !$a(e, t))
return (
- (e.flags = (-1025 & e.flags) | 2), (Va = !1), void (Aa = e)
+ (e.flags = (-1025 & e.flags) | 2), (Va = !1), void (ja = e)
);
- Ba(Aa, n);
+ Ba(ja, n);
}
- (Aa = e), (ja = Kr(t.firstChild));
- } else (e.flags = (-1025 & e.flags) | 2), (Va = !1), (Aa = e);
+ (ja = e), (Aa = Kr(t.firstChild));
+ } else (e.flags = (-1025 & e.flags) | 2), (Va = !1), (ja = e);
}
}
function Ha(e) {
@@ -12998,17 +12482,17 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
)
e = e.return;
- Aa = e;
+ ja = e;
}
function Qa(e) {
- if (e !== Aa) return !1;
+ if (e !== ja) return !1;
if (!Va) return Ha(e), (Va = !0), !1;
var t = e.type;
if (
5 !== e.tag ||
- (\\"head\\" !== t && \\"body\\" !== t && !$r(t, e.memoizedProps))
+ (\\"head\\" !== t && \\"body\\" !== t && !Wr(t, e.memoizedProps))
)
- for (t = ja; t; ) Ba(e, t), (t = Kr(t.nextSibling));
+ for (t = Aa; t; ) Ba(e, t), (t = Kr(t.nextSibling));
if ((Ha(e), 13 === e.tag)) {
if (!(e = null !== (e = e.memoizedState) ? e.dehydrated : null))
throw Error(o(317));
@@ -13018,7 +12502,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
var n = e.data;
if (\\"/$\\" === n) {
if (0 === t) {
- ja = Kr(e.nextSibling);
+ Aa = Kr(e.nextSibling);
break e;
}
t--;
@@ -13026,13 +12510,13 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
e = e.nextSibling;
}
- ja = null;
+ Aa = null;
}
- } else ja = Aa ? Kr(e.stateNode.nextSibling) : null;
+ } else Aa = ja ? Kr(e.stateNode.nextSibling) : null;
return !0;
}
function qa() {
- (ja = Aa = null), (Va = !1);
+ (Aa = ja = null), (Va = !1);
}
var Ka = [];
function Ya() {
@@ -13042,8 +12526,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
var Xa = k.ReactCurrentDispatcher,
Ga = k.ReactCurrentBatchConfig,
- Ja = 0,
- Za = null,
+ Za = 0,
+ Ja = null,
eo = null,
to = null,
no = !1,
@@ -13059,8 +12543,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
function oo(e, t, n, r, l, a) {
if (
- ((Ja = a),
- (Za = t),
+ ((Za = a),
+ (Ja = t),
(t.memoizedState = null),
(t.updateQueue = null),
(t.lanes = 0),
@@ -13074,15 +12558,15 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(a += 1),
(to = eo = null),
(t.updateQueue = null),
- (Xa.current = Io),
+ (Xa.current = Fo),
(e = n(r, l));
} while (ro);
}
if (
((Xa.current = Oo),
(t = null !== eo && null !== eo.next),
- (Ja = 0),
- (to = eo = Za = null),
+ (Za = 0),
+ (to = eo = Ja = null),
(no = !1),
t)
)
@@ -13098,15 +12582,15 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
next: null,
};
return (
- null === to ? (Za.memoizedState = to = e) : (to = to.next = e), to
+ null === to ? (Ja.memoizedState = to = e) : (to = to.next = e), to
);
}
function io() {
if (null === eo) {
- var e = Za.alternate;
+ var e = Ja.alternate;
e = null !== e ? e.memoizedState : null;
} else e = eo.next;
- var t = null === to ? Za.memoizedState : to.next;
+ var t = null === to ? Ja.memoizedState : to.next;
if (null !== t) (to = t), (eo = e);
else {
if (null === e) throw Error(o(310));
@@ -13117,7 +12601,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
queue: eo.queue,
next: null,
}),
- null === to ? (Za.memoizedState = to = e) : (to = to.next = e);
+ null === to ? (Ja.memoizedState = to = e) : (to = to.next = e);
}
return to;
}
@@ -13145,7 +12629,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
s = l;
do {
var c = s.lane;
- if ((Ja & c) === c)
+ if ((Za & c) === c)
null !== i &&
(i = i.next =
{
@@ -13165,13 +12649,13 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
next: null,
};
null === i ? ((u = i = f), (a = r)) : (i = i.next = f),
- (Za.lanes |= c),
+ (Ja.lanes |= c),
(Vu |= c);
}
s = s.next;
} while (null !== s && s !== l);
null === i ? (a = r) : (i.next = u),
- cr(r, t.memoizedState) || (Fo = !0),
+ cr(r, t.memoizedState) || (Io = !0),
(t.memoizedState = r),
(t.baseState = a),
(t.baseQueue = i),
@@ -13193,7 +12677,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
do {
(a = e(a, u.action)), (u = u.next);
} while (u !== l);
- cr(a, t.memoizedState) || (Fo = !0),
+ cr(a, t.memoizedState) || (Io = !0),
(t.memoizedState = a),
null === t.baseQueue && (t.baseState = a),
(n.lastRenderedState = a);
@@ -13208,7 +12692,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(null !== l
? (e = l === r)
: ((e = e.mutableReadLanes),
- (e = (Ja & e) === e) &&
+ (e = (Za & e) === e) &&
((t._workInProgressVersionPrimary = r), Ka.push(t))),
e)
)
@@ -13232,7 +12716,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
h = p.getSnapshot,
m = d.source;
d = d.subscribe;
- var v = Za;
+ var v = Ja;
return (
(e.memoizedState = { refs: p, source: t, subscribe: r }),
i.useEffect(
@@ -13248,7 +12732,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(e = l.mutableReadLanes),
(l.entangledLanes |= e);
for (var r = l.entanglements, o = e; 0 < o; ) {
- var i = 31 - $t(o),
+ var i = 31 - Wt(o),
s = 1 << i;
(r[i] |= e), (o &= ~s);
}
@@ -13281,7 +12765,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
lastRenderedReducer: so,
lastRenderedState: f,
}).dispatch = c =
- Lo.bind(null, Za, e)),
+ Lo.bind(null, Ja, e)),
(s.queue = e),
(s.baseQueue = null),
(f = po(l, t, n)),
@@ -13304,16 +12788,16 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
lastRenderedReducer: so,
lastRenderedState: e,
}).dispatch =
- Lo.bind(null, Za, e)),
+ Lo.bind(null, Ja, e)),
[t.memoizedState, e]
);
}
function go(e, t, n, r) {
return (
(e = { tag: e, create: t, destroy: n, deps: r, next: null }),
- null === (t = Za.updateQueue)
+ null === (t = Ja.updateQueue)
? ((t = { lastEffect: null }),
- (Za.updateQueue = t),
+ (Ja.updateQueue = t),
(t.lastEffect = e.next = e))
: null === (n = t.lastEffect)
? (t.lastEffect = e.next = e)
@@ -13329,7 +12813,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
function wo(e, t, n, r) {
var l = uo();
- (Za.flags |= e),
+ (Ja.flags |= e),
(l.memoizedState = go(1 | t, n, void 0, void 0 === r ? null : r));
}
function ko(e, t, n, r) {
@@ -13341,7 +12825,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
if (((a = o.destroy), null !== r && ao(r, o.deps)))
return void go(t, n, a, r);
}
- (Za.flags |= e), (l.memoizedState = go(1 | t, n, a, r));
+ (Ja.flags |= e), (l.memoizedState = go(1 | t, n, a, r));
}
function So(e, t) {
return wo(516, 4, e, t);
@@ -13352,7 +12836,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
function xo(e, t) {
return ko(4, 2, e, t);
}
- function _o(e, t) {
+ function Co(e, t) {
return \\"function\\" === typeof t
? ((e = e()),
t(e),
@@ -13367,10 +12851,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
})
: void 0;
}
- function Co(e, t, n) {
+ function _o(e, t, n) {
return (
(n = null !== n && void 0 !== n ? n.concat([e]) : null),
- ko(4, 2, _o.bind(null, t, e), n)
+ ko(4, 2, Co.bind(null, t, e), n)
);
}
function Po() {}
@@ -13391,7 +12875,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
: ((e = e()), (n.memoizedState = [e, t]), e);
}
function zo(e, t) {
- var n = $l();
+ var n = Wl();
Ql(98 > n ? 98 : n, function () {
e(!0);
}),
@@ -13420,7 +12904,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(null === o ? (a.next = a) : ((a.next = o.next), (o.next = a)),
(t.pending = a),
(o = e.alternate),
- e === Za || (null !== o && o === Za))
+ e === Ja || (null !== o && o === Ja))
)
ro = no = !0;
else {
@@ -13465,7 +12949,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
useImperativeHandle: function (e, t, n) {
return (
(n = null !== n && void 0 !== n ? n.concat([e]) : null),
- wo(4, 2, _o.bind(null, t, e), n)
+ wo(4, 2, Co.bind(null, t, e), n)
);
},
useLayoutEffect: function (e, t) {
@@ -13492,7 +12976,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
lastRenderedReducer: e,
lastRenderedState: t,
}).dispatch =
- Lo.bind(null, Za, e)),
+ Lo.bind(null, Ja, e)),
[r.memoizedState, e]
);
},
@@ -13539,7 +13023,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
if (Va) {
var e = !1,
t = (function (e) {
- return { $$typeof: I, toString: e, valueOf: e };
+ return { $$typeof: F, toString: e, valueOf: e };
})(function () {
throw (
(e || ((e = !0), n(\\"r:\\" + (Xr++).toString(36))),
@@ -13548,8 +13032,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}),
n = vo(t)[1];
return (
- 0 === (2 & Za.mode) &&
- ((Za.flags |= 516),
+ 0 === (2 & Ja.mode) &&
+ ((Ja.flags |= 516),
go(
5,
function () {
@@ -13570,7 +13054,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
useCallback: No,
useContext: oa,
useEffect: Eo,
- useImperativeHandle: Co,
+ useImperativeHandle: _o,
useLayoutEffect: xo,
useMemo: To,
useReducer: co,
@@ -13609,12 +13093,12 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
},
unstable_isNewReconciler: !1,
},
- Io = {
+ Fo = {
readContext: oa,
useCallback: No,
useContext: oa,
useEffect: Eo,
- useImperativeHandle: Co,
+ useImperativeHandle: _o,
useLayoutEffect: xo,
useMemo: To,
useReducer: fo,
@@ -13654,17 +13138,17 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
unstable_isNewReconciler: !1,
},
Do = k.ReactCurrentOwner,
- Fo = !1;
+ Io = !1;
function Uo(e, t, n, r) {
- t.child = null === e ? Pa(t, null, n, r) : Ca(t, e.child, n, r);
+ t.child = null === e ? Pa(t, null, n, r) : _a(t, e.child, n, r);
}
- function Ao(e, t, n, r, l) {
+ function jo(e, t, n, r, l) {
n = n.render;
var a = t.ref;
return (
aa(t, l),
(r = oo(e, t, n, r, a, l)),
- null === e || Fo
+ null === e || Io
? ((t.flags |= 1), Uo(e, t, r, l), t.child)
: ((t.updateQueue = e.updateQueue),
(t.flags &= -517),
@@ -13672,7 +13156,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
au(e, t, l))
);
}
- function jo(e, t, n, r, l, a) {
+ function Ao(e, t, n, r, l, a) {
if (null === e) {
var o = n.type;
return \\"function\\" !== typeof o ||
@@ -13699,11 +13183,11 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
function Vo(e, t, n, r, l, a) {
if (null !== e && dr(e.memoizedProps, r) && e.ref === t.ref) {
- if (((Fo = !1), 0 === (a & l)))
+ if (((Io = !1), 0 === (a & l)))
return (t.lanes = e.lanes), au(e, t, a);
- 0 !== (16384 & e.flags) && (Fo = !0);
+ 0 !== (16384 & e.flags) && (Io = !0);
}
- return $o(e, t, n, r, a);
+ return Wo(e, t, n, r, a);
}
function Bo(e, t, n) {
var r = t.pendingProps,
@@ -13731,18 +13215,18 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Si(t, r);
return Uo(e, t, l, n), t.child;
}
- function Wo(e, t) {
+ function $o(e, t) {
var n = t.ref;
((null === e && null !== n) || (null !== e && e.ref !== n)) &&
(t.flags |= 128);
}
- function $o(e, t, n, r, l) {
+ function Wo(e, t, n, r, l) {
var a = gl(n) ? ml : pl.current;
return (
(a = vl(t, a)),
aa(t, l),
(n = oo(e, t, n, r, a, l)),
- null === e || Fo
+ null === e || Io
? ((t.flags |= 1), Uo(e, t, n, l), t.child)
: ((t.updateQueue = e.updateQueue),
(t.flags &= -517),
@@ -13865,7 +13349,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return Qo(e, t, n, r, a, l);
}
function Qo(e, t, n, r, l, a) {
- Wo(e, t);
+ $o(e, t);
var o = 0 !== (64 & t.flags);
if (!r && !o) return l && Sl(t, n, !1), au(e, t, a);
(r = t.stateNode), (Do.current = t);
@@ -13876,8 +13360,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return (
(t.flags |= 1),
null !== e && o
- ? ((t.child = Ca(t, e.child, null, a)),
- (t.child = Ca(t, null, u, a)))
+ ? ((t.child = _a(t, e.child, null, a)),
+ (t.child = _a(t, null, u, a)))
: Uo(e, t, u, a),
(t.memoizedState = r.state),
l && Sl(t, n, !0),
@@ -13895,10 +13379,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Yo,
Xo,
Go = { dehydrated: null, retryLane: 0 };
- function Jo(e, t, n) {
+ function Zo(e, t, n) {
var r,
l = t.pendingProps,
- a = Fa.current,
+ a = Ia.current,
o = !1;
return (
(r = 0 !== (64 & t.flags)) ||
@@ -13909,18 +13393,18 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
void 0 === l.fallback ||
!0 === l.unstable_avoidThisFallback ||
(a |= 1),
- fl(Fa, 1 & a),
+ fl(Ia, 1 & a),
null === e
- ? (void 0 !== l.fallback && $a(t),
+ ? (void 0 !== l.fallback && Wa(t),
(e = l.children),
(a = l.fallback),
o
- ? ((e = Zo(t, e, a, n)),
+ ? ((e = Jo(t, e, a, n)),
(t.child.memoizedState = { baseLanes: n }),
(t.memoizedState = Go),
e)
: \\"number\\" === typeof l.unstable_expectedLoadTime
- ? ((e = Zo(t, e, a, n)),
+ ? ((e = Jo(t, e, a, n)),
(t.child.memoizedState = { baseLanes: n }),
(t.memoizedState = Go),
(t.lanes = 33554432),
@@ -13947,7 +13431,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
: ((n = eu(e, t, l.children, n)), (t.memoizedState = null), n))
);
}
- function Zo(e, t, n, r) {
+ function Jo(e, t, n, r) {
var l = e.mode,
a = e.child;
return (
@@ -14030,7 +13514,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
var r = t.pendingProps,
l = r.revealOrder,
a = r.tail;
- if ((Uo(e, t, r.children, n), 0 !== (2 & (r = Fa.current))))
+ if ((Uo(e, t, r.children, n), 0 !== (2 & (r = Ia.current))))
(r = (1 & r) | 2), (t.flags |= 64);
else {
if (null !== e && 0 !== (64 & e.flags))
@@ -14050,7 +13534,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
r &= 1;
}
- if ((fl(Fa, r), 0 === (2 & t.mode))) t.memoizedState = null;
+ if ((fl(Ia, r), 0 === (2 & t.mode))) t.memoizedState = null;
else
switch (l) {
case \\"forwards\\":
@@ -14163,7 +13647,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
if (((e = Oa(Ta.current)), Qa(t))) {
(r = t.stateNode), (n = t.type);
var u = t.memoizedProps;
- switch (((r[Jr] = t), (r[Zr] = u), n)) {
+ switch (((r[Zr] = t), (r[Jr] = u), n)) {
case \\"dialog\\":
zr(\\"cancel\\", r), zr(\\"close\\", r);
break;
@@ -14174,7 +13658,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
break;
case \\"video\\":
case \\"audio\\":
- for (e = 0; e < Cr.length; e++) zr(Cr[e], r);
+ for (e = 0; e < _r.length; e++) zr(_r[e], r);
break;
case \\"source\\":
zr(\\"error\\", r);
@@ -14221,7 +13705,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
case \\"option\\":
break;
default:
- \\"function\\" === typeof u.onClick && (r.onclick = jr);
+ \\"function\\" === typeof u.onClick && (r.onclick = Ar);
}
(r = e), (t.updateQueue = r), null !== r && (t.flags |= 4);
} else {
@@ -14242,11 +13726,11 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
? (s.multiple = !0)
: r.size && (s.size = r.size)))
: (e = s.createElementNS(e, n)),
- (e[Jr] = t),
- (e[Zr] = r),
+ (e[Zr] = t),
+ (e[Jr] = r),
Ko(e, t),
(t.stateNode = e),
- (s = _e(n, r)),
+ (s = Ce(n, r)),
n)
) {
case \\"dialog\\":
@@ -14259,7 +13743,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
break;
case \\"video\\":
case \\"audio\\":
- for (a = 0; a < Cr.length; a++) zr(Cr[a], e);
+ for (a = 0; a < _r.length; a++) zr(_r[a], e);
a = r;
break;
case \\"source\\":
@@ -14274,7 +13758,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
zr(\\"toggle\\", e), (a = r);
break;
case \\"input\\":
- ee(e, r), (a = Z(e, r)), zr(\\"invalid\\", e);
+ ee(e, r), (a = J(e, r)), zr(\\"invalid\\", e);
break;
case \\"option\\":
a = ae(e, r);
@@ -14328,9 +13812,9 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
oe(e, !!r.multiple, r.defaultValue, !0);
break;
default:
- \\"function\\" === typeof a.onClick && (e.onclick = jr);
+ \\"function\\" === typeof a.onClick && (e.onclick = Ar);
}
- Wr(n, r) && (t.flags |= 4);
+ $r(n, r) && (t.flags |= 4);
}
null !== t.ref && (t.flags |= 128);
}
@@ -14345,17 +13829,17 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Qa(t)
? ((r = t.stateNode),
(n = t.memoizedProps),
- (r[Jr] = t),
+ (r[Zr] = t),
r.nodeValue !== n && (t.flags |= 4))
: (((r = (
9 === n.nodeType ? n : n.ownerDocument
- ).createTextNode(r))[Jr] = t),
+ ).createTextNode(r))[Zr] = t),
(t.stateNode = r));
}
return null;
case 13:
return (
- cl(Fa),
+ cl(Ia),
(r = t.memoizedState),
0 !== (64 & t.flags)
? ((t.lanes = n), t)
@@ -14369,12 +13853,12 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
0 !== (2 & t.mode) &&
((null === e &&
!0 !== t.memoizedProps.unstable_avoidThisFallback) ||
- 0 !== (1 & Fa.current)
+ 0 !== (1 & Ia.current)
? 0 === Uu && (Uu = 3)
: ((0 !== Uu && 3 !== Uu) || (Uu = 4),
null === Mu ||
(0 === (134217727 & Vu) && 0 === (134217727 & Bu)) ||
- yi(Mu, Iu))),
+ yi(Mu, Fu))),
(r || n) && (t.flags |= 4),
null)
);
@@ -14383,7 +13867,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
case 10:
return ra(t), null;
case 19:
- if ((cl(Fa), null === (r = t.memoizedState))) return null;
+ if ((cl(Ia), null === (r = t.memoizedState))) return null;
if (((u = 0 !== (64 & t.flags)), null === (s = r.rendering)))
if (u) ou(r, !1);
else {
@@ -14432,12 +13916,12 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
firstContext: e.firstContext,
})),
(n = n.sibling);
- return fl(Fa, (1 & Fa.current) | 2), t.child;
+ return fl(Ia, (1 & Ia.current) | 2), t.child;
}
e = e.sibling;
}
null !== r.tail &&
- Wl() > Qu &&
+ $l() > Qu &&
((t.flags |= 64), (u = !0), ou(r, !1), (t.lanes = 33554432));
}
else {
@@ -14460,7 +13944,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
null
);
} else
- 2 * Wl() - r.renderingStartTime > Qu &&
+ 2 * $l() - r.renderingStartTime > Qu &&
1073741824 !== n &&
((t.flags |= 64),
(u = !0),
@@ -14476,10 +13960,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(r.rendering = n),
(r.tail = n.sibling),
(r.lastEffect = t.lastEffect),
- (r.renderingStartTime = Wl()),
+ (r.renderingStartTime = $l()),
(n.sibling = null),
- (t = Fa.current),
- fl(Fa, u ? (1 & t) | 2 : 1 & t),
+ (t = Ia.current),
+ fl(Ia, u ? (1 & t) | 2 : 1 & t),
n)
: null;
case 23:
@@ -14509,11 +13993,11 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
return Da(e), null;
case 13:
return (
- cl(Fa),
+ cl(Ia),
4096 & (t = e.flags) ? ((e.flags = (-4097 & t) | 64), e) : null
);
case 19:
- return cl(Fa), null;
+ return cl(Ia), null;
case 4:
return Ra(), null;
case 10:
@@ -14570,7 +14054,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
u = null;
switch (n) {
case \\"input\\":
- (a = Z(e, a)), (r = Z(e, r)), (u = []);
+ (a = J(e, a)), (r = J(e, r)), (u = []);
break;
case \\"option\\":
(a = ae(e, a)), (r = ae(e, r)), (u = []);
@@ -14586,7 +14070,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
default:
\\"function\\" !== typeof a.onClick &&
\\"function\\" === typeof r.onClick &&
- (e.onclick = jr);
+ (e.onclick = Ar);
}
for (f in (xe(n, r), (n = null), a))
if (!r.hasOwnProperty(f) && a.hasOwnProperty(f) && null != a[f])
@@ -14635,7 +14119,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
u || s === c || (u = []))
: \\"object\\" === typeof c &&
null !== c &&
- c.$$typeof === I
+ c.$$typeof === F
? c.toString()
: (u = u || []).push(f, c));
}
@@ -14673,7 +14157,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
\\"function\\" === typeof a.componentDidCatch &&
(n.callback = function () {
\\"function\\" !== typeof r &&
- (null === Ju ? (Ju = new Set([this])) : Ju.add(this), cu(0, t));
+ (null === Zu ? (Zu = new Set([this])) : Zu.add(this), cu(0, t));
var e = t.stack;
this.componentDidCatch(t.value, {
componentStack: null !== e ? e : \\"\\",
@@ -14690,7 +14174,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
try {
t(null);
} catch (n) {
- ji(e, n);
+ Ai(e, n);
}
else t.current = null;
}
@@ -14748,7 +14232,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(r = l.next),
0 !== (4 & (l = l.tag)) &&
0 !== (1 & l) &&
- (Fi(n, e), Di(n, e)),
+ (Ii(n, e), Di(n, e)),
(e = r);
} while (e !== t);
}
@@ -14787,7 +14271,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
void (
null === t &&
4 & n.flags &&
- Wr(n.type, n.memoizedProps) &&
+ $r(n.type, n.memoizedProps) &&
e.focus()
)
);
@@ -14865,13 +14349,13 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
var r = n,
l = r.destroy;
if (((r = r.tag), void 0 !== l))
- if (0 !== (4 & r)) Fi(t, n);
+ if (0 !== (4 & r)) Ii(t, n);
else {
r = t;
try {
l();
} catch (a) {
- ji(r, a);
+ Ai(r, a);
}
}
n = n.next;
@@ -14888,14 +14372,14 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(e.state = t.memoizedState),
e.componentWillUnmount();
} catch (a) {
- ji(t, a);
+ Ai(t, a);
}
break;
case 5:
mu(t);
break;
case 4:
- _u(e, t);
+ Cu(e, t);
}
}
function wu(e) {
@@ -14972,7 +14456,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
: (t = n).appendChild(e),
(null !== (n = n._reactRootContainer) && void 0 !== n) ||
null !== t.onclick ||
- (t.onclick = jr));
+ (t.onclick = Ar));
else if (4 !== r && null !== (e = e.child))
for (Eu(e, t, n), e = e.sibling; null !== e; )
Eu(e, t, n), (e = e.sibling);
@@ -14987,7 +14471,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
for (xu(e, t, n), e = e.sibling; null !== e; )
xu(e, t, n), (e = e.sibling);
}
- function _u(e, t) {
+ function Cu(e, t) {
for (var n, r, l = t, a = !1; ; ) {
if (!a) {
a = l.return;
@@ -15045,7 +14529,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(l.sibling.return = l.return), (l = l.sibling);
}
}
- function Cu(e, t) {
+ function _u(e, t) {
switch (t.tag) {
case 0:
case 11:
@@ -15074,13 +14558,13 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
var a = t.updateQueue;
if (((t.updateQueue = null), null !== a)) {
for (
- n[Zr] = r,
+ n[Jr] = r,
\\"input\\" === e &&
\\"radio\\" === r.type &&
null != r.name &&
te(n, r),
- _e(e, l),
- t = _e(e, r),
+ Ce(e, l),
+ t = Ce(e, r),
l = 0;
l < a.length;
l += 2
@@ -15125,7 +14609,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
);
case 13:
return (
- null !== t.memoizedState && ((Hu = Wl()), yu(t.child, !0)),
+ null !== t.memoizedState && ((Hu = $l()), yu(t.child, !0)),
void Pu(t)
);
case 19:
@@ -15162,27 +14646,27 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Ou = 0,
Mu = null,
Ru = null,
- Iu = 0,
+ Fu = 0,
Du = 0,
- Fu = sl(0),
+ Iu = sl(0),
Uu = 0,
- Au = null,
- ju = 0,
+ ju = null,
+ Au = 0,
Vu = 0,
Bu = 0,
- Wu = 0,
- $u = null,
+ $u = 0,
+ Wu = null,
Hu = 0,
Qu = 1 / 0;
function qu() {
- Qu = Wl() + 500;
+ Qu = $l() + 500;
}
var Ku,
Yu = null,
Xu = !1,
Gu = null,
- Ju = null,
- Zu = !1,
+ Zu = null,
+ Ju = !1,
ei = null,
ti = 90,
ni = [],
@@ -15196,13 +14680,13 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
ci = null,
fi = !1;
function di() {
- return 0 !== (48 & Ou) ? Wl() : -1 !== ui ? ui : (ui = Wl());
+ return 0 !== (48 & Ou) ? $l() : -1 !== ui ? ui : (ui = $l());
}
function pi(e) {
if (0 === (2 & (e = e.mode))) return 1;
- if (0 === (4 & e)) return 99 === $l() ? 1 : 2;
- if ((0 === ii && (ii = ju), 0 !== Xl.transition)) {
- 0 !== si && (si = null !== $u ? $u.pendingLanes : 0), (e = ii);
+ if (0 === (4 & e)) return 99 === Wl() ? 1 : 2;
+ if ((0 === ii && (ii = Au), 0 !== Xl.transition)) {
+ 0 !== si && (si = null !== Wu ? Wu.pendingLanes : 0), (e = ii);
var t = 4186112 & ~si;
return (
0 === (t &= -t) &&
@@ -15212,10 +14696,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
);
}
return (
- (e = $l()),
+ (e = Wl()),
0 !== (4 & Ou) && 98 === e
- ? (e = jt(12, ii))
- : (e = jt(
+ ? (e = At(12, ii))
+ : (e = At(
(e = (function (e) {
switch (e) {
case 99:
@@ -15239,8 +14723,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
function hi(e, t, n) {
if (50 < ai) throw ((ai = 0), (oi = null), Error(o(185)));
if (null === (e = mi(e, t))) return null;
- Wt(e, t, n), e === Mu && ((Bu |= t), 4 === Uu && yi(e, Iu));
- var r = $l();
+ $t(e, t, n), e === Mu && ((Bu |= t), 4 === Uu && yi(e, Fu));
+ var r = Wl();
1 === t
? 0 !== (8 & Ou) && 0 === (48 & Ou)
? bi(e)
@@ -15249,7 +14733,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(98 !== r && 99 !== r) ||
(null === li ? (li = new Set([e])) : li.add(e)),
vi(e, n)),
- ($u = e);
+ (Wu = e);
}
function mi(e, t) {
e.lanes |= t;
@@ -15271,32 +14755,32 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
0 < u;
) {
- var i = 31 - $t(u),
+ var i = 31 - Wt(u),
s = 1 << i,
c = a[i];
if (-1 === c) {
if (0 === (s & r) || 0 !== (s & l)) {
- (c = t), Ft(s);
+ (c = t), It(s);
var f = Dt;
a[i] = 10 <= f ? c + 250 : 6 <= f ? c + 5e3 : -1;
}
} else c <= t && (e.expiredLanes |= s);
u &= ~s;
}
- if (((r = Ut(e, e === Mu ? Iu : 0)), (t = Dt), 0 === r))
+ if (((r = Ut(e, e === Mu ? Fu : 0)), (t = Dt), 0 === r))
null !== n &&
- (n !== Fl && Pl(n),
+ (n !== Il && Pl(n),
(e.callbackNode = null),
(e.callbackPriority = 0));
else {
if (null !== n) {
if (e.callbackPriority === t) return;
- n !== Fl && Pl(n);
+ n !== Il && Pl(n);
}
15 === t
? ((n = bi.bind(null, e)),
- null === Al ? ((Al = [n]), (jl = Cl(Ol, Yl))) : Al.push(n),
- (n = Fl))
+ null === jl ? ((jl = [n]), (Al = _l(Ol, Yl))) : jl.push(n),
+ (n = Il))
: 14 === t
? (n = ql(99, bi.bind(null, e)))
: ((n = (function (e) {
@@ -15334,26 +14818,26 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
function gi(e) {
if (((ui = -1), (si = ii = 0), 0 !== (48 & Ou))) throw Error(o(327));
var t = e.callbackNode;
- if (Ii() && e.callbackNode !== t) return null;
- var n = Ut(e, e === Mu ? Iu : 0);
+ if (Fi() && e.callbackNode !== t) return null;
+ var n = Ut(e, e === Mu ? Fu : 0);
if (0 === n) return null;
var r = n,
l = Ou;
Ou |= 16;
- var a = Ci();
- for ((Mu === e && Iu === r) || (qu(), xi(e, r)); ; )
+ var a = _i();
+ for ((Mu === e && Fu === r) || (qu(), xi(e, r)); ; )
try {
Ti();
break;
} catch (i) {
- _i(e, i);
+ Ci(e, i);
}
if (
(na(),
(zu.current = a),
(Ou = l),
- null !== Ru ? (r = 0) : ((Mu = null), (Iu = 0), (r = Uu)),
- 0 !== (ju & Bu))
+ null !== Ru ? (r = 0) : ((Mu = null), (Fu = 0), (r = Uu)),
+ 0 !== (Au & Bu))
)
xi(e, 0);
else if (0 !== r) {
@@ -15361,10 +14845,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(2 === r &&
((Ou |= 64),
e.hydrate && ((e.hydrate = !1), qr(e.containerInfo)),
- 0 !== (n = At(e)) && (r = Pi(e, n))),
+ 0 !== (n = jt(e)) && (r = Pi(e, n))),
1 === r)
)
- throw ((t = Au), xi(e, 0), yi(e, n), vi(e, Wl()), t);
+ throw ((t = ju), xi(e, 0), yi(e, n), vi(e, $l()), t);
switch (
((e.finishedWork = e.current.alternate), (e.finishedLanes = n), r)
) {
@@ -15377,7 +14861,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
break;
case 3:
if (
- (yi(e, n), (62914560 & n) === n && 10 < (r = Hu + 500 - Wl()))
+ (yi(e, n), (62914560 & n) === n && 10 < (r = Hu + 500 - $l()))
) {
if (0 !== Ut(e, 0)) break;
if (((l = e.suspendedLanes) & n) !== n) {
@@ -15392,14 +14876,14 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
case 4:
if ((yi(e, n), (4186112 & n) === n)) break;
for (r = e.eventTimes, l = -1; 0 < n; ) {
- var u = 31 - $t(n);
+ var u = 31 - Wt(n);
(a = 1 << u), (u = r[u]) > l && (l = u), (n &= ~a);
}
if (
((n = l),
10 <
(n =
- (120 > (n = Wl() - n)
+ (120 > (n = $l() - n)
? 120
: 480 > n
? 480
@@ -15422,11 +14906,11 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
throw Error(o(329));
}
}
- return vi(e, Wl()), e.callbackNode === t ? gi.bind(null, e) : null;
+ return vi(e, $l()), e.callbackNode === t ? gi.bind(null, e) : null;
}
function yi(e, t) {
for (
- t &= ~Wu,
+ t &= ~$u,
t &= ~Bu,
e.suspendedLanes |= t,
e.pingedLanes &= ~t,
@@ -15434,32 +14918,32 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
0 < t;
) {
- var n = 31 - $t(t),
+ var n = 31 - Wt(t),
r = 1 << n;
(e[n] = -1), (t &= ~r);
}
}
function bi(e) {
if (0 !== (48 & Ou)) throw Error(o(327));
- if ((Ii(), e === Mu && 0 !== (e.expiredLanes & Iu))) {
- var t = Iu,
+ if ((Fi(), e === Mu && 0 !== (e.expiredLanes & Fu))) {
+ var t = Fu,
n = Pi(e, t);
- 0 !== (ju & Bu) && (n = Pi(e, (t = Ut(e, t))));
+ 0 !== (Au & Bu) && (n = Pi(e, (t = Ut(e, t))));
} else n = Pi(e, (t = Ut(e, 0)));
if (
(0 !== e.tag &&
2 === n &&
((Ou |= 64),
e.hydrate && ((e.hydrate = !1), qr(e.containerInfo)),
- 0 !== (t = At(e)) && (n = Pi(e, t))),
+ 0 !== (t = jt(e)) && (n = Pi(e, t))),
1 === n)
)
- throw ((n = Au), xi(e, 0), yi(e, t), vi(e, Wl()), n);
+ throw ((n = ju), xi(e, 0), yi(e, t), vi(e, $l()), n);
return (
(e.finishedWork = e.current.alternate),
(e.finishedLanes = t),
Oi(e),
- vi(e, Wl()),
+ vi(e, $l()),
null
);
}
@@ -15482,10 +14966,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
}
function Si(e, t) {
- fl(Fu, Du), (Du |= t), (ju |= t);
+ fl(Iu, Du), (Du |= t), (Au |= t);
}
function Ei() {
- (Du = Fu.current), cl(Fu);
+ (Du = Iu.current), cl(Iu);
}
function xi(e, t) {
(e.finishedWork = null), (e.finishedLanes = 0);
@@ -15508,7 +14992,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
break;
case 13:
case 19:
- cl(Fa);
+ cl(Ia);
break;
case 10:
ra(r);
@@ -15521,30 +15005,30 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
(Mu = e),
(Ru = Qi(e.current, null)),
- (Iu = Du = ju = t),
+ (Fu = Du = Au = t),
(Uu = 0),
- (Au = null),
- (Wu = Bu = Vu = 0);
+ (ju = null),
+ ($u = Bu = Vu = 0);
}
- function _i(e, t) {
+ function Ci(e, t) {
for (;;) {
var n = Ru;
try {
if ((na(), (Xa.current = Oo), no)) {
- for (var r = Za.memoizedState; null !== r; ) {
+ for (var r = Ja.memoizedState; null !== r; ) {
var l = r.queue;
null !== l && (l.pending = null), (r = r.next);
}
no = !1;
}
if (
- ((Ja = 0),
- (to = eo = Za = null),
+ ((Za = 0),
+ (to = eo = Ja = null),
(ro = !1),
(Lu.current = null),
null === n || null === n.return)
) {
- (Uu = 1), (Au = t), (Ru = null);
+ (Uu = 1), (ju = t), (Ru = null);
break;
}
e: {
@@ -15553,7 +15037,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
u = n,
i = t;
if (
- ((t = Iu),
+ ((t = Fu),
(u.flags |= 2048),
(u.firstEffect = u.lastEffect = null),
null !== i &&
@@ -15569,7 +15053,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(u.lanes = c.lanes))
: ((u.updateQueue = null), (u.memoizedState = null));
}
- var f = 0 !== (1 & Fa.current),
+ var f = 0 !== (1 & Ia.current),
d = o;
do {
var p;
@@ -15648,7 +15132,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(\\"function\\" === typeof k.getDerivedStateFromError ||
(null !== S &&
\\"function\\" === typeof S.componentDidCatch &&
- (null === Ju || !Ju.has(S))))
+ (null === Zu || !Zu.has(S))))
) {
(d.flags |= 4096),
(t &= -t),
@@ -15668,24 +15152,24 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
break;
}
}
- function Ci() {
+ function _i() {
var e = zu.current;
return (zu.current = Oo), null === e ? Oo : e;
}
function Pi(e, t) {
var n = Ou;
Ou |= 16;
- var r = Ci();
- for ((Mu === e && Iu === t) || xi(e, t); ; )
+ var r = _i();
+ for ((Mu === e && Fu === t) || xi(e, t); ; )
try {
Ni();
break;
} catch (l) {
- _i(e, l);
+ Ci(e, l);
}
if ((na(), (Ou = n), (zu.current = r), null !== Ru))
throw Error(o(261));
- return (Mu = null), (Iu = 0), Uu;
+ return (Mu = null), (Fu = 0), Uu;
}
function Ni() {
for (; null !== Ru; ) zi(Ru);
@@ -15738,12 +15222,12 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
0 === Uu && (Uu = 5);
}
function Oi(e) {
- var t = $l();
+ var t = Wl();
return Ql(99, Mi.bind(null, e, t)), null;
}
function Mi(e, t) {
do {
- Ii();
+ Fi();
} while (null !== ei);
if (0 !== (48 & Ou)) throw Error(o(327));
var n = e.finishedWork;
@@ -15762,13 +15246,13 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(e.entangledLanes &= l),
(l = e.entanglements);
for (var u = e.eventTimes, i = e.expirationTimes; 0 < a; ) {
- var s = 31 - $t(a),
+ var s = 31 - Wt(a),
c = 1 << s;
(l[s] = 0), (u[s] = -1), (i[s] = -1), (a &= ~c);
}
if (
(null !== li && 0 === (24 & r) && li.has(e) && li.delete(e),
- e === Mu && ((Ru = Mu = null), (Iu = 0)),
+ e === Mu && ((Ru = Mu = null), (Fu = 0)),
1 < n.flags
? null !== n.lastEffect
? ((n.lastEffect.nextEffect = n), (r = n.firstEffect))
@@ -15796,7 +15280,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(c = c.focusOffset);
try {
i.nodeType, s.nodeType;
- } catch (C) {
+ } catch (_) {
i = null;
break e;
}
@@ -15841,9 +15325,9 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
do {
try {
Ri();
- } catch (C) {
+ } catch (_) {
if (null === Yu) throw Error(o(330));
- ji(Yu, C), (Yu = Yu.nextEffect);
+ Ai(Yu, _), (Yu = Yu.nextEffect);
}
} while (null !== Yu);
(ci = null), (Yu = r);
@@ -15864,27 +15348,27 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
Su(Yu), (Yu.flags &= -3);
break;
case 6:
- Su(Yu), (Yu.flags &= -3), Cu(Yu.alternate, Yu);
+ Su(Yu), (Yu.flags &= -3), _u(Yu.alternate, Yu);
break;
case 1024:
Yu.flags &= -1025;
break;
case 1028:
- (Yu.flags &= -1025), Cu(Yu.alternate, Yu);
+ (Yu.flags &= -1025), _u(Yu.alternate, Yu);
break;
case 4:
- Cu(Yu.alternate, Yu);
+ _u(Yu.alternate, Yu);
break;
case 8:
- _u(u, (i = Yu));
+ Cu(u, (i = Yu));
var S = i.alternate;
wu(i), null !== S && wu(S);
}
Yu = Yu.nextEffect;
}
- } catch (C) {
+ } catch (_) {
if (null === Yu) throw Error(o(330));
- ji(Yu, C), (Yu = Yu.nextEffect);
+ Ai(Yu, _), (Yu = Yu.nextEffect);
}
} while (null !== Yu);
if (
@@ -15947,22 +15431,22 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
w = void 0;
var x = Yu.ref;
if (null !== x) {
- var _ = Yu.stateNode;
+ var C = Yu.stateNode;
Yu.tag,
- (w = _),
+ (w = C),
\\"function\\" === typeof x ? x(w) : (x.current = w);
}
}
Yu = Yu.nextEffect;
}
- } catch (C) {
+ } catch (_) {
if (null === Yu) throw Error(o(330));
- ji(Yu, C), (Yu = Yu.nextEffect);
+ Ai(Yu, _), (Yu = Yu.nextEffect);
}
} while (null !== Yu);
(Yu = null), Ul(), (Ou = l);
} else e.current = n;
- if (Zu) (Zu = !1), (ei = e), (ti = t);
+ if (Ju) (Ju = !1), (ei = e), (ti = t);
else
for (Yu = r; null !== Yu; )
(t = Yu.nextEffect),
@@ -15970,15 +15454,15 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
8 & Yu.flags && (((E = Yu).sibling = null), (E.stateNode = null)),
(Yu = t);
if (
- (0 === (r = e.pendingLanes) && (Ju = null),
+ (0 === (r = e.pendingLanes) && (Zu = null),
1 === r ? (e === oi ? ai++ : ((ai = 0), (oi = e))) : (ai = 0),
(n = n.stateNode),
xl && \\"function\\" === typeof xl.onCommitFiberRoot)
)
try {
xl.onCommitFiberRoot(El, n, void 0, 64 === (64 & n.current.flags));
- } catch (C) {}
- if ((vi(e, Wl()), Xu)) throw ((Xu = !1), (e = Gu), (Gu = null), e);
+ } catch (_) {}
+ if ((vi(e, $l()), Xu)) throw ((Xu = !1), (e = Gu), (Gu = null), e);
return 0 !== (8 & Ou) || Kl(), null;
}
function Ri() {
@@ -15992,15 +15476,15 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
var t = Yu.flags;
0 !== (256 & t) && vu(e, Yu),
0 === (512 & t) ||
- Zu ||
- ((Zu = !0),
+ Ju ||
+ ((Ju = !0),
ql(97, function () {
- return Ii(), null;
+ return Fi(), null;
})),
(Yu = Yu.nextEffect);
}
}
- function Ii() {
+ function Fi() {
if (90 !== ti) {
var e = 97 < ti ? 97 : ti;
return (ti = 90), Ql(e, Ui);
@@ -16009,18 +15493,18 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
function Di(e, t) {
ni.push(t, e),
- Zu ||
- ((Zu = !0),
+ Ju ||
+ ((Ju = !0),
ql(97, function () {
- return Ii(), null;
+ return Fi(), null;
}));
}
- function Fi(e, t) {
+ function Ii(e, t) {
ri.push(t, e),
- Zu ||
- ((Zu = !0),
+ Ju ||
+ ((Ju = !0),
ql(97, function () {
- return Ii(), null;
+ return Fi(), null;
}));
}
function Ui() {
@@ -16040,7 +15524,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
u();
} catch (s) {
if (null === a) throw Error(o(330));
- ji(a, s);
+ Ai(a, s);
}
}
for (n = ni, ni = [], r = 0; r < n.length; r += 2) {
@@ -16050,7 +15534,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
l.destroy = i();
} catch (s) {
if (null === a) throw Error(o(330));
- ji(a, s);
+ Ai(a, s);
}
}
for (i = e.current.firstEffect; null !== i; )
@@ -16060,17 +15544,17 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(i = e);
return (Ou = t), Kl(), !0;
}
- function Ai(e, t, n) {
+ function ji(e, t, n) {
fa(e, (t = du(0, (t = su(n, t)), 1))),
(t = di()),
- null !== (e = mi(e, 1)) && (Wt(e, 1, t), vi(e, t));
+ null !== (e = mi(e, 1)) && ($t(e, 1, t), vi(e, t));
}
- function ji(e, t) {
- if (3 === e.tag) Ai(e, e, t);
+ function Ai(e, t) {
+ if (3 === e.tag) ji(e, e, t);
else
for (var n = e.return; null !== n; ) {
if (3 === n.tag) {
- Ai(n, e, t);
+ ji(n, e, t);
break;
}
if (1 === n.tag) {
@@ -16078,14 +15562,14 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
if (
\\"function\\" === typeof n.type.getDerivedStateFromError ||
(\\"function\\" === typeof r.componentDidCatch &&
- (null === Ju || !Ju.has(r)))
+ (null === Zu || !Zu.has(r)))
) {
var l = pu(n, (e = su(t, e)), 1);
if ((fa(n, l), (l = di()), null !== (n = mi(n, 1))))
- Wt(n, 1, l), vi(n, l);
+ $t(n, 1, l), vi(n, l);
else if (
\\"function\\" === typeof r.componentDidCatch &&
- (null === Ju || !Ju.has(r))
+ (null === Zu || !Zu.has(r))
)
try {
r.componentDidCatch(t, e);
@@ -16102,10 +15586,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(t = di()),
(e.pingedLanes |= e.suspendedLanes & n),
Mu === e &&
- (Iu & n) === n &&
- (4 === Uu || (3 === Uu && (62914560 & Iu) === Iu && 500 > Wl() - Hu)
+ (Fu & n) === n &&
+ (4 === Uu || (3 === Uu && (62914560 & Fu) === Fu && 500 > $l() - Hu)
? xi(e, 0)
- : (Wu |= n)),
+ : ($u |= n)),
vi(e, t);
}
function Bi(e, t) {
@@ -16115,13 +15599,13 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(0 === (2 & (t = e.mode))
? (t = 1)
: 0 === (4 & t)
- ? (t = 99 === $l() ? 1 : 2)
- : (0 === ii && (ii = ju),
+ ? (t = 99 === Wl() ? 1 : 2)
+ : (0 === ii && (ii = Au),
0 === (t = Vt(62914560 & ~ii)) && (t = 4194304))),
(n = di()),
- null !== (e = mi(e, t)) && (Wt(e, t, n), vi(e, n));
+ null !== (e = mi(e, t)) && ($t(e, t, n), vi(e, n));
}
- function Wi(e, t, n, r) {
+ function $i(e, t, n, r) {
(this.tag = e),
(this.key = n),
(this.sibling =
@@ -16145,8 +15629,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(this.childLanes = this.lanes = 0),
(this.alternate = null);
}
- function $i(e, t, n, r) {
- return new Wi(e, t, n, r);
+ function Wi(e, t, n, r) {
+ return new $i(e, t, n, r);
}
function Hi(e) {
return !(!(e = e.prototype) || !e.isReactComponent);
@@ -16155,7 +15639,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
var n = e.alternate;
return (
null === n
- ? (((n = $i(e.tag, t, e.key, e.mode)).elementType = e.elementType),
+ ? (((n = Wi(e.tag, t, e.key, e.mode)).elementType = e.elementType),
(n.type = e.type),
(n.stateNode = e.stateNode),
(n.alternate = e),
@@ -16194,29 +15678,29 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
case D:
(u = 8), (l |= 16);
break;
- case _:
+ case C:
(u = 8), (l |= 1);
break;
- case C:
+ case _:
return (
- ((e = $i(12, n, t, 8 | l)).elementType = C),
- (e.type = C),
+ ((e = Wi(12, n, t, 8 | l)).elementType = _),
+ (e.type = _),
(e.lanes = a),
e
);
case z:
return (
- ((e = $i(13, n, t, l)).type = z),
+ ((e = Wi(13, n, t, l)).type = z),
(e.elementType = z),
(e.lanes = a),
e
);
case L:
- return ((e = $i(19, n, t, l)).elementType = L), (e.lanes = a), e;
- case F:
+ return ((e = Wi(19, n, t, l)).elementType = L), (e.lanes = a), e;
+ case I:
return Yi(n, l, a, t);
case U:
- return ((e = $i(24, n, t, l)).elementType = U), (e.lanes = a), e;
+ return ((e = Wi(24, n, t, l)).elementType = U), (e.lanes = a), e;
default:
if (\\"object\\" === typeof e && null !== e)
switch (e.$$typeof) {
@@ -16242,21 +15726,21 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
throw Error(o(130, null == e ? e : typeof e, \\"\\"));
}
return (
- ((t = $i(u, n, t, l)).elementType = e), (t.type = r), (t.lanes = a), t
+ ((t = Wi(u, n, t, l)).elementType = e), (t.type = r), (t.lanes = a), t
);
}
function Ki(e, t, n, r) {
- return ((e = $i(7, e, r, t)).lanes = n), e;
+ return ((e = Wi(7, e, r, t)).lanes = n), e;
}
function Yi(e, t, n, r) {
- return ((e = $i(23, e, r, t)).elementType = F), (e.lanes = n), e;
+ return ((e = Wi(23, e, r, t)).elementType = I), (e.lanes = n), e;
}
function Xi(e, t, n) {
- return ((e = $i(6, e, null, t)).lanes = n), e;
+ return ((e = Wi(6, e, null, t)).lanes = n), e;
}
function Gi(e, t, n) {
return (
- ((t = $i(4, null !== e.children ? e.children : [], e.key, t)).lanes =
+ ((t = Wi(4, null !== e.children ? e.children : [], e.key, t)).lanes =
n),
(t.stateNode = {
containerInfo: e.containerInfo,
@@ -16266,7 +15750,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
t
);
}
- function Ji(e, t, n) {
+ function Zi(e, t, n) {
(this.tag = t),
(this.containerInfo = e),
(this.finishedWork =
@@ -16292,7 +15776,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(this.entanglements = Bt(0)),
(this.mutableSourceEagerHydrationData = null);
}
- function Zi(e, t, n) {
+ function Ji(e, t, n) {
var r =
3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;
return {
@@ -16327,723 +15811,1064 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
} while (null !== i);
throw Error(o(171));
}
- if (1 === n.tag) {
- var s = n.type;
- if (gl(s)) {
- n = wl(n, s, i);
- break e;
- }
+ if (1 === n.tag) {
+ var s = n.type;
+ if (gl(s)) {
+ n = wl(n, s, i);
+ break e;
+ }
+ }
+ n = i;
+ } else n = dl;
+ return (
+ null === t.context ? (t.context = n) : (t.pendingContext = n),
+ ((t = ca(a, u)).payload = { element: e }),
+ null !== (r = void 0 === r ? null : r) && (t.callback = r),
+ fa(l, t),
+ hi(l, u, a),
+ u
+ );
+ }
+ function ts(e) {
+ return (e = e.current).child ? (e.child.tag, e.child.stateNode) : null;
+ }
+ function ns(e, t) {
+ if (null !== (e = e.memoizedState) && null !== e.dehydrated) {
+ var n = e.retryLane;
+ e.retryLane = 0 !== n && n < t ? n : t;
+ }
+ }
+ function rs(e, t) {
+ ns(e, t), (e = e.alternate) && ns(e, t);
+ }
+ function ls(e, t, n) {
+ var r =
+ (null != n &&
+ null != n.hydrationOptions &&
+ n.hydrationOptions.mutableSources) ||
+ null;
+ if (
+ ((n = new Zi(e, t, null != n && !0 === n.hydrate)),
+ (t = Wi(3, null, null, 2 === t ? 7 : 1 === t ? 3 : 0)),
+ (n.current = t),
+ (t.stateNode = n),
+ ia(t),
+ (e[el] = n.current),
+ Or(8 === e.nodeType ? e.parentNode : e),
+ r)
+ )
+ for (e = 0; e < r.length; e++) {
+ var l = (t = r[e])._getVersion;
+ (l = l(t._source)),
+ null == n.mutableSourceEagerHydrationData
+ ? (n.mutableSourceEagerHydrationData = [t, l])
+ : n.mutableSourceEagerHydrationData.push(t, l);
+ }
+ this._internalRoot = n;
+ }
+ function as(e) {
+ return !(
+ !e ||
+ (1 !== e.nodeType &&
+ 9 !== e.nodeType &&
+ 11 !== e.nodeType &&
+ (8 !== e.nodeType ||
+ \\" react-mount-point-unstable \\" !== e.nodeValue))
+ );
+ }
+ function os(e, t, n, r, l) {
+ var a = n._reactRootContainer;
+ if (a) {
+ var o = a._internalRoot;
+ if (\\"function\\" === typeof l) {
+ var u = l;
+ l = function () {
+ var e = ts(o);
+ u.call(e);
+ };
+ }
+ es(t, o, e, l);
+ } else {
+ if (
+ ((a = n._reactRootContainer =
+ (function (e, t) {
+ if (
+ (t ||
+ (t = !(
+ !(t = e
+ ? 9 === e.nodeType
+ ? e.documentElement
+ : e.firstChild
+ : null) ||
+ 1 !== t.nodeType ||
+ !t.hasAttribute(\\"data-reactroot\\")
+ )),
+ !t)
+ )
+ for (var n; (n = e.lastChild); ) e.removeChild(n);
+ return new ls(e, 0, t ? { hydrate: !0 } : void 0);
+ })(n, r)),
+ (o = a._internalRoot),
+ \\"function\\" === typeof l)
+ ) {
+ var i = l;
+ l = function () {
+ var e = ts(o);
+ i.call(e);
+ };
+ }
+ ki(function () {
+ es(t, o, e, l);
+ });
+ }
+ return ts(o);
+ }
+ function us(e, t) {
+ var n =
+ 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
+ if (!as(t)) throw Error(o(200));
+ return Ji(e, t, null, n);
+ }
+ (Ku = function (e, t, n) {
+ var r = t.lanes;
+ if (null !== e)
+ if (e.memoizedProps !== t.pendingProps || hl.current) Io = !0;
+ else {
+ if (0 === (n & r)) {
+ switch (((Io = !1), t.tag)) {
+ case 3:
+ qo(t), qa();
+ break;
+ case 5:
+ Fa(t);
+ break;
+ case 1:
+ gl(t.type) && kl(t);
+ break;
+ case 4:
+ Ma(t, t.stateNode.containerInfo);
+ break;
+ case 10:
+ r = t.memoizedProps.value;
+ var l = t.type._context;
+ fl(Zl, l._currentValue), (l._currentValue = r);
+ break;
+ case 13:
+ if (null !== t.memoizedState)
+ return 0 !== (n & t.child.childLanes)
+ ? Zo(e, t, n)
+ : (fl(Ia, 1 & Ia.current),
+ null !== (t = au(e, t, n)) ? t.sibling : null);
+ fl(Ia, 1 & Ia.current);
+ break;
+ case 19:
+ if (((r = 0 !== (n & t.childLanes)), 0 !== (64 & e.flags))) {
+ if (r) return lu(e, t, n);
+ t.flags |= 64;
+ }
+ if (
+ (null !== (l = t.memoizedState) &&
+ ((l.rendering = null),
+ (l.tail = null),
+ (l.lastEffect = null)),
+ fl(Ia, Ia.current),
+ r)
+ )
+ break;
+ return null;
+ case 23:
+ case 24:
+ return (t.lanes = 0), Bo(e, t, n);
+ }
+ return au(e, t, n);
+ }
+ Io = 0 !== (16384 & e.flags);
+ }
+ else Io = !1;
+ switch (((t.lanes = 0), t.tag)) {
+ case 2:
+ if (
+ ((r = t.type),
+ null !== e &&
+ ((e.alternate = null), (t.alternate = null), (t.flags |= 2)),
+ (e = t.pendingProps),
+ (l = vl(t, pl.current)),
+ aa(t, n),
+ (l = oo(null, t, r, e, l, n)),
+ (t.flags |= 1),
+ \\"object\\" === typeof l &&
+ null !== l &&
+ \\"function\\" === typeof l.render &&
+ void 0 === l.$$typeof)
+ ) {
+ if (
+ ((t.tag = 1),
+ (t.memoizedState = null),
+ (t.updateQueue = null),
+ gl(r))
+ ) {
+ var a = !0;
+ kl(t);
+ } else a = !1;
+ (t.memoizedState =
+ null !== l.state && void 0 !== l.state ? l.state : null),
+ ia(t);
+ var u = r.getDerivedStateFromProps;
+ \\"function\\" === typeof u && va(t, r, u, e),
+ (l.updater = ga),
+ (t.stateNode = l),
+ (l._reactInternals = t),
+ ka(t, r, e, n),
+ (t = Qo(null, t, r, !0, a, n));
+ } else (t.tag = 0), Uo(null, t, l, n), (t = t.child);
+ return t;
+ case 16:
+ l = t.elementType;
+ e: {
+ switch (
+ (null !== e &&
+ ((e.alternate = null), (t.alternate = null), (t.flags |= 2)),
+ (e = t.pendingProps),
+ (l = (a = l._init)(l._payload)),
+ (t.type = l),
+ (a = t.tag =
+ (function (e) {
+ if (\\"function\\" === typeof e) return Hi(e) ? 1 : 0;
+ if (void 0 !== e && null !== e) {
+ if ((e = e.$$typeof) === T) return 11;
+ if (e === O) return 14;
+ }
+ return 2;
+ })(l)),
+ (e = Gl(l, e)),
+ a)
+ ) {
+ case 0:
+ t = Wo(null, t, l, e, n);
+ break e;
+ case 1:
+ t = Ho(null, t, l, e, n);
+ break e;
+ case 11:
+ t = jo(null, t, l, e, n);
+ break e;
+ case 14:
+ t = Ao(null, t, l, Gl(l.type, e), r, n);
+ break e;
+ }
+ throw Error(o(306, l, \\"\\"));
+ }
+ return t;
+ case 0:
+ return (
+ (r = t.type),
+ (l = t.pendingProps),
+ Wo(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
+ );
+ case 1:
+ return (
+ (r = t.type),
+ (l = t.pendingProps),
+ Ho(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
+ );
+ case 3:
+ if ((qo(t), (r = t.updateQueue), null === e || null === r))
+ throw Error(o(282));
+ if (
+ ((r = t.pendingProps),
+ (l = null !== (l = t.memoizedState) ? l.element : null),
+ sa(e, t),
+ pa(t, r, null, n),
+ (r = t.memoizedState.element) === l)
+ )
+ qa(), (t = au(e, t, n));
+ else {
+ if (
+ ((a = (l = t.stateNode).hydrate) &&
+ ((Aa = Kr(t.stateNode.containerInfo.firstChild)),
+ (ja = t),
+ (a = Va = !0)),
+ a)
+ ) {
+ if (null != (e = l.mutableSourceEagerHydrationData))
+ for (l = 0; l < e.length; l += 2)
+ ((a = e[l])._workInProgressVersionPrimary = e[l + 1]),
+ Ka.push(a);
+ for (n = Pa(t, null, r, n), t.child = n; n; )
+ (n.flags = (-3 & n.flags) | 1024), (n = n.sibling);
+ } else Uo(e, t, r, n), qa();
+ t = t.child;
+ }
+ return t;
+ case 5:
+ return (
+ Fa(t),
+ null === e && Wa(t),
+ (r = t.type),
+ (l = t.pendingProps),
+ (a = null !== e ? e.memoizedProps : null),
+ (u = l.children),
+ Wr(r, l) ? (u = null) : null !== a && Wr(r, a) && (t.flags |= 16),
+ $o(e, t),
+ Uo(e, t, u, n),
+ t.child
+ );
+ case 6:
+ return null === e && Wa(t), null;
+ case 13:
+ return Zo(e, t, n);
+ case 4:
+ return (
+ Ma(t, t.stateNode.containerInfo),
+ (r = t.pendingProps),
+ null === e ? (t.child = _a(t, null, r, n)) : Uo(e, t, r, n),
+ t.child
+ );
+ case 11:
+ return (
+ (r = t.type),
+ (l = t.pendingProps),
+ jo(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
+ );
+ case 7:
+ return Uo(e, t, t.pendingProps, n), t.child;
+ case 8:
+ case 12:
+ return Uo(e, t, t.pendingProps.children, n), t.child;
+ case 10:
+ e: {
+ (r = t.type._context),
+ (l = t.pendingProps),
+ (u = t.memoizedProps),
+ (a = l.value);
+ var i = t.type._context;
+ if ((fl(Zl, i._currentValue), (i._currentValue = a), null !== u))
+ if (
+ ((i = u.value),
+ 0 ===
+ (a = cr(i, a)
+ ? 0
+ : 0 |
+ (\\"function\\" === typeof r._calculateChangedBits
+ ? r._calculateChangedBits(i, a)
+ : 1073741823)))
+ ) {
+ if (u.children === l.children && !hl.current) {
+ t = au(e, t, n);
+ break e;
+ }
+ } else
+ for (null !== (i = t.child) && (i.return = t); null !== i; ) {
+ var s = i.dependencies;
+ if (null !== s) {
+ u = i.child;
+ for (var c = s.firstContext; null !== c; ) {
+ if (c.context === r && 0 !== (c.observedBits & a)) {
+ 1 === i.tag &&
+ (((c = ca(-1, n & -n)).tag = 2), fa(i, c)),
+ (i.lanes |= n),
+ null !== (c = i.alternate) && (c.lanes |= n),
+ la(i.return, n),
+ (s.lanes |= n);
+ break;
+ }
+ c = c.next;
+ }
+ } else
+ u = 10 === i.tag && i.type === t.type ? null : i.child;
+ if (null !== u) u.return = i;
+ else
+ for (u = i; null !== u; ) {
+ if (u === t) {
+ u = null;
+ break;
+ }
+ if (null !== (i = u.sibling)) {
+ (i.return = u.return), (u = i);
+ break;
+ }
+ u = u.return;
+ }
+ i = u;
+ }
+ Uo(e, t, l.children, n), (t = t.child);
+ }
+ return t;
+ case 9:
+ return (
+ (l = t.type),
+ (r = (a = t.pendingProps).children),
+ aa(t, n),
+ (r = r((l = oa(l, a.unstable_observedBits)))),
+ (t.flags |= 1),
+ Uo(e, t, r, n),
+ t.child
+ );
+ case 14:
+ return (
+ (a = Gl((l = t.type), t.pendingProps)),
+ Ao(e, t, l, (a = Gl(l.type, a)), r, n)
+ );
+ case 15:
+ return Vo(e, t, t.type, t.pendingProps, r, n);
+ case 17:
+ return (
+ (r = t.type),
+ (l = t.pendingProps),
+ (l = t.elementType === r ? l : Gl(r, l)),
+ null !== e &&
+ ((e.alternate = null), (t.alternate = null), (t.flags |= 2)),
+ (t.tag = 1),
+ gl(r) ? ((e = !0), kl(t)) : (e = !1),
+ aa(t, n),
+ ba(t, r, l),
+ ka(t, r, l, n),
+ Qo(null, t, r, !0, e, n)
+ );
+ case 19:
+ return lu(e, t, n);
+ case 23:
+ case 24:
+ return Bo(e, t, n);
+ }
+ throw Error(o(156, t.tag));
+ }),
+ (ls.prototype.render = function (e) {
+ es(e, this._internalRoot, null, null);
+ }),
+ (ls.prototype.unmount = function () {
+ var e = this._internalRoot,
+ t = e.containerInfo;
+ es(null, e, null, function () {
+ t[el] = null;
+ });
+ }),
+ (tt = function (e) {
+ 13 === e.tag && (hi(e, 4, di()), rs(e, 4));
+ }),
+ (nt = function (e) {
+ 13 === e.tag && (hi(e, 67108864, di()), rs(e, 67108864));
+ }),
+ (rt = function (e) {
+ if (13 === e.tag) {
+ var t = di(),
+ n = pi(e);
+ hi(e, n, t), rs(e, n);
+ }
+ }),
+ (lt = function (e, t) {
+ return t();
+ }),
+ (Pe = function (e, t, n) {
+ switch (t) {
+ case \\"input\\":
+ if ((ne(e, n), (t = n.name), \\"radio\\" === n.type && null != t)) {
+ for (n = e; n.parentNode; ) n = n.parentNode;
+ for (
+ n = n.querySelectorAll(
+ \\"input[name=\\" + JSON.stringify(\\"\\" + t) + '][type=\\"radio\\"]'
+ ),
+ t = 0;
+ t < n.length;
+ t++
+ ) {
+ var r = n[t];
+ if (r !== e && r.form === e.form) {
+ var l = al(r);
+ if (!l) throw Error(o(90));
+ G(r), ne(r, l);
+ }
+ }
+ }
+ break;
+ case \\"textarea\\":
+ se(e, n);
+ break;
+ case \\"select\\":
+ null != (t = n.value) && oe(e, !!n.multiple, t, !1);
+ }
+ }),
+ (Me = wi),
+ (Re = function (e, t, n, r, l) {
+ var a = Ou;
+ Ou |= 4;
+ try {
+ return Ql(98, e.bind(null, t, n, r, l));
+ } finally {
+ 0 === (Ou = a) && (qu(), Kl());
}
- n = i;
- } else n = dl;
- return (
- null === t.context ? (t.context = n) : (t.pendingContext = n),
- ((t = ca(a, u)).payload = { element: e }),
- null !== (r = void 0 === r ? null : r) && (t.callback = r),
- fa(l, t),
- hi(l, u, a),
- u
- );
- }
- function ts(e) {
- return (e = e.current).child ? (e.child.tag, e.child.stateNode) : null;
- }
- function ns(e, t) {
- if (null !== (e = e.memoizedState) && null !== e.dehydrated) {
- var n = e.retryLane;
- e.retryLane = 0 !== n && n < t ? n : t;
- }
- }
- function rs(e, t) {
- ns(e, t), (e = e.alternate) && ns(e, t);
+ }),
+ (Fe = function () {
+ 0 === (49 & Ou) &&
+ ((function () {
+ if (null !== li) {
+ var e = li;
+ (li = null),
+ e.forEach(function (e) {
+ (e.expiredLanes |= 24 & e.pendingLanes), vi(e, $l());
+ });
+ }
+ Kl();
+ })(),
+ Fi());
+ }),
+ (De = function (e, t) {
+ var n = Ou;
+ Ou |= 2;
+ try {
+ return e(t);
+ } finally {
+ 0 === (Ou = n) && (qu(), Kl());
+ }
+ });
+ var is = { Events: [rl, ll, al, Le, Oe, Fi, { current: !1 }] },
+ ss = {
+ findFiberByHostInstance: nl,
+ bundleType: 0,
+ version: \\"17.0.2\\",
+ rendererPackageName: \\"react-dom\\",
+ },
+ cs = {
+ bundleType: ss.bundleType,
+ version: ss.version,
+ rendererPackageName: ss.rendererPackageName,
+ rendererConfig: ss.rendererConfig,
+ overrideHookState: null,
+ overrideHookStateDeletePath: null,
+ overrideHookStateRenamePath: null,
+ overrideProps: null,
+ overridePropsDeletePath: null,
+ overridePropsRenamePath: null,
+ setSuspenseHandler: null,
+ scheduleUpdate: null,
+ currentDispatcherRef: k.ReactCurrentDispatcher,
+ findHostInstanceByFiber: function (e) {
+ return null === (e = Je(e)) ? null : e.stateNode;
+ },
+ findFiberByHostInstance:
+ ss.findFiberByHostInstance ||
+ function () {
+ return null;
+ },
+ findHostInstancesForRefresh: null,
+ scheduleRefresh: null,
+ scheduleRoot: null,
+ setRefreshHandler: null,
+ getCurrentFiber: null,
+ };
+ if (\\"undefined\\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
+ var fs = __REACT_DEVTOOLS_GLOBAL_HOOK__;
+ if (!fs.isDisabled && fs.supportsFiber)
+ try {
+ (El = fs.inject(cs)), (xl = fs);
+ } catch (ve) {}
}
- function ls(e, t, n) {
- var r =
- (null != n &&
- null != n.hydrationOptions &&
- n.hydrationOptions.mutableSources) ||
- null;
+ t.render = function (e, t, n) {
+ if (!as(t)) throw Error(o(200));
+ return os(null, e, t, !1, n);
+ };
+ },
+ 316: (e, t, n) => {
+ !(function e() {
if (
- ((n = new Ji(e, t, null != n && !0 === n.hydrate)),
- (t = $i(3, null, null, 2 === t ? 7 : 1 === t ? 3 : 0)),
- (n.current = t),
- (t.stateNode = n),
- ia(t),
- (e[el] = n.current),
- Or(8 === e.nodeType ? e.parentNode : e),
- r)
+ \\"undefined\\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
+ \\"function\\" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE
)
- for (e = 0; e < r.length; e++) {
- var l = (t = r[e])._getVersion;
- (l = l(t._source)),
- null == n.mutableSourceEagerHydrationData
- ? (n.mutableSourceEagerHydrationData = [t, l])
- : n.mutableSourceEagerHydrationData.push(t, l);
+ try {
+ __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e);
+ } catch (t) {
+ console.error(t);
}
- this._internalRoot = n;
+ })(),
+ (e.exports = n(967));
+ },
+ 426: (e, t, n) => {
+ var r = n(320),
+ l = 60103,
+ a = 60106;
+ (t.Fragment = 60107), (t.StrictMode = 60108), (t.Profiler = 60114);
+ var o = 60109,
+ u = 60110,
+ i = 60112;
+ t.Suspense = 60113;
+ var s = 60115,
+ c = 60116;
+ if (\\"function\\" === typeof Symbol && Symbol.for) {
+ var f = Symbol.for;
+ (l = f(\\"react.element\\")),
+ (a = f(\\"react.portal\\")),
+ (t.Fragment = f(\\"react.fragment\\")),
+ (t.StrictMode = f(\\"react.strict_mode\\")),
+ (t.Profiler = f(\\"react.profiler\\")),
+ (o = f(\\"react.provider\\")),
+ (u = f(\\"react.context\\")),
+ (i = f(\\"react.forward_ref\\")),
+ (t.Suspense = f(\\"react.suspense\\")),
+ (s = f(\\"react.memo\\")),
+ (c = f(\\"react.lazy\\"));
}
- function as(e) {
- return !(
- !e ||
- (1 !== e.nodeType &&
- 9 !== e.nodeType &&
- 11 !== e.nodeType &&
- (8 !== e.nodeType ||
- \\" react-mount-point-unstable \\" !== e.nodeValue))
+ var d = \\"function\\" === typeof Symbol && Symbol.iterator;
+ function p(e) {
+ for (
+ var t = \\"https://reactjs.org/docs/error-decoder.html?invariant=\\" + e,
+ n = 1;
+ n < arguments.length;
+ n++
+ )
+ t += \\"&args[]=\\" + encodeURIComponent(arguments[n]);
+ return (
+ \\"Minified React error #\\" +
+ e +
+ \\"; visit \\" +
+ t +
+ \\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\\"
);
}
- function os(e, t, n, r, l) {
- var a = n._reactRootContainer;
- if (a) {
- var o = a._internalRoot;
- if (\\"function\\" === typeof l) {
- var u = l;
- l = function () {
- var e = ts(o);
- u.call(e);
- };
- }
- es(t, o, e, l);
- } else {
- if (
- ((a = n._reactRootContainer =
- (function (e, t) {
- if (
- (t ||
- (t = !(
- !(t = e
- ? 9 === e.nodeType
- ? e.documentElement
- : e.firstChild
- : null) ||
- 1 !== t.nodeType ||
- !t.hasAttribute(\\"data-reactroot\\")
- )),
- !t)
- )
- for (var n; (n = e.lastChild); ) e.removeChild(n);
- return new ls(e, 0, t ? { hydrate: !0 } : void 0);
- })(n, r)),
- (o = a._internalRoot),
- \\"function\\" === typeof l)
- ) {
- var i = l;
- l = function () {
- var e = ts(o);
- i.call(e);
- };
- }
- ki(function () {
- es(t, o, e, l);
- });
+ var h = {
+ isMounted: function () {
+ return !1;
+ },
+ enqueueForceUpdate: function () {},
+ enqueueReplaceState: function () {},
+ enqueueSetState: function () {},
+ },
+ m = {};
+ function v(e, t, n) {
+ (this.props = e),
+ (this.context = t),
+ (this.refs = m),
+ (this.updater = n || h);
+ }
+ function g() {}
+ function y(e, t, n) {
+ (this.props = e),
+ (this.context = t),
+ (this.refs = m),
+ (this.updater = n || h);
+ }
+ (v.prototype.isReactComponent = {}),
+ (v.prototype.setState = function (e, t) {
+ if (\\"object\\" !== typeof e && \\"function\\" !== typeof e && null != e)
+ throw Error(p(85));
+ this.updater.enqueueSetState(this, e, t, \\"setState\\");
+ }),
+ (v.prototype.forceUpdate = function (e) {
+ this.updater.enqueueForceUpdate(this, e, \\"forceUpdate\\");
+ }),
+ (g.prototype = v.prototype);
+ var b = (y.prototype = new g());
+ (b.constructor = y), r(b, v.prototype), (b.isPureReactComponent = !0);
+ var w = { current: null },
+ k = Object.prototype.hasOwnProperty,
+ S = { key: !0, ref: !0, __self: !0, __source: !0 };
+ function E(e, t, n) {
+ var r,
+ a = {},
+ o = null,
+ u = null;
+ if (null != t)
+ for (r in (void 0 !== t.ref && (u = t.ref),
+ void 0 !== t.key && (o = \\"\\" + t.key),
+ t))
+ k.call(t, r) && !S.hasOwnProperty(r) && (a[r] = t[r]);
+ var i = arguments.length - 2;
+ if (1 === i) a.children = n;
+ else if (1 < i) {
+ for (var s = Array(i), c = 0; c < i; c++) s[c] = arguments[c + 2];
+ a.children = s;
}
- return ts(o);
+ if (e && e.defaultProps)
+ for (r in (i = e.defaultProps)) void 0 === a[r] && (a[r] = i[r]);
+ return {
+ $$typeof: l,
+ type: e,
+ key: o,
+ ref: u,
+ props: a,
+ _owner: w.current,
+ };
}
- function us(e, t) {
- var n =
- 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;
- if (!as(t)) throw Error(o(200));
- return Zi(e, t, null, n);
+ function x(e) {
+ return \\"object\\" === typeof e && null !== e && e.$$typeof === l;
}
- (Ku = function (e, t, n) {
- var r = t.lanes;
- if (null !== e)
- if (e.memoizedProps !== t.pendingProps || hl.current) Fo = !0;
- else {
- if (0 === (n & r)) {
- switch (((Fo = !1), t.tag)) {
- case 3:
- qo(t), qa();
- break;
- case 5:
- Ia(t);
- break;
- case 1:
- gl(t.type) && kl(t);
- break;
- case 4:
- Ma(t, t.stateNode.containerInfo);
- break;
- case 10:
- r = t.memoizedProps.value;
- var l = t.type._context;
- fl(Jl, l._currentValue), (l._currentValue = r);
- break;
- case 13:
- if (null !== t.memoizedState)
- return 0 !== (n & t.child.childLanes)
- ? Jo(e, t, n)
- : (fl(Fa, 1 & Fa.current),
- null !== (t = au(e, t, n)) ? t.sibling : null);
- fl(Fa, 1 & Fa.current);
- break;
- case 19:
- if (((r = 0 !== (n & t.childLanes)), 0 !== (64 & e.flags))) {
- if (r) return lu(e, t, n);
- t.flags |= 64;
- }
- if (
- (null !== (l = t.memoizedState) &&
- ((l.rendering = null),
- (l.tail = null),
- (l.lastEffect = null)),
- fl(Fa, Fa.current),
- r)
- )
- break;
- return null;
- case 23:
- case 24:
- return (t.lanes = 0), Bo(e, t, n);
+ var C = /\\\\/+/g;
+ function _(e, t) {
+ return \\"object\\" === typeof e && null !== e && null != e.key
+ ? (function (e) {
+ var t = { \\"=\\": \\"=0\\", \\":\\": \\"=2\\" };
+ return (
+ \\"$\\" +
+ e.replace(/[=:]/g, function (e) {
+ return t[e];
+ })
+ );
+ })(\\"\\" + e.key)
+ : t.toString(36);
+ }
+ function P(e, t, n, r, o) {
+ var u = typeof e;
+ (\\"undefined\\" !== u && \\"boolean\\" !== u) || (e = null);
+ var i = !1;
+ if (null === e) i = !0;
+ else
+ switch (u) {
+ case \\"string\\":
+ case \\"number\\":
+ i = !0;
+ break;
+ case \\"object\\":
+ switch (e.$$typeof) {
+ case l:
+ case a:
+ i = !0;
}
- return au(e, t, n);
- }
- Fo = 0 !== (16384 & e.flags);
}
- else Fo = !1;
- switch (((t.lanes = 0), t.tag)) {
- case 2:
- if (
- ((r = t.type),
- null !== e &&
- ((e.alternate = null), (t.alternate = null), (t.flags |= 2)),
- (e = t.pendingProps),
- (l = vl(t, pl.current)),
- aa(t, n),
- (l = oo(null, t, r, e, l, n)),
- (t.flags |= 1),
- \\"object\\" === typeof l &&
- null !== l &&
- \\"function\\" === typeof l.render &&
- void 0 === l.$$typeof)
- ) {
- if (
- ((t.tag = 1),
- (t.memoizedState = null),
- (t.updateQueue = null),
- gl(r))
- ) {
- var a = !0;
- kl(t);
- } else a = !1;
- (t.memoizedState =
- null !== l.state && void 0 !== l.state ? l.state : null),
- ia(t);
- var u = r.getDerivedStateFromProps;
- \\"function\\" === typeof u && va(t, r, u, e),
- (l.updater = ga),
- (t.stateNode = l),
- (l._reactInternals = t),
- ka(t, r, e, n),
- (t = Qo(null, t, r, !0, a, n));
- } else (t.tag = 0), Uo(null, t, l, n), (t = t.child);
- return t;
- case 16:
- l = t.elementType;
- e: {
- switch (
- (null !== e &&
- ((e.alternate = null), (t.alternate = null), (t.flags |= 2)),
- (e = t.pendingProps),
- (l = (a = l._init)(l._payload)),
- (t.type = l),
- (a = t.tag =
- (function (e) {
- if (\\"function\\" === typeof e) return Hi(e) ? 1 : 0;
- if (void 0 !== e && null !== e) {
- if ((e = e.$$typeof) === T) return 11;
- if (e === O) return 14;
- }
- return 2;
- })(l)),
- (e = Gl(l, e)),
- a)
- ) {
- case 0:
- t = $o(null, t, l, e, n);
- break e;
- case 1:
- t = Ho(null, t, l, e, n);
- break e;
- case 11:
- t = Ao(null, t, l, e, n);
- break e;
- case 14:
- t = jo(null, t, l, Gl(l.type, e), r, n);
- break e;
+ if (i)
+ return (
+ (o = o((i = e))),
+ (e = \\"\\" === r ? \\".\\" + _(i, 0) : r),
+ Array.isArray(o)
+ ? ((n = \\"\\"),
+ null != e && (n = e.replace(C, \\"$&/\\") + \\"/\\"),
+ P(o, t, n, \\"\\", function (e) {
+ return e;
+ }))
+ : null != o &&
+ (x(o) &&
+ (o = (function (e, t) {
+ return {
+ $$typeof: l,
+ type: e.type,
+ key: t,
+ ref: e.ref,
+ props: e.props,
+ _owner: e._owner,
+ };
+ })(
+ o,
+ n +
+ (!o.key || (i && i.key === o.key)
+ ? \\"\\"
+ : (\\"\\" + o.key).replace(C, \\"$&/\\") + \\"/\\") +
+ e
+ )),
+ t.push(o)),
+ 1
+ );
+ if (((i = 0), (r = \\"\\" === r ? \\".\\" : r + \\":\\"), Array.isArray(e)))
+ for (var s = 0; s < e.length; s++) {
+ var c = r + _((u = e[s]), s);
+ i += P(u, t, n, c, o);
+ }
+ else if (
+ ((c = (function (e) {
+ return null === e || \\"object\\" !== typeof e
+ ? null
+ : \\"function\\" === typeof (e = (d && e[d]) || e[\\"@@iterator\\"])
+ ? e
+ : null;
+ })(e)),
+ \\"function\\" === typeof c)
+ )
+ for (e = c.call(e), s = 0; !(u = e.next()).done; )
+ i += P((u = u.value), t, n, (c = r + _(u, s++)), o);
+ else if (\\"object\\" === u)
+ throw (
+ ((t = \\"\\" + e),
+ Error(
+ p(
+ 31,
+ \\"[object Object]\\" === t
+ ? \\"object with keys {\\" + Object.keys(e).join(\\", \\") + \\"}\\"
+ : t
+ )
+ ))
+ );
+ return i;
+ }
+ function N(e, t, n) {
+ if (null == e) return e;
+ var r = [],
+ l = 0;
+ return (
+ P(e, r, \\"\\", \\"\\", function (e) {
+ return t.call(n, e, l++);
+ }),
+ r
+ );
+ }
+ function T(e) {
+ if (-1 === e._status) {
+ var t = e._result;
+ (t = t()),
+ (e._status = 0),
+ (e._result = t),
+ t.then(
+ function (t) {
+ 0 === e._status &&
+ ((t = t.default), (e._status = 1), (e._result = t));
+ },
+ function (t) {
+ 0 === e._status && ((e._status = 2), (e._result = t));
}
- throw Error(o(306, l, \\"\\"));
- }
- return t;
- case 0:
- return (
- (r = t.type),
- (l = t.pendingProps),
- $o(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
- );
- case 1:
- return (
- (r = t.type),
- (l = t.pendingProps),
- Ho(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
- );
- case 3:
- if ((qo(t), (r = t.updateQueue), null === e || null === r))
- throw Error(o(282));
- if (
- ((r = t.pendingProps),
- (l = null !== (l = t.memoizedState) ? l.element : null),
- sa(e, t),
- pa(t, r, null, n),
- (r = t.memoizedState.element) === l)
- )
- qa(), (t = au(e, t, n));
- else {
- if (
- ((a = (l = t.stateNode).hydrate) &&
- ((ja = Kr(t.stateNode.containerInfo.firstChild)),
- (Aa = t),
- (a = Va = !0)),
- a)
- ) {
- if (null != (e = l.mutableSourceEagerHydrationData))
- for (l = 0; l < e.length; l += 2)
- ((a = e[l])._workInProgressVersionPrimary = e[l + 1]),
- Ka.push(a);
- for (n = Pa(t, null, r, n), t.child = n; n; )
- (n.flags = (-3 & n.flags) | 1024), (n = n.sibling);
- } else Uo(e, t, r, n), qa();
- t = t.child;
- }
- return t;
- case 5:
- return (
- Ia(t),
- null === e && $a(t),
- (r = t.type),
- (l = t.pendingProps),
- (a = null !== e ? e.memoizedProps : null),
- (u = l.children),
- $r(r, l) ? (u = null) : null !== a && $r(r, a) && (t.flags |= 16),
- Wo(e, t),
- Uo(e, t, u, n),
- t.child
- );
- case 6:
- return null === e && $a(t), null;
- case 13:
- return Jo(e, t, n);
- case 4:
- return (
- Ma(t, t.stateNode.containerInfo),
- (r = t.pendingProps),
- null === e ? (t.child = Ca(t, null, r, n)) : Uo(e, t, r, n),
- t.child
- );
- case 11:
- return (
- (r = t.type),
- (l = t.pendingProps),
- Ao(e, t, r, (l = t.elementType === r ? l : Gl(r, l)), n)
- );
- case 7:
- return Uo(e, t, t.pendingProps, n), t.child;
- case 8:
- case 12:
- return Uo(e, t, t.pendingProps.children, n), t.child;
- case 10:
- e: {
- (r = t.type._context),
- (l = t.pendingProps),
- (u = t.memoizedProps),
- (a = l.value);
- var i = t.type._context;
- if ((fl(Jl, i._currentValue), (i._currentValue = a), null !== u))
- if (
- ((i = u.value),
- 0 ===
- (a = cr(i, a)
- ? 0
- : 0 |
- (\\"function\\" === typeof r._calculateChangedBits
- ? r._calculateChangedBits(i, a)
- : 1073741823)))
- ) {
- if (u.children === l.children && !hl.current) {
- t = au(e, t, n);
- break e;
- }
- } else
- for (null !== (i = t.child) && (i.return = t); null !== i; ) {
- var s = i.dependencies;
- if (null !== s) {
- u = i.child;
- for (var c = s.firstContext; null !== c; ) {
- if (c.context === r && 0 !== (c.observedBits & a)) {
- 1 === i.tag &&
- (((c = ca(-1, n & -n)).tag = 2), fa(i, c)),
- (i.lanes |= n),
- null !== (c = i.alternate) && (c.lanes |= n),
- la(i.return, n),
- (s.lanes |= n);
- break;
- }
- c = c.next;
- }
- } else
- u = 10 === i.tag && i.type === t.type ? null : i.child;
- if (null !== u) u.return = i;
- else
- for (u = i; null !== u; ) {
- if (u === t) {
- u = null;
- break;
- }
- if (null !== (i = u.sibling)) {
- (i.return = u.return), (u = i);
- break;
- }
- u = u.return;
- }
- i = u;
- }
- Uo(e, t, l.children, n), (t = t.child);
- }
- return t;
- case 9:
- return (
- (l = t.type),
- (r = (a = t.pendingProps).children),
- aa(t, n),
- (r = r((l = oa(l, a.unstable_observedBits)))),
- (t.flags |= 1),
- Uo(e, t, r, n),
- t.child
- );
- case 14:
- return (
- (a = Gl((l = t.type), t.pendingProps)),
- jo(e, t, l, (a = Gl(l.type, a)), r, n)
- );
- case 15:
- return Vo(e, t, t.type, t.pendingProps, r, n);
- case 17:
- return (
- (r = t.type),
- (l = t.pendingProps),
- (l = t.elementType === r ? l : Gl(r, l)),
- null !== e &&
- ((e.alternate = null), (t.alternate = null), (t.flags |= 2)),
- (t.tag = 1),
- gl(r) ? ((e = !0), kl(t)) : (e = !1),
- aa(t, n),
- ba(t, r, l),
- ka(t, r, l, n),
- Qo(null, t, r, !0, e, n)
);
- case 19:
- return lu(e, t, n);
- case 23:
- case 24:
- return Bo(e, t, n);
}
- throw Error(o(156, t.tag));
+ if (1 === e._status) return e._result;
+ throw e._result;
+ }
+ var z = { current: null };
+ function L() {
+ var e = z.current;
+ if (null === e) throw Error(p(321));
+ return e;
+ }
+ var O = {
+ ReactCurrentDispatcher: z,
+ ReactCurrentBatchConfig: { transition: 0 },
+ ReactCurrentOwner: w,
+ IsSomeRendererActing: { current: !1 },
+ assign: r,
+ };
+ (t.Children = {
+ map: N,
+ forEach: function (e, t, n) {
+ N(
+ e,
+ function () {
+ t.apply(this, arguments);
+ },
+ n
+ );
+ },
+ count: function (e) {
+ var t = 0;
+ return (
+ N(e, function () {
+ t++;
+ }),
+ t
+ );
+ },
+ toArray: function (e) {
+ return (
+ N(e, function (e) {
+ return e;
+ }) || []
+ );
+ },
+ only: function (e) {
+ if (!x(e)) throw Error(p(143));
+ return e;
+ },
}),
- (ls.prototype.render = function (e) {
- es(e, this._internalRoot, null, null);
+ (t.Component = v),
+ (t.PureComponent = y),
+ (t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = O),
+ (t.cloneElement = function (e, t, n) {
+ if (null === e || void 0 === e) throw Error(p(267, e));
+ var a = r({}, e.props),
+ o = e.key,
+ u = e.ref,
+ i = e._owner;
+ if (null != t) {
+ if (
+ (void 0 !== t.ref && ((u = t.ref), (i = w.current)),
+ void 0 !== t.key && (o = \\"\\" + t.key),
+ e.type && e.type.defaultProps)
+ )
+ var s = e.type.defaultProps;
+ for (c in t)
+ k.call(t, c) &&
+ !S.hasOwnProperty(c) &&
+ (a[c] = void 0 === t[c] && void 0 !== s ? s[c] : t[c]);
+ }
+ var c = arguments.length - 2;
+ if (1 === c) a.children = n;
+ else if (1 < c) {
+ s = Array(c);
+ for (var f = 0; f < c; f++) s[f] = arguments[f + 2];
+ a.children = s;
+ }
+ return {
+ $$typeof: l,
+ type: e.type,
+ key: o,
+ ref: u,
+ props: a,
+ _owner: i,
+ };
}),
- (ls.prototype.unmount = function () {
- var e = this._internalRoot,
- t = e.containerInfo;
- es(null, e, null, function () {
- t[el] = null;
- });
+ (t.createContext = function (e, t) {
+ return (
+ void 0 === t && (t = null),
+ ((e = {
+ $$typeof: u,
+ _calculateChangedBits: t,
+ _currentValue: e,
+ _currentValue2: e,
+ _threadCount: 0,
+ Provider: null,
+ Consumer: null,
+ }).Provider = { $$typeof: o, _context: e }),
+ (e.Consumer = e)
+ );
}),
- (tt = function (e) {
- 13 === e.tag && (hi(e, 4, di()), rs(e, 4));
+ (t.createElement = E),
+ (t.createFactory = function (e) {
+ var t = E.bind(null, e);
+ return (t.type = e), t;
}),
- (nt = function (e) {
- 13 === e.tag && (hi(e, 67108864, di()), rs(e, 67108864));
+ (t.createRef = function () {
+ return { current: null };
}),
- (rt = function (e) {
- if (13 === e.tag) {
- var t = di(),
- n = pi(e);
- hi(e, n, t), rs(e, n);
- }
+ (t.forwardRef = function (e) {
+ return { $$typeof: i, render: e };
}),
- (lt = function (e, t) {
- return t();
+ (t.isValidElement = x),
+ (t.lazy = function (e) {
+ return {
+ $$typeof: c,
+ _payload: { _status: -1, _result: e },
+ _init: T,
+ };
}),
- (Pe = function (e, t, n) {
- switch (t) {
- case \\"input\\":
- if ((ne(e, n), (t = n.name), \\"radio\\" === n.type && null != t)) {
- for (n = e; n.parentNode; ) n = n.parentNode;
- for (
- n = n.querySelectorAll(
- \\"input[name=\\" + JSON.stringify(\\"\\" + t) + '][type=\\"radio\\"]'
- ),
- t = 0;
- t < n.length;
- t++
- ) {
- var r = n[t];
- if (r !== e && r.form === e.form) {
- var l = al(r);
- if (!l) throw Error(o(90));
- G(r), ne(r, l);
- }
- }
- }
- break;
- case \\"textarea\\":
- se(e, n);
- break;
- case \\"select\\":
- null != (t = n.value) && oe(e, !!n.multiple, t, !1);
- }
+ (t.memo = function (e, t) {
+ return { $$typeof: s, type: e, compare: void 0 === t ? null : t };
}),
- (Me = wi),
- (Re = function (e, t, n, r, l) {
- var a = Ou;
- Ou |= 4;
- try {
- return Ql(98, e.bind(null, t, n, r, l));
- } finally {
- 0 === (Ou = a) && (qu(), Kl());
- }
+ (t.useCallback = function (e, t) {
+ return L().useCallback(e, t);
}),
- (Ie = function () {
- 0 === (49 & Ou) &&
- ((function () {
- if (null !== li) {
- var e = li;
- (li = null),
- e.forEach(function (e) {
- (e.expiredLanes |= 24 & e.pendingLanes), vi(e, Wl());
- });
- }
- Kl();
- })(),
- Ii());
+ (t.useContext = function (e, t) {
+ return L().useContext(e, t);
}),
- (De = function (e, t) {
- var n = Ou;
- Ou |= 2;
- try {
- return e(t);
- } finally {
- 0 === (Ou = n) && (qu(), Kl());
- }
- });
- var is = { Events: [rl, ll, al, Le, Oe, Ii, { current: !1 }] },
- ss = {
- findFiberByHostInstance: nl,
- bundleType: 0,
- version: \\"17.0.2\\",
- rendererPackageName: \\"react-dom\\",
- },
- cs = {
- bundleType: ss.bundleType,
- version: ss.version,
- rendererPackageName: ss.rendererPackageName,
- rendererConfig: ss.rendererConfig,
- overrideHookState: null,
- overrideHookStateDeletePath: null,
- overrideHookStateRenamePath: null,
- overrideProps: null,
- overridePropsDeletePath: null,
- overridePropsRenamePath: null,
- setSuspenseHandler: null,
- scheduleUpdate: null,
- currentDispatcherRef: k.ReactCurrentDispatcher,
- findHostInstanceByFiber: function (e) {
- return null === (e = Ze(e)) ? null : e.stateNode;
- },
- findFiberByHostInstance:
- ss.findFiberByHostInstance ||
- function () {
- return null;
- },
- findHostInstancesForRefresh: null,
- scheduleRefresh: null,
- scheduleRoot: null,
- setRefreshHandler: null,
- getCurrentFiber: null,
- };
- if (\\"undefined\\" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
- var fs = __REACT_DEVTOOLS_GLOBAL_HOOK__;
- if (!fs.isDisabled && fs.supportsFiber)
- try {
- (El = fs.inject(cs)), (xl = fs);
- } catch (ve) {}
- }
- (t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = is),
- (t.createPortal = us),
- (t.findDOMNode = function (e) {
- if (null == e) return null;
- if (1 === e.nodeType) return e;
- var t = e._reactInternals;
- if (void 0 === t) {
- if (\\"function\\" === typeof e.render) throw Error(o(188));
- throw Error(o(268, Object.keys(e)));
- }
- return (e = null === (e = Ze(t)) ? null : e.stateNode);
+ (t.useDebugValue = function () {}),
+ (t.useEffect = function (e, t) {
+ return L().useEffect(e, t);
}),
- (t.flushSync = function (e, t) {
- var n = Ou;
- if (0 !== (48 & n)) return e(t);
- Ou |= 1;
- try {
- if (e) return Ql(99, e.bind(null, t));
- } finally {
- (Ou = n), Kl();
- }
+ (t.useImperativeHandle = function (e, t, n) {
+ return L().useImperativeHandle(e, t, n);
}),
- (t.hydrate = function (e, t, n) {
- if (!as(t)) throw Error(o(200));
- return os(null, e, t, !0, n);
+ (t.useLayoutEffect = function (e, t) {
+ return L().useLayoutEffect(e, t);
}),
- (t.render = function (e, t, n) {
- if (!as(t)) throw Error(o(200));
- return os(null, e, t, !1, n);
+ (t.useMemo = function (e, t) {
+ return L().useMemo(e, t);
}),
- (t.unmountComponentAtNode = function (e) {
- if (!as(e)) throw Error(o(40));
- return (
- !!e._reactRootContainer &&
- (ki(function () {
- os(null, null, e, !1, function () {
- (e._reactRootContainer = null), (e[el] = null);
- });
- }),
- !0)
- );
+ (t.useReducer = function (e, t, n) {
+ return L().useReducer(e, t, n);
}),
- (t.unstable_batchedUpdates = wi),
- (t.unstable_createPortal = function (e, t) {
- return us(
- e,
- t,
- 2 < arguments.length && void 0 !== arguments[2]
- ? arguments[2]
- : null
- );
+ (t.useRef = function (e) {
+ return L().useRef(e);
}),
- (t.unstable_renderSubtreeIntoContainer = function (e, t, n, r) {
- if (!as(n)) throw Error(o(200));
- if (null == e || void 0 === e._reactInternals) throw Error(o(38));
- return os(e, t, n, !1, r);
+ (t.useState = function (e) {
+ return L().useState(e);
}),
(t.version = \\"17.0.2\\");
},
- function (e, t, n) {
- \\"use strict\\";
- e.exports = n(6);
+ 784: (e, t, n) => {
+ e.exports = n(426);
},
- function (e, t, n) {
- \\"use strict\\";
- var r, l, a, o;
+ 475: (e, t) => {
+ var n, r, l, a;
if (
\\"object\\" === typeof performance &&
\\"function\\" === typeof performance.now
) {
- var u = performance;
+ var o = performance;
t.unstable_now = function () {
- return u.now();
+ return o.now();
};
} else {
- var i = Date,
- s = i.now();
+ var u = Date,
+ i = u.now();
t.unstable_now = function () {
- return i.now() - s;
+ return u.now() - i;
};
}
if (
\\"undefined\\" === typeof window ||
\\"function\\" !== typeof MessageChannel
) {
- var c = null,
- f = null,
- d = function () {
- if (null !== c)
+ var s = null,
+ c = null,
+ f = function () {
+ if (null !== s)
try {
var e = t.unstable_now();
- c(!0, e), (c = null);
+ s(!0, e), (s = null);
} catch (n) {
- throw (setTimeout(d, 0), n);
+ throw (setTimeout(f, 0), n);
}
};
- (r = function (e) {
- null !== c ? setTimeout(r, 0, e) : ((c = e), setTimeout(d, 0));
+ (n = function (e) {
+ null !== s ? setTimeout(n, 0, e) : ((s = e), setTimeout(f, 0));
}),
- (l = function (e, t) {
- f = setTimeout(e, t);
+ (r = function (e, t) {
+ c = setTimeout(e, t);
}),
- (a = function () {
- clearTimeout(f);
+ (l = function () {
+ clearTimeout(c);
}),
(t.unstable_shouldYield = function () {
return !1;
}),
- (o = t.unstable_forceFrameRate = function () {});
+ (a = t.unstable_forceFrameRate = function () {});
} else {
- var p = window.setTimeout,
- h = window.clearTimeout;
+ var d = window.setTimeout,
+ p = window.clearTimeout;
if (\\"undefined\\" !== typeof console) {
- var m = window.cancelAnimationFrame;
+ var h = window.cancelAnimationFrame;
\\"function\\" !== typeof window.requestAnimationFrame &&
console.error(
\\"This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\\"
),
- \\"function\\" !== typeof m &&
+ \\"function\\" !== typeof h &&
console.error(
\\"This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills\\"
);
}
- var v = !1,
- g = null,
- y = -1,
- b = 5,
- w = 0;
+ var m = !1,
+ v = null,
+ g = -1,
+ y = 5,
+ b = 0;
(t.unstable_shouldYield = function () {
- return t.unstable_now() >= w;
+ return t.unstable_now() >= b;
}),
- (o = function () {}),
+ (a = function () {}),
(t.unstable_forceFrameRate = function (e) {
0 > e || 125 < e
? console.error(
\\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\\"
)
- : (b = 0 < e ? Math.floor(1e3 / e) : 5);
+ : (y = 0 < e ? Math.floor(1e3 / e) : 5);
});
- var k = new MessageChannel(),
- S = k.port2;
- (k.port1.onmessage = function () {
- if (null !== g) {
+ var w = new MessageChannel(),
+ k = w.port2;
+ (w.port1.onmessage = function () {
+ if (null !== v) {
var e = t.unstable_now();
- w = e + b;
+ b = e + y;
try {
- g(!0, e) ? S.postMessage(null) : ((v = !1), (g = null));
+ v(!0, e) ? k.postMessage(null) : ((m = !1), (v = null));
} catch (n) {
- throw (S.postMessage(null), n);
+ throw (k.postMessage(null), n);
}
- } else v = !1;
+ } else m = !1;
}),
- (r = function (e) {
- (g = e), v || ((v = !0), S.postMessage(null));
+ (n = function (e) {
+ (v = e), m || ((m = !0), k.postMessage(null));
}),
- (l = function (e, n) {
- y = p(function () {
+ (r = function (e, n) {
+ g = d(function () {
e(t.unstable_now());
}, n);
}),
- (a = function () {
- h(y), (y = -1);
+ (l = function () {
+ p(g), (g = -1);
});
}
- function E(e, t) {
+ function S(e, t) {
var n = e.length;
e.push(t);
e: for (;;) {
@@ -17053,10 +16878,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
(e[r] = t), (e[n] = l), (n = r);
}
}
- function x(e) {
+ function E(e) {
return void 0 === (e = e[0]) ? null : e;
}
- function _(e) {
+ function x(e) {
var t = e[0];
if (void 0 !== t) {
var n = e.pop();
@@ -17085,63 +16910,63 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
var n = e.sortIndex - t.sortIndex;
return 0 !== n ? n : e.id - t.id;
}
- var P = [],
- N = [],
- T = 1,
- z = null,
- L = 3,
+ var _ = [],
+ P = [],
+ N = 1,
+ T = null,
+ z = 3,
+ L = !1,
O = !1,
- M = !1,
- R = !1;
- function I(e) {
- for (var t = x(N); null !== t; ) {
- if (null === t.callback) _(N);
+ M = !1;
+ function R(e) {
+ for (var t = E(P); null !== t; ) {
+ if (null === t.callback) x(P);
else {
if (!(t.startTime <= e)) break;
- _(N), (t.sortIndex = t.expirationTime), E(P, t);
+ x(P), (t.sortIndex = t.expirationTime), S(_, t);
}
- t = x(N);
+ t = E(P);
}
}
- function D(e) {
- if (((R = !1), I(e), !M))
- if (null !== x(P)) (M = !0), r(F);
+ function F(e) {
+ if (((M = !1), R(e), !O))
+ if (null !== E(_)) (O = !0), n(D);
else {
- var t = x(N);
- null !== t && l(D, t.startTime - e);
+ var t = E(P);
+ null !== t && r(F, t.startTime - e);
}
}
- function F(e, n) {
- (M = !1), R && ((R = !1), a()), (O = !0);
- var r = L;
+ function D(e, n) {
+ (O = !1), M && ((M = !1), l()), (L = !0);
+ var a = z;
try {
for (
- I(n), z = x(P);
- null !== z &&
- (!(z.expirationTime > n) || (e && !t.unstable_shouldYield()));
+ R(n), T = E(_);
+ null !== T &&
+ (!(T.expirationTime > n) || (e && !t.unstable_shouldYield()));
) {
- var o = z.callback;
+ var o = T.callback;
if (\\"function\\" === typeof o) {
- (z.callback = null), (L = z.priorityLevel);
- var u = o(z.expirationTime <= n);
+ (T.callback = null), (z = T.priorityLevel);
+ var u = o(T.expirationTime <= n);
(n = t.unstable_now()),
- \\"function\\" === typeof u ? (z.callback = u) : z === x(P) && _(P),
- I(n);
- } else _(P);
- z = x(P);
+ \\"function\\" === typeof u ? (T.callback = u) : T === E(_) && x(_),
+ R(n);
+ } else x(_);
+ T = E(_);
}
- if (null !== z) var i = !0;
+ if (null !== T) var i = !0;
else {
- var s = x(N);
- null !== s && l(D, s.startTime - n), (i = !1);
+ var s = E(P);
+ null !== s && r(F, s.startTime - n), (i = !1);
}
return i;
} finally {
- (z = null), (L = r), (O = !1);
+ (T = null), (z = a), (L = !1);
}
}
- var U = o;
+ var I = a;
(t.unstable_IdlePriority = 5),
(t.unstable_ImmediatePriority = 1),
(t.unstable_LowPriority = 4),
@@ -17152,34 +16977,34 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
e.callback = null;
}),
(t.unstable_continueExecution = function () {
- M || O || ((M = !0), r(F));
+ O || L || ((O = !0), n(D));
}),
(t.unstable_getCurrentPriorityLevel = function () {
- return L;
+ return z;
}),
(t.unstable_getFirstCallbackNode = function () {
- return x(P);
+ return E(_);
}),
(t.unstable_next = function (e) {
- switch (L) {
+ switch (z) {
case 1:
case 2:
case 3:
var t = 3;
break;
default:
- t = L;
+ t = z;
}
- var n = L;
- L = t;
+ var n = z;
+ z = t;
try {
return e();
} finally {
- L = n;
+ z = n;
}
}),
(t.unstable_pauseExecution = function () {}),
- (t.unstable_requestPaint = U),
+ (t.unstable_requestPaint = I),
(t.unstable_runWithPriority = function (e, t) {
switch (e) {
case 1:
@@ -17191,15 +17016,15 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
default:
e = 3;
}
- var n = L;
- L = e;
+ var n = z;
+ z = e;
try {
return t();
} finally {
- L = n;
+ z = n;
}
}),
- (t.unstable_scheduleCallback = function (e, n, o) {
+ (t.unstable_scheduleCallback = function (e, a, o) {
var u = t.unstable_now();
switch (
(\\"object\\" === typeof o && null !== o
@@ -17224,8 +17049,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}
return (
(e = {
- id: T++,
- callback: n,
+ id: N++,
+ callback: a,
priorityLevel: e,
startTime: o,
expirationTime: (i = o + i),
@@ -17233,182 +17058,120 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = `
}),
o > u
? ((e.sortIndex = o),
- E(N, e),
- null === x(P) &&
- e === x(N) &&
- (R ? a() : (R = !0), l(D, o - u)))
- : ((e.sortIndex = i), E(P, e), M || O || ((M = !0), r(F))),
+ S(P, e),
+ null === E(_) &&
+ e === E(P) &&
+ (M ? l() : (M = !0), r(F, o - u)))
+ : ((e.sortIndex = i), S(_, e), O || L || ((O = !0), n(D))),
e
);
}),
(t.unstable_wrapCallback = function (e) {
- var t = L;
+ var t = z;
return function () {
- var n = L;
- L = t;
+ var n = z;
+ z = t;
try {
return e.apply(this, arguments);
} finally {
- L = n;
+ z = n;
}
};
});
},
- ],
-]);
-//# sourceMappingURL=2.42603bbe.chunk.js.map
-"
-`;
-
-exports[`when working with an app can generate a js/main.8247c019.chunk.js 1`] = `
-"(this[\\"webpackJsonpsample-app\\"] = this[\\"webpackJsonpsample-app\\"] || []).push([
- [0],
- {
- 7: function (M, L, j) {},
- 8: function (M, L, j) {},
- 9: function (M, L, j) {
- \\"use strict\\";
- j.r(L);
- var N = j(0),
- u = j(2);
- j(7);
- var I = function () {
- return N.createElement(
- \\"div\\",
- { className: \\"App\\" },
- N.createElement(
- \\"header\\",
- { className: \\"App-header\\" },
- N.createElement(\\"img\\", {
- src: \\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4NDEuOSA1OTUuMyI+CiAgICA8ZyBmaWxsPSIjNjFEQUZCIj4KICAgICAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgICAgIDxjaXJjbGUgY3g9IjQyMC45IiBjeT0iMjk2LjUiIHI9IjQ1LjciLz4KICAgICAgICA8cGF0aCBkPSJNNTIwLjUgNzguMXoiLz4KICAgIDwvZz4KPC9zdmc+Cg==\\",
- className: \\"App-logo\\",
- alt: \\"logo\\",
- }),
- N.createElement(
- \\"p\\",
- null,
- \\"Edit \\",
- N.createElement(\\"code\\", null, \\"src/App.tsx\\"),
- \\" and save to reload.\\"
- ),
- N.createElement(
- \\"a\\",
- {
- className: \\"App-link\\",
- href: \\"https://reactjs.org\\",
- target: \\"_blank\\",
- rel: \\"noopener noreferrer\\",
- },
- \\"Learn React\\"
- )
- ),
- N.createElement(
- \\"div\\",
- { \\"data-testid\\": \\"test-this\\" },
- \\"this is a modular app\\"
- )
- );
- };
- j(8);
- u.render(
- N.createElement(N.StrictMode, null, N.createElement(I, null)),
- document.getElementById(\\"root\\")
- );
+ 616: (e, t, n) => {
+ e.exports = n(475);
},
},
- [[9, 1, 2]],
]);
-//# sourceMappingURL=main.8247c019.chunk.js.map
+//# sourceMappingURL=316.7a4d5eb7.js.map
"
`;
-exports[`when working with an app can generate a js/runtime-main.dc96e42d.js 1`] = `
-"!(function (e) {
- function r(r) {
- for (
- var n, p, l = r[0], a = r[1], f = r[2], c = 0, s = [];
- c < l.length;
- c++
- )
- (p = l[c]),
- Object.prototype.hasOwnProperty.call(o, p) && o[p] && s.push(o[p][0]),
- (o[p] = 0);
- for (n in a) Object.prototype.hasOwnProperty.call(a, n) && (e[n] = a[n]);
- for (i && i(r); s.length; ) s.shift()();
- return u.push.apply(u, f || []), t();
- }
- function t() {
- for (var e, r = 0; r < u.length; r++) {
- for (var t = u[r], n = !0, l = 1; l < t.length; l++) {
- var a = t[l];
- 0 !== o[a] && (n = !1);
- }
- n && (u.splice(r--, 1), (e = p((p.s = t[0]))));
- }
- return e;
- }
- var n = {},
- o = { 1: 0 },
- u = [];
- function p(r) {
- if (n[r]) return n[r].exports;
- var t = (n[r] = { i: r, l: !1, exports: {} });
- return e[r].call(t.exports, t, t.exports, p), (t.l = !0), t.exports;
- }
- (p.m = e),
- (p.c = n),
- (p.d = function (e, r, t) {
- p.o(e, r) || Object.defineProperty(e, r, { enumerable: !0, get: t });
- }),
- (p.r = function (e) {
- \\"undefined\\" !== typeof Symbol &&
- Symbol.toStringTag &&
- Object.defineProperty(e, Symbol.toStringTag, { value: \\"Module\\" }),
- Object.defineProperty(e, \\"__esModule\\", { value: !0 });
- }),
- (p.t = function (e, r) {
- if ((1 & r && (e = p(e)), 8 & r)) return e;
- if (4 & r && \\"object\\" === typeof e && e && e.__esModule) return e;
- var t = Object.create(null);
- if (
- (p.r(t),
- Object.defineProperty(t, \\"default\\", { enumerable: !0, value: e }),
- 2 & r && \\"string\\" != typeof e)
- )
- for (var n in e)
- p.d(
- t,
- n,
- function (r) {
- return e[r];
- }.bind(null, n)
- );
- return t;
- }),
- (p.n = function (e) {
- var r =
- e && e.__esModule
- ? function () {
- return e.default;
- }
- : function () {
- return e;
+exports[`when working with an app can generate a index.html 1`] = `
+"
+
+
+
+
+
+
+
+
+
+ React App
+
+
+
+
+
+
+
+
+
+
"
`;
diff --git a/packages/modular-scripts/src/__tests__/app.node-env.test.ts b/packages/modular-scripts/src/__tests__/app.node-env.test.ts
index 3c170d7ed..e15fb03e4 100644
--- a/packages/modular-scripts/src/__tests__/app.node-env.test.ts
+++ b/packages/modular-scripts/src/__tests__/app.node-env.test.ts
@@ -62,9 +62,9 @@ describe('when working with a NODE_ENV app', () => {
expect(tree(path.join(modularRoot, 'dist', 'node-env-app')))
.toMatchInlineSnapshot(`
"node-env-app
- ├─ asset-manifest.json #n1rvuh
+ ├─ asset-manifest.json #1qjm6tq
├─ favicon.ico #6pu3rg
- ├─ index.html #1yaenq4
+ ├─ index.html #z3zac4
├─ logo192.png #1nez7vk
├─ logo512.png #1hwqvcc
├─ manifest.json #19gah8o
@@ -72,14 +72,14 @@ describe('when working with a NODE_ENV app', () => {
├─ robots.txt #1sjb8b3
└─ static
└─ js
- ├─ main.3db228f9.chunk.js #20y3tb
- ├─ main.3db228f9.chunk.js.map #qfcqz7
- ├─ runtime-main.a0dc6a9b.js #o5bsr9
- └─ runtime-main.a0dc6a9b.js.map #10n4p35"
+ ├─ main.1c6de6d0.js #1xkcjze
+ ├─ main.1c6de6d0.js.map #ayfbwn
+ ├─ runtime-main.182069c4.js #r0hm4v
+ └─ runtime-main.182069c4.js.map #ul1xez"
`);
});
- it('can generate a js/main.3db228f9.chunk.js', async () => {
+ it('can generate a js/main.1c6de6d0.js', async () => {
expect(
prettier.format(
String(
@@ -90,12 +90,12 @@ describe('when working with a NODE_ENV app', () => {
'node-env-app',
'static',
'js',
- 'main.3db228f9.chunk.js',
+ 'main.1c6de6d0.js',
),
),
),
{
- filepath: 'main.3db228f9.chunk.js',
+ filepath: 'main.1c6de6d0.js',
},
),
).toMatchSnapshot();
diff --git a/packages/modular-scripts/src/__tests__/app.test.ts b/packages/modular-scripts/src/__tests__/app.test.ts
index 2858629a8..07119cde6 100644
--- a/packages/modular-scripts/src/__tests__/app.test.ts
+++ b/packages/modular-scripts/src/__tests__/app.test.ts
@@ -66,9 +66,9 @@ describe('When working with a nested app', () => {
expect(tree(path.join(modularRoot, 'dist', 'scoped-sample-app')))
.toMatchInlineSnapshot(`
"scoped-sample-app
- ├─ asset-manifest.json #fd251t
+ ├─ asset-manifest.json #9gtyy0
├─ favicon.ico #6pu3rg
- ├─ index.html #saweoy
+ ├─ index.html #1sg09j9
├─ logo192.png #1nez7vk
├─ logo512.png #1hwqvcc
├─ manifest.json #19gah8o
@@ -76,16 +76,16 @@ describe('When working with a nested app', () => {
├─ robots.txt #1sjb8b3
└─ static
├─ css
- │ ├─ main.a0f92c83.chunk.css #16n5nfq
- │ └─ main.a0f92c83.chunk.css.map #1l7oeeo
+ │ ├─ main.1a7488ce.css #x701i6
+ │ └─ main.1a7488ce.css.map #z36y5v
└─ js
- ├─ 2.dd7fe2ee.chunk.js #1umsa1c
- ├─ 2.dd7fe2ee.chunk.js.LICENSE.txt #eplx8h
- ├─ 2.dd7fe2ee.chunk.js.map #f3ttow
- ├─ main.8b9be32b.chunk.js #jou2ln
- ├─ main.8b9be32b.chunk.js.map #fmhede
- ├─ runtime-main.c80b6939.js #tnzlop
- └─ runtime-main.c80b6939.js.map #14p9z3c"
+ ├─ 788.78cfb599.js #1bgvsgc
+ ├─ 788.78cfb599.js.LICENSE.txt #eplx8h
+ ├─ 788.78cfb599.js.map #jf9876
+ ├─ main.3563e93f.js #32b8p3
+ ├─ main.3563e93f.js.map #1rftojn
+ ├─ runtime-main.83e93d07.js #1mo3tl5
+ └─ runtime-main.83e93d07.js.map #3ycdm3"
`);
});
@@ -129,7 +129,7 @@ describe('When working with a nested app', () => {
).toMatchSnapshot();
});
- it('can generate a css/main.a0f92c83.chunk.css', async () => {
+ it('can generate a hashed main css chunk in the css directory', async () => {
expect(
prettier.format(
String(
@@ -140,18 +140,18 @@ describe('When working with a nested app', () => {
'scoped-sample-app',
'static',
'css',
- 'main.a0f92c83.chunk.css',
+ 'main.1a7488ce.css',
),
),
),
{
- filepath: 'main.a0f92c83.chunk.css',
+ filepath: 'main.1a7488ce.css',
},
),
).toMatchSnapshot();
});
- it('can generate a css/main.a0f92c83.chunk.css.map', async () => {
+ it('can generate a hashed css map in the css directory', async () => {
expect(
JSON.parse(
String(
@@ -162,7 +162,7 @@ describe('When working with a nested app', () => {
'scoped-sample-app',
'static',
'css',
- 'main.a0f92c83.chunk.css.map',
+ 'main.1a7488ce.css.map',
),
),
),
@@ -170,7 +170,7 @@ describe('When working with a nested app', () => {
).toMatchSnapshot();
});
- it('can generate a js/main.8b9be32b.chunk.js', async () => {
+ it('can generate a hashed main js chunk in the js directory', async () => {
expect(
prettier.format(
String(
@@ -181,18 +181,18 @@ describe('When working with a nested app', () => {
'scoped-sample-app',
'static',
'js',
- 'main.8b9be32b.chunk.js',
+ 'main.3563e93f.js',
),
),
),
{
- filepath: 'main.8b9be32b.chunk.js',
+ filepath: 'main.3563e93f.js',
},
),
).toMatchSnapshot();
});
- it('can generate a js/runtime-main.c80b6939.js', async () => {
+ it('can generate a hashed runtime chunk in the js directory', async () => {
expect(
prettier.format(
String(
@@ -203,18 +203,18 @@ describe('When working with a nested app', () => {
'scoped-sample-app',
'static',
'js',
- 'runtime-main.c80b6939.js',
+ 'runtime-main.83e93d07.js',
),
),
),
{
- filepath: 'runtime-main.c80b6939.js',
+ filepath: 'runtime-main.83e93d07.js',
},
),
).toMatchSnapshot();
});
- it('can generate a js/2.dd7fe2ee.chunk.js', async () => {
+ it('can generate a hashed js chunk in the js directory', async () => {
expect(
prettier.format(
String(
@@ -225,12 +225,12 @@ describe('When working with a nested app', () => {
'scoped-sample-app',
'static',
'js',
- '2.dd7fe2ee.chunk.js',
+ '788.78cfb599.js',
),
),
),
{
- filepath: '2.dd7fe2ee.chunk.js',
+ filepath: '788.78cfb599.js',
},
),
).toMatchSnapshot();
@@ -258,35 +258,35 @@ describe('when working with an app', () => {
it('can add an app', () => {
expect(tree(path.join(packagesPath, 'sample-app'))).toMatchInlineSnapshot(`
- "sample-app
- ├─ package.json
- ├─ public
- │ ├─ favicon.ico #6pu3rg
- │ ├─ index.html #1m6toxd
- │ ├─ logo192.png #1nez7vk
- │ ├─ logo512.png #1hwqvcc
- │ ├─ manifest.json #19gah8o
- │ └─ robots.txt #1sjb8b3
- ├─ src
- │ ├─ App.css #1o0zosm
- │ ├─ App.tsx #igvgtx
- │ ├─ __tests__
- │ │ └─ App.test.tsx #16urcos
- │ ├─ index.css #o7sk21
- │ ├─ index.tsx #zdn6mw
- │ ├─ logo.svg #1okqmlj
- │ └─ react-app-env.d.ts #t4ygcy
- └─ tsconfig.json #6rw46b"
- `);
+ "sample-app
+ ├─ package.json
+ ├─ public
+ │ ├─ favicon.ico #6pu3rg
+ │ ├─ index.html #1m6toxd
+ │ ├─ logo192.png #1nez7vk
+ │ ├─ logo512.png #1hwqvcc
+ │ ├─ manifest.json #19gah8o
+ │ └─ robots.txt #1sjb8b3
+ ├─ src
+ │ ├─ App.css #1o0zosm
+ │ ├─ App.tsx #igvgtx
+ │ ├─ __tests__
+ │ │ └─ App.test.tsx #16urcos
+ │ ├─ index.css #o7sk21
+ │ ├─ index.tsx #zdn6mw
+ │ ├─ logo.svg #1okqmlj
+ │ └─ react-app-env.d.ts #t4ygcy
+ └─ tsconfig.json #6rw46b"
+ `);
});
it('can build an app', () => {
expect(tree(path.join(modularRoot, 'dist', 'sample-app')))
.toMatchInlineSnapshot(`
"sample-app
- ├─ asset-manifest.json #131f6kc
+ ├─ asset-manifest.json #qh7m9p
├─ favicon.ico #6pu3rg
- ├─ index.html #59u9a8
+ ├─ index.html #1vs1sdm
├─ logo192.png #1nez7vk
├─ logo512.png #1hwqvcc
├─ manifest.json #19gah8o
@@ -294,16 +294,16 @@ describe('when working with an app', () => {
├─ robots.txt #1sjb8b3
└─ static
├─ css
- │ ├─ main.a0f92c83.chunk.css #16n5nfq
- │ └─ main.a0f92c83.chunk.css.map #1l7oeeo
+ │ ├─ main.1a7488ce.css #x701i6
+ │ └─ main.1a7488ce.css.map #z36y5v
└─ js
- ├─ 2.42603bbe.chunk.js #1gybwlg
- ├─ 2.42603bbe.chunk.js.LICENSE.txt #eplx8h
- ├─ 2.42603bbe.chunk.js.map #164el3u
- ├─ main.8247c019.chunk.js #iwnokm
- ├─ main.8247c019.chunk.js.map #1tgfyn5
- ├─ runtime-main.dc96e42d.js #1xc8leb
- └─ runtime-main.dc96e42d.js.map #xpqj11"
+ ├─ 316.7a4d5eb7.js #1yh1m0p
+ ├─ 316.7a4d5eb7.js.LICENSE.txt #eplx8h
+ ├─ 316.7a4d5eb7.js.map #1ib48x2
+ ├─ main.97cda94b.js #19zv1xf
+ ├─ main.97cda94b.js.map #omkf7l
+ ├─ runtime-main.de9fd74d.js #1slkp3g
+ └─ runtime-main.de9fd74d.js.map #d7r4im"
`);
});
@@ -358,7 +358,7 @@ describe('when working with an app', () => {
).toMatchSnapshot();
});
- it('can generate a js/main.8247c019.chunk.js', async () => {
+ it('can generate a hashed main js chunk in the js directory', async () => {
expect(
prettier.format(
String(
@@ -369,18 +369,18 @@ describe('when working with an app', () => {
'sample-app',
'static',
'js',
- 'main.8247c019.chunk.js',
+ 'main.97cda94b.js',
),
),
),
{
- filepath: 'main.8247c019.chunk.js',
+ filepath: 'main.97cda94b.js',
},
),
).toMatchSnapshot();
});
- it('can generate a js/runtime-main.dc96e42d.js', async () => {
+ it('can generate a hashed runtime chunk in the js directory', async () => {
expect(
prettier.format(
String(
@@ -391,18 +391,18 @@ describe('when working with an app', () => {
'sample-app',
'static',
'js',
- 'runtime-main.dc96e42d.js',
+ 'runtime-main.de9fd74d.js',
),
),
),
{
- filepath: 'runtime-main.dc96e42d.js',
+ filepath: 'runtime-main.de9fd74d.js',
},
),
).toMatchSnapshot();
});
- it('can generate a js/2.42603bbe.chunk.js', async () => {
+ it('can generate a hashed vendor chunk in the js directory', async () => {
expect(
prettier.format(
String(
@@ -413,12 +413,12 @@ describe('when working with an app', () => {
'sample-app',
'static',
'js',
- '2.42603bbe.chunk.js',
+ '316.7a4d5eb7.js',
),
),
),
{
- filepath: '2.42603bbe.chunk.js',
+ filepath: '316.7a4d5eb7.js',
},
),
).toMatchSnapshot();
diff --git a/packages/modular-scripts/src/build/index.ts b/packages/modular-scripts/src/build/index.ts
index 965de2076..6bace5f5c 100644
--- a/packages/modular-scripts/src/build/index.ts
+++ b/packages/modular-scripts/src/build/index.ts
@@ -13,7 +13,7 @@ import { setupEnvForDirectory } from '../utils/setupEnv';
import createPaths from '../utils/createPaths';
import printHostingInstructions from './printHostingInstructions';
import { Asset, printFileSizesAfterBuild } from './fileSizeReporter';
-import type { Stats } from 'webpack';
+import type { StatsCompilation } from 'webpack';
import { checkBrowsers } from '../utils/checkBrowsers';
import checkRequiredFiles from '../utils/checkRequiredFiles';
import createEsbuildBrowserslistTarget from '../utils/createEsbuildBrowserslistTarget';
@@ -110,9 +110,9 @@ async function buildApp(target: string) {
const statsFilePath = path.join(paths.appBuild, 'bundle-stats.json');
try {
- const stats: Stats.ToJsonOutput = await fs.readJson(statsFilePath);
+ const stats: StatsCompilation = await fs.readJson(statsFilePath);
- if (stats.warnings.length) {
+ if (stats?.warnings?.length) {
logger.log(chalk.yellow('Compiled with warnings.\n'));
logger.log(stats.warnings.join('\n\n'));
logger.log(
diff --git a/packages/modular-scripts/src/build/webpackFileSizeReporter.ts b/packages/modular-scripts/src/build/webpackFileSizeReporter.ts
index 43e7dd183..5a9451012 100644
--- a/packages/modular-scripts/src/build/webpackFileSizeReporter.ts
+++ b/packages/modular-scripts/src/build/webpackFileSizeReporter.ts
@@ -43,7 +43,7 @@ export function webpackMeasureFileSizesBeforeBuild(
export function createWebpackAssets(
paths: Paths,
- stats: webpack.Stats.ToJsonOutput,
+ stats: webpack.StatsCompilation,
): Asset[] {
const readableAssets: string[] = (
stats.assets?.filter((asset: { name: string }) =>
diff --git a/yarn.lock b/yarn.lock
index 50c1ef4e6..98aba315f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3,9 +3,9 @@
"@ampproject/remapping@^2.1.0":
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.1.tgz#7922fb0817bf3166d8d9e258c57477e3fd1c3610"
- integrity sha512-Aolwjd7HSC2PyY0fDj/wA/EimQT4HfEnFYNp5s9CQlrdhyvWTtvZ5YzrUPu6R6/1jKiUlxu8bUhkdSnKHNAHMA==
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.1.2.tgz#4edca94973ded9630d20101cd8559cedb8d8bd34"
+ integrity sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==
dependencies:
"@jridgewell/trace-mapping" "^0.3.0"
@@ -33,17 +33,17 @@
dependencies:
"@babel/highlight" "^7.10.4"
-"@babel/code-frame@7.16.7", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.5.5":
+"@babel/code-frame@7.16.7", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7", "@babel/code-frame@^7.8.3":
version "7.16.7"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
dependencies:
"@babel/highlight" "^7.16.7"
-"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.4", "@babel/compat-data@^7.16.8":
- version "7.16.8"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.8.tgz#31560f9f29fdf1868de8cb55049538a1b9732a60"
- integrity sha512-m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q==
+"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.8", "@babel/compat-data@^7.17.0":
+ version "7.17.0"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.17.0.tgz#86850b8597ea6962089770952075dcaabb8dba34"
+ integrity sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==
"@babel/compat-data@^7.17.7":
version "7.17.7"
@@ -114,10 +114,10 @@
browserslist "^4.17.5"
semver "^6.3.0"
-"@babel/helper-create-class-features-plugin@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.7.tgz#9c5b34b53a01f2097daf10678d65135c1b9f84ba"
- integrity sha512-kIFozAvVfK05DM4EVQYKK+zteWvY85BFdGBRQBytRyY3y+6PX0DkDOn/CZ3lEuczCfrCxEzwt0YtP/87YPTWSw==
+"@babel/helper-create-class-features-plugin@^7.16.10", "@babel/helper-create-class-features-plugin@^7.16.7", "@babel/helper-create-class-features-plugin@^7.17.1", "@babel/helper-create-class-features-plugin@^7.17.6":
+ version "7.17.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz#3778c1ed09a7f3e65e6d6e0f6fbfcc53809d92c9"
+ integrity sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==
dependencies:
"@babel/helper-annotate-as-pure" "^7.16.7"
"@babel/helper-environment-visitor" "^7.16.7"
@@ -128,12 +128,12 @@
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/helper-create-regexp-features-plugin@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz#0cb82b9bac358eb73bfbd73985a776bfa6b14d48"
- integrity sha512-fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g==
+ version "7.17.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz#1dcc7d40ba0c6b6b25618997c5dbfd310f186fe1"
+ integrity sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==
dependencies:
"@babel/helper-annotate-as-pure" "^7.16.7"
- regexpu-core "^4.7.1"
+ regexpu-core "^5.0.1"
"@babel/helper-define-polyfill-provider@^0.3.1":
version "0.3.1"
@@ -312,9 +312,9 @@
"@babel/types" "^7.17.0"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.7.tgz#81a01d7d675046f0d96f82450d9d9578bdfd6b0b"
- integrity sha512-aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw==
+ version "7.16.10"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.10.tgz#744f2eb81579d6eea753c227b0f570ad785aba88"
+ integrity sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
chalk "^2.0.0"
@@ -359,22 +359,24 @@
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-proposal-class-static-block@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz#712357570b612106ef5426d13dc433ce0f200c2a"
- integrity sha512-dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw==
+ version "7.17.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.17.6.tgz#164e8fd25f0d80fa48c5a4d1438a6629325ad83c"
+ integrity sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.16.7"
+ "@babel/helper-create-class-features-plugin" "^7.17.6"
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
"@babel/plugin-proposal-decorators@^7.16.4":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.16.7.tgz#922907d2e3e327f5b07d2246bcfc0bd438f360d2"
- integrity sha512-DoEpnuXK14XV9btI1k8tzNGCutMclpj4yru8aXKoHlVmbO1s+2A+g2+h4JhcjrxkFJqzbymnLG6j/niOf3iFXQ==
+ version "7.17.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.2.tgz#c36372ddfe0360cac1ee331a238310bddca11493"
+ integrity sha512-WH8Z95CwTq/W8rFbMqb9p3hicpt4RX4f0K659ax2VHxgOyT6qQmUaEVEjIh4WR9Eh9NymkVn5vwsrE68fAQNUw==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.16.7"
+ "@babel/helper-create-class-features-plugin" "^7.17.1"
"@babel/helper-plugin-utils" "^7.16.7"
- "@babel/plugin-syntax-decorators" "^7.16.7"
+ "@babel/helper-replace-supers" "^7.16.7"
+ "@babel/plugin-syntax-decorators" "^7.17.0"
+ charcodes "^0.2.0"
"@babel/plugin-proposal-dynamic-import@^7.16.7":
version "7.16.7"
@@ -425,11 +427,11 @@
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-proposal-object-rest-spread@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz#94593ef1ddf37021a25bdcb5754c4a8d534b01d8"
- integrity sha512-3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA==
+ version "7.17.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz#d9eb649a54628a51701aef7e0ea3d17e2b9dd390"
+ integrity sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==
dependencies:
- "@babel/compat-data" "^7.16.4"
+ "@babel/compat-data" "^7.17.0"
"@babel/helper-compilation-targets" "^7.16.7"
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
@@ -452,12 +454,12 @@
"@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
-"@babel/plugin-proposal-private-methods@^7.16.0", "@babel/plugin-proposal-private-methods@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.7.tgz#e418e3aa6f86edd6d327ce84eff188e479f571e0"
- integrity sha512-7twV3pzhrRxSwHeIvFE6coPgvo+exNDOiGUMg39o2LiLo1Y+4aKpfkcLGcg1UHonzorCt7SNXnoMyCnnIOA8Sw==
+"@babel/plugin-proposal-private-methods@^7.16.0", "@babel/plugin-proposal-private-methods@^7.16.11", "@babel/plugin-proposal-private-methods@^7.16.7":
+ version "7.16.11"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz#e8df108288555ff259f4527dbe84813aac3a1c50"
+ integrity sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.16.7"
+ "@babel/helper-create-class-features-plugin" "^7.16.10"
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-proposal-private-property-in-object@^7.16.7":
@@ -506,10 +508,10 @@
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
-"@babel/plugin-syntax-decorators@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.16.7.tgz#f66a0199f16de7c1ef5192160ccf5d069739e3d3"
- integrity sha512-vQ+PxL+srA7g6Rx6I1e15m55gftknl2X8GCUW1JTlkTaXZLJOS0UcaY0eK9jYT7IYf4awn6qwyghVHLDz1WyMw==
+"@babel/plugin-syntax-decorators@^7.17.0":
+ version "7.17.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.17.0.tgz#a2be3b2c9fe7d78bd4994e790896bc411e2f166d"
+ integrity sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
@@ -670,9 +672,9 @@
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-transform-destructuring@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz#ca9588ae2d63978a4c29d3f33282d8603f618e23"
- integrity sha512-VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A==
+ version "7.17.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.3.tgz#c445f75819641788a27a0a3a759d9df911df6abc"
+ integrity sha512-dDFzegDYKlPqa72xIlbmSkly5MluLoaC1JswABGktyt6NTXSBcUuse/kWE/wvKFWJHPETpi158qJZFS3JmykJg==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
@@ -812,9 +814,9 @@
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-transform-react-constant-elements@^7.12.1":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.16.7.tgz#19e9e4c2df2f6c3e6b3aea11778297d81db8df62"
- integrity sha512-lF+cfsyTgwWkcw715J88JhMYJ5GpysYNLhLP1PkvkhTRN7B3e74R/1KsDxFxhRpSn0UUD3IWM4GvdBR2PEbbQQ==
+ version "7.17.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.17.6.tgz#6cc273c2f612a6a50cb657e63ee1303e5e68d10a"
+ integrity sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==
dependencies:
"@babel/helper-plugin-utils" "^7.16.7"
@@ -833,15 +835,15 @@
"@babel/plugin-transform-react-jsx" "^7.16.7"
"@babel/plugin-transform-react-jsx@^7.16.7":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.16.7.tgz#86a6a220552afd0e4e1f0388a68a372be7add0d4"
- integrity sha512-8D16ye66fxiE8m890w0BpPpngG9o9OVBBy0gH2E+2AR7qMR2ZpTYJEqLxAsoroenMId0p/wMW+Blc0meDgu0Ag==
+ version "7.17.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.17.3.tgz#eac1565da176ccb1a715dae0b4609858808008c1"
+ integrity sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.16.7"
"@babel/helper-module-imports" "^7.16.7"
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-syntax-jsx" "^7.16.7"
- "@babel/types" "^7.16.7"
+ "@babel/types" "^7.17.0"
"@babel/plugin-transform-react-pure-annotations@^7.16.7":
version "7.16.7"
@@ -866,9 +868,9 @@
"@babel/helper-plugin-utils" "^7.16.7"
"@babel/plugin-transform-runtime@^7.16.4":
- version "7.16.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.16.8.tgz#3339368701103edae708f0fba9e4bfb70a3e5872"
- integrity sha512-6Kg2XHPFnIarNweZxmzbgYnnWsXxkx9WQUVk2sksBRL80lBC1RAQV3wQagWxdCHiYHqPN+oenwNIuttlYgIbQQ==
+ version "7.17.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.17.0.tgz#0a2e08b5e2b2d95c4b1d3b3371a2180617455b70"
+ integrity sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==
dependencies:
"@babel/helper-module-imports" "^7.16.7"
"@babel/helper-plugin-utils" "^7.16.7"
@@ -937,7 +939,7 @@
"@babel/helper-create-regexp-features-plugin" "^7.16.7"
"@babel/helper-plugin-utils" "^7.16.7"
-"@babel/preset-env@7.16.10", "@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4":
+"@babel/preset-env@7.16.10":
version "7.16.10"
resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.10.tgz#84400e6b5ee1efd982f55c61f3b6ac3fb5c8ab57"
integrity sha512-iCac3fZn9oOcLqc1N2/copPiX7aoxzsvjeDdXoZobrlbQ6YGgS3bL9HyldOJ8V8AY5P7pFynCATrn7M4dMw0Yg==
@@ -1017,6 +1019,86 @@
core-js-compat "^3.20.2"
semver "^6.3.0"
+"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.16.4":
+ version "7.16.11"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.11.tgz#5dd88fd885fae36f88fd7c8342475c9f0abe2982"
+ integrity sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==
+ dependencies:
+ "@babel/compat-data" "^7.16.8"
+ "@babel/helper-compilation-targets" "^7.16.7"
+ "@babel/helper-plugin-utils" "^7.16.7"
+ "@babel/helper-validator-option" "^7.16.7"
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.7"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.7"
+ "@babel/plugin-proposal-async-generator-functions" "^7.16.8"
+ "@babel/plugin-proposal-class-properties" "^7.16.7"
+ "@babel/plugin-proposal-class-static-block" "^7.16.7"
+ "@babel/plugin-proposal-dynamic-import" "^7.16.7"
+ "@babel/plugin-proposal-export-namespace-from" "^7.16.7"
+ "@babel/plugin-proposal-json-strings" "^7.16.7"
+ "@babel/plugin-proposal-logical-assignment-operators" "^7.16.7"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.7"
+ "@babel/plugin-proposal-numeric-separator" "^7.16.7"
+ "@babel/plugin-proposal-object-rest-spread" "^7.16.7"
+ "@babel/plugin-proposal-optional-catch-binding" "^7.16.7"
+ "@babel/plugin-proposal-optional-chaining" "^7.16.7"
+ "@babel/plugin-proposal-private-methods" "^7.16.11"
+ "@babel/plugin-proposal-private-property-in-object" "^7.16.7"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.16.7"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+ "@babel/plugin-syntax-class-properties" "^7.12.13"
+ "@babel/plugin-syntax-class-static-block" "^7.14.5"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
+ "@babel/plugin-syntax-top-level-await" "^7.14.5"
+ "@babel/plugin-transform-arrow-functions" "^7.16.7"
+ "@babel/plugin-transform-async-to-generator" "^7.16.8"
+ "@babel/plugin-transform-block-scoped-functions" "^7.16.7"
+ "@babel/plugin-transform-block-scoping" "^7.16.7"
+ "@babel/plugin-transform-classes" "^7.16.7"
+ "@babel/plugin-transform-computed-properties" "^7.16.7"
+ "@babel/plugin-transform-destructuring" "^7.16.7"
+ "@babel/plugin-transform-dotall-regex" "^7.16.7"
+ "@babel/plugin-transform-duplicate-keys" "^7.16.7"
+ "@babel/plugin-transform-exponentiation-operator" "^7.16.7"
+ "@babel/plugin-transform-for-of" "^7.16.7"
+ "@babel/plugin-transform-function-name" "^7.16.7"
+ "@babel/plugin-transform-literals" "^7.16.7"
+ "@babel/plugin-transform-member-expression-literals" "^7.16.7"
+ "@babel/plugin-transform-modules-amd" "^7.16.7"
+ "@babel/plugin-transform-modules-commonjs" "^7.16.8"
+ "@babel/plugin-transform-modules-systemjs" "^7.16.7"
+ "@babel/plugin-transform-modules-umd" "^7.16.7"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.8"
+ "@babel/plugin-transform-new-target" "^7.16.7"
+ "@babel/plugin-transform-object-super" "^7.16.7"
+ "@babel/plugin-transform-parameters" "^7.16.7"
+ "@babel/plugin-transform-property-literals" "^7.16.7"
+ "@babel/plugin-transform-regenerator" "^7.16.7"
+ "@babel/plugin-transform-reserved-words" "^7.16.7"
+ "@babel/plugin-transform-shorthand-properties" "^7.16.7"
+ "@babel/plugin-transform-spread" "^7.16.7"
+ "@babel/plugin-transform-sticky-regex" "^7.16.7"
+ "@babel/plugin-transform-template-literals" "^7.16.7"
+ "@babel/plugin-transform-typeof-symbol" "^7.16.7"
+ "@babel/plugin-transform-unicode-escapes" "^7.16.7"
+ "@babel/plugin-transform-unicode-regex" "^7.16.7"
+ "@babel/preset-modules" "^0.1.5"
+ "@babel/types" "^7.16.8"
+ babel-plugin-polyfill-corejs2 "^0.3.0"
+ babel-plugin-polyfill-corejs3 "^0.5.0"
+ babel-plugin-polyfill-regenerator "^0.3.0"
+ core-js-compat "^3.20.2"
+ semver "^6.3.0"
+
"@babel/preset-modules@^0.1.5":
version "0.1.5"
resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
@@ -1050,17 +1132,17 @@
"@babel/plugin-transform-typescript" "^7.16.7"
"@babel/runtime-corejs3@^7.10.2":
- version "7.16.8"
- resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.16.8.tgz#ea533d96eda6fdc76b1812248e9fbd0c11d4a1a7"
- integrity sha512-3fKhuICS1lMz0plI5ktOE/yEtBRMVxplzRkdn6mJQ197XiY0JnrzYV0+Mxozq3JZ8SBV9Ecurmw1XsGbwOf+Sg==
+ version "7.17.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.2.tgz#fdca2cd05fba63388babe85d349b6801b008fd13"
+ integrity sha512-NcKtr2epxfIrNM4VOmPKO46TvDMCBhgi2CrSHaEarrz+Plk2K5r9QemmOFTGpZaoKnWoGH5MO+CzeRsih/Fcgg==
dependencies:
core-js-pure "^3.20.2"
regenerator-runtime "^0.13.4"
"@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.12.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2", "@babel/runtime@^7.9.6":
- version "7.16.7"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.7.tgz#03ff99f64106588c9c403c6ecb8c3bafbbdff1fa"
- integrity sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==
+ version "7.17.2"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.17.2.tgz#66f68591605e59da47523c631416b18508779941"
+ integrity sha512-hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==
dependencies:
regenerator-runtime "^0.13.4"
@@ -1666,11 +1748,6 @@
tslib "^1.9.3"
ws "^6.1.2"
-"@gar/promisify@^1.0.1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.2.tgz#30aa825f11d438671d585bd44e7fd564535fc210"
- integrity sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==
-
"@humanwhocodes/config-array@^0.5.0":
version "0.5.0"
resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9"
@@ -1713,16 +1790,16 @@
jest-util "^26.6.2"
slash "^3.0.0"
-"@jest/console@^27.4.6":
- version "27.4.6"
- resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.4.6.tgz#0742e6787f682b22bdad56f9db2a8a77f6a86107"
- integrity sha512-jauXyacQD33n47A44KrlOVeiXHEXDqapSdfb9kTekOchH/Pd18kBIO1+xxJQRLuG+LUuljFCwTG92ra4NW7SpA==
+"@jest/console@^27.5.1":
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.5.1.tgz#260fe7239602fe5130a94f1aa386eff54b014bba"
+ integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==
dependencies:
- "@jest/types" "^27.4.2"
+ "@jest/types" "^27.5.1"
"@types/node" "*"
chalk "^4.0.0"
- jest-message-util "^27.4.6"
- jest-util "^27.4.2"
+ jest-message-util "^27.5.1"
+ jest-util "^27.5.1"
slash "^3.0.0"
"@jest/core@^26.6.3":
@@ -1841,13 +1918,13 @@
"@types/istanbul-lib-coverage" "^2.0.0"
collect-v8-coverage "^1.0.0"
-"@jest/test-result@^27.4.6":
- version "27.4.6"
- resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.4.6.tgz#b3df94c3d899c040f602cea296979844f61bdf69"
- integrity sha512-fi9IGj3fkOrlMmhQqa/t9xum8jaJOOAi/lZlm6JXSc55rJMXKHxNDN1oCP39B0/DhNOa2OMupF9BcKZnNtXMOQ==
+"@jest/test-result@^27.5.1":
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.5.1.tgz#56a6585fa80f7cdab72b8c5fc2e871d03832f5bb"
+ integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==
dependencies:
- "@jest/console" "^27.4.6"
- "@jest/types" "^27.4.2"
+ "@jest/console" "^27.5.1"
+ "@jest/types" "^27.5.1"
"@types/istanbul-lib-coverage" "^2.0.0"
collect-v8-coverage "^1.0.0"
@@ -1894,10 +1971,10 @@
"@types/yargs" "^15.0.0"
chalk "^4.0.0"
-"@jest/types@^27.4.2":
- version "27.4.2"
- resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.4.2.tgz#96536ebd34da6392c2b7c7737d693885b5dd44a5"
- integrity sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==
+"@jest/types@^27.5.1":
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.5.1.tgz#3c79ec4a8ba61c170bf937bcf9e98a9df175ec80"
+ integrity sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
@@ -1906,14 +1983,14 @@
chalk "^4.0.0"
"@jridgewell/resolve-uri@^3.0.3":
- version "3.0.4"
- resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.4.tgz#b876e3feefb9c8d3aa84014da28b5e52a0640d72"
- integrity sha512-cz8HFjOFfUBtvN+NXYSFMHYRdxZMaEl0XypVrhzxBgadKIXhIkRd8aMeHhmF56Sl7SuS8OnUpQ73/k9LE4VnLg==
+ version "3.0.5"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz#68eb521368db76d040a6315cdb24bf2483037b9c"
+ integrity sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==
"@jridgewell/sourcemap-codec@^1.4.10":
- version "1.4.10"
- resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.10.tgz#baf57b4e2a690d4f38560171f91783656b7f8186"
- integrity sha512-Ht8wIW5v165atIX1p+JvKR5ONzUyF4Ac8DZIQ5kZs9zrb6M8SJNXpx1zn04rn65VjBMygRoMXcyYwNK0fT7bEg==
+ version "1.4.11"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.11.tgz#771a1d8d744eeb71b6adb35808e1a6c7b9b8c8ec"
+ integrity sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==
"@jridgewell/trace-mapping@^0.3.0", "@jridgewell/trace-mapping@^0.3.4":
version "0.3.4"
@@ -1976,22 +2053,6 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
-"@npmcli/fs@^1.0.0":
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.0.tgz#bec1d1b89c170d40e1b73ad6c943b0b75e7d2951"
- integrity sha512-VhP1qZLXcrXRIaPoqb4YA55JQxLNF3jNR4T55IdOJa3+IFJKNYHtPvtXx8slmeMavj37vCzCfrqQM1vWLsYKLA==
- dependencies:
- "@gar/promisify" "^1.0.1"
- semver "^7.3.5"
-
-"@npmcli/move-file@^1.0.1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674"
- integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==
- dependencies:
- mkdirp "^1.0.4"
- rimraf "^3.0.2"
-
"@rollup/plugin-babel@5.3.1":
version "5.3.1"
resolved "https://registry.yarnpkg.com/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz#04bc0608f4aa4b2e4b1aebf284344d0f68fda283"
@@ -2042,9 +2103,9 @@
picomatch "^2.2.2"
"@rollup/pluginutils@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.1.tgz#1d4da86dd4eded15656a57d933fda2b9a08d47ec"
- integrity sha512-clDjivHqWGXi7u+0d2r2sBi4Ie6VLEAzWMIkvJLnDmxoOhBYOTfzGbOQBA32THHm11/LiJbd01tJUpJsbshSWQ==
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-4.1.2.tgz#ed5821c15e5e05e32816f5fb9ec607cdf5a75751"
+ integrity sha512-ROn4qvkxP9SyPeHaf7uQC/GPFY6L/OWy9+bd9AwcjOAWQwxRscoEyAUD8qCY5o5iL4jqQwoLk2kaTKJPb/HwzQ==
dependencies:
estree-walker "^2.0.1"
picomatch "^2.2.2"
@@ -2211,10 +2272,10 @@
dependencies:
"@babel/types" "^7.12.6"
-"@svgr/hast-util-to-babel-ast@^6.0.0":
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.0.0.tgz#423329ad866b6c169009cc82b5e28ffee80c857c"
- integrity sha512-S+TxtCdDyRGafH1VG1t/uPZ87aOYOHzWL8kqz4FoSZcIbzWA6rnOmjNViNiDzqmEpzp2PW5o5mZfvC9DiVZhTQ==
+"@svgr/hast-util-to-babel-ast@^6.2.1":
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.2.1.tgz#ae065567b74cbe745afae617053adf9a764bea25"
+ integrity sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==
dependencies:
"@babel/types" "^7.15.6"
entities "^3.0.1"
@@ -2230,13 +2291,13 @@
svg-parser "^2.0.2"
"@svgr/plugin-jsx@^6.1.2":
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-6.2.0.tgz#5e41a75b12b34cb66509e63e535606161770ff42"
- integrity sha512-QJDEe7K5Hkd4Eewu4pcjiOKTCtjB47Ol6lDLXVhf+jEewi+EKJAaAmM+bNixfW6LSNEg8RwOYQN3GZcprqKfHw==
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-6.2.1.tgz#5668f1d2aa18c2f1bb7a1fc9f682d3f9aed263bd"
+ integrity sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g==
dependencies:
"@babel/core" "^7.15.5"
"@svgr/babel-preset" "^6.2.0"
- "@svgr/hast-util-to-babel-ast" "^6.0.0"
+ "@svgr/hast-util-to-babel-ast" "^6.2.1"
svg-parser "^2.0.2"
"@svgr/plugin-svgo@^5.5.0":
@@ -2473,10 +2534,26 @@
resolved "https://registry.yarnpkg.com/@types/dedent/-/dedent-0.7.0.tgz#155f339ca404e6dd90b9ce46a3f78fd69ca9b050"
integrity sha512-EGlKlgMhnLt/cM4DbUSafFdrkeJoC9Mvnj0PUCU7tFmTjMjNRT957kXCx0wYm3JuEq4o4ZsS5vG+NlkM2DMd2A==
-"@types/estree@*":
- version "0.0.50"
- resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83"
- integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==
+"@types/eslint-scope@^3.7.3":
+ version "3.7.3"
+ resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.3.tgz#125b88504b61e3c8bc6f870882003253005c3224"
+ integrity sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==
+ dependencies:
+ "@types/eslint" "*"
+ "@types/estree" "*"
+
+"@types/eslint@*":
+ version "8.4.1"
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.4.1.tgz#c48251553e8759db9e656de3efc846954ac32304"
+ integrity sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==
+ dependencies:
+ "@types/estree" "*"
+ "@types/json-schema" "*"
+
+"@types/estree@*", "@types/estree@^0.0.51":
+ version "0.0.51"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40"
+ integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==
"@types/estree@0.0.39":
version "0.0.39"
@@ -2545,16 +2622,11 @@
dependencies:
"@types/node" "*"
-"@types/html-minifier-terser@6.1.0":
+"@types/html-minifier-terser@6.1.0", "@types/html-minifier-terser@^6.0.0":
version "6.1.0"
resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35"
integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==
-"@types/html-minifier-terser@^5.0.0":
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz#693b316ad323ea97eed6b38ed1a3cc02b1672b57"
- integrity sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==
-
"@types/http-proxy@^1.17.8":
version "1.17.8"
resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.8.tgz#968c66903e7e42b483608030ee85800f22d03f55"
@@ -2589,11 +2661,11 @@
"@types/istanbul-lib-report" "*"
"@types/jest@*":
- version "27.4.0"
- resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.4.0.tgz#037ab8b872067cae842a320841693080f9cb84ed"
- integrity sha512-gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ==
+ version "27.4.1"
+ resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.4.1.tgz#185cbe2926eaaf9662d340cc02e548ce9e11ab6d"
+ integrity sha512-23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw==
dependencies:
- jest-diff "^27.0.0"
+ jest-matcher-utils "^27.0.0"
pretty-format "^27.0.0"
"@types/jest@26.0.24":
@@ -2609,7 +2681,7 @@
resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.5.tgz#738dd390a6ecc5442f35e7f03fa1431353f7e138"
integrity sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==
-"@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
+"@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
version "7.0.9"
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d"
integrity sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==
@@ -2652,9 +2724,9 @@
integrity sha512-wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w==
"@types/node@^12.7.1":
- version "12.20.42"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.42.tgz#2f021733232c2130c26f9eabbdd3bfd881774733"
- integrity sha512-aI3/oo5DzyiI5R/xAhxxRzfZlWlsbbqdgxfTPkqu/Zt+23GXiJvMCyPJT4+xKSXOnLqoL8jJYMLTwvK2M3a5hw==
+ version "12.20.46"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.46.tgz#7e49dee4c54fd19584e6a9e0da5f3dc2e9136bc7"
+ integrity sha512-cPjLXj8d6anFPzFvOPxS3fvly3Shm5nTfl6g8X5smexixbuGUf7hfr21J5tX9JW+UPStp/5P5R8qrKL5IyVJ+A==
"@types/normalize-package-data@^2.4.0":
version "2.4.1"
@@ -2677,9 +2749,9 @@
integrity sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==
"@types/prettier@^2.0.0":
- version "2.4.3"
- resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.3.tgz#a3c65525b91fca7da00ab1a3ac2b5a2a4afbffbf"
- integrity sha512-QzSuZMBuG5u8HqYz01qtMdg/Jfctlnvj1z/lYnIDXs/golxw0fxtRAHd9KrzjR7Yxz1qVeI00o0kiO3PmVdJ9w==
+ version "2.4.4"
+ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.4.tgz#5d9b63132df54d8909fce1c3f8ca260fdd693e17"
+ integrity sha512-ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA==
"@types/prompts@2.0.14":
version "2.0.14"
@@ -2739,9 +2811,9 @@
csstype "^3.0.2"
"@types/react@^16.8.6", "@types/react@^16.9.17":
- version "16.14.21"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.21.tgz#35199b21a278355ec7a3c40003bd6a334bd4ae4a"
- integrity sha512-rY4DzPKK/4aohyWiDRHS2fotN5rhBSK6/rz1X37KzNna9HJyqtaGAbq9fVttrEPWF5ywpfIP1ITL8Xi2QZn6Eg==
+ version "16.14.23"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.23.tgz#37201b9f2324c5ff8fa4600dbf19079dfdffc880"
+ integrity sha512-WngBZLuSkP4IAgPi0HOsGCHo6dn3CcuLQnCfC17VbA7YBgipZiZoTOhObwl/93DsFW0Y2a/ZXeonpW4DxirEJg==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
@@ -2827,25 +2899,15 @@
dependencies:
"@types/node" "*"
-"@types/source-list-map@*":
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9"
- integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==
-
"@types/stack-utils@^2.0.0":
version "2.0.1"
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
-"@types/tapable@^1", "@types/tapable@^1.0.5":
- version "1.0.8"
- resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.8.tgz#b94a4391c85666c7b73299fd3ad79d4faa435310"
- integrity sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==
-
"@types/testing-library__jest-dom@^5.9.1":
- version "5.14.2"
- resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.2.tgz#564fb2b2dc827147e937a75b639a05d17ce18b44"
- integrity sha512-vehbtyHUShPxIa9SioxDwCvgxukDMH//icJG90sXQBUm5lJOHLT5kNeU9tnivhnA/TkOFMzGIXN2cTc4hY8/kg==
+ version "5.14.3"
+ resolved "https://registry.yarnpkg.com/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.3.tgz#ee6c7ffe9f8595882ee7bda8af33ae7b8789ef17"
+ integrity sha512-oKZe+Mf4ioWlMuzVBaXQ9WDnEm1+umLx0InILg+yvZVBBDmzV5KfZyLrCvadtWcx8+916jLmHafcmqqffl+iIw==
dependencies:
"@types/jest" "*"
@@ -2854,13 +2916,6 @@
resolved "https://registry.yarnpkg.com/@types/tmp/-/tmp-0.2.3.tgz#908bfb113419fd6a42273674c00994d40902c165"
integrity sha512-dDZH/tXzwjutnuk4UacGgFRwV+JSLaXL1ikvidfJprkb7L9Nx1njcRHHmi3Dsvt7pgqqTEeucQuOrWHPFgzVHA==
-"@types/uglify-js@*":
- version "3.13.1"
- resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.1.tgz#5e889e9e81e94245c75b6450600e1c5ea2878aea"
- integrity sha512-O3MmRAk6ZuAKa9CHgg0Pr0+lUOqoMLpc9AS4R8ano2auvsg7IE8syF3Xh/NPr26TWklxYcqoEEFdzLLs1fV9PQ==
- dependencies:
- source-map "^0.6.1"
-
"@types/update-notifier@5.1.0":
version "5.1.0"
resolved "https://registry.yarnpkg.com/@types/update-notifier/-/update-notifier-5.1.0.tgz#52ed6a2e9851fd6f1c88e93c85e8a0e1d5500fda"
@@ -2869,27 +2924,6 @@
"@types/configstore" "*"
boxen "^4.2.0"
-"@types/webpack-sources@*":
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-3.2.0.tgz#16d759ba096c289034b26553d2df1bf45248d38b"
- integrity sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==
- dependencies:
- "@types/node" "*"
- "@types/source-list-map" "*"
- source-map "^0.7.3"
-
-"@types/webpack@^4.41.8":
- version "4.41.32"
- resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.32.tgz#a7bab03b72904070162b2f169415492209e94212"
- integrity sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==
- dependencies:
- "@types/node" "*"
- "@types/tapable" "^1"
- "@types/uglify-js" "*"
- "@types/webpack-sources" "*"
- anymatch "^3.0.0"
- source-map "^0.6.0"
-
"@types/ws@*", "@types/ws@^8.5.1":
version "8.5.3"
resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.3.tgz#7d25a1ffbecd3c4f2d35068d0b283c037003274d"
@@ -2898,9 +2932,9 @@
"@types/node" "*"
"@types/yargs-parser@*":
- version "20.2.1"
- resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129"
- integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==
+ version "21.0.0"
+ resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b"
+ integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==
"@types/yargs@^15.0.0":
version "15.0.14"
@@ -3039,149 +3073,125 @@
"@typescript-eslint/types" "5.19.0"
eslint-visitor-keys "^3.0.0"
-"@webassemblyjs/ast@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
- integrity sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==
- dependencies:
- "@webassemblyjs/helper-module-context" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/wast-parser" "1.9.0"
-
-"@webassemblyjs/floating-point-hex-parser@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz#3c3d3b271bddfc84deb00f71344438311d52ffb4"
- integrity sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==
-
-"@webassemblyjs/helper-api-error@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz#203f676e333b96c9da2eeab3ccef33c45928b6a2"
- integrity sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==
-
-"@webassemblyjs/helper-buffer@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz#a1442d269c5feb23fcbc9ef759dac3547f29de00"
- integrity sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==
-
-"@webassemblyjs/helper-code-frame@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz#647f8892cd2043a82ac0c8c5e75c36f1d9159f27"
- integrity sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==
- dependencies:
- "@webassemblyjs/wast-printer" "1.9.0"
-
-"@webassemblyjs/helper-fsm@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz#c05256b71244214671f4b08ec108ad63b70eddb8"
- integrity sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==
-
-"@webassemblyjs/helper-module-context@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz#25d8884b76839871a08a6c6f806c3979ef712f07"
- integrity sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
-
-"@webassemblyjs/helper-wasm-bytecode@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz#4fed8beac9b8c14f8c58b70d124d549dd1fe5790"
- integrity sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==
-
-"@webassemblyjs/helper-wasm-section@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz#5a4138d5a6292ba18b04c5ae49717e4167965346"
- integrity sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-buffer" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/wasm-gen" "1.9.0"
-
-"@webassemblyjs/ieee754@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz#15c7a0fbaae83fb26143bbacf6d6df1702ad39e4"
- integrity sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==
+"@webassemblyjs/ast@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7"
+ integrity sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==
dependencies:
- "@xtuc/ieee754" "^1.2.0"
+ "@webassemblyjs/helper-numbers" "1.11.1"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
+
+"@webassemblyjs/floating-point-hex-parser@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f"
+ integrity sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==
+
+"@webassemblyjs/helper-api-error@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16"
+ integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==
+
+"@webassemblyjs/helper-buffer@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5"
+ integrity sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==
-"@webassemblyjs/leb128@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.9.0.tgz#f19ca0b76a6dc55623a09cffa769e838fa1e1c95"
- integrity sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==
+"@webassemblyjs/helper-numbers@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae"
+ integrity sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==
dependencies:
+ "@webassemblyjs/floating-point-hex-parser" "1.11.1"
+ "@webassemblyjs/helper-api-error" "1.11.1"
"@xtuc/long" "4.2.2"
-"@webassemblyjs/utf8@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.9.0.tgz#04d33b636f78e6a6813227e82402f7637b6229ab"
- integrity sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==
-
-"@webassemblyjs/wasm-edit@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz#3fe6d79d3f0f922183aa86002c42dd256cfee9cf"
- integrity sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-buffer" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/helper-wasm-section" "1.9.0"
- "@webassemblyjs/wasm-gen" "1.9.0"
- "@webassemblyjs/wasm-opt" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
- "@webassemblyjs/wast-printer" "1.9.0"
-
-"@webassemblyjs/wasm-gen@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz#50bc70ec68ded8e2763b01a1418bf43491a7a49c"
- integrity sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/ieee754" "1.9.0"
- "@webassemblyjs/leb128" "1.9.0"
- "@webassemblyjs/utf8" "1.9.0"
-
-"@webassemblyjs/wasm-opt@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz#2211181e5b31326443cc8112eb9f0b9028721a61"
- integrity sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-buffer" "1.9.0"
- "@webassemblyjs/wasm-gen" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
-
-"@webassemblyjs/wasm-parser@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz#9d48e44826df4a6598294aa6c87469d642fff65e"
- integrity sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-api-error" "1.9.0"
- "@webassemblyjs/helper-wasm-bytecode" "1.9.0"
- "@webassemblyjs/ieee754" "1.9.0"
- "@webassemblyjs/leb128" "1.9.0"
- "@webassemblyjs/utf8" "1.9.0"
-
-"@webassemblyjs/wast-parser@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz#3031115d79ac5bd261556cecc3fa90a3ef451914"
- integrity sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/floating-point-hex-parser" "1.9.0"
- "@webassemblyjs/helper-api-error" "1.9.0"
- "@webassemblyjs/helper-code-frame" "1.9.0"
- "@webassemblyjs/helper-fsm" "1.9.0"
- "@xtuc/long" "4.2.2"
+"@webassemblyjs/helper-wasm-bytecode@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1"
+ integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==
+
+"@webassemblyjs/helper-wasm-section@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a"
+ integrity sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.1"
+ "@webassemblyjs/helper-buffer" "1.11.1"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
+ "@webassemblyjs/wasm-gen" "1.11.1"
+
+"@webassemblyjs/ieee754@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614"
+ integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==
+ dependencies:
+ "@xtuc/ieee754" "^1.2.0"
-"@webassemblyjs/wast-printer@1.9.0":
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz#4935d54c85fef637b00ce9f52377451d00d47899"
- integrity sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==
+"@webassemblyjs/leb128@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5"
+ integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==
dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/wast-parser" "1.9.0"
+ "@xtuc/long" "4.2.2"
+
+"@webassemblyjs/utf8@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff"
+ integrity sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==
+
+"@webassemblyjs/wasm-edit@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6"
+ integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.1"
+ "@webassemblyjs/helper-buffer" "1.11.1"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
+ "@webassemblyjs/helper-wasm-section" "1.11.1"
+ "@webassemblyjs/wasm-gen" "1.11.1"
+ "@webassemblyjs/wasm-opt" "1.11.1"
+ "@webassemblyjs/wasm-parser" "1.11.1"
+ "@webassemblyjs/wast-printer" "1.11.1"
+
+"@webassemblyjs/wasm-gen@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76"
+ integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.1"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
+ "@webassemblyjs/ieee754" "1.11.1"
+ "@webassemblyjs/leb128" "1.11.1"
+ "@webassemblyjs/utf8" "1.11.1"
+
+"@webassemblyjs/wasm-opt@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2"
+ integrity sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.1"
+ "@webassemblyjs/helper-buffer" "1.11.1"
+ "@webassemblyjs/wasm-gen" "1.11.1"
+ "@webassemblyjs/wasm-parser" "1.11.1"
+
+"@webassemblyjs/wasm-parser@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199"
+ integrity sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.1"
+ "@webassemblyjs/helper-api-error" "1.11.1"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.1"
+ "@webassemblyjs/ieee754" "1.11.1"
+ "@webassemblyjs/leb128" "1.11.1"
+ "@webassemblyjs/utf8" "1.11.1"
+
+"@webassemblyjs/wast-printer@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0"
+ integrity sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.1"
"@xtuc/long" "4.2.2"
"@webcomponents/shadycss@^1.5.2":
@@ -3230,6 +3240,11 @@ acorn-globals@^6.0.0:
acorn "^7.1.1"
acorn-walk "^7.1.1"
+acorn-import-assertions@^1.7.6:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9"
+ integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==
+
acorn-jsx@^5.3.1:
version "5.3.2"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
@@ -3245,11 +3260,6 @@ acorn-walk@^8.1.1:
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
-acorn@^6.4.1:
- version "6.4.2"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
- integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
-
acorn@^7.1.1, acorn@^7.4.0:
version "7.4.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
@@ -3288,11 +3298,6 @@ aggregate-error@^3.0.0:
clean-stack "^2.0.0"
indent-string "^4.0.0"
-ajv-errors@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d"
- integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
-
ajv-formats@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520"
@@ -3300,7 +3305,7 @@ ajv-formats@^2.1.1:
dependencies:
ajv "^8.0.0"
-ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
+ajv-keywords@^3.4.1, ajv-keywords@^3.5.2:
version "3.5.2"
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
@@ -3312,7 +3317,7 @@ ajv-keywords@^5.0.0:
dependencies:
fast-deep-equal "^3.1.3"
-ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5:
+ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5:
version "6.12.6"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
@@ -3323,20 +3328,15 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5:
uri-js "^4.2.2"
ajv@^8.0.0, ajv@^8.0.1, ajv@^8.8.0:
- version "8.9.0"
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.9.0.tgz#738019146638824dea25edcf299dcba1b0e7eb18"
- integrity sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==
+ version "8.10.0"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.10.0.tgz#e573f719bd3af069017e3b66538ab968d040e54d"
+ integrity sha512-bzqAEZOjkrUMl2afH8dknrq5KEk2SrwdBROR+vH1EKVQTqaUbJVPdc/gEdggTMM0Se+s+Ja4ju4TlNcStKl2Hw==
dependencies:
fast-deep-equal "^3.1.1"
json-schema-traverse "^1.0.0"
require-from-string "^2.0.2"
uri-js "^4.2.2"
-alphanum-sort@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
- integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
-
ansi-align@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59"
@@ -3361,11 +3361,6 @@ ansi-html-community@^0.0.8:
resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41"
integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==
-ansi-regex@^2.0.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
- integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
-
ansi-regex@^5.0.0, ansi-regex@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
@@ -3408,7 +3403,7 @@ anymatch@^2.0.0:
micromatch "^3.1.4"
normalize-path "^2.1.1"
-anymatch@^3.0.0, anymatch@^3.0.3, anymatch@~3.1.2:
+anymatch@^3.0.3, anymatch@~3.1.2:
version "3.1.2"
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
@@ -3416,11 +3411,6 @@ anymatch@^3.0.0, anymatch@^3.0.3, anymatch@~3.1.2:
normalize-path "^3.0.0"
picomatch "^2.0.4"
-aproba@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
- integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
-
arg@^4.1.0:
version "4.1.3"
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
@@ -3537,24 +3527,6 @@ ascii-tree@0.3.0:
dependencies:
freetree "0.2.2"
-asn1.js@^5.2.0:
- version "5.4.1"
- resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
- integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
- dependencies:
- bn.js "^4.0.0"
- inherits "^2.0.1"
- minimalistic-assert "^1.0.0"
- safer-buffer "^2.1.0"
-
-assert@^1.1.1:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
- integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
- dependencies:
- object-assign "^4.1.1"
- util "0.10.3"
-
assign-symbols@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
@@ -3570,11 +3542,6 @@ astral-regex@^2.0.0:
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
-async-each@^1.0.1:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
- integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
-
async-limiter@~1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
@@ -3592,6 +3559,11 @@ asynckit@^0.4.0:
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
+at-least-node@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
+ integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
+
atob@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
@@ -3615,9 +3587,9 @@ awesomplete@^1.1.2:
integrity sha512-UFw1mPW8NaSECDSTC36HbAOTpF9JK2wBUJcNn4MSvlNtK7SZ9N72gB+ajHtA6D1abYXRcszZnBA4nHBwvFwzHw==
axe-core@^4.3.5:
- version "4.3.5"
- resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.3.5.tgz#78d6911ba317a8262bfee292aeafcc1e04b49cc5"
- integrity sha512-WKTW1+xAzhMS5dJsxWkliixlO/PqC4VhmO9T4juNYcaTg9jzWiJsou6m5pxWYGfigWbwzJWeFY6z47a+4neRXA==
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413"
+ integrity sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==
axobject-query@^2.2.0:
version "2.2.0"
@@ -3697,12 +3669,12 @@ babel-plugin-polyfill-corejs2@^0.3.0:
semver "^6.1.1"
babel-plugin-polyfill-corejs3@^0.5.0:
- version "0.5.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.1.tgz#d66183bf10976ea677f4149a7fcc4d8df43d4060"
- integrity sha512-TihqEe4sQcb/QcPJvxe94/9RZuLQuF1+To4WqQcRvc+3J3gLCPIPgDKzGLG6zmQLfH3nn25heRuDNkS2KR4I8A==
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz#aabe4b2fa04a6e038b688c5e55d44e78cd3a5f72"
+ integrity sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==
dependencies:
"@babel/helper-define-polyfill-provider" "^0.3.1"
- core-js-compat "^3.20.0"
+ core-js-compat "^3.21.0"
babel-plugin-polyfill-regenerator@^0.3.0:
version "0.3.1"
@@ -3777,7 +3749,7 @@ balanced-match@^1.0.0:
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
-base64-js@^1.0.2, base64-js@^1.3.1:
+base64-js@^1.3.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
@@ -3812,23 +3784,11 @@ big.js@^5.2.2:
resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
-binary-extensions@^1.0.0:
- version "1.13.1"
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
- integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==
-
binary-extensions@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
-bindings@^1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
- integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==
- dependencies:
- file-uri-to-path "1.0.0"
-
bl@^4.0.3:
version "4.1.0"
resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"
@@ -3838,21 +3798,6 @@ bl@^4.0.3:
inherits "^2.0.4"
readable-stream "^3.4.0"
-bluebird@^3.5.5:
- version "3.7.2"
- resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
- integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==
-
-bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
- version "4.12.0"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
- integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
-
-bn.js@^5.0.0, bn.js@^5.1.1:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002"
- integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==
-
body-parser@1.19.2:
version "1.19.2"
resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.2.tgz#4714ccd9c157d44797b8b5607d72c0b89952f26e"
@@ -3927,7 +3872,7 @@ brace-expansion@^2.0.1:
dependencies:
balanced-match "^1.0.0"
-braces@^2.3.1, braces@^2.3.2:
+braces@^2.3.1:
version "2.3.2"
resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==
@@ -3957,78 +3902,12 @@ breakword@^1.0.5:
dependencies:
wcwidth "^1.0.1"
-brorand@^1.0.1, brorand@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
- integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
-
browser-process-hrtime@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-browserify-aes@^1.0.0, browserify-aes@^1.0.4:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
- integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
- dependencies:
- buffer-xor "^1.0.3"
- cipher-base "^1.0.0"
- create-hash "^1.1.0"
- evp_bytestokey "^1.0.3"
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
-browserify-cipher@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
- integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
- dependencies:
- browserify-aes "^1.0.4"
- browserify-des "^1.0.0"
- evp_bytestokey "^1.0.0"
-
-browserify-des@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
- integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
- dependencies:
- cipher-base "^1.0.1"
- des.js "^1.0.0"
- inherits "^2.0.1"
- safe-buffer "^5.1.2"
-
-browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"
- integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
- dependencies:
- bn.js "^5.0.0"
- randombytes "^2.0.1"
-
-browserify-sign@^4.0.0:
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
- integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
- dependencies:
- bn.js "^5.1.1"
- browserify-rsa "^4.0.1"
- create-hash "^1.2.0"
- create-hmac "^1.1.7"
- elliptic "^6.5.3"
- inherits "^2.0.4"
- parse-asn1 "^5.1.5"
- readable-stream "^3.6.0"
- safe-buffer "^5.2.0"
-
-browserify-zlib@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
- integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
- dependencies:
- pako "~1.0.5"
-
-browserslist@4.20.2, browserslist@^4.0.0, browserslist@^4.16.0, browserslist@^4.16.6, browserslist@^4.17.5, browserslist@^4.19.1, browserslist@^4.20.2, browserslist@^4.6.2:
+browserslist@4.20.2, browserslist@^4.0.0, browserslist@^4.16.6, browserslist@^4.17.5, browserslist@^4.19.1, browserslist@^4.20.2, browserslist@^4.6.2:
version "4.20.2"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.2.tgz#567b41508757ecd904dab4d1c646c612cd3d4f88"
integrity sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==
@@ -4039,6 +3918,17 @@ browserslist@4.20.2, browserslist@^4.0.0, browserslist@^4.16.0, browserslist@^4.
node-releases "^2.0.2"
picocolors "^1.0.0"
+browserslist@^4.14.5:
+ version "4.20.0"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.20.0.tgz#35951e3541078c125d36df76056e94738a52ebe9"
+ integrity sha512-bnpOoa+DownbciXj0jVGENf8VYQnE2LNWomhYuCsMmmx9Jd9lwq0WXODuwpSsp8AVdKM2/HorrzxAfbKvWTByQ==
+ dependencies:
+ caniuse-lite "^1.0.30001313"
+ electron-to-chromium "^1.4.76"
+ escalade "^3.1.1"
+ node-releases "^2.0.2"
+ picocolors "^1.0.0"
+
bs-logger@0.x:
version "0.2.6"
resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8"
@@ -4063,20 +3953,6 @@ buffer-from@1.x, buffer-from@^1.0.0:
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
-buffer-xor@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
- integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
-
-buffer@^4.3.0:
- version "4.9.2"
- resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
- integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
- dependencies:
- base64-js "^1.0.2"
- ieee754 "^1.1.4"
- isarray "^1.0.0"
-
buffer@^5.2.1, buffer@^5.5.0:
version "5.7.1"
resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
@@ -4090,11 +3966,6 @@ builtin-modules@3.2.0, builtin-modules@^3.1.0:
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.2.0.tgz#45d5db99e7ee5e6bc4f362e008bf917ab5049887"
integrity sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==
-builtin-status-codes@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
- integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
-
bytes@3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
@@ -4105,51 +3976,6 @@ bytes@3.1.2:
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
-cacache@^12.0.2:
- version "12.0.4"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c"
- integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==
- dependencies:
- bluebird "^3.5.5"
- chownr "^1.1.1"
- figgy-pudding "^3.5.1"
- glob "^7.1.4"
- graceful-fs "^4.1.15"
- infer-owner "^1.0.3"
- lru-cache "^5.1.1"
- mississippi "^3.0.0"
- mkdirp "^0.5.1"
- move-concurrently "^1.0.1"
- promise-inflight "^1.0.1"
- rimraf "^2.6.3"
- ssri "^6.0.1"
- unique-filename "^1.1.1"
- y18n "^4.0.0"
-
-cacache@^15.0.5:
- version "15.3.0"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"
- integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==
- dependencies:
- "@npmcli/fs" "^1.0.0"
- "@npmcli/move-file" "^1.0.1"
- chownr "^2.0.0"
- fs-minipass "^2.0.0"
- glob "^7.1.4"
- infer-owner "^1.0.4"
- lru-cache "^6.0.0"
- minipass "^3.1.1"
- minipass-collect "^1.0.2"
- minipass-flush "^1.0.5"
- minipass-pipeline "^1.2.2"
- mkdirp "^1.0.3"
- p-map "^4.0.0"
- promise-inflight "^1.0.1"
- rimraf "^3.0.2"
- ssri "^8.0.1"
- tar "^6.0.2"
- unique-filename "^1.1.1"
-
cache-base@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
@@ -4191,7 +4017,7 @@ callsites@^3.0.0:
resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
-camel-case@^4.1.1, camel-case@^4.1.2:
+camel-case@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
@@ -4233,6 +4059,11 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001317:
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001319.tgz#eb4da4eb3ecdd409f7ba1907820061d56096e88f"
integrity sha512-xjlIAFHucBRSMUo1kb5D4LYgcN1M45qdKP++lhqowDpwJwGkpIRTt5qQqnhxjj1vHcI7nrJxWhCC1ATrCEBTcw==
+caniuse-lite@^1.0.30001313:
+ version "1.0.30001320"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001320.tgz#8397391bec389b8ccce328636499b7284ee13285"
+ integrity sha512-MWPzG54AGdo3nWx7zHZTefseM5Y1ccM7hlQKHRqJkPozUaw3hNbBTMmLn16GG2FUzjR13Cr3NPfhIieX5PzXDA==
+
capital-case@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669"
@@ -4302,6 +4133,11 @@ char-regex@^1.0.2:
resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
+charcodes@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/charcodes/-/charcodes-0.2.0.tgz#5208d327e6cc05f99eb80ffc814707572d1f14e4"
+ integrity sha512-Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ==
+
chardet@^0.7.0:
version "0.7.0"
resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
@@ -4314,26 +4150,7 @@ chevrotain@^6.5.0:
dependencies:
regexp-to-ast "0.4.0"
-chokidar@^2.1.8:
- version "2.1.8"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
- integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
- dependencies:
- anymatch "^2.0.0"
- async-each "^1.0.1"
- braces "^2.3.2"
- glob-parent "^3.1.0"
- inherits "^2.0.3"
- is-binary-path "^1.0.0"
- is-glob "^4.0.0"
- normalize-path "^3.0.0"
- path-is-absolute "^1.0.0"
- readdirp "^2.2.1"
- upath "^1.1.1"
- optionalDependencies:
- fsevents "^1.2.7"
-
-chokidar@^3.4.0, chokidar@^3.4.1, chokidar@^3.5.3:
+chokidar@^3.4.0, chokidar@^3.4.2, chokidar@^3.5.3:
version "3.5.3"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
@@ -4353,11 +4170,6 @@ chownr@^1.1.1:
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
-chownr@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
- integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
-
chroma-js@^1.3.4:
version "1.4.1"
resolved "https://registry.yarnpkg.com/chroma-js/-/chroma-js-1.4.1.tgz#eb2d9c4d1ff24616be84b35119f4d26f8205f134"
@@ -4378,14 +4190,6 @@ ci-info@^3.1.0, ci-info@^3.2.0:
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.0.tgz#b4ed1fb6818dea4803a55c623041f9165d2066b2"
integrity sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==
-cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
- integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
- dependencies:
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
cjs-module-lexer@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz#4186fcca0eae175970aee870b9fe2d6cf8d5655f"
@@ -4401,13 +4205,6 @@ class-utils@^0.3.5:
isobject "^3.0.0"
static-extend "^0.1.1"
-clean-css@^4.2.3:
- version "4.2.4"
- resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.4.tgz#733bf46eba4e607c6891ea57c24a989356831178"
- integrity sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==
- dependencies:
- source-map "~0.6.0"
-
clean-css@^5.2.2:
version "5.3.0"
resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.0.tgz#ad3d8238d5f3549e83d5f87205189494bc7cbb59"
@@ -4554,7 +4351,7 @@ commander@9.2.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-9.2.0.tgz#6e21014b2ed90d8b7c9647230d8b7a94a4a419a9"
integrity sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==
-commander@^4.0.1, commander@^4.1.1:
+commander@^4.0.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
@@ -4604,16 +4401,6 @@ concat-map@0.0.1:
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-concat-stream@^1.5.0:
- version "1.6.2"
- resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
- integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
- dependencies:
- buffer-from "^1.0.0"
- inherits "^2.0.3"
- readable-stream "^2.2.2"
- typedarray "^0.0.6"
-
concat-with-sourcemaps@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz#d4ea93f05ae25790951b99e7b3b09e3908a4082e"
@@ -4643,11 +4430,6 @@ connect-history-api-fallback@^1.6.0:
resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc"
integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==
-console-browserify@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
- integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
-
constant-case@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1"
@@ -4657,11 +4439,6 @@ constant-case@^3.0.4:
tslib "^2.0.3"
upper-case "^2.0.2"
-constants-browserify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
- integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
-
content-disposition@0.5.4:
version "0.5.4"
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
@@ -4691,35 +4468,23 @@ cookie@0.4.2:
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432"
integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==
-copy-concurrently@^1.0.0:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
- integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==
- dependencies:
- aproba "^1.1.1"
- fs-write-stream-atomic "^1.0.8"
- iferr "^0.1.5"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
- run-queue "^1.0.0"
-
copy-descriptor@^0.1.0:
version "0.1.1"
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-core-js-compat@^3.20.0, core-js-compat@^3.20.2:
- version "3.20.3"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.20.3.tgz#d71f85f94eb5e4bea3407412e549daa083d23bd6"
- integrity sha512-c8M5h0IkNZ+I92QhIpuSijOxGAcj3lgpsWdkCqmUTZNwidujF4r3pi6x1DCN+Vcs5qTS2XWWMfWSuCqyupX8gw==
+core-js-compat@^3.20.2, core-js-compat@^3.21.0:
+ version "3.21.1"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.21.1.tgz#cac369f67c8d134ff8f9bd1623e3bc2c42068c82"
+ integrity sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==
dependencies:
browserslist "^4.19.1"
semver "7.0.0"
core-js-pure@^3.20.2:
- version "3.20.3"
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.20.3.tgz#6cc4f36da06c61d95254efc54024fe4797fd5d02"
- integrity sha512-Q2H6tQ5MtPtcC7f3HxJ48i4Q7T9ybPKgvWyuH7JXIoNa2pm0KuBnycsET/qw1SLLZYfbsbrZQNMeIOClb+6WIA==
+ version "3.21.1"
+ resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.21.1.tgz#8c4d1e78839f5f46208de7230cebfb72bc3bdb51"
+ integrity sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==
core-js@^2.4.0:
version "2.6.12"
@@ -4727,9 +4492,9 @@ core-js@^2.4.0:
integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==
core-js@^3.6.4:
- version "3.20.3"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.20.3.tgz#c710d0a676e684522f3db4ee84e5e18a9d11d69a"
- integrity sha512-vVl8j8ph6tRS3B8qir40H7yw7voy17xL0piAjlbBUsH7WIfzoedL/ZOr1OV9FyZQLWXsayOJyV4tnRyXR85/ag==
+ version "3.21.1"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.21.1.tgz#f2e0ddc1fc43da6f904706e8e955bc19d06a0d94"
+ integrity sha512-FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig==
core-util-is@~1.0.0:
version "1.0.3"
@@ -4758,37 +4523,6 @@ cosmiconfig@^7.0.0, cosmiconfig@^7.0.1:
path-type "^4.0.0"
yaml "^1.10.0"
-create-ecdh@^4.0.0:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
- integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
- dependencies:
- bn.js "^4.1.0"
- elliptic "^6.5.3"
-
-create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
- integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
- dependencies:
- cipher-base "^1.0.1"
- inherits "^2.0.1"
- md5.js "^1.3.4"
- ripemd160 "^2.0.1"
- sha.js "^2.4.0"
-
-create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
- integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
- dependencies:
- cipher-base "^1.0.3"
- create-hash "^1.1.0"
- inherits "^2.0.1"
- ripemd160 "^2.0.0"
- safe-buffer "^5.0.1"
- sha.js "^2.4.8"
-
create-jest-runner@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/create-jest-runner/-/create-jest-runner-0.6.0.tgz#9ca6583d969acc15cdc21cd07d430945daf83de6"
@@ -4811,7 +4545,7 @@ create-require@^1.1.0:
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
-cross-fetch@3.1.5, cross-fetch@^3.0.4:
+cross-fetch@3.1.5, cross-fetch@^3.1.5:
version "3.1.5"
resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f"
integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==
@@ -4847,23 +4581,6 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.5:
shebang-command "^1.2.0"
which "^1.2.9"
-crypto-browserify@^3.11.0:
- version "3.12.0"
- resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
- integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
- dependencies:
- browserify-cipher "^1.0.0"
- browserify-sign "^4.0.0"
- create-ecdh "^4.0.0"
- create-hash "^1.1.0"
- create-hmac "^1.1.0"
- diffie-hellman "^5.0.0"
- inherits "^2.0.1"
- pbkdf2 "^3.0.3"
- public-encrypt "^4.0.0"
- randombytes "^2.0.0"
- randomfill "^1.0.3"
-
crypto-random-string@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-2.0.0.tgz#ef2a7a966ec11083388369baa02ebead229b30d5"
@@ -4898,23 +4615,31 @@ css-in-js-utils@^2.0.0:
hyphenate-style-name "^1.0.2"
isobject "^3.0.1"
-css-loader@4.3.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-4.3.0.tgz#c888af64b2a5b2e85462c72c0f4a85c7e2e0821e"
- integrity sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==
+css-loader@6.6.0:
+ version "6.6.0"
+ resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.6.0.tgz#c792ad5510bd1712618b49381bd0310574fafbd3"
+ integrity sha512-FK7H2lisOixPT406s5gZM1S3l8GrfhEBT3ZiL2UX1Ng1XWs0y2GPllz/OTyvbaHe12VgQrIXIzuEGVlbUhodqg==
dependencies:
- camelcase "^6.0.0"
- cssesc "^3.0.0"
- icss-utils "^4.1.1"
- loader-utils "^2.0.0"
- postcss "^7.0.32"
- postcss-modules-extract-imports "^2.0.0"
- postcss-modules-local-by-default "^3.0.3"
- postcss-modules-scope "^2.2.0"
- postcss-modules-values "^3.0.0"
- postcss-value-parser "^4.1.0"
- schema-utils "^2.7.1"
- semver "^7.3.2"
+ icss-utils "^5.1.0"
+ postcss "^8.4.5"
+ postcss-modules-extract-imports "^3.0.0"
+ postcss-modules-local-by-default "^4.0.0"
+ postcss-modules-scope "^3.0.0"
+ postcss-modules-values "^4.0.0"
+ postcss-value-parser "^4.2.0"
+ semver "^7.3.5"
+
+css-minimizer-webpack-plugin@3.4.1:
+ version "3.4.1"
+ resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz#ab78f781ced9181992fe7b6e4f3422e76429878f"
+ integrity sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==
+ dependencies:
+ cssnano "^5.0.6"
+ jest-worker "^27.0.2"
+ postcss "^8.3.5"
+ schema-utils "^4.0.0"
+ serialize-javascript "^6.0.0"
+ source-map "^0.6.1"
css-prefers-color-scheme@^6.0.3:
version "6.0.3"
@@ -4997,52 +4722,52 @@ cssesc@^3.0.0:
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
-cssnano-preset-default@^5.1.10:
- version "5.1.10"
- resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.1.10.tgz#9350765fdf3c49bf78fac7673354fa58fa95daa4"
- integrity sha512-BcpSzUVygHMOnp9uG5rfPzTOCb0GAHQkqtUQx8j1oMNF9A1Q8hziOOhiM4bdICpmrBIU85BE64RD5XGYsVQZNA==
+cssnano-preset-default@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.0.tgz#2579d38b9217746f2cf9f938954a91e00418ded6"
+ integrity sha512-3N5Vcptj2pqVKpHVqH6ezOJvqikR2PdLTbTrsrhF61FbLRQuujAqZ2sKN5rvcMsb7hFjrNnjZT8CGEkxoN/Pwg==
dependencies:
css-declaration-sorter "^6.0.3"
- cssnano-utils "^3.0.0"
- postcss-calc "^8.2.0"
- postcss-colormin "^5.2.3"
- postcss-convert-values "^5.0.2"
- postcss-discard-comments "^5.0.1"
- postcss-discard-duplicates "^5.0.1"
- postcss-discard-empty "^5.0.1"
- postcss-discard-overridden "^5.0.2"
- postcss-merge-longhand "^5.0.4"
- postcss-merge-rules "^5.0.4"
- postcss-minify-font-values "^5.0.2"
- postcss-minify-gradients "^5.0.4"
- postcss-minify-params "^5.0.3"
- postcss-minify-selectors "^5.1.1"
- postcss-normalize-charset "^5.0.1"
- postcss-normalize-display-values "^5.0.2"
- postcss-normalize-positions "^5.0.2"
- postcss-normalize-repeat-style "^5.0.2"
- postcss-normalize-string "^5.0.2"
- postcss-normalize-timing-functions "^5.0.2"
- postcss-normalize-unicode "^5.0.2"
- postcss-normalize-url "^5.0.4"
- postcss-normalize-whitespace "^5.0.2"
- postcss-ordered-values "^5.0.3"
- postcss-reduce-initial "^5.0.2"
- postcss-reduce-transforms "^5.0.2"
- postcss-svgo "^5.0.3"
- postcss-unique-selectors "^5.0.2"
-
-cssnano-utils@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.0.0.tgz#c0b9fcd6e4f05c5155b07e9ab11bf94b97163057"
- integrity sha512-Pzs7/BZ6OgT+tXXuF12DKR8SmSbzUeVYCtMBbS8lI0uAm3mrYmkyqCXXPsQESI6kmLfEVBppbdVY/el3hg3nAA==
+ cssnano-utils "^3.1.0"
+ postcss-calc "^8.2.3"
+ postcss-colormin "^5.3.0"
+ postcss-convert-values "^5.1.0"
+ postcss-discard-comments "^5.1.0"
+ postcss-discard-duplicates "^5.1.0"
+ postcss-discard-empty "^5.1.0"
+ postcss-discard-overridden "^5.1.0"
+ postcss-merge-longhand "^5.1.0"
+ postcss-merge-rules "^5.1.0"
+ postcss-minify-font-values "^5.1.0"
+ postcss-minify-gradients "^5.1.0"
+ postcss-minify-params "^5.1.0"
+ postcss-minify-selectors "^5.2.0"
+ postcss-normalize-charset "^5.1.0"
+ postcss-normalize-display-values "^5.1.0"
+ postcss-normalize-positions "^5.1.0"
+ postcss-normalize-repeat-style "^5.1.0"
+ postcss-normalize-string "^5.1.0"
+ postcss-normalize-timing-functions "^5.1.0"
+ postcss-normalize-unicode "^5.1.0"
+ postcss-normalize-url "^5.1.0"
+ postcss-normalize-whitespace "^5.1.0"
+ postcss-ordered-values "^5.1.0"
+ postcss-reduce-initial "^5.1.0"
+ postcss-reduce-transforms "^5.1.0"
+ postcss-svgo "^5.1.0"
+ postcss-unique-selectors "^5.1.0"
+
+cssnano-utils@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861"
+ integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==
-cssnano@^5.0.1, cssnano@^5.0.2:
- version "5.0.15"
- resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.15.tgz#8779eaf60e3665e6a12687c814d375cc9f78db76"
- integrity sha512-ppZsS7oPpi2sfiyV5+i+NbB/3GtQ+ab2Vs1azrZaXWujUSN4o+WdTxlCZIMcT9yLW3VO/5yX3vpyDaQ1nIn8CQ==
+cssnano@^5.0.1, cssnano@^5.0.6:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.0.tgz#cf977d660a5824d0d5542639ed1d4045afd84cbe"
+ integrity sha512-wWxave1wMlThGg4ueK98jFKaNqXnQd1nVZpSkQ9XvR+YymlzP1ofWqES1JkHtI250LksP9z5JH+oDcrKDJezAg==
dependencies:
- cssnano-preset-default "^5.1.10"
+ cssnano-preset-default "^5.2.0"
lilconfig "^2.0.3"
yaml "^1.10.2"
@@ -5071,9 +4796,9 @@ cssstyle@^2.3.0:
cssom "~0.3.6"
csstype@^3.0.2:
- version "3.0.10"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.10.tgz#2ad3a7bed70f35b965707c092e5f30b327c290e5"
- integrity sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==
+ version "3.0.11"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.11.tgz#d66700c5eacfac1940deb4e3ee5642792d85cd33"
+ integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==
csv-generate@^3.4.3:
version "3.4.3"
@@ -5100,11 +4825,6 @@ csv@^5.3.1:
csv-stringify "^5.6.5"
stream-transform "^2.1.3"
-cyclist@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
- integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=
-
d3-array@1, d3-array@^1.0.0, d3-array@^1.1.1, d3-array@^1.2.0, d3-array@^1.2.1:
version "1.2.4"
resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f"
@@ -5523,7 +5243,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
dependencies:
ms "2.0.0"
-debug@4, debug@4.3.4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3:
+debug@4, debug@4.3.4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.3:
version "4.3.4"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
@@ -5537,6 +5257,13 @@ debug@^3.1.1, debug@^3.2.7:
dependencies:
ms "^2.1.1"
+debug@^4.3.2:
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
+ integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
+ dependencies:
+ ms "2.1.2"
+
decamelize-keys@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
@@ -5611,7 +5338,7 @@ define-lazy-prop@^2.0.0:
resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f"
integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
-define-properties@^1.1.2, define-properties@^1.1.3:
+define-properties@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
@@ -5650,14 +5377,6 @@ depd@~1.1.2:
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
-des.js@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
- integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
- dependencies:
- inherits "^2.0.1"
- minimalistic-assert "^1.0.0"
-
destroy@~1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
@@ -5701,25 +5420,16 @@ diff-sequences@^26.6.2:
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1"
integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==
-diff-sequences@^27.4.0:
- version "27.4.0"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.4.0.tgz#d783920ad8d06ec718a060d00196dfef25b132a5"
- integrity sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==
+diff-sequences@^27.5.1:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327"
+ integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==
diff@^4.0.1:
version "4.0.2"
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
-diffie-hellman@^5.0.0:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
- integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
- dependencies:
- bn.js "^4.1.0"
- miller-rabin "^4.0.0"
- randombytes "^2.0.0"
-
dir-glob@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
@@ -5754,9 +5464,9 @@ doctrine@^3.0.0:
esutils "^2.0.2"
dom-accessibility-api@^0.5.6, dom-accessibility-api@^0.5.9:
- version "0.5.10"
- resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.10.tgz#caa6d08f60388d0bb4539dd75fe458a9a1d0014c"
- integrity sha512-Xu9mD0UjrJisTmv7lmVSDMagQcU9R5hwAbxsaAE/35XPnPLJobbuREfV/rraiSaEj/UOvgrzQs66zyTWTlyd+g==
+ version "0.5.13"
+ resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.13.tgz#102ee5f25eacce09bdf1cfa5a298f86da473be4b"
+ integrity sha512-R305kwb5CcMDIpSHUnLyIAp7SrSPBx6F0VfQFB3M75xVMHhXJJIdePYgbPPh1o57vCHNu5QztokWUPsLjWzFqw==
dom-converter@^0.2.0:
version "0.2.0"
@@ -5782,11 +5492,6 @@ dom-serializer@^1.0.1:
domhandler "^4.2.0"
entities "^2.0.0"
-domain-browser@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
- integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
-
domelementtype@1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
@@ -5868,16 +5573,6 @@ duplexer@^0.1.2:
resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6"
integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==
-duplexify@^3.4.2, duplexify@^3.6.0:
- version "3.7.1"
- resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
- integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==
- dependencies:
- end-of-stream "^1.0.0"
- inherits "^2.0.1"
- readable-stream "^2.0.0"
- stream-shift "^1.0.0"
-
eastasianwidth@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
@@ -5888,24 +5583,16 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
+electron-to-chromium@^1.4.76:
+ version "1.4.96"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.96.tgz#a97438a01d5db1460343fea4a344960b09330990"
+ integrity sha512-DPNjvNGPabv6FcyjzLAN4C0psN/GgD9rSGvMTuv81SeXG/EX3mCz0wiw9N1tUEnfQXYCJi3H8M0oFPRziZh7rw==
+
electron-to-chromium@^1.4.84:
version "1.4.88"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.88.tgz#ebe6a2573b563680c7a7bf3a51b9e465c9c501db"
integrity sha512-oA7mzccefkvTNi9u7DXmT0LqvhnOiN2BhSrKerta7HeUC1cLoIwtbf2wL+Ah2ozh5KQd3/1njrGrwDBXx6d14Q==
-elliptic@^6.5.3:
- version "6.5.4"
- resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
- integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
- dependencies:
- bn.js "^4.11.9"
- brorand "^1.1.0"
- hash.js "^1.0.0"
- hmac-drbg "^1.0.1"
- inherits "^2.0.4"
- minimalistic-assert "^1.0.1"
- minimalistic-crypto-utils "^1.0.1"
-
emittery@^0.7.1:
version "0.7.2"
resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.2.tgz#25595908e13af0f5674ab419396e2fb394cdfa82"
@@ -5931,21 +5618,20 @@ encodeurl@~1.0.2:
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
-end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1:
+end-of-stream@^1.1.0, end-of-stream@^1.4.1:
version "1.4.4"
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==
dependencies:
once "^1.4.0"
-enhanced-resolve@^4.5.0:
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"
- integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
+enhanced-resolve@^5.8.3:
+ version "5.9.2"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.9.2.tgz#0224dcd6a43389ebfb2d55efee517e5466772dd9"
+ integrity sha512-GIm3fQfwLJ8YZx2smuHpBKkXC1yOk+OBEmKckVyL0i/ea8mqDEykK3ld5dgH1QYPNyT/lIllxV2LULnxCHaHkA==
dependencies:
- graceful-fs "^4.1.2"
- memory-fs "^0.5.0"
- tapable "^1.0.0"
+ graceful-fs "^4.2.4"
+ tapable "^2.2.0"
enquirer@^2.3.0, enquirer@^2.3.5:
version "2.3.6"
@@ -5964,13 +5650,6 @@ entities@^3.0.1:
resolved "https://registry.yarnpkg.com/entities/-/entities-3.0.1.tgz#2b887ca62585e96db3903482d336c1006c3001d4"
integrity sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==
-errno@^0.1.3, errno@~0.1.7:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
- integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
- dependencies:
- prr "~1.0.1"
-
error-ex@^1.3.1:
version "1.3.2"
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
@@ -6004,7 +5683,7 @@ es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.19.1:
string.prototype.trimstart "^1.0.4"
unbox-primitive "^1.0.1"
-es-module-lexer@^0.9.3:
+es-module-lexer@^0.9.0, es-module-lexer@^0.9.3:
version "0.9.3"
resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19"
integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==
@@ -6314,15 +5993,7 @@ eslint-plugin-testing-library@5.3.1:
dependencies:
"@typescript-eslint/utils" "^5.13.0"
-eslint-scope@^4.0.3:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
- integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==
- dependencies:
- esrecurse "^4.1.0"
- estraverse "^4.1.1"
-
-eslint-scope@^5.1.1:
+eslint-scope@5.1.1, eslint-scope@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
@@ -6426,7 +6097,7 @@ esquery@^1.4.0:
dependencies:
estraverse "^5.1.0"
-esrecurse@^4.1.0, esrecurse@^4.3.0:
+esrecurse@^4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
@@ -6473,19 +6144,11 @@ eventemitter3@^4.0.0, eventemitter3@^4.0.4:
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
-events@^3.0.0:
+events@^3.2.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
-evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
- integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
- dependencies:
- md5.js "^1.3.4"
- safe-buffer "^5.1.1"
-
exec-sh@^0.3.2:
version "0.3.6"
resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc"
@@ -6714,11 +6377,11 @@ fbjs-css-vars@^1.0.0:
integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==
fbjs@^3.0.0:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.2.tgz#dfae08a85c66a58372993ce2caf30863f569ff94"
- integrity sha512-qv+boqYndjElAJHNN3NoM8XuwQZ1j2m3kEvTgdle8IDjr6oUbkEpvABWtj/rQl3vq4ew7dnElBxL4YJAwTVqQQ==
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-3.0.4.tgz#e1871c6bd3083bac71ff2da868ad5067d37716c6"
+ integrity sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==
dependencies:
- cross-fetch "^3.0.4"
+ cross-fetch "^3.1.5"
fbjs-css-vars "^1.0.0"
loose-envify "^1.0.0"
object-assign "^4.1.0"
@@ -6733,11 +6396,6 @@ fd-slicer@~1.1.0:
dependencies:
pend "~1.2.0"
-figgy-pudding@^3.5.1:
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
- integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==
-
file-entry-cache@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
@@ -6753,11 +6411,6 @@ file-loader@6.2.0:
loader-utils "^2.0.0"
schema-utils "^3.0.0"
-file-uri-to-path@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
- integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
-
filesize@8.0.3:
version "8.0.3"
resolved "https://registry.yarnpkg.com/filesize/-/filesize-8.0.3.tgz#b53541cc42418ec716b41cd74831793964ff90ac"
@@ -6793,30 +6446,12 @@ finalhandler@~1.1.2:
statuses "~1.5.0"
unpipe "~1.0.0"
-find-cache-dir@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
- integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
- dependencies:
- commondir "^1.0.1"
- make-dir "^2.0.0"
- pkg-dir "^3.0.0"
-
-find-cache-dir@^3.3.1:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b"
- integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==
- dependencies:
- commondir "^1.0.1"
- make-dir "^3.0.2"
- pkg-dir "^4.1.0"
-
find-up@*:
- version "6.2.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.2.0.tgz#f3b81d633fa83bebe64f83a8bab357f86d5914be"
- integrity sha512-yWHzMzXCaFoABSnFTCPKNFlYoq4mSga9QLRRKOCLSJ33hSkzROB14ITbAWW0QDQDyuzsPQ33S1DsOWQb/oW1yA==
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790"
+ integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==
dependencies:
- locate-path "^7.0.0"
+ locate-path "^7.1.0"
path-exists "^5.0.0"
find-up@5.0.0, find-up@^5.0.0:
@@ -6878,40 +6513,38 @@ flatbuffers@^1.10.2:
integrity sha512-c7CZADjRcl6j0PlvFy0ZqXQ67qSEZfrVPynmnL+2zPc+NtMvrF8Y0QceMo7QqnSPc7+uWjUIAbvCQ5WIKlMVdQ==
flatted@^3.1.0:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.4.tgz#28d9969ea90661b5134259f312ab6aa7929ac5e2"
- integrity sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==
-
-flush-write-stream@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"
- integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==
- dependencies:
- inherits "^2.0.3"
- readable-stream "^2.3.6"
+ version "3.2.5"
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
+ integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
follow-redirects@^1.0.0:
- version "1.14.8"
- resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.8.tgz#016996fb9a11a100566398b1c6839337d7bfa8fc"
- integrity sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==
+ version "1.14.9"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7"
+ integrity sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==
for-in@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
-fork-ts-checker-webpack-plugin@4.1.6:
- version "4.1.6"
- resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz#5055c703febcf37fa06405d400c122b905167fc5"
- integrity sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==
+fork-ts-checker-webpack-plugin@6.5.0:
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.0.tgz#0282b335fa495a97e167f69018f566ea7d2a2b5e"
+ integrity sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==
dependencies:
- "@babel/code-frame" "^7.5.5"
- chalk "^2.4.1"
- micromatch "^3.1.10"
+ "@babel/code-frame" "^7.8.3"
+ "@types/json-schema" "^7.0.5"
+ chalk "^4.1.0"
+ chokidar "^3.4.2"
+ cosmiconfig "^6.0.0"
+ deepmerge "^4.2.2"
+ fs-extra "^9.0.0"
+ glob "^7.1.6"
+ memfs "^3.1.2"
minimatch "^3.0.4"
- semver "^5.6.0"
+ schema-utils "2.7.0"
+ semver "^7.3.2"
tapable "^1.0.0"
- worker-rpc "^0.1.0"
form-data@^3.0.0:
version "3.0.1"
@@ -6949,14 +6582,6 @@ fresh@0.5.2:
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
-from2@^2.1.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
- integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
- dependencies:
- inherits "^2.0.1"
- readable-stream "^2.0.0"
-
fs-constants@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
@@ -6971,7 +6596,7 @@ fs-extra@10.1.0:
jsonfile "^6.0.1"
universalify "^2.0.0"
-fs-extra@^7.0.0, fs-extra@^7.0.1:
+fs-extra@^7.0.1:
version "7.0.1"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==
@@ -6989,12 +6614,15 @@ fs-extra@^8.1.0:
jsonfile "^4.0.0"
universalify "^0.1.0"
-fs-minipass@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
- integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
+fs-extra@^9.0.0:
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d"
+ integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==
dependencies:
- minipass "^3.0.0"
+ at-least-node "^1.0.0"
+ graceful-fs "^4.2.0"
+ jsonfile "^6.0.1"
+ universalify "^2.0.0"
fs-monkey@1.0.3:
version "1.0.3"
@@ -7006,29 +6634,11 @@ fs-readdir-recursive@^1.1.0:
resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==
-fs-write-stream-atomic@^1.0.8:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9"
- integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=
- dependencies:
- graceful-fs "^4.1.2"
- iferr "^0.1.5"
- imurmurhash "^0.1.4"
- readable-stream "1 || 2"
-
fs.realpath@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-fsevents@^1.2.7:
- version "1.2.13"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
- integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==
- dependencies:
- bindings "^1.5.0"
- nan "^2.12.1"
-
fsevents@^2.1.2, fsevents@~2.3.2:
version "2.3.2"
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
@@ -7107,14 +6717,6 @@ get-value@^2.0.3, get-value@^2.0.6:
resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
-glob-parent@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
- integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
- dependencies:
- is-glob "^3.1.0"
- path-dirname "^1.0.0"
-
glob-parent@^5.1.2, glob-parent@~5.1.2:
version "5.1.2"
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
@@ -7122,6 +6724,11 @@ glob-parent@^5.1.2, glob-parent@~5.1.2:
dependencies:
is-glob "^4.0.1"
+glob-to-regexp@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
+ integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
+
glob@^7.0.0, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
@@ -7163,9 +6770,9 @@ globals@^11.1.0:
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
globals@^13.6.0, globals@^13.9.0:
- version "13.12.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.0.tgz#4d733760304230a0082ed96e21e5c565f898089e"
- integrity sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==
+ version "13.12.1"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.12.1.tgz#ec206be932e6c77236677127577aa8e50bf1c5cb"
+ integrity sha512-317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw==
dependencies:
type-fest "^0.20.2"
@@ -7210,7 +6817,7 @@ got@^9.6.0:
to-readable-stream "^1.0.0"
url-parse-lax "^3.0.0"
-graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6:
+graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
version "4.2.9"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.9.tgz#041b05df45755e587a24942279b9d113146e1c96"
integrity sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==
@@ -7263,9 +6870,9 @@ has-flag@^4.0.0:
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
has-symbols@^1.0.1, has-symbols@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
- integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
+ integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
has-tostringtag@^1.0.0:
version "1.0.0"
@@ -7317,23 +6924,6 @@ has@^1.0.3:
dependencies:
function-bind "^1.1.1"
-hash-base@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
- integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
- dependencies:
- inherits "^2.0.4"
- readable-stream "^3.6.0"
- safe-buffer "^5.2.0"
-
-hash.js@^1.0.0, hash.js@^1.0.3:
- version "1.1.7"
- resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
- integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
- dependencies:
- inherits "^2.0.3"
- minimalistic-assert "^1.0.1"
-
he@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
@@ -7347,15 +6937,6 @@ header-case@^2.0.4:
capital-case "^1.0.4"
tslib "^2.0.3"
-hmac-drbg@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
- integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
- dependencies:
- hash.js "^1.0.3"
- minimalistic-assert "^1.0.0"
- minimalistic-crypto-utils "^1.0.1"
-
hosted-git-info@^2.1.4:
version "2.8.9"
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
@@ -7388,7 +6969,7 @@ html-escaper@^2.0.0:
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
-html-minifier-terser@6.1.0:
+html-minifier-terser@6.1.0, html-minifier-terser@^6.0.2:
version "6.1.0"
resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab"
integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==
@@ -7401,33 +6982,16 @@ html-minifier-terser@6.1.0:
relateurl "^0.2.7"
terser "^5.10.0"
-html-minifier-terser@^5.0.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054"
- integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==
+html-webpack-plugin@5.5.0:
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz#c3911936f57681c1f9f4d8b68c158cd9dfe52f50"
+ integrity sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==
dependencies:
- camel-case "^4.1.1"
- clean-css "^4.2.3"
- commander "^4.1.1"
- he "^1.2.0"
- param-case "^3.0.3"
- relateurl "^0.2.7"
- terser "^4.6.3"
-
-html-webpack-plugin@4.5.2:
- version "4.5.2"
- resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz#76fc83fa1a0f12dd5f7da0404a54e2699666bc12"
- integrity sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==
- dependencies:
- "@types/html-minifier-terser" "^5.0.0"
- "@types/tapable" "^1.0.5"
- "@types/webpack" "^4.41.8"
- html-minifier-terser "^5.0.1"
- loader-utils "^1.2.3"
- lodash "^4.17.20"
- pretty-error "^2.1.1"
- tapable "^1.1.3"
- util.promisify "1.0.0"
+ "@types/html-minifier-terser" "^6.0.0"
+ html-minifier-terser "^6.0.2"
+ lodash "^4.17.21"
+ pretty-error "^4.0.0"
+ tapable "^2.0.0"
htmlparser2@^6.1.0:
version "6.1.0"
@@ -7471,9 +7035,9 @@ http-errors@~1.6.2:
statuses ">= 1.4.0 < 2"
http-parser-js@>=0.5.1:
- version "0.5.5"
- resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.5.tgz#d7c30d5d3c90d865b4a2e870181f9d6f22ac7ac5"
- integrity sha512-x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA==
+ version "0.5.6"
+ resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.6.tgz#2e02406ab2df8af8a7abfba62e0da01c62b95afd"
+ integrity sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==
http-proxy-agent@^4.0.1:
version "4.0.1"
@@ -7504,11 +7068,6 @@ http-proxy@^1.18.1:
follow-redirects "^1.0.0"
requires-port "^1.0.0"
-https-browserify@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
- integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
-
https-proxy-agent@5.0.0, https-proxy-agent@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2"
@@ -7554,28 +7113,16 @@ icss-replace-symbols@^1.1.0:
resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=
-icss-utils@^4.0.0, icss-utils@^4.1.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467"
- integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==
- dependencies:
- postcss "^7.0.14"
-
-icss-utils@^5.0.0:
+icss-utils@^5.0.0, icss-utils@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae"
integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==
-ieee754@^1.1.13, ieee754@^1.1.4:
+ieee754@^1.1.13:
version "1.2.1"
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
-iferr@^0.1.5:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
- integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
-
ignore-walk@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-5.0.1.tgz#5f199e23e1288f518d90358d461387788a154776"
@@ -7638,11 +7185,6 @@ indent-string@^4.0.0:
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
-infer-owner@^1.0.3, infer-owner@^1.0.4:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
- integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
-
inflight@^1.0.4:
version "1.0.6"
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
@@ -7651,16 +7193,11 @@ inflight@^1.0.4:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3:
+inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3:
version "2.0.4"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
-inherits@2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
- integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
-
inherits@2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
@@ -7733,13 +7270,6 @@ is-bigint@^1.0.1:
dependencies:
has-bigints "^1.0.1"
-is-binary-path@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
- integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
- dependencies:
- binary-extensions "^1.0.0"
-
is-binary-path@~2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
@@ -7842,7 +7372,7 @@ is-extendable@^1.0.1:
dependencies:
is-plain-object "^2.0.4"
-is-extglob@^2.1.0, is-extglob@^2.1.1:
+is-extglob@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
@@ -7862,13 +7392,6 @@ is-generator-fn@^2.0.0:
resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118"
integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==
-is-glob@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
- integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
- dependencies:
- is-extglob "^2.1.0"
-
is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
version "4.0.3"
resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
@@ -7928,7 +7451,7 @@ is-path-inside@^3.0.2:
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
-is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
+is-plain-obj@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
@@ -8023,11 +7546,6 @@ is-windows@^1.0.0, is-windows@^1.0.2:
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
-is-wsl@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
- integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
-
is-wsl@^2.1.1, is-wsl@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
@@ -8040,7 +7558,7 @@ is-yarn-global@^0.3.0:
resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.3.0.tgz#d502d3382590ea3004893746754c89139973e232"
integrity sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==
-isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
+isarray@1.0.0, isarray@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
@@ -8107,9 +7625,9 @@ istanbul-lib-source-maps@^4.0.0:
source-map "^0.6.1"
istanbul-reports@^3.0.2:
- version "3.1.3"
- resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.3.tgz#4bcae3103b94518117930d51283690960b50d3c2"
- integrity sha512-x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg==
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c"
+ integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==
dependencies:
html-escaper "^2.0.0"
istanbul-lib-report "^3.0.0"
@@ -8203,15 +7721,15 @@ jest-diff@^26.0.0, jest-diff@^26.6.2:
jest-get-type "^26.3.0"
pretty-format "^26.6.2"
-jest-diff@^27.0.0:
- version "27.4.6"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.4.6.tgz#93815774d2012a2cbb6cf23f84d48c7a2618f98d"
- integrity sha512-zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w==
+jest-diff@^27.5.1:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def"
+ integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==
dependencies:
chalk "^4.0.0"
- diff-sequences "^27.4.0"
- jest-get-type "^27.4.0"
- pretty-format "^27.4.6"
+ diff-sequences "^27.5.1"
+ jest-get-type "^27.5.1"
+ pretty-format "^27.5.1"
jest-docblock@^26.0.0:
version "26.0.0"
@@ -8261,10 +7779,10 @@ jest-get-type@^26.3.0:
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0"
integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==
-jest-get-type@^27.4.0:
- version "27.4.0"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.4.0.tgz#7503d2663fffa431638337b3998d39c5e928e9b5"
- integrity sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==
+jest-get-type@^27.5.1:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1"
+ integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==
jest-haste-map@^26.6.2:
version "26.6.2"
@@ -8329,6 +7847,16 @@ jest-matcher-utils@^26.6.2:
jest-get-type "^26.3.0"
pretty-format "^26.6.2"
+jest-matcher-utils@^27.0.0:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab"
+ integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==
+ dependencies:
+ chalk "^4.0.0"
+ jest-diff "^27.5.1"
+ jest-get-type "^27.5.1"
+ pretty-format "^27.5.1"
+
jest-message-util@^26.6.2:
version "26.6.2"
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.6.2.tgz#58173744ad6fc0506b5d21150b9be56ef001ca07"
@@ -8344,18 +7872,18 @@ jest-message-util@^26.6.2:
slash "^3.0.0"
stack-utils "^2.0.2"
-jest-message-util@^27.4.6:
- version "27.4.6"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.4.6.tgz#9fdde41a33820ded3127465e1a5896061524da31"
- integrity sha512-0p5szriFU0U74czRSFjH6RyS7UYIAkn/ntwMuOwTGWrQIOh5NzXXrq72LOqIkJKKvFbPq+byZKuBz78fjBERBA==
+jest-message-util@^27.5.1:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.5.1.tgz#bdda72806da10d9ed6425e12afff38cd1458b6cf"
+ integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==
dependencies:
"@babel/code-frame" "^7.12.13"
- "@jest/types" "^27.4.2"
+ "@jest/types" "^27.5.1"
"@types/stack-utils" "^2.0.0"
chalk "^4.0.0"
- graceful-fs "^4.2.4"
+ graceful-fs "^4.2.9"
micromatch "^4.0.4"
- pretty-format "^27.4.6"
+ pretty-format "^27.5.1"
slash "^3.0.0"
stack-utils "^2.0.3"
@@ -8378,9 +7906,9 @@ jest-regex-util@^26.0.0:
integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
jest-regex-util@^27.0.0:
- version "27.4.0"
- resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.4.0.tgz#e4c45b52653128843d07ad94aec34393ea14fbca"
- integrity sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz#4da143f7e9fd1e542d4aa69617b38e4a78365b95"
+ integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==
jest-resolve-dependencies@^26.6.3:
version "26.6.3"
@@ -8521,16 +8049,16 @@ jest-util@^26.1.0, jest-util@^26.6.2:
is-ci "^2.0.0"
micromatch "^4.0.2"
-jest-util@^27.4.2:
- version "27.4.2"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.4.2.tgz#ed95b05b1adfd761e2cda47e0144c6a58e05a621"
- integrity sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==
+jest-util@^27.5.1:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.5.1.tgz#3ba9771e8e31a0b85da48fe0b0891fb86c01c2f9"
+ integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==
dependencies:
- "@jest/types" "^27.4.2"
+ "@jest/types" "^27.5.1"
"@types/node" "*"
chalk "^4.0.0"
ci-info "^3.2.0"
- graceful-fs "^4.2.4"
+ graceful-fs "^4.2.9"
picomatch "^2.2.3"
jest-validate@^26.6.2:
@@ -8572,16 +8100,16 @@ jest-watcher@^26.6.2:
string-length "^4.0.1"
jest-watcher@^27.0.0:
- version "27.4.6"
- resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.4.6.tgz#673679ebeffdd3f94338c24f399b85efc932272d"
- integrity sha512-yKQ20OMBiCDigbD0quhQKLkBO+ObGN79MO4nT7YaCuQ5SM+dkBNWE8cZX0FjU6czwMvWw6StWbe+Wv4jJPJ+fw==
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.5.1.tgz#71bd85fb9bde3a2c2ec4dc353437971c43c642a2"
+ integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==
dependencies:
- "@jest/test-result" "^27.4.6"
- "@jest/types" "^27.4.2"
+ "@jest/test-result" "^27.5.1"
+ "@jest/types" "^27.5.1"
"@types/node" "*"
ansi-escapes "^4.2.1"
chalk "^4.0.0"
- jest-util "^27.4.2"
+ jest-util "^27.5.1"
string-length "^4.0.1"
jest-worker@^25.1.0:
@@ -8592,7 +8120,7 @@ jest-worker@^25.1.0:
merge-stream "^2.0.0"
supports-color "^7.0.0"
-jest-worker@^26.5.0, jest-worker@^26.6.2:
+jest-worker@^26.6.2:
version "26.6.2"
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
@@ -8601,6 +8129,15 @@ jest-worker@^26.5.0, jest-worker@^26.6.2:
merge-stream "^2.0.0"
supports-color "^7.0.0"
+jest-worker@^27.0.2, jest-worker@^27.4.5:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0"
+ integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
+ dependencies:
+ "@types/node" "*"
+ merge-stream "^2.0.0"
+ supports-color "^8.0.0"
+
jest@26.6.3:
version "26.6.3"
resolved "https://registry.yarnpkg.com/jest/-/jest-26.6.3.tgz#40e8fdbe48f00dfa1f0ce8121ca74b88ac9148ef"
@@ -8792,7 +8329,7 @@ kleur@^3.0.3:
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==
-klona@^2.0.4:
+klona@^2.0.4, klona@^2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc"
integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==
@@ -8809,14 +8346,6 @@ language-tags@^1.0.5:
dependencies:
language-subtag-registry "~0.3.2"
-last-call-webpack-plugin@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555"
- integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==
- dependencies:
- lodash "^4.17.5"
- webpack-sources "^1.1.0"
-
latest-version@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-5.1.0.tgz#119dfe908fe38d15dfa43ecd13fa12ec8832face"
@@ -8876,16 +8405,16 @@ lint-staged@12.4.1:
yaml "^1.10.2"
listr2@^4.0.1:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-4.0.2.tgz#04d66f8c8694a14920d7df08ebe01568948fb500"
- integrity sha512-YcgwfCWpvPbj9FLUGqvdFvd3hrFWKpOeuXznRgfWEJ7RNr8b/IKKIKZABHx3aU+4CWN/iSAFFSReziQG6vTeIA==
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/listr2/-/listr2-4.0.4.tgz#d098a1c419284fb26e184b5d5889b235e8912245"
+ integrity sha512-vJOm5KD6uZXjSsrwajr+mNacIjf87gWvlBEltPWLbTkslUscWAzquyK4xfe9Zd4RDgO5nnwFyV06FC+uVR+5mg==
dependencies:
cli-truncate "^2.1.0"
colorette "^2.0.16"
log-update "^4.0.0"
p-map "^4.0.0"
rfdc "^1.3.0"
- rxjs "^7.5.2"
+ rxjs "^7.5.4"
through "^2.3.8"
wrap-ansi "^7.0.0"
@@ -8904,28 +8433,15 @@ load-yaml-file@^0.2.0:
pify "^4.0.1"
strip-bom "^3.0.0"
-loader-runner@^2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
- integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
-
-loader-utils@2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0"
- integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==
- dependencies:
- big.js "^5.2.2"
- emojis-list "^3.0.0"
- json5 "^2.1.2"
+loader-runner@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.2.0.tgz#d7022380d66d14c5fb1d496b89864ebcfd478384"
+ integrity sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==
-loader-utils@^1.1.0, loader-utils@^1.2.3:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
- integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
- dependencies:
- big.js "^5.2.2"
- emojis-list "^3.0.0"
- json5 "^1.0.1"
+loader-utils@3.2.0, loader-utils@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.0.tgz#bcecc51a7898bee7473d4bc6b845b23af8304d4f"
+ integrity sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==
loader-utils@^2.0.0:
version "2.0.2"
@@ -8936,11 +8452,6 @@ loader-utils@^2.0.0:
emojis-list "^3.0.0"
json5 "^2.1.2"
-loader-utils@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.0.tgz#bcecc51a7898bee7473d4bc6b845b23af8304d4f"
- integrity sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==
-
locate-path@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
@@ -8971,10 +8482,10 @@ locate-path@^6.0.0:
dependencies:
p-locate "^5.0.0"
-locate-path@^7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.0.0.tgz#f0a60c8dd7ef0f737699eb9461b9567a92bc97da"
- integrity sha512-+cg2yXqDUKfo4hsFxwa3G1cBJeA+gs1vD8FyV9/odWoUlQe/4syxHQ5DPtKjtfm6gnKbZzjCqzX03kXosvZB1w==
+locate-path@^7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.1.0.tgz#241d62af60739f6097c055efe10329c88b798425"
+ integrity sha512-HNx5uOnYeK4SxEoid5qnhRfprlJeGMzFRKPLCf/15N3/B4AiofNwC/yq7VBKdVk9dx7m+PiYCJOGg55JYTAqoQ==
dependencies:
p-locate "^6.0.0"
@@ -9013,7 +8524,7 @@ lodash.uniq@^4.5.0:
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
-lodash@4.x, "lodash@>=3.5 <5", lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.7.0:
+lodash@4.x, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.7.0:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -9060,13 +8571,6 @@ lru-cache@^4.0.1:
pseudomap "^1.0.2"
yallist "^2.1.2"
-lru-cache@^5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
- integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==
- dependencies:
- yallist "^3.0.2"
-
lru-cache@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
@@ -9080,13 +8584,13 @@ lz-string@^1.4.4:
integrity sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=
magic-string@^0.25.7:
- version "0.25.7"
- resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051"
- integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==
+ version "0.25.9"
+ resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c"
+ integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==
dependencies:
- sourcemap-codec "^1.4.4"
+ sourcemap-codec "^1.4.8"
-make-dir@^2.0.0, make-dir@^2.1.0:
+make-dir@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
@@ -9094,7 +8598,7 @@ make-dir@^2.0.0, make-dir@^2.1.0:
pify "^4.0.1"
semver "^5.6.0"
-make-dir@^3.0.0, make-dir@^3.0.2:
+make-dir@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
@@ -9135,15 +8639,6 @@ map-visit@^1.0.0:
dependencies:
object-visit "^1.0.0"
-md5.js@^1.3.4:
- version "1.3.5"
- resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
- integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
- dependencies:
- hash-base "^3.0.0"
- inherits "^2.0.1"
- safe-buffer "^5.1.2"
-
mdn-data@2.0.14:
version "2.0.14"
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
@@ -9159,29 +8654,13 @@ media-typer@0.3.0:
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
-memfs@^3.4.1:
+memfs@^3.1.2, memfs@^3.4.1:
version "3.4.1"
resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.1.tgz#b78092f466a0dce054d63d39275b24c71d3f1305"
integrity sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==
dependencies:
fs-monkey "1.0.3"
-memory-fs@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
- integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=
- dependencies:
- errno "^0.1.3"
- readable-stream "^2.0.1"
-
-memory-fs@^0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
- integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
- dependencies:
- errno "^0.1.3"
- readable-stream "^2.0.1"
-
meow@^6.0.0:
version "6.1.1"
resolved "https://registry.yarnpkg.com/meow/-/meow-6.1.1.tgz#1ad64c4b76b2a24dfb2f635fddcadf320d251467"
@@ -9219,11 +8698,6 @@ methods@~1.1.2:
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
-microevent.ts@~0.1.1:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0"
- integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==
-
micromatch@4.0.5, micromatch@^4.0.2, micromatch@^4.0.4:
version "4.0.5"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
@@ -9232,7 +8706,7 @@ micromatch@4.0.5, micromatch@^4.0.2, micromatch@^4.0.4:
braces "^3.0.2"
picomatch "^2.3.1"
-micromatch@^3.1.10, micromatch@^3.1.4:
+micromatch@^3.1.4:
version "3.1.10"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
@@ -9251,19 +8725,16 @@ micromatch@^3.1.10, micromatch@^3.1.4:
snapdragon "^0.8.1"
to-regex "^3.0.2"
-miller-rabin@^4.0.0:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
- integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
- dependencies:
- bn.js "^4.0.0"
- brorand "^1.0.1"
-
-mime-db@1.51.0, "mime-db@>= 1.43.0 < 2":
+mime-db@1.51.0:
version "1.51.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.51.0.tgz#d9ff62451859b18342d960850dc3cfb77e63fb0c"
integrity sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==
+"mime-db@>= 1.43.0 < 2":
+ version "1.52.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
+ integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
+
mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34:
version "2.1.34"
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.34.tgz#5a712f9ec1503511a945803640fafe09d3793c24"
@@ -9296,26 +8767,18 @@ min-indent@^1.0.0:
resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
-mini-css-extract-plugin@0.11.3:
- version "0.11.3"
- resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz#15b0910a7f32e62ffde4a7430cfefbd700724ea6"
- integrity sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==
+mini-css-extract-plugin@2.5.3:
+ version "2.5.3"
+ resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.5.3.tgz#c5c79f9b22ce9b4f164e9492267358dbe35376d9"
+ integrity sha512-YseMB8cs8U/KCaAGQoqYmfUuhhGW0a9p9XvWXrxVOkE3/IiISTLw4ALNt7JR5B2eYauFM+PQGSbXMDmVbR7Tfw==
dependencies:
- loader-utils "^1.1.0"
- normalize-url "1.9.1"
- schema-utils "^1.0.0"
- webpack-sources "^1.1.0"
+ schema-utils "^4.0.0"
-minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
+minimalistic-assert@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
-minimalistic-crypto-utils@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
- integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
-
minimatch@3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
@@ -9351,58 +8814,6 @@ minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
-minipass-collect@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
- integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
- dependencies:
- minipass "^3.0.0"
-
-minipass-flush@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
- integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
- dependencies:
- minipass "^3.0.0"
-
-minipass-pipeline@^1.2.2:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
- integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
- dependencies:
- minipass "^3.0.0"
-
-minipass@^3.0.0, minipass@^3.1.1:
- version "3.1.6"
- resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.6.tgz#3b8150aa688a711a1521af5e8779c1d3bb4f45ee"
- integrity sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==
- dependencies:
- yallist "^4.0.0"
-
-minizlib@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
- integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
- dependencies:
- minipass "^3.0.0"
- yallist "^4.0.0"
-
-mississippi@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022"
- integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==
- dependencies:
- concat-stream "^1.5.0"
- duplexify "^3.4.2"
- end-of-stream "^1.1.0"
- flush-write-stream "^1.0.0"
- from2 "^2.1.0"
- parallel-transform "^1.1.0"
- pump "^3.0.0"
- pumpify "^1.3.3"
- stream-each "^1.1.0"
- through2 "^2.0.0"
-
mixin-deep@^1.2.0:
version "1.3.2"
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
@@ -9421,12 +8832,12 @@ mkdirp-classic@^0.5.2:
resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113"
integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==
-mkdirp@1.x, mkdirp@^1.0.3, mkdirp@^1.0.4:
+mkdirp@1.x, mkdirp@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
-mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5, mkdirp@~0.5.1:
+mkdirp@^0.5.5, mkdirp@~0.5.1:
version "0.5.5"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
@@ -9438,18 +8849,6 @@ mobile-drag-drop@^2.3.0-rc.2:
resolved "https://registry.yarnpkg.com/mobile-drag-drop/-/mobile-drag-drop-2.3.0-rc.2.tgz#00d6e85e04512a620fd5357366e8786bd29aa7aa"
integrity sha512-4rHP0PUeWkSp0O3waNHPQZCHeZnLu8bE59MerWOnZJ249BCyICXL1WWp3xqkMKXEDFYuhfk3bS42bKB9IeN9uw==
-move-concurrently@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
- integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=
- dependencies:
- aproba "^1.1.1"
- copy-concurrently "^1.0.0"
- fs-write-stream-atomic "^1.0.8"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
- run-queue "^1.0.3"
-
ms@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
@@ -9473,11 +8872,6 @@ multicast-dns@^7.2.4:
dns-packet "^5.2.2"
thunky "^1.0.2"
-nan@^2.12.1:
- version "2.15.0"
- resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee"
- integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==
-
nanoid@^3.3.1:
version "3.3.1"
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35"
@@ -9510,7 +8904,7 @@ negotiator@0.6.3:
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
-neo-async@^2.5.0, neo-async@^2.6.1, neo-async@^2.6.2:
+neo-async@^2.6.2:
version "2.6.2"
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
@@ -9545,35 +8939,6 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
-node-libs-browser@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
- integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
- dependencies:
- assert "^1.1.1"
- browserify-zlib "^0.2.0"
- buffer "^4.3.0"
- console-browserify "^1.1.0"
- constants-browserify "^1.0.0"
- crypto-browserify "^3.11.0"
- domain-browser "^1.1.1"
- events "^3.0.0"
- https-browserify "^1.0.0"
- os-browserify "^0.3.0"
- path-browserify "0.0.1"
- process "^0.11.10"
- punycode "^1.2.4"
- querystring-es3 "^0.2.0"
- readable-stream "^2.3.3"
- stream-browserify "^2.0.1"
- stream-http "^2.7.2"
- string_decoder "^1.0.0"
- timers-browserify "^2.0.4"
- tty-browserify "0.0.0"
- url "^0.11.0"
- util "^0.11.0"
- vm-browserify "^1.0.1"
-
node-notifier@^8.0.0:
version "8.0.2"
resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz#f3167a38ef0d2c8a866a83e318c1ba0efeb702c5"
@@ -9623,16 +8988,6 @@ normalize-range@^0.1.2:
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
-normalize-url@1.9.1:
- version "1.9.1"
- resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
- integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=
- dependencies:
- object-assign "^4.0.1"
- prepend-http "^1.0.0"
- query-string "^4.1.0"
- sort-keys "^1.0.0"
-
normalize-url@^4.1.0:
version "4.5.1"
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a"
@@ -9703,7 +9058,7 @@ nwsapi@^2.2.0:
resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7"
integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==
-object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
+object-assign@^4.1.0, object-assign@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
@@ -9744,7 +9099,7 @@ object.assign@^4.1.0, object.assign@^4.1.2:
has-symbols "^1.0.1"
object-keys "^1.1.1"
-object.entries@^1.1.0, object.entries@^1.1.5:
+object.entries@^1.1.5:
version "1.1.5"
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
@@ -9762,7 +9117,7 @@ object.fromentries@^2.0.5:
define-properties "^1.1.3"
es-abstract "^1.19.1"
-object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0:
+object.getownpropertydescriptors@^2.1.0:
version "2.1.3"
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz#b223cf38e17fefb97a63c10c91df72ccb386df9e"
integrity sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==
@@ -9852,15 +9207,6 @@ open@^8.0.9:
is-docker "^2.1.1"
is-wsl "^2.2.0"
-optimize-css-assets-webpack-plugin@6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-6.0.1.tgz#7719bceabba1f3891ec3ae04efb81a1cc99cd793"
- integrity sha512-BshV2UZPfggZLdUfN3zFBbG4sl/DynUI+YCB6fRRDWaqO2OiWN8GPcp4Y0/fEV6B3k9Hzyk3czve3V/8B/SzKQ==
- dependencies:
- cssnano "^5.0.2"
- last-call-webpack-plugin "^3.0.0"
- postcss "^8.2.1"
-
optionator@^0.8.1:
version "0.8.3"
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
@@ -9885,11 +9231,6 @@ optionator@^0.9.1:
type-check "^0.4.0"
word-wrap "^1.2.3"
-os-browserify@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
- integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
-
os-tmpdir@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
@@ -10040,21 +9381,7 @@ package-json@^6.3.0:
registry-url "^5.0.0"
semver "^6.2.0"
-pako@~1.0.5:
- version "1.0.11"
- resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
- integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
-
-parallel-transform@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc"
- integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==
- dependencies:
- cyclist "^1.0.1"
- inherits "^2.0.3"
- readable-stream "^2.1.5"
-
-param-case@^3.0.3, param-case@^3.0.4:
+param-case@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
@@ -10069,17 +9396,6 @@ parent-module@^1.0.0:
dependencies:
callsites "^3.0.0"
-parse-asn1@^5.0.0, parse-asn1@^5.1.5:
- version "5.1.6"
- resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
- integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
- dependencies:
- asn1.js "^5.2.0"
- browserify-aes "^1.0.0"
- evp_bytestokey "^1.0.0"
- pbkdf2 "^3.0.3"
- safe-buffer "^5.1.1"
-
parse-json@^5.0.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
@@ -10132,11 +9448,6 @@ patch-package@^6.4.7:
slash "^2.0.0"
tmp "^0.0.33"
-path-browserify@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
- integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
-
path-browserify@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd"
@@ -10150,11 +9461,6 @@ path-case@^3.0.4:
dot-case "^3.0.4"
tslib "^2.0.3"
-path-dirname@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
- integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
-
path-exists@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
@@ -10200,17 +9506,6 @@ path-type@^4.0.0:
resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
-pbkdf2@^3.0.3:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075"
- integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==
- dependencies:
- create-hash "^1.1.2"
- create-hmac "^1.1.4"
- ripemd160 "^2.0.1"
- safe-buffer "^5.0.1"
- sha.js "^2.4.8"
-
pend@~1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
@@ -10247,24 +9542,17 @@ pify@^5.0.0:
integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==
pirates@^4.0.1:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.4.tgz#07df81e61028e402735cdd49db701e4885b4e6e6"
- integrity sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==
+ version "4.0.5"
+ resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b"
+ integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==
-pkg-dir@4.2.0, pkg-dir@^4.1.0, pkg-dir@^4.2.0:
+pkg-dir@4.2.0, pkg-dir@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
dependencies:
find-up "^4.0.0"
-pkg-dir@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
- integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
- dependencies:
- find-up "^3.0.0"
-
pkg-up@3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
@@ -10272,10 +9560,10 @@ pkg-up@3.1.0:
dependencies:
find-up "^3.0.0"
-pnp-webpack-plugin@1.6.4:
- version "1.6.4"
- resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149"
- integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==
+pnp-webpack-plugin@1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz#65741384f6d8056f36e2255a8d67ffc20866f5c9"
+ integrity sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==
dependencies:
ts-pnp "^1.1.6"
@@ -10307,13 +9595,13 @@ postcss-browser-comments@^3.0.0:
dependencies:
postcss "^7"
-postcss-calc@^8.2.0:
- version "8.2.2"
- resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.2.tgz#9706e7399e8ec8b61a47830dcf1f21391af23373"
- integrity sha512-B5R0UeB4zLJvxNt1FVCaDZULdzsKLPc6FhjFJ+xwFiq7VG4i9cuaJLxVjNtExNK8ocm3n2o4unXXLiVX1SCqxA==
+postcss-calc@^8.2.3:
+ version "8.2.4"
+ resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5"
+ integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==
dependencies:
- postcss-selector-parser "^6.0.2"
- postcss-value-parser "^4.0.2"
+ postcss-selector-parser "^6.0.9"
+ postcss-value-parser "^4.2.0"
postcss-clamp@^4.1.0:
version "4.1.0"
@@ -10343,22 +9631,22 @@ postcss-color-rebeccapurple@^7.0.2:
dependencies:
postcss-value-parser "^4.2.0"
-postcss-colormin@^5.2.3:
- version "5.2.3"
- resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.2.3.tgz#da7fb80e81ad80d2867ea9e38672a892add5df15"
- integrity sha512-dra4xoAjub2wha6RUXAgadHEn2lGxbj8drhFcIGLOMn914Eu7DkPUurugDXgstwttCYkJtZ/+PkWRWdp3UHRIA==
+postcss-colormin@^5.3.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.0.tgz#3cee9e5ca62b2c27e84fce63affc0cfb5901956a"
+ integrity sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==
dependencies:
browserslist "^4.16.6"
caniuse-api "^3.0.0"
colord "^2.9.1"
postcss-value-parser "^4.2.0"
-postcss-convert-values@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.0.2.tgz#879b849dc3677c7d6bc94b6a2c1a3f0808798059"
- integrity sha512-KQ04E2yadmfa1LqXm7UIDwW1ftxU/QWZmz6NKnHnUvJ3LEYbbcX6i329f/ig+WnEByHegulocXrECaZGLpL8Zg==
+postcss-convert-values@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.0.tgz#f8d3abe40b4ce4b1470702a0706343eac17e7c10"
+ integrity sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==
dependencies:
- postcss-value-parser "^4.1.0"
+ postcss-value-parser "^4.2.0"
postcss-custom-media@^8.0.0:
version "8.0.0"
@@ -10386,25 +9674,25 @@ postcss-dir-pseudo-class@^6.0.4:
dependencies:
postcss-selector-parser "^6.0.9"
-postcss-discard-comments@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.0.1.tgz#9eae4b747cf760d31f2447c27f0619d5718901fe"
- integrity sha512-lgZBPTDvWrbAYY1v5GYEv8fEO/WhKOu/hmZqmCYfrpD6eyDWWzAOsl2rF29lpvziKO02Gc5GJQtlpkTmakwOWg==
+postcss-discard-comments@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.0.tgz#87be4e0953bf599935837b940c701f8d4eca7d0b"
+ integrity sha512-L0IKF4jAshRyn03SkEO6ar/Ipz2oLywVbg2THf2EqqdNkBwmVMxuTR/RoAltOw4piiaLt3gCAdrbAqmTBInmhg==
-postcss-discard-duplicates@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.0.1.tgz#68f7cc6458fe6bab2e46c9f55ae52869f680e66d"
- integrity sha512-svx747PWHKOGpAXXQkCc4k/DsWo+6bc5LsVrAsw+OU+Ibi7klFZCyX54gjYzX4TH+f2uzXjRviLARxkMurA2bA==
+postcss-discard-duplicates@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848"
+ integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==
-postcss-discard-empty@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.0.1.tgz#ee136c39e27d5d2ed4da0ee5ed02bc8a9f8bf6d8"
- integrity sha512-vfU8CxAQ6YpMxV2SvMcMIyF2LX1ZzWpy0lqHDsOdaKKLQVQGVP1pzhrI9JlsO65s66uQTfkQBKBD/A5gp9STFw==
+postcss-discard-empty@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.0.tgz#7f51b16cd1b89f8180bbc7cee34d6cbabf2ef810"
+ integrity sha512-782T/buGgb3HOuHOJAHpdyKzAAKsv/BxWqsutnZ+QsiHEcDkY7v+6WWdturuBiSal6XMOO1p1aJvwXdqLD5vhA==
-postcss-discard-overridden@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.0.2.tgz#e6f51d83e66feffcf05ed94c4ad20b814d0aab5f"
- integrity sha512-+56BLP6NSSUuWUXjRgAQuho1p5xs/hU5Sw7+xt9S3JSg+7R6+WMGnJW7Hre/6tTuZ2xiXMB42ObkiZJ2hy/Pew==
+postcss-discard-overridden@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e"
+ integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==
postcss-double-position-gradients@^3.1.1:
version "3.1.1"
@@ -10473,23 +9761,21 @@ postcss-lab-function@^4.1.2:
postcss-value-parser "^4.2.0"
postcss-load-config@^3.0.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.1.tgz#2f53a17f2f543d9e63864460af42efdac0d41f87"
- integrity sha512-c/9XYboIbSEUZpiD1UQD0IKiUe8n9WHYV7YFe7X7J+ZwCsEKkUJSFWjS9hBU1RR9THR7jMXst8sxiqP0jjo2mg==
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.3.tgz#21935b2c43b9a86e6581a576ca7ee1bde2bd1d23"
+ integrity sha512-5EYgaM9auHGtO//ljHH+v/aC/TQ5LHXtL7bQajNAUBKUVKiYE8rYpFms7+V26D9FncaGe2zwCoPQsFKb5zF/Hw==
dependencies:
lilconfig "^2.0.4"
yaml "^1.10.2"
-postcss-loader@4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-4.2.0.tgz#f6993ea3e0f46600fb3ee49bbd010448123a7db4"
- integrity sha512-mqgScxHqbiz1yxbnNcPdKYo/6aVt+XExURmEbQlviFVWogDbM4AJ0A/B+ZBpYsJrTRxKw7HyRazg9x0Q9SWwLA==
+postcss-loader@6.2.1:
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-6.2.1.tgz#0895f7346b1702103d30fdc66e4d494a93c008ef"
+ integrity sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==
dependencies:
cosmiconfig "^7.0.0"
- klona "^2.0.4"
- loader-utils "^2.0.0"
- schema-utils "^3.0.0"
- semver "^7.3.4"
+ klona "^2.0.5"
+ semver "^7.3.5"
postcss-logical@^5.0.4:
version "5.0.4"
@@ -10501,80 +9787,61 @@ postcss-media-minmax@^5.0.0:
resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz#7140bddec173e2d6d657edbd8554a55794e2a5b5"
integrity sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==
-postcss-merge-longhand@^5.0.4:
- version "5.0.4"
- resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.0.4.tgz#41f4f3270282ea1a145ece078b7679f0cef21c32"
- integrity sha512-2lZrOVD+d81aoYkZDpWu6+3dTAAGkCKbV5DoRhnIR7KOULVrI/R7bcMjhrH9KTRy6iiHKqmtG+n/MMj1WmqHFw==
+postcss-merge-longhand@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.0.tgz#f716bffbf0bdfbde6ea78c36088e21559f8a0a95"
+ integrity sha512-Gr46srN2tsLD8fudKYoHO56RG0BLQ2nsBRnSZGY04eNBPwTeWa9KeHrbL3tOLAHyB2aliikycPH2TMJG1U+W6g==
dependencies:
- postcss-value-parser "^4.1.0"
- stylehacks "^5.0.1"
+ postcss-value-parser "^4.2.0"
+ stylehacks "^5.1.0"
-postcss-merge-rules@^5.0.4:
- version "5.0.4"
- resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.0.4.tgz#a50640fd832380f322bd2861a9b33fbde4219f9b"
- integrity sha512-yOj7bW3NxlQxaERBB0lEY1sH5y+RzevjbdH4DBJurjKERNpknRByFNdNe+V72i5pIZL12woM9uGdS5xbSB+kDQ==
+postcss-merge-rules@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.0.tgz#a2d5117eba09c8686a5471d97bd9afcf30d1b41f"
+ integrity sha512-NecukEJovQ0mG7h7xV8wbYAkXGTO3MPKnXvuiXzOKcxoOodfTTKYjeo8TMhAswlSkjcPIBlnKbSFcTuVSDaPyQ==
dependencies:
browserslist "^4.16.6"
caniuse-api "^3.0.0"
- cssnano-utils "^3.0.0"
+ cssnano-utils "^3.1.0"
postcss-selector-parser "^6.0.5"
-postcss-minify-font-values@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.0.2.tgz#4603e956d85cd0719156e2b3eb68e3cd2f917092"
- integrity sha512-R6MJZryq28Cw0AmnyhXrM7naqJZZLoa1paBltIzh2wM7yb4D45TLur+eubTQ4jCmZU9SGeZdWsc5KcSoqTMeTg==
+postcss-minify-font-values@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b"
+ integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-minify-gradients@^5.0.4:
- version "5.0.4"
- resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.0.4.tgz#f13146950513f5a201015306914e3c76d10b591d"
- integrity sha512-RVwZA7NC4R4J76u8X0Q0j+J7ItKUWAeBUJ8oEEZWmtv3Xoh19uNJaJwzNpsydQjk6PkuhRrK+YwwMf+c+68EYg==
+postcss-minify-gradients@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.0.tgz#de0260a67a13b7b321a8adc3150725f2c6612377"
+ integrity sha512-J/TMLklkONn3LuL8wCwfwU8zKC1hpS6VcxFkNUNjmVt53uKqrrykR3ov11mdUYyqVMEx67slMce0tE14cE4DTg==
dependencies:
colord "^2.9.1"
- cssnano-utils "^3.0.0"
+ cssnano-utils "^3.1.0"
postcss-value-parser "^4.2.0"
-postcss-minify-params@^5.0.3:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.0.3.tgz#9f933d37098ef1dcf007e159a47bb2c1cf06989d"
- integrity sha512-NY92FUikE+wralaiVexFd5gwb7oJTIDhgTNeIw89i1Ymsgt4RWiPXfz3bg7hDy4NL6gepcThJwOYNtZO/eNi7Q==
+postcss-minify-params@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.0.tgz#e0b1f4e05cfd396682f612856485907e4064f25e"
+ integrity sha512-q67dcts4Hct6x8+JmhBgctHkbvUsqGIg2IItenjE63iZXMbhjr7AlVZkNnKtIGt/1Wsv7p/7YzeSII6Q+KPXRg==
dependencies:
- alphanum-sort "^1.0.2"
browserslist "^4.16.6"
- cssnano-utils "^3.0.0"
+ cssnano-utils "^3.1.0"
postcss-value-parser "^4.2.0"
-postcss-minify-selectors@^5.1.1:
- version "5.1.1"
- resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.1.1.tgz#20ae03b411f7fb397451e3d7d85b989f944b871c"
- integrity sha512-TOzqOPXt91O2luJInaVPiivh90a2SIK5Nf1Ea7yEIM/5w+XA5BGrZGUSW8aEx9pJ/oNj7ZJBhjvigSiBV+bC1Q==
+postcss-minify-selectors@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.0.tgz#17c2be233e12b28ffa8a421a02fc8b839825536c"
+ integrity sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==
dependencies:
- alphanum-sort "^1.0.2"
postcss-selector-parser "^6.0.5"
-postcss-modules-extract-imports@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e"
- integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==
- dependencies:
- postcss "^7.0.5"
-
postcss-modules-extract-imports@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d"
integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==
-postcss-modules-local-by-default@^3.0.3:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0"
- integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==
- dependencies:
- icss-utils "^4.1.1"
- postcss "^7.0.32"
- postcss-selector-parser "^6.0.2"
- postcss-value-parser "^4.1.0"
-
postcss-modules-local-by-default@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c"
@@ -10584,14 +9851,6 @@ postcss-modules-local-by-default@^4.0.0:
postcss-selector-parser "^6.0.2"
postcss-value-parser "^4.1.0"
-postcss-modules-scope@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee"
- integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==
- dependencies:
- postcss "^7.0.6"
- postcss-selector-parser "^6.0.0"
-
postcss-modules-scope@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06"
@@ -10599,14 +9858,6 @@ postcss-modules-scope@^3.0.0:
dependencies:
postcss-selector-parser "^6.0.4"
-postcss-modules-values@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10"
- integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==
- dependencies:
- icss-utils "^4.0.0"
- postcss "^7.0.6"
-
postcss-modules-values@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"
@@ -10615,9 +9866,9 @@ postcss-modules-values@^4.0.0:
icss-utils "^5.0.0"
postcss-modules@^4.0.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-4.3.0.tgz#1cb32f16a8cfffe2b989598f8135eb6427106ec7"
- integrity sha512-zoUttLDSsbWDinJM9jH37o7hulLRyEgH6fZm2PchxN7AZ8rkdWiALyNhnQ7+jg7cX9f10m6y5VhHsrjO0Mf/DA==
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-4.3.1.tgz#517c06c09eab07d133ae0effca2c510abba18048"
+ integrity sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==
dependencies:
generic-names "^4.0.0"
icss-replace-symbols "^1.1.0"
@@ -10635,66 +9886,66 @@ postcss-nesting@^10.1.3:
dependencies:
postcss-selector-parser "^6.0.9"
-postcss-normalize-charset@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.0.1.tgz#121559d1bebc55ac8d24af37f67bd4da9efd91d0"
- integrity sha512-6J40l6LNYnBdPSk+BHZ8SF+HAkS4q2twe5jnocgd+xWpz/mx/5Sa32m3W1AA8uE8XaXN+eg8trIlfu8V9x61eg==
+postcss-normalize-charset@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed"
+ integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==
-postcss-normalize-display-values@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.2.tgz#8b5273c6c7d0a445e6ef226b8a5bb3204a55fb99"
- integrity sha512-RxXoJPUR0shSjkMMzgEZDjGPrgXUVYyWA/YwQRicb48H15OClPuaDR7tYokLAlGZ2tCSENEN5WxjgxSD5m4cUw==
+postcss-normalize-display-values@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8"
+ integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-positions@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.0.2.tgz#799fa494b352a5da183be8f050024af6d92fa29c"
- integrity sha512-tqghWFVDp2btqFg1gYob1etPNxXLNh3uVeWgZE2AQGh6b2F8AK2Gj36v5Vhyh+APwIzNjmt6jwZ9pTBP+/OM8g==
+postcss-normalize-positions@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.0.tgz#902a7cb97cf0b9e8b1b654d4a43d451e48966458"
+ integrity sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-repeat-style@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.0.2.tgz#fd9bddba3e6fd5f5d95c18dfb42a09ecd563adea"
- integrity sha512-/rIZn8X9bBzC7KvY4iKUhXUGW3MmbXwfPF23jC9wT9xTi7kAvgj8sEgwxjixBmoL6MVa4WOgxNz2hAR6wTK8tw==
+postcss-normalize-repeat-style@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.0.tgz#f6d6fd5a54f51a741cc84a37f7459e60ef7a6398"
+ integrity sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-string@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.0.2.tgz#1b2bbf91526f61266f28abf7f773e4136b2c4bd2"
- integrity sha512-zaI1yzwL+a/FkIzUWMQoH25YwCYxi917J4pYm1nRXtdgiCdnlTkx5eRzqWEC64HtRa06WCJ9TIutpb6GmW4gFw==
+postcss-normalize-string@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228"
+ integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-timing-functions@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.0.2.tgz#db4f4f49721f47667afd1fdc5edb032f8d9cdb2e"
- integrity sha512-Ao0PP6MoYsRU1LxeVUW740ioknvdIUmfr6uAA3xWlQJ9s69/Tupy8qwhuKG3xWfl+KvLMAP9p2WXF9cwuk/7Bg==
+postcss-normalize-timing-functions@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb"
+ integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==
dependencies:
postcss-value-parser "^4.2.0"
-postcss-normalize-unicode@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.0.2.tgz#c4db89a0116066716b9e9fcb6444ce63178f5ced"
- integrity sha512-3y/V+vjZ19HNcTizeqwrbZSUsE69ZMRHfiiyLAJb7C7hJtYmM4Gsbajy7gKagu97E8q5rlS9k8FhojA8cpGhWw==
+postcss-normalize-unicode@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz#3d23aede35e160089a285e27bf715de11dc9db75"
+ integrity sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==
dependencies:
browserslist "^4.16.6"
postcss-value-parser "^4.2.0"
-postcss-normalize-url@^5.0.4:
- version "5.0.4"
- resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.0.4.tgz#3b0322c425e31dd275174d0d5db0e466f50810fb"
- integrity sha512-cNj3RzK2pgQQyNp7dzq0dqpUpQ/wYtdDZM3DepPmFjCmYIfceuD9VIAcOdvrNetjIU65g1B4uwdP/Krf6AFdXg==
+postcss-normalize-url@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc"
+ integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==
dependencies:
normalize-url "^6.0.1"
postcss-value-parser "^4.2.0"
-postcss-normalize-whitespace@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.0.2.tgz#92c5eaffe5255b5c43fca0baf19227e607c534db"
- integrity sha512-CXBx+9fVlzSgbk0IXA/dcZn9lXixnQRndnsPC5ht3HxlQ1bVh77KQDL1GffJx1LTzzfae8ftMulsjYmO2yegxA==
+postcss-normalize-whitespace@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.0.tgz#aed8b4580c9ad6e8eac034177291187ea16a059c"
+ integrity sha512-7O1FanKaJkpWFyCghFzIkLhehujV/frGkdofGLwhg5upbLyGsSfiTcZAdSzoPsSUgyPCkBkNMeWR8yVgPdQybg==
dependencies:
postcss-value-parser "^4.2.0"
@@ -10714,12 +9965,12 @@ postcss-opacity-percentage@^1.1.2:
resolved "https://registry.yarnpkg.com/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz#bd698bb3670a0a27f6d657cc16744b3ebf3b1145"
integrity sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==
-postcss-ordered-values@^5.0.3:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.0.3.tgz#d80a8565f2e21efe8a06abacd60629a783bbcf54"
- integrity sha512-T9pDS+P9bWeFvqivXd5ACzQmrCmHjv3ZP+djn8E1UZY7iK79pFSm7i3WbKw2VSmFmdbMm8sQ12OPcNpzBo3Z2w==
+postcss-ordered-values@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.0.tgz#04ef429e0991b0292bc918b135cd4c038f7b889f"
+ integrity sha512-wU4Z4D4uOIH+BUKkYid36gGDJNQtkVJT7Twv8qH6UyfttbbJWyw4/xIPuVEkkCtQLAJ0EdsNSh8dlvqkXb49TA==
dependencies:
- cssnano-utils "^3.0.0"
+ cssnano-utils "^3.1.0"
postcss-value-parser "^4.2.0"
postcss-overflow-shorthand@^3.0.3:
@@ -10795,18 +10046,18 @@ postcss-pseudo-class-any-link@^7.1.1:
dependencies:
postcss-selector-parser "^6.0.9"
-postcss-reduce-initial@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.0.2.tgz#fa424ce8aa88a89bc0b6d0f94871b24abe94c048"
- integrity sha512-v/kbAAQ+S1V5v9TJvbGkV98V2ERPdU6XvMcKMjqAlYiJ2NtsHGlKYLPjWWcXlaTKNxooId7BGxeraK8qXvzKtw==
+postcss-reduce-initial@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz#fc31659ea6e85c492fb2a7b545370c215822c5d6"
+ integrity sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==
dependencies:
browserslist "^4.16.6"
caniuse-api "^3.0.0"
-postcss-reduce-transforms@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.0.2.tgz#9242758629f9ad4d90312eadbc921259d15bee4d"
- integrity sha512-25HeDeFsgiPSUx69jJXZn8I06tMxLQJJNF5h7i9gsUg8iP4KOOJ8EX8fj3seeoLt3SLU2YDD6UPnDYVGUO7DEA==
+postcss-reduce-transforms@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9"
+ integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==
dependencies:
postcss-value-parser "^4.2.0"
@@ -10829,7 +10080,7 @@ postcss-selector-not@^5.0.0:
dependencies:
balanced-match "^1.0.0"
-postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5:
+postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5:
version "6.0.8"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz#f023ed7a9ea736cd7ef70342996e8e78645a7914"
integrity sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==
@@ -10845,28 +10096,27 @@ postcss-selector-parser@^6.0.9:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
-postcss-svgo@^5.0.3:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.0.3.tgz#d945185756e5dfaae07f9edb0d3cae7ff79f9b30"
- integrity sha512-41XZUA1wNDAZrQ3XgWREL/M2zSw8LJPvb5ZWivljBsUQAGoEKMYm6okHsTjJxKYI4M75RQEH4KYlEM52VwdXVA==
+postcss-svgo@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d"
+ integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==
dependencies:
- postcss-value-parser "^4.1.0"
+ postcss-value-parser "^4.2.0"
svgo "^2.7.0"
-postcss-unique-selectors@^5.0.2:
- version "5.0.2"
- resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.0.2.tgz#5d6893daf534ae52626708e0d62250890108c0c1"
- integrity sha512-w3zBVlrtZm7loQWRPVC0yjUwwpty7OM6DnEHkxcSQXO1bMS3RJ+JUS5LFMSDZHJcvGsRwhZinCWVqn8Kej4EDA==
+postcss-unique-selectors@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.0.tgz#70a945da1b0599d00f617222a44ba1d82a676694"
+ integrity sha512-LmUhgGobtpeVJJHuogzjLRwJlN7VH+BL5c9GKMVJSS/ejoyePZkXvNsYUtk//F6vKOGK86gfRS0xH7fXQSDtvA==
dependencies:
- alphanum-sort "^1.0.2"
postcss-selector-parser "^6.0.5"
-postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
+postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
-postcss@8.4.12, postcss@^8.1.0, postcss@^8.2.1, postcss@^8.2.14:
+postcss@8.4.12, postcss@^8.1.0, postcss@^8.2.14:
version "8.4.12"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.12.tgz#1e7de78733b28970fa4743f7da6f3763648b1905"
integrity sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==
@@ -10875,7 +10125,7 @@ postcss@8.4.12, postcss@^8.1.0, postcss@^8.2.1, postcss@^8.2.14:
picocolors "^1.0.0"
source-map-js "^1.0.2"
-postcss@^7, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.26, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6:
+postcss@^7, postcss@^7.0.17, postcss@^7.0.26:
version "7.0.39"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309"
integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==
@@ -10883,6 +10133,15 @@ postcss@^7, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.26, postcss@^7.0.32,
picocolors "^0.2.1"
source-map "^0.6.1"
+postcss@^8.3.5, postcss@^8.4.5:
+ version "8.4.8"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.8.tgz#dad963a76e82c081a0657d3a2f3602ce10c2e032"
+ integrity sha512-2tXEqGxrjvAO6U+CJzDL2Fk2kPHTv1jQsYkSoMeOis2SsYaXRO2COxTdQp99cYvif9JTXaAk9lYGc3VhJt7JPQ==
+ dependencies:
+ nanoid "^3.3.1"
+ picocolors "^1.0.0"
+ source-map-js "^1.0.2"
+
pptr-testing-library@0.7.0:
version "0.7.0"
resolved "https://registry.yarnpkg.com/pptr-testing-library/-/pptr-testing-library-0.7.0.tgz#5676a4394df3958cc2ee5722a3c4fa72520369a8"
@@ -10911,11 +10170,6 @@ prelude-ls@~1.1.2:
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
-prepend-http@^1.0.0:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
- integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
-
prepend-http@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
@@ -10931,13 +10185,13 @@ prettier@^1.19.1:
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==
-pretty-error@^2.1.1:
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6"
- integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==
+pretty-error@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6"
+ integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==
dependencies:
lodash "^4.17.20"
- renderkid "^2.0.4"
+ renderkid "^3.0.0"
pretty-format@^26.0.0, pretty-format@^26.6.2:
version "26.6.2"
@@ -10949,10 +10203,10 @@ pretty-format@^26.0.0, pretty-format@^26.6.2:
ansi-styles "^4.0.0"
react-is "^17.0.1"
-pretty-format@^27.0.0, pretty-format@^27.0.2, pretty-format@^27.4.6:
- version "27.4.6"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.4.6.tgz#1b784d2f53c68db31797b2348fa39b49e31846b7"
- integrity sha512-NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g==
+pretty-format@^27.0.0, pretty-format@^27.0.2, pretty-format@^27.5.1:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e"
+ integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==
dependencies:
ansi-regex "^5.0.1"
ansi-styles "^5.0.0"
@@ -10963,21 +10217,11 @@ process-nextick-args@~2.0.0:
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-process@^0.11.10:
- version "0.11.10"
- resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
- integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
-
progress@2.0.3, progress@^2.0.0:
version "2.0.3"
resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"
integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==
-promise-inflight@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
- integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM=
-
promise.series@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/promise.series/-/promise.series-0.2.0.tgz#2cc7ebe959fc3a6619c04ab4dbdc9e452d864bbd"
@@ -11020,11 +10264,6 @@ proxy-from-env@1.1.0:
resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
-prr@~1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
- integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY=
-
pseudomap@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
@@ -11035,26 +10274,6 @@ psl@^1.1.33:
resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==
-public-encrypt@^4.0.0:
- version "4.0.3"
- resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
- integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
- dependencies:
- bn.js "^4.1.0"
- browserify-rsa "^4.0.0"
- create-hash "^1.1.0"
- parse-asn1 "^5.0.0"
- randombytes "^2.0.1"
- safe-buffer "^5.1.2"
-
-pump@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
- integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
pump@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
@@ -11063,25 +10282,6 @@ pump@^3.0.0:
end-of-stream "^1.1.0"
once "^1.3.1"
-pumpify@^1.3.3:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce"
- integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==
- dependencies:
- duplexify "^3.6.0"
- inherits "^2.0.3"
- pump "^2.0.0"
-
-punycode@1.3.2:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
- integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
-
-punycode@^1.2.4:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
- integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
-
punycode@^2.1.0, punycode@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
@@ -11122,24 +10322,6 @@ qs@6.9.7:
resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.7.tgz#4610846871485e1e048f44ae3b94033f0e675afe"
integrity sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==
-query-string@^4.1.0:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
- integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s=
- dependencies:
- object-assign "^4.1.0"
- strict-uri-encode "^1.0.0"
-
-querystring-es3@^0.2.0:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
- integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
-
-querystring@0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
- integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
-
queue-microtask@^1.2.2:
version "1.2.3"
resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
@@ -11150,21 +10332,13 @@ quick-lru@^4.0.1:
resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f"
integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
-randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0:
+randombytes@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
dependencies:
safe-buffer "^5.1.0"
-randomfill@^1.0.3:
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
- integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
- dependencies:
- randombytes "^2.0.5"
- safe-buffer "^5.1.0"
-
range-parser@^1.2.1, range-parser@~1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
@@ -11269,7 +10443,7 @@ read-yaml-file@^1.1.0:
pify "^4.0.1"
strip-bom "^3.0.0"
-"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6:
+readable-stream@^2.0.1:
version "2.3.7"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
@@ -11282,7 +10456,7 @@ read-yaml-file@^1.1.0:
string_decoder "~1.1.1"
util-deprecate "~1.0.1"
-readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0:
+readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
@@ -11291,15 +10465,6 @@ readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0, readable
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
-readdirp@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
- integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==
- dependencies:
- graceful-fs "^4.1.11"
- micromatch "^3.1.10"
- readable-stream "^2.0.2"
-
readdirp@~3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
@@ -11322,10 +10487,10 @@ redent@^3.0.0:
indent-string "^4.0.0"
strip-indent "^3.0.0"
-regenerate-unicode-properties@^9.0.0:
- version "9.0.0"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz#54d09c7115e1f53dc2314a974b32c1c344efe326"
- integrity sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==
+regenerate-unicode-properties@^10.0.1:
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz#7f442732aa7934a3740c779bb9b3340dccc1fb56"
+ integrity sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==
dependencies:
regenerate "^1.4.2"
@@ -11382,15 +10547,15 @@ regexpp@^3.1.0:
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
-regexpu-core@^4.7.1:
- version "4.8.0"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0"
- integrity sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==
+regexpu-core@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.0.1.tgz#c531122a7840de743dcf9c83e923b5560323ced3"
+ integrity sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==
dependencies:
regenerate "^1.4.2"
- regenerate-unicode-properties "^9.0.0"
- regjsgen "^0.5.2"
- regjsparser "^0.7.0"
+ regenerate-unicode-properties "^10.0.1"
+ regjsgen "^0.6.0"
+ regjsparser "^0.8.2"
unicode-match-property-ecmascript "^2.0.0"
unicode-match-property-value-ecmascript "^2.0.0"
@@ -11408,15 +10573,15 @@ registry-url@^5.0.0:
dependencies:
rc "^1.2.8"
-regjsgen@^0.5.2:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
- integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
+regjsgen@^0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.6.0.tgz#83414c5354afd7d6627b16af5f10f41c4e71808d"
+ integrity sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==
-regjsparser@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.7.0.tgz#a6b667b54c885e18b52554cb4960ef71187e9968"
- integrity sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==
+regjsparser@^0.8.2:
+ version "0.8.4"
+ resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.8.4.tgz#8a14285ffcc5de78c5b95d62bbf413b6bc132d5f"
+ integrity sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==
dependencies:
jsesc "~0.5.0"
@@ -11435,16 +10600,16 @@ remove-trailing-separator@^1.0.1:
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
-renderkid@^2.0.4:
- version "2.0.7"
- resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.7.tgz#464f276a6bdcee606f4a15993f9b29fc74ca8609"
- integrity sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==
+renderkid@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a"
+ integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==
dependencies:
css-select "^4.1.3"
dom-converter "^0.2.0"
htmlparser2 "^6.1.0"
lodash "^4.17.21"
- strip-ansi "^3.0.1"
+ strip-ansi "^6.0.1"
repeat-element@^1.1.2:
version "1.1.4"
@@ -11498,10 +10663,10 @@ resolve-from@^5.0.0:
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
-resolve-url-loader@5.0.0-beta.1:
- version "5.0.0-beta.1"
- resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-5.0.0-beta.1.tgz#98f52693e21d45962d7e8b60811874b8d87192ec"
- integrity sha512-MXkuP7+etG/4H96tZnbUOX9g2KiJaEpJ7cnjmVZUYkIXWKh2soTZF/ghczKVw/qKZZplDDjZwR5xGztD9ex7KQ==
+resolve-url-loader@5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz#ee3142fb1f1e0d9db9524d539cfa166e9314f795"
+ integrity sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==
dependencies:
adjust-sourcemap-loader "^4.0.0"
convert-source-map "^1.7.0"
@@ -11582,21 +10747,13 @@ rimraf@3.0.2, rimraf@^3.0.0, rimraf@^3.0.2:
dependencies:
glob "^7.1.3"
-rimraf@^2.5.4, rimraf@^2.6.3:
+rimraf@^2.6.3:
version "2.7.1"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
dependencies:
glob "^7.1.3"
-ripemd160@^2.0.0, ripemd160@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
- integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
- dependencies:
- hash-base "^3.0.0"
- inherits "^2.0.1"
-
rollup-plugin-esbuild@^4.9.1:
version "4.9.1"
resolved "https://registry.yarnpkg.com/rollup-plugin-esbuild/-/rollup-plugin-esbuild-4.9.1.tgz#369d137e2b1542c8ee459495fd4f10de812666aa"
@@ -11653,19 +10810,12 @@ run-parallel@^1.1.9:
dependencies:
queue-microtask "^1.2.2"
-run-queue@^1.0.0, run-queue@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
- integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=
- dependencies:
- aproba "^1.1.1"
-
rw@1:
version "1.3.3"
resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=
-rxjs@^7.5.2:
+rxjs@^7.5.4:
version "7.5.4"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.4.tgz#3d6bd407e6b7ce9a123e76b1e770dc5761aa368d"
integrity sha512-h5M3Hk78r6wAheJF0a5YahB1yRQKCsZ4MsGdZ5O9ETbVtjPcScGfrMmoOq7EBsCRzd4BDkvDJ7ogP8Sz5tTFiQ==
@@ -11677,7 +10827,7 @@ safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
+safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@~5.2.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
@@ -11694,7 +10844,7 @@ safe-regex@^1.1.0:
dependencies:
ret "~0.1.10"
-"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.1.0:
+"safer-buffer@>= 2.1.2 < 3":
version "2.1.2"
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
@@ -11719,16 +10869,13 @@ sanitize.css@^10.0.0:
resolved "https://registry.yarnpkg.com/sanitize.css/-/sanitize.css-10.0.0.tgz#b5cb2547e96d8629a60947544665243b1dc3657a"
integrity sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==
-sass-loader@10.0.5:
- version "10.0.5"
- resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.0.5.tgz#f53505b5ddbedf43797470ceb34066ded82bb769"
- integrity sha512-2LqoNPtKkZq/XbXNQ4C64GFEleSEHKv6NPSI+bMC/l+jpEXGJhiRYkAQToO24MR7NU4JRY2RpLpJ/gjo2Uf13w==
+sass-loader@12.6.0:
+ version "12.6.0"
+ resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-12.6.0.tgz#5148362c8e2cdd4b950f3c63ac5d16dbfed37bcb"
+ integrity sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==
dependencies:
klona "^2.0.4"
- loader-utils "^2.0.0"
neo-async "^2.6.2"
- schema-utils "^3.0.0"
- semver "^7.3.2"
sax@~1.2.4:
version "1.2.4"
@@ -11750,25 +10897,16 @@ scheduler@^0.20.2:
loose-envify "^1.1.0"
object-assign "^4.1.1"
-schema-utils@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770"
- integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==
- dependencies:
- ajv "^6.1.0"
- ajv-errors "^1.0.0"
- ajv-keywords "^3.1.0"
-
-schema-utils@^2.7.0, schema-utils@^2.7.1:
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"
- integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==
+schema-utils@2.7.0:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.0.tgz#17151f76d8eae67fbbf77960c33c676ad9f4efc7"
+ integrity sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==
dependencies:
- "@types/json-schema" "^7.0.5"
- ajv "^6.12.4"
- ajv-keywords "^3.5.2"
+ "@types/json-schema" "^7.0.4"
+ ajv "^6.12.2"
+ ajv-keywords "^3.4.1"
-schema-utils@^3.0.0:
+schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"
integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
@@ -11866,17 +11004,10 @@ sentence-case@^3.0.4:
tslib "^2.0.3"
upper-case-first "^2.0.2"
-serialize-javascript@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
- integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
- dependencies:
- randombytes "^2.1.0"
-
-serialize-javascript@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4"
- integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
+serialize-javascript@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8"
+ integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
dependencies:
randombytes "^2.1.0"
@@ -11918,7 +11049,7 @@ set-value@^2.0.0, set-value@^2.0.1:
is-plain-object "^2.0.3"
split-string "^3.0.1"
-setimmediate@^1.0.4, setimmediate@^1.0.5:
+setimmediate@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
@@ -11933,14 +11064,6 @@ setprototypeof@1.2.0:
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
-sha.js@^2.4.0, sha.js@^2.4.8:
- version "2.4.11"
- resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
- integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
- dependencies:
- inherits "^2.0.1"
- safe-buffer "^5.0.1"
-
shebang-command@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
@@ -11985,9 +11108,9 @@ side-channel@^1.0.4:
object-inspect "^1.9.0"
signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3:
- version "3.0.6"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.6.tgz#24e630c4b0f03fea446a2bd299e62b4a6ca8d0af"
- integrity sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
+ integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
sisteransi@^1.0.5:
version "1.0.5"
@@ -12088,14 +11211,7 @@ sockjs@^0.3.21:
uuid "^8.3.2"
websocket-driver "^0.7.4"
-sort-keys@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
- integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
- dependencies:
- is-plain-obj "^1.0.0"
-
-source-list-map@^2.0.0, source-list-map@^2.0.1:
+source-list-map@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==
@@ -12124,7 +11240,7 @@ source-map-resolve@^0.6.0:
atob "^2.1.2"
decode-uri-component "^0.2.0"
-source-map-support@0.5.21, source-map-support@^0.5.6, source-map-support@~0.5.12, source-map-support@~0.5.20:
+source-map-support@0.5.21, source-map-support@^0.5.6, source-map-support@~0.5.20:
version "0.5.21"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
@@ -12152,7 +11268,7 @@ source-map@^0.7.3, source-map@~0.7.2:
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
-sourcemap-codec@^1.4.4:
+sourcemap-codec@^1.4.8:
version "1.4.8"
resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
@@ -12226,20 +11342,6 @@ sprintf-js@~1.0.2:
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
-ssri@^6.0.1:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5"
- integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==
- dependencies:
- figgy-pudding "^3.5.1"
-
-ssri@^8.0.1:
- version "8.0.1"
- resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
- integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
- dependencies:
- minipass "^3.1.1"
-
stable@^0.1.8:
version "0.1.8"
resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
@@ -12265,38 +11367,6 @@ static-extend@^0.1.1:
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
-stream-browserify@^2.0.1:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
- integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
- dependencies:
- inherits "~2.0.1"
- readable-stream "^2.0.2"
-
-stream-each@^1.1.0:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae"
- integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==
- dependencies:
- end-of-stream "^1.1.0"
- stream-shift "^1.0.0"
-
-stream-http@^2.7.2:
- version "2.8.3"
- resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
- integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
- dependencies:
- builtin-status-codes "^3.0.0"
- inherits "^2.0.1"
- readable-stream "^2.3.6"
- to-arraybuffer "^1.0.0"
- xtend "^4.0.0"
-
-stream-shift@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
- integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
-
stream-transform@^2.1.3:
version "2.1.3"
resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-2.1.3.tgz#a1c3ecd72ddbf500aa8d342b0b9df38f5aa598e3"
@@ -12304,11 +11374,6 @@ stream-transform@^2.1.3:
dependencies:
mixme "^0.5.1"
-strict-uri-encode@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
- integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
-
string-argv@^0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da"
@@ -12342,9 +11407,9 @@ string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2
strip-ansi "^6.0.1"
string-width@^5.0.0:
- version "5.1.0"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.0.tgz#5ab00980cfb29f43e736b113a120a73a0fb569d3"
- integrity sha512-7x54QnN21P+XL/v8SuNKvfgsUre6PXpN7mc77N3HlZv+f1SBRGmjxtOud2Z6FZ8DmdkD/IdjCaf9XXbnqmTZGQ==
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
+ integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
dependencies:
eastasianwidth "^0.2.0"
emoji-regex "^9.2.2"
@@ -12392,7 +11457,7 @@ string.prototype.trimstart@^1.0.4:
call-bind "^1.0.2"
define-properties "^1.1.3"
-string_decoder@^1.0.0, string_decoder@^1.1.1:
+string_decoder@^1.1.1:
version "1.3.0"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
@@ -12413,13 +11478,6 @@ strip-ansi@6.0.0:
dependencies:
ansi-regex "^5.0.0"
-strip-ansi@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
- integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
- dependencies:
- ansi-regex "^2.0.0"
-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
@@ -12476,20 +11534,17 @@ style-inject@^0.3.0:
resolved "https://registry.yarnpkg.com/style-inject/-/style-inject-0.3.0.tgz#d21c477affec91811cc82355832a700d22bf8dd3"
integrity sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw==
-style-loader@1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e"
- integrity sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==
- dependencies:
- loader-utils "^2.0.0"
- schema-utils "^2.7.0"
+style-loader@3.3.1:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.1.tgz#057dfa6b3d4d7c7064462830f9113ed417d38575"
+ integrity sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==
-stylehacks@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.0.1.tgz#323ec554198520986806388c7fdaebc38d2c06fb"
- integrity sha512-Es0rVnHIqbWzveU1b24kbw92HsebBepxfcqe5iix7t9j0PQqhs0IxXVXv0pY2Bxa08CgMkzD6OWql7kbGOuEdA==
+stylehacks@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.0.tgz#a40066490ca0caca04e96c6b02153ddc39913520"
+ integrity sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==
dependencies:
- browserslist "^4.16.0"
+ browserslist "^4.16.6"
postcss-selector-parser "^6.0.4"
superstore-arrow@1.0.0:
@@ -12511,6 +11566,13 @@ supports-color@^7.0.0, supports-color@^7.1.0:
dependencies:
has-flag "^4.0.0"
+supports-color@^8.0.0:
+ version "8.1.1"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
+ integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
+ dependencies:
+ has-flag "^4.0.0"
+
supports-color@^9.2.1:
version "9.2.1"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.2.1.tgz#599dc9d45acf74c6176e0d880bab1d7d718fe891"
@@ -12582,12 +11644,12 @@ table@^6.0.9:
string-width "^4.2.3"
strip-ansi "^6.0.1"
-tapable@^1.0.0, tapable@^1.1.3:
+tapable@^1.0.0:
version "1.1.3"
resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
-tapable@^2.2.0:
+tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0:
version "2.2.1"
resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
@@ -12613,18 +11675,6 @@ tar-stream@^2.1.4:
inherits "^2.0.3"
readable-stream "^3.1.1"
-tar@^6.0.2:
- version "6.1.11"
- resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621"
- integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==
- dependencies:
- chownr "^2.0.0"
- fs-minipass "^2.0.0"
- minipass "^3.0.0"
- minizlib "^2.1.1"
- mkdirp "^1.0.3"
- yallist "^4.0.0"
-
term-size@^2.1.0:
version "2.2.1"
resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54"
@@ -12638,44 +11688,16 @@ terminal-link@^2.0.0:
ansi-escapes "^4.2.1"
supports-hyperlinks "^2.0.0"
-terser-webpack-plugin@4.2.3:
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz#28daef4a83bd17c1db0297070adc07fc8cfc6a9a"
- integrity sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==
+terser-webpack-plugin@5.3.1, terser-webpack-plugin@^5.1.3:
+ version "5.3.1"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.1.tgz#0320dcc270ad5372c1e8993fabbd927929773e54"
+ integrity sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==
dependencies:
- cacache "^15.0.5"
- find-cache-dir "^3.3.1"
- jest-worker "^26.5.0"
- p-limit "^3.0.2"
- schema-utils "^3.0.0"
- serialize-javascript "^5.0.1"
- source-map "^0.6.1"
- terser "^5.3.4"
- webpack-sources "^1.4.3"
-
-terser-webpack-plugin@^1.4.3:
- version "1.4.5"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b"
- integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==
- dependencies:
- cacache "^12.0.2"
- find-cache-dir "^2.1.0"
- is-wsl "^1.1.0"
- schema-utils "^1.0.0"
- serialize-javascript "^4.0.0"
+ jest-worker "^27.4.5"
+ schema-utils "^3.1.1"
+ serialize-javascript "^6.0.0"
source-map "^0.6.1"
- terser "^4.1.2"
- webpack-sources "^1.4.0"
- worker-farm "^1.7.0"
-
-terser@^4.1.2, terser@^4.6.3:
- version "4.8.0"
- resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17"
- integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==
- dependencies:
- commander "^2.20.0"
- source-map "~0.6.1"
- source-map-support "~0.5.12"
+ terser "^5.7.2"
terser@^5.10.0:
version "5.12.1"
@@ -12687,11 +11709,12 @@ terser@^5.10.0:
source-map "~0.7.2"
source-map-support "~0.5.20"
-terser@^5.3.4:
- version "5.10.0"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.10.0.tgz#b86390809c0389105eb0a0b62397563096ddafcc"
- integrity sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==
+terser@^5.7.2:
+ version "5.12.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.12.0.tgz#728c6bff05f7d1dcb687d8eace0644802a9dae8a"
+ integrity sha512-R3AUhNBGWiFc77HXag+1fXpAxTAFRQTJemlJKjAgD9r8xXTpjNKqIXwHM/o7Rh+O0kUJtS3WQVdBeMKFk5sw9A==
dependencies:
+ acorn "^8.5.0"
commander "^2.20.0"
source-map "~0.7.2"
source-map-support "~0.5.20"
@@ -12720,14 +11743,6 @@ throat@^5.0.0:
resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
-through2@^2.0.0:
- version "2.0.5"
- resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
- integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
- dependencies:
- readable-stream "~2.3.6"
- xtend "~4.0.1"
-
through@^2.3.8:
version "2.3.8"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
@@ -12738,13 +11753,6 @@ thunky@^1.0.2:
resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
-timers-browserify@^2.0.4:
- version "2.0.12"
- resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
- integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
- dependencies:
- setimmediate "^1.0.4"
-
timsort@^0.3.0:
version "0.3.0"
resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
@@ -12769,11 +11777,6 @@ tmpl@1.0.5:
resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
-to-arraybuffer@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
- integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
-
to-fast-properties@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
@@ -12922,11 +11925,6 @@ tsutils@^3.21.0:
dependencies:
tslib "^1.8.1"
-tty-browserify@0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
- integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
-
tty-table@^2.8.10:
version "2.8.13"
resolved "https://registry.yarnpkg.com/tty-table/-/tty-table-2.8.13.tgz#d484a416381973eaebbdf19c79136b390e5c6d70"
@@ -12998,11 +11996,6 @@ typedarray-to-buffer@^3.1.5:
dependencies:
is-typedarray "^1.0.0"
-typedarray@^0.0.6:
- version "0.0.6"
- resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
- integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
-
typescript@4.6.3:
version "4.6.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.3.tgz#eefeafa6afdd31d725584c67a0eaba80f6fc6c6c"
@@ -13064,20 +12057,6 @@ union-value@^1.0.0:
is-extendable "^0.1.1"
set-value "^2.0.1"
-unique-filename@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
- integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
- dependencies:
- unique-slug "^2.0.0"
-
-unique-slug@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
- integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
- dependencies:
- imurmurhash "^0.1.4"
-
unique-string@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d"
@@ -13113,11 +12092,6 @@ unset-value@^1.0.0:
has-value "^0.3.1"
isobject "^3.0.0"
-upath@^1.1.1:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
- integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==
-
update-notifier@5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9"
@@ -13180,14 +12154,6 @@ url-parse-lax@^3.0.0:
dependencies:
prepend-http "^2.0.0"
-url@^0.11.0:
- version "0.11.0"
- resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
- integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
- dependencies:
- punycode "1.3.2"
- querystring "0.2.0"
-
use@^3.1.0:
version "3.1.1"
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
@@ -13198,14 +12164,6 @@ util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
-util.promisify@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030"
- integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==
- dependencies:
- define-properties "^1.1.2"
- object.getownpropertydescriptors "^2.0.3"
-
util.promisify@~1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
@@ -13216,20 +12174,6 @@ util.promisify@~1.0.0:
has-symbols "^1.0.1"
object.getownpropertydescriptors "^2.1.0"
-util@0.10.3:
- version "0.10.3"
- resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
- integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
- dependencies:
- inherits "2.0.1"
-
-util@^0.11.0:
- version "0.11.1"
- resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
- integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
- dependencies:
- inherits "2.0.3"
-
utila@~0.4:
version "0.4.0"
resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c"
@@ -13277,11 +12221,6 @@ vary@~1.1.2:
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
-vm-browserify@^1.0.1:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
- integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
-
w3c-hr-time@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
@@ -13308,23 +12247,13 @@ walker@^1.0.7, walker@~1.0.5:
dependencies:
makeerror "1.0.12"
-watchpack-chokidar2@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957"
- integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==
- dependencies:
- chokidar "^2.1.8"
-
-watchpack@^1.7.4:
- version "1.7.5"
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453"
- integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==
+watchpack@^2.3.1:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.3.1.tgz#4200d9447b401156eeca7767ee610f8809bc9d25"
+ integrity sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==
dependencies:
+ glob-to-regexp "^0.4.1"
graceful-fs "^4.1.2"
- neo-async "^2.5.0"
- optionalDependencies:
- chokidar "^3.4.1"
- watchpack-chokidar2 "^2.0.1"
wbuf@^1.1.0, wbuf@^1.7.3:
version "1.7.3"
@@ -13401,23 +12330,13 @@ webpack-dev-server@4.8.1:
webpack-dev-middleware "^5.3.1"
ws "^8.4.2"
-webpack-manifest-plugin@2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz#19ca69b435b0baec7e29fbe90fb4015de2de4f16"
- integrity sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==
- dependencies:
- fs-extra "^7.0.0"
- lodash ">=3.5 <5"
- object.entries "^1.1.0"
- tapable "^1.0.0"
-
-webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933"
- integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==
+webpack-manifest-plugin@4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz#10f8dbf4714ff93a215d5a45bcc416d80506f94f"
+ integrity sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==
dependencies:
- source-list-map "^2.0.0"
- source-map "~0.6.1"
+ tapable "^2.0.0"
+ webpack-sources "^2.2.0"
webpack-sources@^2.2.0:
version "2.3.1"
@@ -13427,34 +12346,40 @@ webpack-sources@^2.2.0:
source-list-map "^2.0.1"
source-map "^0.6.1"
-webpack@4.46.0:
- version "4.46.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542"
- integrity sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==
- dependencies:
- "@webassemblyjs/ast" "1.9.0"
- "@webassemblyjs/helper-module-context" "1.9.0"
- "@webassemblyjs/wasm-edit" "1.9.0"
- "@webassemblyjs/wasm-parser" "1.9.0"
- acorn "^6.4.1"
- ajv "^6.10.2"
- ajv-keywords "^3.4.1"
+webpack-sources@^3.2.3:
+ version "3.2.3"
+ resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde"
+ integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
+
+webpack@5.69.1:
+ version "5.69.1"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.69.1.tgz#8cfd92c192c6a52c99ab00529b5a0d33aa848dc5"
+ integrity sha512-+VyvOSJXZMT2V5vLzOnDuMz5GxEqLk7hKWQ56YxPW/PQRUuKimPqmEIJOx8jHYeyo65pKbapbW464mvsKbaj4A==
+ 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.4.1"
+ acorn-import-assertions "^1.7.6"
+ browserslist "^4.14.5"
chrome-trace-event "^1.0.2"
- enhanced-resolve "^4.5.0"
- eslint-scope "^4.0.3"
+ enhanced-resolve "^5.8.3"
+ es-module-lexer "^0.9.0"
+ eslint-scope "5.1.1"
+ events "^3.2.0"
+ glob-to-regexp "^0.4.1"
+ graceful-fs "^4.2.9"
json-parse-better-errors "^1.0.2"
- loader-runner "^2.4.0"
- loader-utils "^1.2.3"
- memory-fs "^0.4.1"
- micromatch "^3.1.10"
- mkdirp "^0.5.3"
- neo-async "^2.6.1"
- node-libs-browser "^2.2.1"
- schema-utils "^1.0.0"
- tapable "^1.1.3"
- terser-webpack-plugin "^1.4.3"
- watchpack "^1.7.4"
- webpack-sources "^1.4.1"
+ loader-runner "^4.2.0"
+ mime-types "^2.1.27"
+ neo-async "^2.6.2"
+ schema-utils "^3.1.0"
+ tapable "^2.1.1"
+ terser-webpack-plugin "^5.1.3"
+ watchpack "^2.3.1"
+ webpack-sources "^3.2.3"
websocket-driver@>=0.5.1, websocket-driver@^0.7.4:
version "0.7.4"
@@ -13549,20 +12474,6 @@ word-wrap@^1.2.3, word-wrap@~1.2.3:
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
-worker-farm@^1.7.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
- integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
- dependencies:
- errno "~0.1.7"
-
-worker-rpc@^0.1.0:
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5"
- integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==
- dependencies:
- microevent.ts "~0.1.1"
-
wrap-ansi@^6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
@@ -13609,9 +12520,9 @@ ws@^6.1.2:
async-limiter "~1.0.0"
ws@^7.4.6:
- version "7.5.6"
- resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.6.tgz#e59fc509fb15ddfb65487ee9765c5a51dec5fe7b"
- integrity sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==
+ version "7.5.7"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.7.tgz#9e0ac77ee50af70d58326ecff7e85eb3fa375e67"
+ integrity sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==
xdg-basedir@^4.0.0:
version "4.0.0"
@@ -13628,11 +12539,6 @@ xmlchars@^2.2.0:
resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
-xtend@^4.0.0, xtend@~4.0.1:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
- integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
-
y18n@^4.0.0:
version "4.0.3"
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf"
@@ -13643,11 +12549,6 @@ yallist@^2.1.2:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
-yallist@^3.0.2:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd"
- integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==
-
yallist@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"