diff --git a/.changeset/silver-dolphins-remember.md b/.changeset/silver-dolphins-remember.md new file mode 100644 index 000000000..1a0c7f65b --- /dev/null +++ b/.changeset/silver-dolphins-remember.md @@ -0,0 +1,5 @@ +--- +"modular-scripts": major +--- + +Upgrade to Webpack 5 diff --git a/packages/modular-scripts/package.json b/packages/modular-scripts/package.json index fd6df0f24..773590d12 100644 --- a/packages/modular-scripts/package.json +++ b/packages/modular-scripts/package.json @@ -41,7 +41,8 @@ "change-case": "4.1.2", "commander": "9.1.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.0.1", "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", "is-ci": "2.0.0", "is-root": "2.1.0", "jest": "26.6.3", @@ -72,19 +73,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.4", "mime": "^3.0.0", - "mini-css-extract-plugin": "0.11.3", + "mini-css-extract-plugin": "2.5.3", "npm-packlist": "4.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", @@ -94,27 +94,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.1", "rollup-plugin-esbuild": "^4.7.2", "rollup-plugin-postcss": "4.0.2", - "sass-loader": "10.0.5", + "sass-loader": "12.6.0", "semver": "7.3.5", "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.70.0", "webpack-dev-server": "4.7.4", - "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 ff26a93f3..fac4cae2f 100644 --- a/packages/modular-scripts/react-scripts/config/webpack.config.js +++ b/packages/modular-scripts/react-scripts/config/webpack.config.js @@ -11,9 +11,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'); @@ -24,22 +23,25 @@ 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'); -const esbuildTargetFactory = process.env.ESBUILD_TARGET_FACTORY - ? JSON.parse(process.env.ESBUILD_TARGET_FACTORY) - : 'es2015'; +const isApp = process.env.MODULAR_IS_APP === 'true'; +const isView = !isApp; -const appPackageJson = require(paths.appPackageJson); +const esbuildTargetFactory = isApp + ? process.env.ESBUILD_TARGET_FACTORY + ? JSON.parse(process.env.ESBUILD_TARGET_FACTORY) + : 'es2015' + : 'es2020'; + +const { externalDependencies } = process.env.MODULAR_PACKAGE_DEPS + ? JSON.parse(process.env.MODULAR_PACKAGE_DEPS) + : {}; // 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', ); @@ -66,6 +68,17 @@ const sassModuleRegex = /\.module\.(scss|sass)$/; module.exports = function (webpackEnv) { const isEnvDevelopment = webpackEnv === 'development'; const isEnvProduction = webpackEnv === 'production'; + const isViewDevelopment = isView & isEnvDevelopment; + + // This is needed if we're serving a view in development node, since it won't be defined in the view dependencies. + if (externalDependencies.react && isViewDevelopment) { + externalDependencies['react-dom'] = externalDependencies.react; + } + + // Create an import map of external dependencies if we're building a view + const importMap = isView + ? createExternalDependenciesMap(externalDependencies) + : {}; // Variable used for enabling profiling in Production // passed into alias object. Uses a flag if passed into the build command @@ -141,6 +154,35 @@ module.exports = function (webpackEnv) { }; const webpackConfig = { + externals: isApp + ? undefined + : function ({ request }, callback) { + const parsedModule = parsePackageName(request); + + // If the module is absolute and it is in the import map, we want to externalise it + if ( + parsedModule && + parsedModule.dependencyName && + importMap[parsedModule.dependencyName] + ) { + const { dependencyName, submodule } = parsedModule; + + const toRewrite = `${importMap[dependencyName]}${ + submodule ? `/${submodule}` : '' + }`; + + return callback(null, toRewrite); + } + // Otherwise we just want to bundle it + return callback(); + }, + + externalsType: isApp ? undefined : 'module', + experiments: { + outputModule: isApp ? undefined : true, + }, + // Workaround for this bug: https://stackoverflow.com/questions/53905253/cant-set-up-the-hmr-stuck-with-waiting-for-update-signal-from-wds-in-cons + target: 'web', mode: isEnvProduction ? 'production' : isEnvDevelopment && 'development', // Stop compilation early in production bail: isEnvProduction, @@ -151,31 +193,15 @@ 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, + // We bundle a virtual file to trampoline the view as an entry point if we're starting it (views have no ReactDOM.render) + entry: isViewDevelopment ? getVirtualTrampoline() : paths.appIndexJs, output: { + module: isApp ? undefined : true, + library: isApp + ? undefined + : { + type: 'module', + }, // The build folder. path: isEnvProduction ? paths.appBuild : undefined, // Add /* filename */ comments to generated require()s in the output. @@ -184,10 +210,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', @@ -204,12 +229,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, @@ -253,41 +272,25 @@ 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, - }, + splitChunks: isApp + ? { + chunks: 'all', + } + : undefined, // Keep the runtime chunk separated to enable long term caching // https://twitter.com/wSokra/status/969679223278505985 // https://github.com/facebook/create-react-app/issues/5358 - runtimeChunk: { - name: (entrypoint) => `runtime-${entrypoint.name}`, - }, + runtimeChunk: isApp + ? { + name: (entrypoint) => `runtime-${entrypoint.name}`, + } + : undefined, }, resolve: { // This allows you to set a fallback for where webpack should look for modules. @@ -305,7 +308,7 @@ module.exports = function (webpackEnv) { // for React Native Web. extensions: paths.moduleFileExtensions .map((ext) => `.${ext}`) - .filter((ext) => useTypeScript || !ext.includes('ts')), + .filter((ext) => useTypeScript || !isApp || !ext.includes('ts')), alias: { // Support React Native Web // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/ @@ -317,6 +320,19 @@ 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: { + module: false, + dgram: false, + dns: false, + fs: false, + http2: false, + net: false, + tls: false, + child_process: false, + }, plugins: [ // Adds support for installing with Plug'n'Play, leading to faster installs and adding // guards against forgotten dependencies and such. @@ -342,8 +358,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 @@ -496,7 +510,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]', }, @@ -509,35 +523,56 @@ module.exports = function (webpackEnv) { }, plugins: [ // Generates an `index.html` file with the - - - - + 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]; + }; + })(), + (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); + }, + a = (self.webpackChunk_scoped_sample_app = + self.webpackChunk_scoped_sample_app || []); + a.forEach(e.bind(null, 0)), (a.push = e.bind(null, a.push.bind(a))); + })(); +})(); +//# sourceMappingURL=runtime-main.b18f5039.js.map " `; -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 vendor chunk in the js directory 1`] = ` +"/*! For license information please see 788.bbd34b33.js.LICENSE.txt */ +\\"use strict\\"; +(self.webpackChunk_scoped_sample_app = + self.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 +307,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,537 +340,175 @@ 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\\"); - }), - (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; - } - 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); + 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); } - 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); + 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); } - 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; - } - 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 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); - }), - (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); + 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 g = {}; - \\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\\" + \\"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) { - 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); - } - ), - [ - \\"autoReverse\\", - \\"externalResourcesRequired\\", - \\"focusable\\", - \\"preserveAlpha\\", - ].forEach(function (e) { - g[e] = new v(e, 2, !1, e, null, !1, !1); + var t = e.replace(y, b); + g[t] = new v(t, 1, !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\\" + \\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\\" .split(\\" \\") .forEach(function (e) { - g[e] = new v(e, 3, !1, e.toLowerCase(), null, !1, !1); + var t = e.replace(y, b); + g[t] = new v(t, 1, !1, e, \\"http://www.w3.org/1999/xlink\\", !1, !1); }), - [\\"checked\\", \\"multiple\\", \\"muted\\", \\"selected\\"].forEach(function (e) { - g[e] = new v(e, 3, !0, e, null, !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 + ); }), - [\\"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 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); + [\\"tabIndex\\", \\"crossOrigin\\"].forEach(function (e) { + g[e] = new v(e, 1, !1, e.toLowerCase(), null, !1, !1); }), (g.xlinkHref = new v( \\"xlinkHref\\", @@ -928,42 +526,42 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` S = 60103, E = 60106, x = 60107, - _ = 60108, - C = 60114, + C = 60108, + _ = 60114, P = 60109, N = 60110, - T = 60112, - z = 60113, + z = 60112, + T = 60113, L = 60120, 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\\")), + (z = j(\\"react.forward_ref\\")), + (T = 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 @@ -972,20 +570,20 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.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 { @@ -1045,20 +643,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,11 +680,11 @@ 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: + case T: return \\"Suspense\\"; case L: return \\"SuspenseList\\"; @@ -1097,7 +695,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` return (e.displayName || \\"Context\\") + \\".Consumer\\"; case P: return (e._context.displayName || \\"Context\\") + \\".Provider\\"; - case T: + case z: var t = e.render; return ( (t = t.displayName || t.name || \\"\\"), @@ -1187,7 +785,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 +798,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 +861,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 +1099,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 +1115,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), @@ -1526,8 +1124,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` } var Pe = null, Ne = null, - Te = null; - function ze(e) { + ze = null; + function Te(e) { if ((e = rl(e))) { if (\\"function\\" !== typeof Pe) throw Error(o(280)); var t = e.stateNode; @@ -1535,14 +1133,14 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` } } function Le(e) { - Ne ? (Te ? Te.push(e) : (Te = [e])) : (Ne = e); + Ne ? (ze ? ze.push(e) : (ze = [e])) : (Ne = e); } function Oe() { if (Ne) { var e = Ne, - t = Te; - if (((Te = Ne = null), ze(e), t)) - for (e = 0; e < t.length; e++) ze(t[e]); + t = ze; + if (((ze = Ne = null), Te(e), t)) + for (e = 0; e < t.length; e++) Te(t[e]); } } function Me(e, t) { @@ -1551,14 +1149,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 === ze) || (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 +1204,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 +1212,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 +1247,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 +1271,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 +1416,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 +1434,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,26 +1496,26 @@ 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, delete xt.animationstart.animation), \\"TransitionEvent\\" in window || delete xt.transitionend.transition); var Nt = Pt(\\"animationend\\"), - Tt = Pt(\\"animationiteration\\"), - zt = Pt(\\"animationstart\\"), + zt = Pt(\\"animationiteration\\"), + Tt = Pt(\\"animationstart\\"), Lt = Pt(\\"transitionend\\"), Ot = new Map(), Mt = new Map(), @@ -1926,9 +1524,9 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` \\"abort\\", Nt, \\"animationEnd\\", - Tt, - \\"animationIteration\\", zt, + \\"animationIteration\\", + Tt, \\"animationStart\\", \\"canplay\\", \\"canPlay\\", @@ -1973,7 +1571,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 +1583,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 +1626,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 +1681,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 +1699,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 +1751,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 +1772,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 +1935,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 +1973,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,12 +1983,12 @@ 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; } - var Tn = l({}, hn, { + var zn = l({}, hn, { key: function (e) { if (e.key) { var t = xn[e.key] || e.key; @@ -2401,7 +1999,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, @@ -2427,7 +2025,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` : 0; }, }), - zn = un(Tn), + Tn = un(zn), Ln = un( l({}, vn, { pointerId: 0, @@ -2477,16 +2075,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 +2098,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,19 +2127,19 @@ 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 })); } var Yn = null, Xn = null; function Gn(e) { - Tr(e, 0); + zr(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 +2160,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 +2180,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 +2254,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 +2289,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 +2303,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,26 +2369,26 @@ 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); } - function Tr(e, t) { + function zr(e, t) { t = 0 !== (4 & t); for (var n = 0; n < e.length; n++) { var r = e[n], @@ -2822,7 +2420,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` } if (Qe) throw ((e = qe), (Qe = !1), (qe = null), e); } - function zr(e, t) { + function Tr(e, t) { var n = ol(t), r = e + \\"__bubble\\"; n.has(r) || (Rr(t, e, 2, !1), n.add(r)); @@ -2860,7 +2458,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 +2473,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 +2510,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); @@ -2928,7 +2526,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` if (0 === ln(n)) break e; case \\"keydown\\": case \\"keyup\\": - i = zn; + i = Tn; break; case \\"focusin\\": (s = \\"focus\\"), (i = bn); @@ -2969,8 +2567,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` i = On; break; case Nt: - case Tt: case zt: + case Tt: i = wn; break; case Lt: @@ -2980,7 +2578,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 +2606,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 +2677,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 +2687,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 +2733,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 +2750,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 +2780,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,29 +2797,29 @@ 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)); } - Tr(o, t); + zr(o, t); }); } 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 +2831,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 +2841,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 +2860,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 +2902,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 +2926,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 +2936,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,31 +3020,31 @@ 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, - zl = a.unstable_now, + zl = a.unstable_requestPaint, + Tl = a.unstable_now, Ll = a.unstable_getCurrentPriorityLevel, 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 = {}, - Ul = void 0 !== Tl ? Tl : function () {}, - Al = null, + Il = {}, + Ul = void 0 !== zl ? zl : function () {}, jl = null, + Al = null, Vl = !1, - Bl = zl(), - Wl = + Bl = Tl(), + $l = 1e4 > Bl - ? zl + ? Tl : function () { - return zl() - Bl; + return Tl() - Bl; }; - function $l() { + function Wl() { switch (Ll()) { case Ol: return 99; @@ -3454,7 +3052,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 +3069,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 +3077,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 +3103,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 +3120,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 +3142,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 +3156,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 +3499,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,18 +3814,18 @@ 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), + Ta = sl(Na), La = sl(Na); function Oa(e) { if (e === Na) throw Error(o(174)); return e; } function Ma(e, t) { - switch ((fl(La, t), fl(za, e), fl(Ta, Na), (e = t.nodeType))) { + switch ((fl(La, t), fl(Ta, e), fl(za, Na), (e = t.nodeType))) { case 9: case 11: t = (t = t.documentElement) ? t.namespaceURI : he(null, \\"\\"); @@ -4238,21 +3836,21 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` (e = e.tagName) ); } - cl(Ta), fl(Ta, t); + cl(za), fl(za, t); } function Ra() { - cl(Ta), cl(za), cl(La); + cl(za), cl(Ta), cl(La); } - function Ia(e) { + function Fa(e) { Oa(La.current); - var t = Oa(Ta.current), + var t = Oa(za.current), n = he(t, e.type); - t !== n && (fl(za, e), fl(Ta, n)); + t !== n && (fl(Ta, e), fl(za, n)); } function Da(e) { - za.current === e && (cl(Ta), cl(za)); + Ta.current === e && (cl(za), cl(Ta)); } - var Fa = sl(0); + var Ia = sl(0); function Ua(e) { for (var t = e; null !== t; ) { if (13 === t.tag) { @@ -4279,11 +3877,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 +3891,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 +3913,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 +3936,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 +3956,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 +3964,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 +3980,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 +3997,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 +4012,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 +4036,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 +4055,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 +4083,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 +4103,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 +4131,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 +4146,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 +4170,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 +4186,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 +4219,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 +4242,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 +4267,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 +4279,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 +4290,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 +4305,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() {} @@ -4722,7 +4320,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` ? r[0] : ((n.memoizedState = [e, t]), e); } - function To(e, t) { + function zo(e, t) { var n = io(); t = void 0 === t ? null : t; var r = n.memoizedState; @@ -4730,8 +4328,8 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` ? r[0] : ((e = e()), (n.memoizedState = [e, t]), e); } - function zo(e, t) { - var n = $l(); + function To(e, t) { + var n = Wl(); Ql(98 > n ? 98 : n, function () { e(!0); }), @@ -4760,7 +4358,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 +4403,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 +4430,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] ); }, @@ -4862,7 +4460,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` useTransition: function () { var e = vo(!1), t = e[0]; - return yo((e = zo.bind(null, e[1]))), [e, t]; + return yo((e = To.bind(null, e[1]))), [e, t]; }, useMutableSource: function (e, t, n) { var r = uo(); @@ -4879,7 +4477,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 +4486,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,9 +4508,9 @@ 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, + useMemo: zo, useReducer: co, useRef: bo, useState: function () { @@ -4949,14 +4547,14 @@ 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, + useMemo: zo, useReducer: fo, useRef: bo, useState: function () { @@ -4994,17 +4592,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 +4610,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 +4637,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 +4669,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 +4803,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 +4814,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 +4833,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 +4847,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 +4885,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 +4968,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 +4988,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\\": @@ -5500,42 +5098,42 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` if (null === t.stateNode) throw Error(o(166)); return null; } - if (((e = Oa(Ta.current)), Qa(t))) { + if (((e = Oa(za.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); + Tr(\\"cancel\\", r), Tr(\\"close\\", r); break; case \\"iframe\\": case \\"object\\": case \\"embed\\": - zr(\\"load\\", r); + Tr(\\"load\\", r); break; case \\"video\\": case \\"audio\\": - for (e = 0; e < Cr.length; e++) zr(Cr[e], r); + for (e = 0; e < _r.length; e++) Tr(_r[e], r); break; case \\"source\\": - zr(\\"error\\", r); + Tr(\\"error\\", r); break; case \\"img\\": case \\"image\\": case \\"link\\": - zr(\\"error\\", r), zr(\\"load\\", r); + Tr(\\"error\\", r), Tr(\\"load\\", r); break; case \\"details\\": - zr(\\"toggle\\", r); + Tr(\\"toggle\\", r); break; case \\"input\\": - ee(r, u), zr(\\"invalid\\", r); + ee(r, u), Tr(\\"invalid\\", r); break; case \\"select\\": (r._wrapperState = { wasMultiple: !!u.multiple }), - zr(\\"invalid\\", r); + Tr(\\"invalid\\", r); break; case \\"textarea\\": - ie(r, u), zr(\\"invalid\\", r); + ie(r, u), Tr(\\"invalid\\", r); } for (var s in (xe(n, u), (e = null), u)) u.hasOwnProperty(s) && @@ -5549,7 +5147,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` : i.hasOwnProperty(s) && null != a && \\"onScroll\\" === s && - zr(\\"scroll\\", r)); + Tr(\\"scroll\\", r)); switch (n) { case \\"input\\": X(r), re(r, u, !0); @@ -5561,7 +5159,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,39 +5180,39 @@ 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\\": - zr(\\"cancel\\", e), zr(\\"close\\", e), (a = r); + Tr(\\"cancel\\", e), Tr(\\"close\\", e), (a = r); break; case \\"iframe\\": case \\"object\\": case \\"embed\\": - zr(\\"load\\", e), (a = r); + Tr(\\"load\\", e), (a = r); break; case \\"video\\": case \\"audio\\": - for (a = 0; a < Cr.length; a++) zr(Cr[a], e); + for (a = 0; a < _r.length; a++) Tr(_r[a], e); a = r; break; case \\"source\\": - zr(\\"error\\", e), (a = r); + Tr(\\"error\\", e), (a = r); break; case \\"img\\": case \\"image\\": case \\"link\\": - zr(\\"error\\", e), zr(\\"load\\", e), (a = r); + Tr(\\"error\\", e), Tr(\\"load\\", e), (a = r); break; case \\"details\\": - zr(\\"toggle\\", e), (a = r); + Tr(\\"toggle\\", e), (a = r); break; case \\"input\\": - ee(e, r), (a = Z(e, r)), zr(\\"invalid\\", e); + ee(e, r), (a = J(e, r)), Tr(\\"invalid\\", e); break; case \\"option\\": a = ae(e, r); @@ -5622,10 +5220,10 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` case \\"select\\": (e._wrapperState = { wasMultiple: !!r.multiple }), (a = l({}, r, { value: void 0 })), - zr(\\"invalid\\", e); + Tr(\\"invalid\\", e); break; case \\"textarea\\": - ie(e, r), (a = ue(e, r)), zr(\\"invalid\\", e); + ie(e, r), (a = ue(e, r)), Tr(\\"invalid\\", e); break; default: a = r; @@ -5647,7 +5245,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` \\"suppressHydrationWarning\\" !== u && \\"autoFocus\\" !== u && (i.hasOwnProperty(u) - ? null != f && \\"onScroll\\" === u && zr(\\"scroll\\", e) + ? null != f && \\"onScroll\\" === u && Tr(\\"scroll\\", e) : null != f && w(e, u, f, s)); } switch (n) { @@ -5668,9 +5266,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); } @@ -5681,21 +5279,21 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` if (\\"string\\" !== typeof r && null === t.stateNode) throw Error(o(166)); (n = Oa(La.current)), - Oa(Ta.current), + Oa(za.current), 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 +5307,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 +5321,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 +5370,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 +5398,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 +5414,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 +5447,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: @@ -5905,12 +5503,12 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` (Yo = function (e, t, n, r) { var a = e.memoizedProps; if (a !== r) { - (e = t.stateNode), Oa(Ta.current); + (e = t.stateNode), Oa(za.current); var o, 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 +5524,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]) @@ -5971,11 +5569,11 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` : \\"suppressContentEditableWarning\\" !== f && \\"suppressHydrationWarning\\" !== f && (i.hasOwnProperty(f) - ? (null != c && \\"onScroll\\" === f && zr(\\"scroll\\", e), + ? (null != c && \\"onScroll\\" === f && Tr(\\"scroll\\", e), u || s === c || (u = [])) : \\"object\\" === typeof c && null !== c && - c.$$typeof === I + c.$$typeof === F ? c.toString() : (u = u || []).push(f, c)); } @@ -6013,7 +5611,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 +5628,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 +5686,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 +5725,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 +5803,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 +5826,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 +5910,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 +5925,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 +5983,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 +6012,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 +6063,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: @@ -6496,33 +6094,33 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` null === t.dehydrated ); } - var Tu = Math.ceil, - zu = k.ReactCurrentDispatcher, + var zu = Math.ceil, + Tu = k.ReactCurrentDispatcher, Lu = k.ReactCurrentOwner, 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 +6134,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 +6150,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 +6177,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 +6187,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 +6209,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 +6272,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(); + zi(); break; } catch (i) { - _i(e, i); + Ci(e, i); } if ( (na(), - (zu.current = a), + (Tu.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 +6299,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 +6315,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 +6330,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 @@ -6751,7 +6349,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` ? 3e3 : 4320 > n ? 4320 - : 1960 * Tu(n / 1960)) - n)) + : 1960 * zu(n / 1960)) - n)) ) { e.timeoutHandle = Hr(Oi.bind(null, e), n); break; @@ -6762,11 +6360,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 +6372,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 +6420,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 +6446,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 +6459,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 +6491,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 +6507,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 +6586,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,32 +6606,32 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` break; } } - function Ci() { - var e = zu.current; - return (zu.current = Oo), null === e ? Oo : e; + function _i() { + var e = Tu.current; + return (Tu.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)) + if ((na(), (Ou = n), (Tu.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); + for (; null !== Ru; ) Ti(Ru); } - function Ti() { - for (; null !== Ru && !Nl(); ) zi(Ru); + function zi() { + for (; null !== Ru && !Nl(); ) Ti(Ru); } - function zi(e) { + function Ti(e) { var t = Ku(e.alternate, e, Du); (e.memoizedProps = e.pendingProps), null === t ? Li(e) : (Ru = t), @@ -7078,12 +6676,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 +6700,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 +6734,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 +6779,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 +6802,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 +6885,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 +6908,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 +6930,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 +6947,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 +6978,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 +6988,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 +6998,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 +7016,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 +7040,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 +7053,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 +7083,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 +7093,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 +7132,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: + case T: return ( - ((e = $i(13, n, t, l)).type = z), - (e.elementType = z), + ((e = Wi(13, n, t, l)).type = T), + (e.elementType = T), (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) { @@ -7566,7 +7164,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` case N: u = 9; break e; - case T: + case z: u = 11; break e; case O: @@ -7582,21 +7180,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 +7204,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 +7230,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 +7302,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 +7381,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 +7405,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 +7425,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 +7436,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 ( @@ -7891,7 +7489,7 @@ exports[`When working with a nested app can generate a js/2.dd7fe2ee.chunk.js 1` (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 = e.$$typeof) === z) return 11; if (e === O) return 14; } return 2; @@ -7900,16 +7498,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 +7517,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 +7539,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 +7556,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 +7596,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 +7661,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 +7752,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 +7775,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 +7797,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,532 +7817,815 @@ 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 z(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 T = { current: null }; + function L() { + var e = T.current; + if (null === e) throw Error(p(321)); + return e; + } + var O = { + ReactCurrentDispatcher: T, + 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: z, }; - }); + }), + (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); + 666: (e, t) => { + var n, r, l, a; + if ( + \\"object\\" === typeof performance && + \\"function\\" === typeof performance.now + ) { + var o = performance; + t.unstable_now = function () { + return o.now(); + }; + } else { + var u = Date, + i = u.now(); + t.unstable_now = function () { + return u.now() - i; + }; } - 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) + \\"undefined\\" === typeof window || + \\"function\\" !== typeof MessageChannel + ) { + var s = null, + c = null, + f = function () { + if (null !== s) + try { + var e = t.unstable_now(); + s(!0, e), (s = null); + } catch (n) { + throw (setTimeout(f, 0), n); + } + }; + (n = function (e) { + null !== s ? setTimeout(n, 0, e) : ((s = e), setTimeout(f, 0)); + }), + (r = function (e, t) { + c = setTimeout(e, t); + }), + (l = function () { + clearTimeout(c); + }), + (t.unstable_shouldYield = function () { + return !1; + }), + (a = t.unstable_forceFrameRate = function () {}); + } else { + var d = window.setTimeout, + p = window.clearTimeout; + if (\\"undefined\\" !== typeof console) { + 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 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 m = !1, + v = null, + g = -1, + y = 5, + b = 0; + (t.unstable_shouldYield = function () { + return t.unstable_now() >= b; + }), + (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\\" + ) + : (y = 0 < e ? Math.floor(1e3 / e) : 5); + }); + var w = new MessageChannel(), + k = w.port2; + (w.port1.onmessage = function () { + if (null !== v) { + var e = t.unstable_now(); + b = e + y; + try { + v(!0, e) ? k.postMessage(null) : ((m = !1), (v = null)); + } catch (n) { + throw (k.postMessage(null), n); + } + } else m = !1; + }), + (n = function (e) { + (v = e), m || ((m = !0), k.postMessage(null)); + }), + (r = function (e, n) { + g = d(function () { + e(t.unstable_now()); + }, n); + }), + (l = function () { + p(g), (g = -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); + } + } + 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 t; + } + return null; + } + function C(e, t) { + var n = e.sortIndex - t.sortIndex; + return 0 !== n ? n : e.id - t.id; + } + var _ = [], + P = [], + N = 1, + z = null, + T = 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); + } + } + 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); + } + } + function D(e, n) { + (O = !1), M && ((M = !1), l()), (L = !0); + var a = T; + try { + for ( + R(n), z = E(_); + null !== z && + (!(z.expirationTime > n) || (e && !t.unstable_shouldYield())); + + ) { + var o = z.callback; + if (\\"function\\" === typeof o) { + (z.callback = null), (T = z.priorityLevel); + var u = o(z.expirationTime <= n); + (n = t.unstable_now()), + \\"function\\" === typeof u ? (z.callback = u) : z === E(_) && x(_), + R(n); + } else x(_); + z = E(_); + } + if (null !== z) var i = !0; + else { + var s = E(P); + null !== s && r(F, s.startTime - n), (i = !1); + } + return i; + } finally { + (z = null), (T = a), (L = !1); + } + } + 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 T; + }), + (t.unstable_getFirstCallbackNode = function () { + return E(_); + }), + (t.unstable_next = function (e) { + switch (T) { + case 1: + case 2: + case 3: + var t = 3; + break; + default: + t = T; + } + var n = T; + T = t; + try { + return e(); + } finally { + T = n; + } + }), + (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 = T; + T = e; + try { + return t(); + } finally { + T = 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 t; - }), - (p.n = function (e) { - var r = - e && e.__esModule - ? function () { - return e.default; + }), + (t.unstable_wrapCallback = function (e) { + var t = T; + return function () { + var n = T; + T = t; + try { + return e.apply(this, arguments); + } finally { + T = n; } - : function () { - return e; + }; + }); + }, + 146: (e, t, n) => { + e.exports = n(666); + }, + }, +]); +//# sourceMappingURL=788.bbd34b33.js.map +" +`; + +exports[`When working with a nested app can generate a index.html 1`] = ` +" + + + + + + + + + + React App + + + + + + + +
+ + " `; @@ -8777,178 +8658,180 @@ exports[`When working with a nested app can generate a manifest 1`] = ` " `; -exports[`when working with a NODE_ENV app 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 can generate a hashed js chunk in the js directory 1`] = ` +"\\"use strict\\"; +(self.webpackChunknode_env_app = self.webpackChunknode_env_app || []).push([ + [179], + { + 908: () => { + console.log(\\"production\\"); }, - ], - [[0, 1]], + }, + (e) => { + var n; + (n = 908), e((e.s = n)); + }, ]); -//# sourceMappingURL=main.3db228f9.chunk.js.map +//# sourceMappingURL=main.a482480b.js.map " `; 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\\", + \\"main.css\\": \\"/static/css/main.1a7488ce.css\\", + \\"main.js\\": \\"/static/js/main.a7fe4bac.js\\", + \\"runtime-main.js\\": \\"/static/js/runtime-main.7150bca8.js\\", + \\"static/js/316.394ef80b.js\\": \\"/static/js/316.394ef80b.js\\", \\"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\\" + \\"main.1a7488ce.css.map\\": \\"/static/css/main.1a7488ce.css.map\\", + \\"main.a7fe4bac.js.map\\": \\"/static/js/main.a7fe4bac.js.map\\", + \\"runtime-main.7150bca8.js.map\\": \\"/static/js/runtime-main.7150bca8.js.map\\", + \\"316.394ef80b.js.map\\": \\"/static/js/316.394ef80b.js.map\\" }, \\"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\\" + \\"static/js/runtime-main.7150bca8.js\\", + \\"static/js/316.394ef80b.js\\", + \\"static/css/main.1a7488ce.css\\", + \\"static/js/main.a7fe4bac.js\\" ] }" `; -exports[`when working with an app can generate a index.html 1`] = ` -" - - - - - - - - - - React App - - - - -
- - - - - + 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, s, l] = o, + i = 0; + if (p.some((e) => 0 !== r[e])) { + for (t in s) a.o(s, t) && (a.m[t] = s[t]); + if (l) var v = l(a); + } + for (e && e(o); i < p.length; i++) + (n = p[i]), a.o(r, n) && r[n] && r[n][0](), (r[n] = 0); + return a.O(v); + }, + o = (self.webpackChunksample_app = self.webpackChunksample_app || []); + o.forEach(e.bind(null, 0)), (o.push = e.bind(null, o.push.bind(o))); + })(); +})(); +//# sourceMappingURL=runtime-main.7150bca8.js.map " `; -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) { +exports[`when working with an app can generate a hashed vendor chunk in the js directory 1`] = ` +"/*! For license information please see 316.394ef80b.js.LICENSE.txt */ +\\"use strict\\"; +(self.webpackChunksample_app = self.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\\" @@ -8985,62 +8868,24 @@ exports[`when working with an app can generate a js/2.42603bbe.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) { + 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, n = 1; @@ -9056,616 +8901,254 @@ exports[`when working with an app can generate a js/2.42603bbe.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, + z = 60112, + T = 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\\")), + (z = j(\\"react.forward_ref\\")), + (T = 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(); @@ -9721,20 +9204,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: @@ -9758,11 +9241,11 @@ 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: + case T: return \\"Suspense\\"; case L: return \\"SuspenseList\\"; @@ -9773,7 +9256,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` return (e.displayName || \\"Context\\") + \\".Consumer\\"; case P: return (e._context.displayName || \\"Context\\") + \\".Provider\\"; - case T: + case z: var t = e.render; return ( (t = t.displayName || t.name || \\"\\"), @@ -9863,7 +9346,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 = @@ -9876,7 +9359,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, @@ -9939,7 +9422,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)); @@ -10177,7 +9660,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\\": @@ -10193,7 +9676,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), @@ -10202,8 +9685,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` } var Pe = null, Ne = null, - Te = null; - function ze(e) { + ze = null; + function Te(e) { if ((e = rl(e))) { if (\\"function\\" !== typeof Pe) throw Error(o(280)); var t = e.stateNode; @@ -10211,14 +9694,14 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` } } function Le(e) { - Ne ? (Te ? Te.push(e) : (Te = [e])) : (Ne = e); + Ne ? (ze ? ze.push(e) : (ze = [e])) : (Ne = e); } function Oe() { if (Ne) { var e = Ne, - t = Te; - if (((Te = Ne = null), ze(e), t)) - for (e = 0; e < t.length; e++) ze(t[e]); + t = ze; + if (((ze = Ne = null), Te(e), t)) + for (e = 0; e < t.length; e++) Te(t[e]); } } function Me(e, t) { @@ -10227,14 +9710,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 === ze) || (Fe(), Oe()); } - function je(e, t) { + function Ae(e, t) { var n = e.stateNode; if (null === n) return null; var r = al(n); @@ -10282,7 +9765,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); @@ -10290,17 +9773,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, @@ -10325,10 +9808,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; @@ -10349,8 +9832,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)); @@ -10494,7 +9977,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(); @@ -10512,7 +9995,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; @@ -10574,26 +10057,26 @@ 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, delete xt.animationstart.animation), \\"TransitionEvent\\" in window || delete xt.transitionend.transition); var Nt = Pt(\\"animationend\\"), - Tt = Pt(\\"animationiteration\\"), - zt = Pt(\\"animationstart\\"), + zt = Pt(\\"animationiteration\\"), + Tt = Pt(\\"animationstart\\"), Lt = Pt(\\"transitionend\\"), Ot = new Map(), Mt = new Map(), @@ -10602,9 +10085,9 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` \\"abort\\", Nt, \\"animationEnd\\", - Tt, - \\"animationIteration\\", zt, + \\"animationIteration\\", + Tt, \\"animationStart\\", \\"canplay\\", \\"canPlay\\", @@ -10649,7 +10132,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]; @@ -10661,7 +10144,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; @@ -10704,42 +10187,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)) && @@ -10759,14 +10242,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; @@ -10777,26 +10260,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) { @@ -10829,12 +10312,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; @@ -10850,7 +10333,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, @@ -11013,7 +10496,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\\", @@ -11051,7 +10534,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\\", @@ -11061,12 +10544,12 @@ 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; } - var Tn = l({}, hn, { + var zn = l({}, hn, { key: function (e) { if (e.key) { var t = xn[e.key] || e.key; @@ -11077,7 +10560,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, @@ -11103,7 +10586,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` : 0; }, }), - zn = un(Tn), + Tn = un(zn), Ln = un( l({}, vn, { pointerId: 0, @@ -11153,16 +10636,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); @@ -11176,7 +10659,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; @@ -11205,19 +10688,19 @@ 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 })); } var Yn = null, Xn = null; function Gn(e) { - Tr(e, 0); + zr(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; @@ -11238,15 +10721,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(); } } } @@ -11258,13 +10741,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 @@ -11332,14 +10815,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; } @@ -11367,7 +10850,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 = { @@ -11381,34 +10864,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\\"]), @@ -11447,26 +10930,26 @@ 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); } - function Tr(e, t) { + function zr(e, t) { t = 0 !== (4 & t); for (var n = 0; n < e.length; n++) { var r = e[n], @@ -11498,7 +10981,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` } if (Qe) throw ((e = qe), (Qe = !1), (qe = null), e); } - function zr(e, t) { + function Tr(e, t) { var n = ol(t), r = e + \\"__bubble\\"; n.has(r) || (Rr(t, e, 2, !1), n.add(r)); @@ -11536,7 +11019,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), @@ -11551,7 +11034,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 (;;) { @@ -11588,11 +11071,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); @@ -11604,7 +11087,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` if (0 === ln(n)) break e; case \\"keydown\\": case \\"keyup\\": - i = zn; + i = Tn; break; case \\"focusin\\": (s = \\"focus\\"), (i = bn); @@ -11645,8 +11128,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` i = On; break; case Nt: - case Tt: case zt: + case Tt: i = wn; break; case Lt: @@ -11656,7 +11139,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\\": @@ -11684,7 +11167,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) ) @@ -11755,8 +11238,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\\" === @@ -11765,7 +11248,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 { @@ -11811,7 +11294,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\\": @@ -11828,26 +11311,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\\": @@ -11858,7 +11341,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) { @@ -11875,29 +11358,29 @@ 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)); } - Tr(o, t); + zr(o, t); }); } 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; @@ -11909,7 +11392,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, @@ -11919,16 +11402,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\\": @@ -11938,7 +11421,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 || @@ -11980,21 +11463,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; @@ -12004,7 +11487,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; @@ -12014,7 +11497,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]; @@ -12098,31 +11581,31 @@ 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, - zl = a.unstable_now, + zl = a.unstable_requestPaint, + Tl = a.unstable_now, Ll = a.unstable_getCurrentPriorityLevel, 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 = {}, - Ul = void 0 !== Tl ? Tl : function () {}, - Al = null, + Il = {}, + Ul = void 0 !== zl ? zl : function () {}, jl = null, + Al = null, Vl = !1, - Bl = zl(), - Wl = + Bl = Tl(), + $l = 1e4 > Bl - ? zl + ? Tl : function () { - return zl() - Bl; + return Tl() - Bl; }; - function $l() { + function Wl() { switch (Ll()) { case Ol: return 99; @@ -12130,7 +11613,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; @@ -12147,7 +11630,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: @@ -12155,24 +11638,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]; @@ -12181,9 +11664,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; } @@ -12198,16 +11681,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; ) { @@ -12220,11 +11703,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) @@ -12234,9 +11717,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, @@ -12577,7 +12060,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; @@ -12892,18 +12375,18 @@ 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), + Ta = sl(Na), La = sl(Na); function Oa(e) { if (e === Na) throw Error(o(174)); return e; } function Ma(e, t) { - switch ((fl(La, t), fl(za, e), fl(Ta, Na), (e = t.nodeType))) { + switch ((fl(La, t), fl(Ta, e), fl(za, Na), (e = t.nodeType))) { case 9: case 11: t = (t = t.documentElement) ? t.namespaceURI : he(null, \\"\\"); @@ -12914,21 +12397,21 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` (e = e.tagName) ); } - cl(Ta), fl(Ta, t); + cl(za), fl(za, t); } function Ra() { - cl(Ta), cl(za), cl(La); + cl(za), cl(Ta), cl(La); } - function Ia(e) { + function Fa(e) { Oa(La.current); - var t = Oa(Ta.current), + var t = Oa(za.current), n = he(t, e.type); - t !== n && (fl(za, e), fl(Ta, n)); + t !== n && (fl(Ta, e), fl(za, n)); } function Da(e) { - za.current === e && (cl(Ta), cl(za)); + Ta.current === e && (cl(za), cl(Ta)); } - var Fa = sl(0); + var Ia = sl(0); function Ua(e) { for (var t = e; null !== t; ) { if (13 === t.tag) { @@ -12955,11 +12438,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), @@ -12969,7 +12452,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; @@ -12991,20 +12474,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) { @@ -13014,17 +12497,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)); @@ -13034,7 +12517,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--; @@ -13042,13 +12525,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() { @@ -13058,8 +12541,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, @@ -13075,8 +12558,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), @@ -13090,15 +12573,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) ) @@ -13114,15 +12597,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)); @@ -13133,7 +12616,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; } @@ -13161,7 +12644,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 = { @@ -13181,13 +12664,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), @@ -13209,7 +12692,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); @@ -13224,7 +12707,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) ) @@ -13248,7 +12731,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( @@ -13264,7 +12747,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); } @@ -13297,7 +12780,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)), @@ -13320,16 +12803,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) @@ -13345,7 +12828,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) { @@ -13357,7 +12840,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); @@ -13368,7 +12851,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), @@ -13383,10 +12866,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() {} @@ -13398,7 +12881,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` ? r[0] : ((n.memoizedState = [e, t]), e); } - function To(e, t) { + function zo(e, t) { var n = io(); t = void 0 === t ? null : t; var r = n.memoizedState; @@ -13406,8 +12889,8 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` ? r[0] : ((e = e()), (n.memoizedState = [e, t]), e); } - function zo(e, t) { - var n = $l(); + function To(e, t) { + var n = Wl(); Ql(98 > n ? 98 : n, function () { e(!0); }), @@ -13436,7 +12919,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 { @@ -13481,7 +12964,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) { @@ -13508,7 +12991,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] ); }, @@ -13538,7 +13021,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` useTransition: function () { var e = vo(!1), t = e[0]; - return yo((e = zo.bind(null, e[1]))), [e, t]; + return yo((e = To.bind(null, e[1]))), [e, t]; }, useMutableSource: function (e, t, n) { var r = uo(); @@ -13555,7 +13038,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))), @@ -13564,8 +13047,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 () { @@ -13586,9 +13069,9 @@ 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, + useMemo: zo, useReducer: co, useRef: bo, useState: function () { @@ -13625,14 +13108,14 @@ 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, + useMemo: zo, useReducer: fo, useRef: bo, useState: function () { @@ -13670,17 +13153,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), @@ -13688,7 +13171,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 || @@ -13715,11 +13198,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, @@ -13747,18 +13230,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), @@ -13881,7 +13364,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); @@ -13892,8 +13375,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), @@ -13911,10 +13394,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)) || @@ -13925,18 +13408,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), @@ -13963,7 +13446,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 ( @@ -14046,7 +13529,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)) @@ -14066,7 +13549,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\\": @@ -14176,42 +13659,42 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` if (null === t.stateNode) throw Error(o(166)); return null; } - if (((e = Oa(Ta.current)), Qa(t))) { + if (((e = Oa(za.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); + Tr(\\"cancel\\", r), Tr(\\"close\\", r); break; case \\"iframe\\": case \\"object\\": case \\"embed\\": - zr(\\"load\\", r); + Tr(\\"load\\", r); break; case \\"video\\": case \\"audio\\": - for (e = 0; e < Cr.length; e++) zr(Cr[e], r); + for (e = 0; e < _r.length; e++) Tr(_r[e], r); break; case \\"source\\": - zr(\\"error\\", r); + Tr(\\"error\\", r); break; case \\"img\\": case \\"image\\": case \\"link\\": - zr(\\"error\\", r), zr(\\"load\\", r); + Tr(\\"error\\", r), Tr(\\"load\\", r); break; case \\"details\\": - zr(\\"toggle\\", r); + Tr(\\"toggle\\", r); break; case \\"input\\": - ee(r, u), zr(\\"invalid\\", r); + ee(r, u), Tr(\\"invalid\\", r); break; case \\"select\\": (r._wrapperState = { wasMultiple: !!u.multiple }), - zr(\\"invalid\\", r); + Tr(\\"invalid\\", r); break; case \\"textarea\\": - ie(r, u), zr(\\"invalid\\", r); + ie(r, u), Tr(\\"invalid\\", r); } for (var s in (xe(n, u), (e = null), u)) u.hasOwnProperty(s) && @@ -14225,7 +13708,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` : i.hasOwnProperty(s) && null != a && \\"onScroll\\" === s && - zr(\\"scroll\\", r)); + Tr(\\"scroll\\", r)); switch (n) { case \\"input\\": X(r), re(r, u, !0); @@ -14237,7 +13720,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 { @@ -14258,39 +13741,39 @@ 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\\": - zr(\\"cancel\\", e), zr(\\"close\\", e), (a = r); + Tr(\\"cancel\\", e), Tr(\\"close\\", e), (a = r); break; case \\"iframe\\": case \\"object\\": case \\"embed\\": - zr(\\"load\\", e), (a = r); + Tr(\\"load\\", e), (a = r); break; case \\"video\\": case \\"audio\\": - for (a = 0; a < Cr.length; a++) zr(Cr[a], e); + for (a = 0; a < _r.length; a++) Tr(_r[a], e); a = r; break; case \\"source\\": - zr(\\"error\\", e), (a = r); + Tr(\\"error\\", e), (a = r); break; case \\"img\\": case \\"image\\": case \\"link\\": - zr(\\"error\\", e), zr(\\"load\\", e), (a = r); + Tr(\\"error\\", e), Tr(\\"load\\", e), (a = r); break; case \\"details\\": - zr(\\"toggle\\", e), (a = r); + Tr(\\"toggle\\", e), (a = r); break; case \\"input\\": - ee(e, r), (a = Z(e, r)), zr(\\"invalid\\", e); + ee(e, r), (a = J(e, r)), Tr(\\"invalid\\", e); break; case \\"option\\": a = ae(e, r); @@ -14298,10 +13781,10 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` case \\"select\\": (e._wrapperState = { wasMultiple: !!r.multiple }), (a = l({}, r, { value: void 0 })), - zr(\\"invalid\\", e); + Tr(\\"invalid\\", e); break; case \\"textarea\\": - ie(e, r), (a = ue(e, r)), zr(\\"invalid\\", e); + ie(e, r), (a = ue(e, r)), Tr(\\"invalid\\", e); break; default: a = r; @@ -14323,7 +13806,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` \\"suppressHydrationWarning\\" !== u && \\"autoFocus\\" !== u && (i.hasOwnProperty(u) - ? null != f && \\"onScroll\\" === u && zr(\\"scroll\\", e) + ? null != f && \\"onScroll\\" === u && Tr(\\"scroll\\", e) : null != f && w(e, u, f, s)); } switch (n) { @@ -14344,9 +13827,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); } @@ -14357,21 +13840,21 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` if (\\"string\\" !== typeof r && null === t.stateNode) throw Error(o(166)); (n = Oa(La.current)), - Oa(Ta.current), + Oa(za.current), 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) @@ -14385,12 +13868,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) ); @@ -14399,7 +13882,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 { @@ -14448,12 +13931,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 { @@ -14476,7 +13959,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), @@ -14492,10 +13975,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: @@ -14525,11 +14008,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: @@ -14581,12 +14064,12 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` (Yo = function (e, t, n, r) { var a = e.memoizedProps; if (a !== r) { - (e = t.stateNode), Oa(Ta.current); + (e = t.stateNode), Oa(za.current); var o, 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 = []); @@ -14602,7 +14085,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]) @@ -14647,11 +14130,11 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` : \\"suppressContentEditableWarning\\" !== f && \\"suppressHydrationWarning\\" !== f && (i.hasOwnProperty(f) - ? (null != c && \\"onScroll\\" === f && zr(\\"scroll\\", e), + ? (null != c && \\"onScroll\\" === f && Tr(\\"scroll\\", e), u || s === c || (u = [])) : \\"object\\" === typeof c && null !== c && - c.$$typeof === I + c.$$typeof === F ? c.toString() : (u = u || []).push(f, c)); } @@ -14689,7 +14172,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 : \\"\\", @@ -14706,7 +14189,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; } @@ -14764,7 +14247,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); } @@ -14803,7 +14286,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() ) ); @@ -14881,13 +14364,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; @@ -14904,14 +14387,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) { @@ -14988,7 +14471,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); @@ -15003,7 +14486,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; @@ -15061,7 +14544,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: @@ -15090,13 +14573,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 @@ -15141,7 +14624,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: @@ -15172,33 +14655,33 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` null === t.dehydrated ); } - var Tu = Math.ceil, - zu = k.ReactCurrentDispatcher, + var zu = Math.ceil, + Tu = k.ReactCurrentDispatcher, Lu = k.ReactCurrentOwner, 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 = [], @@ -15212,13 +14695,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) && @@ -15228,10 +14711,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: @@ -15255,8 +14738,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) @@ -15265,7 +14748,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; @@ -15287,32 +14770,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) { @@ -15350,26 +14833,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(); + zi(); break; } catch (i) { - _i(e, i); + Ci(e, i); } if ( (na(), - (zu.current = a), + (Tu.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) { @@ -15377,10 +14860,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) ) { @@ -15393,7 +14876,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) { @@ -15408,14 +14891,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 @@ -15427,7 +14910,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` ? 3e3 : 4320 > n ? 4320 - : 1960 * Tu(n / 1960)) - n)) + : 1960 * zu(n / 1960)) - n)) ) { e.timeoutHandle = Hr(Oi.bind(null, e), n); break; @@ -15438,11 +14921,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, @@ -15450,32 +14933,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 ); } @@ -15498,10 +14981,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); @@ -15524,7 +15007,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); @@ -15537,30 +15020,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: { @@ -15569,7 +15052,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 && @@ -15585,7 +15068,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; @@ -15664,7 +15147,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), @@ -15684,32 +15167,32 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` break; } } - function Ci() { - var e = zu.current; - return (zu.current = Oo), null === e ? Oo : e; + function _i() { + var e = Tu.current; + return (Tu.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)) + if ((na(), (Ou = n), (Tu.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); + for (; null !== Ru; ) Ti(Ru); } - function Ti() { - for (; null !== Ru && !Nl(); ) zi(Ru); + function zi() { + for (; null !== Ru && !Nl(); ) Ti(Ru); } - function zi(e) { + function Ti(e) { var t = Ku(e.alternate, e, Du); (e.memoizedProps = e.pendingProps), null === t ? Li(e) : (Ru = t), @@ -15754,12 +15237,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; @@ -15778,13 +15261,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)) @@ -15812,7 +15295,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; } @@ -15857,9 +15340,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); @@ -15880,27 +15363,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 ( @@ -15963,22 +15446,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), @@ -15986,15 +15469,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() { @@ -16008,15 +15491,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); @@ -16025,18 +15508,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() { @@ -16056,7 +15539,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) { @@ -16066,7 +15549,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; ) @@ -16076,17 +15559,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) { @@ -16094,14 +15577,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); @@ -16118,10 +15601,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) { @@ -16131,13 +15614,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 = @@ -16161,8 +15644,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); @@ -16171,7 +15654,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), @@ -16210,29 +15693,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: + case T: return ( - ((e = $i(13, n, t, l)).type = z), - (e.elementType = z), + ((e = Wi(13, n, t, l)).type = T), + (e.elementType = T), (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,7 +15725,7 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` case N: u = 9; break e; - case T: + case z: u = 11; break e; case O: @@ -16258,21 +15741,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, @@ -16282,7 +15765,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 = @@ -16308,7 +15791,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 { @@ -16339,727 +15822,1068 @@ exports[`when working with an app can generate a js/2.42603bbe.chunk.js 1`] = ` break t; } } - i = i.return; - } while (null !== i); - throw Error(o(171)); + i = i.return; + } 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; + } + } + 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) === z) 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); } - if (1 === n.tag) { - var s = n.type; - if (gl(s)) { - n = wl(n, s, i); - break e; - } + }), + (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 z(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 T = { current: null }; + function L() { + var e = T.current; + if (null === e) throw Error(p(321)); + return e; + } + var O = { + ReactCurrentDispatcher: T, + 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: z, + }; }), - (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 (;;) { @@ -17069,10 +16893,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(); @@ -17101,63 +16925,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, + var _ = [], + P = [], + N = 1, z = null, - L = 3, + T = 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 = T; try { for ( - I(n), z = x(P); + R(n), z = E(_); null !== z && (!(z.expirationTime > n) || (e && !t.unstable_shouldYield())); ) { var o = z.callback; if (\\"function\\" === typeof o) { - (z.callback = null), (L = z.priorityLevel); + (z.callback = null), (T = 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); + \\"function\\" === typeof u ? (z.callback = u) : z === E(_) && x(_), + R(n); + } else x(_); + z = E(_); } if (null !== z) 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); + (z = null), (T = a), (L = !1); } } - var U = o; + var I = a; (t.unstable_IdlePriority = 5), (t.unstable_ImmediatePriority = 1), (t.unstable_LowPriority = 4), @@ -17168,34 +16992,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 T; }), (t.unstable_getFirstCallbackNode = function () { - return x(P); + return E(_); }), (t.unstable_next = function (e) { - switch (L) { + switch (T) { case 1: case 2: case 3: var t = 3; break; default: - t = L; + t = T; } - var n = L; - L = t; + var n = T; + T = t; try { return e(); } finally { - L = n; + T = n; } }), (t.unstable_pauseExecution = function () {}), - (t.unstable_requestPaint = U), + (t.unstable_requestPaint = I), (t.unstable_runWithPriority = function (e, t) { switch (e) { case 1: @@ -17207,15 +17031,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 = T; + T = e; try { return t(); } finally { - L = n; + T = 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 @@ -17240,8 +17064,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), @@ -17249,182 +17073,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 = T; return function () { - var n = L; - L = t; + var n = T; + T = t; try { return e.apply(this, arguments); } finally { - L = n; + T = 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.394ef80b.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__/__snapshots__/index.test.ts.snap b/packages/modular-scripts/src/__tests__/__snapshots__/index.test.ts.snap deleted file mode 100644 index f38eb1cd3..000000000 --- a/packages/modular-scripts/src/__tests__/__snapshots__/index.test.ts.snap +++ /dev/null @@ -1,56 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`modular-scripts WHEN building a view THEN outputs the correct output cjs file 1`] = ` -"'use strict'; - -var React = require('react'); - -function _interopNamespace(e) { - if (e && e.__esModule) return e; - var n = Object.create(null); - if (e) { - Object.keys(e).forEach(function (k) { - if (k !== 'default') { - var d = Object.getOwnPropertyDescriptor(e, k); - Object.defineProperty(n, k, d.get ? d : { - enumerable: true, - get: function () { return e[k]; } - }); - } - }); - } - n[\\"default\\"] = e; - return n; -} - -var React__namespace = /*#__PURE__*/_interopNamespace(React); - -function SampleView() { - return /* @__PURE__ */ React__namespace.createElement(\\"div\\", { - \\"data-testid\\": \\"test-this\\" - }, \\"this is a modular view\\"); -} - -module.exports = SampleView; -//# sourceMappingURL=index.js.map -" -`; - -exports[`modular-scripts WHEN building a view THEN outputs the correct output cjs map file 1`] = ` -Object { - "file": "index.js", - "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAEkD,SAAA,UAAA,GAAA;AAChD,EAAA,sDAAQ,KAAD,EAAA;AAAA,IAAK,aAAY,EAAA,WAAA;AAAA,GAAY,EAAA,wBAAA,CAAA,CAAA;AAAA;;;;", - "names": Array [], - "sources": Array [ - "../src/index.tsx", - ], - "sourcesContent": Array [ - "import * as React from 'react'; - -export default function SampleView(): JSX.Element { - return
this is a modular view
-}", - ], - "version": 3, -} -`; diff --git a/packages/modular-scripts/src/__tests__/app.test.ts b/packages/modular-scripts/src/__tests__/app.test.ts index 7eccf9eaf..aa0a87c0c 100644 --- a/packages/modular-scripts/src/__tests__/app.test.ts +++ b/packages/modular-scripts/src/__tests__/app.test.ts @@ -78,9 +78,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 #5npfrr ├─ favicon.ico #6pu3rg - ├─ index.html #1yaenq4 + ├─ index.html #9j6678 ├─ logo192.png #1nez7vk ├─ logo512.png #1hwqvcc ├─ manifest.json #19gah8o @@ -88,14 +88,14 @@ describe('when working with a NODE_ENV app', () => { ├─ robots.txt #1sjb8b3 └─ static └─ js - ├─ main.3db228f9.chunk.js #20y3tb - ├─ main.3db228f9.chunk.js.map #131rxqt - ├─ runtime-main.a0dc6a9b.js #o5bsr9 - └─ runtime-main.a0dc6a9b.js.map #10n4p35" + ├─ main.a482480b.js #1xwb1v + ├─ main.a482480b.js.map #1vulei2 + ├─ runtime-main.97707f9d.js #15lezt9 + └─ runtime-main.97707f9d.js.map #12i5ddp" `); }); - it('can generate a js/main.3db228f9.chunk.js', async () => { + it('can generate a hashed js chunk in the js directory', async () => { expect( prettier.format( String( @@ -106,12 +106,12 @@ describe('when working with a NODE_ENV app', () => { 'node-env-app', 'static', 'js', - 'main.3db228f9.chunk.js', + 'main.a482480b.js', ), ), ), { - filepath: 'main.3db228f9.chunk.js', + filepath: 'main.a482480b.js', }, ), ).toMatchSnapshot(); @@ -134,9 +134,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 #1wkfjg2 ├─ favicon.ico #6pu3rg - ├─ index.html #saweoy + ├─ index.html #sphr07 ├─ logo192.png #1nez7vk ├─ logo512.png #1hwqvcc ├─ manifest.json #19gah8o @@ -144,16 +144,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 #q1dpnv - ├─ runtime-main.c80b6939.js #tnzlop - └─ runtime-main.c80b6939.js.map #14p9z3c" + ├─ 788.bbd34b33.js #33pg04 + ├─ 788.bbd34b33.js.LICENSE.txt #eplx8h + ├─ 788.bbd34b33.js.map #1xdy7n0 + ├─ main.c2bf6fcb.js #3w772b + ├─ main.c2bf6fcb.js.map #1rym0t9 + ├─ runtime-main.b18f5039.js #qy2lhb + └─ runtime-main.b18f5039.js.map #1o0el5f" `); }); @@ -197,7 +197,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( @@ -208,18 +208,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( @@ -230,7 +230,7 @@ describe('When working with a nested app', () => { 'scoped-sample-app', 'static', 'css', - 'main.a0f92c83.chunk.css.map', + 'main.1a7488ce.css.map', ), ), ), @@ -238,7 +238,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( @@ -249,18 +249,18 @@ describe('When working with a nested app', () => { 'scoped-sample-app', 'static', 'js', - 'main.8b9be32b.chunk.js', + 'main.c2bf6fcb.js', ), ), ), { - filepath: 'main.8b9be32b.chunk.js', + filepath: 'main.c2bf6fcb.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( @@ -271,18 +271,18 @@ describe('When working with a nested app', () => { 'scoped-sample-app', 'static', 'js', - 'runtime-main.c80b6939.js', + 'runtime-main.b18f5039.js', ), ), ), { - filepath: 'runtime-main.c80b6939.js', + filepath: 'runtime-main.b18f5039.js', }, ), ).toMatchSnapshot(); }); - it('can generate a js/2.dd7fe2ee.chunk.js', async () => { + it('can generate a hashed vendor chunk in the js directory', async () => { expect( prettier.format( String( @@ -293,12 +293,12 @@ describe('When working with a nested app', () => { 'scoped-sample-app', 'static', 'js', - '2.dd7fe2ee.chunk.js', + '788.bbd34b33.js', ), ), ), { - filepath: '2.dd7fe2ee.chunk.js', + filepath: '788.bbd34b33.js', }, ), ).toMatchSnapshot(); @@ -326,35 +326,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 #4fw8y3 ├─ favicon.ico #6pu3rg - ├─ index.html #59u9a8 + ├─ index.html #q5x53d ├─ logo192.png #1nez7vk ├─ logo512.png #1hwqvcc ├─ manifest.json #19gah8o @@ -362,16 +362,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 #umebn0 - ├─ runtime-main.dc96e42d.js #1xc8leb - └─ runtime-main.dc96e42d.js.map #xpqj11" + ├─ 316.394ef80b.js #1mv4xg9 + ├─ 316.394ef80b.js.LICENSE.txt #eplx8h + ├─ 316.394ef80b.js.map #b33pzn + ├─ main.a7fe4bac.js #1ovpx07 + ├─ main.a7fe4bac.js.map #1hjzrkt + ├─ runtime-main.7150bca8.js #hhaxbg + └─ runtime-main.7150bca8.js.map #1pmss5r" `); }); @@ -426,7 +426,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( @@ -437,18 +437,18 @@ describe('when working with an app', () => { 'sample-app', 'static', 'js', - 'main.8247c019.chunk.js', + 'main.a7fe4bac.js', ), ), ), { - filepath: 'main.8247c019.chunk.js', + filepath: 'main.a7fe4bac.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( @@ -459,18 +459,18 @@ describe('when working with an app', () => { 'sample-app', 'static', 'js', - 'runtime-main.dc96e42d.js', + 'runtime-main.7150bca8.js', ), ), ), { - filepath: 'runtime-main.dc96e42d.js', + filepath: 'runtime-main.7150bca8.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( @@ -481,12 +481,12 @@ describe('when working with an app', () => { 'sample-app', 'static', 'js', - '2.42603bbe.chunk.js', + '316.394ef80b.js', ), ), ), { - filepath: '2.42603bbe.chunk.js', + filepath: '316.394ef80b.js', }, ), ).toMatchSnapshot(); diff --git a/packages/modular-scripts/src/__tests__/build.test.ts b/packages/modular-scripts/src/__tests__/build.test.ts index 2811d3298..5648ba7fd 100644 --- a/packages/modular-scripts/src/__tests__/build.test.ts +++ b/packages/modular-scripts/src/__tests__/build.test.ts @@ -51,14 +51,14 @@ describe('WHEN building with preserve modules', () => { ├─ README.md #1jv3l2q ├─ dist-cjs │ ├─ index.js #y5z0kw - │ ├─ index.js.map #16xad8o + │ ├─ index.js.map #1gofapj │ ├─ runAsync.js #kr3qrh - │ └─ runAsync.js.map #130u3kt + │ └─ runAsync.js.map #19q2dqp ├─ dist-es │ ├─ index.js #7arwpf - │ ├─ index.js.map #n6rb69 + │ ├─ index.js.map #p3aqj2 │ ├─ runAsync.js #1tt0e7o - │ └─ runAsync.js.map #r9z8sx + │ └─ runAsync.js.map #1tlnsv0 ├─ dist-types │ ├─ index.d.ts #12l2tmi │ └─ runAsync.d.ts #1iek7az @@ -149,10 +149,10 @@ describe('WHEN building packages with private cross-package dependencies', () => ├─ README.md #1jv3l2q ├─ dist-cjs │ ├─ index.js #1gj4b9h - │ └─ index.js.map #1j96nz6 + │ └─ index.js.map #1v4zj6b ├─ dist-es │ ├─ index.js #xezjee - │ └─ index.js.map #12d2mbd + │ └─ index.js.map #isxuu ├─ dist-types │ └─ index.d.ts #6hjmh9 └─ package.json" diff --git a/packages/modular-scripts/src/__tests__/index.test.ts b/packages/modular-scripts/src/__tests__/index.test.ts index a0db1f87a..33698e7fb 100644 --- a/packages/modular-scripts/src/__tests__/index.test.ts +++ b/packages/modular-scripts/src/__tests__/index.test.ts @@ -15,6 +15,7 @@ import puppeteer from 'puppeteer'; import getModularRoot from '../utils/getModularRoot'; import { startApp, DevServer } from './start-app'; import { ModularPackageJson } from '../utils/isModularType'; +import type { CoreProperties } from '@schemastore/package'; const rimraf = promisify(_rimraf); @@ -53,7 +54,6 @@ const targetedView = 'sample-view'; describe('modular-scripts', () => { beforeAll(async () => { await cleanup(); - await modular( 'add sample-view --unstable-type view --unstable-name sample-view', { stdio: 'inherit' }, @@ -152,7 +152,9 @@ describe('modular-scripts', () => { browser = await puppeteer.launch(launchArgs); port = '4000'; - devServer = await startApp(targetedView, { env: { PORT: port } }); + devServer = await startApp(targetedView, { + env: { PORT: port, USE_MODULAR_ESBUILD: 'true' }, + }); }); afterAll(async () => { @@ -200,6 +202,9 @@ describe('modular-scripts', () => { beforeAll(async () => { await modular('build sample-view', { stdio: 'inherit', + env: { + USE_MODULAR_ESBUILD: 'true', + }, }); }); @@ -210,74 +215,222 @@ describe('modular-scripts', () => { ), ).toMatchInlineSnapshot(` Object { + "bundledDependencies": Array [], "dependencies": Object { "react": "17.0.2", }, - "files": Array [ - "README.md", - "dist-cjs", - "dist-es", - "dist-types", - ], "license": "UNLICENSED", - "main": "dist-cjs/index.js", "modular": Object { "type": "view", }, - "module": "dist-es/index.js", + "module": "static/js/index-IC6FL6E2.js", "name": "sample-view", - "typings": "dist-types/index.d.ts", "version": "1.0.0", } `); }); - it('THEN outputs the correct output cjs file', () => { - expect( - String( - fs.readFileSync( - path.join( - modularRoot, - 'dist', - 'sample-view', - 'dist-cjs', - 'index.js', - ), - ), - ), - ).toMatchSnapshot(); + it('THEN outputs the correct directory structure', () => { + expect(tree(path.join(modularRoot, 'dist', 'sample-view'))) + .toMatchInlineSnapshot(` + "sample-view + ├─ index.html #16orq8u + ├─ package.json + └─ static + └─ js + ├─ _trampoline.js #1atamnv + ├─ index-IC6FL6E2.js #19sl0ps + └─ index-IC6FL6E2.js.map #1sysx0b" + `); }); + }); - it('THEN outputs the correct output cjs map file', () => { - expect( - fs.readJsonSync( - path.join( - modularRoot, - 'dist', - 'sample-view', - 'dist-cjs', - 'index.js.map', - ), - ), - ).toMatchSnapshot(); + describe('WHEN building a view with a custom ESM CDN', () => { + beforeAll(async () => { + await modular('build sample-view', { + stdio: 'inherit', + env: { + USE_MODULAR_ESBUILD: 'true', + EXTERNAL_CDN_TEMPLATE: + 'https://mycustomcdn.net/[name]?version=[version]', + }, + }); }); it('THEN outputs the correct directory structure', () => { expect(tree(path.join(modularRoot, 'dist', 'sample-view'))) .toMatchInlineSnapshot(` "sample-view - ├─ README.md #11adaka - ├─ dist-cjs - │ ├─ index.js #a7k6ic - │ └─ index.js.map #1pwjhqx - ├─ dist-es - │ ├─ index.js #1ymmv5l - │ └─ index.js.map #xpk3zp - ├─ dist-types - │ └─ index.d.ts #1vloh7q - └─ package.json" + ├─ index.html #16orq8u + ├─ package.json + └─ static + └─ js + ├─ _trampoline.js #9paktu + ├─ index-LUQBNEET.js #7c5l8d + └─ index-LUQBNEET.js.map #1bqa5dr" + `); + }); + + it('THEN rewrites the dependencies according to the template string', async () => { + const baseDir = path.join( + modularRoot, + 'dist', + 'sample-view', + 'static', + 'js', + ); + const trampolineFile = ( + await fs.readFile(path.join(baseDir, '_trampoline.js')) + ).toString(); + + const indexFile = ( + await fs.readFile(path.join(baseDir, 'index-LUQBNEET.js')) + ).toString(); + + expect(trampolineFile).toContain( + `https://mycustomcdn.net/react?version=`, + ); + expect(trampolineFile).toContain( + `https://mycustomcdn.net/react-dom?version=`, + ); + expect(indexFile).toContain(`https://mycustomcdn.net/react?version=`); + }); + }); + + describe('WHEN building a view with various kinds of package dependencies', () => { + beforeAll(async () => { + await fs.copyFile( + path.join(__dirname, 'TestViewPackages.test-tsx'), + path.join(packagesPath, targetedView, 'src', 'index.tsx'), + ); + + const packageJsonPath = path.join( + packagesPath, + targetedView, + 'package.json', + ); + const packageJson = (await fs.readJSON( + packageJsonPath, + )) as CoreProperties; + + await fs.writeJSON( + packageJsonPath, + Object.assign(packageJson, { + dependencies: { + lodash: '^4.17.21', + 'lodash.merge': '^4.6.2', + }, + }), + ); + + await execa('yarnpkg', [], { + cwd: modularRoot, + cleanup: true, + }); + + await modular('build sample-view', { + stdio: 'inherit', + env: { + USE_MODULAR_ESBUILD: 'true', + EXTERNAL_CDN_TEMPLATE: + 'https://mycustomcdn.net/[name]?version=[version]', + }, + }); + }); + + it('THEN outputs the correct directory structure', () => { + expect(tree(path.join(modularRoot, 'dist', 'sample-view'))) + .toMatchInlineSnapshot(` + "sample-view + ├─ index.html #16orq8u + ├─ package.json + └─ static + └─ js + ├─ _trampoline.js #1g4vig6 + ├─ index-F6YQ237K.js #oj2dgc + └─ index-F6YQ237K.js.map #1yijvx1" `); }); + + it('THEN rewrites the dependencies', async () => { + const baseDir = path.join( + modularRoot, + 'dist', + 'sample-view', + 'static', + 'js', + ); + + const indexFile = ( + await fs.readFile(path.join(baseDir, 'index-F6YQ237K.js')) + ).toString(); + expect(indexFile).toContain(`https://mycustomcdn.net/react?version=`); + expect(indexFile).toContain( + `https://mycustomcdn.net/lodash?version=^4.17.21`, + ); + expect(indexFile).toContain( + `https://mycustomcdn.net/lodash.merge?version=^4.6.2`, + ); + }); + }); + + describe('WHEN building a view specifying a dependency to not being rewritten', () => { + beforeAll(async () => { + await modular('build sample-view', { + stdio: 'inherit', + env: { + USE_MODULAR_ESBUILD: 'true', + EXTERNAL_CDN_TEMPLATE: + 'https://mycustomcdn.net/[name]?version=[version]', + EXTERNAL_BLOCK_LIST: 'lodash,lodash.merge', + }, + }); + }); + + it('THEN outputs the correct directory structure', () => { + expect(tree(path.join(modularRoot, 'dist', 'sample-view'))) + .toMatchInlineSnapshot(` + "sample-view + ├─ index.html #16orq8u + ├─ package.json + └─ static + └─ js + ├─ _trampoline.js #9qjmtx + ├─ index-P6RWJ53F.js #1emvouy + └─ index-P6RWJ53F.js.map #1y2yxmy" + `); + }); + + it('THEN rewrites only the dependencies that are not specified in the blocklist', async () => { + const baseDir = path.join( + modularRoot, + 'dist', + 'sample-view', + 'static', + 'js', + ); + + const indexFile = ( + await fs.readFile(path.join(baseDir, 'index-P6RWJ53F.js')) + ).toString(); + expect(indexFile).toContain(`https://mycustomcdn.net/react?version=`); + expect(indexFile).not.toContain( + `https://mycustomcdn.net/lodash?version=`, + ); + expect(indexFile).not.toContain( + `https://mycustomcdn.net/lodash.merge?version=`, + ); + }); + }); + + it('THEN expects the correct bundledDependencies in package.json', async () => { + expect( + ( + (await fs.readJson( + path.join(modularRoot, 'dist', 'sample-view', 'package.json'), + )) as CoreProperties + ).bundledDependencies, + ).toEqual(['lodash', 'lodash.merge']); }); it('can execute tests', async () => { @@ -350,10 +503,10 @@ describe('modular-scripts', () => { ├─ README.md #1jv3l2q ├─ dist-cjs │ ├─ index.js #rq9uxe - │ └─ index.js.map #1l2chuu + │ └─ index.js.map #19satcx ├─ dist-es │ ├─ index.js #3bszhr - │ └─ index.js.map #gt6dtg + │ └─ index.js.map #1m2nocl ├─ dist-types │ └─ index.d.ts #f68aj └─ package.json" @@ -420,10 +573,10 @@ describe('modular-scripts', () => { ├─ README.md #1jv3l2q ├─ dist-cjs │ ├─ nested-sample-package.cjs.js #kv2xzp - │ └─ nested-sample-package.cjs.js.map #1s14uw6 + │ └─ nested-sample-package.cjs.js.map #bgpzsg ├─ dist-es │ ├─ nested-sample-package.es.js #11z6hlv - │ └─ nested-sample-package.es.js.map #1t6z42y + │ └─ nested-sample-package.es.js.map #14mne6l ├─ dist-types │ └─ index.d.ts #f68aj └─ package.json" diff --git a/packages/modular-scripts/src/__tests__/utils/stageView.test.ts b/packages/modular-scripts/src/__tests__/utils/stageView.test.ts deleted file mode 100644 index f35a56b67..000000000 --- a/packages/modular-scripts/src/__tests__/utils/stageView.test.ts +++ /dev/null @@ -1,47 +0,0 @@ -import rimraf from 'rimraf'; -import * as path from 'path'; -import * as fs from 'fs-extra'; -import stageView from '../../utils/stageView'; -import getModularRoot from '../../utils/getModularRoot'; -import tree from 'tree-view-for-tests'; - -describe('stageView', () => { - let testView = ''; - const modularRoot = getModularRoot(); - const tempDirPath = path.join(modularRoot, 'node_modules', '.modular'); - function cleanUpTempView(view: string) { - rimraf.sync(path.join(tempDirPath, view)); - } - afterEach(() => { - cleanUpTempView(testView); - testView = ''; - }); - afterAll(() => { - cleanUpTempView(''); - }); - it('should create a temp app using the app type template', () => { - testView = 'test-view'; - const testViewPath = path.join(tempDirPath, testView); - stageView(testView); - expect(tree(testViewPath)).toMatchInlineSnapshot(` - "test-view - ├─ package.json - ├─ public - │ ├─ index.html #rm3xgn - │ └─ manifest.json #kalmoq - ├─ src - │ ├─ index.tsx #1qbgs9s - │ └─ react-app-env.d.ts #t4ygcy - └─ tsconfig.json #1ww9d44" - `); - }); - it('should import the view as the main app in index.tsx', () => { - testView = 'test-view'; - const testViewPath = path.join(tempDirPath, testView); - stageView(testView); - const indexFile = fs - .readFileSync(path.join(testViewPath, 'src', 'index.tsx'), 'utf-8') - .toString(); - expect(indexFile).toContain(`import App from '${testView}'`); - }); -}); diff --git a/packages/modular-scripts/src/build/index.ts b/packages/modular-scripts/src/build/index.ts index 965de2076..105a6ab80 100644 --- a/packages/modular-scripts/src/build/index.ts +++ b/packages/modular-scripts/src/build/index.ts @@ -2,21 +2,29 @@ import { paramCase as toParamCase } from 'change-case'; import chalk from 'chalk'; import * as fs from 'fs-extra'; import * as path from 'path'; - import * as logger from '../utils/logger'; +import * as minimize from 'html-minifier-terser'; import getModularRoot from '../utils/getModularRoot'; import actionPreflightCheck from '../utils/actionPreflightCheck'; -import isModularType from '../utils/isModularType'; +import { getModularType } from '../utils/isModularType'; +import { filterDependencies } from '../utils/filterDependencies'; +import type { ModularType } from '../utils/isModularType'; import execAsync from '../utils/execAsync'; import getLocation from '../utils/getLocation'; 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'; +import getClientEnvironment from '../esbuild-scripts/config/getClientEnvironment'; +import { + createBuildIndex, + getEntryPoint, + createViewTrampoline, +} from '../esbuild-scripts/api'; import { webpackMeasureFileSizesBeforeBuild, createWebpackAssets, @@ -28,7 +36,10 @@ import { import { getPackageDependencies } from '../utils/getPackageDependencies'; import type { CoreProperties } from '@schemastore/package'; -async function buildApp(target: string) { +async function buildAppOrView( + target: string, + type: Extract, +) { // True if there's no preference set - or the preference is for webpack. const useWebpack = !process.env.USE_MODULAR_WEBPACK || @@ -49,6 +60,7 @@ async function buildApp(target: string) { const targetName = toParamCase(target); const paths = await createPaths(target); + const isApp = type === 'app'; await checkBrowsers(targetDirectory); @@ -64,25 +76,46 @@ async function buildApp(target: string) { } // Warn and crash if required files are missing - await checkRequiredFiles([paths.appHtml, paths.appIndexJs]); + isApp + ? await checkRequiredFiles([paths.appHtml, paths.appIndexJs]) + : await checkRequiredFiles([paths.appIndexJs]); logger.log('Creating an optimized production build...'); await fs.emptyDir(paths.appBuild); - await fs.copy(paths.appPublic, paths.appBuild, { - dereference: true, - filter: (file) => file !== paths.appHtml, - overwrite: true, - }); + if (isApp) { + await fs.copy(paths.appPublic, paths.appBuild, { + dereference: true, + filter: (file) => file !== paths.appHtml, + overwrite: true, + }); + } let assets: Asset[]; + // Retrieve dependencies for target to inform the build process + const packageDependencies = await getPackageDependencies(target); + // Split dependencies between external and bundled + const { external: externalDependencies, bundled: bundledDependencies } = + filterDependencies(packageDependencies, isApp); + + const browserTarget = createEsbuildBrowserslistTarget(targetDirectory); + + let jsEntryPoint: string | undefined; + let cssEntryPoint: string | undefined; if (isEsbuild) { const { default: buildEsbuildApp } = await import( '../esbuild-scripts/build' ); - const result = await buildEsbuildApp(target, paths); + const result = await buildEsbuildApp( + target, + paths, + externalDependencies, + type, + ); + jsEntryPoint = getEntryPoint(paths, result, '.js'); + cssEntryPoint = getEntryPoint(paths, result, '.css'); assets = createEsbuildAssets(paths, result); } else { // create-react-app doesn't support plain module outputs yet, @@ -92,8 +125,6 @@ async function buildApp(target: string) { 'modular-scripts/react-scripts/scripts/build.js', ); - const browserTarget = createEsbuildBrowserslistTarget(targetDirectory); - // TODO: this shouldn't be sync await execAsync('node', [buildScript], { cwd: targetDirectory, @@ -104,15 +135,28 @@ async function buildApp(target: string) { MODULAR_ROOT: modularRoot, MODULAR_PACKAGE: target, MODULAR_PACKAGE_NAME: targetName, + MODULAR_IS_APP: JSON.stringify(isApp), + MODULAR_PACKAGE_DEPS: JSON.stringify({ + externalDependencies, + bundledDependencies, + }), }, }); 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) { + const mainEntrypoint = stats?.assetsByChunkName?.main; + jsEntryPoint = mainEntrypoint?.find((entryPoint) => + entryPoint.endsWith('.js'), + ); + cssEntryPoint = mainEntrypoint?.find((entryPoint) => + entryPoint.endsWith('.css'), + ); + + if (stats?.warnings?.length) { logger.log(chalk.yellow('Compiled with warnings.\n')); logger.log(stats.warnings.join('\n\n')); logger.log( @@ -130,13 +174,52 @@ async function buildApp(target: string) { } } + // If view, write the synthetic index.html and create a trampoline file pointing to the main entrypoint + // This is for both esbuild and webpack so it lives here. If app, instead, the public/index.html file is generated specifical in different ways. + if (!isApp) { + if (!jsEntryPoint) { + throw new Error("Can't find main entrypoint after building"); + } + // Create synthetic index + const env = getClientEnvironment(paths.publicUrlOrPath.slice(0, -1)); + const html = createBuildIndex(cssEntryPoint, env.raw); + await fs.writeFile( + path.join(paths.appBuild, 'index.html'), + await minimize.minify(html, { + html5: true, + collapseBooleanAttributes: true, + collapseWhitespace: true, + collapseInlineTagWhitespace: true, + decodeEntities: true, + minifyCSS: true, + minifyJS: true, + removeAttributeQuotes: false, + removeComments: true, + removeTagWhitespace: true, + }), + ); + + // Create and write trampoline file + const trampolineBuildResult = await createViewTrampoline( + path.basename(jsEntryPoint), + paths.appSrc, + externalDependencies, + browserTarget, + ); + const trampolinePath = `${paths.appBuild}/static/js/_trampoline.js`; + await fs.writeFile( + trampolinePath, + trampolineBuildResult.outputFiles[0].contents, + ); + } + // Add dependencies from source and bundled dependencies to target package.json - const packageDependencies = await getPackageDependencies(target); const targetPackageJson = (await fs.readJSON( path.join(targetDirectory, 'package.json'), )) as CoreProperties; targetPackageJson.dependencies = packageDependencies; - targetPackageJson.bundledDependencies = Object.keys(packageDependencies); + targetPackageJson.bundledDependencies = Object.keys(bundledDependencies); + // Copy selected fields of package.json over await fs.writeJSON( path.join(paths.appBuild, 'package.json'), @@ -146,6 +229,9 @@ async function buildApp(target: string) { license: targetPackageJson.license, modular: targetPackageJson.modular, dependencies: targetPackageJson.dependencies, + bundledDependencies: targetPackageJson.bundledDependencies, + module: jsEntryPoint, + style: cssEntryPoint, }, { spaces: 2 }, ); @@ -169,8 +255,9 @@ async function build( await setupEnvForDirectory(targetDirectory); - if (isModularType(targetDirectory, 'app')) { - await buildApp(target); + const targetType = getModularType(targetDirectory); + if (targetType === 'app' || targetType === 'view') { + await buildAppOrView(target, targetType); } else { const { buildPackage } = await import('./buildPackage'); // ^ we do a dynamic import here to defer the module's initial side effects 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/packages/modular-scripts/src/esbuild-scripts/api.ts b/packages/modular-scripts/src/esbuild-scripts/api.ts index d21dfbdd6..1986ee600 100644 --- a/packages/modular-scripts/src/esbuild-scripts/api.ts +++ b/packages/modular-scripts/src/esbuild-scripts/api.ts @@ -1,15 +1,80 @@ -import type * as esbuild from 'esbuild'; +import * as esbuild from 'esbuild'; import * as fs from 'fs-extra'; import * as parse5 from 'parse5'; import escapeStringRegexp from 'escape-string-regexp'; +import { createRewriteDependenciesPlugin } from './plugins/rewriteDependenciesPlugin'; import type { Paths } from '../utils/createPaths'; import getModularRoot from '../utils/getModularRoot'; import * as path from 'path'; +import type { Dependency } from '@schemastore/package'; type FileType = '.css' | '.js'; -function getEntryPoint( +export const indexFile = ` + + + +
+ + + +`; + +export async function createViewTrampoline( + fileName: string, + srcPath: string, + dependencies: Dependency, + browserTarget: string[], +): Promise { + const fileRelativePath = `./${fileName}`; + + const trampolineTemplate = ` +import ReactDOM from 'react-dom' +import React from 'react' +import Component from '${fileRelativePath}' +const DOMRoot = document.getElementById('root'); +ReactDOM.render(, DOMRoot);`; + + const fileRegexp = new RegExp(String.raw`^${escapeRegex(fileRelativePath)}$`); + + // Build the trampoline on the fly, from stdin + const buildResult = await esbuild.build({ + stdin: { + contents: trampolineTemplate, + resolveDir: srcPath, + sourcefile: '_trampoline.tsx', + loader: 'tsx', + }, + format: 'esm', + bundle: true, + write: false, + target: browserTarget, + plugins: [ + // See https://github.com/evanw/esbuild/issues/456 + { + name: 'import-path', + setup(build) { + build.onResolve({ filter: fileRegexp }, (args) => { + return { path: args.path, external: true }; + }); + }, + }, + createRewriteDependenciesPlugin({ + ...dependencies, + 'react-dom': dependencies.react, + }), + ], + }); + + return buildResult; +} + +function escapeRegex(s: string) { + return s.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&'); +} + +export function getEntryPoint( paths: Paths, metafile: esbuild.Metafile, type: FileType, @@ -32,11 +97,13 @@ function getEntryPoint( export async function createIndex( paths: Paths, - metafile: esbuild.Metafile, + metafile: esbuild.Metafile | undefined, replacements: Record, includeRuntime: boolean, + indexContent?: string, ): Promise { - const index = await fs.readFile(paths.appHtml, { encoding: 'utf-8' }); + const index = + indexContent ?? (await fs.readFile(paths.appHtml, { encoding: 'utf-8' })); const page = parse5.parse(index); const html = page.childNodes.find( (node) => node.nodeName === 'html', @@ -45,8 +112,12 @@ export async function createIndex( (node) => node.nodeName === 'head', ) as parse5.Element; - const cssEntryPoint = getEntryPoint(paths, metafile, '.css'); - const jsEntryPoint = getEntryPoint(paths, metafile, '.js'); + const cssEntryPoint = metafile + ? getEntryPoint(paths, metafile, '.css') + : undefined; + const jsEntryPoint = metafile + ? getEntryPoint(paths, metafile, '.js') + : undefined; if (cssEntryPoint) { head.childNodes.push( @@ -87,3 +158,37 @@ export async function createIndex( return data; } + +export function createBuildIndex( + cssEntryPoint: string | undefined, + replacements: Record, +): string { + const page = parse5.parse(indexFile); + const html = page.childNodes.find( + (node) => node.nodeName === 'html', + ) as parse5.Element; + const head = html.childNodes.find( + (node) => node.nodeName === 'head', + ) as parse5.Element; + + if (cssEntryPoint) { + head.childNodes.push( + ...parse5.parseFragment( + ``, + ).childNodes, + ); + } + + let data = parse5.serialize(page); + + // Run HTML through a series of user-specified string replacements. + Object.keys(replacements).forEach((key) => { + const value = replacements[key]; + data = data.replace( + new RegExp('%' + escapeStringRegexp(key) + '%', 'g'), + value, + ); + }); + + return data; +} diff --git a/packages/modular-scripts/src/esbuild-scripts/build/index.ts b/packages/modular-scripts/src/esbuild-scripts/build/index.ts index 4b796aceb..23c516a07 100644 --- a/packages/modular-scripts/src/esbuild-scripts/build/index.ts +++ b/packages/modular-scripts/src/esbuild-scripts/build/index.ts @@ -13,19 +13,40 @@ import { createIndex } from '../api'; import createEsbuildConfig from '../config/createEsbuildConfig'; import getModularRoot from '../../utils/getModularRoot'; import sanitizeMetafile from '../utils/sanitizeMetafile'; +import { createRewriteDependenciesPlugin } from '../plugins/rewriteDependenciesPlugin'; +import type { Dependency } from '@schemastore/package'; +import createEsbuildBrowserslistTarget from '../../utils/createEsbuildBrowserslistTarget'; -export default async function build(target: string, paths: Paths) { +export default async function build( + target: string, + paths: Paths, + externalDependencies: Dependency, + type: 'app' | 'view', +) { const modularRoot = getModularRoot(); + const isApp = type === 'app'; const env = getClientEnvironment(paths.publicUrlOrPath.slice(0, -1)); let result: esbuild.Metafile; + + const browserTarget = createEsbuildBrowserslistTarget(paths.appPath); + try { const buildResult = await esbuild.build( createEsbuildConfig(paths, { entryNames: 'static/js/[name]-[hash]', chunkNames: 'static/js/[name]-[hash]', assetNames: 'static/media/[name]-[hash]', + target: browserTarget, + plugins: isApp + ? undefined + : [ + createRewriteDependenciesPlugin( + externalDependencies, + browserTarget, + ), + ], }), ); @@ -54,22 +75,25 @@ export default async function build(target: string, paths: Paths) { } } - const html = await createIndex(paths, result, env.raw, false); - await fs.writeFile( - path.join(paths.appBuild, 'index.html'), - minimize.minify(html, { - html5: true, - collapseBooleanAttributes: true, - collapseWhitespace: true, - collapseInlineTagWhitespace: true, - decodeEntities: true, - minifyCSS: true, - minifyJS: true, - removeAttributeQuotes: false, - removeComments: true, - removeTagWhitespace: true, - }), - ); + // If it's view, the parent build function has already generated the index. But if app, we must generate it here. + if (isApp) { + const html = await createIndex(paths, result, env.raw, false); + await fs.writeFile( + path.join(paths.appBuild, 'index.html'), + await minimize.minify(html, { + html5: true, + collapseBooleanAttributes: true, + collapseWhitespace: true, + collapseInlineTagWhitespace: true, + decodeEntities: true, + minifyCSS: true, + minifyJS: true, + removeAttributeQuotes: false, + removeComments: true, + removeTagWhitespace: true, + }), + ); + } return result; } diff --git a/packages/modular-scripts/src/esbuild-scripts/config/createEsbuildConfig.ts b/packages/modular-scripts/src/esbuild-scripts/config/createEsbuildConfig.ts index 5556e4032..3bc129505 100644 --- a/packages/modular-scripts/src/esbuild-scripts/config/createEsbuildConfig.ts +++ b/packages/modular-scripts/src/esbuild-scripts/config/createEsbuildConfig.ts @@ -3,7 +3,6 @@ import * as path from 'path'; import * as esbuild from 'esbuild'; import type { Paths } from '../../utils/createPaths'; import getClientEnvironment from './getClientEnvironment'; -import createEsbuildBrowserslistTarget from '../../utils/createEsbuildBrowserslistTarget'; import * as logger from '../../utils/logger'; import moduleScopePlugin from '../plugins/moduleScopePlugin'; @@ -30,9 +29,9 @@ export default function createEsbuildConfig( }, ); - const target = createEsbuildBrowserslistTarget(paths.appPath); - - logger.debug(`Using target: ${target.join(', ')}`); + logger.debug( + `Using target: ${(partialConfig.target as string[]).join(', ')}`, + ); return { entryPoints: [paths.appIndexJs], @@ -60,7 +59,7 @@ export default function createEsbuildConfig( '.js': 'jsx', }, logLevel: 'silent', - target, + target: partialConfig.target, format: 'esm', color: !isCi, define, diff --git a/packages/modular-scripts/src/esbuild-scripts/plugins/rewriteDependenciesPlugin.ts b/packages/modular-scripts/src/esbuild-scripts/plugins/rewriteDependenciesPlugin.ts new file mode 100644 index 000000000..369d74c71 --- /dev/null +++ b/packages/modular-scripts/src/esbuild-scripts/plugins/rewriteDependenciesPlugin.ts @@ -0,0 +1,140 @@ +import * as esbuild from 'esbuild'; +import type { Dependency } from '@schemastore/package'; + +export function createRewriteDependenciesPlugin( + externalDependencies: Dependency, + target?: string[], +): esbuild.Plugin { + const externalCdnTemplate = + process.env.EXTERNAL_CDN_TEMPLATE ?? + 'https://cdn.skypack.dev/[name]@[version]'; + + const importMap: Record = Object.entries( + externalDependencies, + ).reduce( + (acc, [name, version]) => ({ + ...acc, + [name]: externalCdnTemplate + .replace('[name]', name) + .replace('[version]', version), + }), + {}, + ); + + const dependencyRewritePlugin: esbuild.Plugin = { + name: 'dependency-rewrite', + setup(build) { + // Don't want to load global css more than once + const globalCSSMap: Map = new Map(); + // Filter on external dependencies + build.onResolve( + { filter: /^[a-z0-9-~]|@/, namespace: 'file' }, + (args) => { + // Get name and eventual submodule to construct the url + const { dependencyName, submodule } = parsePackageName(args.path); + // Find dependency name (no submodule) in the pre-built import map + if (dependencyName in importMap) { + // Rewrite the path taking the submodule into account + const path = `${importMap[dependencyName]}${ + submodule ? `/${submodule}` : '' + }`; + if (submodule.endsWith('.css')) { + // This is a global CSS import from the CDN. + if (target && target.every((target) => target === 'esnext')) { + // If target is esnext we can use CSS module scripts - https://web.dev/css-module-scripts/ + // esbuild supports them only on an `esnext` target, otherwise the assertion is removed - https://github.com/evanw/esbuild/issues/1871 + // We must create a variable name to not clash with anything else though + const variableName = + `__sheet_${dependencyName}_${submodule}`.replace( + /[\W_]+/g, + '_', + ); + return { + path, + namespace: 'rewritable-css-import-css-module-scripts', + pluginData: { variableName }, + }; + } + // Fall back to link injection if we don't support CSS module scripts + // We want to ignore this import if it's been already imported before (no need to inject it twice into the HEAD) + const namespace = globalCSSMap.get(path) + ? 'rewritable-css-import-ignore' + : 'rewritable-css-import'; + // Set it in the "allready done" map + globalCSSMap.set(path, true); + return { + path, + namespace, + }; + } + // Just rewrite and mark as external. It will be ignored the next resolve cycle + return { + path, + external: true, + } as esbuild.OnResolveResult; + } else { + // Dependency has been filtered out: ignore and bundle + return {}; + } + }, + ); + build.onLoad( + { filter: /^[a-z0-9-~]|@/, namespace: 'rewritable-css-import' }, + (args) => { + return { + contents: ` + const link = document.createElement('link'); + link.rel = 'stylesheet'; + link.type = 'text/css'; + link.href = '${args.path}'; + document.getElementsByTagName('HEAD')[0].appendChild(link); + `, + }; + }, + ); + build.onLoad( + { filter: /^[a-z0-9-~]|@/, namespace: 'rewritable-css-import-ignore' }, + (args) => { + return { + contents: ` + /* Ignored CSS import at path ${args.path} */ + `, + }; + }, + ); + build.onLoad( + { + filter: /^[a-z0-9-~]|@/, + namespace: 'rewritable-css-import-css-module-scripts', + }, + (args) => { + const { variableName } = args.pluginData as { variableName: string }; + return { + contents: ` + import ${variableName} from '${args.path}' assert { type: 'css' }; + document.adoptedStyleSheets = [...document.adoptedStyleSheets, ${variableName}]; + `, + }; + }, + ); + build.onStart(() => { + // Clear the map on start, for incremental mode + globalCSSMap.clear(); + }); + }, + }; + return dependencyRewritePlugin; +} + +const packageRegex = + /^(@[a-z0-9-~][a-z0-9-._~]*)?\/?([a-z0-9-~][a-z0-9-._~]*)\/?(.*)/; +function parsePackageName(name: string) { + const parsedName = packageRegex.exec(name); + if (!parsedName) { + throw new Error(`Can't parse package name: ${name}`); + } + /* eslint-disable @typescript-eslint/no-unused-vars */ + const [_, scope, module, submodule] = parsedName; + const dependencyName = (scope ? `${scope}/` : '') + module; + return { dependencyName, scope, module, submodule }; +} diff --git a/packages/modular-scripts/src/esbuild-scripts/start/index.ts b/packages/modular-scripts/src/esbuild-scripts/start/index.ts index c1de9ef20..fee895b60 100644 --- a/packages/modular-scripts/src/esbuild-scripts/start/index.ts +++ b/packages/modular-scripts/src/esbuild-scripts/start/index.ts @@ -1,6 +1,7 @@ import * as esbuild from 'esbuild'; import chalk from 'chalk'; import * as express from 'express'; +import type { RequestHandler } from 'express'; import ws from 'express-ws'; import * as fs from 'fs-extra'; import * as http from 'http'; @@ -24,13 +25,16 @@ import firstCompilePlugin from './plugins/firstCompile'; import openBrowser from '../utils/openBrowser'; import * as logger from '../../utils/logger'; import prepareUrls, { InstructionURLS } from '../config/urls'; -import { createIndex } from '../api'; +import { createIndex, indexFile, createViewTrampoline } from '../api'; import createEsbuildConfig from '../config/createEsbuildConfig'; import createLaunchEditorMiddleware from '../../../react-dev-utils/errorOverlayMiddleware.js'; import getHost from './utils/getHost'; import getPort from './utils/getPort'; import sanitizeMetafile, { sanitizeFileName } from '../utils/sanitizeMetafile'; import getModularRoot from '../../utils/getModularRoot'; +import { createRewriteDependenciesPlugin } from '../plugins/rewriteDependenciesPlugin'; +import createEsbuildBrowserslistTarget from '../../utils/createEsbuildBrowserslistTarget'; +import type { Dependency } from '@schemastore/package'; const RUNTIME_DIR = path.join(__dirname, 'runtime'); class DevServer { @@ -58,11 +62,23 @@ class DevServer { private urls: InstructionURLS; private port: number; - constructor(paths: Paths, urls: InstructionURLS, host: string, port: number) { + private isApp: boolean; // TODO maybe it's better to pass the type here + private dependencies: Dependency; + + constructor( + paths: Paths, + urls: InstructionURLS, + host: string, + port: number, + isApp: boolean, + dependencies: Dependency, + ) { this.paths = paths; this.urls = urls; this.host = host; this.port = port; + this.isApp = isApp; + this.dependencies = dependencies; this.firstCompilePromise = new Promise((resolve) => { this.firstCompilePromiseResolve = resolve; @@ -74,6 +90,11 @@ class DevServer { this.ws = ws(this.express); this.express.use(this.handleStaticAsset); + this.isApp || + this.express.get( + '/static/js/_trampoline.js', + this.handleTrampoline as RequestHandler, + ); this.express.use('/static/js', this.handleStaticAsset); this.express.use(this.handleRuntimeAsset); @@ -170,12 +191,17 @@ class DevServer { }); baseEsbuildConfig = memoize(() => { + const browserTarget = createEsbuildBrowserslistTarget(this.paths.appPath); return createEsbuildConfig(this.paths, { write: false, minify: false, entryNames: 'static/js/[name]', chunkNames: 'static/js/[name]', assetNames: 'static/media/[name]', + target: browserTarget, + plugins: this.isApp + ? undefined + : [createRewriteDependenciesPlugin(this.dependencies, browserTarget)], }); }); @@ -235,7 +261,35 @@ class DevServer { await this.firstCompilePromise; res.writeHead(200); - res.end(await createIndex(this.paths, this.metafile, this.env.raw, true)); + if (this.isApp) { + res.end(await createIndex(this.paths, this.metafile, this.env.raw, true)); + } else { + res.end( + await createIndex( + this.paths, + this.metafile, + this.env.raw, + true, + indexFile, + ), + ); + } + }; + + handleTrampoline = async ( + _: http.IncomingMessage, + res: http.ServerResponse, + ) => { + res.setHeader('content-type', 'application/javascript'); + res.writeHead(200); + const baseConfig = this.baseEsbuildConfig(); + const trampolineBuildResult = await createViewTrampoline( + 'index.js', + this.paths.appSrc, + this.dependencies, + baseConfig.target as string[], + ); + res.end(trampolineBuildResult.outputFiles[0].text); }; private serveEsbuild = ( @@ -296,7 +350,11 @@ class DevServer { }; } -export default async function start(target: string): Promise { +export default async function start( + target: string, + isApp: boolean, + packageDependencies: Dependency, +): Promise { const paths = await createPaths(target); const host = getHost(); const port = await getPort(host); @@ -306,7 +364,14 @@ export default async function start(target: string): Promise { port, paths.publicUrlOrPath.slice(0, -1), ); - const devServer = new DevServer(paths, urls, host, port); + const devServer = new DevServer( + paths, + urls, + host, + port, + isApp, + packageDependencies, + ); const server = await devServer.start(); diff --git a/packages/modular-scripts/src/esbuild-scripts/utils/openBrowser.ts b/packages/modular-scripts/src/esbuild-scripts/utils/openBrowser.ts index 0018a8cf6..7a4dd3f2e 100644 --- a/packages/modular-scripts/src/esbuild-scripts/utils/openBrowser.ts +++ b/packages/modular-scripts/src/esbuild-scripts/utils/openBrowser.ts @@ -14,7 +14,7 @@ enum Actions { SCRIPT = 'Script', } -const DEFAULT_BROWSER = process.env.BROWSER || OSX_CHROME; +const DEFAULT_BROWSER = process.env.BROWSER; const DEFAULT_BROWSER_ARGS = process.env.BROWSER_ARGS ? process.env.BROWSER_ARGS.split(' ') : []; @@ -143,7 +143,8 @@ export default async function openBrowser(url: string): Promise { // Special case: BROWSER="none" will prevent opening completely. return false; case Actions.SCRIPT: - return executeNodeScript(value, url); + // Value will always be string if action is SCRIPT. + return executeNodeScript(value as string, url); case Actions.BROWSER: return startBrowserProcess(value, url, args); default: diff --git a/packages/modular-scripts/src/serve.ts b/packages/modular-scripts/src/serve.ts index eff748376..738d73b18 100644 --- a/packages/modular-scripts/src/serve.ts +++ b/packages/modular-scripts/src/serve.ts @@ -10,7 +10,10 @@ import isModularType from './utils/isModularType'; async function serve(target: string, port = 3000): Promise { const targetLocation = await getLocation(target); - if (isModularType(targetLocation, 'app')) { + if ( + isModularType(targetLocation, 'app') || + isModularType(targetLocation, 'view') + ) { const paths = await createPaths(target); if (fs.existsSync(paths.appBuild)) { @@ -25,7 +28,7 @@ async function serve(target: string, port = 3000): Promise { ); } } else { - throw new Error(`Modular can only serve an app.`); + throw new Error(`Modular can only serve an app or a view.`); } } diff --git a/packages/modular-scripts/src/start.ts b/packages/modular-scripts/src/start.ts index 0f0ccce33..cfca7b8fc 100644 --- a/packages/modular-scripts/src/start.ts +++ b/packages/modular-scripts/src/start.ts @@ -4,7 +4,6 @@ import actionPreflightCheck from './utils/actionPreflightCheck'; import isModularType from './utils/isModularType'; import execAsync from './utils/execAsync'; import getLocation from './utils/getLocation'; -import stageView from './utils/stageView'; import getModularRoot from './utils/getModularRoot'; import getWorkspaceInfo from './utils/getWorkspaceInfo'; import { setupEnvForDirectory } from './utils/setupEnv'; @@ -14,6 +13,8 @@ import createPaths from './utils/createPaths'; import * as logger from './utils/logger'; import createEsbuildBrowserslistTarget from './utils/createEsbuildBrowserslistTarget'; import prompts from 'prompts'; +import { getPackageDependencies } from './utils/getPackageDependencies'; +import { filterDependencies } from './utils/filterDependencies'; async function start(packageName: string): Promise { let target = packageName; @@ -43,23 +44,14 @@ async function start(packageName: string): Promise { ); } - /** - * If we're trying to start a view then we first need to stage out the - * view into an 'app' directory which can be built. - */ - let startPath: string; - if (isModularType(targetPath, 'view')) { - startPath = stageView(target); - } else { - startPath = targetPath; + const isView = isModularType(targetPath, 'view'); - // in the case we're an app then we need to make sure that users have no incorrectly - // setup their app folder. - const paths = await createPaths(target); - await checkRequiredFiles([paths.appHtml, paths.appIndexJs]); - } + const paths = await createPaths(target); + isView + ? await checkRequiredFiles([paths.appIndexJs]) + : await checkRequiredFiles([paths.appHtml, paths.appIndexJs]); - await checkBrowsers(startPath); + await checkBrowsers(targetPath); // True if there's no preference set - or the preference is for webpack. const useWebpack = @@ -71,13 +63,17 @@ async function start(packageName: string): Promise { process.env.USE_MODULAR_ESBUILD && process.env.USE_MODULAR_ESBUILD === 'true'; + const packageDependencies = await getPackageDependencies(target); + const { external: externalDependencies, bundled: bundledDependencies } = + filterDependencies(packageDependencies, !isView); + // If you want to use webpack then we'll always use webpack. But if you've indicated // you want esbuild - then we'll switch you to the new fancy world. if (!useWebpack || useEsbuild) { const { default: startEsbuildApp } = await import( './esbuild-scripts/start' ); - await startEsbuildApp(target); + await startEsbuildApp(target, !isView, externalDependencies); } else { const startScript = require.resolve( 'modular-scripts/react-scripts/scripts/start.js', @@ -90,7 +86,7 @@ async function start(packageName: string): Promise { logger.debug(`Using target: ${browserTarget.join(', ')}`); await execAsync('node', [startScript], { - cwd: startPath, + cwd: targetPath, log: false, // @ts-ignore env: { @@ -98,6 +94,11 @@ async function start(packageName: string): Promise { MODULAR_ROOT: modularRoot, MODULAR_PACKAGE: target, MODULAR_PACKAGE_NAME: targetName, + MODULAR_IS_APP: JSON.stringify(!isView), + MODULAR_PACKAGE_DEPS: JSON.stringify({ + externalDependencies, + bundledDependencies, + }), }, }); } diff --git a/packages/modular-scripts/src/utils/filterDependencies.ts b/packages/modular-scripts/src/utils/filterDependencies.ts new file mode 100644 index 000000000..9a022dc3d --- /dev/null +++ b/packages/modular-scripts/src/utils/filterDependencies.ts @@ -0,0 +1,37 @@ +import type { Dependency } from '@schemastore/package'; + +interface FilteredDependencies { + external: Dependency; + bundled: Dependency; +} + +// Filter out dependencies that are in blocklist +export function filterDependencies( + packageDependencies: Dependency, + isApp: boolean, +): FilteredDependencies { + if (isApp) { + return { + bundled: packageDependencies, + external: {}, + }; + } + const externalBlockList = + process.env.EXTERNAL_BLOCK_LIST && !isApp + ? process.env.EXTERNAL_BLOCK_LIST.split(',') + : []; + return Object.entries(packageDependencies).reduce( + (acc, [name, version]) => { + if (externalBlockList.includes(name)) { + acc.bundled[name] = version; + } else { + acc.external[name] = version; + } + return acc; + }, + { + external: {}, + bundled: {}, + }, + ); +} diff --git a/packages/modular-scripts/src/utils/stageView.ts b/packages/modular-scripts/src/utils/stageView.ts deleted file mode 100644 index e16fd1b64..000000000 --- a/packages/modular-scripts/src/utils/stageView.ts +++ /dev/null @@ -1,66 +0,0 @@ -import * as fs from 'fs-extra'; -import path from 'path'; -import { pascalCase as toPascalCase } from 'change-case'; -import getModularRoot from './getModularRoot'; -import getAllFiles from './getAllFiles'; - -export default function stageView(targetedView: string): string { - const modularRoot = getModularRoot(); - - const tempDir = path.join(modularRoot, 'node_modules', '.modular'); - if (!fs.existsSync(tempDir)) { - fs.mkdirSync(tempDir); - } - const stagedViewAppPath = path.join(tempDir, targetedView); - if (!fs.existsSync(`${tempDir}/${targetedView}`)) { - const appTypePath = path.join(__dirname, '../../types', 'app-view'); - fs.mkdirSync(`${tempDir}/${targetedView}`); - fs.copySync(appTypePath, stagedViewAppPath); - - const packageFilePaths = getAllFiles(stagedViewAppPath); - - for (const packageFilePath of packageFilePaths) { - fs.writeFileSync( - packageFilePath, - fs - .readFileSync(packageFilePath, 'utf8') - .replace(/PackageName__/g, toPascalCase(targetedView)) - .replace(/ComponentName__/g, toPascalCase(targetedView)), - ); - if (path.basename(packageFilePath) === 'packagejson') { - fs.moveSync( - packageFilePath, - packageFilePath.replace('packagejson', 'package.json'), - ); - } - } - } - - // This optimizes repeated modular start executions. If a tsconfig.json is present - // we assume that this view has been staged before and we do not need to write to the index.tsx - // file or write a tsconfig.json again - if (!fs.existsSync(path.join(stagedViewAppPath, 'tsconfig.json'))) { - const indexTemplate = `import * as React from 'react'; -import * as ReactDOM from 'react-dom'; - -import App from '${targetedView}'; - -ReactDOM.render( - , - document.getElementById('root'), -);`; - fs.writeFileSync( - path.join(stagedViewAppPath, 'src', 'index.tsx'), - indexTemplate, - ); - fs.writeJSONSync( - path.join(stagedViewAppPath, 'tsconfig.json'), - { - extends: - path.relative(stagedViewAppPath, modularRoot) + '/tsconfig.json', - }, - { spaces: 2 }, - ); - } - return stagedViewAppPath; -} diff --git a/yarn.lock b/yarn.lock index c55559aca..e11b451b7 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" @@ -304,9 +304,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" @@ -351,22 +351,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" @@ -417,11 +419,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" @@ -444,12 +446,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": @@ -498,10 +500,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" @@ -662,9 +664,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" @@ -804,9 +806,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" @@ -825,15 +827,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" @@ -858,9 +860,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" @@ -929,7 +931,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== @@ -1009,6 +1011,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" @@ -1042,17 +1124,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" @@ -1658,11 +1740,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" @@ -1705,16 +1782,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": @@ -1833,13 +1910,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" @@ -1886,10 +1963,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" @@ -1898,14 +1975,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" @@ -1963,22 +2040,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" @@ -2029,9 +2090,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" @@ -2198,10 +2259,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" @@ -2217,13 +2278,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": @@ -2256,7 +2317,7 @@ dependencies: defer-to-connect "^1.0.1" -"@testing-library/dom@8.11.4", "@testing-library/dom@^8.0.0": +"@testing-library/dom@8.11.4": version "8.11.4" resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.11.4.tgz#dc94d830b862e7a20686b0379eefd931baf0445b" integrity sha512-7vZ6ZoBEbr6bfEM89W1nzl0vHbuI0g0kRrI0hwSXH3epnuqGO3KulFLQCKfmmW+60t7e4sevAkJPASSMmnNCRw== @@ -2284,6 +2345,20 @@ lz-string "^1.4.4" pretty-format "^26.6.2" +"@testing-library/dom@^8.0.0": + version "8.11.3" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.11.3.tgz#38fd63cbfe14557021e88982d931e33fb7c1a808" + integrity sha512-9LId28I+lx70wUiZjLvi1DB/WT2zGOxUh46glrSNMaWVx849kKAluezVzZrXJfTKKoQTmEOutLes/bHg4Bj3aA== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/runtime" "^7.12.5" + "@types/aria-query" "^4.2.0" + aria-query "^5.0.0" + chalk "^4.1.0" + dom-accessibility-api "^0.5.9" + lz-string "^1.4.4" + pretty-format "^27.0.2" + "@testing-library/jest-dom@5.16.2": version "5.16.2" resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.16.2.tgz#f329b36b44aa6149cd6ced9adf567f8b6aa1c959" @@ -2462,10 +2537,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" @@ -2534,12 +2625,12 @@ dependencies: "@types/node" "*" -"@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/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/http-proxy@^1.17.5": +"@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" integrity sha512-5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA== @@ -2573,11 +2664,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": @@ -2593,7 +2684,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== @@ -2636,9 +2727,9 @@ integrity sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw== "@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" @@ -2661,9 +2752,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" @@ -2716,9 +2807,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" "*" @@ -2795,25 +2886,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" "*" @@ -2822,13 +2903,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" @@ -2837,38 +2911,17 @@ "@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.2.2": - version "8.2.2" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.2.2.tgz#7c5be4decb19500ae6b3d563043cd407bf366c21" - integrity sha512-NOn5eIcgWLOo6qW8AcuLZ7G8PycXu0xTxxkS6Q18VWFxgPUSOwV0pBj2a/4viNZVu25i7RIB7GttdkAIUUXOOg== + version "8.5.2" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.2.tgz#77e0c2e360e9579da930ffcfa53c5975ea3bdd26" + integrity sha512-VXI82ykONr5tacHEojnErTQk+KQSoYbW1NB6iz6wUwrNd+BqfkfggQNoNdCqhJSzbNumShPERbM+Pc5zpfhlbw== dependencies: "@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" @@ -2961,149 +3014,125 @@ "@typescript-eslint/types" "4.33.0" eslint-visitor-keys "^2.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/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-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/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/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/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: - "@webassemblyjs/ast" "1.9.0" - "@webassemblyjs/wast-parser" "1.9.0" + "@xtuc/ieee754" "^1.2.0" + +"@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: + "@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": @@ -3152,6 +3181,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" @@ -3167,17 +3201,12 @@ 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" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.2.4, acorn@^8.4.1: +acorn@^8.2.4, acorn@^8.4.1, acorn@^8.5.0: version "8.7.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== @@ -3210,11 +3239,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" @@ -3222,7 +3246,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== @@ -3234,7 +3258,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== @@ -3245,20 +3269,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" @@ -3283,11 +3302,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" @@ -3330,7 +3344,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== @@ -3338,11 +3352,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" @@ -3459,24 +3468,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" @@ -3492,11 +3483,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" @@ -3514,6 +3500,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" @@ -3537,9 +3528,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" @@ -3619,12 +3610,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" @@ -3699,7 +3690,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== @@ -3734,23 +3725,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" @@ -3760,21 +3739,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" @@ -3851,7 +3815,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== @@ -3881,77 +3845,11 @@ 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.19.1: version "4.19.1" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.19.1.tgz#4ac0435b35ab655896c31d53018b6dd5e9e4c9a3" @@ -3963,7 +3861,7 @@ browserslist@4.19.1: node-releases "^2.0.1" picocolors "^1.0.0" -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.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== @@ -3974,6 +3872,17 @@ browserslist@^4.0.0, browserslist@^4.16.0, browserslist@^4.16.6, 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" @@ -4003,20 +3912,6 @@ buffer-indexof@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== -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" @@ -4030,11 +3925,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" @@ -4045,51 +3935,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" @@ -4131,7 +3976,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== @@ -4173,6 +4018,11 @@ caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001286: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001300.tgz#11ab6c57d3eb6f964cba950401fd00a146786468" integrity sha512-cVjiJHWGcNlJi8TZVKNMnvMid3Z3TTdDHmLDzlOdIiZq138Exvo0G+G0wTdVYolxKb4AYwC+38pxodiInVtJSA== +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== + caniuse-lite@^1.0.30001317: version "1.0.30001319" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001319.tgz#eb4da4eb3ecdd409f7ba1907820061d56096e88f" @@ -4247,6 +4097,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" @@ -4259,26 +4114,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== @@ -4298,11 +4134,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" @@ -4323,14 +4154,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" @@ -4346,10 +4169,10 @@ 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== +clean-css@^5.2.2: + version "5.2.4" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.2.4.tgz#982b058f8581adb2ae062520808fb2429bd487a4" + integrity sha512-nKseG8wCzEuji/4yrgM/5cthL9oTDc5UOQyFMvW/Q53oP6gLH690o1NbuTh6Y18nujr7BxlsFuS7gXLnLzKJGg== dependencies: source-map "~0.6.0" @@ -4492,7 +4315,7 @@ commander@9.1.0: resolved "https://registry.yarnpkg.com/commander/-/commander-9.1.0.tgz#a6b263b2327f2e188c6402c42623327909f2dbec" integrity sha512-i0/MaqBtdbnJ4XQs4Pmyb+oFQl+q0lsAmokVUH92SlSw4fkeAcG3bVon+Qt7hmtF+u3Het6o4VgrcY3qAoEB6w== -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== @@ -4542,16 +4365,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" @@ -4581,11 +4394,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" @@ -4595,11 +4403,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" @@ -4629,35 +4432,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" @@ -4665,9 +4456,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" @@ -4696,37 +4487,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" @@ -4749,7 +4509,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== @@ -4785,23 +4545,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" @@ -4836,23 +4579,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" @@ -4935,52 +4686,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" @@ -5009,9 +4760,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" @@ -5038,11 +4789,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" @@ -5561,7 +5307,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== @@ -5614,14 +5360,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" @@ -5665,25 +5403,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" @@ -5726,9 +5455,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" @@ -5754,11 +5483,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" @@ -5840,16 +5564,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" @@ -5865,24 +5579,16 @@ electron-to-chromium@^1.4.17: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.46.tgz#c88a6fedc766589826db0481602a888864ade1ca" integrity sha512-UtV0xUA/dibCKKP2JMxOpDtXR74zABevuUEH4K0tvduFSIoxRVcYmQsbB51kXsFTX8MmOyWMt8tuZAlmDOqkrQ== +electron-to-chromium@^1.4.76: + version "1.4.93" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.93.tgz#2e87ac28721cb31d472ec2bd04f7daf9f2e13de2" + integrity sha512-ywq9Pc5Gwwpv7NG767CtoU8xF3aAUQJjH9//Wy3MBCg4w5JSLbJUq2L8IsCdzPMjvSgxuue9WcVaTOyyxCL0aQ== + 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" @@ -5908,21 +5614,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.9.2: + 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" @@ -5941,13 +5646,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" @@ -5981,6 +5679,11 @@ 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.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== + es-to-primitive@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" @@ -6280,15 +5983,7 @@ eslint-plugin-testing-library@4.12.4: dependencies: "@typescript-eslint/experimental-utils" "^4.30.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== @@ -6387,7 +6082,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== @@ -6434,19 +6129,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" @@ -6675,11 +6362,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" @@ -6694,11 +6381,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" @@ -6714,11 +6396,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" @@ -6754,30 +6431,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: @@ -6839,40 +6498,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" @@ -6910,14 +6567,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" @@ -6932,7 +6581,7 @@ fs-extra@10.0.1: 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== @@ -6950,12 +6599,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" @@ -6967,29 +6619,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" @@ -7068,14 +6702,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" @@ -7083,6 +6709,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" @@ -7124,9 +6755,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" @@ -7171,7 +6802,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== @@ -7224,9 +6855,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" @@ -7278,23 +6909,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" @@ -7308,15 +6922,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" @@ -7349,33 +6954,29 @@ 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@^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-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== dependencies: - camel-case "^4.1.1" - clean-css "^4.2.3" - commander "^4.1.1" + camel-case "^4.1.2" + clean-css "^5.2.2" + commander "^8.3.0" he "^1.2.0" - param-case "^3.0.3" + param-case "^3.0.4" 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" + terser "^5.10.0" + +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: + "@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" @@ -7419,9 +7020,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" @@ -7433,11 +7034,11 @@ http-proxy-agent@^4.0.1: debug "4" http-proxy-middleware@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.1.tgz#7ef3417a479fb7666a571e09966c66a39bd2c15f" - integrity sha512-cfaXRVoZxSed/BmkA7SwBVNI9Kj7HFltaE5rqYOub5kWzWZ+gofV2koVN1j2rMW7pEfSSlCHGJ31xmuyFyfLOg== + version "2.0.3" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.3.tgz#5df04f69a89f530c2284cd71eeaa51ba52243289" + integrity sha512-1bloEwnrHMnCoO/Gcwbz7eSVvW50KPES01PecpagI+YLNLci4AcuKJrujW4Mc3sBLpFxMSlsLNHS5Nl/lvrTPA== dependencies: - "@types/http-proxy" "^1.17.5" + "@types/http-proxy" "^1.17.8" http-proxy "^1.18.1" is-glob "^4.0.1" is-plain-obj "^3.0.0" @@ -7452,11 +7053,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" @@ -7502,28 +7098,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@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-4.0.1.tgz#fc840e8346cf88a3a9380c5b17933cd8f4d39fa3" @@ -7586,11 +7170,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" @@ -7599,16 +7178,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" @@ -7694,13 +7268,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" @@ -7803,7 +7370,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= @@ -7823,13 +7390,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" @@ -7894,7 +7454,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= @@ -7989,11 +7549,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" @@ -8006,7 +7561,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= @@ -8073,9 +7628,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" @@ -8169,15 +7724,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" @@ -8227,10 +7782,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" @@ -8295,6 +7850,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" @@ -8310,18 +7875,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" @@ -8344,9 +7909,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" @@ -8487,16 +8052,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: @@ -8538,16 +8103,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: @@ -8558,7 +8123,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== @@ -8567,6 +8132,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" @@ -8760,7 +8334,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== @@ -8777,14 +8351,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" @@ -8844,16 +8410,16 @@ lint-staged@12.3.7: 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" @@ -8872,28 +8438,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" @@ -8904,11 +8457,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" @@ -8939,10 +8487,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" @@ -8981,7 +8529,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== @@ -9028,13 +8576,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" @@ -9048,13 +8589,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== @@ -9062,7 +8603,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== @@ -9103,15 +8644,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" @@ -9127,29 +8659,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" @@ -9187,11 +8703,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.4, micromatch@^4.0.2, micromatch@^4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" @@ -9200,7 +8711,7 @@ micromatch@4.0.4, micromatch@^4.0.2, micromatch@^4.0.4: braces "^3.0.1" picomatch "^2.2.3" -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== @@ -9219,19 +8730,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" @@ -9264,26 +8772,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" @@ -9319,62 +8819,10 @@ 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" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== dependencies: for-in "^1.0.2" is-extendable "^1.0.1" @@ -9389,12 +8837,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== @@ -9406,18 +8854,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" @@ -9446,11 +8882,6 @@ multicast-dns@^6.0.1: dns-packet "^1.3.1" 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" @@ -9483,7 +8914,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== @@ -9518,35 +8949,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" @@ -9559,12 +8961,7 @@ node-notifier@^8.0.0: uuid "^8.3.0" which "^2.0.2" -node-releases@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.1.tgz#3d1d395f204f1f2f29a54358b9fb678765ad2fc5" - integrity sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA== - -node-releases@^2.0.2: +node-releases@^2.0.1, node-releases@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.2.tgz#7139fe71e2f4f11b47d4d2986aaf8c48699e0c01" integrity sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg== @@ -9601,16 +8998,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" @@ -9681,7 +9068,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= @@ -9730,7 +9117,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== @@ -9748,7 +9135,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== @@ -9838,15 +9225,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" @@ -9871,11 +9249,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" @@ -10026,21 +9399,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== @@ -10055,17 +9414,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" @@ -10118,11 +9466,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" @@ -10136,11 +9479,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" @@ -10186,17 +9524,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" @@ -10233,24 +9560,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" @@ -10258,10 +9578,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" @@ -10293,13 +9613,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" @@ -10329,22 +9649,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" @@ -10372,25 +9692,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" @@ -10459,23 +9779,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" @@ -10487,80 +9805,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" @@ -10570,14 +9869,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" @@ -10585,14 +9876,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" @@ -10601,9 +9884,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" @@ -10621,66 +9904,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" @@ -10700,12 +9983,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: @@ -10781,18 +10064,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" @@ -10815,7 +10098,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== @@ -10831,28 +10114,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== @@ -10861,7 +10143,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== @@ -10869,6 +10151,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" @@ -10897,11 +10188,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" @@ -10917,13 +10203,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" @@ -10935,10 +10221,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" @@ -10949,21 +10235,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" @@ -11006,11 +10282,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" @@ -11021,26 +10292,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" @@ -11049,25 +10300,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" @@ -11108,24 +10340,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" @@ -11136,21 +10350,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" @@ -11255,7 +10461,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== @@ -11268,7 +10474,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== @@ -11277,15 +10483,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" @@ -11308,10 +10505,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" @@ -11368,15 +10565,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" @@ -11394,15 +10591,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" @@ -11421,16 +10618,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" @@ -11484,10 +10681,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" @@ -11568,27 +10765,21 @@ 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.7.2: - version "4.7.2" - resolved "https://registry.yarnpkg.com/rollup-plugin-esbuild/-/rollup-plugin-esbuild-4.7.2.tgz#1a496a9f96257cdf5ed800e818932859232471f8" - integrity sha512-rBS2hTedtG+wL/yyIWQ84zju5rtfF15gkaCLN0vsWGmBdRd0UPm52meAwkmrsPQf3mB/H2o+k9Q8Ce8A66SE5A== + version "4.8.2" + resolved "https://registry.yarnpkg.com/rollup-plugin-esbuild/-/rollup-plugin-esbuild-4.8.2.tgz#c097b93cd4b622e62206cadb5797589f548cf48c" + integrity sha512-wsaYNOjzTb6dN1qCIZsMZ7Q0LWiPJklYs2TDI8vJA2LUbvtPUY+17TC8C0vSat3jPMInfR9XWKdA7ttuwkjsGQ== dependencies: "@rollup/pluginutils" "^4.1.1" + debug "^4.3.3" + es-module-lexer "^0.9.3" joycon "^3.0.1" jsonc-parser "^3.0.0" @@ -11637,19 +10828,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== @@ -11661,7 +10845,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.0.1, 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== @@ -11678,7 +10862,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== @@ -11703,16 +10887,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" @@ -11734,25 +10915,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== @@ -11850,17 +11022,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" @@ -11902,7 +11067,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= @@ -11917,14 +11082,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" @@ -11969,9 +11126,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" @@ -12072,14 +11229,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== @@ -12108,7 +11258,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== @@ -12136,7 +11286,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== @@ -12210,20 +11360,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" @@ -12249,38 +11385,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" @@ -12288,11 +11392,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" @@ -12326,9 +11425,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" @@ -12376,7 +11475,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== @@ -12397,13 +11496,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" @@ -12460,20 +11552,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: @@ -12495,6 +11584,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" @@ -12566,12 +11662,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== @@ -12597,18 +11693,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" @@ -12622,50 +11706,23 @@ 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" + jest-worker "^27.4.5" + schema-utils "^3.1.1" + serialize-javascript "^6.0.0" 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" - 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.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.10.0, 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" @@ -12694,14 +11751,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" @@ -12712,13 +11761,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" @@ -12743,11 +11785,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" @@ -12896,11 +11933,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" @@ -12972,11 +12004,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.2: version "4.6.2" resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.2.tgz#fe12d2727b708f4eef40f51598b3398baa9611d4" @@ -13038,20 +12065,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" @@ -13087,11 +12100,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" @@ -13154,14 +12162,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" @@ -13172,14 +12172,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" @@ -13190,20 +12182,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" @@ -13251,11 +12229,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" @@ -13282,23 +12255,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" @@ -13376,23 +12339,13 @@ webpack-dev-server@4.7.4: 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" @@ -13402,34 +12355,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.70.0: + version "5.70.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.70.0.tgz#3461e6287a72b5e6e2f4872700bc8de0d7500e6d" + integrity sha512-ZMWWy8CeuTTjCxbeaQI21xSswseF2oNOwc70QSKNePvmxE7XW36i7vpBMYZFAUHPwQiEbNGCEYIOOlyRbdGmxw== + 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.9.2" + 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" @@ -13524,20 +12483,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" @@ -13584,9 +12529,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" @@ -13603,11 +12548,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" @@ -13618,11 +12558,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"