diff --git a/.changeset/tidy-eagles-cover.md b/.changeset/tidy-eagles-cover.md new file mode 100644 index 000000000000..457879fe64b2 --- /dev/null +++ b/.changeset/tidy-eagles-cover.md @@ -0,0 +1,7 @@ +--- +'@modern-js/doc-core': patch +--- + +feat: add doc medium-zoom plugin + +feat: 增加 medium-zoom 插件 diff --git a/packages/builder/builder-shared/tests/plugins/__snapshots__/AutoSetRootFontSizePlugin.test.ts.snap b/packages/builder/builder-shared/tests/plugins/__snapshots__/AutoSetRootFontSizePlugin.test.ts.snap index 9e88fff1653b..0f2d1f737655 100644 --- a/packages/builder/builder-shared/tests/plugins/__snapshots__/AutoSetRootFontSizePlugin.test.ts.snap +++ b/packages/builder/builder-shared/tests/plugins/__snapshots__/AutoSetRootFontSizePlugin.test.ts.snap @@ -57,7 +57,7 @@ exports[`test getRootPixelCode > should getRootPixelCode with custom options 1`] typeof window !== 'undefined' && setRootPixel();" `; -exports[`test getRootPixelCode > should getRootPixelCode with custom options 2`] = `"function setRootPixel(){function n(n){return(new RegExp(\\"[?&]\\"+n+\\"=([^&#\\\\b]+)\\").exec(location.search||\\"\\")||[])[1]}function e(){var e,i=\\"widthKey\\",t=document.documentElement;if(i&&+n(i))e=+n(i);else if(e=window.innerWidth&&t.clientWidth?Math.min(window.innerWidth,t.clientWidth):window.innerWidth||t.clientWidth||document.body&&document.body.clientWidth||750,(screen.orientation&&screen.orientation.angle||window.orientation)/90%2){var o=window.innerHeight&&t.clientHeight?Math.min(window.innerHeight,t.clientHeight):window.innerHeight||t.clientHeight||document.body&&document.body.clientHeight||750;e=Math.max(o,350)}var d=5*e/750;d=d<64?d:5,window.ROOT_FONT_SIZE=d,t.style.fontSize=d+\\"px\\"}function i(n){n?e():setTimeout(e,30)}i(!0),window.addEventListener(\\"resize\\",i,!1),\\"onorientationchange\\"in window&&window.addEventListener(\\"orientationchange\\",i,!1)}\\"undefined\\"!=typeof window&&setRootPixel();"`; +exports[`test getRootPixelCode > should getRootPixelCode with custom options 2`] = `"function setRootPixel(){function n(n){return(new RegExp(\\"[?&]\\"+n+\\"=([^&#\\\\b]+)\\").exec(location.search||\\"\\")||[])[1]}function e(){var e,i=\\"widthKey\\",t=document.documentElement;if(+n(i))e=+n(i);else if(e=window.innerWidth&&t.clientWidth?Math.min(window.innerWidth,t.clientWidth):window.innerWidth||t.clientWidth||document.body&&document.body.clientWidth||750,(screen.orientation&&screen.orientation.angle||window.orientation)/90%2){var o=window.innerHeight&&t.clientHeight?Math.min(window.innerHeight,t.clientHeight):window.innerHeight||t.clientHeight||document.body&&document.body.clientHeight||750;e=Math.max(o,350)}var d=5*e/750;d=d<64?d:5,window.ROOT_FONT_SIZE=d,t.style.fontSize=d+\\"px\\"}function i(n){n?e():setTimeout(e,30)}i(!0),window.addEventListener(\\"resize\\",i,!1),\\"onorientationchange\\"in window&&window.addEventListener(\\"orientationchange\\",i,!1)}\\"undefined\\"!=typeof window&&setRootPixel();"`; exports[`test getRootPixelCode > should getRootPixelCode with default options 1`] = ` "function setRootPixel() { diff --git a/packages/cli/doc-core/package.json b/packages/cli/doc-core/package.json index b89a44b5d365..cca6785cafc8 100644 --- a/packages/cli/doc-core/package.json +++ b/packages/cli/doc-core/package.json @@ -61,6 +61,7 @@ "@modern-js/builder-rspack-provider": "workspace:*", "@modern-js/mdx-rs-binding": "^0.1.8", "@modern-js/remark-container": "workspace:*", + "@modern-js/doc-plugin-medium-zoom": "workspace:*", "@modern-js/utils": "workspace:*", "@types/compression": "^1.7.2", "@types/polka": "^0.5.4", @@ -79,7 +80,6 @@ "html-to-text": "^9.0.3", "lodash-es": "^4.17.21", "mdast-util-mdxjs-esm": "^1.3.0", - "medium-zoom": "1.0.8", "node-fetch": "3.3.0", "nprogress": "^0.2.0", "ora": "5.4.1", diff --git a/packages/cli/doc-core/src/node/build.ts b/packages/cli/doc-core/src/node/build.ts index 500d35ea0c6d..bc22b625e994 100644 --- a/packages/cli/doc-core/src/node/build.ts +++ b/packages/cli/doc-core/src/node/build.ts @@ -12,7 +12,7 @@ import { } from './constants'; import { createModernBuilder } from './createBuilder'; import { writeSearchIndex } from './searchIndex'; -import { modifyConfig, beforeBuild, afterBuild } from './hooks'; +import { modifyConfig, beforeBuild, afterBuild, loadPlugins } from './hooks'; import { logger } from './utils'; import { APPEARANCE_KEY, normalizeSlash } from '@/shared/utils'; import type { Route } from '@/node/route/RouteService'; @@ -137,6 +137,8 @@ export async function renderPages(config: UserConfig) { export async function build(rootDir: string, config: UserConfig) { const isProd = true; + await loadPlugins(config); + const modifiedConfig = await modifyConfig({ config, }); diff --git a/packages/cli/doc-core/src/node/dev.ts b/packages/cli/doc-core/src/node/dev.ts index c3647f4ebfdb..d9abac6a1549 100644 --- a/packages/cli/doc-core/src/node/dev.ts +++ b/packages/cli/doc-core/src/node/dev.ts @@ -2,7 +2,7 @@ import { UserConfig } from 'shared/types'; import { removeLeadingSlash } from '../shared/utils'; import { createModernBuilder } from './createBuilder'; import { writeSearchIndex } from './searchIndex'; -import { modifyConfig, beforeBuild, afterBuild } from './hooks'; +import { modifyConfig, beforeBuild, afterBuild, loadPlugins } from './hooks'; interface ServerInstance { close: () => Promise; @@ -14,7 +14,7 @@ export async function dev( ): Promise { const base = config.doc?.base ?? ''; const isProd = false; - + await loadPlugins(config); try { const modifiedConfig = await modifyConfig({ config, diff --git a/packages/cli/doc-core/src/node/hooks.ts b/packages/cli/doc-core/src/node/hooks.ts index 664412591c6d..7c5ced8aeab8 100644 --- a/packages/cli/doc-core/src/node/hooks.ts +++ b/packages/cli/doc-core/src/node/hooks.ts @@ -1,5 +1,4 @@ import { UserConfig, PageIndexInfo, DocPlugin } from 'shared/types'; -import { pluginLastUpdated } from './plugins/lastUpdated'; import { AdditionalPage } from '@/shared/types/Plugin'; type HookOptions = { @@ -8,20 +7,35 @@ type HookOptions = { pageData?: PageIndexInfo; }; -function getPlugins(config: UserConfig) { - const plugins: DocPlugin[] = config.doc?.plugins || []; +let docPlugins: DocPlugin[] = []; + +// The init function is used to initialize the doc plugins and will execute before the build process. +export async function loadPlugins(config: UserConfig) { + // Clear docPlugins first, for the watch mode + docPlugins = []; const enableLastUpdated = config.doc.themeConfig?.lastUpdated || config.doc.themeConfig?.locales?.some(locale => locale.lastUpdated); + const mediumZoomConfig = config.doc.mediumZoom ?? true; if (enableLastUpdated) { - plugins.push(pluginLastUpdated()); + const { pluginLastUpdated } = await import('./plugins/lastUpdated'); + docPlugins.push(pluginLastUpdated()); + } + if (mediumZoomConfig) { + const { pluginMediumZoom } = await import( + '@modern-js/doc-plugin-medium-zoom' + ); + docPlugins.push( + pluginMediumZoom( + typeof mediumZoomConfig === 'object' ? mediumZoomConfig : undefined, + ), + ); } - return plugins; + docPlugins.push(...(config.doc.plugins || [])); } export async function modifyConfig(hookOptions: HookOptions) { const { config } = hookOptions; - const docPlugins = getPlugins(config); // config hooks for (const plugin of docPlugins) { @@ -35,7 +49,6 @@ export async function modifyConfig(hookOptions: HookOptions) { export async function beforeBuild(hookOptions: HookOptions) { const { config, isProd = true } = hookOptions; - const docPlugins = getPlugins(config); // beforeBuild hooks return await Promise.all( @@ -49,7 +62,6 @@ export async function beforeBuild(hookOptions: HookOptions) { export async function afterBuild(hookOptions: HookOptions) { const { config, isProd = true } = hookOptions; - const docPlugins = getPlugins(config); // afterBuild hooks return await Promise.all( @@ -63,7 +75,6 @@ export async function afterBuild(hookOptions: HookOptions) { export async function extendPageData(hookOptions: HookOptions): Promise { const { pageData } = hookOptions; - const docPlugins = getPlugins(hookOptions.config); // extendPageData hooks await Promise.all( docPlugins @@ -78,7 +89,6 @@ export async function addPages( hookOptions: HookOptions, ): Promise { const { config } = hookOptions; - const docPlugins = getPlugins(config); // addPages hooks const result = await Promise.all( @@ -91,3 +101,23 @@ export async function addPages( return result.flat(); } + +export async function globalUIComponents(): Promise { + // globalUIComponents hooks + const result = docPlugins.map(plugin => { + return plugin.globalUIComponents || []; + }); + + return result.flat(); +} + +export async function globalStyles(): Promise { + // globalStyles hooks + const result = docPlugins + .filter(plugin => typeof plugin.globalStyles === 'string') + .map(plugin => { + return plugin.globalStyles; + }); + + return result; +} diff --git a/packages/cli/doc-core/src/node/runtimeModule/globalStyles.ts b/packages/cli/doc-core/src/node/runtimeModule/globalStyles.ts index f2d70dda0e89..d7c4c844f6af 100644 --- a/packages/cli/doc-core/src/node/runtimeModule/globalStyles.ts +++ b/packages/cli/doc-core/src/node/runtimeModule/globalStyles.ts @@ -1,18 +1,20 @@ import { join } from 'path'; +import { globalStyles } from '../hooks'; import RuntimeModulesPlugin from './RuntimeModulePlugin'; import { RuntimeModuleID } from '.'; import { UserConfig } from '@/shared/types'; -export function globalStylesVMPlugin( +export async function globalStylesVMPlugin( _scanDir: string, config: UserConfig, _isSSR: boolean, runtimeTempDir: string, ) { const modulePath = join(runtimeTempDir, `${RuntimeModuleID.GlobalStyles}.js`); + const globalStylesByPlugins = await globalStyles(); const moduleContent = [ config.doc?.globalStyles || '', - ...(config.doc?.plugins || []).map(plugin => plugin.globalStyles || ''), + ...globalStylesByPlugins, ] .filter(source => source.length > 0) .map(source => `import '${source}';`) diff --git a/packages/cli/doc-core/src/node/runtimeModule/globalUIComponents.ts b/packages/cli/doc-core/src/node/runtimeModule/globalUIComponents.ts index 9542398a4a03..1d8f374cf438 100644 --- a/packages/cli/doc-core/src/node/runtimeModule/globalUIComponents.ts +++ b/packages/cli/doc-core/src/node/runtimeModule/globalUIComponents.ts @@ -1,9 +1,10 @@ import { join } from 'path'; +import { globalUIComponents } from '../hooks'; import RuntimeModulesPlugin from './RuntimeModulePlugin'; import { RuntimeModuleID } from '.'; import { UserConfig } from '@/shared/types'; -export function globalUIComponentsVMPlugin( +export async function globalUIComponentsVMPlugin( _scanDir: string, config: UserConfig, _isSSR: boolean, @@ -14,11 +15,10 @@ export function globalUIComponentsVMPlugin( runtimeTempDir, `${RuntimeModuleID.GlobalComponents}.js`, ); + const globalUIComponentsByPlugins = await globalUIComponents(); const moduleContent = [ ...(config.doc?.globalUIComponents || []), - ...(config.doc?.plugins || []) - .map(plugin => plugin.globalUIComponents || []) - .flat(), + ...globalUIComponentsByPlugins, ] .map(source => `import Comp_${index++} from '${source}';`) .concat( diff --git a/packages/cli/doc-core/src/shared/types/index.ts b/packages/cli/doc-core/src/shared/types/index.ts index 88071ae0661b..0f34d905e0ec 100644 --- a/packages/cli/doc-core/src/shared/types/index.ts +++ b/packages/cli/doc-core/src/shared/types/index.ts @@ -119,6 +119,14 @@ export interface DocConfig { * Search options */ search?: SearchOptions; + /** + * Whether to enable medium-zoom, default is true + */ + mediumZoom?: + | boolean + | { + selector?: string; + }; } export type BaseRuntimePageInfo = Omit< diff --git a/packages/cli/doc-core/src/theme-default/layout/DocLayout/index.tsx b/packages/cli/doc-core/src/theme-default/layout/DocLayout/index.tsx index c07f02a5833c..432677a5da4d 100644 --- a/packages/cli/doc-core/src/theme-default/layout/DocLayout/index.tsx +++ b/packages/cli/doc-core/src/theme-default/layout/DocLayout/index.tsx @@ -1,7 +1,6 @@ import { useLocation } from 'react-router-dom'; import { useEffect, useState } from 'react'; import { MDXProvider } from '@mdx-js/react'; -import mediumZoom from 'medium-zoom'; import { Aside } from '../../components/Aside'; import { DocFooter } from '../../components/DocFooter'; import { useLocaleSiteData, useSidebarData } from '../../logic'; @@ -20,15 +19,6 @@ export interface DocLayoutProps { afterOutline?: React.ReactNode; } -function DocContent() { - const { pathname } = useLocation(); - useEffect(() => { - const images = document.querySelectorAll('.modern-doc img'); - mediumZoom(images); - }, [pathname]); - return ; -} - export function DocLayout(props: DocLayoutProps) { const { beforeDocFooter, beforeDoc, afterDoc, beforeOutline, afterOutline } = props; @@ -86,7 +76,7 @@ export function DocLayout(props: DocLayoutProps) {
- +
diff --git a/packages/cli/doc-core/src/theme-default/styles/base.css b/packages/cli/doc-core/src/theme-default/styles/base.css index 0efff1eeba6e..e06521810c76 100644 --- a/packages/cli/doc-core/src/theme-default/styles/base.css +++ b/packages/cli/doc-core/src/theme-default/styles/base.css @@ -60,12 +60,6 @@ button:focus-visible { height: 2px; } -/* https://github.com/francoischalifour/medium-zoom#debugging */ -.medium-zoom-overlay, -.medium-zoom-image--opened { - z-index: 999; -} - :root { --code-color-text: #414141; --code-color-background: transparent; diff --git a/packages/cli/doc-plugin-medium-zoom/.eslintrc.cjs b/packages/cli/doc-plugin-medium-zoom/.eslintrc.cjs new file mode 100644 index 000000000000..56471abf58dc --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/.eslintrc.cjs @@ -0,0 +1,11 @@ +module.exports = { + root: true, + extends: ['@modern-js'], + ignorePatterns: ['index.d.ts', 'MediumZoom.tsx'], + rules: { + '@typescript-eslint/no-non-null-assertion': 'off', + }, + parserOptions: { + project: require.resolve('./tsconfig.json'), + }, +}; diff --git a/packages/cli/doc-plugin-medium-zoom/.gitignore b/packages/cli/doc-plugin-medium-zoom/.gitignore new file mode 100644 index 000000000000..ac5a6b16c5f0 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/.gitignore @@ -0,0 +1,41 @@ +.DS_Store + +.pnp +.pnp.js +.env.local +.env.*.local +.history +.rts* +*.log* +*.pid +*.pid.* +*.report +*.lcov +lib-cov + +node_modules/ +.npm +.lock-wscript +.yarn-integrity +.node_repl_history +.nyc_output +*.tsbuildinfo +.eslintcache +.sonarlint + +dist/ +coverage/ +release/ +output/ +output_resource/ + +.vscode/**/* +!.vscode/settings.json +!.vscode/extensions.json +.idea/ + +**/*/typings/auto-generated + +.changeset/pre.json + +.pnpm-store/ diff --git a/packages/cli/doc-plugin-medium-zoom/.npmignore b/packages/cli/doc-plugin-medium-zoom/.npmignore new file mode 100644 index 000000000000..cd1639a925df --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/.npmignore @@ -0,0 +1,37 @@ +.DS_Store + +.pnp +.pnp.js +.env.local +.env.*.local +.history +.rts* +*.log* +*.pid +*.pid.* +*.report +*.lcov +lib-cov + +node_modules/ +.npm +.lock-wscript +.yarn-integrity +.node_repl_history +.nyc_output +*.tsbuildinfo +.eslintcache +.sonarlint + +coverage/ +release/ +output/ +output_resource/ +tests/ + +.vscode/**/* +!.vscode/settings.json +!.vscode/extensions.json +.idea/ + +**/*/api/typings/auto-generated diff --git a/packages/cli/doc-plugin-medium-zoom/.npmrc b/packages/cli/doc-plugin-medium-zoom/.npmrc new file mode 100644 index 000000000000..319e41e69dc9 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/.npmrc @@ -0,0 +1 @@ +strict-peer-dependencies=false diff --git a/packages/cli/doc-plugin-medium-zoom/.prettierrc b/packages/cli/doc-plugin-medium-zoom/.prettierrc new file mode 100644 index 000000000000..5393aaf2da6e --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/.prettierrc @@ -0,0 +1,5 @@ +{ + "singleQuote": true, + "trailingComma": "all", + "arrowParens": "avoid" +} diff --git a/packages/cli/doc-plugin-medium-zoom/CHANGELOG.md b/packages/cli/doc-plugin-medium-zoom/CHANGELOG.md new file mode 100644 index 000000000000..20a3485485e7 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/CHANGELOG.md @@ -0,0 +1 @@ +# @modern-js/doc-plugin-medium-zoom diff --git a/packages/cli/doc-plugin-medium-zoom/LICENSE b/packages/cli/doc-plugin-medium-zoom/LICENSE new file mode 100644 index 000000000000..a33f52674491 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Modern.js + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/cli/doc-plugin-medium-zoom/README.md b/packages/cli/doc-plugin-medium-zoom/README.md new file mode 100644 index 000000000000..52ee1471c47a --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/README.md @@ -0,0 +1,26 @@ +

+ Modern.js Logo +

+ +

Modern.js Doc

+ +

+ The Documentation Framework of Modern.js. +

+ +## Getting Started + +Please follow [Quick Start](https://modernjs.dev/doc-tools/guide/getting-started.html) to get started with Modern.js Doc. + +## Documentation + +- [English Documentation](https://modernjs.dev/doc-tools/) +- [中文文档](https://modernjs.dev/doc-tools/zh/) + +## Contributing + +Please read the [Contributing Guide](https://github.com/web-infra-dev/modern.js/blob/main/CONTRIBUTING.md). + +## License + +Modern.js is [MIT licensed](https://github.com/web-infra-dev/modern.js/blob/main/LICENSE). diff --git a/packages/cli/doc-plugin-medium-zoom/modern.config.ts b/packages/cli/doc-plugin-medium-zoom/modern.config.ts new file mode 100644 index 000000000000..291c19a01eaa --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/modern.config.ts @@ -0,0 +1,13 @@ +// https://modernjs.dev/module-tools/en/api +// TODO: Add `defineConfig` after @modern-js/module-tools restore the function +export default { + testing: { + transformer: 'ts-jest', + }, + buildConfig: { + buildType: 'bundle', + format: 'esm', + dts: false, + sourceMap: true, + }, +}; diff --git a/packages/cli/doc-plugin-medium-zoom/package.json b/packages/cli/doc-plugin-medium-zoom/package.json new file mode 100644 index 000000000000..885dec9d0394 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/package.json @@ -0,0 +1,76 @@ +{ + "name": "@modern-js/doc-plugin-medium-zoom", + "version": "2.20.0", + "description": "The Documentation Framework of Modern.js.", + "homepage": "https://modernjs.dev/doc-tools/", + "bugs": "https://github.com/web-infra-dev/modern.js/issues", + "repository": { + "type": "git", + "url": "https://github.com/web-infra-dev/modern.js", + "directory": "packages/cli/doc-plugin-medium-zoom" + }, + "license": "MIT", + "type": "module", + "jsnext:source": "./src/index.ts", + "types": "./dist/index.d.ts", + "main": "./dist/index.js", + "module": "./dist/node/index.js", + "scripts": { + "dev": "modern-lib dev", + "build": "modern-lib build", + "reset": "rimraf ./**/node_modules", + "lint": "modern-lib lint", + "change": "modern-lib change", + "bump": "modern-lib bump", + "pre": "modern-lib pre", + "change-status": "modern-lib change-status", + "gen-release-note": "modern-lib gen-release-note", + "release": "modern-lib release", + "new": "modern-lib new", + "test": "vitest run --passWithNoTests", + "upgrade": "modern-lib upgrade" + }, + "engines": { + "node": ">=14.17.6" + }, + "eslintIgnore": [ + "node_modules/", + "dist/" + ], + "peerDependencies": { + "@modern-js/doc-tools": "workspace:^2.20.0", + "react": ">=17" + }, + "devDependencies": { + "@modern-js/module-tools": "workspace:*", + "@modern-js/tsconfig": "workspace:*", + "@scripts/build": "workspace:*", + "@types/node": "^18.11.17", + "@types/react": "^18", + "@types/react-dom": "^18", + "@types/yaml-front-matter": "^4.1.0", + "husky": "^8", + "lint-staged": "~13.1.0", + "prettier": "^2.6.2", + "typescript": "^4.8.4", + "vitest": "0.21.1", + "yaml-front-matter": "^4.1.1" + }, + "sideEffects": [ + "*.css", + "*.less", + "*.sass", + "*.scss" + ], + "files": [ + "dist" + ], + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + }, + "dependencies": { + "@modern-js/utils": "workspace:*", + "medium-zoom": "1.0.8" + } +} diff --git a/packages/cli/doc-plugin-medium-zoom/src/.eslintrc.cjs b/packages/cli/doc-plugin-medium-zoom/src/.eslintrc.cjs new file mode 100644 index 000000000000..0cd5d26c6252 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/src/.eslintrc.cjs @@ -0,0 +1,10 @@ +// eslint-disable-next-line import/no-commonjs +module.exports = { + root: true, + extends: ['@modern-js-app'], + ignorePatterns: ['components/MediumZoom.tsx'], + parserOptions: { + tsconfigRootDir: __dirname, + project: ['../tsconfig.json'], + }, +}; diff --git a/packages/cli/doc-plugin-medium-zoom/src/components/MediumZoom.css b/packages/cli/doc-plugin-medium-zoom/src/components/MediumZoom.css new file mode 100644 index 000000000000..6d2090317d2c --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/src/components/MediumZoom.css @@ -0,0 +1,5 @@ +/* https://github.com/francoischalifour/medium-zoom#debugging */ +.medium-zoom-overlay, +.medium-zoom-image--opened { + z-index: 999; +} diff --git a/packages/cli/doc-plugin-medium-zoom/src/components/MediumZoom.tsx b/packages/cli/doc-plugin-medium-zoom/src/components/MediumZoom.tsx new file mode 100644 index 000000000000..616e57d77f1b --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/src/components/MediumZoom.tsx @@ -0,0 +1,21 @@ +// @ts-ignore avoid circular dependency because the `doc-core` packgage will also import `doc-plugin-medium-zoom` +// the `@modern-js/doc-core` will be aliased to `doc-core` package +import { useLocation } from '@modern-js/doc-core/runtime'; +import mediumZoom from 'medium-zoom'; +import { useEffect } from 'react'; +import './MediumZoom.css'; + +interface Props { + selector?: string; +} + +export default function MediumZoom(props: Props) { + const { pathname } = useLocation(); + const { selector = '.modern-doc img' } = props; + + useEffect(() => { + const images = document.querySelectorAll(selector); + mediumZoom(images); + }, [pathname]); + return null; +} diff --git a/packages/cli/doc-plugin-medium-zoom/src/index.ts b/packages/cli/doc-plugin-medium-zoom/src/index.ts new file mode 100644 index 000000000000..1eda6dc15e73 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/src/index.ts @@ -0,0 +1,17 @@ +import path from 'path'; +import { fileURLToPath } from 'url'; +// TODO: Add @modern-js/doc-shared to provide types +import type { DocPlugin } from '../../doc-core'; + +/** + * The plugin is used to add medium-zoom to the doc site. + */ +export function pluginMediumZoom(): DocPlugin { + const __dirname = path.dirname(fileURLToPath(import.meta.url)); + return { + name: '@modern-js/doc-plugin-medium-zoom', + globalUIComponents: [ + path.join(__dirname, '../src/components/MediumZoom.tsx'), + ], + }; +} diff --git a/packages/cli/doc-plugin-medium-zoom/src/modern-app-env.d.ts b/packages/cli/doc-plugin-medium-zoom/src/modern-app-env.d.ts new file mode 100644 index 000000000000..32a72a0b11b3 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/src/modern-app-env.d.ts @@ -0,0 +1,2 @@ +/// +/// diff --git a/packages/cli/doc-plugin-medium-zoom/tests/.eslintrc.cjs b/packages/cli/doc-plugin-medium-zoom/tests/.eslintrc.cjs new file mode 100644 index 000000000000..2136c691080e --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/tests/.eslintrc.cjs @@ -0,0 +1,9 @@ +// eslint-disable-next-line import/no-commonjs +module.exports = { + root: true, + extends: '@modern-js-app', + parserOptions: { + tsconfigRootDir: __dirname, + project: require.resolve('./tsconfig.json'), + }, +}; diff --git a/packages/cli/doc-plugin-medium-zoom/tests/tsconfig.json b/packages/cli/doc-plugin-medium-zoom/tests/tsconfig.json new file mode 100644 index 000000000000..dcc2a879d078 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/tests/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "baseUrl": "../" + }, + "include": ["**/*", "../src"] +} diff --git a/packages/cli/doc-plugin-medium-zoom/tsconfig.json b/packages/cli/doc-plugin-medium-zoom/tsconfig.json new file mode 100644 index 000000000000..ff7d65703bed --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/tsconfig.json @@ -0,0 +1,21 @@ +{ + "extends": "@modern-js/tsconfig/base", + "compilerOptions": { + "declaration": false, + "module": "ESNext", + "target": "ESNext", + "jsx": "react-jsx", + "baseUrl": "src", + "rootDir": ".", + "lib": ["ESNext", "DOM"], + "esModuleInterop": true, + "skipLibCheck": true, + "paths": { + "@/*": ["./*"], + "@style/*": ["./styles/*"], + "@theme": ["./theme-default/index.ts"] + } + }, + "include": ["src", "vitest.config.ts", "index.d.ts", "modern.config.ts"], + "exclude": ["node_modules", "dist"] +} diff --git a/packages/cli/doc-plugin-medium-zoom/vitest.config.ts b/packages/cli/doc-plugin-medium-zoom/vitest.config.ts new file mode 100644 index 000000000000..5251a6a8ec57 --- /dev/null +++ b/packages/cli/doc-plugin-medium-zoom/vitest.config.ts @@ -0,0 +1,10 @@ +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + test: { + environment: 'node', + passWithNoTests: true, + exclude: ['**/node_modules/**', '**/dist/**', '**/e2e/**'], + threads: true, + }, +}); diff --git a/packages/document/doc-tools-doc/docs/en/api/config-basic.mdx b/packages/document/doc-tools-doc/docs/en/api/config-basic.mdx index 45c6e232b109..2e516a30cdc7 100644 --- a/packages/document/doc-tools-doc/docs/en/api/config-basic.mdx +++ b/packages/document/doc-tools-doc/docs/en/api/config-basic.mdx @@ -166,3 +166,30 @@ export default defineConfig({ plugins: [docTools()], }); ``` + +## mediumZoom + +- Type: `boolean` | `{ selector?: string }` +- Default: `true` + +Whether to enable the image zoom function. It is enabled by default, you can disable it by setting `mediumZoom` to `false`. + +> The bottom layer is implemented using the [medium-zoom](https://github.com/francoischalifour/medium-zoom) library. + +Example usage: + +```ts title="modern.config.ts" +import docTools, { defineConfig } from '@modern-js/doc-tools'; + +export default defineConfig({ + doc: { + // Turn off image zoom + mediumZoom: false, + // Configure the CSS selector to customize the picture to be zoomed, the default is '.modern-doc img' + mediumZoom: { + selector: '.modern-doc img', + }, + }, + plugins: [docTools()], +}); +``` diff --git a/packages/document/doc-tools-doc/docs/zh/api/config-basic.mdx b/packages/document/doc-tools-doc/docs/zh/api/config-basic.mdx index 2fe34933fcb3..f0c78a9a373d 100644 --- a/packages/document/doc-tools-doc/docs/zh/api/config-basic.mdx +++ b/packages/document/doc-tools-doc/docs/zh/api/config-basic.mdx @@ -166,3 +166,30 @@ export default defineConfig({ plugins: [docTools()], }); ``` + +## mediumZoom + +- Type: `boolean` | `{ selector?: string }` +- Default: `true` + +是否开启图片放大功能。默认开启,你可以通过设置 `mediumZoom` 为 `false` 来关闭。 + +> 底层使用的是 [medium-zoom](https://github.com/francoischalifour/medium-zoom) 库来实现的。 + +使用示例: + +```ts title="modern.config.ts" +import docTools, { defineConfig } from '@modern-js/doc-tools'; + +export default defineConfig({ + doc: { + // 关闭图片放大功能 + mediumZoom: false, + // 配置 CSS 选择器,自定义要放大的图片,默认为 '.modern-doc img' + mediumZoom: { + selector: '.modern-doc img', + }, + }, + plugins: [docTools()], +}); +``` diff --git a/packages/runtime/plugin-testing/tests/bff/__snapshots__/index.test.ts.snap b/packages/runtime/plugin-testing/tests/bff/__snapshots__/index.test.ts.snap index a3d83247552c..9572f68b42bb 100644 --- a/packages/runtime/plugin-testing/tests/bff/__snapshots__/index.test.ts.snap +++ b/packages/runtime/plugin-testing/tests/bff/__snapshots__/index.test.ts.snap @@ -24,7 +24,7 @@ exports[`testing-plugin-bff setJestConfigForBFF 1`] = ` ], "transform": { "\\.[jt]sx?$": [ - "/node_modules/.pnpm/ts-jest@29.0.5_xpknouqsu45fvs7xqhzolsis6i/node_modules/ts-jest/dist/index.js", + "/node_modules/.pnpm/ts-jest@29.0.5_52zzqauzrd55rzw5cwo4tswy3m/node_modules/ts-jest/dist/index.js", { "diagnostics": { "warnOnly": true, @@ -61,7 +61,7 @@ exports[`testing-plugin-bff testTimeout should not set in projects 1`] = ` ], "transform": { "\\.[jt]sx?$": [ - "/node_modules/.pnpm/ts-jest@29.0.5_xpknouqsu45fvs7xqhzolsis6i/node_modules/ts-jest/dist/index.js", + "/node_modules/.pnpm/ts-jest@29.0.5_52zzqauzrd55rzw5cwo4tswy3m/node_modules/ts-jest/dist/index.js", { "diagnostics": { "warnOnly": true, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bbd3a2931bb3..73018d88d745 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -30,8 +30,8 @@ importers: turbo: ^1.6.3 vitest: 0.21.1 devDependencies: - '@babel/core': 7.21.8 - '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.21.8 + '@babel/core': 7.20.5 + '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.5 '@commitlint/cli': 13.2.1 '@commitlint/config-conventional': 13.2.0 '@modern-js-app/eslint-config': link:packages/review/eslint-config-app @@ -69,7 +69,7 @@ importers: '@scripts/vitest-config': link:../../../scripts/vitest-config '@types/babel__core': 7.20.0 '@types/node': 14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/builder/builder-rspack-provider: specifiers: @@ -116,7 +116,7 @@ importers: postcss: 8.4.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.9.5 + typescript: 4.9.3 packages/builder/builder-shared: specifiers: @@ -155,8 +155,8 @@ importers: '@types/babel__core': 7.20.0 '@types/node': 14.18.35 html-webpack-plugin: 5.5.0_webpack@5.82.1 - terser: 5.17.3 - typescript: 4.9.5 + terser: 5.15.0 + typescript: 4.9.3 webpack: 5.82.1 packages/builder/builder-webpack-provider: @@ -207,7 +207,7 @@ importers: cheerio: 1.0.0-rc.12 css-minimizer-webpack-plugin: 5.0.0_webpack@5.82.1 cssnano: 6.0.0_postcss@8.4.21 - fork-ts-checker-webpack-plugin: 8.0.0_hybrf64lftnf5l2xwgg7goi2iu + fork-ts-checker-webpack-plugin: 8.0.0_7rk4b2hmmye4ay4nslib7apbti html-webpack-plugin: 5.5.0_webpack@5.82.1 mini-css-extract-plugin: 2.7.0_webpack@5.82.1 postcss: 8.4.21 @@ -215,7 +215,7 @@ importers: source-map: 0.7.4 style-loader: 3.3.1_webpack@5.82.1 terser-webpack-plugin: 5.3.6_webpack@5.82.1 - ts-loader: 9.4.1_hybrf64lftnf5l2xwgg7goi2iu + ts-loader: 9.4.1_7rk4b2hmmye4ay4nslib7apbti webpack: 5.82.1 devDependencies: '@modern-js/e2e': link:../../toolkit/e2e @@ -226,7 +226,7 @@ importers: antd: 4.21.4_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.9.5 + typescript: 4.9.3 packages/builder/plugin-esbuild: specifiers: @@ -269,7 +269,7 @@ importers: '@modern-js/e2e': link:../../toolkit/e2e '@scripts/vitest-config': link:../../../scripts/vitest-config '@types/node': 14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1 packages/builder/plugin-node-polyfill: @@ -352,7 +352,7 @@ importers: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 source-map: 0.7.4 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1_@swc+core@1.3.42 packages/builder/plugin-swc-base: @@ -416,10 +416,10 @@ importers: devDependencies: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/cli/babel-preset-base: specifiers: @@ -461,10 +461,10 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/cli/babel-preset-lib: specifiers: @@ -494,10 +494,10 @@ importers: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config '@types/babel__core': 7.20.0 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/cli/core: specifiers: @@ -535,7 +535,7 @@ importers: '@scripts/jest-config': link:../../../scripts/jest-config '@types/babel__code-frame': 7.0.3 '@types/babel__core': 7.20.0 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/less': 3.0.3 '@types/node': 14.18.35 autoprefixer: 10.4.13_postcss@8.4.21 @@ -543,9 +543,9 @@ importers: html-webpack-plugin: 5.5.0_webpack@5.82.1 jest: 29.5.0_@types+node@14.18.35 postcss: 8.4.21 - sass: 1.54.4 + sass: 1.54.5 terser-webpack-plugin: 5.3.6_webpack@5.82.1 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1 packages/cli/doc-core: @@ -558,6 +558,7 @@ importers: '@modern-js/builder': workspace:* '@modern-js/builder-rspack-provider': workspace:* '@modern-js/core': workspace:* + '@modern-js/doc-plugin-medium-zoom': workspace:* '@modern-js/mdx-rs-binding': ^0.1.8 '@modern-js/plugin-tailwindcss': workspace:* '@modern-js/plugin-testing': workspace:* @@ -597,7 +598,6 @@ importers: lint-staged: ~13.1.0 lodash-es: ^4.17.21 mdast-util-mdxjs-esm: ^1.3.0 - medium-zoom: 1.0.8 node-fetch: 3.3.0 nprogress: ^0.2.0 ora: 5.4.1 @@ -642,6 +642,7 @@ importers: '@mdx-js/react': 2.2.1_react@18.2.0 '@modern-js/builder': link:../../builder/builder '@modern-js/builder-rspack-provider': link:../../builder/builder-rspack-provider + '@modern-js/doc-plugin-medium-zoom': link:../doc-plugin-medium-zoom '@modern-js/mdx-rs-binding': 0.1.8 '@modern-js/remark-container': link:../../toolkit/remark-container '@modern-js/utils': link:../../toolkit/utils @@ -662,7 +663,6 @@ importers: html-to-text: 9.0.3 lodash-es: 4.17.21 mdast-util-mdxjs-esm: 1.3.0 - medium-zoom: 1.0.8 node-fetch: 3.3.0 nprogress: 0.2.0 ora: 5.4.1 @@ -715,9 +715,9 @@ importers: '@types/yaml-front-matter': 4.1.0 husky: 8.0.1 lint-staged: 13.1.4 - prettier: 2.8.7 + prettier: 2.7.1 rimraf: 3.0.2 - typescript: 4.9.5 + typescript: 4.9.3 vite: 4.0.4_@types+node@14.18.35 vitest: 0.21.1 @@ -739,6 +739,41 @@ importers: yaml-front-matter: ^4.1.1 dependencies: '@modern-js/utils': link:../../toolkit/utils + devDependencies: + '@modern-js/module-tools': link:../../solutions/module-tools + '@modern-js/tsconfig': link:../../review/tsconfig + '@scripts/build': link:../../../scripts/build + '@types/node': 18.11.17 + '@types/react': 18.0.21 + '@types/react-dom': 18.0.6 + '@types/yaml-front-matter': 4.1.0 + husky: 8.0.1 + lint-staged: 13.1.4 + prettier: 2.7.1 + typescript: 4.9.3 + vitest: 0.21.1 + yaml-front-matter: 4.1.1 + + packages/cli/doc-plugin-medium-zoom: + specifiers: + '@modern-js/module-tools': workspace:* + '@modern-js/tsconfig': workspace:* + '@modern-js/utils': workspace:* + '@scripts/build': workspace:* + '@types/node': ^18.11.17 + '@types/react': ^18 + '@types/react-dom': ^18 + '@types/yaml-front-matter': ^4.1.0 + husky: ^8 + lint-staged: ~13.1.0 + medium-zoom: 1.0.8 + prettier: ^2.6.2 + typescript: ^4.8.4 + vitest: 0.21.1 + yaml-front-matter: ^4.1.1 + dependencies: + '@modern-js/utils': link:../../toolkit/utils + medium-zoom: 1.0.8 devDependencies: '@modern-js/module-tools': link:../../solutions/module-tools '@modern-js/tsconfig': link:../../review/tsconfig @@ -796,12 +831,12 @@ importers: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config '@types/babel__core': 7.20.0 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 memfs: 3.4.12 - ts-jest: 29.0.5_viinukn7nustgjlyhsmms6zpji - typescript: 4.9.5 + ts-jest: 29.0.5_ujbyfodziiwtzbycnht5jcf3hy + typescript: 4.9.3 webpack: 5.82.1 webpack-chain: 6.5.1 @@ -824,7 +859,7 @@ importers: dependencies: '@changesets/cli': 2.26.0 '@changesets/git': 1.3.2 - '@changesets/read': 0.5.9 + '@changesets/read': 0.5.5 '@modern-js/plugin-i18n': link:../plugin-i18n '@modern-js/utils': link:../../toolkit/utils '@swc/helpers': 0.5.1 @@ -833,10 +868,10 @@ importers: '@modern-js/core': link:../core '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/cli/plugin-data-loader: specifiers: @@ -878,7 +913,7 @@ importers: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config '@types/babel__core': 7.20.0 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/supertest': 2.0.12 isomorphic-fetch: 3.0.0 @@ -886,8 +921,8 @@ importers: memfs: 3.4.12 react: 18.2.0 supertest: 6.2.3 - ts-jest: 29.0.5_viinukn7nustgjlyhsmms6zpji - typescript: 4.9.5 + ts-jest: 29.0.5_ujbyfodziiwtzbycnht5jcf3hy + typescript: 4.9.3 webpack: 5.82.1 webpack-chain: 6.5.1 @@ -907,10 +942,10 @@ importers: devDependencies: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/cli/plugin-lint: specifiers: @@ -942,10 +977,10 @@ importers: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config '@types/cross-spawn': 6.0.2 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/cli/plugin-proxy: specifiers: @@ -967,10 +1002,10 @@ importers: '@modern-js/core': link:../core '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/cli/plugin-ssg: specifiers: @@ -1002,12 +1037,12 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 react: 18.2.0 react-router-dom: 6.8.1_react@18.2.0 - typescript: 4.9.5 + typescript: 4.9.3 packages/cli/plugin-storybook: specifiers: @@ -1055,13 +1090,13 @@ importers: '@modern-js/builder-webpack-provider': link:../../builder/builder-webpack-provider '@modern-js/utils': link:../../toolkit/utils '@storybook/addon-actions': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-essentials': 6.5.12_m2dgkhnzeduvmjhjfnpvf56mxa + '@storybook/addon-essentials': 6.5.12_qecnbsngvvkeunj7444vl2sc2m '@storybook/addon-links': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/addon-storysource': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack5': 6.5.12_aorc5lun3wrqgh2yugxk3iauje - '@storybook/core': 6.5.12_5yk5tzqdi46sypa7mtzvq6bndi - '@storybook/manager-webpack5': 6.5.12_aorc5lun3wrqgh2yugxk3iauje - '@storybook/react': 6.5.12_qgb7qrqeoswz5575jppegdzzxm + '@storybook/builder-webpack5': 6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a + '@storybook/core': 6.5.12_mejbs6qxkbiljz5cyqh3sta7g4 + '@storybook/manager-webpack5': 6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a + '@storybook/react': 6.5.12_ket2g4gyf3y4x6zueqlsuvvvwa '@swc/helpers': 0.5.1 esbuild: 0.15.7 findup-sync: 4.0.0 @@ -1079,12 +1114,12 @@ importers: '@types/findup-sync': 4.0.2 '@types/fs-extra': 9.0.13 '@types/glob': 7.2.0 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1_esbuild@0.15.7 webpack-chain: 6.5.1 @@ -1111,9 +1146,9 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/cli/plugin-tailwind: specifiers: @@ -1148,13 +1183,13 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 postcss: 8.4.21 react: 18.2.0 - tailwindcss: 3.2.7_postcss@8.4.21 - typescript: 4.9.5 + tailwindcss: 3.2.4_postcss@8.4.21 + typescript: 4.9.3 packages/document/builder-doc: specifiers: @@ -1182,10 +1217,10 @@ importers: devDependencies: '@modern-js/doc-tools': link:../../solutions/doc-tools '@types/fs-extra': 9.0.13 - '@types/node': 16.11.68 + '@types/node': 16.18.10 cross-env: 7.0.3 fs-extra: 10.1.0 - ts-node: 10.9.1_gmaempcqeno4l4ava7v2qcn3hi + ts-node: 10.9.1_dlsrttbneesnknba5tvqdzugca typescript: 4.9.5 packages/document/main-doc: @@ -1207,13 +1242,13 @@ importers: '@modern-js/doc-plugin-auto-sidebar': link:../../cli/doc-plugin-auto-sidebar '@modern-js/doc-tools': link:../../solutions/doc-tools '@types/fs-extra': 9.0.13 - '@types/node': 16.11.68 + '@types/node': 16.18.10 classnames: 2.3.2 clsx: 1.2.1 fs-extra: 10.1.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - ts-node: 10.9.1_gmaempcqeno4l4ava7v2qcn3hi + ts-node: 10.9.1_dlsrttbneesnknba5tvqdzugca typescript: 4.9.5 packages/document/module-doc: @@ -1250,10 +1285,10 @@ importers: devDependencies: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generator-common: specifiers: @@ -1270,19 +1305,19 @@ importers: jest: ^29 typescript: ^4 dependencies: - '@modern-js/codesmith-formily': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-formily': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/plugin-i18n': link:../../cli/plugin-i18n '@swc/helpers': 0.5.1 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/utils': link:../../toolkit/utils '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generator-plugin: specifiers: @@ -1312,7 +1347,7 @@ importers: '@modern-js/codesmith-api-git': 2.2.0_@modern-js+codesmith@2.2.0 '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/codesmith-api-npm': 2.2.0 - '@modern-js/codesmith-formily': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-formily': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/generator-common': link:../generator-common '@modern-js/generator-utils': link:../generator-utils '@modern-js/new-action': link:../new-action @@ -1326,10 +1361,10 @@ importers: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config '@types/ejs': 3.1.2 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generator-utils: specifiers: @@ -1353,10 +1388,10 @@ importers: '@modern-js/codesmith': 2.2.0 '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/base-generator: specifiers: @@ -1372,15 +1407,15 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/bff-generator: specifiers: @@ -1398,17 +1433,17 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/changeset-generator: specifiers: @@ -1423,14 +1458,14 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/generator-common': link:../../generator-common '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/dependence-generator: specifiers: @@ -1448,17 +1483,17 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/doc-generator: specifiers: @@ -1483,7 +1518,7 @@ importers: '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 typescript: 4.9.5 @@ -1505,7 +1540,7 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-handlebars': 2.2.0_@modern-js+codesmith@2.2.0 '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils @@ -1513,10 +1548,10 @@ importers: '@modern-js/utils': link:../../../toolkit/utils '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/generator-generator: specifiers: @@ -1535,7 +1570,7 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils @@ -1543,10 +1578,10 @@ importers: '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/module-generator: specifiers: @@ -1570,7 +1605,7 @@ importers: '@modern-js/base-generator': link:../base-generator '@modern-js/changeset-generator': link:../changeset-generator '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/dependence-generator': link:../dependence-generator '@modern-js/generator-common': link:../../generator-common @@ -1579,10 +1614,10 @@ importers: '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/module-test-generator: specifiers: @@ -1601,7 +1636,7 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/dependence-generator': link:../dependence-generator '@modern-js/generator-common': link:../../generator-common @@ -1609,10 +1644,10 @@ importers: '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/monorepo-generator: specifiers: @@ -1635,7 +1670,7 @@ importers: '@modern-js/base-generator': link:../base-generator '@modern-js/changeset-generator': link:../changeset-generator '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils @@ -1643,10 +1678,10 @@ importers: '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/mwa-generator: specifiers: @@ -1670,7 +1705,7 @@ importers: devDependencies: '@modern-js/base-generator': link:../base-generator '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/dependence-generator': link:../dependence-generator '@modern-js/entry-generator': link:../entry-generator @@ -1681,10 +1716,10 @@ importers: '@modern-js/rspack-generator': link:../rspack-generator '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/packages-generator: specifiers: @@ -1701,16 +1736,16 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/repo-generator: specifiers: @@ -1734,7 +1769,7 @@ importers: devDependencies: '@modern-js/base-generator': link:../base-generator '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/doc-generator': link:../doc-generator '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-plugin': link:../../generator-plugin @@ -1745,10 +1780,10 @@ importers: '@modern-js/utils': link:../../../toolkit/utils '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/router-v5-generator: specifiers: @@ -1766,17 +1801,17 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/dependence-generator': link:../dependence-generator '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/rspack-generator: specifiers: @@ -1801,7 +1836,7 @@ importers: '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 typescript: 4.9.5 @@ -1822,17 +1857,17 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/dependence-generator': link:../dependence-generator '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/ssg-generator: specifiers: @@ -1850,17 +1885,17 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/dependence-generator': link:../dependence-generator '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/storybook-generator: specifiers: @@ -1879,7 +1914,7 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/dependence-generator': link:../dependence-generator '@modern-js/generator-common': link:../../generator-common @@ -1887,10 +1922,10 @@ importers: '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/tailwindcss-generator: specifiers: @@ -1907,16 +1942,16 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/dependence-generator': link:../dependence-generator '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/test-generator: specifiers: @@ -1935,7 +1970,7 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/dependence-generator': link:../dependence-generator '@modern-js/generator-common': link:../../generator-common @@ -1943,10 +1978,10 @@ importers: '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/generators/upgrade-generator: specifiers: @@ -1964,17 +1999,17 @@ importers: typescript: ^4 devDependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-api-app': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-api-app': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/codesmith-api-json': 2.2.0 '@modern-js/generator-common': link:../../generator-common '@modern-js/generator-utils': link:../../generator-utils '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/new-action: specifiers: @@ -1992,7 +2027,7 @@ importers: typescript: ^4 dependencies: '@modern-js/codesmith': 2.2.0 - '@modern-js/codesmith-formily': 2.2.0_xefosl7bahx5m5v257q5cujr54 + '@modern-js/codesmith-formily': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly '@modern-js/generator-common': link:../generator-common '@modern-js/generator-utils': link:../generator-utils '@modern-js/utils': link:../../toolkit/utils @@ -2000,10 +2035,10 @@ importers: devDependencies: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/generator/plugins/generator-plugin: specifiers: @@ -2022,10 +2057,10 @@ importers: '@modern-js/plugin-i18n': link:../../../cli/plugin-i18n '@scripts/build': link:../../../../scripts/build '@scripts/jest-config': link:../../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/module/plugin-module-babel: specifiers: @@ -2043,7 +2078,7 @@ importers: '@modern-js/module-tools': link:../../solutions/module-tools '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 typescript: 4.9.5 @@ -2066,7 +2101,7 @@ importers: '@modern-js/module-tools': link:../../solutions/module-tools '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 typescript: 4.9.5 @@ -2104,7 +2139,7 @@ importers: '@modern-js/utils': link:../../toolkit/utils '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/mdast': 3.0.10 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 @@ -2136,7 +2171,7 @@ importers: '@modern-js/module-tools': link:../../solutions/module-tools '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 typescript: 4.9.5 @@ -2154,7 +2189,7 @@ importers: '@modern-js/module-tools': link:../../solutions/module-tools '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 typescript: 4.9.5 @@ -2175,7 +2210,7 @@ importers: '@modern-js/module-tools': link:../../solutions/module-tools '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 typescript: 4.9.5 @@ -2202,7 +2237,7 @@ importers: '@modern-js/module-tools': link:../../solutions/module-tools '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 typescript: 4.9.5 @@ -2220,7 +2255,7 @@ importers: '@modern-js/module-tools': link:../../solutions/module-tools '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 typescript: 4.9.5 @@ -2266,8 +2301,8 @@ importers: '@babel/eslint-parser': 7.21.8_whiyj2ey2az5nrd4tnv3sqnwvu '@babel/eslint-plugin': 7.19.1_dm5ijezn7ziqixzmyajtwr6sum '@modern-js/babel-preset-app': link:../../cli/babel-preset-app - '@typescript-eslint/eslint-plugin': 5.30.0_vaayuox22vbvodkou6nryqbfcu - '@typescript-eslint/parser': 5.30.0_pku7h6lsbnh7tcsfjudlqd5qce + '@typescript-eslint/eslint-plugin': 5.30.0_2nspmqib6o7rcvn5qeqiwm5gey + '@typescript-eslint/parser': 5.30.0_hsf322ms6xhhd4b5ne6lb74y4a eslint: 8.28.0 eslint-config-prettier: 8.5.0_eslint@8.28.0 eslint-plugin-eslint-comments: 3.2.0_eslint@8.28.0 @@ -2275,12 +2310,12 @@ importers: eslint-plugin-import: 2.26.0_7dgy4g5gr2tjbwjujsq262la5e eslint-plugin-markdown: 3.0.0_eslint@8.28.0 eslint-plugin-node: 11.1.0_eslint@8.28.0 - eslint-plugin-prettier: 4.1.0_ut6ng3rjtiriv4gbc46g5qsm4u + eslint-plugin-prettier: 4.1.0_pgxuib4rd7wiymfktharf5ydt4 eslint-plugin-promise: 6.1.1_eslint@8.28.0 eslint-plugin-react: 7.30.1_eslint@8.28.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.28.0 - prettier: 2.8.7 - typescript: 4.9.5 + prettier: 2.7.1 + typescript: 4.9.3 devDependencies: '@scripts/build': link:../../../scripts/build eslint-find-rules: 4.1.0_eslint@8.28.0 @@ -2341,7 +2376,7 @@ importers: '@testing-library/jest-dom': 5.16.4 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@testing-library/user-event': 14.4.3 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/testing-library__jest-dom': 5.14.5 jest: 29.5.0_@types+node@14.18.35 @@ -2349,7 +2384,7 @@ importers: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-router-dom: 6.8.1_biqbaboplfbrettd7655fr4n2y - typescript: 4.9.5 + typescript: 4.9.3 webpack-chain: 6.5.1 packages/runtime/plugin-router-v5: @@ -2395,13 +2430,13 @@ importers: '@scripts/jest-config': link:../../../scripts/jest-config '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@types/invariant': 2.2.35 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - ts-jest: 29.0.5_doipufordlnvh5g4adbwayvyvy - typescript: 4.9.5 + ts-jest: 29.0.5_igyh6v6dfktrl57oxyjeyvbpt4 + typescript: 4.9.3 packages/runtime/plugin-runtime: specifiers: @@ -2496,15 +2531,15 @@ importers: '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@types/cookie': 0.5.1 '@types/invariant': 2.2.35 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/loadable__webpack-plugin': 5.7.3 '@types/node': 14.18.35 '@types/react-side-effect': 1.1.1 jest: 29.5.0_@types+node@14.18.35 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - ts-jest: 29.0.5_7rlgbvksi6ta2npar3z44bje7y - typescript: 4.9.5 + ts-jest: 29.0.5_ph2sidlzcfqeq5xdaxqiro5pqa + typescript: 4.9.3 packages/runtime/plugin-testing: specifiers: @@ -2570,7 +2605,7 @@ importers: jest-environment-jsdom: 29.5.0 path-to-regexp: 6.2.1 supertest: 6.2.3 - ts-jest: 29.0.5_xpknouqsu45fvs7xqhzolsis6i + ts-jest: 29.0.5_52zzqauzrd55rzw5cwo4tswy3m yargs: 17.5.1 devDependencies: '@modern-js/bff-core': link:../../server/bff-core @@ -2579,13 +2614,13 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/supertest': 2.0.12 '@types/yargs': 17.0.10 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.9.5 + typescript: 4.9.3 packages/server/bff-core: specifiers: @@ -2616,15 +2651,15 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/koa-compose': 3.2.5 '@types/node': 14.18.35 jest: 29.5.0_yz5zswfgfou7xyd3jcublwkjji - ts-node: 10.9.1_tmt345f6mmvj3vdnsaqf2jblxq + ts-node: 10.9.1_5axvewzfuqiugp6622ftukgx6y tsconfig-paths: 4.1.2 type-fest: 2.15.0 - typescript: 4.9.5 - zod: 3.20.2 + typescript: 4.9.3 + zod: 3.17.3 packages/server/bff-runtime: specifiers: @@ -2647,11 +2682,11 @@ importers: devDependencies: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - ts-jest: 29.0.5_doipufordlnvh5g4adbwayvyvy - typescript: 4.9.5 + ts-jest: 29.0.5_igyh6v6dfktrl57oxyjeyvbpt4 + typescript: 4.9.3 packages/server/core: specifiers: @@ -2677,12 +2712,12 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 http-proxy-middleware: 2.0.6 jest: 29.5.0_@types+node@14.18.35 - ts-jest: 29.0.5_doipufordlnvh5g4adbwayvyvy - typescript: 4.9.5 + ts-jest: 29.0.5_igyh6v6dfktrl57oxyjeyvbpt4 + typescript: 4.9.3 packages/server/create-request: specifiers: @@ -2711,13 +2746,13 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/node-fetch': 2.6.2 isomorphic-fetch: 3.0.0 jest: 29.5.0_@types+node@14.18.35 nock: 13.2.7 - typescript: 4.9.5 + typescript: 4.9.3 packages/server/plugin-express: specifiers: @@ -2770,15 +2805,15 @@ importers: '@types/express': 4.17.13 '@types/finalhandler': 1.1.1 '@types/formidable': 1.2.5 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/supertest': 2.0.12 '@types/type-is': 1.6.3 express: 4.18.1 jest: 29.5.0_@types+node@14.18.35 supertest: 6.2.3 - typescript: 4.9.5 - zod: 3.20.2 + typescript: 4.9.3 + zod: 3.17.3 packages/server/plugin-koa: specifiers: @@ -2821,7 +2856,7 @@ importers: '@modern-js/server-core': link:../core '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/koa': 2.13.4 '@types/koa-router': 7.4.4 '@types/node': 14.18.35 @@ -2830,8 +2865,8 @@ importers: jest: 29.5.0_@types+node@14.18.35 koa: 2.13.4 supertest: 6.2.3 - typescript: 4.9.5 - zod: 3.20.2 + typescript: 4.9.3 + zod: 3.17.3 packages/server/plugin-polyfill: specifiers: @@ -2865,12 +2900,12 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/lru-cache': 5.1.1 '@types/node': 14.18.35 '@types/ua-parser-js': 0.7.36 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/server/plugin-server: specifiers: @@ -2898,10 +2933,10 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/server/plugin-worker: specifiers: @@ -2929,10 +2964,10 @@ importers: '@modern-js/types': link:../../toolkit/types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/server/prod-server: specifiers: @@ -2984,7 +3019,7 @@ importers: '@types/cookie': 0.4.1 '@types/etag': 1.8.1 '@types/fresh': 0.5.0 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/lru-cache': 5.1.1 '@types/merge-deep': 3.0.0 '@types/node': 14.18.35 @@ -2993,7 +3028,7 @@ importers: jest: 29.5.0_@types+node@14.18.35 node-mocks-http: 1.11.0 portfinder: 1.0.28 - typescript: 4.9.5 + typescript: 4.9.3 packages/server/server: specifiers: @@ -3034,21 +3069,21 @@ importers: connect-history-api-fallback: 2.0.0 minimatch: 3.1.2 path-to-regexp: 6.2.1 - ws: 8.12.1 + ws: 8.8.1 devDependencies: '@modern-js/server-core': link:../core '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config '@types/connect-history-api-fallback': 1.3.5 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/minimatch': 3.0.5 '@types/node': 14.18.35 '@types/ws': 7.4.7 - jest: 29.5.0_yz5zswfgfou7xyd3jcublwkjji + jest: 29.5.0_dpgiwbr57mwjpgbjs46itctnqi node-mocks-http: 1.11.0 - ts-node: 10.9.1_tmt345f6mmvj3vdnsaqf2jblxq + ts-node: 10.8.1_5axvewzfuqiugp6622ftukgx6y tsconfig-paths: 4.1.1 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1 websocket: 1.0.34 @@ -3091,11 +3126,11 @@ importers: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config '@types/babel__core': 7.20.0 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - ts-jest: 29.0.5_viinukn7nustgjlyhsmms6zpji - typescript: 4.9.5 + ts-jest: 29.0.5_ujbyfodziiwtzbycnht5jcf3hy + typescript: 4.9.3 packages/solutions/app-tools: specifiers: @@ -3156,7 +3191,7 @@ importers: '@modern-js/upgrade': link:../../toolkit/upgrade '@modern-js/utils': link:../../toolkit/utils '@swc/helpers': 0.5.1 - es-module-lexer: 1.2.1 + es-module-lexer: 1.1.0 esbuild: 0.15.7 rspack-plugin-virtual-module: 0.1.0 devDependencies: @@ -3165,11 +3200,11 @@ importers: '@modern-js/server-core': link:../../server/core '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/babel__traverse': 7.18.5 - '@types/jest': 29.2.6 + '@types/babel__traverse': 7.18.2 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1_esbuild@0.15.7 packages/solutions/doc-tools: @@ -3204,10 +3239,10 @@ importers: '@types/react': 18.0.21 husky: 8.0.1 lint-staged: 13.1.4 - prettier: 2.8.7 + prettier: 2.7.1 react: 17.0.2 rimraf: 3.0.2 - typescript: 4.9.5 + typescript: 4.9.3 packages/solutions/module-tools: specifiers: @@ -3270,7 +3305,7 @@ importers: '@types/babel__generator': 7.6.4 '@types/babel__traverse': 7.18.5 '@types/fs-extra': 9.0.13 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 detect-indent: 6.1.0 fs-extra: 10.1.0 @@ -3278,7 +3313,7 @@ importers: path-browserify: 1.0.1 postcss-alias: 2.0.0 react: 17.0.2 - typescript: 4.9.5 + typescript: 4.9.3 packages/solutions/monorepo-tools: specifiers: @@ -3321,11 +3356,11 @@ importers: devDependencies: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/md5': 2.3.2 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/toolkit/compiler/babel: specifiers: @@ -3353,10 +3388,10 @@ importers: '@scripts/jest-config': link:../../../../scripts/jest-config '@types/babel__core': 7.20.0 '@types/glob': 7.2.0 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/toolkit/create: specifiers: @@ -3380,11 +3415,11 @@ importers: '@modern-js/utils': link:../utils '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 - jest: 29.5.0_yz5zswfgfou7xyd3jcublwkjji - ts-node: 10.9.1_tmt345f6mmvj3vdnsaqf2jblxq - typescript: 4.9.5 + jest: 29.5.0_dpgiwbr57mwjpgbjs46itctnqi + ts-node: 10.8.1_5axvewzfuqiugp6622ftukgx6y + typescript: 4.9.3 packages/toolkit/e2e: specifiers: @@ -3413,7 +3448,7 @@ importers: '@types/node': 14.18.35 '@types/serve-static': 1.13.10 got: 11.8.5 - typescript: 4.9.5 + typescript: 4.9.3 packages/toolkit/node-bundle-require: specifiers: @@ -3433,10 +3468,10 @@ importers: devDependencies: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/toolkit/plugin: specifiers: @@ -3454,10 +3489,10 @@ importers: devDependencies: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 jest: 29.5.0_@types+node@14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 packages/toolkit/remark-container: specifiers: @@ -3491,7 +3526,7 @@ importers: '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config '@types/babel__core': 7.20.0 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 http-proxy-middleware: 2.0.6 jest: 29.5.0_@types+node@14.18.35 @@ -3518,11 +3553,11 @@ importers: '@modern-js/upgrade-generator': link:../../generator/generators/upgrade-generator '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 - jest: 29.5.0_yz5zswfgfou7xyd3jcublwkjji - ts-node: 10.9.1_tmt345f6mmvj3vdnsaqf2jblxq - typescript: 4.9.5 + jest: 29.5.0_dpgiwbr57mwjpgbjs46itctnqi + ts-node: 10.8.1_5axvewzfuqiugp6622ftukgx6y + typescript: 4.9.3 packages/toolkit/utils: specifiers: @@ -3548,19 +3583,19 @@ importers: '@swc/helpers': 0.5.1 caniuse-lite: 1.0.30001451 lodash: 4.17.21 - serialize-javascript: 6.0.1 + serialize-javascript: 6.0.0 devDependencies: '@modern-js/types': link:../types '@scripts/build': link:../../../scripts/build '@scripts/jest-config': link:../../../scripts/jest-config - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/serialize-javascript': 5.0.2 jest: 29.5.0_@types+node@14.18.35 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-router-dom: 6.8.1_biqbaboplfbrettd7655fr4n2y - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1 scripts/build: @@ -3569,7 +3604,7 @@ importers: '@types/node': ^14 btsm: 2.2.2 devDependencies: - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 btsm: 2.2.2 @@ -3580,7 +3615,7 @@ importers: '@types/node': ^18.0.1 tsx: ^3.7.1 dependencies: - '@changesets/read': 0.5.9 + '@changesets/read': 0.5.5 '@manypkg/get-packages': 1.1.3 devDependencies: '@types/node': 18.11.17 @@ -3601,8 +3636,8 @@ importers: '@types/glob': 7.2.0 '@types/node': 14.18.35 btsm: 2.2.2 - glob: 7.2.0 - typescript: 4.9.5 + glob: 7.2.3 + typescript: 4.9.3 scripts/jest-config: specifiers: @@ -3616,7 +3651,7 @@ importers: devDependencies: '@swc/core': 1.3.42 '@swc/jest': 0.2.22_@swc+core@1.3.42 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 enhanced-resolve: 5.12.0 esbuild: 0.15.7 @@ -3634,7 +3669,7 @@ importers: '@types/fs-extra': 9.0.13 chalk: 4.1.2 consola: 2.15.3 - fast-glob: 3.2.11 + fast-glob: 3.2.12 fs-extra: 10.1.0 devDependencies: tsx: 3.7.1 @@ -3779,7 +3814,7 @@ importers: '@vercel/ncc': 0.33.3 dts-packer: 0.0.3 postcss: 8.4.21 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1 devDependencies: '@babel/helper-annotate-as-pure': 7.18.6 @@ -3875,12 +3910,12 @@ importers: pug: 3.0.2 recursive-readdir: 2.2.2 rollup: 2.79.0 - rollup-plugin-dts: 5.2.0_pcsxzxwela5oo3y3lxinm7xcqy + rollup-plugin-dts: 5.2.0_46xkcftpwaildd5rxnylqnqjma sass: 1.54.4 sass-loader: 13.0.2_sass@1.54.4+webpack@5.82.1 schema-utils3: /schema-utils/3.1.1 semver: 7.3.7 - serialize-javascript: 6.0.1 + serialize-javascript: 6.0.0 signal-exit: 3.0.7 signale: 1.4.0 slash: 3.0.0 @@ -3888,7 +3923,7 @@ importers: style-loader: 3.3.1_webpack@5.82.1 tapable: 2.2.1 toml-loader: 1.0.0 - ts-loader: 9.3.1_hybrf64lftnf5l2xwgg7goi2iu + ts-loader: 9.3.1_7rk4b2hmmye4ay4nslib7apbti tsconfig-paths: 4.1.1 upath: 2.0.1 url-join: 4.0.1 @@ -3931,7 +3966,7 @@ importers: '@modern-js/tsconfig': link:../../packages/review/tsconfig '@modern-js/utils': link:../../packages/toolkit/utils '@types/node': 14.18.35 - typescript: 4.9.5 + typescript: 4.9.3 tests: specifiers: @@ -3981,11 +4016,11 @@ importers: jest-environment-node: 29.5.0 jest-puppeteer: 8.0.5_puppeteer@19.7.5 kill-port: 2.0.1 - puppeteer: 19.7.5_typescript@4.9.5 + puppeteer: 19.7.5_typescript@4.9.3 rimraf: 3.0.2 tree-kill: 1.2.2 - ts-node: 9.1.1_typescript@4.9.5 - typescript: 4.9.5 + ts-node: 9.1.1_typescript@4.9.3 + typescript: 4.9.3 tests/e2e/builder: specifiers: @@ -4024,7 +4059,7 @@ importers: '@types/react': 18.0.21 '@types/react-dom': 18.0.6 playwright: 1.25.1 - typescript: 4.9.5 + typescript: 4.9.3 tests/e2e/builder/cases/css/css-modules: specifiers: @@ -4086,7 +4121,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - antd: 5.3.0_biqbaboplfbrettd7655fr4n2y + antd: 5.1.5_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4133,7 +4168,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 '@modern-js/runtime': link:../../../packages/runtime/plugin-runtime react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4161,7 +4196,7 @@ importers: tsconfig-paths: 3.14.1 typescript: ^4 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 '@modern-js/plugin-bff': link:../../../packages/cli/plugin-bff '@modern-js/plugin-koa': link:../../../packages/server/plugin-koa '@modern-js/runtime': link:../../../packages/runtime/plugin-runtime @@ -4171,15 +4206,15 @@ importers: devDependencies: '@modern-js/app-tools': link:../../../packages/solutions/app-tools '@modern-js/plugin-testing': link:../../../packages/runtime/plugin-testing - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/koa': 2.13.4 '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 isomorphic-fetch: 3.0.0 - ts-node: 10.9.1_tmt345f6mmvj3vdnsaqf2jblxq + ts-node: 10.8.1_5axvewzfuqiugp6622ftukgx6y tsconfig-paths: 3.14.1 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/app-document: specifiers: @@ -4204,14 +4239,14 @@ importers: '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/asset-prefix: specifiers: '@types/jest': ^29 '@types/node': ^14 dependencies: - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 tests/integration/asset-prefix/fixtures/dev-asset-prefix: @@ -4221,7 +4256,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: @@ -4244,11 +4279,11 @@ importers: react-dom: 18.2.0_react@18.2.0 devDependencies: '@modern-js/app-tools': link:../../../packages/solutions/app-tools - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/bff-express: specifiers: @@ -4270,24 +4305,24 @@ importers: typescript: ^4 zod: ^3.17.3 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 '@modern-js/plugin-bff': link:../../../packages/cli/plugin-bff '@modern-js/plugin-express': link:../../../packages/server/plugin-express '@modern-js/runtime': link:../../../packages/runtime/plugin-runtime express: 4.18.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - ts-node: 10.9.1_tmt345f6mmvj3vdnsaqf2jblxq + ts-node: 10.8.1_5axvewzfuqiugp6622ftukgx6y tsconfig-paths: 3.14.1 - zod: 3.20.2 + zod: 3.17.3 devDependencies: '@modern-js/app-tools': link:../../../packages/solutions/app-tools '@types/express': 4.17.13 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/bff-koa: specifiers: @@ -4309,7 +4344,7 @@ importers: typescript: ^4 zod: ^3.17.3 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.0 '@modern-js/plugin-bff': link:../../../packages/cli/plugin-bff '@modern-js/plugin-koa': link:../../../packages/server/plugin-koa '@modern-js/runtime': link:../../../packages/runtime/plugin-runtime @@ -4333,7 +4368,7 @@ importers: '@types/jest': ^29 '@types/node': ^14 dependencies: - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 tests/integration/builder-plugins/fixtures/register-builder-plugins: @@ -4343,7 +4378,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: @@ -4366,11 +4401,11 @@ importers: react-dom: 18.2.0_react@18.2.0 devDependencies: '@modern-js/app-tools': link:../../../packages/solutions/app-tools - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/clean-dist-path: specifiers: @@ -4400,7 +4435,7 @@ importers: '@types/jest': ^29 '@types/node': ^14 dependencies: - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 tests/integration/copy-assets/fixtures/copy-public-html: @@ -4410,7 +4445,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: @@ -4729,7 +4764,7 @@ importers: postcss: 8.4.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - tailwindcss: 3.2.7_postcss@8.4.21 + tailwindcss: 3.2.4_postcss@8.4.21 tests/integration/css/fixtures/twin.macro-v2: specifiers: @@ -4766,8 +4801,8 @@ importers: postcss: 8.4.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - tailwindcss: 3.2.7_postcss@8.4.21 - twin.macro: 3.1.0_tailwindcss@3.2.7 + tailwindcss: 3.2.4_postcss@8.4.21 + twin.macro: 3.1.0_tailwindcss@3.2.4 tests/integration/custom-render: specifiers: @@ -4786,7 +4821,7 @@ importers: react-dom: 18.2.0_react@18.2.0 devDependencies: '@modern-js/app-tools': link:../../../packages/solutions/app-tools - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 @@ -4809,11 +4844,11 @@ importers: react-dom: 18.2.0_react@18.2.0 devDependencies: '@modern-js/app-tools': link:../../../packages/solutions/app-tools - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/dev-server: specifiers: @@ -4907,7 +4942,7 @@ importers: '@types/jest': ^29 '@types/node': ^14 dependencies: - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 tests/integration/esbuild/fixtures/legacy-minify-js: @@ -4918,7 +4953,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.20.7 '@modern-js/runtime': link:../../../../../packages/runtime/plugin-runtime react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4933,7 +4968,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.20.7 '@modern-js/runtime': link:../../../../../packages/runtime/plugin-runtime react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4963,7 +4998,7 @@ importers: '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/garfish/dashboard-router-v6: specifiers: @@ -4988,7 +5023,7 @@ importers: '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/garfish/main: specifiers: @@ -5013,7 +5048,7 @@ importers: '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/garfish/main-router-v6: specifiers: @@ -5038,7 +5073,7 @@ importers: '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/garfish/main-rspack: specifiers: @@ -5090,14 +5125,14 @@ importers: '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/load-config: specifiers: '@types/jest': ^29 '@types/node': ^14 dependencies: - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 tests/integration/load-config/fixtures/async-config-function: @@ -5107,7 +5142,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.20.7 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: @@ -5120,7 +5155,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.20.7 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: @@ -5133,7 +5168,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.20.7 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: @@ -5146,7 +5181,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.20.7 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: @@ -5212,7 +5247,7 @@ importers: '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/routes: specifiers: @@ -5237,7 +5272,7 @@ importers: '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/runtime: specifiers: {} @@ -5251,7 +5286,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 '@modern-js/app-tools': link:../../../../../packages/solutions/app-tools '@modern-js/plugin-router-v5': link:../../../../../packages/runtime/plugin-router-v5 '@modern-js/runtime': link:../../../../../packages/runtime/plugin-runtime @@ -5266,7 +5301,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 '@modern-js/app-tools': link:../../../../../packages/solutions/app-tools '@modern-js/runtime': link:../../../../../packages/runtime/plugin-runtime react: 18.2.0 @@ -5277,7 +5312,7 @@ importers: '@types/jest': ^29 '@types/node': ^14 devDependencies: - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 tests/integration/select-entry/fixtures/select-mul-entry: @@ -5342,7 +5377,7 @@ importers: react-dom: ^18 typescript: ^4 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 '@modern-js/runtime': link:../../../packages/runtime/plugin-runtime react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -5351,11 +5386,11 @@ importers: '@modern-js/server-core': link:../../../packages/server/core '@modern-js/utils': link:../../../packages/toolkit/utils '@types/express': 4.17.13 - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/server-hook/middleware: specifiers: @@ -5377,10 +5412,10 @@ importers: '@modern-js/app-tools': link:../../../../packages/solutions/app-tools '@modern-js/plugin-server': link:../../../../packages/server/plugin-server '@types/jest': 26.0.24 - '@types/node': 16.11.68 + '@types/node': 16.18.10 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/server-hook/request: specifiers: @@ -5402,10 +5437,10 @@ importers: '@modern-js/app-tools': link:../../../../packages/solutions/app-tools '@modern-js/plugin-server': link:../../../../packages/server/plugin-server '@types/jest': 26.0.24 - '@types/node': 16.11.68 + '@types/node': 16.18.10 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/server-hook/response: specifiers: @@ -5427,10 +5462,10 @@ importers: '@modern-js/app-tools': link:../../../../packages/solutions/app-tools '@modern-js/plugin-server': link:../../../../packages/server/plugin-server '@types/jest': 26.0.24 - '@types/node': 16.11.68 + '@types/node': 16.18.10 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/server-hook/router: specifiers: @@ -5452,10 +5487,10 @@ importers: '@modern-js/app-tools': link:../../../../packages/solutions/app-tools '@modern-js/plugin-server': link:../../../../packages/server/plugin-server '@types/jest': 26.0.24 - '@types/node': 16.11.68 + '@types/node': 16.18.10 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/server-hook/template: specifiers: @@ -5477,10 +5512,10 @@ importers: '@modern-js/app-tools': link:../../../../packages/solutions/app-tools '@modern-js/plugin-server': link:../../../../packages/server/plugin-server '@types/jest': 26.0.24 - '@types/node': 16.11.68 + '@types/node': 16.18.10 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/server-prod: specifiers: @@ -5492,7 +5527,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 '@modern-js/runtime': link:../../../packages/runtime/plugin-runtime axios: 1.2.1 express: 4.18.1 @@ -5610,14 +5645,14 @@ importers: '@modern-js/tsconfig': link:../../../../../packages/review/tsconfig '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - typescript: 4.9.5 + typescript: 4.9.3 tests/integration/swc: specifiers: '@types/jest': ^29 '@types/node': ^14 dependencies: - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 '@types/node': 14.18.35 tests/integration/swc/fixtures/minify-css: @@ -5629,7 +5664,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.20.7 '@modern-js/runtime': link:../../../../../packages/runtime/plugin-runtime react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -5646,7 +5681,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.18.6 '@modern-js/runtime': link:../../../../../packages/runtime/plugin-runtime react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -5663,7 +5698,7 @@ importers: react: ^18 react-dom: ^18 dependencies: - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.20.7 '@modern-js/runtime': link:../../../../../packages/runtime/plugin-runtime react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -5748,6 +5783,23 @@ packages: dependencies: '@ctrl/tinycolor': 3.6.0 + /@ant-design/cssinjs/1.5.3_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-rKsX5BLCISmllyfSnwgBzfspwbG8tbhDC9hZwjUMV1Rivg4XQFxLy5qRG1vAvM9wKzixAS+PzO+E2Sq7mK4VIQ==} + peerDependencies: + react: '>=16.0.0' + react-dom: '>=16.0.0' + dependencies: + '@babel/runtime': 7.21.5 + '@emotion/hash': 0.8.0 + '@emotion/unitless': 0.7.5 + classnames: 2.3.2 + csstype: 3.1.0 + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + stylis: 4.1.3 + dev: false + /@ant-design/cssinjs/1.6.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-kmUo5xrfjOtDBp6LcBwPqPXei3Zar4SZfg7FpuahS1Fm9NyWckrxEVge6MjBgmZrpAnaJn00zy2jMELL7HuY6w==} peerDependencies: @@ -5763,6 +5815,7 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 stylis: 4.1.3 + dev: true /@ant-design/icons-svg/4.2.1: resolution: {integrity: sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==} @@ -5946,12 +5999,30 @@ packages: '@babel/highlight': 7.18.6 dev: false + /@babel/code-frame/7.16.7: + resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + dev: true + + /@babel/code-frame/7.18.6: + resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + /@babel/code-frame/7.21.4: resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.18.6 + /@babel/compat-data/7.20.1: + resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} + engines: {node: '>=6.9.0'} + dev: false + /@babel/compat-data/7.21.7: resolution: {integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==} engines: {node: '>=6.9.0'} @@ -6003,6 +6074,28 @@ packages: - supports-color dev: false + /@babel/core/7.20.5: + resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.21.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helpers': 7.20.6 + '@babel/parser': 7.21.8 + '@babel/template': 7.20.7 + '@babel/traverse': 7.21.5 + '@babel/types': 7.21.5 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + /@babel/core/7.21.8: resolution: {integrity: sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==} engines: {node: '>=6.9.0'} @@ -6073,8 +6166,8 @@ packages: '@babel/helper-explode-assignable-expression': 7.18.6 '@babel/types': 7.21.5 - /@babel/helper-compilation-targets/7.21.5: - resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==} + /@babel/helper-compilation-targets/7.20.0: + resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -6082,10 +6175,33 @@ packages: '@babel/compat-data': 7.21.7 '@babel/helper-validator-option': 7.21.0 browserslist: 4.21.4 - lru-cache: 5.1.1 semver: 6.3.0 dev: false + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5: + resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.21.7 + '@babel/core': 7.20.5 + '@babel/helper-validator-option': 7.21.0 + browserslist: 4.21.4 + semver: 6.3.0 + + /@babel/helper-compilation-targets/7.20.0_@babel+core@7.21.8: + resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.21.7 + '@babel/core': 7.21.8 + '@babel/helper-validator-option': 7.21.0 + browserslist: 4.21.4 + semver: 6.3.0 + /@babel/helper-compilation-targets/7.21.5_@babel+core@7.15.8: resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==} engines: {node: '>=6.9.0'} @@ -6100,6 +6216,20 @@ packages: semver: 6.3.0 dev: false + /@babel/helper-compilation-targets/7.21.5_@babel+core@7.20.5: + resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.21.7 + '@babel/core': 7.20.5 + '@babel/helper-validator-option': 7.21.0 + browserslist: 4.21.4 + lru-cache: 5.1.1 + semver: 6.3.0 + dev: false + /@babel/helper-compilation-targets/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==} engines: {node: '>=6.9.0'} @@ -6132,6 +6262,26 @@ packages: - supports-color dev: false + /@babel/helper-create-class-features-plugin/7.21.8_@babel+core@7.20.5: + resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.21.5 + '@babel/helper-function-name': 7.21.0 + '@babel/helper-member-expression-to-functions': 7.21.5 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.21.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/helper-split-export-declaration': 7.18.6 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/helper-create-class-features-plugin/7.21.8_@babel+core@7.21.8: resolution: {integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==} engines: {node: '>=6.9.0'} @@ -6151,6 +6301,39 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.20.5: + resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.1.0 + dev: false + + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.21.8: + resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.21.8 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.1.0 + + /@babel/helper-create-regexp-features-plugin/7.21.8_@babel+core@7.20.5: + resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.3.2 + semver: 6.3.0 + dev: false + /@babel/helper-create-regexp-features-plugin/7.21.8_@babel+core@7.21.8: resolution: {integrity: sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==} engines: {node: '>=6.9.0'} @@ -6185,7 +6368,23 @@ packages: peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/helper-compilation-targets': 7.21.5 + '@babel/helper-compilation-targets': 7.20.0 + '@babel/helper-plugin-utils': 7.21.5 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.5: + resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 '@babel/helper-plugin-utils': 7.21.5 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -6201,7 +6400,7 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.21.8 - '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.21.8 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.21.8 '@babel/helper-plugin-utils': 7.21.5 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -6210,6 +6409,10 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-environment-visitor/7.18.9: + resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + engines: {node: '>=6.9.0'} + /@babel/helper-environment-visitor/7.21.5: resolution: {integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==} engines: {node: '>=6.9.0'} @@ -6239,12 +6442,34 @@ packages: dependencies: '@babel/types': 7.21.5 + /@babel/helper-module-imports/7.18.6: + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.21.5 + dev: false + /@babel/helper-module-imports/7.21.4: resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.21.5 + /@babel/helper-module-transforms/7.20.2: + resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.21.5 + '@babel/helper-module-imports': 7.21.4 + '@babel/helper-simple-access': 7.21.5 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 + '@babel/template': 7.20.7 + '@babel/traverse': 7.21.5 + '@babel/types': 7.21.5 + transitivePeerDependencies: + - supports-color + /@babel/helper-module-transforms/7.21.5: resolution: {integrity: sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==} engines: {node: '>=6.9.0'} @@ -6270,10 +6495,30 @@ packages: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: false + /@babel/helper-plugin-utils/7.20.2: + resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} + engines: {node: '>=6.9.0'} + dev: false + /@babel/helper-plugin-utils/7.21.5: resolution: {integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==} engines: {node: '>=6.9.0'} + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.21.5 + '@babel/helper-wrap-function': 7.19.0 + '@babel/types': 7.21.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} @@ -6301,6 +6546,13 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-simple-access/7.20.2: + resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.21.5 + dev: true + /@babel/helper-simple-access/7.21.5: resolution: {integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==} engines: {node: '>=6.9.0'} @@ -6342,6 +6594,16 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helpers/7.20.6: + resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.20.7 + '@babel/traverse': 7.21.5 + '@babel/types': 7.21.5 + transitivePeerDependencies: + - supports-color + /@babel/helpers/7.21.5: resolution: {integrity: sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==} engines: {node: '>=6.9.0'} @@ -6367,6 +6629,16 @@ packages: dependencies: '@babel/types': 7.21.5 + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -6376,6 +6648,18 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.20.5 + dev: false + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} @@ -6387,6 +6671,21 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.8 + /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.5: + resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-environment-visitor': 7.21.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} @@ -6401,6 +6700,19 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -6413,6 +6725,20 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==} engines: {node: '>=6.9.0'} @@ -6441,6 +6767,17 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 + dev: false + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} @@ -6461,6 +6798,17 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.21.8 + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 + dev: false + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} @@ -6471,6 +6819,17 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.8 + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 + dev: false + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} @@ -6481,6 +6840,17 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.8 + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 + dev: false + /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} @@ -6491,6 +6861,17 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.8 + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 + dev: false + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -6501,6 +6882,17 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.8 + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 + dev: false + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} @@ -6522,6 +6914,34 @@ packages: '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.12.9 dev: false + /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.21.7 + '@babel/core': 7.20.5 + '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.20.5 + dev: false + + /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.21.8: + resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.21.7 + '@babel/core': 7.21.8 + '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.8 + '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.8 + dev: false + /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -6535,6 +6955,17 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.8 '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.8 + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 + dev: false + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} @@ -6545,6 +6976,42 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.8 + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 + dev: false + + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.21.8: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.8 + dev: false + + /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.20.5: + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 + dev: false + /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} @@ -6578,6 +7045,19 @@ packages: '@babel/plugin-syntax-pipeline-operator': 7.18.6_@babel+core@7.21.8 dev: true + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -6590,6 +7070,36 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.21.8: + resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.8 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.8 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==} engines: {node: '>=6.9.0'} @@ -6604,6 +7114,17 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} @@ -6611,8 +7132,17 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.8 - '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.21.8 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.5: + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 '@babel/helper-plugin-utils': 7.21.5 + dev: false /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.8: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} @@ -6630,6 +7160,15 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.5: + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.8: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: @@ -6638,6 +7177,16 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.5: + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.8: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} @@ -6656,6 +7205,15 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: @@ -6673,6 +7231,15 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -6691,6 +7258,16 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.5: + resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.8: resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} @@ -6708,6 +7285,15 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: @@ -6734,6 +7320,16 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false + /@babel/plugin-syntax-jsx/7.21.4_@babel+core@7.20.5: + resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-jsx/7.21.4_@babel+core@7.21.8: resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} engines: {node: '>=6.9.0'} @@ -6743,6 +7339,15 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.5: + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.8: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -6751,6 +7356,15 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: @@ -6759,6 +7373,15 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.5: + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.8: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: @@ -6776,6 +7399,15 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: @@ -6784,6 +7416,15 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: @@ -6792,6 +7433,15 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.5: + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.8: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: @@ -6820,6 +7470,16 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.5: + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.8: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} @@ -6829,6 +7489,16 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.5: + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.8: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} @@ -6847,6 +7517,16 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false + /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.20.5: + resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.21.8: resolution: {integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==} engines: {node: '>=6.9.0'} @@ -6856,6 +7536,26 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.21.8: + resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-arrow-functions/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==} engines: {node: '>=6.9.0'} @@ -6865,6 +7565,20 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-module-imports': 7.21.4 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} engines: {node: '>=6.9.0'} @@ -6878,6 +7592,16 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -6887,6 +7611,26 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-block-scoping/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + + /@babel/plugin-transform-block-scoping/7.20.2_@babel+core@7.21.8: + resolution: {integrity: sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} engines: {node: '>=6.9.0'} @@ -6896,6 +7640,26 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-classes/7.21.0_@babel+core@7.20.5: + resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.20.5 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-replace-supers': 7.21.5 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.8: resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} engines: {node: '>=6.9.0'} @@ -6905,7 +7669,7 @@ packages: '@babel/core': 7.21.8 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.21.8 - '@babel/helper-environment-visitor': 7.21.5 + '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.21.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.21.5 @@ -6915,6 +7679,16 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-computed-properties/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==} engines: {node: '>=6.9.0'} @@ -6925,6 +7699,26 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/template': 7.20.7 + /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + + /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.21.8: + resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.21.8: resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} engines: {node: '>=6.9.0'} @@ -6934,6 +7728,17 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -6941,9 +7746,19 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.8 - '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.21.8 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} @@ -6953,6 +7768,17 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.6 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} @@ -6974,6 +7800,26 @@ packages: '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.8 dev: false + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.5: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.21.8: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-for-of/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==} engines: {node: '>=6.9.0'} @@ -6983,6 +7829,18 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-compilation-targets': 7.21.5_@babel+core@7.20.5 + '@babel/helper-function-name': 7.21.0 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} @@ -6994,6 +7852,16 @@ packages: '@babel/helper-function-name': 7.21.0 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} @@ -7003,6 +7871,16 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -7012,6 +7890,19 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.5: + resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-module-transforms': 7.21.5 + '@babel/helper-plugin-utils': 7.21.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.8: resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} @@ -7024,6 +7915,20 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.5: + resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-module-transforms': 7.20.2 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-simple-access': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-commonjs/7.21.5: resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} engines: {node: '>=6.9.0'} @@ -7037,6 +7942,20 @@ packages: - supports-color dev: false + /@babel/plugin-transform-modules-commonjs/7.21.5_@babel+core@7.20.5: + resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-module-transforms': 7.21.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-simple-access': 7.21.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-modules-commonjs/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==} engines: {node: '>=6.9.0'} @@ -7050,6 +7969,21 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.5: + resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.21.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-validator-identifier': 7.19.1 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.8: resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} engines: {node: '>=6.9.0'} @@ -7064,6 +7998,19 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-module-transforms': 7.21.5 + '@babel/helper-plugin-utils': 7.21.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} @@ -7076,6 +8023,17 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.20.5: + resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.8: resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} @@ -7086,6 +8044,16 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} @@ -7095,6 +8063,19 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-replace-supers': 7.21.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} @@ -7107,6 +8088,26 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.20.5: + resolution: {integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + + /@babel/plugin-transform-parameters/7.20.3_@babel+core@7.21.8: + resolution: {integrity: sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.12.9: resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} @@ -7117,6 +8118,16 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false + /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.20.5: + resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.21.8: resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} engines: {node: '>=6.9.0'} @@ -7126,6 +8137,16 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -7135,13 +8156,23 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 - /@babel/plugin-transform-react-constant-elements/7.20.2_@babel+core@7.21.8: + /@babel/plugin-transform-react-constant-elements/7.20.2_@babel+core@7.20.5: resolution: {integrity: sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.21.8 + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 '@babel/helper-plugin-utils': 7.21.5 dev: false @@ -7155,6 +8186,16 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 + dev: false + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} @@ -7165,6 +8206,20 @@ packages: '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.8 dev: false + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.5: + resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.21.4 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-jsx': 7.21.4_@babel+core@7.20.5 + '@babel/types': 7.21.5 + dev: false + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.21.8: resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} engines: {node: '>=6.9.0'} @@ -7179,6 +8234,17 @@ packages: '@babel/types': 7.21.5 dev: false + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} @@ -7190,6 +8256,17 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: false + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + regenerator-transform: 0.15.1 + dev: false + /@babel/plugin-transform-regenerator/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==} engines: {node: '>=6.9.0'} @@ -7200,6 +8277,16 @@ packages: '@babel/helper-plugin-utils': 7.21.5 regenerator-transform: 0.15.1 + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} @@ -7226,6 +8313,16 @@ packages: - supports-color dev: false + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} @@ -7235,6 +8332,28 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.5: + resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + dev: false + + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.21.8: + resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.8 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + dev: false + /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.8: resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} @@ -7245,6 +8364,16 @@ packages: '@babel/helper-plugin-utils': 7.21.5 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -7254,6 +8383,16 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} @@ -7263,6 +8402,16 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.5: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.8: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} @@ -7286,6 +8435,21 @@ packages: - supports-color dev: false + /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.20.5: + resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.21.8_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-syntax-typescript': 7.21.4_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.21.8: resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==} engines: {node: '>=6.9.0'} @@ -7300,6 +8464,16 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.5: + resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-unicode-escapes/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==} engines: {node: '>=6.9.0'} @@ -7309,6 +8483,17 @@ packages: '@babel/core': 7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + dev: false + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} @@ -7319,6 +8504,92 @@ packages: '@babel/helper-create-regexp-features-plugin': 7.21.8_@babel+core@7.21.8 '@babel/helper-plugin-utils': 7.21.5 + /@babel/preset-env/7.20.2_@babel+core@7.20.5: + resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.1 + '@babel/core': 7.20.5 + '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-validator-option': 7.21.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.5 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.20.5 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.5 + '@babel/plugin-transform-modules-commonjs': 7.21.5_@babel+core@7.20.5 + '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.5 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.20.5 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.20.5 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.5 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.5 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.5 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.5 + '@babel/types': 7.21.5 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.5 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.5 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.5 + core-js-compat: 3.26.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/preset-env/7.21.5_@babel+core@7.21.8: resolution: {integrity: sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==} engines: {node: '>=6.9.0'} @@ -7417,6 +8688,19 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.18.6_@babel+core@7.21.8 dev: false + /@babel/preset-modules/0.1.5_@babel+core@7.20.5: + resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5 + '@babel/types': 7.21.5 + esutils: 2.0.3 + dev: false + /@babel/preset-modules/0.1.5_@babel+core@7.21.8: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: @@ -7429,6 +8713,21 @@ packages: '@babel/types': 7.21.5 esutils: 2.0.3 + /@babel/preset-react/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-validator-option': 7.21.0 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.5 + dev: false + /@babel/preset-react/7.18.6_@babel+core@7.21.8: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} @@ -7444,6 +8743,20 @@ packages: '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.21.8 dev: false + /@babel/preset-typescript/7.18.6_@babel+core@7.20.5: + resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-validator-option': 7.21.0 + '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/preset-typescript/7.21.5: resolution: {integrity: sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==} engines: {node: '>=6.9.0'} @@ -7491,6 +8804,26 @@ packages: /@babel/regjsgen/0.8.0: resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + /@babel/runtime/7.18.0: + resolution: {integrity: sha512-YMQvx/6nKEaucl0MY56mwIG483xk8SDNdlUwb2Ts6FUpr7fm85DxEmsY18LXBNhcTz6tO6JwZV8w1W06v8UKeg==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.11 + dev: false + + /@babel/runtime/7.18.6: + resolution: {integrity: sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.9 + dev: false + + /@babel/runtime/7.20.7: + resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.11 + /@babel/runtime/7.21.5: resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==} engines: {node: '>=6.9.0'} @@ -7501,7 +8834,7 @@ packages: resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.18.6 '@babel/parser': 7.21.8 '@babel/types': 7.21.5 @@ -7592,7 +8925,6 @@ packages: /@changesets/cli/2.26.0: resolution: {integrity: sha512-0cbTiDms+ICTVtEwAFLNW0jBNex9f5+fFv3I771nBvdnV/mOjd1QJ4+f8KtVSOrwD9SJkk9xbDkWFb0oXd8d1Q==} - hasBin: true dependencies: '@babel/runtime': 7.21.5 '@changesets/apply-release-plan': 6.1.3 @@ -7678,7 +9010,7 @@ packages: dependencies: '@babel/runtime': 7.21.5 '@changesets/errors': 0.1.4 - '@changesets/types': 5.2.1 + '@changesets/types': 5.0.0 '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 spawndamnit: 2.0.0 @@ -7702,6 +9034,13 @@ packages: chalk: 2.4.2 dev: false + /@changesets/parse/0.3.13: + resolution: {integrity: sha512-wh9Ifa0dungY6d2nMz6XxF6FZ/1I7j+mEgPAqrIyKS64nifTh1Ua82qKKMMK05CL7i4wiB2NYc3SfnnCX3RVeA==} + dependencies: + '@changesets/types': 5.0.0 + js-yaml: 3.14.1 + dev: false + /@changesets/parse/0.3.16: resolution: {integrity: sha512-127JKNd167ayAuBjUggZBkmDS5fIKsthnr9jr6bdnuUljroiERW7FBTDNnNVyJ4l69PzR57pk6mXQdtJyBCJKg==} dependencies: @@ -7719,6 +9058,19 @@ packages: fs-extra: 7.0.1 dev: false + /@changesets/read/0.5.5: + resolution: {integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==} + dependencies: + '@babel/runtime': 7.21.5 + '@changesets/git': 1.3.2 + '@changesets/logger': 0.0.5 + '@changesets/parse': 0.3.13 + '@changesets/types': 5.0.0 + chalk: 2.4.2 + fs-extra: 7.0.1 + p-filter: 2.1.0 + dev: false + /@changesets/read/0.5.9: resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} dependencies: @@ -7736,6 +9088,10 @@ packages: resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} dev: false + /@changesets/types/5.0.0: + resolution: {integrity: sha512-IT1kBLSbAgTS4WtpU6P5ko054hq12vk4tgeIFRVE7Vnm4a/wgbNvBalgiKP0MjEXbCkZbItiGQHkCGxYWR55sA==} + dev: false + /@changesets/types/5.2.1: resolution: {integrity: sha512-myLfHbVOqaq9UtUKqR/nZA/OY7xFjQMdfgfqeZIBK4d0hA6pgxArvdv8M+6NUzzBsjWLOtvApv8YHr4qM+Kpfg==} dev: false @@ -7753,10 +9109,9 @@ packages: /@cnakazawa/watch/1.0.4: resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} engines: {node: '>=0.1.95'} - hasBin: true dependencies: exec-sh: 0.3.6 - minimist: 1.2.6 + minimist: 1.2.8 dev: false /@code-hike/mdx/0.7.4_react@18.2.0: @@ -7786,7 +9141,6 @@ packages: /@commitlint/cli/13.2.1: resolution: {integrity: sha512-JGzYk2ay5JkRS5w+FLQzr0u/Kih52ds4HPpa3vnwVOQN8Q+S1VYr8Nk/6kRm6uNYsAcC1nejtuDxRdLcLh/9TA==} engines: {node: '>=v12'} - hasBin: true dependencies: '@commitlint/format': 13.2.0 '@commitlint/lint': 13.2.0 @@ -7955,6 +9309,11 @@ packages: engines: {node: ^14 || ^16 || >=18} dev: true + /@ctrl/tinycolor/3.4.1: + resolution: {integrity: sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw==} + engines: {node: '>=10'} + dev: false + /@ctrl/tinycolor/3.6.0: resolution: {integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==} engines: {node: '>=10'} @@ -8544,7 +9903,6 @@ packages: /@formatjs/intl-utils/3.8.4: resolution: {integrity: sha512-j5C6NyfKevIxsfLK8KwO1C0vvP7k1+h4A9cFpc+cr6mEwCc1sPkr17dzh0Ke6k9U5pQccAQoXdcNBl3IYa4+ZQ==} - deprecated: the package is rather renamed to @formatjs/ecma-abstract with some changes in functionality (primarily selectUnit is removed and we don't plan to make any further changes to this package dependencies: emojis-list: 3.0.0 dev: false @@ -8557,6 +9915,17 @@ packages: '@formily/shared': 2.2.22 '@formily/validator': 2.2.22 + /@formily/json-schema/2.2.22_typescript@4.9.3: + resolution: {integrity: sha512-RkIObTHwYkvzy1km770lLM3SoZvIS4TTnnOSZMdW+qWTwS+956dO8sjPUwzoQ51/ELiA9Zy3s0ao9mUcawdZjw==} + engines: {npm: '>=3.0.0'} + peerDependencies: + typescript: ^4.1.5 + dependencies: + '@formily/core': 2.2.22 + '@formily/reactive': 2.2.22 + '@formily/shared': 2.2.22 + typescript: 4.9.3 + /@formily/json-schema/2.2.22_typescript@4.9.5: resolution: {integrity: sha512-RkIObTHwYkvzy1km770lLM3SoZvIS4TTnnOSZMdW+qWTwS+956dO8sjPUwzoQ51/ELiA9Zy3s0ao9mUcawdZjw==} engines: {npm: '>=3.0.0'} @@ -8567,6 +9936,7 @@ packages: '@formily/reactive': 2.2.22 '@formily/shared': 2.2.22 typescript: 4.9.5 + dev: true /@formily/path/2.2.22: resolution: {integrity: sha512-lu7dUqiK1+Ux9mIRleV0hkGYUNi+msGC//FLDikPsEqM86uOgbGlF0ryF1EgzQVcuTRG7RVgOY/1nutSMudMKw==} @@ -8773,6 +10143,48 @@ packages: - supports-color - ts-node + /@jest/core/29.5.0_ts-node@10.8.1: + resolution: {integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/console': 29.5.0 + '@jest/reporters': 29.5.0 + '@jest/test-result': 29.5.0 + '@jest/transform': 29.5.0 + '@jest/types': 29.5.0 + '@types/node': 18.11.17 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.3.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + jest-changed-files: 29.5.0 + jest-config: 29.5.0_iwszhnlf4w4ft46xnex7wh5rt4 + jest-haste-map: 29.5.0 + jest-message-util: 29.5.0 + jest-regex-util: 29.4.3 + jest-resolve: 29.5.0 + jest-resolve-dependencies: 29.5.0 + jest-runner: 29.5.0 + jest-runtime: 29.5.0 + jest-snapshot: 29.5.0 + jest-util: 29.5.0 + jest-validate: 29.5.0 + jest-watcher: 29.5.0 + micromatch: 4.0.5 + pretty-format: 29.5.0 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - supports-color + - ts-node + dev: true + /@jest/core/29.5.0_ts-node@10.9.1: resolution: {integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -9073,7 +10485,7 @@ packages: '@jest/schemas': 29.4.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.17 + '@types/node': 14.18.35 '@types/yargs': 17.0.10 chalk: 4.1.2 @@ -9347,6 +10759,32 @@ packages: redux: 4.2.0 dev: false + /@modern-js/codesmith-api-app/2.2.0_skvqcrgwbq4kgo5eynkccbgoly: + resolution: {integrity: sha512-dBqyMJuMARQKJpsRU7D3l5VlWPXx8v2VK3Oc7GRrLXeJhAcHeI3ywMGDFa3CD9RIabSQj6AOhh9EwQJYi4m4yg==} + peerDependencies: + '@modern-js/codesmith': ^2.2.0 + dependencies: + '@babel/runtime': 7.21.5 + '@modern-js/codesmith': 2.2.0 + '@modern-js/codesmith-api-ejs': 2.2.0_@modern-js+codesmith@2.2.0 + '@modern-js/codesmith-api-fs': 2.2.0_@modern-js+codesmith@2.2.0 + '@modern-js/codesmith-api-git': 2.2.0_@modern-js+codesmith@2.2.0 + '@modern-js/codesmith-api-handlebars': 2.2.0_@modern-js+codesmith@2.2.0 + '@modern-js/codesmith-api-npm': 2.2.0 + '@modern-js/codesmith-formily': 2.2.0_skvqcrgwbq4kgo5eynkccbgoly + '@modern-js/plugin-i18n': 2.18.0 + '@modern-js/utils': 2.18.0 + comment-json: 4.2.3 + extra: 0.2.1 + inquirer: 8.1.3 + transitivePeerDependencies: + - debug + - react + - react-dom + - react-router-dom + - typescript + dev: true + /@modern-js/codesmith-api-app/2.2.0_xefosl7bahx5m5v257q5cujr54: resolution: {integrity: sha512-dBqyMJuMARQKJpsRU7D3l5VlWPXx8v2VK3Oc7GRrLXeJhAcHeI3ywMGDFa3CD9RIabSQj6AOhh9EwQJYi4m4yg==} peerDependencies: @@ -9441,6 +10879,23 @@ packages: - react-dom - react-router-dom + /@modern-js/codesmith-formily/2.2.0_skvqcrgwbq4kgo5eynkccbgoly: + resolution: {integrity: sha512-pPekssMaMLi24kZ8djoVLALIrZtVwmIh191kCMGNSS8tKrqXjJluXxKOHmqktWGYaiAoqCvFaynPObOirXc0/g==} + peerDependencies: + '@modern-js/codesmith': ^2.2.0 + dependencies: + '@babel/runtime': 7.21.5 + '@formily/json-schema': 2.2.22_typescript@4.9.3 + '@formily/validator': 2.2.22 + '@modern-js/codesmith': 2.2.0 + '@modern-js/utils': 2.18.0 + inquirer: 8.2.5 + transitivePeerDependencies: + - react + - react-dom + - react-router-dom + - typescript + /@modern-js/codesmith-formily/2.2.0_xefosl7bahx5m5v257q5cujr54: resolution: {integrity: sha512-pPekssMaMLi24kZ8djoVLALIrZtVwmIh191kCMGNSS8tKrqXjJluXxKOHmqktWGYaiAoqCvFaynPObOirXc0/g==} peerDependencies: @@ -9457,6 +10912,7 @@ packages: - react-dom - react-router-dom - typescript + dev: true /@modern-js/codesmith/2.2.0: resolution: {integrity: sha512-PnqiLjDtgUtb/0owbjsFy1PlKldUYzOWffLZ/y27eGGgJk6LRe3MboCwolXcrhoG/hdCA0J0xBhEa5rXCmNa1g==} @@ -9674,7 +11130,7 @@ packages: event-source-polyfill: 1.0.26 fastestsmallesttextencoderdecoder: 1.0.22 from2-string: 1.1.0 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 html5shiv: 3.7.3 intl: 1.2.5 @@ -10001,7 +11457,6 @@ packages: /@npmcli/move-file/1.1.2: resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} engines: {node: '>=10'} - deprecated: This functionality has been moved to @npmcli/fs dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 @@ -10010,7 +11465,6 @@ packages: /@playwright/test/1.25.1: resolution: {integrity: sha512-IJ4X0yOakXtwkhbnNzKkaIgXe6df7u3H3FnuhI9Jqh+CdO0e/lYQlDLYiyI9cnXK8E7UAppAWP+VqAv6VX7HQg==} engines: {node: '>=14'} - hasBin: true dependencies: '@types/node': 18.11.17 playwright-core: 1.25.1 @@ -10128,7 +11582,7 @@ packages: html-entities: 2.3.3 loader-utils: 2.0.4 react-refresh: 0.14.0 - schema-utils: 3.1.2 + schema-utils: 3.1.1 source-map: 0.7.4 webpack: 5.82.1 dev: false @@ -10167,7 +11621,7 @@ packages: html-entities: 2.3.3 loader-utils: 2.0.4 react-refresh: 0.11.0 - schema-utils: 3.1.2 + schema-utils: 3.1.1 source-map: 0.7.4 webpack: 5.82.1_esbuild@0.15.7 dev: false @@ -10222,6 +11676,22 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + /@rc-component/tour/1.1.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-Cy45VnNEDq6DLF5eKonIflObDfofbPq7AJpSf18qLN+j9+wW+sNlRv3JnCMDUsCdhSlnM4+yJ1RMokKp9GCpOQ==} + engines: {node: '>=8.x'} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + '@rc-component/portal': 1.1.0_biqbaboplfbrettd7655fr4n2y + classnames: 2.3.2 + rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /@rc-component/tour/1.8.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-rrRGioHTLQlGca27G2+lw7QpRb3uuMYCUIJjj31/B44VCJS0P2tqYhOgtzvWQmaLMlWH3ZlpzotkKX13NT4XEA==} engines: {node: '>=8.x'} @@ -10236,6 +11706,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /@rc-component/trigger/1.6.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-MxIokdiDnBACGYGWtGp19pnBVKPKmrP7yDjGfkE+HtyATLs9T8DOdd53EZnk1DbuEUn+6EMYigKMmXOqffTYxw==} @@ -10253,6 +11724,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /@redux-devtools/extension/3.2.2_redux@4.2.0: resolution: {integrity: sha512-fKA2TWNzJF7wXSDwBemwcagBFudaejXCzH5hRszN3Z6B7XEJtEmGD77AjV0wliZpIZjA/fs3U7CejFMQ+ipS7A==} @@ -10572,7 +12044,7 @@ packages: import-lazy: 4.0.0 jju: 1.4.0 resolve: 1.17.0 - semver: 7.3.7 + semver: 7.3.8 timsort: 0.3.0 z-schema: 5.0.3 dev: false @@ -10648,7 +12120,7 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-inspector: 5.1.1_react@18.2.0 - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.13.9 telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 @@ -10683,7 +12155,7 @@ packages: util-deprecate: 1.0.2 dev: false - /@storybook/addon-controls/6.5.12_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/addon-controls/6.5.12_lb6du3saekb5anf2gjv3wxj3oq: resolution: {integrity: sha512-UoaamkGgAQXplr0kixkPhROdzkY+ZJQpG7VFDU6kmZsIgPRNfX/QoJFR5vV6TpDArBIjWaUUqWII+GHgPRzLgQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -10698,7 +12170,7 @@ packages: '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.12 '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.12 '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y @@ -10717,7 +12189,7 @@ packages: - webpack-command dev: false - /@storybook/addon-docs/6.5.12_5u7rwg36drnjvgrz6gzyae6hqq: + /@storybook/addon-docs/6.5.12_3ws27vppyezd6n3ow2fajrs4rq: resolution: {integrity: sha512-T+QTkmF7QlMVfXHXEberP8CYti/XMTo9oi6VEbZLx+a2N3qY4GZl7X2g26Sf5V4Za+xnapYKBMEIiJ5SvH9weQ==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 @@ -10738,7 +12210,7 @@ packages: '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.12_biqbaboplfbrettd7655fr4n2y @@ -10772,7 +12244,7 @@ packages: - webpack-command dev: false - /@storybook/addon-essentials/6.5.12_m2dgkhnzeduvmjhjfnpvf56mxa: + /@storybook/addon-essentials/6.5.12_qecnbsngvvkeunj7444vl2sc2m: resolution: {integrity: sha512-4AAV0/mQPSk3V0Pie1NIqqgBgScUc0VtBEXDm8BgPeuDNVhPEupnaZgVt+I3GkzzPPo6JjdCsp2L11f3bBSEjw==} peerDependencies: '@babel/core': ^7.9.6 @@ -10832,21 +12304,21 @@ packages: '@babel/core': 7.21.8 '@storybook/addon-actions': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/addon-backgrounds': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-controls': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq - '@storybook/addon-docs': 6.5.12_5u7rwg36drnjvgrz6gzyae6hqq + '@storybook/addon-controls': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq + '@storybook/addon-docs': 6.5.12_3ws27vppyezd6n3ow2fajrs4rq '@storybook/addon-measure': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/addon-outline': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/addon-toolbars': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/addon-viewport': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack5': 6.5.12_aorc5lun3wrqgh2yugxk3iauje - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/builder-webpack5': 6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@storybook/node-logger': 6.5.12 core-js: 3.30.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 webpack: 5.82.1_esbuild@0.15.7 transitivePeerDependencies: @@ -10882,7 +12354,7 @@ packages: qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 dev: false @@ -10959,7 +12431,7 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-syntax-highlighter: 15.5.0_react@18.2.0 - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.13.9 dev: false /@storybook/addon-toolbars/6.5.12_biqbaboplfbrettd7655fr4n2y: @@ -11028,7 +12500,7 @@ packages: global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.13.9 /@storybook/api/6.5.12_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-DuUZmMlQxkFNU9Vgkp9aNfCkAongU76VVmygvCuSpMVDI9HQ2lG0ydL+ppL4XKoSMCCoXTY6+rg4hJANnH+1AQ==} @@ -11056,7 +12528,7 @@ packages: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - /@storybook/builder-webpack4/6.5.12_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/builder-webpack4/6.5.12_lb6du3saekb5anf2gjv3wxj3oq: resolution: {integrity: sha512-TsthT5jm9ZxQPNOZJbF5AV24me3i+jjYD7gbdKdSHrOVn1r3ydX4Z8aD6+BjLCtTn3T+e8NMvUkL4dInEo1x6g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -11074,7 +12546,7 @@ packages: '@storybook/client-api': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.12 '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@storybook/core-events': 6.5.12 '@storybook/node-logger': 6.5.12 '@storybook/preview-web': 6.5.12_biqbaboplfbrettd7655fr4n2y @@ -11092,12 +12564,12 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_evijigonbo4skk2vlqtwtdqibu + fork-ts-checker-webpack-plugin: 4.1.6_4saukclyqastvrycwsozxxbldi glob: 7.2.0 glob-promise: 3.4.0_glob@7.2.0 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.9.5 + pnp-webpack-plugin: 1.6.4_typescript@4.9.3 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -11108,7 +12580,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.9.3 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -11125,7 +12597,7 @@ packages: - webpack-command dev: false - /@storybook/builder-webpack5/6.5.12_aorc5lun3wrqgh2yugxk3iauje: + /@storybook/builder-webpack5/6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a: resolution: {integrity: sha512-jK5jWxhSbMAM/onPB6WN7xVqwZnAmzJljOG24InO/YIjW8pQof7MeAXCYBM4rYM+BbK61gkZ/RKxwlkqXBWv+Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -11143,7 +12615,7 @@ packages: '@storybook/client-api': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/client-logger': 6.5.12 '@storybook/components': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@storybook/core-events': 6.5.12 '@storybook/node-logger': 6.5.12 '@storybook/preview-web': 6.5.12_biqbaboplfbrettd7655fr4n2y @@ -11158,9 +12630,9 @@ packages: case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.30.0 css-loader: 5.2.7_webpack@5.82.1 - fork-ts-checker-webpack-plugin: 6.5.2_hybrf64lftnf5l2xwgg7goi2iu - glob: 7.2.0 - glob-promise: 3.4.0_glob@7.2.0 + fork-ts-checker-webpack-plugin: 6.5.2_7rk4b2hmmye4ay4nslib7apbti + glob: 7.2.3 + glob-promise: 3.4.0_glob@7.2.3 html-webpack-plugin: 5.5.0_webpack@5.82.1 path-browserify: 1.0.1 process: 0.11.10 @@ -11170,7 +12642,7 @@ packages: style-loader: 2.0.0_webpack@5.82.1 terser-webpack-plugin: 5.3.6_jpvhhjxr75v4xuodxvmtbazdsm ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.9.3 util-deprecate: 1.0.2 webpack: 5.82.1_esbuild@0.15.7 webpack-dev-middleware: 4.3.0_webpack@5.82.1 @@ -11270,7 +12742,7 @@ packages: util-deprecate: 1.0.2 dev: false - /@storybook/core-client/6.5.12_vlnyxmat3zl3tpv6tkcs74tqde: + /@storybook/core-client/6.5.12_5ey2xofmun3swml4ceosmuhnmq: resolution: {integrity: sha512-jyAd0ud6zO+flpLv0lEHbbt1Bv9Ms225M6WTQLrfe7kN/7j1pVKZEoeVCLZwkJUtSKcNiWQxZbS15h31pcYwqg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -11301,13 +12773,13 @@ packages: react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.9.3 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.82.1_esbuild@0.15.7 + webpack: 4.46.0 dev: false - /@storybook/core-client/6.5.12_yx6v2mahc4rgaakyal2wzgtgta: + /@storybook/core-client/6.5.12_m4gf55mprlsyzqyurygx3deuii: resolution: {integrity: sha512-jyAd0ud6zO+flpLv0lEHbbt1Bv9Ms225M6WTQLrfe7kN/7j1pVKZEoeVCLZwkJUtSKcNiWQxZbS15h31pcYwqg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -11338,13 +12810,13 @@ packages: react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.9.3 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 4.46.0 + webpack: 5.82.1_esbuild@0.15.7 dev: false - /@storybook/core-common/6.5.12_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/core-common/6.5.12_lb6du3saekb5anf2gjv3wxj3oq: resolution: {integrity: sha512-gG20+eYdIhwQNu6Xs805FLrOCWtkoc8Rt8gJiRt8yXzZh9EZkU4xgCRoCxrrJ03ys/gTiCFbBOfRi749uM3z4w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -11359,19 +12831,19 @@ packages: '@babel/plugin-proposal-decorators': 7.21.0_@babel+core@7.21.8 '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.21.8 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.8 - '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.8 - '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.8 + '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.21.8 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.8 '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.8 - '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.21.8 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.21.8 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.8 - '@babel/plugin-transform-arrow-functions': 7.21.5_@babel+core@7.21.8 - '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.8 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.8 + '@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.21.8 '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.8 - '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.21.8 - '@babel/plugin-transform-for-of': 7.21.5_@babel+core@7.21.8 - '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.8 + '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.21.8 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.8 + '@babel/plugin-transform-parameters': 7.20.3_@babel+core@7.21.8 '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.8 - '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.8 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.8 '@babel/preset-env': 7.21.5_@babel+core@7.21.8 '@babel/preset-react': 7.18.6_@babel+core@7.21.8 '@babel/preset-typescript': 7.21.5_@babel+core@7.21.8 @@ -11388,7 +12860,7 @@ packages: express: 4.18.1 file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_evijigonbo4skk2vlqtwtdqibu + fork-ts-checker-webpack-plugin: 6.5.2_4saukclyqastvrycwsozxxbldi fs-extra: 9.1.0 glob: 7.2.0 handlebars: 4.7.7 @@ -11404,7 +12876,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.9.3 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -11420,7 +12892,7 @@ packages: dependencies: core-js: 3.30.0 - /@storybook/core-server/6.5.12_cbltnf4utr6y2mujocsjeuzpru: + /@storybook/core-server/6.5.12_v52vguhww7fyv2j7iof55vdqmq: resolution: {integrity: sha512-q1b/XKwoLUcCoCQ+8ndPD5THkEwXZYJ9ROv16i2VGUjjjAuSqpEYBq5GMGQUgxlWp1bkxtdGL2Jz+6pZfvldzA==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -11437,19 +12909,19 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq - '@storybook/builder-webpack5': 6.5.12_aorc5lun3wrqgh2yugxk3iauje - '@storybook/core-client': 6.5.12_yx6v2mahc4rgaakyal2wzgtgta - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/builder-webpack4': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq + '@storybook/builder-webpack5': 6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a + '@storybook/core-client': 6.5.12_5ey2xofmun3swml4ceosmuhnmq + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.12 - '@storybook/manager-webpack4': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq - '@storybook/manager-webpack5': 6.5.12_aorc5lun3wrqgh2yugxk3iauje + '@storybook/manager-webpack4': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq + '@storybook/manager-webpack5': 6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a '@storybook/node-logger': 6.5.12 '@storybook/semver': 7.3.2 '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/telemetry': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/telemetry': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@types/node': 16.11.68 '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 @@ -11480,7 +12952,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.9.3 util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 @@ -11499,7 +12971,7 @@ packages: - webpack-command dev: false - /@storybook/core/6.5.12_5yk5tzqdi46sypa7mtzvq6bndi: + /@storybook/core/6.5.12_mejbs6qxkbiljz5cyqh3sta7g4: resolution: {integrity: sha512-+o3psAVWL+5LSwyJmEbvhgxKO1Et5uOX8ujNVt/f1fgwJBIf6BypxyPKu9YGQDRzcRssESQQZWNrZCCAZlFeuQ==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -11516,13 +12988,13 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.5.12_aorc5lun3wrqgh2yugxk3iauje - '@storybook/core-client': 6.5.12_vlnyxmat3zl3tpv6tkcs74tqde - '@storybook/core-server': 6.5.12_cbltnf4utr6y2mujocsjeuzpru - '@storybook/manager-webpack5': 6.5.12_aorc5lun3wrqgh2yugxk3iauje + '@storybook/builder-webpack5': 6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a + '@storybook/core-client': 6.5.12_m4gf55mprlsyzqyurygx3deuii + '@storybook/core-server': 6.5.12_v52vguhww7fyv2j7iof55vdqmq + '@storybook/manager-webpack5': 6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1_esbuild@0.15.7 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -11584,7 +13056,7 @@ packages: - supports-color dev: false - /@storybook/manager-webpack4/6.5.12_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/manager-webpack4/6.5.12_lb6du3saekb5anf2gjv3wxj3oq: resolution: {integrity: sha512-LH3e6qfvq2znEdxe2kaWtmdDPTnvSkufzoC9iwOgNvo3YrTGrYNyUTDegvW293TOTVfUn7j6TBcsOxIgRnt28g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -11598,8 +13070,8 @@ packages: '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.8 '@babel/preset-react': 7.18.6_@babel+core@7.21.8 '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.12_yx6v2mahc4rgaakyal2wzgtgta - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-client': 6.5.12_5ey2xofmun3swml4ceosmuhnmq + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@storybook/node-logger': 6.5.12 '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/ui': 6.5.12_biqbaboplfbrettd7655fr4n2y @@ -11616,7 +13088,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.9.5 + pnp-webpack-plugin: 1.6.4_typescript@4.9.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 read-pkg-up: 7.0.1 @@ -11626,7 +13098,7 @@ packages: telejson: 6.0.8 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.9.3 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -11642,7 +13114,7 @@ packages: - webpack-command dev: false - /@storybook/manager-webpack5/6.5.12_aorc5lun3wrqgh2yugxk3iauje: + /@storybook/manager-webpack5/6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a: resolution: {integrity: sha512-F+KgoINhfo1ArbirCc9L+EyADYD8Z4t0LyZYDVcBiZ8DlRIMIoUSye6tDsnyEm+OPloLVAcGwRMYgFhuHB70Lg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -11656,8 +13128,8 @@ packages: '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.8 '@babel/preset-react': 7.18.6_@babel+core@7.21.8 '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.12_vlnyxmat3zl3tpv6tkcs74tqde - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-client': 6.5.12_m4gf55mprlsyzqyurygx3deuii + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@storybook/node-logger': 6.5.12 '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/ui': 6.5.12_biqbaboplfbrettd7655fr4n2y @@ -11676,13 +13148,13 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.13.9 resolve-from: 5.0.0 style-loader: 2.0.0_webpack@5.82.1 telejson: 6.0.8 terser-webpack-plugin: 5.3.6_jpvhhjxr75v4xuodxvmtbazdsm ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.9.3 util-deprecate: 1.0.2 webpack: 5.82.1_esbuild@0.15.7 webpack-dev-middleware: 4.3.0_webpack@5.82.1 @@ -11707,7 +13179,7 @@ packages: '@babel/preset-env': 7.21.5_@babel+core@7.21.8 '@babel/types': 7.21.5 '@mdx-js/mdx': 1.6.22 - '@types/lodash': 4.14.181 + '@types/lodash': 4.14.182 js-string-escape: 1.0.1 loader-utils: 2.0.4 lodash: 4.17.21 @@ -11760,7 +13232,7 @@ packages: util-deprecate: 1.0.2 dev: false - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_hybrf64lftnf5l2xwgg7goi2iu: + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_7rk4b2hmmye4ay4nslib7apbti: resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} peerDependencies: typescript: '>= 3.x' @@ -11771,15 +13243,15 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.9.5 + react-docgen-typescript: 2.2.2_typescript@4.9.3 tslib: 2.4.0 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1_esbuild@0.15.7 transitivePeerDependencies: - supports-color dev: false - /@storybook/react/6.5.12_qgb7qrqeoswz5575jppegdzzxm: + /@storybook/react/6.5.12_ket2g4gyf3y4x6zueqlsuvvvwa: resolution: {integrity: sha512-1tG8EdSfp+OZAKAWPT2UrexF4o007jEMwQFFXw1atIQrQOADzSnZ7lTYJ08o5TyJwksswtr18tH3oJJ9sG3KPw==} engines: {node: '>=10.13.0'} hasBin: true @@ -11812,15 +13284,15 @@ packages: '@babel/preset-react': 7.18.6_@babel+core@7.21.8 '@pmmmwh/react-refresh-webpack-plugin': 0.5.9_pwipppovxdjwbovranoeivw5d4 '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack5': 6.5.12_aorc5lun3wrqgh2yugxk3iauje + '@storybook/builder-webpack5': 6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a '@storybook/client-logger': 6.5.12 - '@storybook/core': 6.5.12_5yk5tzqdi46sypa7mtzvq6bndi - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core': 6.5.12_mejbs6qxkbiljz5cyqh3sta7g4 + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@storybook/manager-webpack5': 6.5.12_aorc5lun3wrqgh2yugxk3iauje + '@storybook/manager-webpack5': 6.5.12_jlhxydrgaq6yvnzi6eruzqhd3a '@storybook/node-logger': 6.5.12 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_hybrf64lftnf5l2xwgg7goi2iu + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_7rk4b2hmmye4ay4nslib7apbti '@storybook/semver': 7.3.2 '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y '@types/estree': 0.0.51 @@ -11843,9 +13315,9 @@ packages: react-element-to-jsx-string: 14.3.4_biqbaboplfbrettd7655fr4n2y react-refresh: 0.11.0 read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.9.5 + typescript: 4.9.3 util-deprecate: 1.0.2 webpack: 5.82.1_esbuild@0.15.7 transitivePeerDependencies: @@ -11887,7 +13359,6 @@ packages: /@storybook/semver/7.3.2: resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} engines: {node: '>=10'} - hasBin: true dependencies: core-js: 3.30.0 find-up: 4.1.0 @@ -11937,11 +13408,11 @@ packages: util-deprecate: 1.0.2 dev: false - /@storybook/telemetry/6.5.12_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/telemetry/6.5.12_lb6du3saekb5anf2gjv3wxj3oq: resolution: {integrity: sha512-mCHxx7NmQ3n7gx0nmblNlZE5ZgrjQm6B08mYeWg6Y7r4GZnqS6wZbvAwVhZZ3Gg/9fdqaBApHsdAXp0d5BrlxA==} dependencies: '@storybook/client-logger': 6.5.12 - '@storybook/core-common': 6.5.12_ygqkwb4gg3aean7xjfdauovyqq + '@storybook/core-common': 6.5.12_lb6du3saekb5anf2gjv3wxj3oq chalk: 4.1.2 core-js: 3.30.0 detect-package-manager: 2.0.1 @@ -12187,7 +13658,7 @@ packages: dependencies: '@svgr/core': 6.5.1 cosmiconfig: 7.0.1 - deepmerge: 4.3.0 + deepmerge: 4.2.2 svgo: 2.8.0 dev: false @@ -12195,11 +13666,11 @@ packages: resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.21.8 - '@babel/plugin-transform-react-constant-elements': 7.20.2_@babel+core@7.21.8 - '@babel/preset-env': 7.21.5_@babel+core@7.21.8 - '@babel/preset-react': 7.18.6_@babel+core@7.21.8 - '@babel/preset-typescript': 7.21.5_@babel+core@7.21.8 + '@babel/core': 7.20.5 + '@babel/plugin-transform-react-constant-elements': 7.20.2_@babel+core@7.20.5 + '@babel/preset-env': 7.20.2_@babel+core@7.20.5 + '@babel/preset-react': 7.18.6_@babel+core@7.20.5 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5 '@svgr/core': 6.5.1 '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1 '@svgr/plugin-svgo': 6.5.1_@svgr+core@6.5.1 @@ -12441,6 +13912,12 @@ packages: '@babel/parser': 7.21.8 '@babel/types': 7.21.5 + /@types/babel__traverse/7.18.2: + resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==} + dependencies: + '@babel/types': 7.21.5 + dev: true + /@types/babel__traverse/7.18.5: resolution: {integrity: sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q==} dependencies: @@ -12693,7 +14170,7 @@ packages: resolution: {integrity: sha512-wKW3SKIUMmltbykg4I5JzCVzUhkuD9trD6efAmYgN2MrSntY0SMRQzEnD3mkyJ/rv9NLbTC7g3hKKE86YwEDLw==} dependencies: '@types/through': 0.0.30 - rxjs: 7.8.0 + rxjs: 7.5.5 dev: true /@types/invariant/2.2.35: @@ -12735,6 +14212,12 @@ packages: expect: 29.5.0 pretty-format: 29.5.0 + /@types/jest/29.4.4: + resolution: {integrity: sha512-qezb65VIH7X1wobSnd6Lvdve7PXSyQRa3dljTkhTtDhi603RvHQCshSlJcuyMLHJpeHgY3NKwvDJWxMOOHxGDQ==} + dependencies: + expect: 29.5.0 + pretty-format: 29.5.0 + /@types/jest/29.5.1: resolution: {integrity: sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ==} dependencies: @@ -12815,11 +14298,15 @@ packages: /@types/lodash-es/4.17.6: resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==} dependencies: - '@types/lodash': 4.14.181 + '@types/lodash': 4.14.182 dev: true /@types/lodash/4.14.181: resolution: {integrity: sha512-n3tyKthHJbkiWhDZs3DkhkCzt2MexYHXlX0td5iMplyfwketaOeKboEVBqzceH7juqvEg3q5oUoBFxSLu7zFag==} + dev: true + + /@types/lodash/4.14.182: + resolution: {integrity: sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==} /@types/lru-cache/5.1.1: resolution: {integrity: sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==} @@ -12886,6 +14373,10 @@ packages: /@types/node/16.11.68: resolution: {integrity: sha512-JkRpuVz3xCNCWaeQ5EHLR/6woMbHZz/jZ7Kmc63AkU+1HxnoUugzSWMck7dsR4DvNYX8jp9wTi9K7WvnxOIQZQ==} + /@types/node/16.18.10: + resolution: {integrity: sha512-XU1+v7h81p7145ddPfjv7jtWvkSilpcnON3mQ+bDi9Yuf7OI56efOglXRyXWgQ57xH3fEQgh7WOJMncRHVew5w==} + dev: true + /@types/node/18.11.17: resolution: {integrity: sha512-HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng==} @@ -13106,7 +14597,7 @@ packages: /@types/testing-library__jest-dom/5.14.5: resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} dependencies: - '@types/jest': 29.2.6 + '@types/jest': 29.4.4 /@types/through/0.0.30: resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==} @@ -13220,7 +14711,7 @@ packages: dev: true optional: true - /@typescript-eslint/eslint-plugin/5.30.0_vaayuox22vbvodkou6nryqbfcu: + /@typescript-eslint/eslint-plugin/5.30.0_2nspmqib6o7rcvn5qeqiwm5gey: resolution: {integrity: sha512-lvhRJ2pGe2V9MEU46ELTdiHgiAFZPKtLhiU5wlnaYpMc2+c1R8fh8i80ZAa665drvjHKUJyRRGg3gEm1If54ow==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -13231,23 +14722,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.30.0_pku7h6lsbnh7tcsfjudlqd5qce + '@typescript-eslint/parser': 5.30.0_hsf322ms6xhhd4b5ne6lb74y4a '@typescript-eslint/scope-manager': 5.30.0 - '@typescript-eslint/type-utils': 5.30.0_pku7h6lsbnh7tcsfjudlqd5qce - '@typescript-eslint/utils': 5.30.0_pku7h6lsbnh7tcsfjudlqd5qce + '@typescript-eslint/type-utils': 5.30.0_hsf322ms6xhhd4b5ne6lb74y4a + '@typescript-eslint/utils': 5.30.0_hsf322ms6xhhd4b5ne6lb74y4a debug: 4.3.4 eslint: 8.28.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 - semver: 7.3.7 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + semver: 7.3.8 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/parser/5.30.0_pku7h6lsbnh7tcsfjudlqd5qce: + /@typescript-eslint/parser/5.30.0_hsf322ms6xhhd4b5ne6lb74y4a: resolution: {integrity: sha512-2oYYUws5o2liX6SrFQ5RB88+PuRymaM2EU02/9Ppoyu70vllPnHVO7ioxDdq/ypXHA277R04SVjxvwI8HmZpzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -13259,10 +14750,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.30.0 '@typescript-eslint/types': 5.30.0 - '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.9.5 + '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.9.3 debug: 4.3.4 eslint: 8.28.0 - typescript: 4.9.5 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false @@ -13275,7 +14766,7 @@ packages: '@typescript-eslint/visitor-keys': 5.30.0 dev: false - /@typescript-eslint/type-utils/5.30.0_pku7h6lsbnh7tcsfjudlqd5qce: + /@typescript-eslint/type-utils/5.30.0_hsf322ms6xhhd4b5ne6lb74y4a: resolution: {integrity: sha512-GF8JZbZqSS+azehzlv/lmQQ3EU3VfWYzCczdZjJRxSEeXDQkqFhCBgFhallLDbPwQOEQ4MHpiPfkjKk7zlmeNg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -13285,11 +14776,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.30.0_pku7h6lsbnh7tcsfjudlqd5qce + '@typescript-eslint/utils': 5.30.0_hsf322ms6xhhd4b5ne6lb74y4a debug: 4.3.4 eslint: 8.28.0 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false @@ -13299,7 +14790,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: false - /@typescript-eslint/typescript-estree/5.30.0_typescript@4.9.5: + /@typescript-eslint/typescript-estree/5.30.0_typescript@4.9.3: resolution: {integrity: sha512-hDEawogreZB4n1zoqcrrtg/wPyyiCxmhPLpZ6kmWfKF5M5G0clRLaEexpuWr31fZ42F96SlD/5xCt1bT5Qm4Nw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -13314,13 +14805,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + tsutils: 3.21.0_typescript@4.9.3 + typescript: 4.9.3 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/utils/5.30.0_pku7h6lsbnh7tcsfjudlqd5qce: + /@typescript-eslint/utils/5.30.0_hsf322ms6xhhd4b5ne6lb74y4a: resolution: {integrity: sha512-0bIgOgZflLKIcZsWvfklsaQTM3ZUbmtH0rJ1hKyV3raoUYyeZwcjQ8ZUJTzS7KnhNcsVT1Rxs7zeeMHEhGlltw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -13329,7 +14820,7 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 5.30.0 '@typescript-eslint/types': 5.30.0 - '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.9.5 + '@typescript-eslint/typescript-estree': 5.30.0_typescript@4.9.3 eslint: 8.28.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.28.0 @@ -13348,7 +14839,6 @@ packages: /@vercel/ncc/0.33.3: resolution: {integrity: sha512-JGZ11QV+/ZcfudW2Cz2JVp54/pJNXbsuWRgSh2ZmmZdQBKXqBtIGrwI1Wyx8nlbzAiEFe7FHi4K1zX4//jxTnQ==} - hasBin: true dev: false /@vitest/ui/0.21.1: @@ -13678,6 +15168,8 @@ packages: /@xtuc/long/4.2.2: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + dependencies: + esbuild: 0.13.15 /@zxing/text-encoding/0.9.0: resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==} @@ -13690,7 +15182,6 @@ packages: /JSONStream/1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} - hasBin: true dependencies: jsonparse: 1.3.1 through: 2.3.8 @@ -13764,7 +15255,6 @@ packages: /acorn/7.4.1: resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} engines: {node: '>=0.4.0'} - hasBin: true /acorn/8.8.1: resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} @@ -13774,6 +15264,12 @@ packages: /address/1.1.2: resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==} engines: {node: '>= 0.12.0'} + dev: true + + /address/1.2.0: + resolution: {integrity: sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==} + engines: {node: '>= 10.0.0'} + dev: false /adm-zip/0.5.9: resolution: {integrity: sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==} @@ -13936,7 +15432,6 @@ packages: /ansi-to-html/0.6.15: resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} engines: {node: '>=8.0.0'} - hasBin: true dependencies: entities: 2.2.0 dev: false @@ -13950,7 +15445,7 @@ packages: '@ant-design/colors': 6.0.0 '@ant-design/icons': 4.7.0_biqbaboplfbrettd7655fr4n2y '@ant-design/react-slick': 0.29.2_react@18.2.0 - '@babel/runtime': 7.21.5 + '@babel/runtime': 7.20.7 '@ctrl/tinycolor': 3.6.0 classnames: 2.3.2 copy-to-clipboard: 3.3.3 @@ -13994,6 +15489,66 @@ packages: react-dom: 18.2.0_react@18.2.0 scroll-into-view-if-needed: 2.2.29 + /antd/5.1.5_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-f1gfmDG8CApTu1h6gtM7i/krMTP6WH55w7pUPAMHlp9jsviKR+ElPqSQeLZV3UjuxVNn0DWvGwWEJ0Rv/kbeEQ==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@ant-design/colors': 7.0.0 + '@ant-design/cssinjs': 1.5.3_biqbaboplfbrettd7655fr4n2y + '@ant-design/icons': 5.0.0_biqbaboplfbrettd7655fr4n2y + '@ant-design/react-slick': 1.0.0_react@18.2.0 + '@babel/runtime': 7.21.5 + '@ctrl/tinycolor': 3.4.1 + '@rc-component/mutate-observer': 1.0.0_biqbaboplfbrettd7655fr4n2y + '@rc-component/tour': 1.1.0_biqbaboplfbrettd7655fr4n2y + classnames: 2.3.2 + copy-to-clipboard: 3.3.3 + dayjs: 1.11.3 + qrcode.react: 3.1.0_react@18.2.0 + rc-cascader: 3.8.0_biqbaboplfbrettd7655fr4n2y + rc-checkbox: 2.3.2_biqbaboplfbrettd7655fr4n2y + rc-collapse: 3.4.2_biqbaboplfbrettd7655fr4n2y + rc-dialog: 9.0.2_biqbaboplfbrettd7655fr4n2y + rc-drawer: 6.1.2_biqbaboplfbrettd7655fr4n2y + rc-dropdown: 4.0.1_biqbaboplfbrettd7655fr4n2y + rc-field-form: 1.27.3_biqbaboplfbrettd7655fr4n2y + rc-image: 5.13.0_biqbaboplfbrettd7655fr4n2y + rc-input: 0.1.4_biqbaboplfbrettd7655fr4n2y + rc-input-number: 7.4.0_biqbaboplfbrettd7655fr4n2y + rc-mentions: 1.13.1_biqbaboplfbrettd7655fr4n2y + rc-menu: 9.8.1_biqbaboplfbrettd7655fr4n2y + rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y + rc-notification: 5.0.2_biqbaboplfbrettd7655fr4n2y + rc-pagination: 3.2.0_biqbaboplfbrettd7655fr4n2y + rc-picker: 3.1.4_hddctr6et5lu7n7zc3fcfqwa2m + rc-progress: 3.4.1_biqbaboplfbrettd7655fr4n2y + rc-rate: 2.9.2_biqbaboplfbrettd7655fr4n2y + rc-resize-observer: 1.2.0_biqbaboplfbrettd7655fr4n2y + rc-segmented: 2.1.0_biqbaboplfbrettd7655fr4n2y + rc-select: 14.2.0_biqbaboplfbrettd7655fr4n2y + rc-slider: 10.0.0_biqbaboplfbrettd7655fr4n2y + rc-steps: 6.0.0_biqbaboplfbrettd7655fr4n2y + rc-switch: 4.0.0_biqbaboplfbrettd7655fr4n2y + rc-table: 7.30.3_biqbaboplfbrettd7655fr4n2y + rc-tabs: 12.5.6_biqbaboplfbrettd7655fr4n2y + rc-textarea: 0.4.7_biqbaboplfbrettd7655fr4n2y + rc-tooltip: 5.2.2_biqbaboplfbrettd7655fr4n2y + rc-tree: 5.7.2_biqbaboplfbrettd7655fr4n2y + rc-tree-select: 5.6.0_biqbaboplfbrettd7655fr4n2y + rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y + rc-upload: 4.3.4_biqbaboplfbrettd7655fr4n2y + rc-util: 5.27.1_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + scroll-into-view-if-needed: 3.0.4 + throttle-debounce: 5.0.0 + transitivePeerDependencies: + - date-fns + - moment + dev: false + /antd/5.3.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-+l8K2AQ+yvIOq9hzWtha3nG3ydFfwN6+fUmSGCqyThFrLPI2Y3IUPXdAXP4aQcYAnu1Q0sLwsTgHRvE2AXfZUw==} peerDependencies: @@ -14031,7 +15586,7 @@ packages: rc-picker: 3.2.4_hddctr6et5lu7n7zc3fcfqwa2m rc-progress: 3.4.1_biqbaboplfbrettd7655fr4n2y rc-rate: 2.9.2_biqbaboplfbrettd7655fr4n2y - rc-resize-observer: 1.3.1_biqbaboplfbrettd7655fr4n2y + rc-resize-observer: 1.2.0_biqbaboplfbrettd7655fr4n2y rc-segmented: 2.1.2_biqbaboplfbrettd7655fr4n2y rc-select: 14.3.0_biqbaboplfbrettd7655fr4n2y rc-slider: 10.1.1_biqbaboplfbrettd7655fr4n2y @@ -14045,7 +15600,7 @@ packages: rc-tree-select: 5.7.0_biqbaboplfbrettd7655fr4n2y rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y rc-upload: 4.3.4_biqbaboplfbrettd7655fr4n2y - rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + rc-util: 5.27.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 scroll-into-view-if-needed: 3.0.4 @@ -14053,6 +15608,7 @@ packages: transitivePeerDependencies: - date-fns - moment + dev: true /any-promise/1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} @@ -14148,7 +15704,7 @@ packages: optional: true /array-flatten/1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=} /array-flatten/2.1.2: resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} @@ -14163,7 +15719,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 get-intrinsic: 1.2.0 is-string: 1.0.7 dev: false @@ -14201,7 +15757,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 es-shim-unscopables: 1.0.0 dev: false @@ -14211,7 +15767,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 es-shim-unscopables: 1.0.0 dev: false @@ -14312,7 +15868,6 @@ packages: /astring/1.8.3: resolution: {integrity: sha512-sRpyiNrx2dEYIMmUXprS8nlpRg2Drs8m9ElX9vVEXaCB4XEAJhKfs7IcX0IwShjuOAjLR6wzIrgoptz1n19i1A==} - hasBin: true dev: false /async-each/1.0.3: @@ -14345,7 +15900,6 @@ packages: /atob/2.1.2: resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} engines: {node: '>= 4.5.0'} - hasBin: true /audio-context-polyfill/1.0.0: resolution: {integrity: sha512-Ex1jZc8e3AIiOBm8Tn0oS4yZ8aT5VCLygaov+fxJ4ymgUB2GPqW5DtQ8NBpR2dfvSR6RjWvMU8+nDwIE/he49w==} @@ -14368,7 +15922,6 @@ packages: /autoprefixer/9.8.8: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} - hasBin: true dependencies: browserslist: 4.20.2 caniuse-lite: 1.0.30001451 @@ -14518,7 +16071,7 @@ packages: /babel-plugin-dynamic-import-node/2.3.3: resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} dependencies: - object.assign: 4.1.4 + object.assign: 4.1.2 dev: true /babel-plugin-extract-import-names/1.6.22: @@ -14569,7 +16122,7 @@ packages: dependencies: '@babel/helper-module-imports': 7.21.4 '@babel/types': 7.21.5 - glob: 7.2.0 + glob: 7.2.3 lodash: 4.17.21 require-package-name: 2.0.1 dev: true @@ -14596,7 +16149,7 @@ packages: engines: {node: '>= 8.0.0'} dependencies: find-babel-config: 1.2.0 - glob: 7.2.0 + glob: 7.2.3 pkg-up: 3.1.0 reselect: 4.1.6 resolve: 1.22.1 @@ -14605,6 +16158,19 @@ packages: resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} dev: false + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.5: + resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.21.7 + '@babel/core': 7.20.5 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.8: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: @@ -14640,6 +16206,18 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.5: + resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 + core-js-compat: 3.26.1 + transitivePeerDependencies: + - supports-color + dev: false + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.8: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: @@ -14651,6 +16229,17 @@ packages: transitivePeerDependencies: - supports-color + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.5: + resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.5 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 + transitivePeerDependencies: + - supports-color + dev: false + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.8: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: @@ -14682,8 +16271,8 @@ packages: lodash: 4.17.21 dev: true - /babel-plugin-styled-components/1.13.3_styled-components@5.3.5: - resolution: {integrity: sha512-meGStRGv+VuKA/q0/jXxrPNWEm4LPfYIqxooDTdmh8kFsP/Ph7jJG5rUPwUPX3QHUvggwdbgdGpo88P/rRYsVw==} + /babel-plugin-styled-components/2.0.7_styled-components@5.3.5: + resolution: {integrity: sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==} peerDependencies: styled-components: '>= 2' dependencies: @@ -14691,6 +16280,7 @@ packages: '@babel/helper-module-imports': 7.21.4 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 + picomatch: 2.3.1 styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba dev: false @@ -14716,7 +16306,7 @@ packages: /babel-plugin-transform-typescript-metadata/0.3.2: resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} dependencies: - '@babel/helper-plugin-utils': 7.21.5 + '@babel/helper-plugin-utils': 7.20.2 dev: false /babel-preset-current-node-syntax/1.0.1_@babel+core@7.21.8: @@ -14811,7 +16401,7 @@ packages: peerDependencies: ajv: 4.11.8 - 8 dependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.16.7 '@humanwhocodes/momoa': 2.0.4 ajv: 8.11.0 chalk: 4.1.2 @@ -15043,7 +16633,6 @@ packages: /browserslist/4.20.2: resolution: {integrity: sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true dependencies: caniuse-lite: 1.0.30001451 electron-to-chromium: 1.4.284 @@ -15075,7 +16664,6 @@ packages: /btsm/2.2.2: resolution: {integrity: sha512-8kXvxk+NlRVjV/mvRfLZYTRdpCNf1FbVOkx23dyKG1KzgOXgWCTTnr5+i2RB7WncEaHQ5lZ9O8SIShCGDLjOow==} engines: {node: '>=12'} - hasBin: true dependencies: esbuild: 0.14.54 dev: true @@ -15135,7 +16723,6 @@ packages: /c8/7.11.3: resolution: {integrity: sha512-6YBmsaNmqRm9OS3ZbIiL2EZgi1+Xc4O24jL3vMYGE6idixYuGdy76rIfIdltSKDj9DpLNrcXSonUTR1miBD0wA==} engines: {node: '>=10.12.0'} - hasBin: true dependencies: '@bcoe/v8-coverage': 0.2.3 '@istanbuljs/schema': 0.1.3 @@ -15752,7 +17339,6 @@ packages: /color-support/1.1.3: resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true dev: false /color/3.2.1: @@ -15995,7 +17581,6 @@ packages: /conventional-commits-parser/3.2.4: resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} engines: {node: '>=10'} - hasBin: true dependencies: JSONStream: 1.3.5 is-text-path: 1.0.1 @@ -16022,7 +17607,7 @@ packages: dev: false /cookie-signature/1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} /cookie-signature/1.2.0: resolution: {integrity: sha512-R0BOPfLGTitaKhgKROKZQN6iyq2iDQcH1DOF8nJoaWapguX5bC2w+Q/I9NmmM5lfcvEarnLZr+cCvmEYYSXvYA==} @@ -16091,12 +17676,12 @@ packages: peerDependencies: webpack: ^5.1.0 dependencies: - fast-glob: 3.2.11 + fast-glob: 3.2.12 glob-parent: 6.0.2 globby: 11.1.0 normalize-path: 3.0.0 - schema-utils: 3.1.2 - serialize-javascript: 6.0.1 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 webpack: 5.82.1 dev: true @@ -16228,7 +17813,6 @@ packages: /cross-env/7.0.3: resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} - hasBin: true dependencies: cross-spawn: 7.0.3 dev: true @@ -16359,7 +17943,7 @@ packages: postcss-modules-scope: 3.0.0_postcss@8.4.21 postcss-modules-values: 4.0.0_postcss@8.4.21 postcss-value-parser: 4.2.0 - semver: 7.3.7 + semver: 7.3.8 webpack: 5.82.1 dev: true @@ -16388,7 +17972,7 @@ packages: lightningcss: optional: true dependencies: - cssnano: 5.1.15_postcss@8.4.21 + cssnano: 6.0.0_postcss@8.4.21 jest-worker: 29.5.0 postcss: 8.4.21 schema-utils: 4.0.0 @@ -16468,44 +18052,6 @@ packages: engines: {node: '>=4'} hasBin: true - /cssnano-preset-default/5.2.14_postcss@8.4.21: - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - css-declaration-sorter: 6.4.0_postcss@8.4.21 - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 - postcss-calc: 8.2.4_postcss@8.4.21 - postcss-colormin: 5.3.1_postcss@8.4.21 - postcss-convert-values: 5.1.3_postcss@8.4.21 - postcss-discard-comments: 5.1.2_postcss@8.4.21 - postcss-discard-duplicates: 5.1.0_postcss@8.4.21 - postcss-discard-empty: 5.1.1_postcss@8.4.21 - postcss-discard-overridden: 5.1.0_postcss@8.4.21 - postcss-merge-longhand: 5.1.7_postcss@8.4.21 - postcss-merge-rules: 5.1.4_postcss@8.4.21 - postcss-minify-font-values: 5.1.0_postcss@8.4.21 - postcss-minify-gradients: 5.1.1_postcss@8.4.21 - postcss-minify-params: 5.1.4_postcss@8.4.21 - postcss-minify-selectors: 5.2.1_postcss@8.4.21 - postcss-normalize-charset: 5.1.0_postcss@8.4.21 - postcss-normalize-display-values: 5.1.0_postcss@8.4.21 - postcss-normalize-positions: 5.1.1_postcss@8.4.21 - postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21 - postcss-normalize-string: 5.1.0_postcss@8.4.21 - postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21 - postcss-normalize-unicode: 5.1.1_postcss@8.4.21 - postcss-normalize-url: 5.1.0_postcss@8.4.21 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.21 - postcss-ordered-values: 5.1.3_postcss@8.4.21 - postcss-reduce-initial: 5.1.2_postcss@8.4.21 - postcss-reduce-transforms: 5.1.0_postcss@8.4.21 - postcss-svgo: 5.1.0_postcss@8.4.21 - postcss-unique-selectors: 5.1.1_postcss@8.4.21 - dev: false - /cssnano-preset-default/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-BDxlaFzObRDXUiCCBQUNQcI+f1/aX2mgoNtXGjV6PG64POcHoDUoX+LgMWw+Q4609QhxwkcSnS65YFs42RA6qQ==} engines: {node: ^14 || ^16 || >=18.0} @@ -16543,15 +18089,6 @@ packages: postcss-svgo: 6.0.0_postcss@8.4.21 postcss-unique-selectors: 6.0.0_postcss@8.4.21 - /cssnano-utils/3.1.0_postcss@8.4.21: - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - dev: false - /cssnano-utils/4.0.0_postcss@8.4.21: resolution: {integrity: sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==} engines: {node: ^14 || ^16 || >=18.0} @@ -16560,18 +18097,6 @@ packages: dependencies: postcss: 8.4.21 - /cssnano/5.1.15_postcss@8.4.21: - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - cssnano-preset-default: 5.2.14_postcss@8.4.21 - lilconfig: 2.1.0 - postcss: 8.4.21 - yaml: 1.10.2 - dev: false - /cssnano/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-RGlcbzGhzEBCHuQe3k+Udyj5M00z0pm9S+VurHXFEOXxH+y0sVrJH2sMzoyz2d8N1EScazg+DVvmgyx0lurwwA==} engines: {node: ^14 || ^16 || >=18.0} @@ -16659,7 +18184,6 @@ packages: /cypress/10.2.0: resolution: {integrity: sha512-+i9lY5ENlfi2mJwsggzR+XASOIgMd7S/Gd3/13NCpv596n3YSplMAueBTIxNLcxDpTcIksp+9pM3UaDrJDpFqA==} engines: {node: '>=12.0.0'} - hasBin: true requiresBuild: true dependencies: '@cypress/request': 2.88.10 @@ -16699,7 +18223,7 @@ packages: pretty-bytes: 5.6.0 proxy-from-env: 1.0.0 request-progress: 3.0.0 - semver: 7.3.7 + semver: 7.3.8 supports-color: 8.1.1 tmp: 0.2.1 untildify: 4.0.0 @@ -16904,6 +18428,11 @@ packages: engines: {node: '>=0.10.0'} dev: true + /deepmerge/4.2.2: + resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} + engines: {node: '>=0.10.0'} + dev: false + /deepmerge/4.3.0: resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} engines: {node: '>=0.10.0'} @@ -16911,7 +18440,6 @@ packages: /default-browser-id/1.0.4: resolution: {integrity: sha512-qPy925qewwul9Hifs+3sx1ZYn14obHxpkX+mPD369w4Rzg+YkJBgi3SOvwUq81nWSjqGUegIgEPwD8u+HUnxlw==} engines: {node: '>=0.10.0'} - hasBin: true requiresBuild: true dependencies: bplist-parser: 0.1.1 @@ -17036,9 +18564,8 @@ packages: /detect-port/1.3.0: resolution: {integrity: sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==} engines: {node: '>= 4.2.1'} - hasBin: true dependencies: - address: 1.1.2 + address: 1.2.0 debug: 2.6.9 transitivePeerDependencies: - supports-color @@ -17047,7 +18574,6 @@ packages: /detective/5.2.1: resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} engines: {node: '>=0.8.0'} - hasBin: true dependencies: acorn-node: 1.8.2 defined: 1.0.0 @@ -17245,14 +18771,13 @@ packages: /dts-packer/0.0.3: resolution: {integrity: sha512-TwswWgdV5mXQKO+Bu3ylBZfLfPpnTDtwi4L+GZyWxFjGfUOwvX0FRcquZg7AGY4BiiMomwFHd9H0pyOrrQNlZA==} - hasBin: true dependencies: chalk: 4.1.2 got: 11.8.5 is-core-module: 2.9.0 mkdirp: 1.0.4 resolve: 1.20.0 - semver: 7.3.7 + semver: 7.3.8 yargs-parser: 20.2.9 dev: false @@ -17346,6 +18871,14 @@ packages: tapable: 1.1.3 dev: false + /enhanced-resolve/5.10.0: + resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==} + engines: {node: '>=10.13.0'} + dependencies: + graceful-fs: 4.2.10 + tapable: 2.2.1 + dev: false + /enhanced-resolve/5.12.0: resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} engines: {node: '>=10.13.0'} @@ -17375,7 +18908,6 @@ packages: /errno/0.1.8: resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} - hasBin: true dependencies: prr: 1.0.1 @@ -17397,6 +18929,35 @@ packages: escape-html: 1.0.3 dev: false + /es-abstract/1.20.1: + resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.2.0 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.3 + object-keys: 1.1.1 + object.assign: 4.1.2 + regexp.prototype.flags: 1.4.3 + string.prototype.trimend: 1.0.5 + string.prototype.trimstart: 1.0.5 + unbox-primitive: 1.0.2 + dev: false + /es-abstract/1.21.2: resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} engines: {node: '>= 0.4'} @@ -17457,6 +19018,10 @@ packages: /es-module-lexer/0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} + /es-module-lexer/1.1.0: + resolution: {integrity: sha512-fJg+1tiyEeS8figV+fPcPpm8WqJEflG3yPU0NOm5xMvrNkuiy7HzX/Ljng4Y0hAoiw4/3hQTCFYw+ub8+a2pRA==} + dev: false + /es-module-lexer/1.2.1: resolution: {integrity: sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==} @@ -17548,6 +19113,10 @@ packages: requiresBuild: true optional: true + /esbuild-android-arm64/0.13.15: + resolution: {integrity: sha512-m602nft/XXeO8YQPUDVoHfjyRVPdPgjyyXOxZ44MK/agewFFkPa8tUo6lAzSWh5Ui5PB4KR9UIFTSBKh/RrCmg==} + optional: true + /esbuild-android-arm64/0.14.54: resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==} engines: {node: '>=12'} @@ -17574,6 +19143,10 @@ packages: requiresBuild: true optional: true + /esbuild-darwin-64/0.13.15: + resolution: {integrity: sha512-ihOQRGs2yyp7t5bArCwnvn2Atr6X4axqPpEdCFPVp7iUj4cVSdisgvEKdNR7yH3JDjW6aQDw40iQFoTqejqxvQ==} + optional: true + /esbuild-darwin-64/0.14.54: resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==} engines: {node: '>=12'} @@ -17600,6 +19173,10 @@ packages: requiresBuild: true optional: true + /esbuild-darwin-arm64/0.13.15: + resolution: {integrity: sha512-i1FZssTVxUqNlJ6cBTj5YQj4imWy3m49RZRnHhLpefFIh0To05ow9DTrXROTE1urGTQCloFUXTX8QfGJy1P8dQ==} + optional: true + /esbuild-darwin-arm64/0.14.54: resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==} engines: {node: '>=12'} @@ -17626,6 +19203,10 @@ packages: requiresBuild: true optional: true + /esbuild-freebsd-64/0.13.15: + resolution: {integrity: sha512-G3dLBXUI6lC6Z09/x+WtXBXbOYQZ0E8TDBqvn7aMaOCzryJs8LyVXKY4CPnHFXZAbSwkCbqiPuSQ1+HhrNk7EA==} + optional: true + /esbuild-freebsd-64/0.14.54: resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==} engines: {node: '>=12'} @@ -17652,6 +19233,10 @@ packages: requiresBuild: true optional: true + /esbuild-freebsd-arm64/0.13.15: + resolution: {integrity: sha512-KJx0fzEDf1uhNOZQStV4ujg30WlnwqUASaGSFPhznLM/bbheu9HhqZ6mJJZM32lkyfGJikw0jg7v3S0oAvtvQQ==} + optional: true + /esbuild-freebsd-arm64/0.14.54: resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==} engines: {node: '>=12'} @@ -17678,6 +19263,10 @@ packages: requiresBuild: true optional: true + /esbuild-linux-32/0.13.15: + resolution: {integrity: sha512-ZvTBPk0YWCLMCXiFmD5EUtB30zIPvC5Itxz0mdTu/xZBbbHJftQgLWY49wEPSn2T/TxahYCRDWun5smRa0Tu+g==} + optional: true + /esbuild-linux-32/0.14.54: resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==} engines: {node: '>=12'} @@ -17704,6 +19293,10 @@ packages: requiresBuild: true optional: true + /esbuild-linux-64/0.13.15: + resolution: {integrity: sha512-eCKzkNSLywNeQTRBxJRQ0jxRCl2YWdMB3+PkWFo2BBQYC5mISLIVIjThNtn6HUNqua1pnvgP5xX0nHbZbPj5oA==} + optional: true + /esbuild-linux-64/0.14.54: resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==} engines: {node: '>=12'} @@ -17730,6 +19323,10 @@ packages: requiresBuild: true optional: true + /esbuild-linux-arm/0.13.15: + resolution: {integrity: sha512-wUHttDi/ol0tD8ZgUMDH8Ef7IbDX+/UsWJOXaAyTdkT7Yy9ZBqPg8bgB/Dn3CZ9SBpNieozrPRHm0BGww7W/jA==} + optional: true + /esbuild-linux-arm/0.14.54: resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==} engines: {node: '>=12'} @@ -17756,6 +19353,10 @@ packages: requiresBuild: true optional: true + /esbuild-linux-arm64/0.13.15: + resolution: {integrity: sha512-bYpuUlN6qYU9slzr/ltyLTR9YTBS7qUDymO8SV7kjeNext61OdmqFAzuVZom+OLW1HPHseBfJ/JfdSlx8oTUoA==} + optional: true + /esbuild-linux-arm64/0.14.54: resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==} engines: {node: '>=12'} @@ -17782,6 +19383,10 @@ packages: requiresBuild: true optional: true + /esbuild-linux-mips64le/0.13.15: + resolution: {integrity: sha512-KlVjIG828uFPyJkO/8gKwy9RbXhCEUeFsCGOJBepUlpa7G8/SeZgncUEz/tOOUJTcWMTmFMtdd3GElGyAtbSWg==} + optional: true + /esbuild-linux-mips64le/0.14.54: resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==} engines: {node: '>=12'} @@ -17808,6 +19413,10 @@ packages: requiresBuild: true optional: true + /esbuild-linux-ppc64le/0.13.15: + resolution: {integrity: sha512-h6gYF+OsaqEuBjeesTBtUPw0bmiDu7eAeuc2OEH9S6mV9/jPhPdhOWzdeshb0BskRZxPhxPOjqZ+/OqLcxQwEQ==} + optional: true + /esbuild-linux-ppc64le/0.14.54: resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==} engines: {node: '>=12'} @@ -17900,6 +19509,10 @@ packages: webpack-sources: 2.3.1 dev: true + /esbuild-netbsd-64/0.13.15: + resolution: {integrity: sha512-3+yE9emwoevLMyvu+iR3rsa+Xwhie7ZEHMGDQ6dkqP/ndFzRHkobHUKTe+NCApSqG5ce2z4rFu+NX/UHnxlh3w==} + optional: true + /esbuild-netbsd-64/0.14.54: resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==} engines: {node: '>=12'} @@ -17926,6 +19539,10 @@ packages: requiresBuild: true optional: true + /esbuild-openbsd-64/0.13.15: + resolution: {integrity: sha512-wTfvtwYJYAFL1fSs8yHIdf5GEE4NkbtbXtjLWjM3Cw8mmQKqsg8kTiqJ9NJQe5NX/5Qlo7Xd9r1yKMMkHllp5g==} + optional: true + /esbuild-openbsd-64/0.14.54: resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==} engines: {node: '>=12'} @@ -17952,6 +19569,10 @@ packages: requiresBuild: true optional: true + /esbuild-sunos-64/0.13.15: + resolution: {integrity: sha512-lbivT9Bx3t1iWWrSnGyBP9ODriEvWDRiweAs69vI+miJoeKwHWOComSRukttbuzjZ8r1q0mQJ8Z7yUsDJ3hKdw==} + optional: true + /esbuild-sunos-64/0.14.54: resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==} engines: {node: '>=12'} @@ -17978,6 +19599,10 @@ packages: requiresBuild: true optional: true + /esbuild-windows-32/0.13.15: + resolution: {integrity: sha512-fDMEf2g3SsJ599MBr50cY5ve5lP1wyVwTe6aLJsM01KtxyKkB4UT+fc5MXQFn3RLrAIAZOG+tHC+yXObpSn7Nw==} + optional: true + /esbuild-windows-32/0.14.54: resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==} engines: {node: '>=12'} @@ -18004,6 +19629,10 @@ packages: requiresBuild: true optional: true + /esbuild-windows-64/0.13.15: + resolution: {integrity: sha512-9aMsPRGDWCd3bGjUIKG/ZOJPKsiztlxl/Q3C1XDswO6eNX/Jtwu4M+jb6YDH9hRSUflQWX0XKAfWzgy5Wk54JQ==} + optional: true + /esbuild-windows-64/0.14.54: resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==} engines: {node: '>=12'} @@ -18030,6 +19659,10 @@ packages: requiresBuild: true optional: true + /esbuild-windows-arm64/0.13.15: + resolution: {integrity: sha512-zzvyCVVpbwQQATaf3IG8mu1IwGEiDxKkYUdA4FpoCHi1KtPa13jeScYDjlW0Qh+ebWzpKfR2ZwvqAQkSWNcKjA==} + optional: true + /esbuild-windows-arm64/0.14.54: resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==} engines: {node: '>=12'} @@ -18056,6 +19689,27 @@ packages: requiresBuild: true optional: true + /esbuild/0.13.15: + resolution: {integrity: sha512-raCxt02HBKv8RJxE8vkTSCXGIyKHdEdGfUmiYb8wnabnaEmHzyW7DCHb5tEN0xU8ryqg5xw54mcwnYkC4x3AIw==} + optionalDependencies: + esbuild-android-arm64: 0.13.15 + esbuild-darwin-64: 0.13.15 + esbuild-darwin-arm64: 0.13.15 + esbuild-freebsd-64: 0.13.15 + esbuild-freebsd-arm64: 0.13.15 + esbuild-linux-32: 0.13.15 + esbuild-linux-64: 0.13.15 + esbuild-linux-arm: 0.13.15 + esbuild-linux-arm64: 0.13.15 + esbuild-linux-mips64le: 0.13.15 + esbuild-linux-ppc64le: 0.13.15 + esbuild-netbsd-64: 0.13.15 + esbuild-openbsd-64: 0.13.15 + esbuild-sunos-64: 0.13.15 + esbuild-windows-32: 0.13.15 + esbuild-windows-64: 0.13.15 + esbuild-windows-arm64: 0.13.15 + /esbuild/0.14.54: resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==} engines: {node: '>=12'} @@ -18118,7 +19772,6 @@ packages: /esbuild/0.15.7: resolution: {integrity: sha512-7V8tzllIbAQV1M4QoE52ImKu8hT/NLGlGXkiDsbEU5PS6K8Mn09ZnYoS+dcmHxOS9CRsV4IRAMdT3I67IyUNXw==} engines: {node: '>=12'} - hasBin: true requiresBuild: true optionalDependencies: '@esbuild/linux-loong64': 0.15.7 @@ -18146,7 +19799,6 @@ packages: /esbuild/0.16.14: resolution: {integrity: sha512-6xAn3O6ZZyoxZAEkwfI9hw4cEqSr/o1ViJtnkvImVkblmUN65Md04o0S/7H1WNu1XGf1Cjij/on7VO4psIYjkw==} engines: {node: '>=12'} - hasBin: true requiresBuild: true optionalDependencies: '@esbuild/android-arm': 0.16.14 @@ -18229,7 +19881,6 @@ packages: /escodegen/2.0.0: resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} engines: {node: '>=6.0'} - hasBin: true dependencies: esprima: 4.0.1 estraverse: 5.3.0 @@ -18257,7 +19908,7 @@ packages: cliui: 3.2.0 eslint: 8.28.0 eslint-rule-documentation: 1.0.23 - glob: 7.2.0 + glob: 7.2.3 which: 1.3.1 window-size: 0.3.0 yargs: 16.2.0 @@ -18298,7 +19949,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.30.0_pku7h6lsbnh7tcsfjudlqd5qce + '@typescript-eslint/parser': 5.30.0_hsf322ms6xhhd4b5ne6lb74y4a debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -18350,7 +20001,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.30.0_pku7h6lsbnh7tcsfjudlqd5qce + '@typescript-eslint/parser': 5.30.0_hsf322ms6xhhd4b5ne6lb74y4a array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 @@ -18398,7 +20049,7 @@ packages: semver: 6.3.0 dev: false - /eslint-plugin-prettier/4.1.0_ut6ng3rjtiriv4gbc46g5qsm4u: + /eslint-plugin-prettier/4.1.0_pgxuib4rd7wiymfktharf5ydt4: resolution: {integrity: sha512-A3AXIEfTnq3D5qDFjWJdQ9c4BLhw/TqhSR+6+SVaoPJBAWciFEuJiNQh275OnjRrAi7yssZzuWBRw66VG2g6UA==} engines: {node: '>=12.0.0'} peerDependencies: @@ -18411,7 +20062,7 @@ packages: dependencies: eslint: 8.28.0 eslint-config-prettier: 8.5.0_eslint@8.28.0 - prettier: 2.8.7 + prettier: 2.7.1 prettier-linter-helpers: 1.0.0 dev: false @@ -18520,7 +20171,6 @@ packages: /eslint/8.28.0: resolution: {integrity: sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - hasBin: true dependencies: '@eslint/eslintrc': 1.3.3 '@humanwhocodes/config-array': 0.11.7 @@ -18915,7 +20565,6 @@ packages: /extract-zip/2.0.1: resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} engines: {node: '>= 10.17.0'} - hasBin: true dependencies: debug: 4.3.4 get-stream: 5.2.0 @@ -18929,7 +20578,6 @@ packages: /extract-zip/2.0.1_supports-color@8.1.1: resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} engines: {node: '>= 10.17.0'} - hasBin: true dependencies: debug: 4.3.4_supports-color@8.1.1 get-stream: 5.2.0 @@ -18951,7 +20599,7 @@ packages: cosmiconfig: 7.0.1 farrow-pipeline: 1.12.0 farrow-schema: 1.12.1 - prettier: 2.8.7 + prettier: 2.7.1 tslib: 2.4.0 dev: false @@ -18997,6 +20645,7 @@ packages: glob-parent: 5.1.2 merge2: 1.4.1 micromatch: 4.0.5 + dev: true /fast-glob/3.2.12: resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} @@ -19101,7 +20750,7 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: loader-utils: 2.0.4 - schema-utils: 3.1.2 + schema-utils: 3.1.1 webpack: 4.46.0 dev: false @@ -19112,7 +20761,7 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: loader-utils: 2.0.4 - schema-utils: 3.1.2 + schema-utils: 3.1.1 webpack: 5.82.1 dev: true @@ -19234,7 +20883,6 @@ packages: /find-process/1.4.7: resolution: {integrity: sha512-/U4CYp1214Xrp3u3Fqr9yNynUrr5Le4y0SsJh2lMDDSbpwYSz3M2SMWQC+wqcx79cN8PQtHQIL8KnuY9M66fdg==} - hasBin: true dependencies: chalk: 4.1.2 commander: 5.1.0 @@ -19365,7 +21013,7 @@ packages: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} dev: true - /fork-ts-checker-webpack-plugin/4.1.6_evijigonbo4skk2vlqtwtdqibu: + /fork-ts-checker-webpack-plugin/4.1.6_4saukclyqastvrycwsozxxbldi: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -19385,14 +21033,14 @@ packages: minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: false - /fork-ts-checker-webpack-plugin/6.5.2_evijigonbo4skk2vlqtwtdqibu: + /fork-ts-checker-webpack-plugin/6.5.2_4saukclyqastvrycwsozxxbldi: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -19419,11 +21067,11 @@ packages: schema-utils: 2.7.0 semver: 7.3.7 tapable: 1.1.3 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 4.46.0 dev: false - /fork-ts-checker-webpack-plugin/6.5.2_hybrf64lftnf5l2xwgg7goi2iu: + /fork-ts-checker-webpack-plugin/6.5.2_7rk4b2hmmye4ay4nslib7apbti: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -19450,18 +21098,18 @@ packages: schema-utils: 2.7.0 semver: 7.3.7 tapable: 1.1.3 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1_esbuild@0.15.7 dev: false - /fork-ts-checker-webpack-plugin/8.0.0_hybrf64lftnf5l2xwgg7goi2iu: + /fork-ts-checker-webpack-plugin/8.0.0_7rk4b2hmmye4ay4nslib7apbti: resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: typescript: '>3.6.0' webpack: ^5.11.0 dependencies: - '@babel/code-frame': 7.21.4 + '@babel/code-frame': 7.18.6 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.0.1 @@ -19470,10 +21118,10 @@ packages: memfs: 3.4.12 minimatch: 3.1.2 node-abort-controller: 3.0.1 - schema-utils: 3.1.2 - semver: 7.3.7 + schema-utils: 3.1.1 + semver: 7.3.8 tapable: 2.2.1 - typescript: 4.9.5 + typescript: 4.9.3 webpack: 5.82.1 dev: false @@ -19525,7 +21173,6 @@ packages: /formidable/1.2.6: resolution: {integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==} - deprecated: 'Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau' dev: false /formidable/2.0.1: @@ -19821,7 +21468,6 @@ packages: /git-raw-commits/2.0.11: resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} engines: {node: '>=10'} - hasBin: true dependencies: dargs: 7.0.0 lodash: 4.17.21 @@ -19867,6 +21513,16 @@ packages: glob: 7.2.0 dev: false + /glob-promise/3.4.0_glob@7.2.3: + resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==} + engines: {node: '>=4'} + peerDependencies: + glob: '*' + dependencies: + '@types/glob': 7.2.0 + glob: 7.2.3 + dev: false + /glob-to-regexp/0.3.0: resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} dev: false @@ -19894,6 +21550,16 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 + /glob/7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + /glob/9.3.0: resolution: {integrity: sha512-EAZejC7JvnQINayvB/7BJbpZpNOJ8Lrw2OZNEvQxe0vaLn1SuwMcfV7/MNaX8L/T0wmptBFI4YMtDvSBxYDc7w==} engines: {node: '>=16 || 14 >=14.17'} @@ -19985,7 +21651,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.11 + fast-glob: 3.2.12 ignore: 5.2.0 merge2: 1.4.1 slash: 3.0.0 @@ -20058,7 +21724,6 @@ packages: /handlebars/4.7.7: resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} engines: {node: '>=0.4.7'} - hasBin: true dependencies: minimist: 1.2.6 neo-async: 2.6.2 @@ -20343,7 +22008,6 @@ packages: /hast/1.0.0: resolution: {integrity: sha512-vFUqlRV5C+xqP76Wwq2SrM0kipnmpxJm7OfvVXpB35Fp+Fn4MV+ozr+JZr5qFvyR1q/U+Foim2x+3P+x9S1PLA==} - deprecated: Renamed to rehype dev: false /hastscript/6.0.0: @@ -20483,7 +22147,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.17.3 + terser: 5.15.0 /html-minifier-terser/7.0.0: resolution: {integrity: sha512-Adqk0b/pWKIQiGvEAuzPKpBKNHiwblr3QSGS7TTr6v+xXKV9AI2k4vWW+6Oytt6Z5SeBnfvYypKOnz8r75pz3Q==} @@ -20509,7 +22173,7 @@ packages: engines: {node: '>=14'} dependencies: '@selderee/plugin-htmlparser2': 0.10.0 - deepmerge: 4.3.0 + deepmerge: 4.2.2 dom-serializer: 2.0.0 htmlparser2: 8.0.1 selderee: 0.10.0 @@ -20724,7 +22388,6 @@ packages: /husky/8.0.1: resolution: {integrity: sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==} engines: {node: '>=14'} - hasBin: true /iconv-lite/0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} @@ -20787,7 +22450,6 @@ packages: /image-size/0.5.5: resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} engines: {node: '>=0.10.0'} - hasBin: true requiresBuild: true dev: true optional: true @@ -20814,7 +22476,6 @@ packages: /import-local/3.1.0: resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} engines: {node: '>=8'} - hasBin: true dependencies: pkg-dir: 4.2.0 resolve-cwd: 3.0.0 @@ -20906,7 +22567,7 @@ packages: mute-stream: 0.0.8 ora: 5.4.1 run-async: 2.4.1 - rxjs: 7.8.0 + rxjs: 7.5.5 string-width: 4.2.3 strip-ansi: 6.0.1 through: 2.3.8 @@ -20932,6 +22593,15 @@ packages: through: 2.3.8 wrap-ansi: 7.0.0 + /internal-slot/1.0.3: + resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.0 + has: 1.0.3 + side-channel: 1.0.4 + dev: false + /internal-slot/1.0.5: resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} engines: {node: '>= 0.4'} @@ -21082,14 +22752,12 @@ packages: /is-ci/2.0.0: resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} - hasBin: true dependencies: ci-info: 2.0.0 dev: false /is-ci/3.0.1: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} - hasBin: true dependencies: ci-info: 3.3.2 @@ -21159,7 +22827,6 @@ packages: /is-docker/2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} - hasBin: true /is-dom/1.1.0: resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} @@ -21662,6 +23329,34 @@ packages: - supports-color - ts-node + /jest-cli/29.5.0_dpgiwbr57mwjpgbjs46itctnqi: + resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.5.0_ts-node@10.8.1 + '@jest/test-result': 29.5.0 + '@jest/types': 29.5.0 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + import-local: 3.1.0 + jest-config: 29.5.0_dpgiwbr57mwjpgbjs46itctnqi + jest-util: 29.5.0 + jest-validate: 29.5.0 + prompts: 2.4.2 + yargs: 17.5.1 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + /jest-cli/29.5.0_ucrrwouekfhalapu5k2jjofb4m: resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -21794,6 +23489,46 @@ packages: transitivePeerDependencies: - supports-color + /jest-config/29.5.0_dpgiwbr57mwjpgbjs46itctnqi: + resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.21.8 + '@jest/test-sequencer': 29.5.0 + '@jest/types': 29.5.0 + '@types/node': 14.18.35 + babel-jest: 29.5.0_@babel+core@7.21.8 + chalk: 4.1.2 + ci-info: 3.3.2 + deepmerge: 4.3.0 + glob: 7.2.0 + graceful-fs: 4.2.10 + jest-circus: 29.5.0 + jest-environment-node: 29.5.0 + jest-get-type: 29.4.3 + jest-regex-util: 29.4.3 + jest-resolve: 29.5.0 + jest-runner: 29.5.0 + jest-util: 29.5.0 + jest-validate: 29.5.0 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.5.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + ts-node: 10.8.1_5axvewzfuqiugp6622ftukgx6y + transitivePeerDependencies: + - supports-color + dev: true + /jest-config/29.5.0_gdfmazj3jmbrb4g2jrqpy7nfee: resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -21829,7 +23564,47 @@ packages: pretty-format: 29.5.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 9.1.1_typescript@4.9.3 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-config/29.5.0_iwszhnlf4w4ft46xnex7wh5rt4: + resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.21.8 + '@jest/test-sequencer': 29.5.0 + '@jest/types': 29.5.0 + '@types/node': 18.11.17 + babel-jest: 29.5.0_@babel+core@7.21.8 + chalk: 4.1.2 + ci-info: 3.3.2 + deepmerge: 4.3.0 + glob: 7.2.0 + graceful-fs: 4.2.10 + jest-circus: 29.5.0 + jest-environment-node: 29.5.0 + jest-get-type: 29.4.3 + jest-regex-util: 29.4.3 + jest-resolve: 29.5.0 + jest-runner: 29.5.0 + jest-util: 29.5.0 + jest-validate: 29.5.0 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.5.0 + slash: 3.0.0 + strip-json-comments: 3.1.1 + ts-node: 10.8.1_5axvewzfuqiugp6622ftukgx6y transitivePeerDependencies: - supports-color dev: true @@ -21869,7 +23644,7 @@ packages: pretty-format: 29.5.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 9.1.1_typescript@4.9.5 + ts-node: 9.1.1_typescript@4.9.3 transitivePeerDependencies: - supports-color dev: true @@ -21909,7 +23684,7 @@ packages: pretty-format: 29.5.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_tmt345f6mmvj3vdnsaqf2jblxq + ts-node: 10.9.1_5axvewzfuqiugp6622ftukgx6y transitivePeerDependencies: - supports-color dev: true @@ -21949,7 +23724,7 @@ packages: pretty-format: 29.5.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_tmt345f6mmvj3vdnsaqf2jblxq + ts-node: 10.9.1_5axvewzfuqiugp6622ftukgx6y transitivePeerDependencies: - supports-color dev: true @@ -22188,7 +23963,7 @@ packages: dependencies: expect-puppeteer: 8.0.5 jest-environment-puppeteer: 8.0.5 - puppeteer: 19.7.5_typescript@4.9.5 + puppeteer: 19.7.5_typescript@4.9.3 transitivePeerDependencies: - debug - supports-color @@ -22358,6 +24133,17 @@ packages: picomatch: 2.3.1 dev: false + /jest-util/29.3.1: + resolution: {integrity: sha512-7YOVZaiX7RJLv76ZfHt4nbNEzzTRiMW/IiOG7ZOKmTXmoGBxUDefgMAxQubu6WPVqP5zSzAdZG0FfLcC7HOIFQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.5.0 + '@types/node': 18.11.17 + chalk: 4.1.2 + ci-info: 3.3.2 + graceful-fs: 4.2.10 + picomatch: 2.3.1 + /jest-util/29.5.0: resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -22438,6 +24224,26 @@ packages: - supports-color - ts-node + /jest/29.5.0_dpgiwbr57mwjpgbjs46itctnqi: + resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.5.0_ts-node@10.8.1 + '@jest/types': 29.5.0 + import-local: 3.1.0 + jest-cli: 29.5.0_dpgiwbr57mwjpgbjs46itctnqi + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + /jest/29.5.0_ucrrwouekfhalapu5k2jjofb4m: resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -22503,7 +24309,6 @@ packages: /js-polyfills/0.1.43: resolution: {integrity: sha512-wWCJcw7uMA12uk7qcqZlIQy9nj+Evh1wVUmn5MOlJ7GPC8HT5PLjB9Uiqjw9ldAbbOuNOWJ6ENb7NwU6qqf48g==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dev: false /js-sdsl/4.2.0: @@ -22530,7 +24335,6 @@ packages: /js-yaml/4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} - hasBin: true dependencies: argparse: 2.0.1 @@ -22632,6 +24436,10 @@ packages: dependencies: minimist: 1.2.6 + /json5/2.2.1: + resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + engines: {node: '>=6'} + /json5/2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} @@ -22691,7 +24499,7 @@ packages: engines: {node: '>=4.0'} dependencies: array-includes: 3.1.5 - object.assign: 4.1.4 + object.assign: 4.1.2 dev: false /junk/3.1.0: @@ -22713,7 +24521,6 @@ packages: /kill-port/2.0.1: resolution: {integrity: sha512-e0SVOV5jFo0mx8r7bS29maVWp17qGqLBZ5ricNSajON6//kmb7qqqNnml4twNE8Dtj97UQD+gNFOaipS/q1zzQ==} - hasBin: true dependencies: get-them-args: 1.3.2 shell-exec: 1.0.2 @@ -22867,7 +24674,6 @@ packages: /less/4.1.3: resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} engines: {node: '>=6'} - hasBin: true dependencies: copy-anything: 2.0.6 parse-node-version: 1.0.1 @@ -22906,6 +24712,10 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 + /lilconfig/2.0.6: + resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} + engines: {node: '>=10'} + /lilconfig/2.1.0: resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} @@ -23236,7 +25046,6 @@ packages: /lz-string/1.4.4: resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==} - hasBin: true /magic-string/0.26.7: resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} @@ -23642,7 +25451,7 @@ packages: decamelize: 1.2.0 loud-rejection: 1.6.0 map-obj: 1.0.1 - minimist: 1.2.6 + minimist: 1.2.8 normalize-package-data: 2.5.0 object-assign: 4.1.1 read-pkg-up: 1.0.1 @@ -24106,7 +25915,6 @@ packages: /mime/2.6.0: resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} engines: {node: '>=4.0.0'} - hasBin: true /mimic-fn/2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} @@ -24193,7 +26001,6 @@ packages: /minimist/1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - dev: true /minipass-collect/1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} @@ -24280,14 +26087,12 @@ packages: /mkdirp/0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} - hasBin: true dependencies: minimist: 1.2.6 /mkdirp/1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} - hasBin: true /mnemonist/0.38.5: resolution: {integrity: sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==} @@ -24379,7 +26184,6 @@ packages: /nanoid/3.3.4: resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} - hasBin: true /nanomatch/1.2.13: resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} @@ -24406,7 +26210,6 @@ packages: /needle/3.1.0: resolution: {integrity: sha512-gCE9weDhjVGCRqS8dwDR/D3GTAeyXLXuqp7I8EzH6DllZGXSUyxuqqLh+YX9rMAWaaTFyVAg6rHGL25dqvczKw==} engines: {node: '>= 4.4.x'} - hasBin: true requiresBuild: true dependencies: debug: 3.2.7 @@ -24507,7 +26310,6 @@ packages: /node-gyp-build/4.4.0: resolution: {integrity: sha512-amJnQCcgtRVw9SvoebO3BKGESClrfXGCUTX9hSn1OuGQTQBOZmVd0Z0OlecpuRksKvbsUqALE8jls/ErClAPuQ==} - hasBin: true dev: true /node-int64/0.4.0: @@ -24704,6 +26506,15 @@ packages: isobject: 3.0.1 dev: false + /object.assign/4.1.2: + resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + has-symbols: 1.0.3 + object-keys: 1.1.1 + /object.assign/4.1.4: resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} engines: {node: '>= 0.4'} @@ -24712,6 +26523,7 @@ packages: define-properties: 1.1.4 has-symbols: 1.0.3 object-keys: 1.1.1 + dev: false /object.entries/1.1.5: resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} @@ -24719,7 +26531,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 dev: false /object.fromentries/2.0.5: @@ -24728,7 +26540,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 dev: false /object.getownpropertydescriptors/2.1.4: @@ -24738,14 +26550,14 @@ packages: array.prototype.reduce: 1.0.4 call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 dev: false /object.hasown/1.1.1: resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==} dependencies: define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 dev: false /object.pick/1.3.0: @@ -24761,7 +26573,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 dev: false /objectorarray/1.0.5: @@ -24835,7 +26647,6 @@ packages: /opener/1.5.2: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} - hasBin: true dev: true /optionator/0.8.3: @@ -25274,7 +27085,7 @@ packages: resolution: {integrity: sha512-cYOUUW1YVkXvQkZUJ596k6bCMYZNkoDcm8Zkibf2GxJvKGp00FqwvRgAjxFNuyuAvLGetcGcoRMzb48RSuQofg==} engines: {node: '>= 0.10.0'} dependencies: - q: 1.5.1 + q: 1.4.1 dev: false /picocolors/0.2.1: @@ -25291,7 +27102,6 @@ packages: /picturefill/3.0.3: resolution: {integrity: sha512-JDdx+3i4fs2pkqwWZJgGEM2vFWsq+01YsQFT9CKPGuv2Q0xSdrQZoxi9XwyNARTgxiOdgoAwWQRluLRe/JQX2g==} engines: {node: '>= 0.8.0'} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dev: false /pidtree/0.6.0: @@ -25372,21 +27182,19 @@ packages: /playwright-core/1.25.1: resolution: {integrity: sha512-lSvPCmA2n7LawD2Hw7gSCLScZ+vYRkhU8xH0AapMyzwN+ojoDqhkH/KIEUxwNu2PjPoE/fcE0wLAksdOhJ2O5g==} engines: {node: '>=14'} - hasBin: true /playwright/1.25.1: resolution: {integrity: sha512-kOlW7mllnQ70ALTwAor73q/FhdH9EEXLUqjdzqioYLcSVC4n4NBfDqeCikGuayFZrLECLkU6Hcbziy/szqTXSA==} engines: {node: '>=14'} - hasBin: true requiresBuild: true dependencies: playwright-core: 1.25.1 - /pnp-webpack-plugin/1.6.4_typescript@4.9.5: + /pnp-webpack-plugin/1.6.4_typescript@4.9.3: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.9.5 + ts-pnp: 1.2.0_typescript@4.9.3 transitivePeerDependencies: - typescript dev: false @@ -25435,19 +27243,6 @@ packages: postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 - /postcss-colormin/5.3.1_postcss@8.4.21: - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.21.4 - caniuse-api: 3.0.0 - colord: 2.9.2 - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-colormin/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==} engines: {node: ^14 || ^16 || >=18.0} @@ -25460,17 +27255,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-convert-values/5.1.3_postcss@8.4.21: - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.21.4 - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-convert-values/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==} engines: {node: ^14 || ^16 || >=18.0} @@ -25494,15 +27278,6 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-discard-comments/5.1.2_postcss@8.4.21: - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - dev: false - /postcss-discard-comments/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==} engines: {node: ^14 || ^16 || >=18.0} @@ -25511,15 +27286,6 @@ packages: dependencies: postcss: 8.4.21 - /postcss-discard-duplicates/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - dev: false - /postcss-discard-duplicates/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==} engines: {node: ^14 || ^16 || >=18.0} @@ -25528,15 +27294,6 @@ packages: dependencies: postcss: 8.4.21 - /postcss-discard-empty/5.1.1_postcss@8.4.21: - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - dev: false - /postcss-discard-empty/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==} engines: {node: ^14 || ^16 || >=18.0} @@ -25545,15 +27302,6 @@ packages: dependencies: postcss: 8.4.21 - /postcss-discard-overridden/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - dev: false - /postcss-discard-overridden/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==} engines: {node: ^14 || ^16 || >=18.0} @@ -25675,17 +27423,6 @@ packages: postcss: 8.4.21 dev: true - /postcss-merge-longhand/5.1.7_postcss@8.4.21: - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - stylehacks: 5.1.1_postcss@8.4.21 - dev: false - /postcss-merge-longhand/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==} engines: {node: ^14 || ^16 || >=18.0} @@ -25696,19 +27433,6 @@ packages: postcss-value-parser: 4.2.0 stylehacks: 6.0.0_postcss@8.4.21 - /postcss-merge-rules/5.1.4_postcss@8.4.21: - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.21.4 - caniuse-api: 3.0.0 - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 - dev: false - /postcss-merge-rules/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-rCXkklftzEkniyv3f4mRCQzxD6oE4Quyh61uyWTUbCJ26Pv2hoz+fivJSsSBWxDBeScR4fKCfF3HHTcD7Ybqnw==} engines: {node: ^14 || ^16 || >=18.0} @@ -25721,16 +27445,6 @@ packages: postcss: 8.4.21 postcss-selector-parser: 6.0.11 - /postcss-minify-font-values/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-minify-font-values/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==} engines: {node: ^14 || ^16 || >=18.0} @@ -25740,18 +27454,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-minify-gradients/5.1.1_postcss@8.4.21: - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - colord: 2.9.2 - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-minify-gradients/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==} engines: {node: ^14 || ^16 || >=18.0} @@ -25763,18 +27465,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-minify-params/5.1.4_postcss@8.4.21: - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.21.4 - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-minify-params/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==} engines: {node: ^14 || ^16 || >=18.0} @@ -25786,16 +27476,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-minify-selectors/5.2.1_postcss@8.4.21: - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 - dev: false - /postcss-minify-selectors/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==} engines: {node: ^14 || ^16 || >=18.0} @@ -25916,18 +27596,9 @@ packages: postcss: ^8.4 dependencies: postcss: 8.4.21 - postcss-selector-parser: 6.0.11 + postcss-selector-parser: 6.0.10 dev: true - /postcss-normalize-charset/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - dev: false - /postcss-normalize-charset/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==} engines: {node: ^14 || ^16 || >=18.0} @@ -25936,16 +27607,6 @@ packages: dependencies: postcss: 8.4.21 - /postcss-normalize-display-values/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-display-values/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==} engines: {node: ^14 || ^16 || >=18.0} @@ -25955,16 +27616,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-positions/5.1.1_postcss@8.4.21: - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-positions/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==} engines: {node: ^14 || ^16 || >=18.0} @@ -25974,16 +27625,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-repeat-style/5.1.1_postcss@8.4.21: - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-repeat-style/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==} engines: {node: ^14 || ^16 || >=18.0} @@ -25993,16 +27634,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-string/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-string/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==} engines: {node: ^14 || ^16 || >=18.0} @@ -26012,16 +27643,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-timing-functions/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-timing-functions/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==} engines: {node: ^14 || ^16 || >=18.0} @@ -26031,17 +27652,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-unicode/5.1.1_postcss@8.4.21: - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.21.4 - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-unicode/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==} engines: {node: ^14 || ^16 || >=18.0} @@ -26052,17 +27662,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-url/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - normalize-url: 6.1.0 - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-url/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==} engines: {node: ^14 || ^16 || >=18.0} @@ -26072,16 +27671,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-normalize-whitespace/5.1.1_postcss@8.4.21: - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-normalize-whitespace/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==} engines: {node: ^14 || ^16 || >=18.0} @@ -26091,17 +27680,6 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-ordered-values/5.1.3_postcss@8.4.21: - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-ordered-values/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==} engines: {node: ^14 || ^16 || >=18.0} @@ -26127,17 +27705,6 @@ packages: dependencies: postcss: 8.4.21 - /postcss-reduce-initial/5.1.2_postcss@8.4.21: - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.21.4 - caniuse-api: 3.0.0 - postcss: 8.4.21 - dev: false - /postcss-reduce-initial/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==} engines: {node: ^14 || ^16 || >=18.0} @@ -26148,16 +27715,6 @@ packages: caniuse-api: 3.0.0 postcss: 8.4.21 - /postcss-reduce-transforms/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - dev: false - /postcss-reduce-transforms/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==} engines: {node: ^14 || ^16 || >=18.0} @@ -26167,23 +27724,19 @@ packages: postcss: 8.4.21 postcss-value-parser: 4.2.0 - /postcss-selector-parser/6.0.11: - resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} + /postcss-selector-parser/6.0.10: + resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} engines: {node: '>=4'} dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-svgo/5.1.0_postcss@8.4.21: - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 + /postcss-selector-parser/6.0.11: + resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} + engines: {node: '>=4'} dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - svgo: 2.8.0 - dev: false + cssesc: 3.0.0 + util-deprecate: 1.0.2 /postcss-svgo/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==} @@ -26195,16 +27748,6 @@ packages: postcss-value-parser: 4.2.0 svgo: 3.0.2 - /postcss-unique-selectors/5.1.1_postcss@8.4.21: - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 - dev: false - /postcss-unique-selectors/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==} engines: {node: ^14 || ^16 || >=18.0} @@ -26285,6 +27828,10 @@ packages: hasBin: true dev: false + /prettier/2.7.1: + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} + engines: {node: '>=10.13.0'} + /prettier/2.8.7: resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} engines: {node: '>=10.13.0'} @@ -26418,7 +27965,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 dev: false /promise/7.3.1: @@ -26622,7 +28169,7 @@ packages: resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} engines: {node: '>=6'} - /puppeteer-core/19.7.5_typescript@4.9.5: + /puppeteer-core/19.7.5_typescript@4.9.3: resolution: {integrity: sha512-EJuNha+SxPfaYFbkoWU80H3Wb1SiQH5fFyb2xdbWda0ziax5mhV63UMlqNfPeTDIWarwtR4OIcq/9VqY8HPOsg==} engines: {node: '>=14.14.0'} peerDependencies: @@ -26640,7 +28187,7 @@ packages: proxy-from-env: 1.1.0 rimraf: 4.4.0 tar-fs: 2.1.1 - typescript: 4.9.5 + typescript: 4.9.3 unbzip2-stream: 1.4.3 ws: 8.12.1 transitivePeerDependencies: @@ -26650,7 +28197,7 @@ packages: - utf-8-validate dev: true - /puppeteer/19.7.5_typescript@4.9.5: + /puppeteer/19.7.5_typescript@4.9.3: resolution: {integrity: sha512-UqD8K+yaZa6/hwzP54AATCiHrEYGGxzQcse9cZzrtsVGd8wT0llCdYhsBp8n+zvnb1ofY0YFgI3TYZ/MiX5uXQ==} requiresBuild: true dependencies: @@ -26658,7 +28205,7 @@ packages: https-proxy-agent: 5.0.1 progress: 2.0.3 proxy-from-env: 1.1.0 - puppeteer-core: 19.7.5_typescript@4.9.5 + puppeteer-core: 19.7.5_typescript@4.9.3 transitivePeerDependencies: - bufferutil - encoding @@ -26672,7 +28219,6 @@ packages: /purgecss/4.1.3: resolution: {integrity: sha512-99cKy4s+VZoXnPxaoM23e5ABcP851nC2y2GROkkjS8eJaJtlciGavd7iYAw2V84WeBqggZ12l8ef44G99HmTaw==} - hasBin: true dependencies: commander: 8.3.0 glob: 7.2.0 @@ -26688,6 +28234,7 @@ packages: /q/1.5.1: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + dev: true /qrcode.react/3.1.0_react@18.2.0: resolution: {integrity: sha512-oyF+Urr3oAMUG/OiOuONL3HXM+53wvuH3mtIWQrYmsXoAq0DkvZp2RYUWFSMFtbdOpuS++9v+WAkzNVkMlNW6Q==} @@ -26822,6 +28369,22 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + /rc-cascader/3.8.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-zCz/NzsNRQ1TIfiR3rQNxjeRvgRHEkNdo0FjHQZ6Ay6n4tdCmMrM7+81ThNaf21JLQ1gS2AUG2t5uikGV78obA==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + array-tree-filter: 2.1.0 + classnames: 2.3.2 + rc-select: 14.2.0_biqbaboplfbrettd7655fr4n2y + rc-tree: 5.7.2_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /rc-cascader/3.9.1_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-wMOQrCWobkaQz3zHEFB82RNBLDkL6tDucOf4VSKQ8Z6SiVBqIfqnEHaEiYvL9GMI3/zStVGqwvOFar/xyOm+xw==} peerDependencies: @@ -26836,6 +28399,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-checkbox/2.3.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-afVi1FYiGv1U0JlpNH/UaEXdh6WUJjcWokj/nUN2TgG80bfG+MDdbfHKlLcNNba94mbjy2/SXJ1HDgrOkXGAjg==} @@ -26862,6 +28426,21 @@ packages: react-dom: 18.2.0_react@18.2.0 shallowequal: 1.1.0 + /rc-collapse/3.4.2_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-jpTwLgJzkhAgp2Wpi3xmbTbbYExg6fkptL67Uu5LCRVEj6wqmy0DHTjjeynsjOLsppHGHu41t1ELntZ0lEvS/Q==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + shallowequal: 1.1.0 + dev: false + /rc-collapse/3.5.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-/TNiT3DW1t3sUCiVD/DPUYooJZ3BLA93/2rZsB3eM2bGJCCla2X9D2E4tgm7LGMQGy5Atb2lMUn2FQuvQNvavQ==} peerDependencies: @@ -26874,6 +28453,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-dialog/8.9.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-Cp0tbJnrvPchJfnwIvOMWmJ4yjX3HWFatO6oBFD1jx8QkgsQCR0p8nUWAKdd3seLJhEC39/v56kZaEjwp9muoQ==} @@ -26967,6 +28547,22 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + /rc-image/5.13.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-iZTOmw5eWo2+gcrJMMcnd7SsxVHl3w5xlyCgsULUdJhJbnuI8i/AL0tVOsE7aLn9VfOh1qgDT3mC2G75/c7mqg==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + '@rc-component/portal': 1.1.0_biqbaboplfbrettd7655fr4n2y + classnames: 2.3.2 + rc-dialog: 9.0.2_biqbaboplfbrettd7655fr4n2y + rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /rc-image/5.15.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-QaeWP20v51eGyrkl24PyusTmbMk42A3vGPl7hEa15jcQjECOX36tLtvLk5sjl3vaLQpMskB8BbwiqPsN7I7aow==} peerDependencies: @@ -26981,6 +28577,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-image/5.7.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-v6dzSgYfYrH4liKmOZKZZO+x21sJ9KPXNinBfkAoQg2Ihcd5QZ+P/JjB7v60X981XTPGjegy8U17Z8VUX4V36g==} @@ -27032,6 +28629,19 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + /rc-input/0.1.4_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-FqDdNz+fV2dKNgfXzcSLKvC+jEs1709t7nD+WdfjrdSaOcefpgc7BUJYadc3usaING+b7ediMTfKxuJBsEFbXA==} + peerDependencies: + react: '>=16.0.0' + react-dom: '>=16.0.0' + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /rc-input/0.2.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-xgkVcFgtRO0Hl9hmvslZhObNyxbSpTmy3nR1Tk4XrjjZ9lFJ7GcJBy6ss30Pdb0oX36cHzLN8I7VCjBGeRNB9A==} peerDependencies: @@ -27043,6 +28653,23 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true + + /rc-mentions/1.13.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-FCkaWw6JQygtOz0+Vxz/M/NWqrWHB9LwqlY2RtcuFqWJNFK9njijOOzTSsBGANliGufVUzx/xuPHmZPBV0+Hgw==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + rc-menu: 9.8.2_biqbaboplfbrettd7655fr4n2y + rc-textarea: 0.4.7_biqbaboplfbrettd7655fr4n2y + rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false /rc-mentions/1.8.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-ch7yfMMvx2UXy+EvE4axm0Vp6VlVZ30WLrZtLtV/Eb1ty7rQQRzNzCwAHAMyw6tNKTMs9t9sF68AVjAzQ0rvJw==} @@ -27074,6 +28701,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-menu/9.6.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-d26waws42U/rVwW/+rOE2FN9pX6wUc9bDy38vVQYoie6gE85auWIpl5oChGlnW6nE2epnTwUsgWl8ipOPgmnUA==} @@ -27091,6 +28719,23 @@ packages: react-dom: 18.2.0_react@18.2.0 shallowequal: 1.1.0 + /rc-menu/9.8.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-179weouypfjWJSRvvoo/vPy+StojsMzK2XC5jRNhL1ryt/N/8wAFESte8K6jZJkNp9DHDLFTe+dCGmikKpiFuA==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y + rc-overflow: 1.2.8_biqbaboplfbrettd7655fr4n2y + rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + shallowequal: 1.1.0 + dev: false + /rc-menu/9.8.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-EahOJVjLuEnJsThoPN+mGnVm431RzVzDLZWHRS/YnXTQULa7OsgdJa/Y7qXxc3Z5sz8mgT6xYtgpmBXLxrZFaQ==} peerDependencies: @@ -27199,6 +28844,33 @@ packages: react-dom: 18.2.0_react@18.2.0 shallowequal: 1.1.0 + /rc-picker/3.1.4_hddctr6et5lu7n7zc3fcfqwa2m: + resolution: {integrity: sha512-4qANXNc3C02YENNQvun329zf9VLvSQ2W8RkKQRu8k1P+EtSGqe3klcAKCfz/1TuCiDvgRjJlzRmyZAkwvsbI8w==} + engines: {node: '>=8.x'} + peerDependencies: + date-fns: '>= 2.x' + dayjs: '>= 1.x' + moment: '>= 2.x' + react: '>=16.9.0' + react-dom: '>=16.9.0' + peerDependenciesMeta: + date-fns: + optional: true + dayjs: + optional: true + moment: + optional: true + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + dayjs: 1.11.3 + rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + shallowequal: 1.1.0 + dev: false + /rc-picker/3.2.4_hddctr6et5lu7n7zc3fcfqwa2m: resolution: {integrity: sha512-AydqPVS12u+46P6DwF0iMi4p5UAAnb64drcA/zUgNXkkB6rQhUwtYP7E75YM0WylT54F3sLhe+WttZynxtsU+Q==} engines: {node: '>=8.x'} @@ -27223,6 +28895,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-progress/3.3.3_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-MDVNVHzGanYtRy2KKraEaWeZLri2ZHWIRyaE1a9MQ2MuJ09m+Wxj5cfcaoaR6z5iRpHpA59YeUxAlpML8N4PJw==} @@ -27261,6 +28934,19 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + /rc-resize-observer/1.2.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-6W+UzT3PyDM0wVCEHfoW3qTHPTvbdSgiA43buiy8PzmeMnfgnDeb9NjdimMXMl3/TcrvvWl5RRVdp+NqcR47pQ==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + resize-observer-polyfill: 1.5.1 + /rc-resize-observer/1.3.1_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-iFUdt3NNhflbY3mwySv5CA1TC06zdJ+pfo0oc27xpf4PIOvfZwZGtD9Kz41wGYqC4SLio93RVAirSSpYlV/uYg==} peerDependencies: @@ -27274,6 +28960,20 @@ packages: react-dom: 18.2.0_react@18.2.0 resize-observer-polyfill: 1.5.1 + /rc-segmented/2.1.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-hUlonro+pYoZcwrH6Vm56B2ftLfQh046hrwif/VwLIw1j3zGt52p5mREBwmeVzXnSwgnagpOpfafspzs1asjGw==} + peerDependencies: + react: '>=16.0.0' + react-dom: '>=16.0.0' + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /rc-segmented/2.1.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-qGo1bCr83ESXpXVOCXjFe1QJlCAQXyi9KCiy8eX3rIMYlTeJr/ftySIaTnYsitL18SvWf5ZEHsfqIWoX0EMfFQ==} peerDependencies: @@ -27304,6 +29004,24 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + /rc-select/14.2.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-tvxHmbAA0EIhBkB7dyaRhcBUIWHocQbUFY/fBlezj2jg5p65a5VQ/UhBg2I9TA1wjpsr5CCx0ruZPkYcUMjDoQ==} + engines: {node: '>=8.x'} + peerDependencies: + react: '*' + react-dom: '*' + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + rc-motion: 2.6.3_biqbaboplfbrettd7655fr4n2y + rc-overflow: 1.2.8_biqbaboplfbrettd7655fr4n2y + rc-trigger: 5.3.4_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + rc-virtual-list: 3.4.13_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /rc-select/14.3.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-y+TeAKvAvfAS7WXn4nFU8xtWJ1kLC7SVBvX3UQYtfU+N3BYNpNzHw/3F1Gu34rN2YWTG4hwspwFvDuRtGXytlQ==} engines: {node: '>=8.x'} @@ -27320,6 +29038,7 @@ packages: rc-virtual-list: 3.4.13_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-slider/10.0.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-Bk54UIKWW4wyhHcL8ehAxt+wX+n69dscnHTX6Uv0FMxSke/TGrlkZz1LSIWblCpfE2zr/dwR2Ca8nZGk3U+Tbg==} @@ -27348,6 +29067,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-steps/4.1.4_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-qoCqKZWSpkh/b03ASGx1WhpKnuZcRWmvuW+ZUu4mvMdfvFzVxblTwUM+9aBd0mlEUFmt6GW8FXhMpHkK3Uzp3w==} @@ -27414,6 +29134,22 @@ packages: react-dom: 18.2.0_react@18.2.0 shallowequal: 1.1.0 + /rc-table/7.30.3_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-PHe+lZKwPo3qui5j79m54vKu8b4hebk04x+4Hy65NvwUU3+NNFGS5FZpylXQMkueMnE8hgh22ZuScQDkCtzQFQ==} + engines: {node: '>=8.x'} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + '@rc-component/context': 1.3.0_biqbaboplfbrettd7655fr4n2y + classnames: 2.3.2 + rc-resize-observer: 1.3.1_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /rc-table/7.31.1_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-KZPi35aGpv2VaL1Jbc58FBJo063HtKyVjhOFWX4AkBV7tjHHQokMdUoua5E+GPJh6QZUpK/a8PjKa9IZzPLIEA==} engines: {node: '>=8.x'} @@ -27428,6 +29164,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-tabs/11.16.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-CIDPv3lHaXSHTJevmFP2eHoD3Hq9psfKbOZYf6D4FYPACloNGHpz44y3RGeJgataQ7omFLrGBm3dOBMUki87tA==} @@ -27476,6 +29213,21 @@ packages: react-dom: 18.2.0_react@18.2.0 shallowequal: 1.1.0 + /rc-textarea/0.4.7_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-IQPd1CDI3mnMlkFyzt2O4gQ2lxUsnBAeJEoZGJnkkXgORNqyM9qovdrCj9NzcRfpHgLdzaEbU3AmobNFGUznwQ==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + rc-resize-observer: 1.3.1_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + shallowequal: 1.1.0 + dev: false + /rc-textarea/1.0.1_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-dtIm96apjJpCUcCeTtbnLGJaVlqbOqVgN0P9z+bqMSi7rcV5QVeUtBnG+jQTGk/uD183Z7jbhc8Dx7G3luDCwg==} peerDependencies: @@ -27489,6 +29241,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-tooltip/5.1.1_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-alt8eGMJulio6+4/uDm7nvV+rJq9bsfxFDCI0ljPdbuoygUscbsMYb6EQgwib/uqsXQUvzk+S7A59uYHmEgmDA==} @@ -27524,6 +29277,7 @@ packages: classnames: 2.3.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-tree-select/5.4.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-reRbOqC7Ic/nQocJAJeCl4n6nJUY3NoqiwRXKvhjgZJU7NGr9vIccXEsY+Lghkw5UMpPoxGsIJB0jiAvM18XYA==} @@ -27539,6 +29293,21 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + /rc-tree-select/5.6.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-XG6pu0a9l6+mzhQqUYfR2VIONbe/3LjVc3wKt28k6uBMZsI1j+SSxRyt/7jWRq8Kok8jHJBQASlDg6ehr9Sp0w==} + peerDependencies: + react: '*' + react-dom: '*' + dependencies: + '@babel/runtime': 7.21.5 + classnames: 2.3.2 + rc-select: 14.2.0_biqbaboplfbrettd7655fr4n2y + rc-tree: 5.7.2_biqbaboplfbrettd7655fr4n2y + rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /rc-tree-select/5.7.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-YGMpBFK9qBkgng2ZhOw7yFiL9VnjHij+uNvP+tiU/QZGdf2XcO8LHXQNUZRGAEzx4PT5lUs6d7kIfkQ9a74bqg==} peerDependencies: @@ -27552,6 +29321,7 @@ packages: rc-util: 5.29.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + dev: true /rc-tree/5.6.5_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-Bnyen46B251APyRZ9D/jYeTnSqbSEvK2AkU5B4vWkNYgUJNPrxO+VMgcDRedP/8N7YcsgdDT9hxqVvNOq7oCAQ==} @@ -27610,6 +29380,17 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + /rc-util/5.27.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-PsjHA+f+KBCz+YTZxrl3ukJU5RoNKoe3KSNMh0xGiISbR67NaM9E9BiMjCwxa3AcCUOg/rZ+V0ZKLSimAA+e3w==} + peerDependencies: + react: '>=16.9.0' + react-dom: '>=16.9.0' + dependencies: + '@babel/runtime': 7.21.5 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 16.13.1 + /rc-util/5.29.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-xHT9Dr3RD6tyvCibnH10l3mudC6TJjWNr9UDy3CrOGZqTY354OfdwP87ahKNe0b3A1dsysDldvx0SBuswhlOeA==} peerDependencies: @@ -27643,6 +29424,14 @@ packages: '@babel/runtime': 7.21.5 react: 18.2.0 + /react-docgen-typescript/2.2.2_typescript@4.9.3: + resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} + peerDependencies: + typescript: '>= 4.3.x' + dependencies: + typescript: 4.9.3 + dev: false + /react-docgen-typescript/2.2.2_typescript@4.9.5: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: @@ -27654,7 +29443,6 @@ packages: /react-docgen/5.4.2: resolution: {integrity: sha512-4Z5XYpHsn2bbUfaflxoS30VhUvQLBe4GCwwM5v1e1FUOeDdaoJi6wUGSmYp6OdXYEISEAOEIaSPBk4iezNCKBw==} engines: {node: '>=8.10.0'} - hasBin: true dependencies: '@babel/core': 7.21.8 '@babel/generator': 7.21.5 @@ -28098,6 +29886,12 @@ packages: prismjs: 1.27.0 dev: false + /regenerate-unicode-properties/10.0.1: + resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + /regenerate-unicode-properties/10.1.0: resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} engines: {node: '>=4'} @@ -28110,6 +29904,9 @@ packages: /regenerator-runtime/0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + /regenerator-runtime/0.13.9: + resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + /regenerator-transform/0.15.1: resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: @@ -28136,6 +29933,17 @@ packages: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} engines: {node: '>=8'} + /regexpu-core/5.1.0: + resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + regenerate-unicode-properties: 10.0.1 + regjsgen: 0.6.0 + regjsparser: 0.8.4 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.0.0 + /regexpu-core/5.3.2: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} engines: {node: '>=4'} @@ -28147,6 +29955,15 @@ packages: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 + /regjsgen/0.6.0: + resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} + + /regjsparser/0.8.4: + resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} + hasBin: true + dependencies: + jsesc: 0.5.0 + /regjsparser/0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true @@ -28261,7 +30078,7 @@ packages: estree-util-value-to-estree: 2.1.0 toml: 3.0.0 unified: 10.1.2 - yaml: 2.2.1 + yaml: 2.1.1 dev: false /remark-mdx/1.6.22: @@ -28482,7 +30299,6 @@ packages: /resolve-url/0.2.1: resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} - deprecated: https://github.com/lydell/resolve-url#deprecated dev: false /resolve.exports/2.0.1: @@ -28504,7 +30320,6 @@ packages: /resolve/1.22.1: resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} - hasBin: true dependencies: is-core-module: 2.9.0 path-parse: 1.0.7 @@ -28512,7 +30327,6 @@ packages: /resolve/2.0.0-next.4: resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} - hasBin: true dependencies: is-core-module: 2.9.0 path-parse: 1.0.7 @@ -28570,21 +30384,18 @@ packages: /rimraf/2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} - hasBin: true dependencies: glob: 7.2.0 dev: false /rimraf/3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} - hasBin: true dependencies: - glob: 7.2.0 + glob: 7.2.3 /rimraf/4.4.0: resolution: {integrity: sha512-X36S+qpCUR0HjXlkDe4NAOhS//aHH0Z+h8Ckf2auGJk3PTnx5rLmrHkwNdbVQuCSUhOyFrlRvFEllZOYE+yZGQ==} engines: {node: '>=14'} - hasBin: true dependencies: glob: 9.3.0 dev: true @@ -28596,7 +30407,7 @@ packages: inherits: 2.0.4 dev: false - /rollup-plugin-dts/5.2.0_pcsxzxwela5oo3y3lxinm7xcqy: + /rollup-plugin-dts/5.2.0_46xkcftpwaildd5rxnylqnqjma: resolution: {integrity: sha512-B68T/haEu2MKcz4kNUhXB8/h5sq4gpplHAJIYNHbh8cp4ZkvzDvNca/11KQdFrB9ZeKucegQIotzo5T0JUtM8w==} engines: {node: '>=v14'} peerDependencies: @@ -28605,7 +30416,7 @@ packages: dependencies: magic-string: 0.29.0 rollup: 2.79.0 - typescript: 4.9.5 + typescript: 4.9.3 optionalDependencies: '@babel/code-frame': 7.21.4 dev: true @@ -28627,7 +30438,6 @@ packages: /rollup/2.79.0: resolution: {integrity: sha512-x4KsrCgwQ7ZJPcFA/SUu6QVcYlO7uRLfLAy0DSA4NS2eG8japdbpM50ToH7z4iObodRYOJ0soneF0iaQRJ6zhA==} engines: {node: '>=10.0.0'} - hasBin: true optionalDependencies: fsevents: 2.3.2 dev: true @@ -28635,7 +30445,6 @@ packages: /rollup/3.9.1: resolution: {integrity: sha512-GswCYHXftN8ZKGVgQhTFUJB/NBXxrRGgO2NCy6E8s1rwEJ4Q9/VttNqcYfEvx4dTo4j58YqdC3OVztPzlKSX8w==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true optionalDependencies: fsevents: 2.3.2 dev: true @@ -28666,6 +30475,12 @@ packages: aproba: 1.2.0 dev: false + /rxjs/7.5.5: + resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==} + dependencies: + tslib: 2.4.0 + dev: true + /rxjs/7.8.0: resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} dependencies: @@ -28707,8 +30522,6 @@ packages: /sane/4.1.0: resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} engines: {node: 6.* || 8.* || >= 10.*} - deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added - hasBin: true dependencies: '@cnakazawa/watch': 1.0.4 anymatch: 2.0.0 @@ -28717,7 +30530,7 @@ packages: execa: 1.0.0 fb-watchman: 2.0.1 micromatch: 3.1.10 - minimist: 1.2.6 + minimist: 1.2.8 walker: 1.0.8 transitivePeerDependencies: - supports-color @@ -28751,7 +30564,15 @@ packages: /sass/1.54.4: resolution: {integrity: sha512-3tmF16yvnBwtlPrNBHw/H907j8MlOX8aTBnlNX1yrKx24RKcJGPyLhFUwkoKBKesR3unP93/2z14Ll8NicwQUA==} engines: {node: '>=12.0.0'} - hasBin: true + dependencies: + chokidar: 3.5.3 + immutable: 4.1.0 + source-map-js: 1.0.2 + dev: true + + /sass/1.54.5: + resolution: {integrity: sha512-p7DTOzxkUPa/63FU0R3KApkRHwcVZYC0PLnLm5iyZACyp15qSi32x7zVUhRdABAATmkALqgGrjCJAcWvobmhHw==} + engines: {node: '>=12.0.0'} dependencies: chokidar: 3.5.3 immutable: 4.1.0 @@ -28806,7 +30627,6 @@ packages: '@types/json-schema': 7.0.11 ajv: 6.12.6 ajv-keywords: 3.5.2_ajv@6.12.6 - dev: true /schema-utils/3.1.2: resolution: {integrity: sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==} @@ -28861,7 +30681,6 @@ packages: /semver/5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} - hasBin: true /semver/6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} @@ -28878,17 +30697,14 @@ packages: /semver/7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} engines: {node: '>=10'} - hasBin: true dependencies: lru-cache: 6.0.0 /semver/7.3.8: resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} engines: {node: '>=10'} - hasBin: true dependencies: lru-cache: 6.0.0 - dev: true /send/0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} @@ -28922,6 +30738,11 @@ packages: randombytes: 2.1.0 dev: false + /serialize-javascript/6.0.0: + resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} + dependencies: + randombytes: 2.1.0 + /serialize-javascript/6.0.1: resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} dependencies: @@ -29142,7 +30963,6 @@ packages: /smartwrap/2.0.2: resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} engines: {node: '>=6'} - hasBin: true dependencies: array.prototype.flat: 1.3.0 breakword: 1.0.5 @@ -29211,7 +31031,6 @@ packages: /source-map-resolve/0.5.3: resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: atob: 2.1.2 decode-uri-component: 0.2.0 @@ -29222,7 +31041,6 @@ packages: /source-map-resolve/0.6.0: resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: atob: 2.1.2 decode-uri-component: 0.2.0 @@ -29247,7 +31065,6 @@ packages: /source-map-url/0.4.1: resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} - deprecated: See https://github.com/lydell/source-map-url#deprecated dev: false /source-map/0.5.7: @@ -29265,7 +31082,6 @@ packages: /sourcemap-codec/1.4.8: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} - deprecated: Please use @jridgewell/sourcemap-codec instead dev: true /space-separated-tokens/1.1.5: @@ -29365,7 +31181,6 @@ packages: /sshpk/1.17.0: resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==} engines: {node: '>=0.10.0'} - hasBin: true dependencies: asn1: 0.2.6 assert-plus: 1.0.0 @@ -29540,12 +31355,11 @@ packages: webpack: ^5 dependencies: loader-utils: 2.0.4 - schema-utils: 3.1.2 + schema-utils: 3.1.1 dev: false /string-similarity/4.0.4: resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==} - deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dev: false /string-width/1.0.2: @@ -29579,10 +31393,10 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 get-intrinsic: 1.2.0 has-symbols: 1.0.3 - internal-slot: 1.0.5 + internal-slot: 1.0.3 regexp.prototype.flags: 1.4.3 side-channel: 1.0.4 dev: false @@ -29593,7 +31407,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 dev: false /string.prototype.padstart/3.1.3: @@ -29602,7 +31416,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.21.2 + es-abstract: 1.20.1 dev: false /string.prototype.trim/1.2.7: @@ -29614,6 +31428,14 @@ packages: es-abstract: 1.21.2 dev: false + /string.prototype.trimend/1.0.5: + resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.21.2 + dev: false + /string.prototype.trimend/1.0.6: resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} dependencies: @@ -29622,6 +31444,14 @@ packages: es-abstract: 1.21.2 dev: false + /string.prototype.trimstart/1.0.5: + resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.21.2 + dev: false + /string.prototype.trimstart/1.0.6: resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} dependencies: @@ -29702,7 +31532,6 @@ packages: /strip-indent/1.0.1: resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} engines: {node: '>=0.10.0'} - hasBin: true dependencies: get-stdin: 4.0.1 dev: false @@ -29772,12 +31601,12 @@ packages: react-dom: '>= 16.8.0' react-is: '>= 16.8.0' dependencies: - '@babel/helper-module-imports': 7.21.4 + '@babel/helper-module-imports': 7.18.6 '@babel/traverse': 7.21.5_supports-color@5.5.0 '@emotion/is-prop-valid': 1.1.3 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 1.13.3_styled-components@5.3.5 + babel-plugin-styled-components: 2.0.7_styled-components@5.3.5 css-to-react-native: 3.0.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 @@ -29787,17 +31616,6 @@ packages: supports-color: 5.5.0 dev: false - /stylehacks/5.1.1_postcss@8.4.21: - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} - peerDependencies: - postcss: ^8.2.15 - dependencies: - browserslist: 4.21.4 - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 - dev: false - /stylehacks/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==} engines: {node: ^14 || ^16 || >=18.0} @@ -29830,7 +31648,7 @@ packages: dependencies: '@adobe/css-tools': 4.0.1 debug: 4.3.4 - glob: 7.2.0 + glob: 7.2.3 sax: 1.2.4 source-map: 0.7.4 transitivePeerDependencies: @@ -29863,7 +31681,7 @@ packages: mime: 2.6.0 qs: 6.11.0 readable-stream: 3.6.0 - semver: 7.3.7 + semver: 7.3.8 transitivePeerDependencies: - supports-color @@ -29924,7 +31742,6 @@ packages: /svgo/3.0.2: resolution: {integrity: sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==} engines: {node: '>=14.0.0'} - hasBin: true dependencies: '@trysound/sax': 0.2.0 commander: 7.2.0 @@ -29968,7 +31785,7 @@ packages: detective: 5.2.1 didyoumean: 1.2.2 dlv: 1.1.3 - fast-glob: 3.2.11 + fast-glob: 3.2.12 fs-extra: 10.1.0 glob-parent: 6.0.2 html-tags: 3.2.0 @@ -29984,7 +31801,7 @@ packages: postcss-js: 3.0.3 postcss-load-config: 3.1.4_postcss@8.4.21 postcss-nested: 5.0.6_postcss@8.4.21 - postcss-selector-parser: 6.0.11 + postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 pretty-hrtime: 1.0.3 purgecss: 4.1.3 @@ -30013,7 +31830,7 @@ packages: detective: 5.2.1 didyoumean: 1.2.2 dlv: 1.1.3 - fast-glob: 3.2.11 + fast-glob: 3.2.12 fs-extra: 10.1.0 glob-parent: 6.0.2 html-tags: 3.2.0 @@ -30029,7 +31846,7 @@ packages: postcss-js: 3.0.3 postcss-load-config: 3.1.4_postcss@8.4.21 postcss-nested: 5.0.6_postcss@8.4.21 - postcss-selector-parser: 6.0.11 + postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 pretty-hrtime: 1.0.3 purgecss: 4.1.3 @@ -30041,6 +31858,39 @@ packages: - ts-node dev: false + /tailwindcss/3.2.4_postcss@8.4.21: + resolution: {integrity: sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==} + engines: {node: '>=12.13.0'} + hasBin: true + peerDependencies: + postcss: ^8.0.9 + dependencies: + arg: 5.0.2 + chokidar: 3.5.3 + color-name: 1.1.4 + detective: 5.2.1 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.2.12 + glob-parent: 6.0.2 + is-glob: 4.0.3 + lilconfig: 2.0.6 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.0.0 + postcss: 8.4.21 + postcss-import: 14.1.0_postcss@8.4.21 + postcss-js: 4.0.0_postcss@8.4.21 + postcss-load-config: 3.1.4_postcss@8.4.21 + postcss-nested: 6.0.0_postcss@8.4.21 + postcss-selector-parser: 6.0.10 + postcss-value-parser: 4.2.0 + quick-lru: 5.1.1 + resolve: 1.22.1 + transitivePeerDependencies: + - ts-node + /tailwindcss/3.2.7_postcss@8.4.21: resolution: {integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==} engines: {node: '>=12.13.0'} @@ -30057,7 +31907,7 @@ packages: fast-glob: 3.2.12 glob-parent: 6.0.2 is-glob: 4.0.3 - lilconfig: 2.1.0 + lilconfig: 2.0.6 micromatch: 4.0.5 normalize-path: 3.0.0 object-hash: 3.0.0 @@ -30073,6 +31923,7 @@ packages: resolve: 1.22.1 transitivePeerDependencies: - ts-node + dev: false /tapable/1.1.3: resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} @@ -30188,9 +32039,9 @@ packages: '@jridgewell/trace-mapping': 0.3.17 esbuild: 0.15.7 jest-worker: 27.5.1 - schema-utils: 3.1.2 - serialize-javascript: 6.0.1 - terser: 5.17.3 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + terser: 5.15.0 webpack: 5.82.1_esbuild@0.15.7 dev: false @@ -30212,9 +32063,9 @@ packages: dependencies: '@jridgewell/trace-mapping': 0.3.17 jest-worker: 27.5.1 - schema-utils: 3.1.2 - serialize-javascript: 6.0.1 - terser: 5.17.3 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + terser: 5.15.0 webpack: 5.76.0 /terser-webpack-plugin/5.3.6_webpack@5.82.1: @@ -30235,9 +32086,9 @@ packages: dependencies: '@jridgewell/trace-mapping': 0.3.17 jest-worker: 27.5.1 - schema-utils: 3.1.2 - serialize-javascript: 6.0.1 - terser: 5.17.3 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + terser: 5.15.0 webpack: 5.82.1 /terser-webpack-plugin/5.3.8_5kdg5ibgw3do6r335nvs4fbnj4: @@ -30550,7 +32401,6 @@ packages: /tree-kill/1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} - hasBin: true dev: true /trim-lines/3.0.1: @@ -30595,7 +32445,7 @@ packages: /ts-interface-checker/0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-jest/29.0.5_7rlgbvksi6ta2npar3z44bje7y: + /ts-jest/29.0.5_52zzqauzrd55rzw5cwo4tswy3m: resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -30617,20 +32467,21 @@ packages: optional: true dependencies: '@babel/core': 7.21.8 + '@jest/types': 29.5.0 + babel-jest: 27.5.1_@babel+core@7.21.8 bs-logger: 0.2.6 - esbuild: 0.15.7 fast-json-stable-stringify: 2.1.0 jest: 29.5.0_@types+node@14.18.35 - jest-util: 29.5.0 + jest-util: 29.3.1 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.9.5 + semver: 7.3.8 + typescript: 4.9.3 yargs-parser: 21.0.1 - dev: true + dev: false - /ts-jest/29.0.5_doipufordlnvh5g4adbwayvyvy: + /ts-jest/29.0.5_igyh6v6dfktrl57oxyjeyvbpt4: resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -30654,16 +32505,16 @@ packages: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 29.5.0_@types+node@14.18.35 - jest-util: 29.5.0 + jest-util: 29.3.1 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.9.5 + semver: 7.3.8 + typescript: 4.9.3 yargs-parser: 21.0.1 dev: true - /ts-jest/29.0.5_viinukn7nustgjlyhsmms6zpji: + /ts-jest/29.0.5_ph2sidlzcfqeq5xdaxqiro5pqa: resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -30686,18 +32537,19 @@ packages: dependencies: '@babel/core': 7.21.8 bs-logger: 0.2.6 + esbuild: 0.15.7 fast-json-stable-stringify: 2.1.0 jest: 29.5.0_@types+node@14.18.35 - jest-util: 29.5.0 + jest-util: 29.3.1 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.9.5 + semver: 7.3.8 + typescript: 4.9.3 yargs-parser: 21.0.1 dev: true - /ts-jest/29.0.5_xpknouqsu45fvs7xqhzolsis6i: + /ts-jest/29.0.5_ujbyfodziiwtzbycnht5jcf3hy: resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -30719,21 +32571,19 @@ packages: optional: true dependencies: '@babel/core': 7.21.8 - '@jest/types': 29.5.0 - babel-jest: 27.5.1_@babel+core@7.21.8 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 29.5.0_@types+node@14.18.35 - jest-util: 29.5.0 + jest-util: 29.3.1 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 - semver: 7.3.7 - typescript: 4.9.5 + semver: 7.3.8 + typescript: 4.9.3 yargs-parser: 21.0.1 - dev: false + dev: true - /ts-loader/9.3.1_hybrf64lftnf5l2xwgg7goi2iu: + /ts-loader/9.3.1_7rk4b2hmmye4ay4nslib7apbti: resolution: {integrity: sha512-OkyShkcZTsTwyS3Kt7a4rsT/t2qvEVQuKCTg4LJmpj9fhFR7ukGdZwV6Qq3tRUkqcXtfGpPR7+hFKHCG/0d3Lw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -30743,12 +32593,12 @@ packages: chalk: 4.1.2 enhanced-resolve: 5.12.0 micromatch: 4.0.5 - semver: 7.3.7 - typescript: 4.9.5 + semver: 7.3.8 + typescript: 4.9.3 webpack: 5.82.1 dev: true - /ts-loader/9.4.1_hybrf64lftnf5l2xwgg7goi2iu: + /ts-loader/9.4.1_7rk4b2hmmye4ay4nslib7apbti: resolution: {integrity: sha512-384TYAqGs70rn9F0VBnh6BPTfhga7yFNdC5gXbQpDrBj9/KsT4iRkGqKXhziofHOlE2j6YEaiTYVGKKvPhGWvw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -30758,12 +32608,42 @@ packages: chalk: 4.1.2 enhanced-resolve: 5.12.0 micromatch: 4.0.5 - semver: 7.3.7 - typescript: 4.9.5 + semver: 7.3.8 + typescript: 4.9.3 webpack: 5.82.1 dev: false - /ts-node/10.9.1_gmaempcqeno4l4ava7v2qcn3hi: + /ts-node/10.8.1_5axvewzfuqiugp6622ftukgx6y: + resolution: {integrity: sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.3 + '@types/node': 14.18.35 + acorn: 8.8.1 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.9.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + /ts-node/10.9.1_5axvewzfuqiugp6622ftukgx6y: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -30782,7 +32662,38 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 16.11.68 + '@types/node': 14.18.35 + acorn: 8.8.1 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.9.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + + /ts-node/10.9.1_dlsrttbneesnknba5tvqdzugca: + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.3 + '@types/node': 16.18.10 acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 @@ -30823,6 +32734,23 @@ packages: typescript: 4.9.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + dev: false + + /ts-node/9.1.1_typescript@4.9.3: + resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} + engines: {node: '>=10.0.0'} + hasBin: true + peerDependencies: + typescript: '>=2.7' + dependencies: + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + source-map-support: 0.5.21 + typescript: 4.9.3 + yn: 3.1.1 + dev: true /ts-node/9.1.1_typescript@4.9.5: resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} @@ -30840,7 +32768,7 @@ packages: yn: 3.1.1 dev: true - /ts-pnp/1.2.0_typescript@4.9.5: + /ts-pnp/1.2.0_typescript@4.9.3: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -30849,7 +32777,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.9.5 + typescript: 4.9.3 dev: false /tsconfig-paths-webpack-plugin/4.0.0: @@ -30857,8 +32785,8 @@ packages: engines: {node: '>=10.13.0'} dependencies: chalk: 4.1.2 - enhanced-resolve: 5.12.0 - tsconfig-paths: 4.1.2 + enhanced-resolve: 5.10.0 + tsconfig-paths: 4.1.1 dev: false /tsconfig-paths/3.14.1: @@ -30873,10 +32801,9 @@ packages: resolution: {integrity: sha512-VgPrtLKpRgEAJsMj5Q/I/mXouC6A/7eJ/X4Nuk6o0cRPwBtznYxTCU4FodbexbzH9somBPEXYi0ZkUViUpJ21Q==} engines: {node: '>=6'} dependencies: - json5: 2.2.3 + json5: 2.2.1 minimist: 1.2.6 strip-bom: 3.0.0 - dev: true /tsconfig-paths/4.1.2: resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==} @@ -30885,6 +32812,7 @@ packages: json5: 2.2.3 minimist: 1.2.6 strip-bom: 3.0.0 + dev: true /tslib/1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} @@ -30897,19 +32825,18 @@ packages: resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} engines: {node: '>=0.6.x'} - /tsutils/3.21.0_typescript@4.9.5: + /tsutils/3.21.0_typescript@4.9.3: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.9.5 + typescript: 4.9.3 dev: false /tsx/3.7.1: resolution: {integrity: sha512-dwl1GBdkwVQ9zRxTmETGi+ck8pewNm2QXh+HK6jHxdHmeCjfCL+Db3b4VX/dOMDSS2hle1j5LzQoo8OpVXu6XQ==} - hasBin: true dependencies: '@esbuild-kit/cjs-loader': 2.3.0 '@esbuild-kit/core-utils': 2.0.2 @@ -30929,7 +32856,6 @@ packages: /tty-table/4.1.6: resolution: {integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==} engines: {node: '>=8.0.0'} - hasBin: true dependencies: chalk: 4.1.2 csv: 5.5.3 @@ -30996,7 +32922,6 @@ packages: /turbo/1.6.3: resolution: {integrity: sha512-FtfhJLmEEtHveGxW4Ye/QuY85AnZ2ZNVgkTBswoap7UMHB1+oI4diHPNyqrQLG4K1UFtCkjOlVoLsllUh/9QRw==} - hasBin: true requiresBuild: true optionalDependencies: turbo-darwin-64: 1.6.3 @@ -31034,7 +32959,7 @@ packages: - ts-node dev: false - /twin.macro/3.1.0_tailwindcss@3.2.7: + /twin.macro/3.1.0_tailwindcss@3.2.4: resolution: {integrity: sha512-7DSR/xdvSaAqhTM4JptBgI+1IzXQR5v+2hp0CDMmHMjlm44IBEewU8MeqPlXmFgQI06zpLyJMaKRbJu96drAJw==} engines: {node: '>=16.14.0'} peerDependencies: @@ -31045,8 +32970,8 @@ packages: chalk: 4.1.2 lodash.get: 4.4.2 lodash.merge: 4.6.2 - postcss-selector-parser: 6.0.11 - tailwindcss: 3.2.7_postcss@8.4.21 + postcss-selector-parser: 6.0.10 + tailwindcss: 3.2.4_postcss@8.4.21 dev: false /type-check/0.3.2: @@ -31140,9 +33065,12 @@ packages: /typescript/4.7.4: resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} engines: {node: '>=4.2.0'} - hasBin: true dev: true + /typescript/4.9.3: + resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==} + engines: {node: '>=4.2.0'} + /typescript/4.9.5: resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} engines: {node: '>=4.2.0'} @@ -31155,7 +33083,6 @@ packages: /uglify-js/2.8.29: resolution: {integrity: sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w==} engines: {node: '>=0.8.0'} - hasBin: true dependencies: source-map: 0.5.7 yargs: 3.10.0 @@ -31166,7 +33093,6 @@ packages: /uglify-js/3.16.1: resolution: {integrity: sha512-X5BGTIDH8U6IQ1TIRP62YC36k+ULAa1d59BxlWvPUJ1NkW5L3FwcGfEzuVvGmhJFBu0YJ5Ge25tmRISqCmLiRQ==} engines: {node: '>=0.8.0'} - hasBin: true requiresBuild: true optional: true @@ -31218,6 +33144,10 @@ packages: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.0.0 + /unicode-match-property-value-ecmascript/2.0.0: + resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} + engines: {node: '>=4'} + /unicode-match-property-value-ecmascript/2.1.0: resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} engines: {node: '>=4'} @@ -31461,7 +33391,6 @@ packages: /urix/0.1.0: resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} - deprecated: Please see https://github.com/lydell/urix#deprecated dev: false /url-join/4.0.1: @@ -31481,7 +33410,7 @@ packages: file-loader: 6.2.0_webpack@5.82.1 loader-utils: 2.0.4 mime-types: 2.1.35 - schema-utils: 3.1.2 + schema-utils: 3.1.1 webpack: 5.82.1 dev: true @@ -31498,7 +33427,7 @@ packages: file-loader: 6.2.0_webpack@4.46.0 loader-utils: 2.0.4 mime-types: 2.1.35 - schema-utils: 3.1.2 + schema-utils: 3.1.1 webpack: 4.46.0 dev: false @@ -31633,7 +33562,6 @@ packages: /uuid-browser/3.1.0: resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} - deprecated: Package no longer supported and required. Use the uuid package or crypto.randomUUID instead dev: false /uuid/3.4.0: @@ -31649,7 +33577,6 @@ packages: /uvu/0.5.6: resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} engines: {node: '>=8'} - hasBin: true dependencies: dequal: 2.0.3 diff: 5.1.0 @@ -31916,7 +33843,6 @@ packages: /wait-on/7.0.1: resolution: {integrity: sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==} engines: {node: '>=12.0.0'} - hasBin: true dependencies: axios: 0.27.2 joi: 17.8.4 @@ -32012,7 +33938,6 @@ packages: /webpack-bundle-analyzer/4.5.0: resolution: {integrity: sha512-GUMZlM3SKwS8Z+CKeIFx7CVoHn3dXFcUAjT/dcZQQmfSZGvitPfMob2ipjai7ovFFqPvTqkEZ/leL4O0YOdAYQ==} engines: {node: '>= 10.13.0'} - hasBin: true dependencies: acorn: 8.8.1 acorn-walk: 8.2.0 @@ -32538,21 +34463,18 @@ packages: /which/1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true dependencies: isexe: 2.0.0 /which/2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} - hasBin: true dependencies: isexe: 2.0.0 /whistle/2.9.22: resolution: {integrity: sha512-yzfCAKKyCzVWDp7JoQEUFFwNKSNjYVL5U46e0rjxNAG+EMIf+6PQHKua20hqulYg3Q4PyhufTh9bhfJdtsHmUg==} engines: {node: '>= 8'} - hasBin: true dependencies: adm-zip: 0.5.9 async-limiter: 2.0.0 @@ -32566,7 +34488,7 @@ packages: hagent: 0.9.0 hparser: 0.4.0 iconv-lite: 0.4.24 - json5: 2.2.3 + json5: 2.2.1 lru-cache: 4.1.5 mime: 1.6.0 multer2: 1.1.0 @@ -32617,17 +34539,15 @@ packages: /window-size/0.3.0: resolution: {integrity: sha512-aB2BGVMsX1iPJ79hqC5JvbDvUXpy3nhoxmbiFw74aEewrHPnkNiFYAFbx+BgurhxuOUZV+qIj/9HurtO8ZTH5w==} engines: {node: '>= 0.10.0'} - hasBin: true dev: true /wireit/0.7.1: resolution: {integrity: sha512-TwuKae0aHk06DZ2omLW6YF4Y74YxCyuRCcsjZMm+cUPRXhvxAU2JhYyuCvD9wIALWK+cQUpB9GjeRFPRAbKsdw==} engines: {node: '>=14.14.0'} - hasBin: true dependencies: braces: 3.0.2 chokidar: 3.5.3 - fast-glob: 3.2.11 + fast-glob: 3.2.12 jsonc-parser: 3.0.0 proper-lockfile: 4.1.2 dev: true @@ -32755,7 +34675,6 @@ packages: /x-default-browser/0.4.0: resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} - hasBin: true optionalDependencies: default-browser-id: 1.0.4 dev: false @@ -32824,16 +34743,21 @@ packages: dependencies: javascript-stringify: 2.1.0 loader-utils: 2.0.4 - yaml: 2.2.1 + yaml: 2.1.1 dev: true /yaml/1.10.2: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} + /yaml/2.1.1: + resolution: {integrity: sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==} + engines: {node: '>= 14'} + /yaml/2.2.1: resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} engines: {node: '>= 14'} + dev: true /yargs-parser/18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} @@ -32923,7 +34847,6 @@ packages: /z-schema/5.0.3: resolution: {integrity: sha512-sGvEcBOTNum68x9jCpCVGPFJ6mWnkD0YxOcddDlJHRx3tKdB2q8pCHExMVZo/AV/6geuVJXG7hljDaWG8+5GDw==} engines: {node: '>=8.0.0'} - hasBin: true dependencies: lodash.get: 4.4.2 lodash.isequal: 4.5.0 @@ -32941,8 +34864,12 @@ packages: zod: 3.20.2 dev: false + /zod/3.17.3: + resolution: {integrity: sha512-4oKP5zvG6GGbMlqBkI5FESOAweldEhSOZ6LI6cG+JzUT7ofj1ZOC0PJudpQOpT1iqOFpYYtX5Pw0+o403y4bcg==} + /zod/3.20.2: resolution: {integrity: sha512-1MzNQdAvO+54H+EaK5YpyEy0T+Ejo/7YLHS93G3RnYWh5gaotGHwGeN/ZO687qEDU2y4CdStQYXVHIgrUl5UVQ==} + dev: false /zwitch/1.0.5: resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}